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.selectOnRight

Switch to Manual
public var selectOnRight: UI.Selectable;

Description

Selectable to select on right.

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