KLUIOpenServerFirstKillPanelView.lua 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ---@class KLUIOpenServerFirstKillPanelView:UIKmlLuaViewBase
  2. ---@field UIOpenServerFirstKillPanel UIKmlLuaControl
  3. ---@field Imagebg UIKmlLuaControl
  4. ---@field MonsterList UIKmlLuaControl
  5. ---@field MonsterViewList UIKmlLuaControl
  6. ---@field layout2 UIKmlLuaControl
  7. ---@field DataMonsterList UIKmlLuaControl
  8. ---@field Viewport UIKmlLuaControl
  9. ---@field Content UIKmlLuaControl
  10. ---@field LeftArrow UIKmlLuaControl
  11. ---@field RightArrow UIKmlLuaControl
  12. ---@field SpSelect UIKmlLuaControl
  13. ---@field CurBossModelRoot UIKmlLuaControl
  14. ---@field Bg UIKmlLuaControl
  15. ---@field CurBossName UIKmlLuaControl
  16. ---@field CurBossLevel UIKmlLuaControl
  17. ---@field FullServiceAwardIcon UIKmlLuaControl
  18. ---@field FullServiceAwardClaimed UIKmlLuaControl
  19. ---@field Text UIKmlLuaControl
  20. ---@field BtnFullServiceAward UIKmlLuaControl
  21. ---@field TxtTimePrefix UIKmlLuaControl
  22. ---@field TxtTime UIKmlLuaControl
  23. ---@field BgFullServer UIKmlLuaControl
  24. ---@field Title UIKmlLuaControl
  25. ---@field FullServiceRewardTitle UIKmlLuaControl
  26. ---@field ServiceRewardListScrollView UIKmlLuaControl
  27. ---@field Viewport_1 UIKmlLuaControl
  28. ---@field ServiceRewardContent UIKmlLuaControl
  29. ---@field GlobalServerRewardViewList UIKmlLuaControl
  30. ---@field layout3 UIKmlLuaControl
  31. ---@field DataGlobalServerRewardList UIKmlLuaControl
  32. ---@field FullServicePlayer UIKmlLuaControl
  33. ---@field FullServicePlayerNames UIKmlLuaControl
  34. ---@field UIScrollTextTemplate UIKmlLuaControl
  35. ---@field TxtName UIKmlLuaControl
  36. ---@field FirstKillTimeTitle UIKmlLuaControl
  37. ---@field FirstKillTime UIKmlLuaControl
  38. ---@field BgPerson UIKmlLuaControl
  39. ---@field Title_1 UIKmlLuaControl
  40. ---@field PersonRewardTitle UIKmlLuaControl
  41. ---@field PersonRewardListScrollView UIKmlLuaControl
  42. ---@field Viewport_2 UIKmlLuaControl
  43. ---@field PersonRewardContent UIKmlLuaControl
  44. ---@field PersonRewardList UIKmlLuaControl
  45. ---@field layout5 UIKmlLuaControl
  46. ---@field DataPersonRewardList UIKmlLuaControl
  47. ---@field LeaveForKill UIKmlLuaControl
  48. ---@field FirstKillFinished UIKmlLuaControl
  49. ---@field ClaimPersonReward UIKmlLuaControl
  50. ---@field BossRelive UIKmlLuaControl
  51. ---@field BossReliveTime UIKmlLuaControl
  52. local KLUIOpenServerFirstKillPanelView = {}
  53. setmetatable(KLUIOpenServerFirstKillPanelView,UIKmlLuaViewBase)
  54. local kmlPath = 'dev/outui/OpenServerActivity/Panel/KLUIOpenServerFirstKill/KLUIOpenServerFirstKillPanelKml'
  55. KLUIOpenServerFirstKillPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  56. ---@param parent UIKmlLuaControl
  57. function KLUIOpenServerFirstKillPanelView:Init(parent)
  58. self:InitRoot(parent,kmlPath,KLUIOpenServerFirstKillPanelView.content)
  59. end
  60. return KLUIOpenServerFirstKillPanelView