diff options
Diffstat (limited to 'Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp')
-rw-r--r-- | Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp b/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp index ce0efc8..02b29df 100644 --- a/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp +++ b/Editor/Scripting/EditorGUI/ContainerWindow.bind.cpp @@ -56,10 +56,10 @@ LUA_BIND_IMPL_METHOD(ContainerWindow, ContainerWindow::_New) ContainerWindow* wnd = new ContainerWindow(state.GetVM()); - Rectf rect = state.GetValue<Rectf>(state, Rectf()); + Rect rect = state.GetValue<Rect>(state, Rect()); int showMode = state.GetValue<int>(2, 0); - Vector2f min = state.GetValue<Vector2f>(state, Vector2f()); - Vector2f max = state.GetValue<Vector2f>(state, Vector2f()); + Vector2 min = state.GetValue<Vector2>(state, Vector2()); + Vector2 max = state.GetValue<Vector2>(state, Vector2()); wnd->Init(rect, showMode, min, max); |