KLAppearPreviewPanelView.lua 512 B

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