2020-08-05 16:30:02 +08:00
|
|
|
----- 神将置换 -----
|
|
|
|
local this = {}
|
|
|
|
local sortingOrder=0
|
|
|
|
|
|
|
|
function this:InitComponent(gameObject)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function this:BindEvent()
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function this:AddListener()
|
|
|
|
end
|
|
|
|
|
|
|
|
function this:RemoveListener()
|
|
|
|
end
|
|
|
|
|
|
|
|
function this:OnSortingOrderChange(_sortingOrder)
|
|
|
|
sortingOrder = _sortingOrder
|
|
|
|
end
|
|
|
|
|
|
|
|
function this:OnShow(...)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
function this:OnClose()
|
|
|
|
end
|
|
|
|
|
|
|
|
function this:OnDestroy()
|
|
|
|
end
|
|
|
|
|
|
|
|
return this
|