KLHookPanelView.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---@class KLHookPanelView:UIKmlLuaViewBase
  2. ---@field ScopeOfMonster1 UIKmlLuaControl
  3. ---@field ScopeOfMonster2 UIKmlLuaControl
  4. ---@field ScopeOfMonster3 UIKmlLuaControl
  5. ---@field ScopeOfMonster4 UIKmlLuaControl
  6. ---@field ScopeOfMonster5 UIKmlLuaControl
  7. ---@field ScopeOfMonster6 UIKmlLuaControl
  8. ---@field ScopeOfMonster7 UIKmlLuaControl
  9. ---@field ScopeOfMonster8 UIKmlLuaControl
  10. ---@field hpSlider UIKmlLuaControl
  11. ---@field mpSlider UIKmlLuaControl
  12. ---@field hpTxt UIKmlLuaControl
  13. ---@field mpTxt UIKmlLuaControl
  14. ---@field combackAtk UIKmlLuaControl
  15. ---@field combackHookPoint UIKmlLuaControl
  16. ---@field comebackTime UIKmlLuaControl
  17. ---@field callSkill UIKmlLuaControl
  18. ---@field CallSkillBtn UIKmlLuaControl
  19. ---@field skillIcon UIKmlLuaControl
  20. ---@field skillName UIKmlLuaControl
  21. ---@field skillLevel UIKmlLuaControl
  22. ---@field planToggleGroup UIKmlLuaControl
  23. ---@field planToggle1 UIKmlLuaControl
  24. ---@field planToggle2 UIKmlLuaControl
  25. ---@field HookSkillContainer UIKmlLuaControl
  26. ---@field ContainerContent UIKmlLuaControl
  27. local KLHookPanelView = {}
  28. setmetatable(KLHookPanelView,UIKmlLuaViewBase)
  29. local kmlPath = 'dev/ui/Setting/Panel/KLHook/KLHookPanelKml'
  30. KLHookPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  31. ---@param parent UIKmlLuaControl
  32. function KLHookPanelView:Init(parent)
  33. self:InitRoot(parent,kmlPath,KLHookPanelView.content)
  34. end
  35. return KLHookPanelView