Files
StellaSora_DataLua/lua/game/ui/play_cookie_400004/cookieboardpanel.lua
T
SL1900 35c8d87e86 Update - 1.4.0.73
EN: 1.4.0.73
CN: 1.4.0.74
JP: 1.4.0.77
KR: 1.4.0.80
2025-12-25 19:00:00 +09:00

25 lines
676 B
Lua

local CookieBoardPanel = class("CookieBoardPanel", BasePanel)
local GamepadUIManager = require("GameCore.Module.GamepadUIManager")
CookieBoardPanel._bIsMainPanel = true
CookieBoardPanel._tbDefine = {
{
sPrefabPath = "Play_Cookie_400004/CookieBoardPanel.prefab",
sCtrlName = "Game.UI.Play_Cookie_400004.CookieBoardCtrl"
}
}
function CookieBoardPanel:Awake()
GamepadUIManager.EnterAdventure(true)
end
function CookieBoardPanel:OnEnable()
end
function CookieBoardPanel:OnAfterEnter()
end
function CookieBoardPanel:OnDisable()
end
function CookieBoardPanel:OnDestroy()
GamepadUIManager.QuitAdventure()
end
function CookieBoardPanel:OnRelease()
end
return CookieBoardPanel