Files
StellaSora_DataLua/lua/game/ui/successbarex/tracehuntsucbarpanel.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

23 lines
614 B
Lua

local TraceHuntSucBarPanel = class("TraceHuntSucBarPanel", BasePanel)
TraceHuntSucBarPanel._bIsMainPanel = false
TraceHuntSucBarPanel._tbDefine = {
{
sPrefabPath = "SuccessBarEx/TraceHuntSucBarPanel.prefab",
sCtrlName = "Game.UI.SuccessBarEx.TraceHuntSucBarCtrl"
}
}
function TraceHuntSucBarPanel:Awake()
local tbParam = self:GetPanelParam()
if type(tbParam) == "table" then
self.mapData = tbParam[1]
self.callback = tbParam[2]
end
end
function TraceHuntSucBarPanel:OnEnable()
end
function TraceHuntSucBarPanel:OnDisable()
end
function TraceHuntSucBarPanel:OnDestroy()
end
return TraceHuntSucBarPanel