1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- ---@class KLUIOpenServerFirstKillPanelView:UIKmlLuaViewBase
- ---@field UIOpenServerFirstKillPanel UIKmlLuaControl
- ---@field Imagebg UIKmlLuaControl
- ---@field MonsterList UIKmlLuaControl
- ---@field MonsterViewList UIKmlLuaControl
- ---@field layout2 UIKmlLuaControl
- ---@field DataMonsterList UIKmlLuaControl
- ---@field Viewport UIKmlLuaControl
- ---@field Content UIKmlLuaControl
- ---@field LeftArrow UIKmlLuaControl
- ---@field RightArrow UIKmlLuaControl
- ---@field SpSelect UIKmlLuaControl
- ---@field CurBossModelRoot UIKmlLuaControl
- ---@field Bg UIKmlLuaControl
- ---@field CurBossName UIKmlLuaControl
- ---@field CurBossLevel UIKmlLuaControl
- ---@field FullServiceAwardIcon UIKmlLuaControl
- ---@field FullServiceAwardClaimed UIKmlLuaControl
- ---@field Text UIKmlLuaControl
- ---@field BtnFullServiceAward UIKmlLuaControl
- ---@field TxtTimePrefix UIKmlLuaControl
- ---@field TxtTime UIKmlLuaControl
- ---@field BgFullServer UIKmlLuaControl
- ---@field Title UIKmlLuaControl
- ---@field FullServiceRewardTitle UIKmlLuaControl
- ---@field ServiceRewardListScrollView UIKmlLuaControl
- ---@field Viewport_1 UIKmlLuaControl
- ---@field ServiceRewardContent UIKmlLuaControl
- ---@field GlobalServerRewardViewList UIKmlLuaControl
- ---@field layout3 UIKmlLuaControl
- ---@field DataGlobalServerRewardList UIKmlLuaControl
- ---@field FullServicePlayer UIKmlLuaControl
- ---@field FullServicePlayerNames UIKmlLuaControl
- ---@field UIScrollTextTemplate UIKmlLuaControl
- ---@field TxtName UIKmlLuaControl
- ---@field FirstKillTimeTitle UIKmlLuaControl
- ---@field FirstKillTime UIKmlLuaControl
- ---@field BgPerson UIKmlLuaControl
- ---@field Title_1 UIKmlLuaControl
- ---@field PersonRewardTitle UIKmlLuaControl
- ---@field PersonRewardListScrollView UIKmlLuaControl
- ---@field Viewport_2 UIKmlLuaControl
- ---@field PersonRewardContent UIKmlLuaControl
- ---@field PersonRewardList UIKmlLuaControl
- ---@field layout5 UIKmlLuaControl
- ---@field DataPersonRewardList UIKmlLuaControl
- ---@field LeaveForKill UIKmlLuaControl
- ---@field FirstKillFinished UIKmlLuaControl
- ---@field ClaimPersonReward UIKmlLuaControl
- ---@field BossRelive UIKmlLuaControl
- ---@field BossReliveTime UIKmlLuaControl
- local KLUIOpenServerFirstKillPanelView = {}
- setmetatable(KLUIOpenServerFirstKillPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/OpenServerActivity/Panel/KLUIOpenServerFirstKill/KLUIOpenServerFirstKillPanelKml'
- KLUIOpenServerFirstKillPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIOpenServerFirstKillPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIOpenServerFirstKillPanelView.content)
- end
- return KLUIOpenServerFirstKillPanelView
|