public final class ImGuiCond
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static int |
Always
No condition (always set the variable)
|
static int |
Appearing
Set the variable if the object/window is appearing after being hidden/inactive (or the first time)
|
static int |
FirstUseEver
Set the variable if the object/window has no persistently saved data (no entry in .ini file)
|
static int |
None
No condition (always set the variable), same as _Always
|
static int |
Once
Set the variable once per runtime session (only the first call will succeed)
|
public static final int None
Definition: 0
public static final int Always
Definition: 1 << 0
public static final int Once
Definition: 1 << 1
public static final int FirstUseEver
Definition: 1 << 2
public static final int Appearing
Definition: 1 << 3