Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

Selectable.allSelectables

Switch to Manual
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);
		}
	}
}