Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

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

Navigation.selectOnLeft

Switch to Manual
public var selectOnLeft: UI.Selectable;

Description

Selectable to select on left.

#pragma strict
// Required when Using UI elements.
public class SelectedCheck {
	public var btnSave;
	public var btnLoad;
	public function Start() {
		//makes the Save button selectable if the left arrow key is pressed
		btnLoad.navigation.selectOnLeft = btnSave;
	}
}