KLMountEquipPanelView.lua 1.1 KB

1234567891011121314151617181920212223242526272829
  1. ---@class KLMountEquipPanelView:UIKmlLuaViewBase
  2. ---@field closeBtn UIKmlLuaControl
  3. ---@field ownerMountRoot UIKmlLuaControl
  4. ---@field model UIKmlLuaControl
  5. ---@field mountInfoToggle UIKmlLuaControl
  6. ---@field mountEquipToggle UIKmlLuaControl
  7. ---@field pos51 UIKmlLuaControl
  8. ---@field pos52 UIKmlLuaControl
  9. ---@field pos53 UIKmlLuaControl
  10. ---@field pos54 UIKmlLuaControl
  11. ---@field pos55 UIKmlLuaControl
  12. ---@field skillIcon UIKmlLuaControl
  13. ---@field skillName UIKmlLuaControl
  14. ---@field skillDes UIKmlLuaControl
  15. ---@field desBtn UIKmlLuaControl
  16. ---@field bagGrid UIKmlLuaControl
  17. ---@field skillBg UIKmlLuaControl
  18. ---@field closeBtn2 UIKmlLuaControl
  19. local KLMountEquipPanelView = {}
  20. setmetatable(KLMountEquipPanelView,UIKmlLuaViewBase)
  21. local kmlPath = 'dev/outui/Mount/Panel/KLMountEquip/KLMountEquipPanelKml'
  22. KLMountEquipPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  23. ---@param parent UIKmlLuaControl
  24. function KLMountEquipPanelView:Init(parent)
  25. self:InitRoot(parent,kmlPath,KLMountEquipPanelView.content)
  26. end
  27. return KLMountEquipPanelView