KLEquipOverlayPanelView.lua 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. ---@class KLEquipOverlayPanelView:UIKmlLuaViewBase
  2. ---@field equip_bg UIKmlLuaControl
  3. ---@field OverlayPanel UIKmlLuaControl
  4. ---@field overlay_title UIKmlLuaControl
  5. ---@field closePanel UIKmlLuaControl
  6. ---@field helptip UIKmlLuaControl
  7. ---@field img_10 UIKmlLuaControl
  8. ---@field zhuEquip UIKmlLuaControl
  9. ---@field zhu_overlay_itembg UIKmlLuaControl
  10. ---@field title_zhuequip UIKmlLuaControl
  11. ---@field zhu_item UIKmlLuaControl
  12. ---@field zhu_bg_overlay_select UIKmlLuaControl
  13. ---@field zhu_add UIKmlLuaControl
  14. ---@field zhu_click UIKmlLuaControl
  15. ---@field img_19 UIKmlLuaControl
  16. ---@field fuEquip UIKmlLuaControl
  17. ---@field fu_overlay_itembg UIKmlLuaControl
  18. ---@field title_fuequip UIKmlLuaControl
  19. ---@field fu_item UIKmlLuaControl
  20. ---@field fu_bg_overlay_select UIKmlLuaControl
  21. ---@field fu_add UIKmlLuaControl
  22. ---@field fu_click UIKmlLuaControl
  23. ---@field item_attr_panel UIKmlLuaControl
  24. ---@field Luckystone UIKmlLuaControl
  25. ---@field LuckystoneCount UIKmlLuaControl
  26. ---@field LuckyClick UIKmlLuaControl
  27. ---@field Luckystonenull UIKmlLuaControl
  28. ---@field successIcon UIKmlLuaControl
  29. ---@field success_rate1 UIKmlLuaControl
  30. ---@field success_rate2 UIKmlLuaControl
  31. ---@field img_34 UIKmlLuaControl
  32. ---@field text_35 UIKmlLuaControl
  33. ---@field scroll_entry UIKmlLuaControl
  34. ---@field grid_entry UIKmlLuaControl
  35. ---@field entry_list UIKmlLuaControl
  36. ---@field text_46 UIKmlLuaControl
  37. ---@field img_47 UIKmlLuaControl
  38. ---@field cost_item UIKmlLuaControl
  39. ---@field cost_count UIKmlLuaControl
  40. ---@field cost_btn UIKmlLuaControl
  41. ---@field Overlay_btn UIKmlLuaControl
  42. ---@field Add_CostItem_panel UIKmlLuaControl
  43. ---@field CostItem_mask UIKmlLuaControl
  44. ---@field CostItem_BG UIKmlLuaControl
  45. ---@field costItem_successIcon UIKmlLuaControl
  46. ---@field rate_text1 UIKmlLuaControl
  47. ---@field rate_text2 UIKmlLuaControl
  48. ---@field rate_item_add UIKmlLuaControl
  49. ---@field rate_item_slider UIKmlLuaControl
  50. ---@field rate_item_sub UIKmlLuaControl
  51. ---@field rate_CostItem UIKmlLuaControl
  52. ---@field costItem_name UIKmlLuaControl
  53. ---@field total_CostItem UIKmlLuaControl
  54. ---@field use_costItem UIKmlLuaControl
  55. ---@field rate_sure_btn UIKmlLuaControl
  56. ---@field text_63 UIKmlLuaControl
  57. ---@field result_panel UIKmlLuaControl
  58. ---@field result_success_img UIKmlLuaControl
  59. ---@field result_success_text UIKmlLuaControl
  60. ---@field result_fail_img UIKmlLuaControl
  61. ---@field result_fail_text UIKmlLuaControl
  62. local KLEquipOverlayPanelView = {}
  63. setmetatable(KLEquipOverlayPanelView,UIKmlLuaViewBase)
  64. local kmlPath = 'dev/outui/Equip/Panel/KLEquipOverlay/KLEquipOverlayPanelKml'
  65. KLEquipOverlayPanelView.content = CS.TCFramework.LuaManager.LoadFileText(kmlPath,nil,'.txt')
  66. ---@param parent UIKmlLuaControl
  67. function KLEquipOverlayPanelView:Init(parent)
  68. self:InitRoot(parent,kmlPath,KLEquipOverlayPanelView.content)
  69. end
  70. return KLEquipOverlayPanelView