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
+8
View File
@@ -0,0 +1,8 @@
namespace GlitchyEngine.Editor;
enum EditorFlags
{
Default = 0,
HideInHierarchy = 1,
HideInScene = 2,
}