Files
SL1900 e0549005e1 Update - 1.9.0.103
EN: 1.9.0.103
CN: 1.9.0.104
JP: 1.9.0.106
KR: 1.9.0.108
2026-04-18 00:15:00 +09:00

22 lines
494 B
Lua

local GachaPanel = class("GachaPanel", BasePanel)
local Actor2DManager = require("Game.Actor2D.Actor2DManager")
GachaPanel._tbDefine = {
{
sPrefabPath = "GachaEx/GachaPanel.prefab",
sCtrlName = "Game.UI.GachaEx.GachaCtrl"
}
}
function GachaPanel:Awake()
end
function GachaPanel:OnEnable()
Actor2DManager.ForceUseL2D(true)
end
function GachaPanel:OnDisable()
Actor2DManager.ForceUseL2D(false)
end
function GachaPanel:OnDestroy()
end
function GachaPanel:OnRelease()
end
return GachaPanel