KLUISkillTalentPanelView.lua 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ---@class KLUISkillTalentPanelView: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 LineList UIKmlLuaControl
  22. ---@field Line UIKmlLuaControl
  23. ---@field Line2 UIKmlLuaControl
  24. ---@field Line3 UIKmlLuaControl
  25. ---@field SkillScrollview UIKmlLuaControl
  26. ---@field layout3 UIKmlLuaControl
  27. ---@field SkillDataList UIKmlLuaControl
  28. ---@field scrollview2 UIKmlLuaControl
  29. ---@field layout4 UIKmlLuaControl
  30. ---@field text6 UIKmlLuaControl
  31. ---@field text7 UIKmlLuaControl
  32. ---@field text8 UIKmlLuaControl
  33. local KLUISkillTalentPanelView = {}
  34. setmetatable(KLUISkillTalentPanelView,UIKmlLuaViewBase)
  35. local kmlPath = 'dev/outui/MasterTalent/Panel/KLUISkillTalent/KLUISkillTalentPanelKml'
  36. KLUISkillTalentPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  37. ---@param parent UIKmlLuaControl
  38. function KLUISkillTalentPanelView:Init(parent)
  39. self:InitRoot(parent,kmlPath,KLUISkillTalentPanelView.content)
  40. end
  41. return KLUISkillTalentPanelView