12345678910111213141516171819202122232425262728293031 |
- ---@class KLMountDisplayPanelView:UIKmlLuaViewBase
- ---@field closeBtn UIKmlLuaControl
- ---@field ownerMountRoot UIKmlLuaControl
- ---@field isRankShowMount UIKmlLuaControl
- ---@field model UIKmlLuaControl
- ---@field cancelRideBtn UIKmlLuaControl
- ---@field rideBtn UIKmlLuaControl
- ---@field attInfoList UIKmlLuaControl
- ---@field rideTip UIKmlLuaControl
- ---@field desBtn UIKmlLuaControl
- ---@field mountInfoToggle UIKmlLuaControl
- ---@field mountEquipToggle UIKmlLuaControl
- ---@field tapToggleGroup UIKmlLuaControl
- ---@field mount_att_info_list UIKmlLuaControl
- ---@field mountDesList UIKmlLuaControl
- ---@field skillContainer UIKmlLuaControl
- ---@field skillIcon UIKmlLuaControl
- ---@field skillName UIKmlLuaControl
- ---@field skillDes UIKmlLuaControl
- ---@field skillBg UIKmlLuaControl
- local KLMountDisplayPanelView = {}
- setmetatable(KLMountDisplayPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Mount/Panel/KLMountDisplay/KLMountDisplayPanelKml'
- KLMountDisplayPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLMountDisplayPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLMountDisplayPanelView.content)
- end
- return KLMountDisplayPanelView
|