UIBattleView_Generate.lua 77 KB

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