summaryrefslogtreecommitdiff
path: root/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp')
-rw-r--r--Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp b/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp
index f51b6b4..265ea2e 100644
--- a/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp
+++ b/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp
@@ -10,6 +10,14 @@ LUA_BIND_REGISTRY(ContainnerWindow)
LUA_BIND_POSTPROCESS(ContainnerWindow)
{
+ LUA_BIND_REGISTER_ENUM(state, "EShowMode",
+ { "NormalWindow", ShowMode::kShowNormalWindow },
+ { "ShowPopupMenu", ShowMode::kShowPopupMenu },
+ { "Utility ", ShowMode::kShowUtility },
+ { "NoShadow", ShowMode::kShowNoShadow },
+ { "MainWindow", ShowMode::kShowMainWindow },
+ { "AuxWindow", ShowMode::kShowAuxWindow }
+ );
}
LUA_BIND_IMPL_METHOD(ContainnerWindow, _SetTitle)