KLArchangelGrailPanelView.lua 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ---@class KLArchangelGrailPanelView:UIKmlLuaViewBase
  2. ---@field mask UIKmlLuaControl
  3. ---@field BG UIKmlLuaControl
  4. ---@field title UIKmlLuaControl
  5. ---@field CloseButton UIKmlLuaControl
  6. ---@field equip_top UIKmlLuaControl
  7. ---@field item_bottom UIKmlLuaControl
  8. ---@field item8 UIKmlLuaControl
  9. ---@field item_add_img UIKmlLuaControl
  10. ---@field item_name UIKmlLuaControl
  11. ---@field item_grail_tips UIKmlLuaControl
  12. ---@field effectfail UIKmlLuaControl
  13. ---@field effectSucceed UIKmlLuaControl
  14. ---@field scrollview11 UIKmlLuaControl
  15. ---@field gridview12 UIKmlLuaControl
  16. ---@field grail_list UIKmlLuaControl
  17. ---@field grail_suit_all UIKmlLuaControl
  18. ---@field empty_attr_bg UIKmlLuaControl
  19. ---@field img_suit_bg UIKmlLuaControl
  20. ---@field scrollview_all_suit UIKmlLuaControl
  21. ---@field gridview_all_suit UIKmlLuaControl
  22. ---@field grail_all_suit_list UIKmlLuaControl
  23. ---@field strength_panel UIKmlLuaControl
  24. ---@field panel16 UIKmlLuaControl
  25. ---@field img17 UIKmlLuaControl
  26. ---@field text18 UIKmlLuaControl
  27. ---@field StrengthCostScrollView UIKmlLuaControl
  28. ---@field gridview15 UIKmlLuaControl
  29. ---@field cost_list UIKmlLuaControl
  30. ---@field cost_title UIKmlLuaControl
  31. ---@field img3 UIKmlLuaControl
  32. ---@field text4 UIKmlLuaControl
  33. ---@field strengthenBtn UIKmlLuaControl
  34. ---@field gridview20 UIKmlLuaControl
  35. ---@field grail_att_list UIKmlLuaControl
  36. ---@field success_img UIKmlLuaControl
  37. ---@field success_rate UIKmlLuaControl
  38. ---@field strengthLevelBg UIKmlLuaControl
  39. ---@field preLevel UIKmlLuaControl
  40. ---@field arrow UIKmlLuaControl
  41. ---@field nextLevel UIKmlLuaControl
  42. ---@field equipatt_panel UIKmlLuaControl
  43. ---@field img_attr_title UIKmlLuaControl
  44. ---@field scrollview3 UIKmlLuaControl
  45. ---@field gridview4 UIKmlLuaControl
  46. ---@field equip_att_list UIKmlLuaControl
  47. ---@field suit_detail_panel UIKmlLuaControl
  48. ---@field detail_bg UIKmlLuaControl
  49. ---@field detail_bg_2 UIKmlLuaControl
  50. ---@field detail_name UIKmlLuaControl
  51. ---@field detail_attr_1 UIKmlLuaControl
  52. ---@field detail_attr_2 UIKmlLuaControl
  53. ---@field detail_attr_3 UIKmlLuaControl
  54. ---@field warning_img UIKmlLuaControl
  55. ---@field btn_tips UIKmlLuaControl
  56. local KLArchangelGrailPanelView = {}
  57. setmetatable(KLArchangelGrailPanelView, UIKmlLuaViewBase)
  58. local kmlPath = 'dev/outui/Archangel/Panel/KLArchangelGrail/KLArchangelGrailPanelKml'
  59. KLArchangelGrailPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath, nil, '.txt')
  60. ---@param parent UIKmlLuaControl
  61. function KLArchangelGrailPanelView:Init(parent)
  62. self:InitRoot(parent, kmlPath, KLArchangelGrailPanelView.content)
  63. end
  64. return KLArchangelGrailPanelView