|
|
|
@ -1052,14 +1052,14 @@ namespace ImGuiNET |
|
|
|
|
ImGuiNative.igSetTooltip(text); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void SetNextTreeNodeOpened(bool opened) |
|
|
|
|
public static void SetNextTreeNodeOpen(bool opened) |
|
|
|
|
{ |
|
|
|
|
ImGuiNative.igSetNextTreeNodeOpened(opened, SetCondition.Always); |
|
|
|
|
ImGuiNative.igSetNextTreeNodeOpen(opened, SetCondition.Always); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void SetNextTreeNodeOpened(bool opened, SetCondition setCondition) |
|
|
|
|
public static void SetNextTreeNodeOpen(bool opened, SetCondition setCondition) |
|
|
|
|
{ |
|
|
|
|
ImGuiNative.igSetNextTreeNodeOpened(opened, setCondition); |
|
|
|
|
ImGuiNative.igSetNextTreeNodeOpen(opened, setCondition); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static bool TreeNode(string label) |
|
|
|
@ -1067,6 +1067,11 @@ namespace ImGuiNET |
|
|
|
|
return ImGuiNative.igTreeNode(label); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static bool TreeNodeEx(string label, TreeNodeFlags flags = 0) |
|
|
|
|
{ |
|
|
|
|
return ImGuiNative.igTreeNodeEx(label); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void TreePop() |
|
|
|
|
{ |
|
|
|
|
ImGuiNative.igTreePop(); |
|
|
|
|