Added EditorFlags: Hide entities in hierarchy and editor scene

- Also some Style changes
This commit is contained in:
Simon Lübeß
2024-03-10 12:21:20 +01:00
parent 5ca5404f72
commit 8d92822845
15 changed files with 242 additions and 40 deletions
+3 -1
View File
@@ -138,7 +138,9 @@ namespace ImGui
public static void TextUnformatted(StringView text) => TextUnformattedImpl(text.Ptr, text.Ptr + text.Length);
public static void PushID(StringView id) => PushID(id.Ptr, id.Ptr + id.Length);
public static void PushID(int id) => PushID((void*)id);
/// Releases references that accumulated calls like ImGui::Image
protected internal static extern void CleanupFrame();