12345678910111213141516171819202122232425262728293031323334353637 |
- ---@class KLHookPanelView:UIKmlLuaViewBase
- ---@field ScopeOfMonster1 UIKmlLuaControl
- ---@field ScopeOfMonster2 UIKmlLuaControl
- ---@field ScopeOfMonster3 UIKmlLuaControl
- ---@field ScopeOfMonster4 UIKmlLuaControl
- ---@field ScopeOfMonster5 UIKmlLuaControl
- ---@field ScopeOfMonster6 UIKmlLuaControl
- ---@field ScopeOfMonster7 UIKmlLuaControl
- ---@field ScopeOfMonster8 UIKmlLuaControl
- ---@field hpSlider UIKmlLuaControl
- ---@field mpSlider UIKmlLuaControl
- ---@field hpTxt UIKmlLuaControl
- ---@field mpTxt UIKmlLuaControl
- ---@field combackAtk UIKmlLuaControl
- ---@field combackHookPoint UIKmlLuaControl
- ---@field comebackTime UIKmlLuaControl
- ---@field callSkill UIKmlLuaControl
- ---@field CallSkillBtn UIKmlLuaControl
- ---@field skillIcon UIKmlLuaControl
- ---@field skillName UIKmlLuaControl
- ---@field skillLevel UIKmlLuaControl
- ---@field planToggleGroup UIKmlLuaControl
- ---@field planToggle1 UIKmlLuaControl
- ---@field planToggle2 UIKmlLuaControl
- ---@field HookSkillContainer UIKmlLuaControl
- ---@field ContainerContent UIKmlLuaControl
- local KLHookPanelView = {}
- setmetatable(KLHookPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Setting/Panel/KLHook/KLHookPanelKml'
- KLHookPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLHookPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLHookPanelView.content)
- end
- return KLHookPanelView
|