diff options
author | chai <chaifix@163.com> | 2021-10-18 02:12:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-18 02:12:30 +0800 |
commit | 22e576b5aa065f3cb2ca67a951af5e68063419a2 (patch) | |
tree | d72c6c77e33990cc70952c58e9ca50637ba6c242 /Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp | |
parent | 7c8c68d79343d04be382334c15a73d079450857c (diff) |
*scripting
Diffstat (limited to 'Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp')
-rw-r--r-- | Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp | 8 |
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) |