Enum Navigation.Mode
Namespace: UnityEngine.UI
Syntax
[Flags]
public enum Mode
Fields
| Name | Description | Value |
|---|---|---|
| None | No navigation is allowed from this object. |
0 |
| Horizontal | Horizontal Navigation. Navigation should only be allowed when left / right move events happen. |
1 |
| Vertical | Vertical navigation. Navigation should only be allowed when up / down move events happen. |
2 |
| Automatic | Automatic navigation. Attempt to find the 'best' next object to select. This should be based on a sensible heuristic. |
3 |
| Explicit | Explicit navigation. User should explicitly specify what is selected by each move event. |
4 |