diff options
author | chai <chaifix@163.com> | 2021-10-21 16:11:45 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-10-21 16:11:45 +0800 |
commit | 998a13b08c43b0813d1d4d38692ea7f8bd31c936 (patch) | |
tree | 20ce144f9897c47d5840e34929ca32be8f2cc2c6 /Resources/Scripts/EditorApplication.lua | |
parent | f2dcd16fc72e2f10c9504897bacf5c4c2ecff516 (diff) |
*misc
Diffstat (limited to 'Resources/Scripts/EditorApplication.lua')
-rw-r--r-- | Resources/Scripts/EditorApplication.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Resources/Scripts/EditorApplication.lua b/Resources/Scripts/EditorApplication.lua index 89efb0d..cb4bcb0 100644 --- a/Resources/Scripts/EditorApplication.lua +++ b/Resources/Scripts/EditorApplication.lua @@ -25,6 +25,14 @@ Debug.Log(GameLab.Path.GetRootDirectory()) Debug.Log(inspect{foo=1,2,3,4}) +local wnd = GUI.EditorWindow.New() +Debug.Log(inspect(mainWindow._type)) + +local v = GameLab.Engine.Math.Vector4.New(1,2,3,4) +Debug.Log(inspect(v)) + +local V4 = GameLab.Engine.Math.Vector4.Extend("V4", "GameLab.Engine.Math") + while true do app:PullMessage() |