KLUICareerTalentPanelView.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---@class KLUICareerTalentPanelView:UIKmlLuaViewBase
  2. ---@field LvTitle UIKmlLuaControl
  3. ---@field Lv UIKmlLuaControl
  4. ---@field loadingbar UIKmlLuaControl
  5. ---@field ExpText UIKmlLuaControl
  6. ---@field ExchangeExpButton UIKmlLuaControl
  7. ---@field ExchangeExpRedDot UIKmlLuaControl
  8. ---@field PointTitle UIKmlLuaControl
  9. ---@field PointText UIKmlLuaControl
  10. ---@field ResetButton UIKmlLuaControl
  11. ---@field LeftButton1 UIKmlLuaControl
  12. ---@field LeftButton1_Title UIKmlLuaControl
  13. ---@field LeftButton1_Icon UIKmlLuaControl
  14. ---@field LeftButton1_Enable UIKmlLuaControl
  15. ---@field LeftButton1_EnableText UIKmlLuaControl
  16. ---@field LeftButton2 UIKmlLuaControl
  17. ---@field LeftButton2_Title UIKmlLuaControl
  18. ---@field LeftButton2_Icon UIKmlLuaControl
  19. ---@field LeftButton2_Enable UIKmlLuaControl
  20. ---@field LeftButton2_EnableText UIKmlLuaControl
  21. ---@field SkillScrollview UIKmlLuaControl
  22. ---@field layout3 UIKmlLuaControl
  23. ---@field SkillDataList UIKmlLuaControl
  24. local KLUICareerTalentPanelView = {}
  25. setmetatable(KLUICareerTalentPanelView,UIKmlLuaViewBase)
  26. local kmlPath = 'dev/outui/MasterTalent/Panel/KLUICareerTalent/KLUICareerTalentPanelKml'
  27. KLUICareerTalentPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  28. ---@param parent UIKmlLuaControl
  29. function KLUICareerTalentPanelView:Init(parent)
  30. self:InitRoot(parent,kmlPath,KLUICareerTalentPanelView.content)
  31. end
  32. return KLUICareerTalentPanelView