KLBuffInfoItemView.lua 531 B

1234567891011121314
  1. ---@class KLBuffInfoItemView:UIKmlLuaViewBase
  2. ---@field control_circlebar UIKmlLuaControl
  3. ---@field text_layer UIKmlLuaControl
  4. local KLBuffInfoItemView = {}
  5. setmetatable(KLBuffInfoItemView,UIKmlLuaViewBase)
  6. local kmlPath = 'dev/ui/MainUI/Item/KLBuffInfo/KLBuffInfoItemKml'
  7. KLBuffInfoItemView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  8. ---@param parent UIKmlLuaControl
  9. function KLBuffInfoItemView:Init(parent)
  10. self:InitRoot(parent,kmlPath,KLBuffInfoItemView.content)
  11. end
  12. return KLBuffInfoItemView