KLBloodCopyTaskProgressPanelView.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---@class KLBloodCopyTaskProgressPanelView:UIKmlLuaViewBase
  2. ---@field bg UIKmlLuaControl
  3. ---@field img2 UIKmlLuaControl
  4. ---@field img3 UIKmlLuaControl
  5. ---@field desBtn UIKmlLuaControl
  6. ---@field title UIKmlLuaControl
  7. ---@field prepareRoot UIKmlLuaControl
  8. ---@field openActivityBtn UIKmlLuaControl
  9. ---@field openDes UIKmlLuaControl
  10. ---@field openDesTxt UIKmlLuaControl
  11. ---@field openTime UIKmlLuaControl
  12. ---@field fightRoot UIKmlLuaControl
  13. ---@field waveNumber UIKmlLuaControl
  14. ---@field taskName UIKmlLuaControl
  15. ---@field taskCount UIKmlLuaControl
  16. ---@field rewardRoot UIKmlLuaControl
  17. ---@field rewardList1 UIKmlLuaControl
  18. ---@field layout67 UIKmlLuaControl
  19. ---@field rewardList UIKmlLuaControl
  20. ---@field text8 UIKmlLuaControl
  21. ---@field endRoot UIKmlLuaControl
  22. ---@field text6 UIKmlLuaControl
  23. ---@field text7 UIKmlLuaControl
  24. ---@field exitBtn UIKmlLuaControl
  25. ---@field endTime UIKmlLuaControl
  26. ---@field noPickUpWeaponTip UIKmlLuaControl
  27. local KLBloodCopyTaskProgressPanelView = {}
  28. setmetatable(KLBloodCopyTaskProgressPanelView,UIKmlLuaViewBase)
  29. local kmlPath = 'dev/outui/Activity/Panel/KLBloodCopyTaskProgress/KLBloodCopyTaskProgressPanelKml'
  30. KLBloodCopyTaskProgressPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  31. ---@param parent UIKmlLuaControl
  32. function KLBloodCopyTaskProgressPanelView:Init(parent)
  33. self:InitRoot(parent,kmlPath,KLBloodCopyTaskProgressPanelView.content)
  34. end
  35. return KLBloodCopyTaskProgressPanelView