1234567891011121314151617181920212223242526272829303132333435363738 |
- ---@class KLSettingBasicPanelView:UIKmlLuaViewBase
- ---@field VoiceTitle UIKmlLuaControl
- ---@field img1 UIKmlLuaControl
- ---@field text2 UIKmlLuaControl
- ---@field Setting UIKmlLuaControl
- ---@field img5 UIKmlLuaControl
- ---@field text6 UIKmlLuaControl
- ---@field FightState UIKmlLuaControl
- ---@field img6 UIKmlLuaControl
- ---@field text7 UIKmlLuaControl
- ---@field text1 UIKmlLuaControl
- ---@field text3 UIKmlLuaControl
- ---@field soundSlider UIKmlLuaControl
- ---@field bgSlider UIKmlLuaControl
- ---@field clickFloor UIKmlLuaControl
- ---@field text4 UIKmlLuaControl
- ---@field togglegroup9 UIKmlLuaControl
- ---@field toggle10 UIKmlLuaControl
- ---@field text11 UIKmlLuaControl
- ---@field toggle12 UIKmlLuaControl
- ---@field text13 UIKmlLuaControl
- ---@field toggle14 UIKmlLuaControl
- ---@field text15 UIKmlLuaControl
- ---@field toggle16 UIKmlLuaControl
- ---@field text17 UIKmlLuaControl
- ---@field BtnRoleChose UIKmlLuaControl
- ---@field BtnExitGame UIKmlLuaControl
- ---@field BtnReDefault UIKmlLuaControl
- local KLSettingBasicPanelView = {}
- setmetatable(KLSettingBasicPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/PCPlatform/Panel/KLSettingBasic/KLSettingBasicPanelKml'
- KLSettingBasicPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLSettingBasicPanelView:Init(parent)
- self:InitRoot(parent,kmlPath,KLSettingBasicPanelView.content)
- end
- return KLSettingBasicPanelView
|