KLRenderPanelView.lua 449 B

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