1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- ---@class KLEquipRegenerateUIPanelView:UIKmlLuaViewBase
- ---@field equip_bg UIKmlLuaControl
- ---@field equipName UIKmlLuaControl
- ---@field BG UIKmlLuaControl
- ---@field ToggleGroupSource UIKmlLuaControl
- ---@field 穿戴栏按钮 UIKmlLuaControl
- ---@field 背包按钮 UIKmlLuaControl
- ---@field 坐骑强化按钮 UIKmlLuaControl
- ---@field 幸运符咒按钮 UIKmlLuaControl
- ---@field 勾选保护道具_toggle UIKmlLuaControl
- ---@field 点击勾选使用文本 UIKmlLuaControl
- ---@field 保护道具Item UIKmlLuaControl
- ---@field 强化按钮 UIKmlLuaControl
- ---@field 失败提示文本 UIKmlLuaControl
- ---@field equipIcon UIKmlLuaControl
- ---@field mount_model UIKmlLuaControl
- ---@field item_model UIKmlLuaControl
- ---@field 幸运图标 UIKmlLuaControl
- ---@field equipSuccessRatio UIKmlLuaControl
- ---@field baseSuccessRatioText UIKmlLuaControl
- ---@field strengthLevelBg UIKmlLuaControl
- ---@field BGInner_2 UIKmlLuaControl
- ---@field preLevel UIKmlLuaControl
- ---@field nextLevel UIKmlLuaControl
- ---@field strengthIcon UIKmlLuaControl
- ---@field arrContent UIKmlLuaControl
- ---@field 强化属性列表 UIKmlLuaControl
- ---@field strengthIcon_1 UIKmlLuaControl
- ---@field StrengthCustomScrollView UIKmlLuaControl
- ---@field Content UIKmlLuaControl
- ---@field 强化消耗列表 UIKmlLuaControl
- ---@field maxLevelTips UIKmlLuaControl
- ---@field maxLevel UIKmlLuaControl
- ---@field maxArrContent UIKmlLuaControl
- ---@field 强化满级属性列表 UIKmlLuaControl
- ---@field successAnim UIKmlLuaControl
- ---@field successAnimText UIKmlLuaControl
- ---@field maxStrengthLevelBg UIKmlLuaControl
- ---@field 强化大师按钮 UIKmlLuaControl
- local KLEquipRegenerateUIPanelView = {}
- setmetatable(KLEquipRegenerateUIPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/outui/Equip/Panel/KLEquipRegenerateUI/KLEquipRegenerateUIPanelKml'
- KLEquipRegenerateUIPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLEquipRegenerateUIPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLEquipRegenerateUIPanelView.content)
- end
- return KLEquipRegenerateUIPanelView
|