UIClimbingTowerView_Generate.lua 49 KB

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