123456789101112131415161718192021 |
- ---@class KLBasicPanelView:UIKmlLuaViewBase
- ---@field bgSlider UIKmlLuaControl
- ---@field soundSlider UIKmlLuaControl
- ---@field fixedJoyStick UIKmlLuaControl
- ---@field moveJoyStick UIKmlLuaControl
- ---@field clickFloor UIKmlLuaControl
- ---@field BtnLock UIKmlLuaControl
- ---@field BtnRoleChose UIKmlLuaControl
- ---@field BtnExitGame UIKmlLuaControl
- ---@field BtnReDefault UIKmlLuaControl
- local KLBasicPanelView = {}
- setmetatable(KLBasicPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Setting/Panel/KLBasic/KLBasicPanelKml'
- KLBasicPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLBasicPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLBasicPanelView.content)
- end
- return KLBasicPanelView
|