Select your preferred scripting language. All code snippets will be displayed in this language.
Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseSelectable to select on up.
#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 up arrow key is pressed btnLoad.navigation.selectOnUp = btnSave; } }
using UnityEngine; using System.Collections; using UnityEngine.UI; // Required when Using UI elements.
public class SelectedCheck : MonoBehaviour { public Button btnSave; public Button btnLoad;
public void Start() { //makes the Save button selectable if the up arrow key is pressed btnLoad.navigation.selectOnUp = btnSave; } }