blob: 07cead43edb693b96f5ea9b0c9d70ca7a7a26695 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
local Debug = GameLab.Debug
local AssetBrowser = GameLab.Editor.GUI.EditorWindow.Extend("AssetBrowser", "GameLab.Editor")
AssetBrowser.Ctor = function(self)
self.base.Ctor(self, "AssetBrowser")
end
AssetBrowser.OnGUI = function(self)
Debug.Log("AssetBrowser.OnGUI()" .. self.title)
end
AssetBrowser.OnFocus = function(self)
Debug.Log("AssetBrowser.OnFocus()" .. self.title)
end
return AssetBrowser
|