KLAppearPanelView.lua 449 B

123456789101112
  1. ---@class KLAppearPanelView:UIKmlLuaViewBase
  2. local KLAppearPanelView = {}
  3. setmetatable(KLAppearPanelView,UIKmlLuaViewBase)
  4. local kmlPath = 'dev/outui/AppearGroup/Panel/KLAppear/KLAppearPanelKml'
  5. KLAppearPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  6. ---@param parent UIKmlLuaControl
  7. function KLAppearPanelView:Init(parent)
  8. self:InitRoot(parent,kmlPath,KLAppearPanelView.content)
  9. end
  10. return KLAppearPanelView