enum GUIElementInternalStateFlag
Flags that signal the state of the GUI element.
Values
| Name | Value | Description |
|---|---|---|
LayoutDirty |
1 |
GUI element is requesting layout update. |
Hidden |
2 |
GUI element is not visible (but may still take up space in the layout). |
Inactive |
4 |
GUI element is not active (is not visible and will not take up space in the layout). |
HiddenSelf |
8 |
Same as Hidden, but set only on the element that was explicitly hidden, while Hidden will also be set on all children of such element. |
InactiveSelf |
16 |
Same as Inactive, but set only on the element that was explicitly made inactive, while Inactive will also be set on all children of such element. |
Disabled |
32 |
GUI element is grayed out and cannot be interacted with. |
DisabledSelf |
64 |
Same as Disabled, but set only on the element that was explicitly disabled, while Disabled will also be set on all children of such element. |
AbsoluteCoordinatesDirty |
128 |
GUI element is requesting update for absolute coordinates of all its children. |
Culled |
256 |
Element is not visible due to being culled by the parent's visible area. |
CulledSelf |
512 |
Same as Culled, but set only on the element that was explicitly marked as culled, while Culled will also be set on all children on such element. |