UIBattleView_Generate.lua 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799
  1. ---@class UIBattle__Generate_btnBlock_text
  2. ---@field public gameObject UnityEngine.GameObject
  3. ---@field public text TMPro.TextMeshProUGUI
  4. ---@class UIBattle__Generate_btnBlock
  5. ---@field public gameObject UnityEngine.GameObject
  6. ---@field public button UnityEngine.UI.Button
  7. ---@field public text UIBattle__Generate_btnBlock_text
  8. ---@class UIBattle__Generate_btnAddFriend_text
  9. ---@field public gameObject UnityEngine.GameObject
  10. ---@field public text TMPro.TextMeshProUGUI
  11. ---@class UIBattle__Generate_btnAddFriend
  12. ---@field public gameObject UnityEngine.GameObject
  13. ---@field public button UnityEngine.UI.Button
  14. ---@field public text UIBattle__Generate_btnAddFriend_text
  15. ---@class UIBattle__Generate_btnInfor
  16. ---@field public gameObject UnityEngine.GameObject
  17. ---@field public button UnityEngine.UI.Button
  18. ---@class UIBattle__Generate_btnPrivateChat
  19. ---@field public gameObject UnityEngine.GameObject
  20. ---@field public button UnityEngine.UI.Button
  21. ---@class UIBattle__Generate_headOrder
  22. ---@field public gameObject UnityEngine.GameObject
  23. ---@field public rectTransform UnityEngine.RectTransform
  24. ---@class UIBattle__Generate_funcbg
  25. ---@field public gameObject UnityEngine.GameObject
  26. ---@field public button UnityEngine.UI.Button
  27. ---@class UIBattle__Generate_rageNum2
  28. ---@field public gameObject UnityEngine.GameObject
  29. ---@field public image UnityEngine.UI.Image
  30. ---@field public switchSprite SwitchSprite
  31. ---@class UIBattle__Generate_rageNum1
  32. ---@field public gameObject UnityEngine.GameObject
  33. ---@field public image UnityEngine.UI.Image
  34. ---@field public switchSprite SwitchSprite
  35. ---@class UIBattle__Generate_rageBoxGo_bg
  36. ---@field public gameObject UnityEngine.GameObject
  37. ---@field public animator UnityEngine.Animator
  38. ---@class UIBattle__Generate_rageBoxGo
  39. ---@field public gameObject UnityEngine.GameObject
  40. ---@field public bg UIBattle__Generate_rageBoxGo_bg
  41. ---@class UIBattle__Generate_bossWarning
  42. ---@field public gameObject UnityEngine.GameObject
  43. ---@field public animator UnityEngine.Animator
  44. ---@class UIBattle__Generate_newOpen_item_itemTxt
  45. ---@field public gameObject UnityEngine.GameObject
  46. ---@field public text UnityEngine.UI.Text
  47. ---@class UIBattle__Generate_newOpen_item_image
  48. ---@field public gameObject UnityEngine.GameObject
  49. ---@field public image UnityEngine.UI.Image
  50. ---@class UIBattle__Generate_newOpen_item
  51. ---@field public gameObject UnityEngine.GameObject
  52. ---@field public image UIBattle__Generate_newOpen_item_image
  53. ---@field public itemTxt UIBattle__Generate_newOpen_item_itemTxt
  54. ---@class UIBattle__Generate_particle
  55. ---@field public gameObject UnityEngine.GameObject
  56. ---@field public uIParticle UIExtensions.UIParticle
  57. ---@class UIBattle__Generate_newOpen_dscTxt
  58. ---@field public gameObject UnityEngine.GameObject
  59. ---@field public text UnityEngine.UI.Text
  60. ---@class UIBattle__Generate_newOpen_nameTxt
  61. ---@field public gameObject UnityEngine.GameObject
  62. ---@field public text UnityEngine.UI.Text
  63. ---@class UIBattle__Generate_newOpen_imageLt
  64. ---@field public gameObject UnityEngine.GameObject
  65. ---@field public image UnityEngine.UI.Image
  66. ---@class UIBattle__Generate_newOpen_image
  67. ---@field public gameObject UnityEngine.GameObject
  68. ---@field public image UnityEngine.UI.Image
  69. ---@class UIBattle__Generate_newOpen_alpha
  70. ---@field public gameObject UnityEngine.GameObject
  71. ---@field public button UnityEngine.UI.Button
  72. ---@class UIBattle__Generate_newOpen
  73. ---@field public gameObject UnityEngine.GameObject
  74. ---@field public alpha UIBattle__Generate_newOpen_alpha
  75. ---@field public image UIBattle__Generate_newOpen_image
  76. ---@field public imageLt UIBattle__Generate_newOpen_imageLt
  77. ---@field public nameTxt UIBattle__Generate_newOpen_nameTxt
  78. ---@field public dscTxt UIBattle__Generate_newOpen_dscTxt
  79. ---@field public item UIBattle__Generate_newOpen_item
  80. ---@class UIBattle__Generate_content
  81. ---@field public gameObject UnityEngine.GameObject
  82. ---@field public verticalLayoutGroup UnityEngine.UI.VerticalLayoutGroup
  83. ---@class UIBattle__Generate_modeNode
  84. ---@field public gameObject UnityEngine.GameObject
  85. ---@field public loopVerticalScrollRect UnityEngine.UI.LoopVerticalScrollRect
  86. ---@class UIBattle__Generate_bgBtn
  87. ---@field public gameObject UnityEngine.GameObject
  88. ---@field public button UnityEngine.UI.Button
  89. ---@class UIBattle__Generate_difficultBtn_DifTxt
  90. ---@field public gameObject UnityEngine.GameObject
  91. ---@field public text TMPro.TextMeshProUGUI
  92. ---@class UIBattle__Generate_difficultBtn
  93. ---@field public gameObject UnityEngine.GameObject
  94. ---@field public button UnityEngine.UI.Button
  95. ---@field public animator UnityEngine.Animator
  96. ---@field public DifTxt UIBattle__Generate_difficultBtn_DifTxt
  97. ---@class UIBattle__Generate_windowEnvelope_text
  98. ---@field public gameObject UnityEngine.GameObject
  99. ---@field public text UnityEngine.UI.Text
  100. ---@class UIBattle__Generate_windowEnvelope_cashNumber
  101. ---@field public gameObject UnityEngine.GameObject
  102. ---@field public text TMPro.TextMeshProUGUI
  103. ---@class UIBattle__Generate_windowEnvelope_textRank
  104. ---@field public gameObject UnityEngine.GameObject
  105. ---@field public uILocalizeScript UILocalizeScript
  106. ---@class UIBattle__Generate_windowEnvelope
  107. ---@field public gameObject UnityEngine.GameObject
  108. ---@field public rectTransform UnityEngine.RectTransform
  109. ---@field public button UnityEngine.UI.Button
  110. ---@field public textRank UIBattle__Generate_windowEnvelope_textRank
  111. ---@field public cashNumber UIBattle__Generate_windowEnvelope_cashNumber
  112. ---@field public text UIBattle__Generate_windowEnvelope_text
  113. ---@class UIBattle__Generate_btnRedEnvelope_text
  114. ---@field public gameObject UnityEngine.GameObject
  115. ---@field public text UnityEngine.UI.Text
  116. ---@class UIBattle__Generate_btnRedEnvelope
  117. ---@field public gameObject UnityEngine.GameObject
  118. ---@field public rectTransform UnityEngine.RectTransform
  119. ---@field public button UnityEngine.UI.Button
  120. ---@field public text UIBattle__Generate_btnRedEnvelope_text
  121. ---@class UIBattle__Generate_btnChat
  122. ---@field public gameObject UnityEngine.GameObject
  123. ---@field public button UnityEngine.UI.Button
  124. ---@class UIBattle__Generate_btnChallenge_remainCDTime
  125. ---@field public gameObject UnityEngine.GameObject
  126. ---@field public text TMPro.TextMeshProUGUI
  127. ---@class UIBattle__Generate_btnChallenge_battleState
  128. ---@field public gameObject UnityEngine.GameObject
  129. ---@field public text TMPro.TextMeshProUGUI
  130. ---@class UIBattle__Generate_btnBossAnimator
  131. ---@field public gameObject UnityEngine.GameObject
  132. ---@field public animator UnityEngine.Animator
  133. ---@class UIBattle__Generate_btnChallenge
  134. ---@field public gameObject UnityEngine.GameObject
  135. ---@field public button UnityEngine.UI.Button
  136. ---@field public animator UnityEngine.Animator
  137. ---@field public battleState UIBattle__Generate_btnChallenge_battleState
  138. ---@field public remainCDTime UIBattle__Generate_btnChallenge_remainCDTime
  139. ---@class UIBattle__Generate_point1_light
  140. ---@field public gameObject UnityEngine.GameObject
  141. ---@field public animator UnityEngine.Animator
  142. ---@class UIBattle__Generate_point1
  143. ---@field public gameObject UnityEngine.GameObject
  144. ---@field public light UIBattle__Generate_point1_light
  145. ---@class UIBattle__Generate_point2_light
  146. ---@field public gameObject UnityEngine.GameObject
  147. ---@field public animator UnityEngine.Animator
  148. ---@class UIBattle__Generate_point2
  149. ---@field public gameObject UnityEngine.GameObject
  150. ---@field public light UIBattle__Generate_point2_light
  151. ---@class UIBattle__Generate_point3_light
  152. ---@field public gameObject UnityEngine.GameObject
  153. ---@field public animator UnityEngine.Animator
  154. ---@class UIBattle__Generate_point3
  155. ---@field public gameObject UnityEngine.GameObject
  156. ---@field public light UIBattle__Generate_point3_light
  157. ---@class UIBattle__Generate_point4_light
  158. ---@field public gameObject UnityEngine.GameObject
  159. ---@field public animator UnityEngine.Animator
  160. ---@class UIBattle__Generate_point4
  161. ---@field public gameObject UnityEngine.GameObject
  162. ---@field public light UIBattle__Generate_point4_light
  163. ---@class UIBattle__Generate_point5_light
  164. ---@field public gameObject UnityEngine.GameObject
  165. ---@field public animator UnityEngine.Animator
  166. ---@class UIBattle__Generate_point5
  167. ---@field public gameObject UnityEngine.GameObject
  168. ---@field public light UIBattle__Generate_point5_light
  169. ---@class UIBattle__Generate_btnStageGoal_points
  170. ---@field public gameObject UnityEngine.GameObject
  171. ---@field public gridLayoutGroup UnityEngine.UI.GridLayoutGroup
  172. ---@class UIBattle__Generate_btnStageGoal_text
  173. ---@field public gameObject UnityEngine.GameObject
  174. ---@field public text TMPro.TextMeshProUGUI
  175. ---@class UIBattle__Generate_btnStageGoal_iconItem
  176. ---@field public gameObject UnityEngine.GameObject
  177. ---@field public rectTransform UnityEngine.RectTransform
  178. ---@field public layoutElement UnityEngine.UI.LayoutElement
  179. ---@class UIBattle__Generate_btnStageGoal
  180. ---@field public gameObject UnityEngine.GameObject
  181. ---@field public button UnityEngine.UI.Button
  182. ---@field public iconItem UIBattle__Generate_btnStageGoal_iconItem
  183. ---@field public state UnityEngine.GameObject
  184. ---@field public text UIBattle__Generate_btnStageGoal_text
  185. ---@field public points UIBattle__Generate_btnStageGoal_points
  186. ---@class UIBattle__Generate_ReceiveGo_add_num
  187. ---@field public gameObject UnityEngine.GameObject
  188. ---@field public text TMPro.TextMeshProUGUI
  189. ---@class UIBattle__Generate_ReceiveGo_add
  190. ---@field public gameObject UnityEngine.GameObject
  191. ---@field public animator UnityEngine.Animator
  192. ---@field public num UIBattle__Generate_ReceiveGo_add_num
  193. ---@class UIBattle__Generate_rewardPoint_num
  194. ---@field public gameObject UnityEngine.GameObject
  195. ---@field public text TMPro.TextMeshProUGUI
  196. ---@class UIBattle__Generate_new
  197. ---@field public gameObject UnityEngine.GameObject
  198. ---@field public image UnityEngine.UI.Image
  199. ---@class UIBattle__Generate_refine
  200. ---@field public gameObject UnityEngine.GameObject
  201. ---@field public image UnityEngine.UI.Image
  202. ---@class UIBattle__Generate_skillTree
  203. ---@field public gameObject UnityEngine.GameObject
  204. ---@field public image UnityEngine.UI.Image
  205. ---@class UIBattle__Generate_lvUp
  206. ---@field public gameObject UnityEngine.GameObject
  207. ---@field public image UnityEngine.UI.Image
  208. ---@class UIBattle__Generate_equipment
  209. ---@field public gameObject UnityEngine.GameObject
  210. ---@field public image UnityEngine.UI.Image
  211. ---@class UIBattle__Generate_rewardPoint
  212. ---@field public gameObject UnityEngine.GameObject
  213. ---@field public num UIBattle__Generate_rewardPoint_num
  214. ---@class UIBattle__Generate_RewardTimeLbl
  215. ---@field public gameObject UnityEngine.GameObject
  216. ---@field public text TMPro.TextMeshProUGUI
  217. ---@class UIBattle__Generate_RewardBoxBtn
  218. ---@field public gameObject UnityEngine.GameObject
  219. ---@field public animator UnityEngine.Animator
  220. ---@class UIBattle__Generate_ReceiveGo
  221. ---@field public gameObject UnityEngine.GameObject
  222. ---@field public button UnityEngine.UI.Button
  223. ---@field public add UIBattle__Generate_ReceiveGo_add
  224. ---@class UIBattle__Generate_btnOnlineRewards_OnlineTimeLbl
  225. ---@field public gameObject UnityEngine.GameObject
  226. ---@field public text TMPro.TextMeshProUGUI
  227. ---@class UIBattle__Generate_btnOnlineRewards
  228. ---@field public gameObject UnityEngine.GameObject
  229. ---@field public button UnityEngine.UI.Button
  230. ---@field public tomorrow UnityEngine.GameObject
  231. ---@field public getRewards UnityEngine.GameObject
  232. ---@field public times UnityEngine.GameObject
  233. ---@field public OnlineTimeLbl UIBattle__Generate_btnOnlineRewards_OnlineTimeLbl
  234. ---@class UIBattle__Generate_OnlineRewards_iconSmallItem
  235. ---@field public gameObject UnityEngine.GameObject
  236. ---@field public rectTransform UnityEngine.RectTransform
  237. ---@field public layoutElement UnityEngine.UI.LayoutElement
  238. ---@class UIBattle__Generate_OnlineRewards_rewardsAnim
  239. ---@field public gameObject UnityEngine.GameObject
  240. ---@field public animator UnityEngine.Animator
  241. ---@class UIBattle__Generate_OnlineRewards
  242. ---@field public gameObject UnityEngine.GameObject
  243. ---@field public rewardsAnim UIBattle__Generate_OnlineRewards_rewardsAnim
  244. ---@field public iconSmallItem UIBattle__Generate_OnlineRewards_iconSmallItem
  245. ---@class UIBattle__Generate_autoAnim
  246. ---@field public gameObject UnityEngine.GameObject
  247. ---@field public animator UnityEngine.Animator
  248. ---@class UIBattle__Generate_btnAuto
  249. ---@field public gameObject UnityEngine.GameObject
  250. ---@field public button UnityEngine.UI.Button
  251. ---@field public animator UnityEngine.Animator
  252. ---@class UIBattle__Generate_battleLogView_content
  253. ---@field public gameObject UnityEngine.GameObject
  254. ---@field public verticalLayoutGroup UnityEngine.UI.VerticalLayoutGroup
  255. ---@class UIBattle__Generate_battleLogView
  256. ---@field public gameObject UnityEngine.GameObject
  257. ---@field public loopVerticalScrollRect UnityEngine.UI.LoopVerticalScrollRect
  258. ---@field public uIEventTriggerListener UIEventTriggerListener
  259. ---@field public content UIBattle__Generate_battleLogView_content
  260. ---@class UIBattle__Generate_togwarlog
  261. ---@field public gameObject UnityEngine.GameObject
  262. ---@field public toggle UnityEngine.UI.Toggle
  263. ---@class UIBattle__Generate_togsystem
  264. ---@field public gameObject UnityEngine.GameObject
  265. ---@field public toggle UnityEngine.UI.Toggle
  266. ---@class UIBattle__Generate_togguild
  267. ---@field public gameObject UnityEngine.GameObject
  268. ---@field public toggle UnityEngine.UI.Toggle
  269. ---@class UIBattle__Generate_togworld
  270. ---@field public gameObject UnityEngine.GameObject
  271. ---@field public toggle UnityEngine.UI.Toggle
  272. ---@class UIBattle__Generate_chltogBg
  273. ---@field public gameObject UnityEngine.GameObject
  274. ---@field public toggleGroup UnityEngine.UI.ToggleGroup
  275. ---@field public canvasGroup UnityEngine.CanvasGroup
  276. ---@class UIBattle__Generate_chatTextItem
  277. ---@field public gameObject UnityEngine.GameObject
  278. ---@field public rectTransform UnityEngine.RectTransform
  279. ---@field public layoutElement UnityEngine.UI.LayoutElement
  280. ---@class UIBattle__Generate_chatView
  281. ---@field public gameObject UnityEngine.GameObject
  282. ---@field public uIEventTriggerListener UIEventTriggerListener
  283. ---@field public loopListView SuperScrollView.LoopListView
  284. ---@class UIBattle__Generate_btnwarlog
  285. ---@field public gameObject UnityEngine.GameObject
  286. ---@field public button UnityEngine.UI.Button
  287. ---@field public icon UnityEngine.GameObject
  288. ---@class UIBattle__Generate_btnStatistics
  289. ---@field public gameObject UnityEngine.GameObject
  290. ---@field public button UnityEngine.UI.Button
  291. ---@class UIBattle__Generate_quickBattleBtn
  292. ---@field public gameObject UnityEngine.GameObject
  293. ---@field public button UnityEngine.UI.Button
  294. ---@class UIBattle__Generate_CurLevelName
  295. ---@field public gameObject UnityEngine.GameObject
  296. ---@field public text UnityEngine.UI.Text
  297. ---@class UIBattle__Generate_miniMapBg
  298. ---@field public gameObject UnityEngine.GameObject
  299. ---@field public button UnityEngine.UI.Button
  300. ---@class UIBattle__Generate_enemy6
  301. ---@field public gameObject UnityEngine.GameObject
  302. ---@field public rectTransform UnityEngine.RectTransform
  303. ---@class UIBattle__Generate_enemy5
  304. ---@field public gameObject UnityEngine.GameObject
  305. ---@field public rectTransform UnityEngine.RectTransform
  306. ---@class UIBattle__Generate_enemy4
  307. ---@field public gameObject UnityEngine.GameObject
  308. ---@field public rectTransform UnityEngine.RectTransform
  309. ---@class UIBattle__Generate_enemy3
  310. ---@field public gameObject UnityEngine.GameObject
  311. ---@field public rectTransform UnityEngine.RectTransform
  312. ---@class UIBattle__Generate_enemy2
  313. ---@field public gameObject UnityEngine.GameObject
  314. ---@field public rectTransform UnityEngine.RectTransform
  315. ---@class UIBattle__Generate_enemy1
  316. ---@field public gameObject UnityEngine.GameObject
  317. ---@field public rectTransform UnityEngine.RectTransform
  318. ---@class UIBattle__Generate_hero
  319. ---@field public gameObject UnityEngine.GameObject
  320. ---@field public rectTransform UnityEngine.RectTransform
  321. ---@class UIBattle__Generate_minimap
  322. ---@field public gameObject UnityEngine.GameObject
  323. ---@field public rectTransform UnityEngine.RectTransform
  324. ---@field public rawImage UnityEngine.UI.RawImage
  325. ---@class UIBattle__Generate_CruiseLbl
  326. ---@field public gameObject UnityEngine.GameObject
  327. ---@field public text UnityEngine.UI.Text
  328. ---@class UIBattle__Generate_ParnterExpLbl
  329. ---@field public gameObject UnityEngine.GameObject
  330. ---@field public text UnityEngine.UI.Text
  331. ---@class UIBattle__Generate_ExpLbl
  332. ---@field public gameObject UnityEngine.GameObject
  333. ---@field public text UnityEngine.UI.Text
  334. ---@class UIBattle__Generate_ZenyLbl
  335. ---@field public gameObject UnityEngine.GameObject
  336. ---@field public text UnityEngine.UI.Text
  337. ---@class UIBattle__Generate_exploringText
  338. ---@field public gameObject UnityEngine.GameObject
  339. ---@field public text UnityEngine.UI.Text
  340. ---@class UIBattle__Generate
  341. ---@field private gameObject UnityEngine.GameObject
  342. ---@field private transform UnityEngine.Transform
  343. ---@field private uIEventHandler UIEventHandler
  344. ---@field private dragBg UnityEngine.GameObject
  345. ---@field private exploringTrans UnityEngine.GameObject
  346. ---@field private exploringText UIBattle__Generate_exploringText
  347. ---@field private ProfitBoxGo UnityEngine.GameObject
  348. ---@field private ZenyLbl UIBattle__Generate_ZenyLbl
  349. ---@field private ExpLbl UIBattle__Generate_ExpLbl
  350. ---@field private ParnterExpLbl UIBattle__Generate_ParnterExpLbl
  351. ---@field private CruiseLbl UIBattle__Generate_CruiseLbl
  352. ---@field private MapRootGo UnityEngine.GameObject
  353. ---@field private minimap UIBattle__Generate_minimap
  354. ---@field private hero UIBattle__Generate_hero
  355. ---@field private enemy1 UIBattle__Generate_enemy1
  356. ---@field private enemy2 UIBattle__Generate_enemy2
  357. ---@field private enemy3 UIBattle__Generate_enemy3
  358. ---@field private enemy4 UIBattle__Generate_enemy4
  359. ---@field private enemy5 UIBattle__Generate_enemy5
  360. ---@field private enemy6 UIBattle__Generate_enemy6
  361. ---@field private miniMapBg UIBattle__Generate_miniMapBg
  362. ---@field private q UnityEngine.GameObject
  363. ---@field private CurLevelName UIBattle__Generate_CurLevelName
  364. ---@field private quickBattleBtn UIBattle__Generate_quickBattleBtn
  365. ---@field private btnQuick_lock UnityEngine.GameObject
  366. ---@field private btnStatistics UIBattle__Generate_btnStatistics
  367. ---@field private btnwarlog UIBattle__Generate_btnwarlog
  368. ---@field private bottomNode UnityEngine.GameObject
  369. ---@field private chatRoot UnityEngine.GameObject
  370. ---@field private chatView UIBattle__Generate_chatView
  371. ---@field private chatTextItem UIBattle__Generate_chatTextItem
  372. ---@field private chltogBg UIBattle__Generate_chltogBg
  373. ---@field private togworld UIBattle__Generate_togworld
  374. ---@field private togguild UIBattle__Generate_togguild
  375. ---@field private togsystem UIBattle__Generate_togsystem
  376. ---@field private togwarlog UIBattle__Generate_togwarlog
  377. ---@field private battleLogView UIBattle__Generate_battleLogView
  378. ---@field private battleRootNew UnityEngine.GameObject
  379. ---@field private btnAuto UIBattle__Generate_btnAuto
  380. ---@field private autoAnim UIBattle__Generate_autoAnim
  381. ---@field private OnlineRewards UIBattle__Generate_OnlineRewards
  382. ---@field private btnOnlineRewards UIBattle__Generate_btnOnlineRewards
  383. ---@field private ReceiveGo UIBattle__Generate_ReceiveGo
  384. ---@field private RewardBoxBtn UIBattle__Generate_RewardBoxBtn
  385. ---@field private RewardTimeLbl UIBattle__Generate_RewardTimeLbl
  386. ---@field private rewardPoint UIBattle__Generate_rewardPoint
  387. ---@field private equipment UIBattle__Generate_equipment
  388. ---@field private lvUp UIBattle__Generate_lvUp
  389. ---@field private skillTree UIBattle__Generate_skillTree
  390. ---@field private refine UIBattle__Generate_refine
  391. ---@field private redPoint UnityEngine.GameObject
  392. ---@field private new UIBattle__Generate_new
  393. ---@field private btnStageGoal UIBattle__Generate_btnStageGoal
  394. ---@field private point5 UIBattle__Generate_point5
  395. ---@field private point4 UIBattle__Generate_point4
  396. ---@field private point3 UIBattle__Generate_point3
  397. ---@field private point2 UIBattle__Generate_point2
  398. ---@field private point1 UIBattle__Generate_point1
  399. ---@field private stageGoalNtf UnityEngine.GameObject
  400. ---@field private btnChallenge UIBattle__Generate_btnChallenge
  401. ---@field private btnBossAnimator UIBattle__Generate_btnBossAnimator
  402. ---@field private btnChallenge_lock UnityEngine.GameObject
  403. ---@field private btnReceive_lock UnityEngine.GameObject
  404. ---@field private btnChat UIBattle__Generate_btnChat
  405. ---@field private btnRedEnvelope UIBattle__Generate_btnRedEnvelope
  406. ---@field private windowEnvelope UIBattle__Generate_windowEnvelope
  407. ---@field private difficultBtn UIBattle__Generate_difficultBtn
  408. ---@field private mapLevelModes UnityEngine.GameObject
  409. ---@field private bgBtn UIBattle__Generate_bgBtn
  410. ---@field private modeNode UIBattle__Generate_modeNode
  411. ---@field private content UIBattle__Generate_content
  412. ---@field private centerNode UnityEngine.GameObject
  413. ---@field private newOpen UIBattle__Generate_newOpen
  414. ---@field private particle UIBattle__Generate_particle
  415. ---@field private bossWarning UIBattle__Generate_bossWarning
  416. ---@field private rageBoxGo UIBattle__Generate_rageBoxGo
  417. ---@field private rageNum1 UIBattle__Generate_rageNum1
  418. ---@field private rageNum2 UIBattle__Generate_rageNum2
  419. ---@field private battleFailGo UnityEngine.GameObject
  420. ---@field private funcbg UIBattle__Generate_funcbg
  421. ---@field private headOrder UIBattle__Generate_headOrder
  422. ---@field private btnPrivateChat UIBattle__Generate_btnPrivateChat
  423. ---@field private btnInfor UIBattle__Generate_btnInfor
  424. ---@field private btnAddFriend UIBattle__Generate_btnAddFriend
  425. ---@field private btnBlock UIBattle__Generate_btnBlock
  426. local UIBattleView = class("UIBattleView", require("UIViewBase"))
  427. function UIBattleView:ctor()
  428. end
  429. ---@private
  430. function UIBattleView:SetActive(result)
  431. self.gameObject:SetActive(result)
  432. end
  433. ---@private
  434. function UIBattleView:InitGenerate(Root, data)
  435. self.transform = Root
  436. self.inited = true
  437. if self.super.Init then
  438. self.super.Init(self)
  439. end
  440. local tmp
  441. self:InitGenerate__1(Root,data)
  442. self:InitGenerate__2(Root,data)
  443. self:InitGenerate__3(Root,data)
  444. self:InitGenerate__4(Root,data)
  445. self:InitGenerate__5(Root,data)
  446. self:InitGenerate__6(Root,data)
  447. self:InitGenerate__7(Root,data)
  448. self:InitGenerate__8(Root,data)
  449. self:InitGenerate__9(Root,data)
  450. self:InitGenerate__10(Root,data)
  451. self:InitGenerate__11(Root,data)
  452. self:InitGenerate__12(Root,data)
  453. self:InitGenerate__13(Root,data)
  454. self:InitGenerate__14(Root,data)
  455. self:InitGenerate__15(Root,data)
  456. self:InitGenerate__16(Root,data)
  457. self:InitGenerate__17(Root,data)
  458. self:InitGenerate__18(Root,data)
  459. self:InitGenerate__19(Root,data)
  460. self:InitGenerate__20(Root,data)
  461. self:InitGenerate__21(Root,data)
  462. self:InitGenerate__22(Root,data)
  463. self:InitGenerate__23(Root,data)
  464. self:InitGenerate__24(Root,data)
  465. self:InitGenerate__25(Root,data)
  466. self:InitGenerate__26(Root,data)
  467. self:InitGenerate__27(Root,data)
  468. self:InitGenerate__28(Root,data)
  469. self:InitGenerate__29(Root,data)
  470. self:InitGenerate__30(Root,data)
  471. self:InitGenerate__31(Root,data)
  472. self:InitGenerate__32(Root,data)
  473. self:InitGenerate__33(Root,data)
  474. self:InitGenerate__34(Root,data)
  475. self:InitGenerate__35(Root,data)
  476. self:InitGenerate__36(Root,data)
  477. self:InitGenerate__37(Root,data)
  478. self:InitGenerate__38(Root,data)
  479. self:InitGenerate__39(Root,data)
  480. self:InitGenerate__40(Root,data)
  481. self:InitGenerate__41(Root,data)
  482. self:InitGenerate__42(Root,data)
  483. self:InitGenerate__43(Root,data)
  484. self:InitGenerate__44(Root,data)
  485. self:InitGenerate__45(Root,data)
  486. self:InitGenerate__46(Root,data)
  487. self:InitGenerate__47(Root,data)
  488. self:InitGenerate__48(Root,data)
  489. self:InitGenerate__49(Root,data)
  490. self:InitGenerate__50(Root,data)
  491. self:InitGenerate__51(Root,data)
  492. self:InitGenerate__52(Root,data)
  493. self:InitGenerate__53(Root,data)
  494. self:InitGenerate__54(Root,data)
  495. self:InitGenerate__55(Root,data)
  496. self:InitGenerate__56(Root,data)
  497. self:InitGenerate__57(Root,data)
  498. self:InitGenerate__58(Root,data)
  499. self:InitGenerate__59(Root,data)
  500. self:InitGenerate__60(Root,data)
  501. self:InitGenerate__61(Root,data)
  502. self:InitGenerate__62(Root,data)
  503. self:InitGenerate__63(Root,data)
  504. self:InitGenerate__64(Root,data)
  505. self:InitGenerate__65(Root,data)
  506. self:InitGenerate__66(Root,data)
  507. self:InitGenerate__67(Root,data)
  508. self:InitGenerate__68(Root,data)
  509. self:InitGenerate__69(Root,data)
  510. self:InitGenerate__70(Root,data)
  511. self:InitGenerate__71(Root,data)
  512. self:InitGenerate__72(Root,data)
  513. self:InitGenerate__73(Root,data)
  514. self:InitGenerate__74(Root,data)
  515. self:InitGenerate__75(Root,data)
  516. self:InitGenerate__76(Root,data)
  517. self:InitGenerate__77(Root,data)
  518. self:InitGenerate__78(Root,data)
  519. self:InitGenerate__79(Root,data)
  520. self:InitGenerate__80(Root,data)
  521. self:InitGenerate__81(Root,data)
  522. self:InitGenerate__82(Root,data)
  523. self:InitGenerate__83(Root,data)
  524. self:InitGenerate__84(Root,data)
  525. self:InitGenerate__85(Root,data)
  526. self:InitGenerate__86(Root,data)
  527. self:InitGenerate__87(Root,data)
  528. self:InitGenerate__88(Root,data)
  529. self:InitGenerate__89(Root,data)
  530. self:InitGenerate__90(Root,data)
  531. self:InitGenerate__91(Root,data)
  532. self:InitGenerate__92(Root,data)
  533. self:InitGenerate__93(Root,data)
  534. self:InitGenerate__94(Root,data)
  535. self:InitGenerate__95(Root,data)
  536. self:InitGenerate__96(Root,data)
  537. self:InitGenerate__97(Root,data)
  538. self:InitGenerate__98(Root,data)
  539. self:InitGenerate__99(Root,data)
  540. self:InitGenerate__100(Root,data)
  541. self:InitGenerate__101(Root,data)
  542. self:InitGenerate__102(Root,data)
  543. self:InitGenerate__103(Root,data)
  544. self:InitGenerate__104(Root,data)
  545. self:InitGenerate__105(Root,data)
  546. self:InitGenerate__106(Root,data)
  547. self:InitGenerate__107(Root,data)
  548. self:InitGenerate__108(Root,data)
  549. self:InitGenerate__109(Root,data)
  550. self:InitGenerate__110(Root,data)
  551. self:InitGenerate__111(Root,data)
  552. self:InitGenerate__112(Root,data)
  553. self:InitGenerate__113(Root,data)
  554. self:InitGenerate__114(Root,data)
  555. self:InitGenerate__115(Root,data)
  556. self:InitGenerate__116(Root,data)
  557. self:InitGenerate__117(Root,data)
  558. self:InitGenerate__118(Root,data)
  559. self:InitGenerate__119(Root,data)
  560. self:InitGenerate__120(Root,data)
  561. self:InitGenerate__121(Root,data)
  562. end
  563. ---@private
  564. function UIBattleView:InitGenerate__1(Root, data)
  565. --[[
  566. Root
  567. --]]
  568. self.uIEventHandler = Root:GetComponent(Enum.TypeInfo.UIEventHandler)
  569. end
  570. ---@private
  571. function UIBattleView:InitGenerate__2(Root, data)
  572. --[[
  573. dragBg
  574. --]]
  575. local tmp = Root:Find("dragBg").gameObject
  576. if tolua.getpeer(tmp) == nil then
  577. tolua.setpeer(tmp, {})
  578. end
  579. self.dragBg = tmp
  580. end
  581. ---@private
  582. function UIBattleView:InitGenerate__3(Root, data)
  583. --[[
  584. TopView/Exploring
  585. --]]
  586. local tmp = Root:Find("TopView/Exploring").gameObject
  587. if tolua.getpeer(tmp) == nil then
  588. tolua.setpeer(tmp, {})
  589. end
  590. self.exploringTrans = tmp
  591. end
  592. ---@private
  593. function UIBattleView:InitGenerate__4(Root, data)
  594. --[[
  595. TopView/Exploring/Text
  596. --]]
  597. local tmp = Root:Find("TopView/Exploring/Text").gameObject
  598. if tolua.getpeer(tmp) == nil then
  599. tolua.setpeer(tmp, {})
  600. end
  601. self.exploringText = tmp
  602. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  603. end
  604. ---@private
  605. function UIBattleView:InitGenerate__5(Root, data)
  606. --[[
  607. TopView/ProfitBox
  608. --]]
  609. local tmp = Root:Find("TopView/ProfitBox").gameObject
  610. if tolua.getpeer(tmp) == nil then
  611. tolua.setpeer(tmp, {})
  612. end
  613. self.ProfitBoxGo = tmp
  614. end
  615. ---@private
  616. function UIBattleView:InitGenerate__6(Root, data)
  617. --[[
  618. TopView/ProfitBox/Profit/Zeny/Text
  619. --]]
  620. local tmp = Root:Find("TopView/ProfitBox/Profit/Zeny/Text").gameObject
  621. if tolua.getpeer(tmp) == nil then
  622. tolua.setpeer(tmp, {})
  623. end
  624. self.ZenyLbl = tmp
  625. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  626. end
  627. ---@private
  628. function UIBattleView:InitGenerate__7(Root, data)
  629. --[[
  630. TopView/ProfitBox/Profit/ExpBase/Text
  631. --]]
  632. local tmp = Root:Find("TopView/ProfitBox/Profit/ExpBase/Text").gameObject
  633. if tolua.getpeer(tmp) == nil then
  634. tolua.setpeer(tmp, {})
  635. end
  636. self.ExpLbl = tmp
  637. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  638. end
  639. ---@private
  640. function UIBattleView:InitGenerate__8(Root, data)
  641. --[[
  642. TopView/ProfitBox/Profit/ExpParnter/Text
  643. --]]
  644. local tmp = Root:Find("TopView/ProfitBox/Profit/ExpParnter/Text").gameObject
  645. if tolua.getpeer(tmp) == nil then
  646. tolua.setpeer(tmp, {})
  647. end
  648. self.ParnterExpLbl = tmp
  649. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  650. end
  651. ---@private
  652. function UIBattleView:InitGenerate__9(Root, data)
  653. --[[
  654. TopView/ProfitBox/Profit/Cruise/Text
  655. --]]
  656. local tmp = Root:Find("TopView/ProfitBox/Profit/Cruise/Text").gameObject
  657. if tolua.getpeer(tmp) == nil then
  658. tolua.setpeer(tmp, {})
  659. end
  660. self.CruiseLbl = tmp
  661. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  662. end
  663. ---@private
  664. function UIBattleView:InitGenerate__10(Root, data)
  665. --[[
  666. TopView/MapRoot
  667. --]]
  668. local tmp = Root:Find("TopView/MapRoot").gameObject
  669. if tolua.getpeer(tmp) == nil then
  670. tolua.setpeer(tmp, {})
  671. end
  672. self.MapRootGo = tmp
  673. end
  674. ---@private
  675. function UIBattleView:InitGenerate__11(Root, data)
  676. --[[
  677. TopView/MapRoot/MapMask/minimap
  678. --]]
  679. local tmp = Root:Find("TopView/MapRoot/MapMask/minimap").gameObject
  680. if tolua.getpeer(tmp) == nil then
  681. tolua.setpeer(tmp, {})
  682. end
  683. self.minimap = tmp
  684. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  685. tmp.rawImage = tmp:GetComponent(Enum.TypeInfo.RawImage)
  686. end
  687. ---@private
  688. function UIBattleView:InitGenerate__12(Root, data)
  689. --[[
  690. TopView/MapRoot/MapMask/arrow
  691. --]]
  692. local tmp = Root:Find("TopView/MapRoot/MapMask/arrow").gameObject
  693. if tolua.getpeer(tmp) == nil then
  694. tolua.setpeer(tmp, {})
  695. end
  696. self.hero = tmp
  697. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  698. end
  699. ---@private
  700. function UIBattleView:InitGenerate__13(Root, data)
  701. --[[
  702. TopView/MapRoot/MapMask/enemy/Enemy1
  703. --]]
  704. local tmp = Root:Find("TopView/MapRoot/MapMask/enemy/Enemy1").gameObject
  705. if tolua.getpeer(tmp) == nil then
  706. tolua.setpeer(tmp, {})
  707. end
  708. self.enemy1 = tmp
  709. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  710. end
  711. ---@private
  712. function UIBattleView:InitGenerate__14(Root, data)
  713. --[[
  714. TopView/MapRoot/MapMask/enemy/Enemy2
  715. --]]
  716. local tmp = Root:Find("TopView/MapRoot/MapMask/enemy/Enemy2").gameObject
  717. if tolua.getpeer(tmp) == nil then
  718. tolua.setpeer(tmp, {})
  719. end
  720. self.enemy2 = tmp
  721. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  722. end
  723. ---@private
  724. function UIBattleView:InitGenerate__15(Root, data)
  725. --[[
  726. TopView/MapRoot/MapMask/enemy/Enemy3
  727. --]]
  728. local tmp = Root:Find("TopView/MapRoot/MapMask/enemy/Enemy3").gameObject
  729. if tolua.getpeer(tmp) == nil then
  730. tolua.setpeer(tmp, {})
  731. end
  732. self.enemy3 = tmp
  733. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  734. end
  735. ---@private
  736. function UIBattleView:InitGenerate__16(Root, data)
  737. --[[
  738. TopView/MapRoot/MapMask/enemy/Enemy4
  739. --]]
  740. local tmp = Root:Find("TopView/MapRoot/MapMask/enemy/Enemy4").gameObject
  741. if tolua.getpeer(tmp) == nil then
  742. tolua.setpeer(tmp, {})
  743. end
  744. self.enemy4 = tmp
  745. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  746. end
  747. ---@private
  748. function UIBattleView:InitGenerate__17(Root, data)
  749. --[[
  750. TopView/MapRoot/MapMask/enemy/Enemy5
  751. --]]
  752. local tmp = Root:Find("TopView/MapRoot/MapMask/enemy/Enemy5").gameObject
  753. if tolua.getpeer(tmp) == nil then
  754. tolua.setpeer(tmp, {})
  755. end
  756. self.enemy5 = tmp
  757. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  758. end
  759. ---@private
  760. function UIBattleView:InitGenerate__18(Root, data)
  761. --[[
  762. TopView/MapRoot/MapMask/enemy/Enemy6
  763. --]]
  764. local tmp = Root:Find("TopView/MapRoot/MapMask/enemy/Enemy6").gameObject
  765. if tolua.getpeer(tmp) == nil then
  766. tolua.setpeer(tmp, {})
  767. end
  768. self.enemy6 = tmp
  769. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  770. end
  771. ---@private
  772. function UIBattleView:InitGenerate__19(Root, data)
  773. --[[
  774. TopView/MapRoot/bg
  775. --]]
  776. local tmp = Root:Find("TopView/MapRoot/bg").gameObject
  777. if tolua.getpeer(tmp) == nil then
  778. tolua.setpeer(tmp, {})
  779. end
  780. self.miniMapBg = tmp
  781. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  782. end
  783. ---@private
  784. function UIBattleView:InitGenerate__20(Root, data)
  785. --[[
  786. TopView/MapRoot/q
  787. --]]
  788. local tmp = Root:Find("TopView/MapRoot/q").gameObject
  789. if tolua.getpeer(tmp) == nil then
  790. tolua.setpeer(tmp, {})
  791. end
  792. self.q = tmp
  793. end
  794. ---@private
  795. function UIBattleView:InitGenerate__21(Root, data)
  796. --[[
  797. TopView/MapRoot/q/Text
  798. --]]
  799. local tmp = Root:Find("TopView/MapRoot/q/Text").gameObject
  800. if tolua.getpeer(tmp) == nil then
  801. tolua.setpeer(tmp, {})
  802. end
  803. self.CurLevelName = tmp
  804. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  805. end
  806. ---@private
  807. function UIBattleView:InitGenerate__22(Root, data)
  808. --[[
  809. TopView/MapRoot/BgQuick/BtnQuick
  810. --]]
  811. local tmp = Root:Find("TopView/MapRoot/BgQuick/BtnQuick").gameObject
  812. if tolua.getpeer(tmp) == nil then
  813. tolua.setpeer(tmp, {})
  814. end
  815. self.quickBattleBtn = tmp
  816. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  817. end
  818. ---@private
  819. function UIBattleView:InitGenerate__23(Root, data)
  820. --[[
  821. TopView/MapRoot/BgQuick/BtnQuick_lock
  822. --]]
  823. local tmp = Root:Find("TopView/MapRoot/BgQuick/BtnQuick_lock").gameObject
  824. if tolua.getpeer(tmp) == nil then
  825. tolua.setpeer(tmp, {})
  826. end
  827. self.btnQuick_lock = tmp
  828. end
  829. ---@private
  830. function UIBattleView:InitGenerate__24(Root, data)
  831. --[[
  832. TopView/MapRoot/BtnStatistics
  833. --]]
  834. local tmp = Root:Find("TopView/MapRoot/BtnStatistics").gameObject
  835. if tolua.getpeer(tmp) == nil then
  836. tolua.setpeer(tmp, {})
  837. end
  838. self.btnStatistics = tmp
  839. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  840. end
  841. ---@private
  842. function UIBattleView:InitGenerate__25(Root, data)
  843. --[[
  844. TopView/MapRoot/Btnwarlog
  845. --]]
  846. local tmp = Root:Find("TopView/MapRoot/Btnwarlog").gameObject
  847. if tolua.getpeer(tmp) == nil then
  848. tolua.setpeer(tmp, {})
  849. end
  850. self.btnwarlog = tmp
  851. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  852. end
  853. ---@private
  854. function UIBattleView:InitGenerate__26(Root, data)
  855. --[[
  856. TopView/MapRoot/Btnwarlog/Icon
  857. --]]
  858. local tmp = Root:Find("TopView/MapRoot/Btnwarlog/Icon").gameObject
  859. if tolua.getpeer(tmp) == nil then
  860. tolua.setpeer(tmp, {})
  861. end
  862. self.btnwarlog.icon = tmp
  863. end
  864. ---@private
  865. function UIBattleView:InitGenerate__27(Root, data)
  866. --[[
  867. BottomView
  868. --]]
  869. local tmp = Root:Find("BottomView").gameObject
  870. if tolua.getpeer(tmp) == nil then
  871. tolua.setpeer(tmp, {})
  872. end
  873. self.bottomNode = tmp
  874. end
  875. ---@private
  876. function UIBattleView:InitGenerate__28(Root, data)
  877. --[[
  878. BottomView/ChatRoot
  879. --]]
  880. local tmp = Root:Find("BottomView/ChatRoot").gameObject
  881. if tolua.getpeer(tmp) == nil then
  882. tolua.setpeer(tmp, {})
  883. end
  884. self.chatRoot = tmp
  885. end
  886. ---@private
  887. function UIBattleView:InitGenerate__29(Root, data)
  888. --[[
  889. BottomView/ChatRoot/ChatView
  890. --]]
  891. local tmp = Root:Find("BottomView/ChatRoot/ChatView").gameObject
  892. if tolua.getpeer(tmp) == nil then
  893. tolua.setpeer(tmp, {})
  894. end
  895. self.chatView = tmp
  896. tmp.uIEventTriggerListener = tmp:GetComponent(Enum.TypeInfo.UIEventTriggerListener)
  897. tmp.loopListView = tmp:GetComponent(Enum.TypeInfo.LoopListView)
  898. end
  899. ---@private
  900. function UIBattleView:InitGenerate__30(Root, data)
  901. --[[
  902. BottomView/ChatRoot/ChatView/Viewport/Content/ChatTextItem
  903. --]]
  904. local tmp = Root:Find("BottomView/ChatRoot/ChatView/Viewport/Content/ChatTextItem").gameObject
  905. if tolua.getpeer(tmp) == nil then
  906. tolua.setpeer(tmp, {})
  907. end
  908. self.chatTextItem = CommonUtil.BindGridViewItem2LuaStatic("ChatTextItem", tmp)
  909. self.chatTextItem.prefabName = "ChatTextItem"
  910. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  911. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  912. end
  913. ---@private
  914. function UIBattleView:InitGenerate__31(Root, data)
  915. --[[
  916. BottomView/ChatRoot/ChltogBg
  917. --]]
  918. local tmp = Root:Find("BottomView/ChatRoot/ChltogBg").gameObject
  919. if tolua.getpeer(tmp) == nil then
  920. tolua.setpeer(tmp, {})
  921. end
  922. self.chltogBg = tmp
  923. tmp.toggleGroup = tmp:GetComponent(Enum.TypeInfo.ToggleGroup)
  924. tmp.canvasGroup = tmp:GetComponent(Enum.TypeInfo.CanvasGroup)
  925. end
  926. ---@private
  927. function UIBattleView:InitGenerate__32(Root, data)
  928. --[[
  929. BottomView/ChatRoot/ChltogBg/Togworld
  930. --]]
  931. local tmp = Root:Find("BottomView/ChatRoot/ChltogBg/Togworld").gameObject
  932. if tolua.getpeer(tmp) == nil then
  933. tolua.setpeer(tmp, {})
  934. end
  935. self.togworld = tmp
  936. tmp.toggle = tmp:GetComponent(Enum.TypeInfo.Toggle)
  937. end
  938. ---@private
  939. function UIBattleView:InitGenerate__33(Root, data)
  940. --[[
  941. BottomView/ChatRoot/ChltogBg/Togguild
  942. --]]
  943. local tmp = Root:Find("BottomView/ChatRoot/ChltogBg/Togguild").gameObject
  944. if tolua.getpeer(tmp) == nil then
  945. tolua.setpeer(tmp, {})
  946. end
  947. self.togguild = tmp
  948. tmp.toggle = tmp:GetComponent(Enum.TypeInfo.Toggle)
  949. end
  950. ---@private
  951. function UIBattleView:InitGenerate__34(Root, data)
  952. --[[
  953. BottomView/ChatRoot/ChltogBg/Togsystem
  954. --]]
  955. local tmp = Root:Find("BottomView/ChatRoot/ChltogBg/Togsystem").gameObject
  956. if tolua.getpeer(tmp) == nil then
  957. tolua.setpeer(tmp, {})
  958. end
  959. self.togsystem = tmp
  960. tmp.toggle = tmp:GetComponent(Enum.TypeInfo.Toggle)
  961. end
  962. ---@private
  963. function UIBattleView:InitGenerate__35(Root, data)
  964. --[[
  965. BottomView/ChatRoot/ChltogBg/Togwarlog
  966. --]]
  967. local tmp = Root:Find("BottomView/ChatRoot/ChltogBg/Togwarlog").gameObject
  968. if tolua.getpeer(tmp) == nil then
  969. tolua.setpeer(tmp, {})
  970. end
  971. self.togwarlog = tmp
  972. tmp.toggle = tmp:GetComponent(Enum.TypeInfo.Toggle)
  973. end
  974. ---@private
  975. function UIBattleView:InitGenerate__36(Root, data)
  976. --[[
  977. BottomView/ChatRoot/BattleLogView
  978. --]]
  979. local tmp = Root:Find("BottomView/ChatRoot/BattleLogView").gameObject
  980. if tolua.getpeer(tmp) == nil then
  981. tolua.setpeer(tmp, {})
  982. end
  983. self.battleLogView = tmp
  984. tmp.loopVerticalScrollRect = tmp:GetComponent(Enum.TypeInfo.LoopVerticalScrollRect)
  985. tmp.uIEventTriggerListener = tmp:GetComponent(Enum.TypeInfo.UIEventTriggerListener)
  986. end
  987. ---@private
  988. function UIBattleView:InitGenerate__37(Root, data)
  989. --[[
  990. BottomView/ChatRoot/BattleLogView/Viewport/Content
  991. --]]
  992. local tmp = Root:Find("BottomView/ChatRoot/BattleLogView/Viewport/Content").gameObject
  993. if tolua.getpeer(tmp) == nil then
  994. tolua.setpeer(tmp, {})
  995. end
  996. self.battleLogView.content = tmp
  997. tmp.verticalLayoutGroup = tmp:GetComponent(Enum.TypeInfo.VerticalLayoutGroup)
  998. end
  999. ---@private
  1000. function UIBattleView:InitGenerate__38(Root, data)
  1001. --[[
  1002. BottomView/BattleRootNew
  1003. --]]
  1004. local tmp = Root:Find("BottomView/BattleRootNew").gameObject
  1005. if tolua.getpeer(tmp) == nil then
  1006. tolua.setpeer(tmp, {})
  1007. end
  1008. self.battleRootNew = tmp
  1009. end
  1010. ---@private
  1011. function UIBattleView:InitGenerate__39(Root, data)
  1012. --[[
  1013. BottomView/BattleRootNew/BtnAuto
  1014. --]]
  1015. local tmp = Root:Find("BottomView/BattleRootNew/BtnAuto").gameObject
  1016. if tolua.getpeer(tmp) == nil then
  1017. tolua.setpeer(tmp, {})
  1018. end
  1019. self.btnAuto = tmp
  1020. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1021. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1022. tmp.animator.logWarnings = false
  1023. end
  1024. ---@private
  1025. function UIBattleView:InitGenerate__40(Root, data)
  1026. --[[
  1027. BottomView/BattleRootNew/BtnAuto/AutoAnim
  1028. --]]
  1029. local tmp = Root:Find("BottomView/BattleRootNew/BtnAuto/AutoAnim").gameObject
  1030. if tolua.getpeer(tmp) == nil then
  1031. tolua.setpeer(tmp, {})
  1032. end
  1033. self.autoAnim = tmp
  1034. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1035. tmp.animator.logWarnings = false
  1036. end
  1037. ---@private
  1038. function UIBattleView:InitGenerate__41(Root, data)
  1039. --[[
  1040. BottomView/BattleRootNew/OnlineRewards
  1041. --]]
  1042. local tmp = Root:Find("BottomView/BattleRootNew/OnlineRewards").gameObject
  1043. if tolua.getpeer(tmp) == nil then
  1044. tolua.setpeer(tmp, {})
  1045. end
  1046. self.OnlineRewards = tmp
  1047. end
  1048. ---@private
  1049. function UIBattleView:InitGenerate__42(Root, data)
  1050. --[[
  1051. BottomView/BattleRootNew/OnlineRewards/RewardsAnim
  1052. --]]
  1053. local tmp = Root:Find("BottomView/BattleRootNew/OnlineRewards/RewardsAnim").gameObject
  1054. if tolua.getpeer(tmp) == nil then
  1055. tolua.setpeer(tmp, {})
  1056. end
  1057. self.OnlineRewards.rewardsAnim = tmp
  1058. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1059. tmp.animator.logWarnings = false
  1060. end
  1061. ---@private
  1062. function UIBattleView:InitGenerate__43(Root, data)
  1063. --[[
  1064. BottomView/BattleRootNew/OnlineRewards/RewardsAnim/IconSmallItem
  1065. --]]
  1066. local tmp = Root:Find("BottomView/BattleRootNew/OnlineRewards/RewardsAnim/IconSmallItem").gameObject
  1067. if tolua.getpeer(tmp) == nil then
  1068. tolua.setpeer(tmp, {})
  1069. end
  1070. self.OnlineRewards.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1071. self.OnlineRewards.iconSmallItem.prefabName = "IconItem"
  1072. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1073. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1074. end
  1075. ---@private
  1076. function UIBattleView:InitGenerate__44(Root, data)
  1077. --[[
  1078. BottomView/BattleRootNew/OnlineRewards/BtnOnlineRewards
  1079. --]]
  1080. local tmp = Root:Find("BottomView/BattleRootNew/OnlineRewards/BtnOnlineRewards").gameObject
  1081. if tolua.getpeer(tmp) == nil then
  1082. tolua.setpeer(tmp, {})
  1083. end
  1084. self.btnOnlineRewards = tmp
  1085. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1086. end
  1087. ---@private
  1088. function UIBattleView:InitGenerate__45(Root, data)
  1089. --[[
  1090. BottomView/BattleRootNew/OnlineRewards/BtnOnlineRewards/Tomorrow
  1091. --]]
  1092. local tmp = Root:Find("BottomView/BattleRootNew/OnlineRewards/BtnOnlineRewards/Tomorrow").gameObject
  1093. if tolua.getpeer(tmp) == nil then
  1094. tolua.setpeer(tmp, {})
  1095. end
  1096. self.btnOnlineRewards.tomorrow = tmp
  1097. end
  1098. ---@private
  1099. function UIBattleView:InitGenerate__46(Root, data)
  1100. --[[
  1101. BottomView/BattleRootNew/OnlineRewards/BtnOnlineRewards/GetRewards
  1102. --]]
  1103. local tmp = Root:Find("BottomView/BattleRootNew/OnlineRewards/BtnOnlineRewards/GetRewards").gameObject
  1104. if tolua.getpeer(tmp) == nil then
  1105. tolua.setpeer(tmp, {})
  1106. end
  1107. self.btnOnlineRewards.getRewards = tmp
  1108. end
  1109. ---@private
  1110. function UIBattleView:InitGenerate__47(Root, data)
  1111. --[[
  1112. BottomView/BattleRootNew/OnlineRewards/BtnOnlineRewards/Times
  1113. --]]
  1114. local tmp = Root:Find("BottomView/BattleRootNew/OnlineRewards/BtnOnlineRewards/Times").gameObject
  1115. if tolua.getpeer(tmp) == nil then
  1116. tolua.setpeer(tmp, {})
  1117. end
  1118. self.btnOnlineRewards.times = tmp
  1119. end
  1120. ---@private
  1121. function UIBattleView:InitGenerate__48(Root, data)
  1122. --[[
  1123. BottomView/BattleRootNew/OnlineRewards/BtnOnlineRewards/Times/Text
  1124. --]]
  1125. local tmp = Root:Find("BottomView/BattleRootNew/OnlineRewards/BtnOnlineRewards/Times/Text").gameObject
  1126. if tolua.getpeer(tmp) == nil then
  1127. tolua.setpeer(tmp, {})
  1128. end
  1129. self.btnOnlineRewards.OnlineTimeLbl = tmp
  1130. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1131. end
  1132. ---@private
  1133. function UIBattleView:InitGenerate__49(Root, data)
  1134. --[[
  1135. BottomView/BattleRootNew/BtnReceive
  1136. --]]
  1137. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive").gameObject
  1138. if tolua.getpeer(tmp) == nil then
  1139. tolua.setpeer(tmp, {})
  1140. end
  1141. self.ReceiveGo = tmp
  1142. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1143. end
  1144. ---@private
  1145. function UIBattleView:InitGenerate__50(Root, data)
  1146. --[[
  1147. BottomView/BattleRootNew/BtnReceive/ChestAnim
  1148. --]]
  1149. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/ChestAnim").gameObject
  1150. if tolua.getpeer(tmp) == nil then
  1151. tolua.setpeer(tmp, {})
  1152. end
  1153. self.RewardBoxBtn = tmp
  1154. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1155. tmp.animator.logWarnings = false
  1156. end
  1157. ---@private
  1158. function UIBattleView:InitGenerate__51(Root, data)
  1159. --[[
  1160. BottomView/BattleRootNew/BtnReceive/Text
  1161. --]]
  1162. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/Text").gameObject
  1163. if tolua.getpeer(tmp) == nil then
  1164. tolua.setpeer(tmp, {})
  1165. end
  1166. self.RewardTimeLbl = tmp
  1167. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1168. end
  1169. ---@private
  1170. function UIBattleView:InitGenerate__52(Root, data)
  1171. --[[
  1172. BottomView/BattleRootNew/BtnReceive/RedPointItem
  1173. --]]
  1174. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/RedPointItem").gameObject
  1175. if tolua.getpeer(tmp) == nil then
  1176. tolua.setpeer(tmp, {})
  1177. end
  1178. self.rewardPoint = tmp
  1179. end
  1180. ---@private
  1181. function UIBattleView:InitGenerate__53(Root, data)
  1182. --[[
  1183. BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/Equipment
  1184. --]]
  1185. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/Equipment").gameObject
  1186. if tolua.getpeer(tmp) == nil then
  1187. tolua.setpeer(tmp, {})
  1188. end
  1189. self.equipment = tmp
  1190. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1191. end
  1192. ---@private
  1193. function UIBattleView:InitGenerate__54(Root, data)
  1194. --[[
  1195. BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/LvUp
  1196. --]]
  1197. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/LvUp").gameObject
  1198. if tolua.getpeer(tmp) == nil then
  1199. tolua.setpeer(tmp, {})
  1200. end
  1201. self.lvUp = tmp
  1202. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1203. end
  1204. ---@private
  1205. function UIBattleView:InitGenerate__55(Root, data)
  1206. --[[
  1207. BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/SkillTree
  1208. --]]
  1209. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/SkillTree").gameObject
  1210. if tolua.getpeer(tmp) == nil then
  1211. tolua.setpeer(tmp, {})
  1212. end
  1213. self.skillTree = tmp
  1214. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1215. end
  1216. ---@private
  1217. function UIBattleView:InitGenerate__56(Root, data)
  1218. --[[
  1219. BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/Refine
  1220. --]]
  1221. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/Refine").gameObject
  1222. if tolua.getpeer(tmp) == nil then
  1223. tolua.setpeer(tmp, {})
  1224. end
  1225. self.refine = tmp
  1226. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1227. end
  1228. ---@private
  1229. function UIBattleView:InitGenerate__57(Root, data)
  1230. --[[
  1231. BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/RedPoint
  1232. --]]
  1233. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/RedPoint").gameObject
  1234. if tolua.getpeer(tmp) == nil then
  1235. tolua.setpeer(tmp, {})
  1236. end
  1237. self.redPoint = tmp
  1238. end
  1239. ---@private
  1240. function UIBattleView:InitGenerate__58(Root, data)
  1241. --[[
  1242. BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/New
  1243. --]]
  1244. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/New").gameObject
  1245. if tolua.getpeer(tmp) == nil then
  1246. tolua.setpeer(tmp, {})
  1247. end
  1248. self.new = tmp
  1249. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1250. end
  1251. ---@private
  1252. function UIBattleView:InitGenerate__59(Root, data)
  1253. --[[
  1254. BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/Text
  1255. --]]
  1256. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/RedPointItem/RedPoint/Text").gameObject
  1257. if tolua.getpeer(tmp) == nil then
  1258. tolua.setpeer(tmp, {})
  1259. end
  1260. self.rewardPoint.num = tmp
  1261. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1262. end
  1263. ---@private
  1264. function UIBattleView:InitGenerate__60(Root, data)
  1265. --[[
  1266. BottomView/BattleRootNew/BtnReceive/Add
  1267. --]]
  1268. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/Add").gameObject
  1269. if tolua.getpeer(tmp) == nil then
  1270. tolua.setpeer(tmp, {})
  1271. end
  1272. self.ReceiveGo.add = tmp
  1273. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1274. tmp.animator.logWarnings = false
  1275. end
  1276. ---@private
  1277. function UIBattleView:InitGenerate__61(Root, data)
  1278. --[[
  1279. BottomView/BattleRootNew/BtnReceive/Add/RedPoint/Text
  1280. --]]
  1281. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive/Add/RedPoint/Text").gameObject
  1282. if tolua.getpeer(tmp) == nil then
  1283. tolua.setpeer(tmp, {})
  1284. end
  1285. self.ReceiveGo.add.num = tmp
  1286. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1287. end
  1288. ---@private
  1289. function UIBattleView:InitGenerate__62(Root, data)
  1290. --[[
  1291. BottomView/BattleRootNew/BtnStageGoal
  1292. --]]
  1293. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal").gameObject
  1294. if tolua.getpeer(tmp) == nil then
  1295. tolua.setpeer(tmp, {})
  1296. end
  1297. self.btnStageGoal = tmp
  1298. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1299. end
  1300. ---@private
  1301. function UIBattleView:InitGenerate__63(Root, data)
  1302. --[[
  1303. BottomView/BattleRootNew/BtnStageGoal/IconItem
  1304. --]]
  1305. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/IconItem").gameObject
  1306. if tolua.getpeer(tmp) == nil then
  1307. tolua.setpeer(tmp, {})
  1308. end
  1309. self.btnStageGoal.iconItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1310. self.btnStageGoal.iconItem.prefabName = "IconItem"
  1311. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1312. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1313. end
  1314. ---@private
  1315. function UIBattleView:InitGenerate__64(Root, data)
  1316. --[[
  1317. BottomView/BattleRootNew/BtnStageGoal/ReceiveAnim
  1318. --]]
  1319. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/ReceiveAnim").gameObject
  1320. if tolua.getpeer(tmp) == nil then
  1321. tolua.setpeer(tmp, {})
  1322. end
  1323. self.btnStageGoal.state = tmp
  1324. end
  1325. ---@private
  1326. function UIBattleView:InitGenerate__65(Root, data)
  1327. --[[
  1328. BottomView/BattleRootNew/BtnStageGoal/Text
  1329. --]]
  1330. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/Text").gameObject
  1331. if tolua.getpeer(tmp) == nil then
  1332. tolua.setpeer(tmp, {})
  1333. end
  1334. self.btnStageGoal.text = tmp
  1335. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1336. end
  1337. ---@private
  1338. function UIBattleView:InitGenerate__66(Root, data)
  1339. --[[
  1340. BottomView/BattleRootNew/BtnStageGoal/points
  1341. --]]
  1342. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points").gameObject
  1343. if tolua.getpeer(tmp) == nil then
  1344. tolua.setpeer(tmp, {})
  1345. end
  1346. self.btnStageGoal.points = tmp
  1347. tmp.gridLayoutGroup = tmp:GetComponent(Enum.TypeInfo.GridLayoutGroup)
  1348. end
  1349. ---@private
  1350. function UIBattleView:InitGenerate__67(Root, data)
  1351. --[[
  1352. BottomView/BattleRootNew/BtnStageGoal/points/point5
  1353. --]]
  1354. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points/point5").gameObject
  1355. if tolua.getpeer(tmp) == nil then
  1356. tolua.setpeer(tmp, {})
  1357. end
  1358. self.point5 = tmp
  1359. end
  1360. ---@private
  1361. function UIBattleView:InitGenerate__68(Root, data)
  1362. --[[
  1363. BottomView/BattleRootNew/BtnStageGoal/points/point5/light
  1364. --]]
  1365. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points/point5/light").gameObject
  1366. if tolua.getpeer(tmp) == nil then
  1367. tolua.setpeer(tmp, {})
  1368. end
  1369. self.point5.light = tmp
  1370. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1371. tmp.animator.logWarnings = false
  1372. end
  1373. ---@private
  1374. function UIBattleView:InitGenerate__69(Root, data)
  1375. --[[
  1376. BottomView/BattleRootNew/BtnStageGoal/points/point4
  1377. --]]
  1378. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points/point4").gameObject
  1379. if tolua.getpeer(tmp) == nil then
  1380. tolua.setpeer(tmp, {})
  1381. end
  1382. self.point4 = tmp
  1383. end
  1384. ---@private
  1385. function UIBattleView:InitGenerate__70(Root, data)
  1386. --[[
  1387. BottomView/BattleRootNew/BtnStageGoal/points/point4/light
  1388. --]]
  1389. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points/point4/light").gameObject
  1390. if tolua.getpeer(tmp) == nil then
  1391. tolua.setpeer(tmp, {})
  1392. end
  1393. self.point4.light = tmp
  1394. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1395. tmp.animator.logWarnings = false
  1396. end
  1397. ---@private
  1398. function UIBattleView:InitGenerate__71(Root, data)
  1399. --[[
  1400. BottomView/BattleRootNew/BtnStageGoal/points/point3
  1401. --]]
  1402. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points/point3").gameObject
  1403. if tolua.getpeer(tmp) == nil then
  1404. tolua.setpeer(tmp, {})
  1405. end
  1406. self.point3 = tmp
  1407. end
  1408. ---@private
  1409. function UIBattleView:InitGenerate__72(Root, data)
  1410. --[[
  1411. BottomView/BattleRootNew/BtnStageGoal/points/point3/light
  1412. --]]
  1413. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points/point3/light").gameObject
  1414. if tolua.getpeer(tmp) == nil then
  1415. tolua.setpeer(tmp, {})
  1416. end
  1417. self.point3.light = tmp
  1418. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1419. tmp.animator.logWarnings = false
  1420. end
  1421. ---@private
  1422. function UIBattleView:InitGenerate__73(Root, data)
  1423. --[[
  1424. BottomView/BattleRootNew/BtnStageGoal/points/point2
  1425. --]]
  1426. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points/point2").gameObject
  1427. if tolua.getpeer(tmp) == nil then
  1428. tolua.setpeer(tmp, {})
  1429. end
  1430. self.point2 = tmp
  1431. end
  1432. ---@private
  1433. function UIBattleView:InitGenerate__74(Root, data)
  1434. --[[
  1435. BottomView/BattleRootNew/BtnStageGoal/points/point2/light
  1436. --]]
  1437. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points/point2/light").gameObject
  1438. if tolua.getpeer(tmp) == nil then
  1439. tolua.setpeer(tmp, {})
  1440. end
  1441. self.point2.light = tmp
  1442. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1443. tmp.animator.logWarnings = false
  1444. end
  1445. ---@private
  1446. function UIBattleView:InitGenerate__75(Root, data)
  1447. --[[
  1448. BottomView/BattleRootNew/BtnStageGoal/points/point1
  1449. --]]
  1450. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points/point1").gameObject
  1451. if tolua.getpeer(tmp) == nil then
  1452. tolua.setpeer(tmp, {})
  1453. end
  1454. self.point1 = tmp
  1455. end
  1456. ---@private
  1457. function UIBattleView:InitGenerate__76(Root, data)
  1458. --[[
  1459. BottomView/BattleRootNew/BtnStageGoal/points/point1/light
  1460. --]]
  1461. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/points/point1/light").gameObject
  1462. if tolua.getpeer(tmp) == nil then
  1463. tolua.setpeer(tmp, {})
  1464. end
  1465. self.point1.light = tmp
  1466. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1467. tmp.animator.logWarnings = false
  1468. end
  1469. ---@private
  1470. function UIBattleView:InitGenerate__77(Root, data)
  1471. --[[
  1472. BottomView/BattleRootNew/BtnStageGoal/Talk
  1473. --]]
  1474. local tmp = Root:Find("BottomView/BattleRootNew/BtnStageGoal/Talk").gameObject
  1475. if tolua.getpeer(tmp) == nil then
  1476. tolua.setpeer(tmp, {})
  1477. end
  1478. self.stageGoalNtf = tmp
  1479. end
  1480. ---@private
  1481. function UIBattleView:InitGenerate__78(Root, data)
  1482. --[[
  1483. BottomView/BattleRootNew/BtnChallenge
  1484. --]]
  1485. local tmp = Root:Find("BottomView/BattleRootNew/BtnChallenge").gameObject
  1486. if tolua.getpeer(tmp) == nil then
  1487. tolua.setpeer(tmp, {})
  1488. end
  1489. self.btnChallenge = tmp
  1490. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1491. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1492. tmp.animator.logWarnings = false
  1493. end
  1494. ---@private
  1495. function UIBattleView:InitGenerate__79(Root, data)
  1496. --[[
  1497. BottomView/BattleRootNew/BtnChallenge/BtnBossAnim
  1498. --]]
  1499. local tmp = Root:Find("BottomView/BattleRootNew/BtnChallenge/BtnBossAnim").gameObject
  1500. if tolua.getpeer(tmp) == nil then
  1501. tolua.setpeer(tmp, {})
  1502. end
  1503. self.btnBossAnimator = tmp
  1504. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1505. tmp.animator.logWarnings = false
  1506. end
  1507. ---@private
  1508. function UIBattleView:InitGenerate__80(Root, data)
  1509. --[[
  1510. BottomView/BattleRootNew/BtnChallenge/BtnBossAnim/Boss1/Text
  1511. --]]
  1512. local tmp = Root:Find("BottomView/BattleRootNew/BtnChallenge/BtnBossAnim/Boss1/Text").gameObject
  1513. if tolua.getpeer(tmp) == nil then
  1514. tolua.setpeer(tmp, {})
  1515. end
  1516. self.btnChallenge.battleState = tmp
  1517. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1518. end
  1519. ---@private
  1520. function UIBattleView:InitGenerate__81(Root, data)
  1521. --[[
  1522. BottomView/BattleRootNew/BtnChallenge/BtnBossAnim/Boss4/Text
  1523. --]]
  1524. local tmp = Root:Find("BottomView/BattleRootNew/BtnChallenge/BtnBossAnim/Boss4/Text").gameObject
  1525. if tolua.getpeer(tmp) == nil then
  1526. tolua.setpeer(tmp, {})
  1527. end
  1528. self.btnChallenge.remainCDTime = tmp
  1529. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1530. end
  1531. ---@private
  1532. function UIBattleView:InitGenerate__82(Root, data)
  1533. --[[
  1534. BottomView/BattleRootNew/BtnChallenge_lock
  1535. --]]
  1536. local tmp = Root:Find("BottomView/BattleRootNew/BtnChallenge_lock").gameObject
  1537. if tolua.getpeer(tmp) == nil then
  1538. tolua.setpeer(tmp, {})
  1539. end
  1540. self.btnChallenge_lock = tmp
  1541. end
  1542. ---@private
  1543. function UIBattleView:InitGenerate__83(Root, data)
  1544. --[[
  1545. BottomView/BattleRootNew/BtnReceive_lock
  1546. --]]
  1547. local tmp = Root:Find("BottomView/BattleRootNew/BtnReceive_lock").gameObject
  1548. if tolua.getpeer(tmp) == nil then
  1549. tolua.setpeer(tmp, {})
  1550. end
  1551. self.btnReceive_lock = tmp
  1552. end
  1553. ---@private
  1554. function UIBattleView:InitGenerate__84(Root, data)
  1555. --[[
  1556. BottomView/BattleRootNew/BtnChat
  1557. --]]
  1558. local tmp = Root:Find("BottomView/BattleRootNew/BtnChat").gameObject
  1559. if tolua.getpeer(tmp) == nil then
  1560. tolua.setpeer(tmp, {})
  1561. end
  1562. self.btnChat = tmp
  1563. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1564. end
  1565. ---@private
  1566. function UIBattleView:InitGenerate__85(Root, data)
  1567. --[[
  1568. BottomView/BattleRootNew/BtnRedEnvelope
  1569. --]]
  1570. local tmp = Root:Find("BottomView/BattleRootNew/BtnRedEnvelope").gameObject
  1571. if tolua.getpeer(tmp) == nil then
  1572. tolua.setpeer(tmp, {})
  1573. end
  1574. self.btnRedEnvelope = tmp
  1575. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1576. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1577. end
  1578. ---@private
  1579. function UIBattleView:InitGenerate__86(Root, data)
  1580. --[[
  1581. BottomView/BattleRootNew/BtnRedEnvelope/Timer/Text
  1582. --]]
  1583. local tmp = Root:Find("BottomView/BattleRootNew/BtnRedEnvelope/Timer/Text").gameObject
  1584. if tolua.getpeer(tmp) == nil then
  1585. tolua.setpeer(tmp, {})
  1586. end
  1587. self.btnRedEnvelope.text = tmp
  1588. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1589. end
  1590. ---@private
  1591. function UIBattleView:InitGenerate__87(Root, data)
  1592. --[[
  1593. BottomView/BattleRootNew/WindowEnvelope
  1594. --]]
  1595. local tmp = Root:Find("BottomView/BattleRootNew/WindowEnvelope").gameObject
  1596. if tolua.getpeer(tmp) == nil then
  1597. tolua.setpeer(tmp, {})
  1598. end
  1599. self.windowEnvelope = tmp
  1600. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1601. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1602. end
  1603. ---@private
  1604. function UIBattleView:InitGenerate__88(Root, data)
  1605. --[[
  1606. BottomView/BattleRootNew/WindowEnvelope/innerframe/TextRank
  1607. --]]
  1608. local tmp = Root:Find("BottomView/BattleRootNew/WindowEnvelope/innerframe/TextRank").gameObject
  1609. if tolua.getpeer(tmp) == nil then
  1610. tolua.setpeer(tmp, {})
  1611. end
  1612. self.windowEnvelope.textRank = tmp
  1613. tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
  1614. end
  1615. ---@private
  1616. function UIBattleView:InitGenerate__89(Root, data)
  1617. --[[
  1618. BottomView/BattleRootNew/WindowEnvelope/innerframe/CashNumber
  1619. --]]
  1620. local tmp = Root:Find("BottomView/BattleRootNew/WindowEnvelope/innerframe/CashNumber").gameObject
  1621. if tolua.getpeer(tmp) == nil then
  1622. tolua.setpeer(tmp, {})
  1623. end
  1624. self.windowEnvelope.cashNumber = tmp
  1625. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1626. end
  1627. ---@private
  1628. function UIBattleView:InitGenerate__90(Root, data)
  1629. --[[
  1630. BottomView/BattleRootNew/WindowEnvelope/innerframe/Text
  1631. --]]
  1632. local tmp = Root:Find("BottomView/BattleRootNew/WindowEnvelope/innerframe/Text").gameObject
  1633. if tolua.getpeer(tmp) == nil then
  1634. tolua.setpeer(tmp, {})
  1635. end
  1636. self.windowEnvelope.text = tmp
  1637. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1638. end
  1639. ---@private
  1640. function UIBattleView:InitGenerate__91(Root, data)
  1641. --[[
  1642. BottomView/BattleRootNew/DifficultBtn
  1643. --]]
  1644. local tmp = Root:Find("BottomView/BattleRootNew/DifficultBtn").gameObject
  1645. if tolua.getpeer(tmp) == nil then
  1646. tolua.setpeer(tmp, {})
  1647. end
  1648. self.difficultBtn = tmp
  1649. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1650. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1651. tmp.animator.logWarnings = false
  1652. end
  1653. ---@private
  1654. function UIBattleView:InitGenerate__92(Root, data)
  1655. --[[
  1656. BottomView/BattleRootNew/DifficultBtn/BtnBossAnim/Boss1/Text
  1657. --]]
  1658. local tmp = Root:Find("BottomView/BattleRootNew/DifficultBtn/BtnBossAnim/Boss1/Text").gameObject
  1659. if tolua.getpeer(tmp) == nil then
  1660. tolua.setpeer(tmp, {})
  1661. end
  1662. self.difficultBtn.DifTxt = tmp
  1663. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1664. end
  1665. ---@private
  1666. function UIBattleView:InitGenerate__93(Root, data)
  1667. --[[
  1668. BottomView/BattleRootNew/MapLevelModes
  1669. --]]
  1670. local tmp = Root:Find("BottomView/BattleRootNew/MapLevelModes").gameObject
  1671. if tolua.getpeer(tmp) == nil then
  1672. tolua.setpeer(tmp, {})
  1673. end
  1674. self.mapLevelModes = tmp
  1675. end
  1676. ---@private
  1677. function UIBattleView:InitGenerate__94(Root, data)
  1678. --[[
  1679. BottomView/BattleRootNew/MapLevelModes/BgBtn
  1680. --]]
  1681. local tmp = Root:Find("BottomView/BattleRootNew/MapLevelModes/BgBtn").gameObject
  1682. if tolua.getpeer(tmp) == nil then
  1683. tolua.setpeer(tmp, {})
  1684. end
  1685. self.bgBtn = tmp
  1686. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1687. end
  1688. ---@private
  1689. function UIBattleView:InitGenerate__95(Root, data)
  1690. --[[
  1691. BottomView/BattleRootNew/MapLevelModes/ModeNode
  1692. --]]
  1693. local tmp = Root:Find("BottomView/BattleRootNew/MapLevelModes/ModeNode").gameObject
  1694. if tolua.getpeer(tmp) == nil then
  1695. tolua.setpeer(tmp, {})
  1696. end
  1697. self.modeNode = tmp
  1698. tmp.loopVerticalScrollRect = tmp:GetComponent(Enum.TypeInfo.LoopVerticalScrollRect)
  1699. end
  1700. ---@private
  1701. function UIBattleView:InitGenerate__96(Root, data)
  1702. --[[
  1703. BottomView/BattleRootNew/MapLevelModes/ModeNode/Viewport/Content
  1704. --]]
  1705. local tmp = Root:Find("BottomView/BattleRootNew/MapLevelModes/ModeNode/Viewport/Content").gameObject
  1706. if tolua.getpeer(tmp) == nil then
  1707. tolua.setpeer(tmp, {})
  1708. end
  1709. self.content = tmp
  1710. tmp.verticalLayoutGroup = tmp:GetComponent(Enum.TypeInfo.VerticalLayoutGroup)
  1711. end
  1712. ---@private
  1713. function UIBattleView:InitGenerate__97(Root, data)
  1714. --[[
  1715. CenterView
  1716. --]]
  1717. local tmp = Root:Find("CenterView").gameObject
  1718. if tolua.getpeer(tmp) == nil then
  1719. tolua.setpeer(tmp, {})
  1720. end
  1721. self.centerNode = tmp
  1722. end
  1723. ---@private
  1724. function UIBattleView:InitGenerate__98(Root, data)
  1725. --[[
  1726. CenterView/NewOpen
  1727. --]]
  1728. local tmp = Root:Find("CenterView/NewOpen").gameObject
  1729. if tolua.getpeer(tmp) == nil then
  1730. tolua.setpeer(tmp, {})
  1731. end
  1732. self.newOpen = tmp
  1733. end
  1734. ---@private
  1735. function UIBattleView:InitGenerate__99(Root, data)
  1736. --[[
  1737. CenterView/NewOpen/Alpha
  1738. --]]
  1739. local tmp = Root:Find("CenterView/NewOpen/Alpha").gameObject
  1740. if tolua.getpeer(tmp) == nil then
  1741. tolua.setpeer(tmp, {})
  1742. end
  1743. self.newOpen.alpha = tmp
  1744. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1745. end
  1746. ---@private
  1747. function UIBattleView:InitGenerate__100(Root, data)
  1748. --[[
  1749. CenterView/NewOpen/Window/BG/New/Icon/Image
  1750. --]]
  1751. local tmp = Root:Find("CenterView/NewOpen/Window/BG/New/Icon/Image").gameObject
  1752. if tolua.getpeer(tmp) == nil then
  1753. tolua.setpeer(tmp, {})
  1754. end
  1755. self.newOpen.image = tmp
  1756. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1757. end
  1758. ---@private
  1759. function UIBattleView:InitGenerate__101(Root, data)
  1760. --[[
  1761. CenterView/NewOpen/Window/BG/New/Icon/ImageLt
  1762. --]]
  1763. local tmp = Root:Find("CenterView/NewOpen/Window/BG/New/Icon/ImageLt").gameObject
  1764. if tolua.getpeer(tmp) == nil then
  1765. tolua.setpeer(tmp, {})
  1766. end
  1767. self.newOpen.imageLt = tmp
  1768. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1769. end
  1770. ---@private
  1771. function UIBattleView:InitGenerate__102(Root, data)
  1772. --[[
  1773. CenterView/NewOpen/Window/BG/New/Move/NameTxt
  1774. --]]
  1775. local tmp = Root:Find("CenterView/NewOpen/Window/BG/New/Move/NameTxt").gameObject
  1776. if tolua.getpeer(tmp) == nil then
  1777. tolua.setpeer(tmp, {})
  1778. end
  1779. self.newOpen.nameTxt = tmp
  1780. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1781. end
  1782. ---@private
  1783. function UIBattleView:InitGenerate__103(Root, data)
  1784. --[[
  1785. CenterView/NewOpen/Window/BG/New/Move/DscTxt
  1786. --]]
  1787. local tmp = Root:Find("CenterView/NewOpen/Window/BG/New/Move/DscTxt").gameObject
  1788. if tolua.getpeer(tmp) == nil then
  1789. tolua.setpeer(tmp, {})
  1790. end
  1791. self.newOpen.dscTxt = tmp
  1792. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1793. end
  1794. ---@private
  1795. function UIBattleView:InitGenerate__104(Root, data)
  1796. --[[
  1797. CenterView/NewOpen/Window/BG/New/particle
  1798. --]]
  1799. local tmp = Root:Find("CenterView/NewOpen/Window/BG/New/particle").gameObject
  1800. if tolua.getpeer(tmp) == nil then
  1801. tolua.setpeer(tmp, {})
  1802. end
  1803. self.particle = tmp
  1804. tmp.uIParticle = tmp:GetComponent(Enum.TypeInfo.UIParticle)
  1805. end
  1806. ---@private
  1807. function UIBattleView:InitGenerate__105(Root, data)
  1808. --[[
  1809. CenterView/NewOpen/Window/BG/Next/Item
  1810. --]]
  1811. local tmp = Root:Find("CenterView/NewOpen/Window/BG/Next/Item").gameObject
  1812. if tolua.getpeer(tmp) == nil then
  1813. tolua.setpeer(tmp, {})
  1814. end
  1815. self.newOpen.item = tmp
  1816. end
  1817. ---@private
  1818. function UIBattleView:InitGenerate__106(Root, data)
  1819. --[[
  1820. CenterView/NewOpen/Window/BG/Next/Item/Image
  1821. --]]
  1822. local tmp = Root:Find("CenterView/NewOpen/Window/BG/Next/Item/Image").gameObject
  1823. if tolua.getpeer(tmp) == nil then
  1824. tolua.setpeer(tmp, {})
  1825. end
  1826. self.newOpen.item.image = tmp
  1827. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1828. end
  1829. ---@private
  1830. function UIBattleView:InitGenerate__107(Root, data)
  1831. --[[
  1832. CenterView/NewOpen/Window/BG/Next/Item/ItemTxt
  1833. --]]
  1834. local tmp = Root:Find("CenterView/NewOpen/Window/BG/Next/Item/ItemTxt").gameObject
  1835. if tolua.getpeer(tmp) == nil then
  1836. tolua.setpeer(tmp, {})
  1837. end
  1838. self.newOpen.item.itemTxt = tmp
  1839. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1840. end
  1841. ---@private
  1842. function UIBattleView:InitGenerate__108(Root, data)
  1843. --[[
  1844. BossWarning
  1845. --]]
  1846. local tmp = Root:Find("BossWarning").gameObject
  1847. if tolua.getpeer(tmp) == nil then
  1848. tolua.setpeer(tmp, {})
  1849. end
  1850. self.bossWarning = tmp
  1851. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1852. tmp.animator.logWarnings = false
  1853. end
  1854. ---@private
  1855. function UIBattleView:InitGenerate__109(Root, data)
  1856. --[[
  1857. RageBoxNew
  1858. --]]
  1859. local tmp = Root:Find("RageBoxNew").gameObject
  1860. if tolua.getpeer(tmp) == nil then
  1861. tolua.setpeer(tmp, {})
  1862. end
  1863. self.rageBoxGo = tmp
  1864. end
  1865. ---@private
  1866. function UIBattleView:InitGenerate__110(Root, data)
  1867. --[[
  1868. RageBoxNew/Bg
  1869. --]]
  1870. local tmp = Root:Find("RageBoxNew/Bg").gameObject
  1871. if tolua.getpeer(tmp) == nil then
  1872. tolua.setpeer(tmp, {})
  1873. end
  1874. self.rageBoxGo.bg = tmp
  1875. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1876. tmp.animator.logWarnings = false
  1877. end
  1878. ---@private
  1879. function UIBattleView:InitGenerate__111(Root, data)
  1880. --[[
  1881. RageBoxNew/Bg/Window/Text/Number1
  1882. --]]
  1883. local tmp = Root:Find("RageBoxNew/Bg/Window/Text/Number1").gameObject
  1884. if tolua.getpeer(tmp) == nil then
  1885. tolua.setpeer(tmp, {})
  1886. end
  1887. self.rageNum1 = tmp
  1888. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1889. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  1890. end
  1891. ---@private
  1892. function UIBattleView:InitGenerate__112(Root, data)
  1893. --[[
  1894. RageBoxNew/Bg/Window/Text/Number2
  1895. --]]
  1896. local tmp = Root:Find("RageBoxNew/Bg/Window/Text/Number2").gameObject
  1897. if tolua.getpeer(tmp) == nil then
  1898. tolua.setpeer(tmp, {})
  1899. end
  1900. self.rageNum2 = tmp
  1901. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1902. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  1903. end
  1904. ---@private
  1905. function UIBattleView:InitGenerate__113(Root, data)
  1906. --[[
  1907. BattleFailed
  1908. --]]
  1909. local tmp = Root:Find("BattleFailed").gameObject
  1910. if tolua.getpeer(tmp) == nil then
  1911. tolua.setpeer(tmp, {})
  1912. end
  1913. self.battleFailGo = tmp
  1914. end
  1915. ---@private
  1916. function UIBattleView:InitGenerate__114(Root, data)
  1917. --[[
  1918. funcbg
  1919. --]]
  1920. local tmp = Root:Find("funcbg").gameObject
  1921. if tolua.getpeer(tmp) == nil then
  1922. tolua.setpeer(tmp, {})
  1923. end
  1924. self.funcbg = tmp
  1925. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1926. end
  1927. ---@private
  1928. function UIBattleView:InitGenerate__115(Root, data)
  1929. --[[
  1930. funcbg/HeadOrder
  1931. --]]
  1932. local tmp = Root:Find("funcbg/HeadOrder").gameObject
  1933. if tolua.getpeer(tmp) == nil then
  1934. tolua.setpeer(tmp, {})
  1935. end
  1936. self.headOrder = tmp
  1937. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1938. end
  1939. ---@private
  1940. function UIBattleView:InitGenerate__116(Root, data)
  1941. --[[
  1942. funcbg/HeadOrder/BtnPrivateChat
  1943. --]]
  1944. local tmp = Root:Find("funcbg/HeadOrder/BtnPrivateChat").gameObject
  1945. if tolua.getpeer(tmp) == nil then
  1946. tolua.setpeer(tmp, {})
  1947. end
  1948. self.btnPrivateChat = tmp
  1949. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1950. end
  1951. ---@private
  1952. function UIBattleView:InitGenerate__117(Root, data)
  1953. --[[
  1954. funcbg/HeadOrder/BtnInfor
  1955. --]]
  1956. local tmp = Root:Find("funcbg/HeadOrder/BtnInfor").gameObject
  1957. if tolua.getpeer(tmp) == nil then
  1958. tolua.setpeer(tmp, {})
  1959. end
  1960. self.btnInfor = tmp
  1961. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1962. end
  1963. ---@private
  1964. function UIBattleView:InitGenerate__118(Root, data)
  1965. --[[
  1966. funcbg/HeadOrder/BtnAddFriend
  1967. --]]
  1968. local tmp = Root:Find("funcbg/HeadOrder/BtnAddFriend").gameObject
  1969. if tolua.getpeer(tmp) == nil then
  1970. tolua.setpeer(tmp, {})
  1971. end
  1972. self.btnAddFriend = tmp
  1973. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1974. end
  1975. ---@private
  1976. function UIBattleView:InitGenerate__119(Root, data)
  1977. --[[
  1978. funcbg/HeadOrder/BtnAddFriend/Text
  1979. --]]
  1980. local tmp = Root:Find("funcbg/HeadOrder/BtnAddFriend/Text").gameObject
  1981. if tolua.getpeer(tmp) == nil then
  1982. tolua.setpeer(tmp, {})
  1983. end
  1984. self.btnAddFriend.text = tmp
  1985. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1986. end
  1987. ---@private
  1988. function UIBattleView:InitGenerate__120(Root, data)
  1989. --[[
  1990. funcbg/HeadOrder/BtnBlock
  1991. --]]
  1992. local tmp = Root:Find("funcbg/HeadOrder/BtnBlock").gameObject
  1993. if tolua.getpeer(tmp) == nil then
  1994. tolua.setpeer(tmp, {})
  1995. end
  1996. self.btnBlock = tmp
  1997. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1998. end
  1999. ---@private
  2000. function UIBattleView:InitGenerate__121(Root, data)
  2001. --[[
  2002. funcbg/HeadOrder/BtnBlock/Text
  2003. --]]
  2004. local tmp = Root:Find("funcbg/HeadOrder/BtnBlock/Text").gameObject
  2005. if tolua.getpeer(tmp) == nil then
  2006. tolua.setpeer(tmp, {})
  2007. end
  2008. self.btnBlock.text = tmp
  2009. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  2010. end
  2011. ---@private
  2012. function UIBattleView:GenerateDestroy()
  2013. if tolua.getpeer(self.btnBlock.text) ~= nil then
  2014. tolua.setpeer(self.btnBlock.text, nil)
  2015. end
  2016. if tolua.getpeer(self.btnAddFriend.text) ~= nil then
  2017. tolua.setpeer(self.btnAddFriend.text, nil)
  2018. end
  2019. if tolua.getpeer(self.rageBoxGo.bg) ~= nil then
  2020. tolua.setpeer(self.rageBoxGo.bg, nil)
  2021. end
  2022. if tolua.getpeer(self.newOpen.item.itemTxt) ~= nil then
  2023. tolua.setpeer(self.newOpen.item.itemTxt, nil)
  2024. end
  2025. if tolua.getpeer(self.newOpen.item.image) ~= nil then
  2026. tolua.setpeer(self.newOpen.item.image, nil)
  2027. end
  2028. if tolua.getpeer(self.newOpen.item) ~= nil then
  2029. tolua.setpeer(self.newOpen.item, nil)
  2030. end
  2031. if tolua.getpeer(self.newOpen.dscTxt) ~= nil then
  2032. tolua.setpeer(self.newOpen.dscTxt, nil)
  2033. end
  2034. if tolua.getpeer(self.newOpen.nameTxt) ~= nil then
  2035. tolua.setpeer(self.newOpen.nameTxt, nil)
  2036. end
  2037. if tolua.getpeer(self.newOpen.imageLt) ~= nil then
  2038. tolua.setpeer(self.newOpen.imageLt, nil)
  2039. end
  2040. if tolua.getpeer(self.newOpen.image) ~= nil then
  2041. tolua.setpeer(self.newOpen.image, nil)
  2042. end
  2043. if tolua.getpeer(self.newOpen.alpha) ~= nil then
  2044. tolua.setpeer(self.newOpen.alpha, nil)
  2045. end
  2046. if tolua.getpeer(self.difficultBtn.DifTxt) ~= nil then
  2047. tolua.setpeer(self.difficultBtn.DifTxt, nil)
  2048. end
  2049. if tolua.getpeer(self.windowEnvelope.text) ~= nil then
  2050. tolua.setpeer(self.windowEnvelope.text, nil)
  2051. end
  2052. if tolua.getpeer(self.windowEnvelope.cashNumber) ~= nil then
  2053. tolua.setpeer(self.windowEnvelope.cashNumber, nil)
  2054. end
  2055. if tolua.getpeer(self.windowEnvelope.textRank) ~= nil then
  2056. tolua.setpeer(self.windowEnvelope.textRank, nil)
  2057. end
  2058. if tolua.getpeer(self.btnRedEnvelope.text) ~= nil then
  2059. tolua.setpeer(self.btnRedEnvelope.text, nil)
  2060. end
  2061. if tolua.getpeer(self.btnChallenge.remainCDTime) ~= nil then
  2062. tolua.setpeer(self.btnChallenge.remainCDTime, nil)
  2063. end
  2064. if tolua.getpeer(self.btnChallenge.battleState) ~= nil then
  2065. tolua.setpeer(self.btnChallenge.battleState, nil)
  2066. end
  2067. if tolua.getpeer(self.point1.light) ~= nil then
  2068. tolua.setpeer(self.point1.light, nil)
  2069. end
  2070. if tolua.getpeer(self.point2.light) ~= nil then
  2071. tolua.setpeer(self.point2.light, nil)
  2072. end
  2073. if tolua.getpeer(self.point3.light) ~= nil then
  2074. tolua.setpeer(self.point3.light, nil)
  2075. end
  2076. if tolua.getpeer(self.point4.light) ~= nil then
  2077. tolua.setpeer(self.point4.light, nil)
  2078. end
  2079. if tolua.getpeer(self.point5.light) ~= nil then
  2080. tolua.setpeer(self.point5.light, nil)
  2081. end
  2082. if tolua.getpeer(self.btnStageGoal.points) ~= nil then
  2083. tolua.setpeer(self.btnStageGoal.points, nil)
  2084. end
  2085. if tolua.getpeer(self.btnStageGoal.text) ~= nil then
  2086. tolua.setpeer(self.btnStageGoal.text, nil)
  2087. end
  2088. if tolua.getpeer(self.btnStageGoal.state) ~= nil then
  2089. tolua.setpeer(self.btnStageGoal.state, nil)
  2090. end
  2091. if self.btnStageGoal.iconItem.GenerateDestroy ~= nil then
  2092. self.btnStageGoal.iconItem:GenerateDestroy()
  2093. end
  2094. if tolua.getpeer(self.btnStageGoal.iconItem) ~= nil then
  2095. tolua.setpeer(self.btnStageGoal.iconItem, nil)
  2096. end
  2097. if tolua.getpeer(self.ReceiveGo.add.num) ~= nil then
  2098. tolua.setpeer(self.ReceiveGo.add.num, nil)
  2099. end
  2100. if tolua.getpeer(self.ReceiveGo.add) ~= nil then
  2101. tolua.setpeer(self.ReceiveGo.add, nil)
  2102. end
  2103. if tolua.getpeer(self.rewardPoint.num) ~= nil then
  2104. tolua.setpeer(self.rewardPoint.num, nil)
  2105. end
  2106. if tolua.getpeer(self.btnOnlineRewards.OnlineTimeLbl) ~= nil then
  2107. tolua.setpeer(self.btnOnlineRewards.OnlineTimeLbl, nil)
  2108. end
  2109. if tolua.getpeer(self.btnOnlineRewards.times) ~= nil then
  2110. tolua.setpeer(self.btnOnlineRewards.times, nil)
  2111. end
  2112. if tolua.getpeer(self.btnOnlineRewards.getRewards) ~= nil then
  2113. tolua.setpeer(self.btnOnlineRewards.getRewards, nil)
  2114. end
  2115. if tolua.getpeer(self.btnOnlineRewards.tomorrow) ~= nil then
  2116. tolua.setpeer(self.btnOnlineRewards.tomorrow, nil)
  2117. end
  2118. if self.OnlineRewards.iconSmallItem.GenerateDestroy ~= nil then
  2119. self.OnlineRewards.iconSmallItem:GenerateDestroy()
  2120. end
  2121. if tolua.getpeer(self.OnlineRewards.iconSmallItem) ~= nil then
  2122. tolua.setpeer(self.OnlineRewards.iconSmallItem, nil)
  2123. end
  2124. if tolua.getpeer(self.OnlineRewards.rewardsAnim) ~= nil then
  2125. tolua.setpeer(self.OnlineRewards.rewardsAnim, nil)
  2126. end
  2127. if tolua.getpeer(self.battleLogView.content) ~= nil then
  2128. tolua.setpeer(self.battleLogView.content, nil)
  2129. end
  2130. if tolua.getpeer(self.btnwarlog.icon) ~= nil then
  2131. tolua.setpeer(self.btnwarlog.icon, nil)
  2132. end
  2133. if tolua.getpeer(self.dragBg) ~= nil then
  2134. tolua.setpeer(self.dragBg, nil)
  2135. end
  2136. self.dragBg = nil
  2137. if tolua.getpeer(self.exploringTrans) ~= nil then
  2138. tolua.setpeer(self.exploringTrans, nil)
  2139. end
  2140. self.exploringTrans = nil
  2141. if tolua.getpeer(self.exploringText) ~= nil then
  2142. tolua.setpeer(self.exploringText, nil)
  2143. end
  2144. self.exploringText = nil
  2145. if tolua.getpeer(self.ProfitBoxGo) ~= nil then
  2146. tolua.setpeer(self.ProfitBoxGo, nil)
  2147. end
  2148. self.ProfitBoxGo = nil
  2149. if tolua.getpeer(self.ZenyLbl) ~= nil then
  2150. tolua.setpeer(self.ZenyLbl, nil)
  2151. end
  2152. self.ZenyLbl = nil
  2153. if tolua.getpeer(self.ExpLbl) ~= nil then
  2154. tolua.setpeer(self.ExpLbl, nil)
  2155. end
  2156. self.ExpLbl = nil
  2157. if tolua.getpeer(self.ParnterExpLbl) ~= nil then
  2158. tolua.setpeer(self.ParnterExpLbl, nil)
  2159. end
  2160. self.ParnterExpLbl = nil
  2161. if tolua.getpeer(self.CruiseLbl) ~= nil then
  2162. tolua.setpeer(self.CruiseLbl, nil)
  2163. end
  2164. self.CruiseLbl = nil
  2165. if tolua.getpeer(self.MapRootGo) ~= nil then
  2166. tolua.setpeer(self.MapRootGo, nil)
  2167. end
  2168. self.MapRootGo = nil
  2169. if tolua.getpeer(self.minimap) ~= nil then
  2170. tolua.setpeer(self.minimap, nil)
  2171. end
  2172. self.minimap = nil
  2173. if tolua.getpeer(self.hero) ~= nil then
  2174. tolua.setpeer(self.hero, nil)
  2175. end
  2176. self.hero = nil
  2177. if tolua.getpeer(self.enemy1) ~= nil then
  2178. tolua.setpeer(self.enemy1, nil)
  2179. end
  2180. self.enemy1 = nil
  2181. if tolua.getpeer(self.enemy2) ~= nil then
  2182. tolua.setpeer(self.enemy2, nil)
  2183. end
  2184. self.enemy2 = nil
  2185. if tolua.getpeer(self.enemy3) ~= nil then
  2186. tolua.setpeer(self.enemy3, nil)
  2187. end
  2188. self.enemy3 = nil
  2189. if tolua.getpeer(self.enemy4) ~= nil then
  2190. tolua.setpeer(self.enemy4, nil)
  2191. end
  2192. self.enemy4 = nil
  2193. if tolua.getpeer(self.enemy5) ~= nil then
  2194. tolua.setpeer(self.enemy5, nil)
  2195. end
  2196. self.enemy5 = nil
  2197. if tolua.getpeer(self.enemy6) ~= nil then
  2198. tolua.setpeer(self.enemy6, nil)
  2199. end
  2200. self.enemy6 = nil
  2201. if tolua.getpeer(self.miniMapBg) ~= nil then
  2202. tolua.setpeer(self.miniMapBg, nil)
  2203. end
  2204. self.miniMapBg = nil
  2205. if tolua.getpeer(self.q) ~= nil then
  2206. tolua.setpeer(self.q, nil)
  2207. end
  2208. self.q = nil
  2209. if tolua.getpeer(self.CurLevelName) ~= nil then
  2210. tolua.setpeer(self.CurLevelName, nil)
  2211. end
  2212. self.CurLevelName = nil
  2213. if tolua.getpeer(self.quickBattleBtn) ~= nil then
  2214. tolua.setpeer(self.quickBattleBtn, nil)
  2215. end
  2216. self.quickBattleBtn = nil
  2217. if tolua.getpeer(self.btnQuick_lock) ~= nil then
  2218. tolua.setpeer(self.btnQuick_lock, nil)
  2219. end
  2220. self.btnQuick_lock = nil
  2221. if tolua.getpeer(self.btnStatistics) ~= nil then
  2222. tolua.setpeer(self.btnStatistics, nil)
  2223. end
  2224. self.btnStatistics = nil
  2225. if tolua.getpeer(self.btnwarlog) ~= nil then
  2226. tolua.setpeer(self.btnwarlog, nil)
  2227. end
  2228. self.btnwarlog = nil
  2229. if tolua.getpeer(self.bottomNode) ~= nil then
  2230. tolua.setpeer(self.bottomNode, nil)
  2231. end
  2232. self.bottomNode = nil
  2233. if tolua.getpeer(self.chatRoot) ~= nil then
  2234. tolua.setpeer(self.chatRoot, nil)
  2235. end
  2236. self.chatRoot = nil
  2237. if tolua.getpeer(self.chatView) ~= nil then
  2238. tolua.setpeer(self.chatView, nil)
  2239. end
  2240. self.chatView = nil
  2241. if self.chatTextItem.GenerateDestroy ~= nil then
  2242. self.chatTextItem:GenerateDestroy()
  2243. end
  2244. if tolua.getpeer(self.chatTextItem) ~= nil then
  2245. tolua.setpeer(self.chatTextItem, nil)
  2246. end
  2247. self.chatTextItem = nil
  2248. if tolua.getpeer(self.chltogBg) ~= nil then
  2249. tolua.setpeer(self.chltogBg, nil)
  2250. end
  2251. self.chltogBg = nil
  2252. if tolua.getpeer(self.togworld) ~= nil then
  2253. tolua.setpeer(self.togworld, nil)
  2254. end
  2255. self.togworld = nil
  2256. if tolua.getpeer(self.togguild) ~= nil then
  2257. tolua.setpeer(self.togguild, nil)
  2258. end
  2259. self.togguild = nil
  2260. if tolua.getpeer(self.togsystem) ~= nil then
  2261. tolua.setpeer(self.togsystem, nil)
  2262. end
  2263. self.togsystem = nil
  2264. if tolua.getpeer(self.togwarlog) ~= nil then
  2265. tolua.setpeer(self.togwarlog, nil)
  2266. end
  2267. self.togwarlog = nil
  2268. if tolua.getpeer(self.battleLogView) ~= nil then
  2269. tolua.setpeer(self.battleLogView, nil)
  2270. end
  2271. self.battleLogView = nil
  2272. if tolua.getpeer(self.battleRootNew) ~= nil then
  2273. tolua.setpeer(self.battleRootNew, nil)
  2274. end
  2275. self.battleRootNew = nil
  2276. if tolua.getpeer(self.btnAuto) ~= nil then
  2277. tolua.setpeer(self.btnAuto, nil)
  2278. end
  2279. self.btnAuto = nil
  2280. if tolua.getpeer(self.autoAnim) ~= nil then
  2281. tolua.setpeer(self.autoAnim, nil)
  2282. end
  2283. self.autoAnim = nil
  2284. if tolua.getpeer(self.OnlineRewards) ~= nil then
  2285. tolua.setpeer(self.OnlineRewards, nil)
  2286. end
  2287. self.OnlineRewards = nil
  2288. if tolua.getpeer(self.btnOnlineRewards) ~= nil then
  2289. tolua.setpeer(self.btnOnlineRewards, nil)
  2290. end
  2291. self.btnOnlineRewards = nil
  2292. if tolua.getpeer(self.ReceiveGo) ~= nil then
  2293. tolua.setpeer(self.ReceiveGo, nil)
  2294. end
  2295. self.ReceiveGo = nil
  2296. if tolua.getpeer(self.RewardBoxBtn) ~= nil then
  2297. tolua.setpeer(self.RewardBoxBtn, nil)
  2298. end
  2299. self.RewardBoxBtn = nil
  2300. if tolua.getpeer(self.RewardTimeLbl) ~= nil then
  2301. tolua.setpeer(self.RewardTimeLbl, nil)
  2302. end
  2303. self.RewardTimeLbl = nil
  2304. if tolua.getpeer(self.rewardPoint) ~= nil then
  2305. tolua.setpeer(self.rewardPoint, nil)
  2306. end
  2307. self.rewardPoint = nil
  2308. if tolua.getpeer(self.equipment) ~= nil then
  2309. tolua.setpeer(self.equipment, nil)
  2310. end
  2311. self.equipment = nil
  2312. if tolua.getpeer(self.lvUp) ~= nil then
  2313. tolua.setpeer(self.lvUp, nil)
  2314. end
  2315. self.lvUp = nil
  2316. if tolua.getpeer(self.skillTree) ~= nil then
  2317. tolua.setpeer(self.skillTree, nil)
  2318. end
  2319. self.skillTree = nil
  2320. if tolua.getpeer(self.refine) ~= nil then
  2321. tolua.setpeer(self.refine, nil)
  2322. end
  2323. self.refine = nil
  2324. if tolua.getpeer(self.redPoint) ~= nil then
  2325. tolua.setpeer(self.redPoint, nil)
  2326. end
  2327. self.redPoint = nil
  2328. if tolua.getpeer(self.new) ~= nil then
  2329. tolua.setpeer(self.new, nil)
  2330. end
  2331. self.new = nil
  2332. if tolua.getpeer(self.btnStageGoal) ~= nil then
  2333. tolua.setpeer(self.btnStageGoal, nil)
  2334. end
  2335. self.btnStageGoal = nil
  2336. if tolua.getpeer(self.point5) ~= nil then
  2337. tolua.setpeer(self.point5, nil)
  2338. end
  2339. self.point5 = nil
  2340. if tolua.getpeer(self.point4) ~= nil then
  2341. tolua.setpeer(self.point4, nil)
  2342. end
  2343. self.point4 = nil
  2344. if tolua.getpeer(self.point3) ~= nil then
  2345. tolua.setpeer(self.point3, nil)
  2346. end
  2347. self.point3 = nil
  2348. if tolua.getpeer(self.point2) ~= nil then
  2349. tolua.setpeer(self.point2, nil)
  2350. end
  2351. self.point2 = nil
  2352. if tolua.getpeer(self.point1) ~= nil then
  2353. tolua.setpeer(self.point1, nil)
  2354. end
  2355. self.point1 = nil
  2356. if tolua.getpeer(self.stageGoalNtf) ~= nil then
  2357. tolua.setpeer(self.stageGoalNtf, nil)
  2358. end
  2359. self.stageGoalNtf = nil
  2360. if tolua.getpeer(self.btnChallenge) ~= nil then
  2361. tolua.setpeer(self.btnChallenge, nil)
  2362. end
  2363. self.btnChallenge = nil
  2364. if tolua.getpeer(self.btnBossAnimator) ~= nil then
  2365. tolua.setpeer(self.btnBossAnimator, nil)
  2366. end
  2367. self.btnBossAnimator = nil
  2368. if tolua.getpeer(self.btnChallenge_lock) ~= nil then
  2369. tolua.setpeer(self.btnChallenge_lock, nil)
  2370. end
  2371. self.btnChallenge_lock = nil
  2372. if tolua.getpeer(self.btnReceive_lock) ~= nil then
  2373. tolua.setpeer(self.btnReceive_lock, nil)
  2374. end
  2375. self.btnReceive_lock = nil
  2376. if tolua.getpeer(self.btnChat) ~= nil then
  2377. tolua.setpeer(self.btnChat, nil)
  2378. end
  2379. self.btnChat = nil
  2380. if tolua.getpeer(self.btnRedEnvelope) ~= nil then
  2381. tolua.setpeer(self.btnRedEnvelope, nil)
  2382. end
  2383. self.btnRedEnvelope = nil
  2384. if tolua.getpeer(self.windowEnvelope) ~= nil then
  2385. tolua.setpeer(self.windowEnvelope, nil)
  2386. end
  2387. self.windowEnvelope = nil
  2388. if tolua.getpeer(self.difficultBtn) ~= nil then
  2389. tolua.setpeer(self.difficultBtn, nil)
  2390. end
  2391. self.difficultBtn = nil
  2392. if tolua.getpeer(self.mapLevelModes) ~= nil then
  2393. tolua.setpeer(self.mapLevelModes, nil)
  2394. end
  2395. self.mapLevelModes = nil
  2396. if tolua.getpeer(self.bgBtn) ~= nil then
  2397. tolua.setpeer(self.bgBtn, nil)
  2398. end
  2399. self.bgBtn = nil
  2400. if tolua.getpeer(self.modeNode) ~= nil then
  2401. tolua.setpeer(self.modeNode, nil)
  2402. end
  2403. self.modeNode = nil
  2404. if tolua.getpeer(self.content) ~= nil then
  2405. tolua.setpeer(self.content, nil)
  2406. end
  2407. self.content = nil
  2408. if tolua.getpeer(self.centerNode) ~= nil then
  2409. tolua.setpeer(self.centerNode, nil)
  2410. end
  2411. self.centerNode = nil
  2412. if tolua.getpeer(self.newOpen) ~= nil then
  2413. tolua.setpeer(self.newOpen, nil)
  2414. end
  2415. self.newOpen = nil
  2416. if tolua.getpeer(self.particle) ~= nil then
  2417. tolua.setpeer(self.particle, nil)
  2418. end
  2419. self.particle = nil
  2420. if tolua.getpeer(self.bossWarning) ~= nil then
  2421. tolua.setpeer(self.bossWarning, nil)
  2422. end
  2423. self.bossWarning = nil
  2424. if tolua.getpeer(self.rageBoxGo) ~= nil then
  2425. tolua.setpeer(self.rageBoxGo, nil)
  2426. end
  2427. self.rageBoxGo = nil
  2428. if tolua.getpeer(self.rageNum1) ~= nil then
  2429. tolua.setpeer(self.rageNum1, nil)
  2430. end
  2431. self.rageNum1 = nil
  2432. if tolua.getpeer(self.rageNum2) ~= nil then
  2433. tolua.setpeer(self.rageNum2, nil)
  2434. end
  2435. self.rageNum2 = nil
  2436. if tolua.getpeer(self.battleFailGo) ~= nil then
  2437. tolua.setpeer(self.battleFailGo, nil)
  2438. end
  2439. self.battleFailGo = nil
  2440. if tolua.getpeer(self.funcbg) ~= nil then
  2441. tolua.setpeer(self.funcbg, nil)
  2442. end
  2443. self.funcbg = nil
  2444. if tolua.getpeer(self.headOrder) ~= nil then
  2445. tolua.setpeer(self.headOrder, nil)
  2446. end
  2447. self.headOrder = nil
  2448. if tolua.getpeer(self.btnPrivateChat) ~= nil then
  2449. tolua.setpeer(self.btnPrivateChat, nil)
  2450. end
  2451. self.btnPrivateChat = nil
  2452. if tolua.getpeer(self.btnInfor) ~= nil then
  2453. tolua.setpeer(self.btnInfor, nil)
  2454. end
  2455. self.btnInfor = nil
  2456. if tolua.getpeer(self.btnAddFriend) ~= nil then
  2457. tolua.setpeer(self.btnAddFriend, nil)
  2458. end
  2459. self.btnAddFriend = nil
  2460. if tolua.getpeer(self.btnBlock) ~= nil then
  2461. tolua.setpeer(self.btnBlock, nil)
  2462. end
  2463. self.btnBlock = nil
  2464. self.transform = nil
  2465. self.gameObject = nil
  2466. self.inited = false
  2467. end
  2468. return UIBattleView