diff options
author | chai <chaifix@163.com> | 2021-11-11 18:27:36 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-11-11 18:27:36 +0800 |
commit | 0e0aa82ab2ebc9f15519cea710a52c5895690152 (patch) | |
tree | 57e91039458549dadb4e904d537be26fe792b855 /Editor/Scripting/EditorScripting.cpp | |
parent | 36f42b74630d4bca2d1d276d57c4c967d0290380 (diff) |
* rename Editor.GUI to Editor.Window
Diffstat (limited to 'Editor/Scripting/EditorScripting.cpp')
-rw-r--r-- | Editor/Scripting/EditorScripting.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Editor/Scripting/EditorScripting.cpp b/Editor/Scripting/EditorScripting.cpp index c8cfbbb..244dd78 100644 --- a/Editor/Scripting/EditorScripting.cpp +++ b/Editor/Scripting/EditorScripting.cpp @@ -17,9 +17,7 @@ extern int luaopen_GameLab_Engine_Resource(lua_State* L); // GameLab.Engine.Reso extern int luaopen_GameLab_Engine_GUI(lua_State* L); extern int luaopen_GameLab_Editor(lua_State* L); // GameLab.Editor -extern int luaopen_GameLab_Editor_GUI(lua_State* L); // GameLab.Editor.GUI -extern int luaopen_GameLab_Editor_GUILayout(lua_State* L); // GameLab.Editor.GUILayout -extern int luaopen_GameLab_Editor_IMGUI(lua_State* L); // GameLab.Editor.IMGUI +extern int luaopen_GameLab_Editor_Window(lua_State* L); // GameLab.Editor.Window extern int luaopen_GameLab_Editor_Resource(lua_State* L); // GameLab.Editor.Resource extern int luaopen_GameLab_Editor_Profiling(lua_State* L); // GameLab.Editor.Profiling extern int luaopen_GameLab_Editor_Animation(lua_State* L); // GameLab.Editor.Animation @@ -49,7 +47,7 @@ bool SetupGameLabEditorScripting(lua_State* L) openlib(luaopen_GameLab_Engine_GUI); openlib(luaopen_GameLab_Editor); - openlib(luaopen_GameLab_Editor_GUI); + openlib(luaopen_GameLab_Editor_Window); return true; } |