enum ImGui::ImGuiCond

Overview

enum ImGuiCond_

Defined in:

types.cr

Enum 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

Instance Method Detail

def always? #

[View source]
def appearing? #

[View source]
def first_use_ever? #

[View source]
def none? #

[View source]
def once? #

[View source]