Files
StellaSora_DataLua/lua/game/ui/play_icecreamtruck/play/icecreamtruckgamepanel.lua
T
SL1900 8c4bd41668 Update - 1.13.0.124
EN: 1.13.0.124
CN: 1.13.0.124
JP: 1.13.0.128
KR: 1.13.0.130
2026-07-21 12:30:00 +09:00

21 lines
673 B
Lua

local IceCreamTruckGamePanel = class("IceCreamTruckGamePanel", BasePanel)
IceCreamTruckGamePanel._bIsMainPanel = true
IceCreamTruckGamePanel._sSortingLayerName = AllEnum.SortingLayerName.UI
IceCreamTruckGamePanel._sUIResRootPath = "UI_Activity/"
IceCreamTruckGamePanel._tbDefine = {
{
sPrefabPath = "_400013/IceCreamPlayPanel.prefab",
sCtrlName = "Game.UI.Play_IceCreamTruck.Play.IceCreamTruckGameCtrl"
}
}
function IceCreamTruckGamePanel:Awake()
PlayerData.Base:SetSkipNewDayWindow(true)
end
function IceCreamTruckGamePanel:OnEnable()
end
function IceCreamTruckGamePanel:OnDisable()
end
function IceCreamTruckGamePanel:OnDestroy()
end
return IceCreamTruckGamePanel