LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

This version of Unity is unsupported.

Selectable.allSelectables

public static var allSelectables: List<Selectable>;

Description

List of all the selectable objects currently active in the scene.

UI.Selectable.allSelectables.

#pragma strict
// required when using UI elements in scripts
public class Example {
    //Displays the names of all selectable elements in the scene
    public function GetNames() {
        for (var selectableUI in Selectable.allSelectables) {
            Debug.Log(selectableUI.name);
        }
    }
}