UIEvilView_Generate.lua 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779
  1. ---@class UIEvil__Generate_battleShow
  2. ---@field public gameObject UnityEngine.GameObject
  3. ---@field public skeletonGraphic Spine.Unity.SkeletonGraphic
  4. ---@class UIEvil__Generate_successNode_AnyBtn
  5. ---@field public gameObject UnityEngine.GameObject
  6. ---@field public button UnityEngine.UI.Button
  7. ---@class UIEvil__Generate_successNode
  8. ---@field public gameObject UnityEngine.GameObject
  9. ---@field public AnyBtn UIEvil__Generate_successNode_AnyBtn
  10. ---@class UIEvil__Generate_iconGoto
  11. ---@field public gameObject UnityEngine.GameObject
  12. ---@field public image UnityEngine.UI.Image
  13. ---@class UIEvil__Generate_btnInOut
  14. ---@field public gameObject UnityEngine.GameObject
  15. ---@field public button UnityEngine.UI.Button
  16. ---@class UIEvil__Generate_btnGoto
  17. ---@field public gameObject UnityEngine.GameObject
  18. ---@field public button UnityEngine.UI.Button
  19. ---@class UIEvil__Generate_text2
  20. ---@field public gameObject UnityEngine.GameObject
  21. ---@field public uILocalizeScript UILocalizeScript
  22. ---@class UIEvil__Generate_text1
  23. ---@field public gameObject UnityEngine.GameObject
  24. ---@field public uILocalizeScript UILocalizeScript
  25. ---@class UIEvil__Generate_bgGoto
  26. ---@field public gameObject UnityEngine.GameObject
  27. ---@field public animator UnityEngine.Animator
  28. ---@class UIEvil__Generate_evilValTxt
  29. ---@field public gameObject UnityEngine.GameObject
  30. ---@field public text UnityEngine.UI.Text
  31. ---@class UIEvil__Generate_coinIcon
  32. ---@field public gameObject UnityEngine.GameObject
  33. ---@field public button UnityEngine.UI.Button
  34. ---@class UIEvil__Generate_bossNode4_cdNode_cdTxt
  35. ---@field public gameObject UnityEngine.GameObject
  36. ---@field public text UnityEngine.UI.Text
  37. ---@class UIEvil__Generate_bossNode4_cdNode
  38. ---@field public gameObject UnityEngine.GameObject
  39. ---@field public cdTxt UIEvil__Generate_bossNode4_cdNode_cdTxt
  40. ---@class UIEvil__Generate_bossNode4_rewardItem
  41. ---@field public gameObject UnityEngine.GameObject
  42. ---@field public rectTransform UnityEngine.RectTransform
  43. ---@field public layoutElement UnityEngine.UI.LayoutElement
  44. ---@class UIEvil__Generate_bossNode4_costVal
  45. ---@field public gameObject UnityEngine.GameObject
  46. ---@field public text UnityEngine.UI.Text
  47. ---@class UIEvil__Generate_bossNode4_challengeBtn
  48. ---@field public gameObject UnityEngine.GameObject
  49. ---@field public button UnityEngine.UI.Button
  50. ---@class UIEvil__Generate_bossNode4_bossName
  51. ---@field public gameObject UnityEngine.GameObject
  52. ---@field public text TMPro.TextMeshProUGUI
  53. ---@class UIEvil__Generate_bossNode4_titleImg
  54. ---@field public gameObject UnityEngine.GameObject
  55. ---@field public image UnityEngine.UI.Image
  56. ---@field public switchSprite SwitchSprite
  57. ---@class UIEvil__Generate_bossNode4_bossNode_bossImg
  58. ---@field public gameObject UnityEngine.GameObject
  59. ---@field public image UnityEngine.UI.Image
  60. ---@field public button UnityEngine.UI.Button
  61. ---@class UIEvil__Generate_bossNode4_bossNode
  62. ---@field public gameObject UnityEngine.GameObject
  63. ---@field public rectTransform UnityEngine.RectTransform
  64. ---@field public bossImg UIEvil__Generate_bossNode4_bossNode_bossImg
  65. ---@class UIEvil__Generate_bossNode4_shadow
  66. ---@field public gameObject UnityEngine.GameObject
  67. ---@field public image UnityEngine.UI.Image
  68. ---@class UIEvil__Generate_bossNode4
  69. ---@field public gameObject UnityEngine.GameObject
  70. ---@field public animator UnityEngine.Animator
  71. ---@field public shadow UIEvil__Generate_bossNode4_shadow
  72. ---@field public bossNode UIEvil__Generate_bossNode4_bossNode
  73. ---@field public titleImg UIEvil__Generate_bossNode4_titleImg
  74. ---@field public bossName UIEvil__Generate_bossNode4_bossName
  75. ---@field public passedNode UnityEngine.GameObject
  76. ---@field public challengeBtn UIEvil__Generate_bossNode4_challengeBtn
  77. ---@field public costVal UIEvil__Generate_bossNode4_costVal
  78. ---@field public rewardItem UIEvil__Generate_bossNode4_rewardItem
  79. ---@field public cdNode UIEvil__Generate_bossNode4_cdNode
  80. ---@class UIEvil__Generate_bossNode3_cdNode_cdTxt
  81. ---@field public gameObject UnityEngine.GameObject
  82. ---@field public text UnityEngine.UI.Text
  83. ---@class UIEvil__Generate_bossNode3_cdNode
  84. ---@field public gameObject UnityEngine.GameObject
  85. ---@field public cdTxt UIEvil__Generate_bossNode3_cdNode_cdTxt
  86. ---@class UIEvil__Generate_bossNode3_rewardItem
  87. ---@field public gameObject UnityEngine.GameObject
  88. ---@field public rectTransform UnityEngine.RectTransform
  89. ---@field public layoutElement UnityEngine.UI.LayoutElement
  90. ---@class UIEvil__Generate_bossNode3_costVal
  91. ---@field public gameObject UnityEngine.GameObject
  92. ---@field public text UnityEngine.UI.Text
  93. ---@class UIEvil__Generate_bossNode3_challengeBtn
  94. ---@field public gameObject UnityEngine.GameObject
  95. ---@field public button UnityEngine.UI.Button
  96. ---@class UIEvil__Generate_bossNode3_bossName
  97. ---@field public gameObject UnityEngine.GameObject
  98. ---@field public text TMPro.TextMeshProUGUI
  99. ---@class UIEvil__Generate_bossNode3_titleImg
  100. ---@field public gameObject UnityEngine.GameObject
  101. ---@field public image UnityEngine.UI.Image
  102. ---@field public switchSprite SwitchSprite
  103. ---@class UIEvil__Generate_bossNode3_bossNode_bossImg
  104. ---@field public gameObject UnityEngine.GameObject
  105. ---@field public image UnityEngine.UI.Image
  106. ---@field public button UnityEngine.UI.Button
  107. ---@class UIEvil__Generate_bossNode3_bossNode
  108. ---@field public gameObject UnityEngine.GameObject
  109. ---@field public rectTransform UnityEngine.RectTransform
  110. ---@field public bossImg UIEvil__Generate_bossNode3_bossNode_bossImg
  111. ---@class UIEvil__Generate_bossNode3_shadow
  112. ---@field public gameObject UnityEngine.GameObject
  113. ---@field public image UnityEngine.UI.Image
  114. ---@class UIEvil__Generate_bossNode3
  115. ---@field public gameObject UnityEngine.GameObject
  116. ---@field public animator UnityEngine.Animator
  117. ---@field public shadow UIEvil__Generate_bossNode3_shadow
  118. ---@field public bossNode UIEvil__Generate_bossNode3_bossNode
  119. ---@field public titleImg UIEvil__Generate_bossNode3_titleImg
  120. ---@field public bossName UIEvil__Generate_bossNode3_bossName
  121. ---@field public passedNode UnityEngine.GameObject
  122. ---@field public challengeBtn UIEvil__Generate_bossNode3_challengeBtn
  123. ---@field public costVal UIEvil__Generate_bossNode3_costVal
  124. ---@field public rewardItem UIEvil__Generate_bossNode3_rewardItem
  125. ---@field public cdNode UIEvil__Generate_bossNode3_cdNode
  126. ---@class UIEvil__Generate_bossNode2_cdNode_cdTxt
  127. ---@field public gameObject UnityEngine.GameObject
  128. ---@field public text UnityEngine.UI.Text
  129. ---@class UIEvil__Generate_bossNode2_cdNode
  130. ---@field public gameObject UnityEngine.GameObject
  131. ---@field public cdTxt UIEvil__Generate_bossNode2_cdNode_cdTxt
  132. ---@class UIEvil__Generate_bossNode2_rewardItem
  133. ---@field public gameObject UnityEngine.GameObject
  134. ---@field public rectTransform UnityEngine.RectTransform
  135. ---@field public layoutElement UnityEngine.UI.LayoutElement
  136. ---@class UIEvil__Generate_bossNode2_costVal
  137. ---@field public gameObject UnityEngine.GameObject
  138. ---@field public text UnityEngine.UI.Text
  139. ---@class UIEvil__Generate_bossNode2_challengeBtn
  140. ---@field public gameObject UnityEngine.GameObject
  141. ---@field public button UnityEngine.UI.Button
  142. ---@class UIEvil__Generate_bossNode2_bossName
  143. ---@field public gameObject UnityEngine.GameObject
  144. ---@field public text TMPro.TextMeshProUGUI
  145. ---@class UIEvil__Generate_bossNode2_titleImg
  146. ---@field public gameObject UnityEngine.GameObject
  147. ---@field public image UnityEngine.UI.Image
  148. ---@field public switchSprite SwitchSprite
  149. ---@class UIEvil__Generate_bossNode2_bossNode_bossImg
  150. ---@field public gameObject UnityEngine.GameObject
  151. ---@field public image UnityEngine.UI.Image
  152. ---@field public button UnityEngine.UI.Button
  153. ---@class UIEvil__Generate_bossNode2_bossNode
  154. ---@field public gameObject UnityEngine.GameObject
  155. ---@field public rectTransform UnityEngine.RectTransform
  156. ---@field public bossImg UIEvil__Generate_bossNode2_bossNode_bossImg
  157. ---@class UIEvil__Generate_bossNode2_shadow
  158. ---@field public gameObject UnityEngine.GameObject
  159. ---@field public image UnityEngine.UI.Image
  160. ---@class UIEvil__Generate_bossNode2
  161. ---@field public gameObject UnityEngine.GameObject
  162. ---@field public animator UnityEngine.Animator
  163. ---@field public shadow UIEvil__Generate_bossNode2_shadow
  164. ---@field public bossNode UIEvil__Generate_bossNode2_bossNode
  165. ---@field public titleImg UIEvil__Generate_bossNode2_titleImg
  166. ---@field public bossName UIEvil__Generate_bossNode2_bossName
  167. ---@field public passedNode UnityEngine.GameObject
  168. ---@field public challengeBtn UIEvil__Generate_bossNode2_challengeBtn
  169. ---@field public costVal UIEvil__Generate_bossNode2_costVal
  170. ---@field public rewardItem UIEvil__Generate_bossNode2_rewardItem
  171. ---@field public cdNode UIEvil__Generate_bossNode2_cdNode
  172. ---@class UIEvil__Generate_bossNode1_cdNode_cdTxt
  173. ---@field public gameObject UnityEngine.GameObject
  174. ---@field public text UnityEngine.UI.Text
  175. ---@class UIEvil__Generate_bossNode1_cdNode
  176. ---@field public gameObject UnityEngine.GameObject
  177. ---@field public cdTxt UIEvil__Generate_bossNode1_cdNode_cdTxt
  178. ---@class UIEvil__Generate_bossNode1_rewardItem
  179. ---@field public gameObject UnityEngine.GameObject
  180. ---@field public rectTransform UnityEngine.RectTransform
  181. ---@field public layoutElement UnityEngine.UI.LayoutElement
  182. ---@class UIEvil__Generate_bossNode1_costVal
  183. ---@field public gameObject UnityEngine.GameObject
  184. ---@field public text UnityEngine.UI.Text
  185. ---@class UIEvil__Generate_bossNode1_challengeBtn
  186. ---@field public gameObject UnityEngine.GameObject
  187. ---@field public button UnityEngine.UI.Button
  188. ---@class UIEvil__Generate_bossNode1_bossName
  189. ---@field public gameObject UnityEngine.GameObject
  190. ---@field public text TMPro.TextMeshProUGUI
  191. ---@class UIEvil__Generate_bossNode1_titleImg
  192. ---@field public gameObject UnityEngine.GameObject
  193. ---@field public image UnityEngine.UI.Image
  194. ---@field public switchSprite SwitchSprite
  195. ---@class UIEvil__Generate_bossNode1_bossNode_bossImg
  196. ---@field public gameObject UnityEngine.GameObject
  197. ---@field public image UnityEngine.UI.Image
  198. ---@field public button UnityEngine.UI.Button
  199. ---@class UIEvil__Generate_bossNode1_bossNode
  200. ---@field public gameObject UnityEngine.GameObject
  201. ---@field public rectTransform UnityEngine.RectTransform
  202. ---@field public bossImg UIEvil__Generate_bossNode1_bossNode_bossImg
  203. ---@class UIEvil__Generate_bossNode1_shadow
  204. ---@field public gameObject UnityEngine.GameObject
  205. ---@field public image UnityEngine.UI.Image
  206. ---@class UIEvil__Generate_bossNode1
  207. ---@field public gameObject UnityEngine.GameObject
  208. ---@field public animator UnityEngine.Animator
  209. ---@field public shadow UIEvil__Generate_bossNode1_shadow
  210. ---@field public bossNode UIEvil__Generate_bossNode1_bossNode
  211. ---@field public titleImg UIEvil__Generate_bossNode1_titleImg
  212. ---@field public bossName UIEvil__Generate_bossNode1_bossName
  213. ---@field public passedNode UnityEngine.GameObject
  214. ---@field public challengeBtn UIEvil__Generate_bossNode1_challengeBtn
  215. ---@field public costVal UIEvil__Generate_bossNode1_costVal
  216. ---@field public rewardItem UIEvil__Generate_bossNode1_rewardItem
  217. ---@field public cdNode UIEvil__Generate_bossNode1_cdNode
  218. ---@class UIEvil__Generate_usedRefreshCntTxt
  219. ---@field public gameObject UnityEngine.GameObject
  220. ---@field public text UnityEngine.UI.Text
  221. ---@class UIEvil__Generate_costTxt
  222. ---@field public gameObject UnityEngine.GameObject
  223. ---@field public text UnityEngine.UI.Text
  224. ---@class UIEvil__Generate_costIcon
  225. ---@field public gameObject UnityEngine.GameObject
  226. ---@field public image UnityEngine.UI.Image
  227. ---@class UIEvil__Generate_refreshBtn
  228. ---@field public gameObject UnityEngine.GameObject
  229. ---@field public button UnityEngine.UI.Button
  230. ---@class UIEvil__Generate_closeBtn
  231. ---@field public gameObject UnityEngine.GameObject
  232. ---@field public button UnityEngine.UI.Button
  233. ---@class UIEvil__Generate_tipsNode_tipsTxt
  234. ---@field public gameObject UnityEngine.GameObject
  235. ---@field public text UnityEngine.UI.Text
  236. ---@class UIEvil__Generate_tipsNode
  237. ---@field public gameObject UnityEngine.GameObject
  238. ---@field public tipsTxt UIEvil__Generate_tipsNode_tipsTxt
  239. ---@class UIEvil__Generate_playRuleBtn
  240. ---@field public gameObject UnityEngine.GameObject
  241. ---@field public button UnityEngine.UI.Button
  242. ---@class UIEvil__Generate_levelInfoBtn
  243. ---@field public gameObject UnityEngine.GameObject
  244. ---@field public button UnityEngine.UI.Button
  245. ---@class UIEvil__Generate_evilLevelTxt
  246. ---@field public gameObject UnityEngine.GameObject
  247. ---@field public text TMPro.TextMeshProUGUI
  248. ---@class UIEvil__Generate_AnyBtn
  249. ---@field public gameObject UnityEngine.GameObject
  250. ---@field public button UnityEngine.UI.Button
  251. ---@class UIEvil__Generate_uIAnimator
  252. ---@field public gameObject UnityEngine.GameObject
  253. ---@field public animator UnityEngine.Animator
  254. ---@class UIEvil__Generate
  255. ---@field private gameObject UnityEngine.GameObject
  256. ---@field private transform UnityEngine.Transform
  257. ---@field private uIAnimator UIEvil__Generate_uIAnimator
  258. ---@field private AnyBtn UIEvil__Generate_AnyBtn
  259. ---@field private window UnityEngine.GameObject
  260. ---@field private evilLevelTxt UIEvil__Generate_evilLevelTxt
  261. ---@field private levelInfoBtn UIEvil__Generate_levelInfoBtn
  262. ---@field private playRuleBtn UIEvil__Generate_playRuleBtn
  263. ---@field private tipsNode UIEvil__Generate_tipsNode
  264. ---@field private closeBtn UIEvil__Generate_closeBtn
  265. ---@field private refreshBtn UIEvil__Generate_refreshBtn
  266. ---@field private costIcon UIEvil__Generate_costIcon
  267. ---@field private costTxt UIEvil__Generate_costTxt
  268. ---@field private usedRefreshCntTxt UIEvil__Generate_usedRefreshCntTxt
  269. ---@field private bossBoxes UnityEngine.GameObject
  270. ---@field private bossNode1 UIEvil__Generate_bossNode1
  271. ---@field private bossNode2 UIEvil__Generate_bossNode2
  272. ---@field private bossNode3 UIEvil__Generate_bossNode3
  273. ---@field private bossNode4 UIEvil__Generate_bossNode4
  274. ---@field private coinIcon UIEvil__Generate_coinIcon
  275. ---@field private evilValTxt UIEvil__Generate_evilValTxt
  276. ---@field private uIGoto UnityEngine.GameObject
  277. ---@field private bgGoto UIEvil__Generate_bgGoto
  278. ---@field private light UnityEngine.GameObject
  279. ---@field private text1 UIEvil__Generate_text1
  280. ---@field private text2 UIEvil__Generate_text2
  281. ---@field private btnGoto UIEvil__Generate_btnGoto
  282. ---@field private btnInOut UIEvil__Generate_btnInOut
  283. ---@field private iconGoto UIEvil__Generate_iconGoto
  284. ---@field private successNode UIEvil__Generate_successNode
  285. ---@field private battleShow UIEvil__Generate_battleShow
  286. local UIEvilView = class("UIEvilView", require("UIViewBase"))
  287. function UIEvilView:ctor()
  288. end
  289. ---@private
  290. function UIEvilView:SetActive(result)
  291. self.gameObject:SetActive(result)
  292. end
  293. ---@private
  294. function UIEvilView:InitGenerate(Root, data)
  295. self.transform = Root
  296. self.inited = true
  297. if self.super.Init then
  298. self.super.Init(self)
  299. end
  300. local tmp
  301. self:InitGenerate__1(Root,data)
  302. self:InitGenerate__2(Root,data)
  303. self:InitGenerate__3(Root,data)
  304. self:InitGenerate__4(Root,data)
  305. self:InitGenerate__5(Root,data)
  306. self:InitGenerate__6(Root,data)
  307. self:InitGenerate__7(Root,data)
  308. self:InitGenerate__8(Root,data)
  309. self:InitGenerate__9(Root,data)
  310. self:InitGenerate__10(Root,data)
  311. self:InitGenerate__11(Root,data)
  312. self:InitGenerate__12(Root,data)
  313. self:InitGenerate__13(Root,data)
  314. self:InitGenerate__14(Root,data)
  315. self:InitGenerate__15(Root,data)
  316. self:InitGenerate__16(Root,data)
  317. self:InitGenerate__17(Root,data)
  318. self:InitGenerate__18(Root,data)
  319. self:InitGenerate__19(Root,data)
  320. self:InitGenerate__20(Root,data)
  321. self:InitGenerate__21(Root,data)
  322. self:InitGenerate__22(Root,data)
  323. self:InitGenerate__23(Root,data)
  324. self:InitGenerate__24(Root,data)
  325. self:InitGenerate__25(Root,data)
  326. self:InitGenerate__26(Root,data)
  327. self:InitGenerate__27(Root,data)
  328. self:InitGenerate__28(Root,data)
  329. self:InitGenerate__29(Root,data)
  330. self:InitGenerate__30(Root,data)
  331. self:InitGenerate__31(Root,data)
  332. self:InitGenerate__32(Root,data)
  333. self:InitGenerate__33(Root,data)
  334. self:InitGenerate__34(Root,data)
  335. self:InitGenerate__35(Root,data)
  336. self:InitGenerate__36(Root,data)
  337. self:InitGenerate__37(Root,data)
  338. self:InitGenerate__38(Root,data)
  339. self:InitGenerate__39(Root,data)
  340. self:InitGenerate__40(Root,data)
  341. self:InitGenerate__41(Root,data)
  342. self:InitGenerate__42(Root,data)
  343. self:InitGenerate__43(Root,data)
  344. self:InitGenerate__44(Root,data)
  345. self:InitGenerate__45(Root,data)
  346. self:InitGenerate__46(Root,data)
  347. self:InitGenerate__47(Root,data)
  348. self:InitGenerate__48(Root,data)
  349. self:InitGenerate__49(Root,data)
  350. self:InitGenerate__50(Root,data)
  351. self:InitGenerate__51(Root,data)
  352. self:InitGenerate__52(Root,data)
  353. self:InitGenerate__53(Root,data)
  354. self:InitGenerate__54(Root,data)
  355. self:InitGenerate__55(Root,data)
  356. self:InitGenerate__56(Root,data)
  357. self:InitGenerate__57(Root,data)
  358. self:InitGenerate__58(Root,data)
  359. self:InitGenerate__59(Root,data)
  360. self:InitGenerate__60(Root,data)
  361. self:InitGenerate__61(Root,data)
  362. self:InitGenerate__62(Root,data)
  363. self:InitGenerate__63(Root,data)
  364. self:InitGenerate__64(Root,data)
  365. self:InitGenerate__65(Root,data)
  366. self:InitGenerate__66(Root,data)
  367. self:InitGenerate__67(Root,data)
  368. self:InitGenerate__68(Root,data)
  369. self:InitGenerate__69(Root,data)
  370. self:InitGenerate__70(Root,data)
  371. self:InitGenerate__71(Root,data)
  372. self:InitGenerate__72(Root,data)
  373. self:InitGenerate__73(Root,data)
  374. self:InitGenerate__74(Root,data)
  375. self:InitGenerate__75(Root,data)
  376. end
  377. ---@private
  378. function UIEvilView:InitGenerate__1(Root, data)
  379. --[[
  380. UIAnimator
  381. --]]
  382. local tmp = Root:Find("UIAnimator").gameObject
  383. if tolua.getpeer(tmp) == nil then
  384. tolua.setpeer(tmp, {})
  385. end
  386. self.uIAnimator = tmp
  387. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  388. tmp.animator.logWarnings = false
  389. end
  390. ---@private
  391. function UIEvilView:InitGenerate__2(Root, data)
  392. --[[
  393. UIAnimator/Alpha
  394. --]]
  395. local tmp = Root:Find("UIAnimator/Alpha").gameObject
  396. if tolua.getpeer(tmp) == nil then
  397. tolua.setpeer(tmp, {})
  398. end
  399. self.AnyBtn = tmp
  400. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  401. end
  402. ---@private
  403. function UIEvilView:InitGenerate__3(Root, data)
  404. --[[
  405. UIAnimator/Window
  406. --]]
  407. local tmp = Root:Find("UIAnimator/Window").gameObject
  408. if tolua.getpeer(tmp) == nil then
  409. tolua.setpeer(tmp, {})
  410. end
  411. self.window = tmp
  412. end
  413. ---@private
  414. function UIEvilView:InitGenerate__4(Root, data)
  415. --[[
  416. UIAnimator/Window/Result/Title/evilLevelNode
  417. --]]
  418. local tmp = Root:Find("UIAnimator/Window/Result/Title/evilLevelNode").gameObject
  419. if tolua.getpeer(tmp) == nil then
  420. tolua.setpeer(tmp, {})
  421. end
  422. self.evilLevelTxt = tmp
  423. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  424. end
  425. ---@private
  426. function UIEvilView:InitGenerate__5(Root, data)
  427. --[[
  428. UIAnimator/Window/Result/Title/BtnLevelInfo
  429. --]]
  430. local tmp = Root:Find("UIAnimator/Window/Result/Title/BtnLevelInfo").gameObject
  431. if tolua.getpeer(tmp) == nil then
  432. tolua.setpeer(tmp, {})
  433. end
  434. self.levelInfoBtn = tmp
  435. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  436. end
  437. ---@private
  438. function UIEvilView:InitGenerate__6(Root, data)
  439. --[[
  440. UIAnimator/Window/Result/Title/BtnPlayRule
  441. --]]
  442. local tmp = Root:Find("UIAnimator/Window/Result/Title/BtnPlayRule").gameObject
  443. if tolua.getpeer(tmp) == nil then
  444. tolua.setpeer(tmp, {})
  445. end
  446. self.playRuleBtn = tmp
  447. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  448. end
  449. ---@private
  450. function UIEvilView:InitGenerate__7(Root, data)
  451. --[[
  452. UIAnimator/Window/Result/Title/LittleDevil/Talk
  453. --]]
  454. local tmp = Root:Find("UIAnimator/Window/Result/Title/LittleDevil/Talk").gameObject
  455. if tolua.getpeer(tmp) == nil then
  456. tolua.setpeer(tmp, {})
  457. end
  458. self.tipsNode = tmp
  459. end
  460. ---@private
  461. function UIEvilView:InitGenerate__8(Root, data)
  462. --[[
  463. UIAnimator/Window/Result/Title/LittleDevil/Talk/Text
  464. --]]
  465. local tmp = Root:Find("UIAnimator/Window/Result/Title/LittleDevil/Talk/Text").gameObject
  466. if tolua.getpeer(tmp) == nil then
  467. tolua.setpeer(tmp, {})
  468. end
  469. self.tipsNode.tipsTxt = tmp
  470. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  471. end
  472. ---@private
  473. function UIEvilView:InitGenerate__9(Root, data)
  474. --[[
  475. UIAnimator/Window/Result/Bottom/BtnBack
  476. --]]
  477. local tmp = Root:Find("UIAnimator/Window/Result/Bottom/BtnBack").gameObject
  478. if tolua.getpeer(tmp) == nil then
  479. tolua.setpeer(tmp, {})
  480. end
  481. self.closeBtn = tmp
  482. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  483. end
  484. ---@private
  485. function UIEvilView:InitGenerate__10(Root, data)
  486. --[[
  487. UIAnimator/Window/Result/Bottom/RefreshBtn
  488. --]]
  489. local tmp = Root:Find("UIAnimator/Window/Result/Bottom/RefreshBtn").gameObject
  490. if tolua.getpeer(tmp) == nil then
  491. tolua.setpeer(tmp, {})
  492. end
  493. self.refreshBtn = tmp
  494. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  495. end
  496. ---@private
  497. function UIEvilView:InitGenerate__11(Root, data)
  498. --[[
  499. UIAnimator/Window/Result/Bottom/RefreshBtn/Image/icon
  500. --]]
  501. local tmp = Root:Find("UIAnimator/Window/Result/Bottom/RefreshBtn/Image/icon").gameObject
  502. if tolua.getpeer(tmp) == nil then
  503. tolua.setpeer(tmp, {})
  504. end
  505. self.costIcon = tmp
  506. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  507. end
  508. ---@private
  509. function UIEvilView:InitGenerate__12(Root, data)
  510. --[[
  511. UIAnimator/Window/Result/Bottom/RefreshBtn/Image/Text
  512. --]]
  513. local tmp = Root:Find("UIAnimator/Window/Result/Bottom/RefreshBtn/Image/Text").gameObject
  514. if tolua.getpeer(tmp) == nil then
  515. tolua.setpeer(tmp, {})
  516. end
  517. self.costTxt = tmp
  518. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  519. end
  520. ---@private
  521. function UIEvilView:InitGenerate__13(Root, data)
  522. --[[
  523. UIAnimator/Window/Result/Bottom/Image/Text
  524. --]]
  525. local tmp = Root:Find("UIAnimator/Window/Result/Bottom/Image/Text").gameObject
  526. if tolua.getpeer(tmp) == nil then
  527. tolua.setpeer(tmp, {})
  528. end
  529. self.usedRefreshCntTxt = tmp
  530. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  531. end
  532. ---@private
  533. function UIEvilView:InitGenerate__14(Root, data)
  534. --[[
  535. UIAnimator/Window/Result/BossBoxes
  536. --]]
  537. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes").gameObject
  538. if tolua.getpeer(tmp) == nil then
  539. tolua.setpeer(tmp, {})
  540. end
  541. self.bossBoxes = tmp
  542. end
  543. ---@private
  544. function UIEvilView:InitGenerate__15(Root, data)
  545. --[[
  546. UIAnimator/Window/Result/BossBoxes/BossNode1
  547. --]]
  548. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1").gameObject
  549. if tolua.getpeer(tmp) == nil then
  550. tolua.setpeer(tmp, {})
  551. end
  552. self.bossNode1 = tmp
  553. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  554. tmp.animator.logWarnings = false
  555. end
  556. ---@private
  557. function UIEvilView:InitGenerate__16(Root, data)
  558. --[[
  559. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Bg1
  560. --]]
  561. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Bg1").gameObject
  562. if tolua.getpeer(tmp) == nil then
  563. tolua.setpeer(tmp, {})
  564. end
  565. self.bossNode1.shadow = tmp
  566. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  567. end
  568. ---@private
  569. function UIEvilView:InitGenerate__17(Root, data)
  570. --[[
  571. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Boss
  572. --]]
  573. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Boss").gameObject
  574. if tolua.getpeer(tmp) == nil then
  575. tolua.setpeer(tmp, {})
  576. end
  577. self.bossNode1.bossNode = tmp
  578. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  579. end
  580. ---@private
  581. function UIEvilView:InitGenerate__18(Root, data)
  582. --[[
  583. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Boss/BossImg
  584. --]]
  585. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Boss/BossImg").gameObject
  586. if tolua.getpeer(tmp) == nil then
  587. tolua.setpeer(tmp, {})
  588. end
  589. self.bossNode1.bossNode.bossImg = tmp
  590. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  591. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  592. end
  593. ---@private
  594. function UIEvilView:InitGenerate__19(Root, data)
  595. --[[
  596. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Title
  597. --]]
  598. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Title").gameObject
  599. if tolua.getpeer(tmp) == nil then
  600. tolua.setpeer(tmp, {})
  601. end
  602. self.bossNode1.titleImg = tmp
  603. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  604. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  605. end
  606. ---@private
  607. function UIEvilView:InitGenerate__20(Root, data)
  608. --[[
  609. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Title/Text
  610. --]]
  611. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Title/Text").gameObject
  612. if tolua.getpeer(tmp) == nil then
  613. tolua.setpeer(tmp, {})
  614. end
  615. self.bossNode1.bossName = tmp
  616. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  617. end
  618. ---@private
  619. function UIEvilView:InitGenerate__21(Root, data)
  620. --[[
  621. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Defeat
  622. --]]
  623. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/Defeat").gameObject
  624. if tolua.getpeer(tmp) == nil then
  625. tolua.setpeer(tmp, {})
  626. end
  627. self.bossNode1.passedNode = tmp
  628. end
  629. ---@private
  630. function UIEvilView:InitGenerate__22(Root, data)
  631. --[[
  632. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/ChallengeBtn
  633. --]]
  634. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/ChallengeBtn").gameObject
  635. if tolua.getpeer(tmp) == nil then
  636. tolua.setpeer(tmp, {})
  637. end
  638. self.bossNode1.challengeBtn = tmp
  639. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  640. end
  641. ---@private
  642. function UIEvilView:InitGenerate__23(Root, data)
  643. --[[
  644. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/ChallengeBtn/Image/Cost/Text
  645. --]]
  646. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/ChallengeBtn/Image/Cost/Text").gameObject
  647. if tolua.getpeer(tmp) == nil then
  648. tolua.setpeer(tmp, {})
  649. end
  650. self.bossNode1.costVal = tmp
  651. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  652. end
  653. ---@private
  654. function UIEvilView:InitGenerate__24(Root, data)
  655. --[[
  656. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/IconSmallItem
  657. --]]
  658. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/IconSmallItem").gameObject
  659. if tolua.getpeer(tmp) == nil then
  660. tolua.setpeer(tmp, {})
  661. end
  662. self.bossNode1.rewardItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  663. self.bossNode1.rewardItem.prefabName = "IconItem"
  664. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  665. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  666. end
  667. ---@private
  668. function UIEvilView:InitGenerate__25(Root, data)
  669. --[[
  670. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/CDNode
  671. --]]
  672. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/CDNode").gameObject
  673. if tolua.getpeer(tmp) == nil then
  674. tolua.setpeer(tmp, {})
  675. end
  676. self.bossNode1.cdNode = tmp
  677. end
  678. ---@private
  679. function UIEvilView:InitGenerate__26(Root, data)
  680. --[[
  681. UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/CDNode/cd
  682. --]]
  683. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode1/Frame/CDNode/cd").gameObject
  684. if tolua.getpeer(tmp) == nil then
  685. tolua.setpeer(tmp, {})
  686. end
  687. self.bossNode1.cdNode.cdTxt = tmp
  688. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  689. end
  690. ---@private
  691. function UIEvilView:InitGenerate__27(Root, data)
  692. --[[
  693. UIAnimator/Window/Result/BossBoxes/BossNode2
  694. --]]
  695. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2").gameObject
  696. if tolua.getpeer(tmp) == nil then
  697. tolua.setpeer(tmp, {})
  698. end
  699. self.bossNode2 = tmp
  700. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  701. tmp.animator.logWarnings = false
  702. end
  703. ---@private
  704. function UIEvilView:InitGenerate__28(Root, data)
  705. --[[
  706. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Bg1
  707. --]]
  708. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Bg1").gameObject
  709. if tolua.getpeer(tmp) == nil then
  710. tolua.setpeer(tmp, {})
  711. end
  712. self.bossNode2.shadow = tmp
  713. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  714. end
  715. ---@private
  716. function UIEvilView:InitGenerate__29(Root, data)
  717. --[[
  718. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Boss
  719. --]]
  720. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Boss").gameObject
  721. if tolua.getpeer(tmp) == nil then
  722. tolua.setpeer(tmp, {})
  723. end
  724. self.bossNode2.bossNode = tmp
  725. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  726. end
  727. ---@private
  728. function UIEvilView:InitGenerate__30(Root, data)
  729. --[[
  730. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Boss/BossImg
  731. --]]
  732. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Boss/BossImg").gameObject
  733. if tolua.getpeer(tmp) == nil then
  734. tolua.setpeer(tmp, {})
  735. end
  736. self.bossNode2.bossNode.bossImg = tmp
  737. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  738. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  739. end
  740. ---@private
  741. function UIEvilView:InitGenerate__31(Root, data)
  742. --[[
  743. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Title
  744. --]]
  745. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Title").gameObject
  746. if tolua.getpeer(tmp) == nil then
  747. tolua.setpeer(tmp, {})
  748. end
  749. self.bossNode2.titleImg = tmp
  750. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  751. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  752. end
  753. ---@private
  754. function UIEvilView:InitGenerate__32(Root, data)
  755. --[[
  756. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Title/Text
  757. --]]
  758. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Title/Text").gameObject
  759. if tolua.getpeer(tmp) == nil then
  760. tolua.setpeer(tmp, {})
  761. end
  762. self.bossNode2.bossName = tmp
  763. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  764. end
  765. ---@private
  766. function UIEvilView:InitGenerate__33(Root, data)
  767. --[[
  768. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Defeat
  769. --]]
  770. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/Defeat").gameObject
  771. if tolua.getpeer(tmp) == nil then
  772. tolua.setpeer(tmp, {})
  773. end
  774. self.bossNode2.passedNode = tmp
  775. end
  776. ---@private
  777. function UIEvilView:InitGenerate__34(Root, data)
  778. --[[
  779. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/ChallengeBtn
  780. --]]
  781. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/ChallengeBtn").gameObject
  782. if tolua.getpeer(tmp) == nil then
  783. tolua.setpeer(tmp, {})
  784. end
  785. self.bossNode2.challengeBtn = tmp
  786. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  787. end
  788. ---@private
  789. function UIEvilView:InitGenerate__35(Root, data)
  790. --[[
  791. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/ChallengeBtn/Image/Cost/Text
  792. --]]
  793. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/ChallengeBtn/Image/Cost/Text").gameObject
  794. if tolua.getpeer(tmp) == nil then
  795. tolua.setpeer(tmp, {})
  796. end
  797. self.bossNode2.costVal = tmp
  798. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  799. end
  800. ---@private
  801. function UIEvilView:InitGenerate__36(Root, data)
  802. --[[
  803. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/IconSmallItem
  804. --]]
  805. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/IconSmallItem").gameObject
  806. if tolua.getpeer(tmp) == nil then
  807. tolua.setpeer(tmp, {})
  808. end
  809. self.bossNode2.rewardItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  810. self.bossNode2.rewardItem.prefabName = "IconItem"
  811. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  812. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  813. end
  814. ---@private
  815. function UIEvilView:InitGenerate__37(Root, data)
  816. --[[
  817. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/CDNode
  818. --]]
  819. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/CDNode").gameObject
  820. if tolua.getpeer(tmp) == nil then
  821. tolua.setpeer(tmp, {})
  822. end
  823. self.bossNode2.cdNode = tmp
  824. end
  825. ---@private
  826. function UIEvilView:InitGenerate__38(Root, data)
  827. --[[
  828. UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/CDNode/cd
  829. --]]
  830. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode2/Frame/CDNode/cd").gameObject
  831. if tolua.getpeer(tmp) == nil then
  832. tolua.setpeer(tmp, {})
  833. end
  834. self.bossNode2.cdNode.cdTxt = tmp
  835. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  836. end
  837. ---@private
  838. function UIEvilView:InitGenerate__39(Root, data)
  839. --[[
  840. UIAnimator/Window/Result/BossBoxes/BossNode3
  841. --]]
  842. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3").gameObject
  843. if tolua.getpeer(tmp) == nil then
  844. tolua.setpeer(tmp, {})
  845. end
  846. self.bossNode3 = tmp
  847. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  848. tmp.animator.logWarnings = false
  849. end
  850. ---@private
  851. function UIEvilView:InitGenerate__40(Root, data)
  852. --[[
  853. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Bg1
  854. --]]
  855. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Bg1").gameObject
  856. if tolua.getpeer(tmp) == nil then
  857. tolua.setpeer(tmp, {})
  858. end
  859. self.bossNode3.shadow = tmp
  860. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  861. end
  862. ---@private
  863. function UIEvilView:InitGenerate__41(Root, data)
  864. --[[
  865. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Boss
  866. --]]
  867. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Boss").gameObject
  868. if tolua.getpeer(tmp) == nil then
  869. tolua.setpeer(tmp, {})
  870. end
  871. self.bossNode3.bossNode = tmp
  872. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  873. end
  874. ---@private
  875. function UIEvilView:InitGenerate__42(Root, data)
  876. --[[
  877. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Boss/BossImg
  878. --]]
  879. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Boss/BossImg").gameObject
  880. if tolua.getpeer(tmp) == nil then
  881. tolua.setpeer(tmp, {})
  882. end
  883. self.bossNode3.bossNode.bossImg = tmp
  884. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  885. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  886. end
  887. ---@private
  888. function UIEvilView:InitGenerate__43(Root, data)
  889. --[[
  890. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Title
  891. --]]
  892. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Title").gameObject
  893. if tolua.getpeer(tmp) == nil then
  894. tolua.setpeer(tmp, {})
  895. end
  896. self.bossNode3.titleImg = tmp
  897. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  898. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  899. end
  900. ---@private
  901. function UIEvilView:InitGenerate__44(Root, data)
  902. --[[
  903. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Title/Text
  904. --]]
  905. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Title/Text").gameObject
  906. if tolua.getpeer(tmp) == nil then
  907. tolua.setpeer(tmp, {})
  908. end
  909. self.bossNode3.bossName = tmp
  910. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  911. end
  912. ---@private
  913. function UIEvilView:InitGenerate__45(Root, data)
  914. --[[
  915. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Defeat
  916. --]]
  917. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/Defeat").gameObject
  918. if tolua.getpeer(tmp) == nil then
  919. tolua.setpeer(tmp, {})
  920. end
  921. self.bossNode3.passedNode = tmp
  922. end
  923. ---@private
  924. function UIEvilView:InitGenerate__46(Root, data)
  925. --[[
  926. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/ChallengeBtn
  927. --]]
  928. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/ChallengeBtn").gameObject
  929. if tolua.getpeer(tmp) == nil then
  930. tolua.setpeer(tmp, {})
  931. end
  932. self.bossNode3.challengeBtn = tmp
  933. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  934. end
  935. ---@private
  936. function UIEvilView:InitGenerate__47(Root, data)
  937. --[[
  938. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/ChallengeBtn/Image/Cost/Text
  939. --]]
  940. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/ChallengeBtn/Image/Cost/Text").gameObject
  941. if tolua.getpeer(tmp) == nil then
  942. tolua.setpeer(tmp, {})
  943. end
  944. self.bossNode3.costVal = tmp
  945. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  946. end
  947. ---@private
  948. function UIEvilView:InitGenerate__48(Root, data)
  949. --[[
  950. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/IconSmallItem
  951. --]]
  952. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/IconSmallItem").gameObject
  953. if tolua.getpeer(tmp) == nil then
  954. tolua.setpeer(tmp, {})
  955. end
  956. self.bossNode3.rewardItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  957. self.bossNode3.rewardItem.prefabName = "IconItem"
  958. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  959. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  960. end
  961. ---@private
  962. function UIEvilView:InitGenerate__49(Root, data)
  963. --[[
  964. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/CDNode
  965. --]]
  966. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/CDNode").gameObject
  967. if tolua.getpeer(tmp) == nil then
  968. tolua.setpeer(tmp, {})
  969. end
  970. self.bossNode3.cdNode = tmp
  971. end
  972. ---@private
  973. function UIEvilView:InitGenerate__50(Root, data)
  974. --[[
  975. UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/CDNode/cd
  976. --]]
  977. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode3/Frame/CDNode/cd").gameObject
  978. if tolua.getpeer(tmp) == nil then
  979. tolua.setpeer(tmp, {})
  980. end
  981. self.bossNode3.cdNode.cdTxt = tmp
  982. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  983. end
  984. ---@private
  985. function UIEvilView:InitGenerate__51(Root, data)
  986. --[[
  987. UIAnimator/Window/Result/BossBoxes/BossNode4
  988. --]]
  989. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4").gameObject
  990. if tolua.getpeer(tmp) == nil then
  991. tolua.setpeer(tmp, {})
  992. end
  993. self.bossNode4 = tmp
  994. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  995. tmp.animator.logWarnings = false
  996. end
  997. ---@private
  998. function UIEvilView:InitGenerate__52(Root, data)
  999. --[[
  1000. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Bg1
  1001. --]]
  1002. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Bg1").gameObject
  1003. if tolua.getpeer(tmp) == nil then
  1004. tolua.setpeer(tmp, {})
  1005. end
  1006. self.bossNode4.shadow = tmp
  1007. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1008. end
  1009. ---@private
  1010. function UIEvilView:InitGenerate__53(Root, data)
  1011. --[[
  1012. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Boss
  1013. --]]
  1014. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Boss").gameObject
  1015. if tolua.getpeer(tmp) == nil then
  1016. tolua.setpeer(tmp, {})
  1017. end
  1018. self.bossNode4.bossNode = tmp
  1019. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1020. end
  1021. ---@private
  1022. function UIEvilView:InitGenerate__54(Root, data)
  1023. --[[
  1024. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Boss/BossImg
  1025. --]]
  1026. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Boss/BossImg").gameObject
  1027. if tolua.getpeer(tmp) == nil then
  1028. tolua.setpeer(tmp, {})
  1029. end
  1030. self.bossNode4.bossNode.bossImg = tmp
  1031. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1032. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1033. end
  1034. ---@private
  1035. function UIEvilView:InitGenerate__55(Root, data)
  1036. --[[
  1037. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Title
  1038. --]]
  1039. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Title").gameObject
  1040. if tolua.getpeer(tmp) == nil then
  1041. tolua.setpeer(tmp, {})
  1042. end
  1043. self.bossNode4.titleImg = tmp
  1044. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1045. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  1046. end
  1047. ---@private
  1048. function UIEvilView:InitGenerate__56(Root, data)
  1049. --[[
  1050. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Title/Text
  1051. --]]
  1052. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Title/Text").gameObject
  1053. if tolua.getpeer(tmp) == nil then
  1054. tolua.setpeer(tmp, {})
  1055. end
  1056. self.bossNode4.bossName = tmp
  1057. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1058. end
  1059. ---@private
  1060. function UIEvilView:InitGenerate__57(Root, data)
  1061. --[[
  1062. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Defeat
  1063. --]]
  1064. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/Defeat").gameObject
  1065. if tolua.getpeer(tmp) == nil then
  1066. tolua.setpeer(tmp, {})
  1067. end
  1068. self.bossNode4.passedNode = tmp
  1069. end
  1070. ---@private
  1071. function UIEvilView:InitGenerate__58(Root, data)
  1072. --[[
  1073. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/ChallengeBtn
  1074. --]]
  1075. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/ChallengeBtn").gameObject
  1076. if tolua.getpeer(tmp) == nil then
  1077. tolua.setpeer(tmp, {})
  1078. end
  1079. self.bossNode4.challengeBtn = tmp
  1080. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1081. end
  1082. ---@private
  1083. function UIEvilView:InitGenerate__59(Root, data)
  1084. --[[
  1085. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/ChallengeBtn/Image/Cost/Text
  1086. --]]
  1087. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/ChallengeBtn/Image/Cost/Text").gameObject
  1088. if tolua.getpeer(tmp) == nil then
  1089. tolua.setpeer(tmp, {})
  1090. end
  1091. self.bossNode4.costVal = tmp
  1092. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1093. end
  1094. ---@private
  1095. function UIEvilView:InitGenerate__60(Root, data)
  1096. --[[
  1097. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/IconSmallItem
  1098. --]]
  1099. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/IconSmallItem").gameObject
  1100. if tolua.getpeer(tmp) == nil then
  1101. tolua.setpeer(tmp, {})
  1102. end
  1103. self.bossNode4.rewardItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1104. self.bossNode4.rewardItem.prefabName = "IconItem"
  1105. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1106. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1107. end
  1108. ---@private
  1109. function UIEvilView:InitGenerate__61(Root, data)
  1110. --[[
  1111. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/CDNode
  1112. --]]
  1113. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/CDNode").gameObject
  1114. if tolua.getpeer(tmp) == nil then
  1115. tolua.setpeer(tmp, {})
  1116. end
  1117. self.bossNode4.cdNode = tmp
  1118. end
  1119. ---@private
  1120. function UIEvilView:InitGenerate__62(Root, data)
  1121. --[[
  1122. UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/CDNode/cd
  1123. --]]
  1124. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/BossNode4/Frame/CDNode/cd").gameObject
  1125. if tolua.getpeer(tmp) == nil then
  1126. tolua.setpeer(tmp, {})
  1127. end
  1128. self.bossNode4.cdNode.cdTxt = tmp
  1129. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1130. end
  1131. ---@private
  1132. function UIEvilView:InitGenerate__63(Root, data)
  1133. --[[
  1134. UIAnimator/Window/Result/BossBoxes/coin
  1135. --]]
  1136. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/coin").gameObject
  1137. if tolua.getpeer(tmp) == nil then
  1138. tolua.setpeer(tmp, {})
  1139. end
  1140. self.coinIcon = tmp
  1141. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1142. end
  1143. ---@private
  1144. function UIEvilView:InitGenerate__64(Root, data)
  1145. --[[
  1146. UIAnimator/Window/Result/BossBoxes/coin/count
  1147. --]]
  1148. local tmp = Root:Find("UIAnimator/Window/Result/BossBoxes/coin/count").gameObject
  1149. if tolua.getpeer(tmp) == nil then
  1150. tolua.setpeer(tmp, {})
  1151. end
  1152. self.evilValTxt = tmp
  1153. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1154. end
  1155. ---@private
  1156. function UIEvilView:InitGenerate__65(Root, data)
  1157. --[[
  1158. UIAnimator/Window/UIGoto
  1159. --]]
  1160. local tmp = Root:Find("UIAnimator/Window/UIGoto").gameObject
  1161. if tolua.getpeer(tmp) == nil then
  1162. tolua.setpeer(tmp, {})
  1163. end
  1164. self.uIGoto = tmp
  1165. end
  1166. ---@private
  1167. function UIEvilView:InitGenerate__66(Root, data)
  1168. --[[
  1169. UIAnimator/Window/UIGoto/BgGoto
  1170. --]]
  1171. local tmp = Root:Find("UIAnimator/Window/UIGoto/BgGoto").gameObject
  1172. if tolua.getpeer(tmp) == nil then
  1173. tolua.setpeer(tmp, {})
  1174. end
  1175. self.bgGoto = tmp
  1176. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1177. tmp.animator.logWarnings = false
  1178. end
  1179. ---@private
  1180. function UIEvilView:InitGenerate__67(Root, data)
  1181. --[[
  1182. UIAnimator/Window/UIGoto/BgGoto/Light
  1183. --]]
  1184. local tmp = Root:Find("UIAnimator/Window/UIGoto/BgGoto/Light").gameObject
  1185. if tolua.getpeer(tmp) == nil then
  1186. tolua.setpeer(tmp, {})
  1187. end
  1188. self.light = tmp
  1189. end
  1190. ---@private
  1191. function UIEvilView:InitGenerate__68(Root, data)
  1192. --[[
  1193. UIAnimator/Window/UIGoto/BgGoto/Text1
  1194. --]]
  1195. local tmp = Root:Find("UIAnimator/Window/UIGoto/BgGoto/Text1").gameObject
  1196. if tolua.getpeer(tmp) == nil then
  1197. tolua.setpeer(tmp, {})
  1198. end
  1199. self.text1 = tmp
  1200. tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
  1201. end
  1202. ---@private
  1203. function UIEvilView:InitGenerate__69(Root, data)
  1204. --[[
  1205. UIAnimator/Window/UIGoto/BgGoto/Text2
  1206. --]]
  1207. local tmp = Root:Find("UIAnimator/Window/UIGoto/BgGoto/Text2").gameObject
  1208. if tolua.getpeer(tmp) == nil then
  1209. tolua.setpeer(tmp, {})
  1210. end
  1211. self.text2 = tmp
  1212. tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
  1213. end
  1214. ---@private
  1215. function UIEvilView:InitGenerate__70(Root, data)
  1216. --[[
  1217. UIAnimator/Window/UIGoto/BgGoto/BtnGoto
  1218. --]]
  1219. local tmp = Root:Find("UIAnimator/Window/UIGoto/BgGoto/BtnGoto").gameObject
  1220. if tolua.getpeer(tmp) == nil then
  1221. tolua.setpeer(tmp, {})
  1222. end
  1223. self.btnGoto = tmp
  1224. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1225. end
  1226. ---@private
  1227. function UIEvilView:InitGenerate__71(Root, data)
  1228. --[[
  1229. UIAnimator/Window/UIGoto/BgGoto/BtnInOut
  1230. --]]
  1231. local tmp = Root:Find("UIAnimator/Window/UIGoto/BgGoto/BtnInOut").gameObject
  1232. if tolua.getpeer(tmp) == nil then
  1233. tolua.setpeer(tmp, {})
  1234. end
  1235. self.btnInOut = tmp
  1236. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1237. end
  1238. ---@private
  1239. function UIEvilView:InitGenerate__72(Root, data)
  1240. --[[
  1241. UIAnimator/Window/UIGoto/BgGoto/BtnInOut/IconGoto
  1242. --]]
  1243. local tmp = Root:Find("UIAnimator/Window/UIGoto/BgGoto/BtnInOut/IconGoto").gameObject
  1244. if tolua.getpeer(tmp) == nil then
  1245. tolua.setpeer(tmp, {})
  1246. end
  1247. self.iconGoto = tmp
  1248. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1249. end
  1250. ---@private
  1251. function UIEvilView:InitGenerate__73(Root, data)
  1252. --[[
  1253. UIAnimator/Window/Cutscenes
  1254. --]]
  1255. local tmp = Root:Find("UIAnimator/Window/Cutscenes").gameObject
  1256. if tolua.getpeer(tmp) == nil then
  1257. tolua.setpeer(tmp, {})
  1258. end
  1259. self.successNode = tmp
  1260. end
  1261. ---@private
  1262. function UIEvilView:InitGenerate__74(Root, data)
  1263. --[[
  1264. UIAnimator/Window/Cutscenes/Alpha
  1265. --]]
  1266. local tmp = Root:Find("UIAnimator/Window/Cutscenes/Alpha").gameObject
  1267. if tolua.getpeer(tmp) == nil then
  1268. tolua.setpeer(tmp, {})
  1269. end
  1270. self.successNode.AnyBtn = tmp
  1271. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1272. end
  1273. ---@private
  1274. function UIEvilView:InitGenerate__75(Root, data)
  1275. --[[
  1276. UIAnimator/Window/Cutscenes/Window/Fx_XiaoEMo_01
  1277. --]]
  1278. local tmp = Root:Find("UIAnimator/Window/Cutscenes/Window/Fx_XiaoEMo_01").gameObject
  1279. if tolua.getpeer(tmp) == nil then
  1280. tolua.setpeer(tmp, {})
  1281. end
  1282. self.battleShow = tmp
  1283. tmp.skeletonGraphic = tmp:GetComponent(Enum.TypeInfo.SkeletonGraphic)
  1284. end
  1285. ---@private
  1286. function UIEvilView:GenerateDestroy()
  1287. if tolua.getpeer(self.successNode.AnyBtn) ~= nil then
  1288. tolua.setpeer(self.successNode.AnyBtn, nil)
  1289. end
  1290. if tolua.getpeer(self.bossNode4.cdNode.cdTxt) ~= nil then
  1291. tolua.setpeer(self.bossNode4.cdNode.cdTxt, nil)
  1292. end
  1293. if tolua.getpeer(self.bossNode4.cdNode) ~= nil then
  1294. tolua.setpeer(self.bossNode4.cdNode, nil)
  1295. end
  1296. if self.bossNode4.rewardItem.GenerateDestroy ~= nil then
  1297. self.bossNode4.rewardItem:GenerateDestroy()
  1298. end
  1299. if tolua.getpeer(self.bossNode4.rewardItem) ~= nil then
  1300. tolua.setpeer(self.bossNode4.rewardItem, nil)
  1301. end
  1302. if tolua.getpeer(self.bossNode4.costVal) ~= nil then
  1303. tolua.setpeer(self.bossNode4.costVal, nil)
  1304. end
  1305. if tolua.getpeer(self.bossNode4.challengeBtn) ~= nil then
  1306. tolua.setpeer(self.bossNode4.challengeBtn, nil)
  1307. end
  1308. if tolua.getpeer(self.bossNode4.passedNode) ~= nil then
  1309. tolua.setpeer(self.bossNode4.passedNode, nil)
  1310. end
  1311. if tolua.getpeer(self.bossNode4.bossName) ~= nil then
  1312. tolua.setpeer(self.bossNode4.bossName, nil)
  1313. end
  1314. if tolua.getpeer(self.bossNode4.titleImg) ~= nil then
  1315. tolua.setpeer(self.bossNode4.titleImg, nil)
  1316. end
  1317. if tolua.getpeer(self.bossNode4.bossNode.bossImg) ~= nil then
  1318. tolua.setpeer(self.bossNode4.bossNode.bossImg, nil)
  1319. end
  1320. if tolua.getpeer(self.bossNode4.bossNode) ~= nil then
  1321. tolua.setpeer(self.bossNode4.bossNode, nil)
  1322. end
  1323. if tolua.getpeer(self.bossNode4.shadow) ~= nil then
  1324. tolua.setpeer(self.bossNode4.shadow, nil)
  1325. end
  1326. if tolua.getpeer(self.bossNode3.cdNode.cdTxt) ~= nil then
  1327. tolua.setpeer(self.bossNode3.cdNode.cdTxt, nil)
  1328. end
  1329. if tolua.getpeer(self.bossNode3.cdNode) ~= nil then
  1330. tolua.setpeer(self.bossNode3.cdNode, nil)
  1331. end
  1332. if self.bossNode3.rewardItem.GenerateDestroy ~= nil then
  1333. self.bossNode3.rewardItem:GenerateDestroy()
  1334. end
  1335. if tolua.getpeer(self.bossNode3.rewardItem) ~= nil then
  1336. tolua.setpeer(self.bossNode3.rewardItem, nil)
  1337. end
  1338. if tolua.getpeer(self.bossNode3.costVal) ~= nil then
  1339. tolua.setpeer(self.bossNode3.costVal, nil)
  1340. end
  1341. if tolua.getpeer(self.bossNode3.challengeBtn) ~= nil then
  1342. tolua.setpeer(self.bossNode3.challengeBtn, nil)
  1343. end
  1344. if tolua.getpeer(self.bossNode3.passedNode) ~= nil then
  1345. tolua.setpeer(self.bossNode3.passedNode, nil)
  1346. end
  1347. if tolua.getpeer(self.bossNode3.bossName) ~= nil then
  1348. tolua.setpeer(self.bossNode3.bossName, nil)
  1349. end
  1350. if tolua.getpeer(self.bossNode3.titleImg) ~= nil then
  1351. tolua.setpeer(self.bossNode3.titleImg, nil)
  1352. end
  1353. if tolua.getpeer(self.bossNode3.bossNode.bossImg) ~= nil then
  1354. tolua.setpeer(self.bossNode3.bossNode.bossImg, nil)
  1355. end
  1356. if tolua.getpeer(self.bossNode3.bossNode) ~= nil then
  1357. tolua.setpeer(self.bossNode3.bossNode, nil)
  1358. end
  1359. if tolua.getpeer(self.bossNode3.shadow) ~= nil then
  1360. tolua.setpeer(self.bossNode3.shadow, nil)
  1361. end
  1362. if tolua.getpeer(self.bossNode2.cdNode.cdTxt) ~= nil then
  1363. tolua.setpeer(self.bossNode2.cdNode.cdTxt, nil)
  1364. end
  1365. if tolua.getpeer(self.bossNode2.cdNode) ~= nil then
  1366. tolua.setpeer(self.bossNode2.cdNode, nil)
  1367. end
  1368. if self.bossNode2.rewardItem.GenerateDestroy ~= nil then
  1369. self.bossNode2.rewardItem:GenerateDestroy()
  1370. end
  1371. if tolua.getpeer(self.bossNode2.rewardItem) ~= nil then
  1372. tolua.setpeer(self.bossNode2.rewardItem, nil)
  1373. end
  1374. if tolua.getpeer(self.bossNode2.costVal) ~= nil then
  1375. tolua.setpeer(self.bossNode2.costVal, nil)
  1376. end
  1377. if tolua.getpeer(self.bossNode2.challengeBtn) ~= nil then
  1378. tolua.setpeer(self.bossNode2.challengeBtn, nil)
  1379. end
  1380. if tolua.getpeer(self.bossNode2.passedNode) ~= nil then
  1381. tolua.setpeer(self.bossNode2.passedNode, nil)
  1382. end
  1383. if tolua.getpeer(self.bossNode2.bossName) ~= nil then
  1384. tolua.setpeer(self.bossNode2.bossName, nil)
  1385. end
  1386. if tolua.getpeer(self.bossNode2.titleImg) ~= nil then
  1387. tolua.setpeer(self.bossNode2.titleImg, nil)
  1388. end
  1389. if tolua.getpeer(self.bossNode2.bossNode.bossImg) ~= nil then
  1390. tolua.setpeer(self.bossNode2.bossNode.bossImg, nil)
  1391. end
  1392. if tolua.getpeer(self.bossNode2.bossNode) ~= nil then
  1393. tolua.setpeer(self.bossNode2.bossNode, nil)
  1394. end
  1395. if tolua.getpeer(self.bossNode2.shadow) ~= nil then
  1396. tolua.setpeer(self.bossNode2.shadow, nil)
  1397. end
  1398. if tolua.getpeer(self.bossNode1.cdNode.cdTxt) ~= nil then
  1399. tolua.setpeer(self.bossNode1.cdNode.cdTxt, nil)
  1400. end
  1401. if tolua.getpeer(self.bossNode1.cdNode) ~= nil then
  1402. tolua.setpeer(self.bossNode1.cdNode, nil)
  1403. end
  1404. if self.bossNode1.rewardItem.GenerateDestroy ~= nil then
  1405. self.bossNode1.rewardItem:GenerateDestroy()
  1406. end
  1407. if tolua.getpeer(self.bossNode1.rewardItem) ~= nil then
  1408. tolua.setpeer(self.bossNode1.rewardItem, nil)
  1409. end
  1410. if tolua.getpeer(self.bossNode1.costVal) ~= nil then
  1411. tolua.setpeer(self.bossNode1.costVal, nil)
  1412. end
  1413. if tolua.getpeer(self.bossNode1.challengeBtn) ~= nil then
  1414. tolua.setpeer(self.bossNode1.challengeBtn, nil)
  1415. end
  1416. if tolua.getpeer(self.bossNode1.passedNode) ~= nil then
  1417. tolua.setpeer(self.bossNode1.passedNode, nil)
  1418. end
  1419. if tolua.getpeer(self.bossNode1.bossName) ~= nil then
  1420. tolua.setpeer(self.bossNode1.bossName, nil)
  1421. end
  1422. if tolua.getpeer(self.bossNode1.titleImg) ~= nil then
  1423. tolua.setpeer(self.bossNode1.titleImg, nil)
  1424. end
  1425. if tolua.getpeer(self.bossNode1.bossNode.bossImg) ~= nil then
  1426. tolua.setpeer(self.bossNode1.bossNode.bossImg, nil)
  1427. end
  1428. if tolua.getpeer(self.bossNode1.bossNode) ~= nil then
  1429. tolua.setpeer(self.bossNode1.bossNode, nil)
  1430. end
  1431. if tolua.getpeer(self.bossNode1.shadow) ~= nil then
  1432. tolua.setpeer(self.bossNode1.shadow, nil)
  1433. end
  1434. if tolua.getpeer(self.tipsNode.tipsTxt) ~= nil then
  1435. tolua.setpeer(self.tipsNode.tipsTxt, nil)
  1436. end
  1437. if tolua.getpeer(self.uIAnimator) ~= nil then
  1438. tolua.setpeer(self.uIAnimator, nil)
  1439. end
  1440. self.uIAnimator = nil
  1441. if tolua.getpeer(self.AnyBtn) ~= nil then
  1442. tolua.setpeer(self.AnyBtn, nil)
  1443. end
  1444. self.AnyBtn = nil
  1445. if tolua.getpeer(self.window) ~= nil then
  1446. tolua.setpeer(self.window, nil)
  1447. end
  1448. self.window = nil
  1449. if tolua.getpeer(self.evilLevelTxt) ~= nil then
  1450. tolua.setpeer(self.evilLevelTxt, nil)
  1451. end
  1452. self.evilLevelTxt = nil
  1453. if tolua.getpeer(self.levelInfoBtn) ~= nil then
  1454. tolua.setpeer(self.levelInfoBtn, nil)
  1455. end
  1456. self.levelInfoBtn = nil
  1457. if tolua.getpeer(self.playRuleBtn) ~= nil then
  1458. tolua.setpeer(self.playRuleBtn, nil)
  1459. end
  1460. self.playRuleBtn = nil
  1461. if tolua.getpeer(self.tipsNode) ~= nil then
  1462. tolua.setpeer(self.tipsNode, nil)
  1463. end
  1464. self.tipsNode = nil
  1465. if tolua.getpeer(self.closeBtn) ~= nil then
  1466. tolua.setpeer(self.closeBtn, nil)
  1467. end
  1468. self.closeBtn = nil
  1469. if tolua.getpeer(self.refreshBtn) ~= nil then
  1470. tolua.setpeer(self.refreshBtn, nil)
  1471. end
  1472. self.refreshBtn = nil
  1473. if tolua.getpeer(self.costIcon) ~= nil then
  1474. tolua.setpeer(self.costIcon, nil)
  1475. end
  1476. self.costIcon = nil
  1477. if tolua.getpeer(self.costTxt) ~= nil then
  1478. tolua.setpeer(self.costTxt, nil)
  1479. end
  1480. self.costTxt = nil
  1481. if tolua.getpeer(self.usedRefreshCntTxt) ~= nil then
  1482. tolua.setpeer(self.usedRefreshCntTxt, nil)
  1483. end
  1484. self.usedRefreshCntTxt = nil
  1485. if tolua.getpeer(self.bossBoxes) ~= nil then
  1486. tolua.setpeer(self.bossBoxes, nil)
  1487. end
  1488. self.bossBoxes = nil
  1489. if tolua.getpeer(self.bossNode1) ~= nil then
  1490. tolua.setpeer(self.bossNode1, nil)
  1491. end
  1492. self.bossNode1 = nil
  1493. if tolua.getpeer(self.bossNode2) ~= nil then
  1494. tolua.setpeer(self.bossNode2, nil)
  1495. end
  1496. self.bossNode2 = nil
  1497. if tolua.getpeer(self.bossNode3) ~= nil then
  1498. tolua.setpeer(self.bossNode3, nil)
  1499. end
  1500. self.bossNode3 = nil
  1501. if tolua.getpeer(self.bossNode4) ~= nil then
  1502. tolua.setpeer(self.bossNode4, nil)
  1503. end
  1504. self.bossNode4 = nil
  1505. if tolua.getpeer(self.coinIcon) ~= nil then
  1506. tolua.setpeer(self.coinIcon, nil)
  1507. end
  1508. self.coinIcon = nil
  1509. if tolua.getpeer(self.evilValTxt) ~= nil then
  1510. tolua.setpeer(self.evilValTxt, nil)
  1511. end
  1512. self.evilValTxt = nil
  1513. if tolua.getpeer(self.uIGoto) ~= nil then
  1514. tolua.setpeer(self.uIGoto, nil)
  1515. end
  1516. self.uIGoto = nil
  1517. if tolua.getpeer(self.bgGoto) ~= nil then
  1518. tolua.setpeer(self.bgGoto, nil)
  1519. end
  1520. self.bgGoto = nil
  1521. if tolua.getpeer(self.light) ~= nil then
  1522. tolua.setpeer(self.light, nil)
  1523. end
  1524. self.light = nil
  1525. if tolua.getpeer(self.text1) ~= nil then
  1526. tolua.setpeer(self.text1, nil)
  1527. end
  1528. self.text1 = nil
  1529. if tolua.getpeer(self.text2) ~= nil then
  1530. tolua.setpeer(self.text2, nil)
  1531. end
  1532. self.text2 = nil
  1533. if tolua.getpeer(self.btnGoto) ~= nil then
  1534. tolua.setpeer(self.btnGoto, nil)
  1535. end
  1536. self.btnGoto = nil
  1537. if tolua.getpeer(self.btnInOut) ~= nil then
  1538. tolua.setpeer(self.btnInOut, nil)
  1539. end
  1540. self.btnInOut = nil
  1541. if tolua.getpeer(self.iconGoto) ~= nil then
  1542. tolua.setpeer(self.iconGoto, nil)
  1543. end
  1544. self.iconGoto = nil
  1545. if tolua.getpeer(self.successNode) ~= nil then
  1546. tolua.setpeer(self.successNode, nil)
  1547. end
  1548. self.successNode = nil
  1549. if tolua.getpeer(self.battleShow) ~= nil then
  1550. tolua.setpeer(self.battleShow, nil)
  1551. end
  1552. self.battleShow = nil
  1553. self.transform = nil
  1554. self.gameObject = nil
  1555. self.inited = false
  1556. end
  1557. return UIEvilView