enum GUIElementState

Type of GUI element states.

Values

NameValueDescription
Normal 1 Normal state when element is not being interacted with.
Hover 2 State when pointer is hovering over the element.
Active 4 State when element is being clicked.
Focused 8 State when the element has input focus and pointer is not hovering over the element.
FocusedHover 16 State when the element has input focus and pointer is hovering over the element.
NormalOn 257 Same as Normal, if the element is also in the "on" state.
HoverOn 258 Same as Hover, if the element is also in the "on" state.
ActiveOn 260 Same as Active, if the element is also in the "on" state.
FocusedOn 264 Same as Focused, if the element is also in the "on" state.
FocusedHoverOn 272 Same as FocusedHover, if the element is also in the "on" state.
TypeMask 255 Mask for determining the state type (ignoring the on state).
OnFlag 256 Flag that differentiates between on and off states.