KLBraveTrialsPanelView.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---@class KLBraveTrialsPanelView:UIKmlLuaViewBase
  2. ---@field img_11 UIKmlLuaControl
  3. ---@field img_12 UIKmlLuaControl
  4. ---@field img_13 UIKmlLuaControl
  5. ---@field img_14 UIKmlLuaControl
  6. ---@field btn_close UIKmlLuaControl
  7. ---@field osascroll_bravetrials UIKmlLuaControl
  8. ---@field list_brave_trials UIKmlLuaControl
  9. ---@field img_18 UIKmlLuaControl
  10. ---@field img_19 UIKmlLuaControl
  11. ---@field item_stage_reward UIKmlLuaControl
  12. ---@field img_stage_reward UIKmlLuaControl
  13. ---@field img_reward_click UIKmlLuaControl
  14. ---@field text_receive_reward UIKmlLuaControl
  15. ---@field model_show_monster UIKmlLuaControl
  16. ---@field cut_area_up UIKmlLuaControl
  17. ---@field img_26 UIKmlLuaControl
  18. ---@field img_27 UIKmlLuaControl
  19. ---@field text_current_level UIKmlLuaControl
  20. ---@field grid_pass_reward UIKmlLuaControl
  21. ---@field list_pass_reward UIKmlLuaControl
  22. ---@field img_33 UIKmlLuaControl
  23. ---@field text_34 UIKmlLuaControl
  24. ---@field text_pass_times UIKmlLuaControl
  25. ---@field btn_start_challenge UIKmlLuaControl
  26. ---@field text_challenge_tips UIKmlLuaControl
  27. local KLBraveTrialsPanelView = {}
  28. setmetatable(KLBraveTrialsPanelView,UIKmlLuaViewBase)
  29. local kmlPath = 'dev/outui/BraveTrials/Panel/KLBraveTrials/KLBraveTrialsPanelKml'
  30. KLBraveTrialsPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  31. ---@param parent UIKmlLuaControl
  32. function KLBraveTrialsPanelView:Init(parent)
  33. self:InitRoot(parent,kmlPath,KLBraveTrialsPanelView.content)
  34. end
  35. return KLBraveTrialsPanelView