KLEquipRegenerateUIPanelView.lua 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ---@class KLEquipRegenerateUIPanelView:UIKmlLuaViewBase
  2. ---@field equip_bg UIKmlLuaControl
  3. ---@field equipName UIKmlLuaControl
  4. ---@field BG UIKmlLuaControl
  5. ---@field ToggleGroupSource UIKmlLuaControl
  6. ---@field 穿戴栏按钮 UIKmlLuaControl
  7. ---@field 背包按钮 UIKmlLuaControl
  8. ---@field 坐骑强化按钮 UIKmlLuaControl
  9. ---@field 幸运符咒按钮 UIKmlLuaControl
  10. ---@field 勾选保护道具_toggle UIKmlLuaControl
  11. ---@field 点击勾选使用文本 UIKmlLuaControl
  12. ---@field 保护道具Item UIKmlLuaControl
  13. ---@field 强化按钮 UIKmlLuaControl
  14. ---@field 失败提示文本 UIKmlLuaControl
  15. ---@field equipIcon UIKmlLuaControl
  16. ---@field mount_model UIKmlLuaControl
  17. ---@field item_model UIKmlLuaControl
  18. ---@field 幸运图标 UIKmlLuaControl
  19. ---@field equipSuccessRatio UIKmlLuaControl
  20. ---@field baseSuccessRatioText UIKmlLuaControl
  21. ---@field strengthLevelBg UIKmlLuaControl
  22. ---@field BGInner_2 UIKmlLuaControl
  23. ---@field preLevel UIKmlLuaControl
  24. ---@field nextLevel UIKmlLuaControl
  25. ---@field strengthIcon UIKmlLuaControl
  26. ---@field arrContent UIKmlLuaControl
  27. ---@field 强化属性列表 UIKmlLuaControl
  28. ---@field strengthIcon_1 UIKmlLuaControl
  29. ---@field StrengthCustomScrollView UIKmlLuaControl
  30. ---@field Content UIKmlLuaControl
  31. ---@field 强化消耗列表 UIKmlLuaControl
  32. ---@field maxLevelTips UIKmlLuaControl
  33. ---@field maxLevel UIKmlLuaControl
  34. ---@field maxArrContent UIKmlLuaControl
  35. ---@field 强化满级属性列表 UIKmlLuaControl
  36. ---@field successAnim UIKmlLuaControl
  37. ---@field successAnimText UIKmlLuaControl
  38. ---@field maxStrengthLevelBg UIKmlLuaControl
  39. ---@field 强化大师按钮 UIKmlLuaControl
  40. local KLEquipRegenerateUIPanelView = {}
  41. setmetatable(KLEquipRegenerateUIPanelView,UIKmlLuaViewBase)
  42. local kmlPath = 'dev/outui/Equip/Panel/KLEquipRegenerateUI/KLEquipRegenerateUIPanelKml'
  43. KLEquipRegenerateUIPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  44. ---@param parent UIKmlLuaControl
  45. function KLEquipRegenerateUIPanelView:Init(parent)
  46. self:InitRoot(parent,kmlPath,KLEquipRegenerateUIPanelView.content)
  47. end
  48. return KLEquipRegenerateUIPanelView