enum
ImGui::ImGuiCond
Overview
Defined in:
types.crEnum Members
-
None =
0 -
No condition (always set the variable), same as _Always
-
Always =
1 -
No condition (always set the variable), same as _None
-
Once =
2 -
Set the variable once per runtime session (only the first call will succeed)
-
FirstUseEver =
4 -
Set the variable if the object/window has no persistently saved data (no entry in .ini file)
-
Appearing =
8 -
Set the variable if the object/window is appearing after being hidden/inactive (or the first time)
Instance Method Summary
-
#always?
Returns
trueif this enum value equalsAlways -
#appearing?
Returns
trueif this enum value equalsAppearing -
#first_use_ever?
Returns
trueif this enum value equalsFirstUseEver -
#none?
Returns
trueif this enum value equalsNone -
#once?
Returns
trueif this enum value equalsOnce