miduo_client/Assets/ManagedResources/~Lua/Modules/Compound/view/CompoundPanel_Talisman.lua

31 lines
383 B
Lua
Raw Normal View History

2021-04-21 13:12:04 +08:00
----- 宝器合成 -----
2020-05-09 13:31:21 +08:00
local this = {}
local sortingOrder=0
function this:InitComponent(gameObject)
2021-04-21 13:12:04 +08:00
this.spLoader = SpriteLoader.New()
2020-05-09 13:31:21 +08:00
end
function this:BindEvent()
end
function this:AddListener()
end
function this:RemoveListener()
end
function this:OnShow(...)
end
function this:OnClose()
end
function this:OnDestroy()
2021-04-21 13:12:04 +08:00
this.spLoader:Destroy()
2020-05-09 13:31:21 +08:00
end
2020-06-23 18:36:24 +08:00
return this