Fork of mellinoe/ImGui.NET, an ImGui wrapper for .NET, which includes access to internal functions.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
837 B

namespace ImGuiNET
{
/// <summary>
/// Condition flags for ImGui::SetWindow***(), SetNextWindow***(), SetNextTreeNode***() functions.
/// All those functions treat 0 as a shortcut to Always.
/// </summary>
public enum SetCondition
{
/// <summary>
/// Set the variable.
/// </summary>
Always = 1 << 0,
/// <summary>
/// Only set the variable on the first call per runtime session
/// </summary>
Once = 1 << 1,
/// <summary>
/// Only set the variable if the window doesn't exist in the .ini file
/// </summary>
FirstUseEver = 1 << 2,
/// <summary>
/// Only set the variable if the window is appearing after being inactive (or the first time)
/// </summary>
Appearing = 1 << 3
}
}