Add **UI navigation** system

#574
This commit is contained in:
Wojciech Figat
2021-12-21 18:12:54 +01:00
parent 71212420f6
commit c178afdf6b
22 changed files with 918 additions and 54 deletions

View File

@@ -167,4 +167,40 @@ namespace FlaxEngine.GUI
/// </summary>
Vertical = 1,
}
/// <summary>
/// The navigation directions in the user interface layout.
/// </summary>
public enum NavDirection
{
/// <summary>
/// No direction to skip navigation.
/// </summary>
None,
/// <summary>
/// The up direction.
/// </summary>
Up,
/// <summary>
/// The down direction.
/// </summary>
Down,
/// <summary>
/// The left direction.
/// </summary>
Left,
/// <summary>
/// The right direction.
/// </summary>
Right,
/// <summary>
/// The next item (right with layout wrapping).
/// </summary>
Next,
}
}