Select your preferred scripting language. All code snippets will be displayed in this language.
enumeration
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.
CloseNavigation mode. Used by Selectable.
#pragma strict // Required when Using UI elements. public var button; function Start() { //Set the navigation to the mode "Vertical". if (button.navigation.mode == Navigation.Mode.Vertical) { Debug.Log("The button's navigation mode is Vertical"); } }
using UnityEngine; using System.Collections; using UnityEngine.UI; // Required when Using UI elements.
public class ExampleClass : MonoBehaviour { public Button button;
void Start () { //Set the navigation to the mode "Vertical". if (button.navigation.mode == Navigation.Mode.Vertical) { Debug.Log("The button's navigation mode is Vertical"); } } }
None | No navigation. |
Horizontal | Horizontal Navigation. |
Vertical | Vertical navigation. |
Automatic | Automatic navigation. |
Explicit | Explicit navigaion. |