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.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseNavigation mode. Used by Selectable.
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. |