1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- ---@class KLUIPlayerInfoPanelView:UIKmlLuaViewBase
- ---@field leftBg UIKmlLuaControl
- ---@field level UIKmlLuaControl
- ---@field experiencePercentage UIKmlLuaControl
- ---@field left UIKmlLuaControl
- ---@field experienceItem UIKmlLuaControl
- ---@field experienceBg UIKmlLuaControl
- ---@field allExperienceTxt UIKmlLuaControl
- ---@field icon2 UIKmlLuaControl
- ---@field arrow1 UIKmlLuaControl
- ---@field experienceMenufoldBtn UIKmlLuaControl
- ---@field experienceMenuexpandBtn UIKmlLuaControl
- ---@field experienceList UIKmlLuaControl
- ---@field experience_content UIKmlLuaControl
- ---@field experience_list UIKmlLuaControl
- ---@field hpContainer UIKmlLuaControl
- ---@field sliderHp UIKmlLuaControl
- ---@field hpBg UIKmlLuaControl
- ---@field hpTxt UIKmlLuaControl
- ---@field right UIKmlLuaControl
- ---@field mpContainer UIKmlLuaControl
- ---@field sliderMp UIKmlLuaControl
- ---@field mpBg UIKmlLuaControl
- ---@field mpTxt UIKmlLuaControl
- ---@field buffs_listContent UIKmlLuaControl
- ---@field buffs_list UIKmlLuaControl
- ---@field buffMenuBtn UIKmlLuaControl
- ---@field buffMenufoldBtn UIKmlLuaControl
- ---@field buffMenuexpandBtn UIKmlLuaControl
- ---@field atkModel UIKmlLuaControl
- ---@field icon1 UIKmlLuaControl
- ---@field atkModelMenuBtn UIKmlLuaControl
- ---@field atkModelname UIKmlLuaControl
- ---@field atkModelMenu UIKmlLuaControl
- ---@field sliderExperience UIKmlLuaControl
- ---@field sliderExperience_ballEndPos UIKmlLuaControl
- ---@field fast_grid UIKmlLuaControl
- ---@field fast_data_list UIKmlLuaControl
- ---@field sdContainer UIKmlLuaControl
- ---@field sliderSd UIKmlLuaControl
- ---@field sdTxt UIKmlLuaControl
- ---@field shieldContainer UIKmlLuaControl
- ---@field sliderShield UIKmlLuaControl
- ---@field shieldTxt UIKmlLuaControl
- ---@field sliderPower UIKmlLuaControl
- ---@field time UIKmlLuaControl
- ---@field MonthCardBtn UIKmlLuaControl
- local KLUIPlayerInfoPanelView = {}
- setmetatable(KLUIPlayerInfoPanelView,UIKmlLuaViewBase)
- local kmlPath = 'dev/ui/MainUI/Panel/KLUIPlayerInfo/KLUIPlayerInfoPanelKml'
- KLUIPlayerInfoPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
- ---@param parent UIKmlLuaControl
- function KLUIPlayerInfoPanelView:Init(parent)
-
- self:InitRoot(parent,kmlPath,KLUIPlayerInfoPanelView.content)
- end
- return KLUIPlayerInfoPanelView
|