Enum VisualElementFocusRing.DefaultFocusOrder
Ordering of elements in the focus ring.
Namespace: UnityEngine.UIElements
Syntax
public enum DefaultFocusOrder : int
Fields
Name | Description | Value |
---|---|---|
ChildOrder | Order elements using a depth-first pre-order traversal of the element tree. |
0 |
PositionXY | Order elements according to their position, first by X, then by Y. |
1 |
PositionYX | Order elements according to their position, first by Y, then by X. |
2 |