123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ---@class KLUISkillDescribePanelView:UIKmlLuaViewBase
- ---@field KmlXWSkillDescribeUI UIKmlLuaControl
- ---@field BgWnd UIKmlLuaControl
- ---@field SkillBtnSetting UIKmlLuaControl
- ---@field BagItemBtnSetting UIKmlLuaControl
- ---@field Conditions UIKmlLuaControl
- ---@field UISkillConditionTemplate UIKmlLuaControl
- ---@field Condition_1 UIKmlLuaControl
- ---@field bingo1 UIKmlLuaControl
- ---@field Condition_2 UIKmlLuaControl
- ---@field bingo2 UIKmlLuaControl
- ---@field Condition_3 UIKmlLuaControl
- ---@field bingo3 UIKmlLuaControl
- ---@field SkillName UIKmlLuaControl
- ---@field skillIcon UIKmlLuaControl
- ---@field fullLevelBg UIKmlLuaControl
- ---@field Unlearned UIKmlLuaControl
- ---@field nextLevel UIKmlLuaControl
- ---@field desc1 UIKmlLuaControl
- ---@field levelTxt1 UIKmlLuaControl
- ---@field skillDes1 UIKmlLuaControl
- ---@field desc2 UIKmlLuaControl
- ---@field levelTxt2 UIKmlLuaControl
- ---@field skillDes2 UIKmlLuaControl
- ---@field maxLevelTips UIKmlLuaControl
- ---@field BtnLearn UIKmlLuaControl
- ---@field BtnText UIKmlLuaControl
- ---@field CostShow UIKmlLuaControl
- ---@field costItem UIKmlLuaControl
- ---@field costCount UIKmlLuaControl
- ---@field CostTips UIKmlLuaControl
- local KLUISkillDescribePanelView = {}
- setmetatable(KLUISkillDescribePanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/Skill/Panel/KLUISkillDescribe/KLUISkillDescribePanelKml'
- KLUISkillDescribePanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUISkillDescribePanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUISkillDescribePanelView.content)
- end
- return KLUISkillDescribePanelView
|