KLUIPlayerInfoPanelView.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ---@class KLUIPlayerInfoPanelView:UIKmlLuaViewBase
  2. ---@field sliderExperience UIKmlLuaControl
  3. ---@field sliderExperience_ballEndPos UIKmlLuaControl
  4. ---@field experiencePercentage UIKmlLuaControl
  5. ---@field leftBg UIKmlLuaControl
  6. ---@field level UIKmlLuaControl
  7. ---@field right UIKmlLuaControl
  8. ---@field buffMenuBtn UIKmlLuaControl
  9. ---@field buffMenufoldBtn UIKmlLuaControl
  10. ---@field buffMenuexpandBtn UIKmlLuaControl
  11. ---@field experienceMenuexpandBtn UIKmlLuaControl
  12. ---@field mpContainer UIKmlLuaControl
  13. ---@field sliderMp UIKmlLuaControl
  14. ---@field mpTxt UIKmlLuaControl
  15. ---@field mpBg UIKmlLuaControl
  16. ---@field experienceMenufoldBtn UIKmlLuaControl
  17. ---@field atkModelMenu UIKmlLuaControl
  18. ---@field experienceList UIKmlLuaControl
  19. ---@field experience_content UIKmlLuaControl
  20. ---@field experience_list UIKmlLuaControl
  21. ---@field buffs_listContent UIKmlLuaControl
  22. ---@field buffs_list UIKmlLuaControl
  23. ---@field atkModel UIKmlLuaControl
  24. ---@field atkModelMenuBtn UIKmlLuaControl
  25. ---@field icon1 UIKmlLuaControl
  26. ---@field atkModelname UIKmlLuaControl
  27. ---@field experienceItem UIKmlLuaControl
  28. ---@field arrow1 UIKmlLuaControl
  29. ---@field icon2 UIKmlLuaControl
  30. ---@field experienceBg UIKmlLuaControl
  31. ---@field allExperienceTxt UIKmlLuaControl
  32. ---@field left UIKmlLuaControl
  33. ---@field hpContainer UIKmlLuaControl
  34. ---@field sliderHp UIKmlLuaControl
  35. ---@field hpBg UIKmlLuaControl
  36. ---@field hpTxt UIKmlLuaControl
  37. ---@field fast_grid UIKmlLuaControl
  38. ---@field fast_data_list UIKmlLuaControl
  39. ---@field sdContainer UIKmlLuaControl
  40. ---@field sliderSd UIKmlLuaControl
  41. ---@field sdTxt UIKmlLuaControl
  42. ---@field shieldContainer UIKmlLuaControl
  43. ---@field sliderShield UIKmlLuaControl
  44. ---@field shieldTxt UIKmlLuaControl
  45. ---@field sliderPower UIKmlLuaControl
  46. ---@field time UIKmlLuaControl
  47. ---@field MonthCardBtn UIKmlLuaControl
  48. local KLUIPlayerInfoPanelView = {}
  49. setmetatable(KLUIPlayerInfoPanelView,UIKmlLuaViewBase)
  50. local kmlPath = 'dev/ui/MainUI/Panel/KLUIPlayerInfo_PC/KLUIPlayerInfoPanelKml'
  51. KLUIPlayerInfoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  52. ---@param parent UIKmlLuaControl
  53. function KLUIPlayerInfoPanelView:Init(parent)
  54. self:InitRoot(parent,kmlPath,KLUIPlayerInfoPanelView.content)
  55. end
  56. return KLUIPlayerInfoPanelView