UINewbieBattleView_Generate.lua 99 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946
  1. ---@class UINewbieBattle__Generate_playerNode6_playerName
  2. ---@field public gameObject UnityEngine.GameObject
  3. ---@field public text UnityEngine.UI.Text
  4. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillCD
  5. ---@field public gameObject UnityEngine.GameObject
  6. ---@field public text TMPro.TextMeshProUGUI
  7. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillProgress
  8. ---@field public gameObject UnityEngine.GameObject
  9. ---@field public image UnityEngine.UI.Image
  10. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillIcon
  11. ---@field public gameObject UnityEngine.GameObject
  12. ---@field public image UnityEngine.UI.Image
  13. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode
  14. ---@field public gameObject UnityEngine.GameObject
  15. ---@field public skillIcon UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillIcon
  16. ---@field public skillProgress UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillProgress
  17. ---@field public skillCD UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode_skillCD
  18. ---@field public keepNode UnityEngine.GameObject
  19. ---@field public waitNode UnityEngine.GameObject
  20. ---@field public extraNode UnityEngine.GameObject
  21. ---@field public forbidNode UnityEngine.GameObject
  22. ---@field public releaseNode UnityEngine.GameObject
  23. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_barNode_sp
  24. ---@field public gameObject UnityEngine.GameObject
  25. ---@field public image UnityEngine.UI.Image
  26. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_barNode_hp
  27. ---@field public gameObject UnityEngine.GameObject
  28. ---@field public image UnityEngine.UI.Image
  29. ---@field public switchSprite SwitchSprite
  30. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_barNode
  31. ---@field public gameObject UnityEngine.GameObject
  32. ---@field public hp UINewbieBattle__Generate_playerNode6_headBoxItem_barNode_hp
  33. ---@field public sp UINewbieBattle__Generate_playerNode6_headBoxItem_barNode_sp
  34. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_levelText
  35. ---@field public gameObject UnityEngine.GameObject
  36. ---@field public text UnityEngine.UI.Text
  37. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_jobIcon
  38. ---@field public gameObject UnityEngine.GameObject
  39. ---@field public image UnityEngine.UI.Image
  40. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_head
  41. ---@field public gameObject UnityEngine.GameObject
  42. ---@field public image UnityEngine.UI.Image
  43. ---@field public button UnityEngine.UI.Button
  44. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem_headNode
  45. ---@field public gameObject UnityEngine.GameObject
  46. ---@field public head UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_head
  47. ---@field public jobIcon UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_jobIcon
  48. ---@field public levelText UINewbieBattle__Generate_playerNode6_headBoxItem_headNode_levelText
  49. ---@class UINewbieBattle__Generate_playerNode6_headBoxItem
  50. ---@field public gameObject UnityEngine.GameObject
  51. ---@field public animator UnityEngine.Animator
  52. ---@field public headNode UINewbieBattle__Generate_playerNode6_headBoxItem_headNode
  53. ---@field public barNode UINewbieBattle__Generate_playerNode6_headBoxItem_barNode
  54. ---@field public skillNode UINewbieBattle__Generate_playerNode6_headBoxItem_skillNode
  55. ---@field public deadNode UnityEngine.GameObject
  56. ---@class UINewbieBattle__Generate_playerNode6
  57. ---@field public gameObject UnityEngine.GameObject
  58. ---@field public headBoxItem UINewbieBattle__Generate_playerNode6_headBoxItem
  59. ---@field public playerName UINewbieBattle__Generate_playerNode6_playerName
  60. ---@class UINewbieBattle__Generate_playerNode5_playerName
  61. ---@field public gameObject UnityEngine.GameObject
  62. ---@field public text UnityEngine.UI.Text
  63. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillCD
  64. ---@field public gameObject UnityEngine.GameObject
  65. ---@field public text TMPro.TextMeshProUGUI
  66. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillProgress
  67. ---@field public gameObject UnityEngine.GameObject
  68. ---@field public image UnityEngine.UI.Image
  69. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillIcon
  70. ---@field public gameObject UnityEngine.GameObject
  71. ---@field public image UnityEngine.UI.Image
  72. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode
  73. ---@field public gameObject UnityEngine.GameObject
  74. ---@field public skillIcon UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillIcon
  75. ---@field public skillProgress UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillProgress
  76. ---@field public skillCD UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode_skillCD
  77. ---@field public keepNode UnityEngine.GameObject
  78. ---@field public waitNode UnityEngine.GameObject
  79. ---@field public extraNode UnityEngine.GameObject
  80. ---@field public forbidNode UnityEngine.GameObject
  81. ---@field public releaseNode UnityEngine.GameObject
  82. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_barNode_sp
  83. ---@field public gameObject UnityEngine.GameObject
  84. ---@field public image UnityEngine.UI.Image
  85. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_barNode_hp
  86. ---@field public gameObject UnityEngine.GameObject
  87. ---@field public image UnityEngine.UI.Image
  88. ---@field public switchSprite SwitchSprite
  89. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_barNode
  90. ---@field public gameObject UnityEngine.GameObject
  91. ---@field public hp UINewbieBattle__Generate_playerNode5_headBoxItem_barNode_hp
  92. ---@field public sp UINewbieBattle__Generate_playerNode5_headBoxItem_barNode_sp
  93. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_levelText
  94. ---@field public gameObject UnityEngine.GameObject
  95. ---@field public text UnityEngine.UI.Text
  96. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_jobIcon
  97. ---@field public gameObject UnityEngine.GameObject
  98. ---@field public image UnityEngine.UI.Image
  99. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_head
  100. ---@field public gameObject UnityEngine.GameObject
  101. ---@field public image UnityEngine.UI.Image
  102. ---@field public button UnityEngine.UI.Button
  103. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem_headNode
  104. ---@field public gameObject UnityEngine.GameObject
  105. ---@field public head UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_head
  106. ---@field public jobIcon UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_jobIcon
  107. ---@field public levelText UINewbieBattle__Generate_playerNode5_headBoxItem_headNode_levelText
  108. ---@class UINewbieBattle__Generate_playerNode5_headBoxItem
  109. ---@field public gameObject UnityEngine.GameObject
  110. ---@field public animator UnityEngine.Animator
  111. ---@field public headNode UINewbieBattle__Generate_playerNode5_headBoxItem_headNode
  112. ---@field public barNode UINewbieBattle__Generate_playerNode5_headBoxItem_barNode
  113. ---@field public skillNode UINewbieBattle__Generate_playerNode5_headBoxItem_skillNode
  114. ---@field public deadNode UnityEngine.GameObject
  115. ---@class UINewbieBattle__Generate_playerNode5
  116. ---@field public gameObject UnityEngine.GameObject
  117. ---@field public headBoxItem UINewbieBattle__Generate_playerNode5_headBoxItem
  118. ---@field public playerName UINewbieBattle__Generate_playerNode5_playerName
  119. ---@class UINewbieBattle__Generate_playerNode4_playerName
  120. ---@field public gameObject UnityEngine.GameObject
  121. ---@field public text UnityEngine.UI.Text
  122. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillCD
  123. ---@field public gameObject UnityEngine.GameObject
  124. ---@field public text TMPro.TextMeshProUGUI
  125. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillProgress
  126. ---@field public gameObject UnityEngine.GameObject
  127. ---@field public image UnityEngine.UI.Image
  128. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillIcon
  129. ---@field public gameObject UnityEngine.GameObject
  130. ---@field public image UnityEngine.UI.Image
  131. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode
  132. ---@field public gameObject UnityEngine.GameObject
  133. ---@field public skillIcon UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillIcon
  134. ---@field public skillProgress UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillProgress
  135. ---@field public skillCD UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode_skillCD
  136. ---@field public keepNode UnityEngine.GameObject
  137. ---@field public waitNode UnityEngine.GameObject
  138. ---@field public extraNode UnityEngine.GameObject
  139. ---@field public forbidNode UnityEngine.GameObject
  140. ---@field public releaseNode UnityEngine.GameObject
  141. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_barNode_sp
  142. ---@field public gameObject UnityEngine.GameObject
  143. ---@field public image UnityEngine.UI.Image
  144. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_barNode_hp
  145. ---@field public gameObject UnityEngine.GameObject
  146. ---@field public image UnityEngine.UI.Image
  147. ---@field public switchSprite SwitchSprite
  148. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_barNode
  149. ---@field public gameObject UnityEngine.GameObject
  150. ---@field public hp UINewbieBattle__Generate_playerNode4_headBoxItem_barNode_hp
  151. ---@field public sp UINewbieBattle__Generate_playerNode4_headBoxItem_barNode_sp
  152. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_levelText
  153. ---@field public gameObject UnityEngine.GameObject
  154. ---@field public text UnityEngine.UI.Text
  155. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_jobIcon
  156. ---@field public gameObject UnityEngine.GameObject
  157. ---@field public image UnityEngine.UI.Image
  158. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_head
  159. ---@field public gameObject UnityEngine.GameObject
  160. ---@field public image UnityEngine.UI.Image
  161. ---@field public button UnityEngine.UI.Button
  162. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem_headNode
  163. ---@field public gameObject UnityEngine.GameObject
  164. ---@field public head UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_head
  165. ---@field public jobIcon UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_jobIcon
  166. ---@field public levelText UINewbieBattle__Generate_playerNode4_headBoxItem_headNode_levelText
  167. ---@class UINewbieBattle__Generate_playerNode4_headBoxItem
  168. ---@field public gameObject UnityEngine.GameObject
  169. ---@field public animator UnityEngine.Animator
  170. ---@field public headNode UINewbieBattle__Generate_playerNode4_headBoxItem_headNode
  171. ---@field public barNode UINewbieBattle__Generate_playerNode4_headBoxItem_barNode
  172. ---@field public skillNode UINewbieBattle__Generate_playerNode4_headBoxItem_skillNode
  173. ---@field public deadNode UnityEngine.GameObject
  174. ---@class UINewbieBattle__Generate_playerNode4
  175. ---@field public gameObject UnityEngine.GameObject
  176. ---@field public headBoxItem UINewbieBattle__Generate_playerNode4_headBoxItem
  177. ---@field public playerName UINewbieBattle__Generate_playerNode4_playerName
  178. ---@class UINewbieBattle__Generate_playerNode3_playerName
  179. ---@field public gameObject UnityEngine.GameObject
  180. ---@field public text UnityEngine.UI.Text
  181. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillCD
  182. ---@field public gameObject UnityEngine.GameObject
  183. ---@field public text TMPro.TextMeshProUGUI
  184. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillProgress
  185. ---@field public gameObject UnityEngine.GameObject
  186. ---@field public image UnityEngine.UI.Image
  187. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillIcon
  188. ---@field public gameObject UnityEngine.GameObject
  189. ---@field public image UnityEngine.UI.Image
  190. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode
  191. ---@field public gameObject UnityEngine.GameObject
  192. ---@field public skillIcon UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillIcon
  193. ---@field public skillProgress UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillProgress
  194. ---@field public skillCD UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode_skillCD
  195. ---@field public keepNode UnityEngine.GameObject
  196. ---@field public waitNode UnityEngine.GameObject
  197. ---@field public extraNode UnityEngine.GameObject
  198. ---@field public forbidNode UnityEngine.GameObject
  199. ---@field public releaseNode UnityEngine.GameObject
  200. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_barNode_sp
  201. ---@field public gameObject UnityEngine.GameObject
  202. ---@field public image UnityEngine.UI.Image
  203. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_barNode_hp
  204. ---@field public gameObject UnityEngine.GameObject
  205. ---@field public image UnityEngine.UI.Image
  206. ---@field public switchSprite SwitchSprite
  207. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_barNode
  208. ---@field public gameObject UnityEngine.GameObject
  209. ---@field public hp UINewbieBattle__Generate_playerNode3_headBoxItem_barNode_hp
  210. ---@field public sp UINewbieBattle__Generate_playerNode3_headBoxItem_barNode_sp
  211. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_levelText
  212. ---@field public gameObject UnityEngine.GameObject
  213. ---@field public text UnityEngine.UI.Text
  214. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_jobIcon
  215. ---@field public gameObject UnityEngine.GameObject
  216. ---@field public image UnityEngine.UI.Image
  217. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_head
  218. ---@field public gameObject UnityEngine.GameObject
  219. ---@field public image UnityEngine.UI.Image
  220. ---@field public button UnityEngine.UI.Button
  221. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem_headNode
  222. ---@field public gameObject UnityEngine.GameObject
  223. ---@field public head UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_head
  224. ---@field public jobIcon UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_jobIcon
  225. ---@field public levelText UINewbieBattle__Generate_playerNode3_headBoxItem_headNode_levelText
  226. ---@class UINewbieBattle__Generate_playerNode3_headBoxItem
  227. ---@field public gameObject UnityEngine.GameObject
  228. ---@field public animator UnityEngine.Animator
  229. ---@field public headNode UINewbieBattle__Generate_playerNode3_headBoxItem_headNode
  230. ---@field public barNode UINewbieBattle__Generate_playerNode3_headBoxItem_barNode
  231. ---@field public skillNode UINewbieBattle__Generate_playerNode3_headBoxItem_skillNode
  232. ---@field public deadNode UnityEngine.GameObject
  233. ---@class UINewbieBattle__Generate_playerNode3
  234. ---@field public gameObject UnityEngine.GameObject
  235. ---@field public headBoxItem UINewbieBattle__Generate_playerNode3_headBoxItem
  236. ---@field public playerName UINewbieBattle__Generate_playerNode3_playerName
  237. ---@class UINewbieBattle__Generate_playerNode2_playerName
  238. ---@field public gameObject UnityEngine.GameObject
  239. ---@field public text UnityEngine.UI.Text
  240. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillCD
  241. ---@field public gameObject UnityEngine.GameObject
  242. ---@field public text TMPro.TextMeshProUGUI
  243. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillProgress
  244. ---@field public gameObject UnityEngine.GameObject
  245. ---@field public image UnityEngine.UI.Image
  246. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillIcon
  247. ---@field public gameObject UnityEngine.GameObject
  248. ---@field public image UnityEngine.UI.Image
  249. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode
  250. ---@field public gameObject UnityEngine.GameObject
  251. ---@field public skillIcon UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillIcon
  252. ---@field public skillProgress UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillProgress
  253. ---@field public skillCD UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode_skillCD
  254. ---@field public keepNode UnityEngine.GameObject
  255. ---@field public waitNode UnityEngine.GameObject
  256. ---@field public extraNode UnityEngine.GameObject
  257. ---@field public forbidNode UnityEngine.GameObject
  258. ---@field public releaseNode UnityEngine.GameObject
  259. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_barNode_sp
  260. ---@field public gameObject UnityEngine.GameObject
  261. ---@field public image UnityEngine.UI.Image
  262. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_barNode_hp
  263. ---@field public gameObject UnityEngine.GameObject
  264. ---@field public image UnityEngine.UI.Image
  265. ---@field public switchSprite SwitchSprite
  266. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_barNode
  267. ---@field public gameObject UnityEngine.GameObject
  268. ---@field public hp UINewbieBattle__Generate_playerNode2_headBoxItem_barNode_hp
  269. ---@field public sp UINewbieBattle__Generate_playerNode2_headBoxItem_barNode_sp
  270. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_levelText
  271. ---@field public gameObject UnityEngine.GameObject
  272. ---@field public text UnityEngine.UI.Text
  273. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_jobIcon
  274. ---@field public gameObject UnityEngine.GameObject
  275. ---@field public image UnityEngine.UI.Image
  276. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_head
  277. ---@field public gameObject UnityEngine.GameObject
  278. ---@field public image UnityEngine.UI.Image
  279. ---@field public button UnityEngine.UI.Button
  280. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem_headNode
  281. ---@field public gameObject UnityEngine.GameObject
  282. ---@field public head UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_head
  283. ---@field public jobIcon UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_jobIcon
  284. ---@field public levelText UINewbieBattle__Generate_playerNode2_headBoxItem_headNode_levelText
  285. ---@class UINewbieBattle__Generate_playerNode2_headBoxItem
  286. ---@field public gameObject UnityEngine.GameObject
  287. ---@field public animator UnityEngine.Animator
  288. ---@field public headNode UINewbieBattle__Generate_playerNode2_headBoxItem_headNode
  289. ---@field public barNode UINewbieBattle__Generate_playerNode2_headBoxItem_barNode
  290. ---@field public skillNode UINewbieBattle__Generate_playerNode2_headBoxItem_skillNode
  291. ---@field public deadNode UnityEngine.GameObject
  292. ---@class UINewbieBattle__Generate_playerNode2
  293. ---@field public gameObject UnityEngine.GameObject
  294. ---@field public headBoxItem UINewbieBattle__Generate_playerNode2_headBoxItem
  295. ---@field public playerName UINewbieBattle__Generate_playerNode2_playerName
  296. ---@class UINewbieBattle__Generate_playerNode1_playerName
  297. ---@field public gameObject UnityEngine.GameObject
  298. ---@field public text UnityEngine.UI.Text
  299. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillCD
  300. ---@field public gameObject UnityEngine.GameObject
  301. ---@field public text TMPro.TextMeshProUGUI
  302. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillProgress
  303. ---@field public gameObject UnityEngine.GameObject
  304. ---@field public image UnityEngine.UI.Image
  305. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillIcon
  306. ---@field public gameObject UnityEngine.GameObject
  307. ---@field public image UnityEngine.UI.Image
  308. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode
  309. ---@field public gameObject UnityEngine.GameObject
  310. ---@field public skillIcon UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillIcon
  311. ---@field public skillProgress UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillProgress
  312. ---@field public skillCD UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode_skillCD
  313. ---@field public keepNode UnityEngine.GameObject
  314. ---@field public waitNode UnityEngine.GameObject
  315. ---@field public extraNode UnityEngine.GameObject
  316. ---@field public forbidNode UnityEngine.GameObject
  317. ---@field public releaseNode UnityEngine.GameObject
  318. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_barNode_sp
  319. ---@field public gameObject UnityEngine.GameObject
  320. ---@field public image UnityEngine.UI.Image
  321. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_barNode_hp
  322. ---@field public gameObject UnityEngine.GameObject
  323. ---@field public image UnityEngine.UI.Image
  324. ---@field public switchSprite SwitchSprite
  325. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_barNode
  326. ---@field public gameObject UnityEngine.GameObject
  327. ---@field public hp UINewbieBattle__Generate_playerNode1_headBoxItem_barNode_hp
  328. ---@field public sp UINewbieBattle__Generate_playerNode1_headBoxItem_barNode_sp
  329. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_levelText
  330. ---@field public gameObject UnityEngine.GameObject
  331. ---@field public text UnityEngine.UI.Text
  332. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_jobIcon
  333. ---@field public gameObject UnityEngine.GameObject
  334. ---@field public image UnityEngine.UI.Image
  335. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_head
  336. ---@field public gameObject UnityEngine.GameObject
  337. ---@field public image UnityEngine.UI.Image
  338. ---@field public button UnityEngine.UI.Button
  339. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem_headNode
  340. ---@field public gameObject UnityEngine.GameObject
  341. ---@field public head UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_head
  342. ---@field public jobIcon UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_jobIcon
  343. ---@field public levelText UINewbieBattle__Generate_playerNode1_headBoxItem_headNode_levelText
  344. ---@class UINewbieBattle__Generate_playerNode1_headBoxItem
  345. ---@field public gameObject UnityEngine.GameObject
  346. ---@field public animator UnityEngine.Animator
  347. ---@field public headNode UINewbieBattle__Generate_playerNode1_headBoxItem_headNode
  348. ---@field public barNode UINewbieBattle__Generate_playerNode1_headBoxItem_barNode
  349. ---@field public skillNode UINewbieBattle__Generate_playerNode1_headBoxItem_skillNode
  350. ---@field public deadNode UnityEngine.GameObject
  351. ---@class UINewbieBattle__Generate_playerNode1
  352. ---@field public gameObject UnityEngine.GameObject
  353. ---@field public headBoxItem UINewbieBattle__Generate_playerNode1_headBoxItem
  354. ---@field public playerName UINewbieBattle__Generate_playerNode1_playerName
  355. ---@class UINewbieBattle__Generate_skipBtn
  356. ---@field public gameObject UnityEngine.GameObject
  357. ---@field public button UnityEngine.UI.Button
  358. ---@class UINewbieBattle__Generate_bossDebuffTemp
  359. ---@field public gameObject UnityEngine.GameObject
  360. ---@field public image UnityEngine.UI.Image
  361. ---@class UINewbieBattle__Generate_bossBuffTemp
  362. ---@field public gameObject UnityEngine.GameObject
  363. ---@field public image UnityEngine.UI.Image
  364. ---@class UINewbieBattle__Generate_bossSkillCD
  365. ---@field public gameObject UnityEngine.GameObject
  366. ---@field public text TMPro.TextMeshProUGUI
  367. ---@class UINewbieBattle__Generate_bossSkillProgress
  368. ---@field public gameObject UnityEngine.GameObject
  369. ---@field public image UnityEngine.UI.Image
  370. ---@class UINewbieBattle__Generate_bossSkillIcon
  371. ---@field public gameObject UnityEngine.GameObject
  372. ---@field public image UnityEngine.UI.Image
  373. ---@class UINewbieBattle__Generate_bossSkillNode
  374. ---@field public gameObject UnityEngine.GameObject
  375. ---@field public animator UnityEngine.Animator
  376. ---@field public keepNode UnityEngine.GameObject
  377. ---@field public waitNode UnityEngine.GameObject
  378. ---@field public extraNode UnityEngine.GameObject
  379. ---@field public forbidNode UnityEngine.GameObject
  380. ---@field public releaseNode UnityEngine.GameObject
  381. ---@class UINewbieBattle__Generate_bossName
  382. ---@field public gameObject UnityEngine.GameObject
  383. ---@field public text UnityEngine.UI.Text
  384. ---@class UINewbieBattle__Generate_bossBlood
  385. ---@field public gameObject UnityEngine.GameObject
  386. ---@field public image UnityEngine.UI.Image
  387. ---@class UINewbieBattle__Generate_bossBloodBack
  388. ---@field public gameObject UnityEngine.GameObject
  389. ---@field public image UnityEngine.UI.Image
  390. ---@class UINewbieBattle__Generate_bossBlood2
  391. ---@field public gameObject UnityEngine.GameObject
  392. ---@field public image UnityEngine.UI.Image
  393. ---@class UINewbieBattle__Generate_bossBloodNode
  394. ---@field public gameObject UnityEngine.GameObject
  395. ---@field public animator UnityEngine.Animator
  396. ---@class UINewbieBattle__Generate
  397. ---@field private gameObject UnityEngine.GameObject
  398. ---@field private transform UnityEngine.Transform
  399. ---@field private bossBloodNode UINewbieBattle__Generate_bossBloodNode
  400. ---@field private bossBlood2 UINewbieBattle__Generate_bossBlood2
  401. ---@field private bossBloodBack UINewbieBattle__Generate_bossBloodBack
  402. ---@field private bossBlood UINewbieBattle__Generate_bossBlood
  403. ---@field private bossName UINewbieBattle__Generate_bossName
  404. ---@field private bossSkillNode UINewbieBattle__Generate_bossSkillNode
  405. ---@field private bossSkillIcon UINewbieBattle__Generate_bossSkillIcon
  406. ---@field private bossSkillProgress UINewbieBattle__Generate_bossSkillProgress
  407. ---@field private bossSkillCD UINewbieBattle__Generate_bossSkillCD
  408. ---@field private bossBuffTemp UINewbieBattle__Generate_bossBuffTemp
  409. ---@field private bossDebuffTemp UINewbieBattle__Generate_bossDebuffTemp
  410. ---@field private skipBtn UINewbieBattle__Generate_skipBtn
  411. ---@field private playerNode1 UINewbieBattle__Generate_playerNode1
  412. ---@field private playerNode2 UINewbieBattle__Generate_playerNode2
  413. ---@field private playerNode3 UINewbieBattle__Generate_playerNode3
  414. ---@field private playerNode4 UINewbieBattle__Generate_playerNode4
  415. ---@field private playerNode5 UINewbieBattle__Generate_playerNode5
  416. ---@field private playerNode6 UINewbieBattle__Generate_playerNode6
  417. ---@field private whiteShow UnityEngine.GameObject
  418. local UINewbieBattleView = class("UINewbieBattleView", require("UIViewBase"))
  419. function UINewbieBattleView:ctor()
  420. end
  421. ---@private
  422. function UINewbieBattleView:SetActive(result)
  423. self.gameObject:SetActive(result)
  424. end
  425. ---@private
  426. function UINewbieBattleView:InitGenerate(Root, data)
  427. self.transform = Root
  428. self.inited = true
  429. if self.super.Init then
  430. self.super.Init(self)
  431. end
  432. local tmp
  433. self:InitGenerate__1(Root,data)
  434. self:InitGenerate__2(Root,data)
  435. self:InitGenerate__3(Root,data)
  436. self:InitGenerate__4(Root,data)
  437. self:InitGenerate__5(Root,data)
  438. self:InitGenerate__6(Root,data)
  439. self:InitGenerate__7(Root,data)
  440. self:InitGenerate__8(Root,data)
  441. self:InitGenerate__9(Root,data)
  442. self:InitGenerate__10(Root,data)
  443. self:InitGenerate__11(Root,data)
  444. self:InitGenerate__12(Root,data)
  445. self:InitGenerate__13(Root,data)
  446. self:InitGenerate__14(Root,data)
  447. self:InitGenerate__15(Root,data)
  448. self:InitGenerate__16(Root,data)
  449. self:InitGenerate__17(Root,data)
  450. self:InitGenerate__18(Root,data)
  451. self:InitGenerate__19(Root,data)
  452. self:InitGenerate__20(Root,data)
  453. self:InitGenerate__21(Root,data)
  454. self:InitGenerate__22(Root,data)
  455. self:InitGenerate__23(Root,data)
  456. self:InitGenerate__24(Root,data)
  457. self:InitGenerate__25(Root,data)
  458. self:InitGenerate__26(Root,data)
  459. self:InitGenerate__27(Root,data)
  460. self:InitGenerate__28(Root,data)
  461. self:InitGenerate__29(Root,data)
  462. self:InitGenerate__30(Root,data)
  463. self:InitGenerate__31(Root,data)
  464. self:InitGenerate__32(Root,data)
  465. self:InitGenerate__33(Root,data)
  466. self:InitGenerate__34(Root,data)
  467. self:InitGenerate__35(Root,data)
  468. self:InitGenerate__36(Root,data)
  469. self:InitGenerate__37(Root,data)
  470. self:InitGenerate__38(Root,data)
  471. self:InitGenerate__39(Root,data)
  472. self:InitGenerate__40(Root,data)
  473. self:InitGenerate__41(Root,data)
  474. self:InitGenerate__42(Root,data)
  475. self:InitGenerate__43(Root,data)
  476. self:InitGenerate__44(Root,data)
  477. self:InitGenerate__45(Root,data)
  478. self:InitGenerate__46(Root,data)
  479. self:InitGenerate__47(Root,data)
  480. self:InitGenerate__48(Root,data)
  481. self:InitGenerate__49(Root,data)
  482. self:InitGenerate__50(Root,data)
  483. self:InitGenerate__51(Root,data)
  484. self:InitGenerate__52(Root,data)
  485. self:InitGenerate__53(Root,data)
  486. self:InitGenerate__54(Root,data)
  487. self:InitGenerate__55(Root,data)
  488. self:InitGenerate__56(Root,data)
  489. self:InitGenerate__57(Root,data)
  490. self:InitGenerate__58(Root,data)
  491. self:InitGenerate__59(Root,data)
  492. self:InitGenerate__60(Root,data)
  493. self:InitGenerate__61(Root,data)
  494. self:InitGenerate__62(Root,data)
  495. self:InitGenerate__63(Root,data)
  496. self:InitGenerate__64(Root,data)
  497. self:InitGenerate__65(Root,data)
  498. self:InitGenerate__66(Root,data)
  499. self:InitGenerate__67(Root,data)
  500. self:InitGenerate__68(Root,data)
  501. self:InitGenerate__69(Root,data)
  502. self:InitGenerate__70(Root,data)
  503. self:InitGenerate__71(Root,data)
  504. self:InitGenerate__72(Root,data)
  505. self:InitGenerate__73(Root,data)
  506. self:InitGenerate__74(Root,data)
  507. self:InitGenerate__75(Root,data)
  508. self:InitGenerate__76(Root,data)
  509. self:InitGenerate__77(Root,data)
  510. self:InitGenerate__78(Root,data)
  511. self:InitGenerate__79(Root,data)
  512. self:InitGenerate__80(Root,data)
  513. self:InitGenerate__81(Root,data)
  514. self:InitGenerate__82(Root,data)
  515. self:InitGenerate__83(Root,data)
  516. self:InitGenerate__84(Root,data)
  517. self:InitGenerate__85(Root,data)
  518. self:InitGenerate__86(Root,data)
  519. self:InitGenerate__87(Root,data)
  520. self:InitGenerate__88(Root,data)
  521. self:InitGenerate__89(Root,data)
  522. self:InitGenerate__90(Root,data)
  523. self:InitGenerate__91(Root,data)
  524. self:InitGenerate__92(Root,data)
  525. self:InitGenerate__93(Root,data)
  526. self:InitGenerate__94(Root,data)
  527. self:InitGenerate__95(Root,data)
  528. self:InitGenerate__96(Root,data)
  529. self:InitGenerate__97(Root,data)
  530. self:InitGenerate__98(Root,data)
  531. self:InitGenerate__99(Root,data)
  532. self:InitGenerate__100(Root,data)
  533. self:InitGenerate__101(Root,data)
  534. self:InitGenerate__102(Root,data)
  535. self:InitGenerate__103(Root,data)
  536. self:InitGenerate__104(Root,data)
  537. self:InitGenerate__105(Root,data)
  538. self:InitGenerate__106(Root,data)
  539. self:InitGenerate__107(Root,data)
  540. self:InitGenerate__108(Root,data)
  541. self:InitGenerate__109(Root,data)
  542. self:InitGenerate__110(Root,data)
  543. self:InitGenerate__111(Root,data)
  544. self:InitGenerate__112(Root,data)
  545. self:InitGenerate__113(Root,data)
  546. self:InitGenerate__114(Root,data)
  547. self:InitGenerate__115(Root,data)
  548. self:InitGenerate__116(Root,data)
  549. self:InitGenerate__117(Root,data)
  550. self:InitGenerate__118(Root,data)
  551. self:InitGenerate__119(Root,data)
  552. self:InitGenerate__120(Root,data)
  553. self:InitGenerate__121(Root,data)
  554. self:InitGenerate__122(Root,data)
  555. self:InitGenerate__123(Root,data)
  556. self:InitGenerate__124(Root,data)
  557. self:InitGenerate__125(Root,data)
  558. self:InitGenerate__126(Root,data)
  559. self:InitGenerate__127(Root,data)
  560. self:InitGenerate__128(Root,data)
  561. self:InitGenerate__129(Root,data)
  562. self:InitGenerate__130(Root,data)
  563. self:InitGenerate__131(Root,data)
  564. self:InitGenerate__132(Root,data)
  565. self:InitGenerate__133(Root,data)
  566. self:InitGenerate__134(Root,data)
  567. self:InitGenerate__135(Root,data)
  568. self:InitGenerate__136(Root,data)
  569. self:InitGenerate__137(Root,data)
  570. self:InitGenerate__138(Root,data)
  571. end
  572. ---@private
  573. function UINewbieBattleView:InitGenerate__1(Root, data)
  574. --[[
  575. TopView/BossBlood
  576. --]]
  577. local tmp = Root:Find("TopView/BossBlood").gameObject
  578. if tolua.getpeer(tmp) == nil then
  579. tolua.setpeer(tmp, {})
  580. end
  581. self.bossBloodNode = tmp
  582. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  583. tmp.animator.logWarnings = false
  584. end
  585. ---@private
  586. function UINewbieBattleView:InitGenerate__2(Root, data)
  587. --[[
  588. TopView/BossBlood/Blood/BloodBar2
  589. --]]
  590. local tmp = Root:Find("TopView/BossBlood/Blood/BloodBar2").gameObject
  591. if tolua.getpeer(tmp) == nil then
  592. tolua.setpeer(tmp, {})
  593. end
  594. self.bossBlood2 = tmp
  595. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  596. end
  597. ---@private
  598. function UINewbieBattleView:InitGenerate__3(Root, data)
  599. --[[
  600. TopView/BossBlood/Blood/BloodBarBack
  601. --]]
  602. local tmp = Root:Find("TopView/BossBlood/Blood/BloodBarBack").gameObject
  603. if tolua.getpeer(tmp) == nil then
  604. tolua.setpeer(tmp, {})
  605. end
  606. self.bossBloodBack = tmp
  607. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  608. end
  609. ---@private
  610. function UINewbieBattleView:InitGenerate__4(Root, data)
  611. --[[
  612. TopView/BossBlood/Blood/BloodBar
  613. --]]
  614. local tmp = Root:Find("TopView/BossBlood/Blood/BloodBar").gameObject
  615. if tolua.getpeer(tmp) == nil then
  616. tolua.setpeer(tmp, {})
  617. end
  618. self.bossBlood = tmp
  619. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  620. end
  621. ---@private
  622. function UINewbieBattleView:InitGenerate__5(Root, data)
  623. --[[
  624. TopView/BossBlood/Blood/BossName/TextName
  625. --]]
  626. local tmp = Root:Find("TopView/BossBlood/Blood/BossName/TextName").gameObject
  627. if tolua.getpeer(tmp) == nil then
  628. tolua.setpeer(tmp, {})
  629. end
  630. self.bossName = tmp
  631. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  632. end
  633. ---@private
  634. function UINewbieBattleView:InitGenerate__6(Root, data)
  635. --[[
  636. TopView/BossBlood/BossSkill
  637. --]]
  638. local tmp = Root:Find("TopView/BossBlood/BossSkill").gameObject
  639. if tolua.getpeer(tmp) == nil then
  640. tolua.setpeer(tmp, {})
  641. end
  642. self.bossSkillNode = tmp
  643. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  644. tmp.animator.logWarnings = false
  645. end
  646. ---@private
  647. function UINewbieBattleView:InitGenerate__7(Root, data)
  648. --[[
  649. TopView/BossBlood/BossSkill/Icon
  650. --]]
  651. local tmp = Root:Find("TopView/BossBlood/BossSkill/Icon").gameObject
  652. if tolua.getpeer(tmp) == nil then
  653. tolua.setpeer(tmp, {})
  654. end
  655. self.bossSkillIcon = tmp
  656. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  657. end
  658. ---@private
  659. function UINewbieBattleView:InitGenerate__8(Root, data)
  660. --[[
  661. TopView/BossBlood/BossSkill/Mask
  662. --]]
  663. local tmp = Root:Find("TopView/BossBlood/BossSkill/Mask").gameObject
  664. if tolua.getpeer(tmp) == nil then
  665. tolua.setpeer(tmp, {})
  666. end
  667. self.bossSkillProgress = tmp
  668. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  669. end
  670. ---@private
  671. function UINewbieBattleView:InitGenerate__9(Root, data)
  672. --[[
  673. TopView/BossBlood/BossSkill/CD
  674. --]]
  675. local tmp = Root:Find("TopView/BossBlood/BossSkill/CD").gameObject
  676. if tolua.getpeer(tmp) == nil then
  677. tolua.setpeer(tmp, {})
  678. end
  679. self.bossSkillCD = tmp
  680. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  681. end
  682. ---@private
  683. function UINewbieBattleView:InitGenerate__10(Root, data)
  684. --[[
  685. TopView/BossBlood/BossSkill/Keep
  686. --]]
  687. local tmp = Root:Find("TopView/BossBlood/BossSkill/Keep").gameObject
  688. if tolua.getpeer(tmp) == nil then
  689. tolua.setpeer(tmp, {})
  690. end
  691. self.bossSkillNode.keepNode = tmp
  692. end
  693. ---@private
  694. function UINewbieBattleView:InitGenerate__11(Root, data)
  695. --[[
  696. TopView/BossBlood/BossSkill/Wait
  697. --]]
  698. local tmp = Root:Find("TopView/BossBlood/BossSkill/Wait").gameObject
  699. if tolua.getpeer(tmp) == nil then
  700. tolua.setpeer(tmp, {})
  701. end
  702. self.bossSkillNode.waitNode = tmp
  703. end
  704. ---@private
  705. function UINewbieBattleView:InitGenerate__12(Root, data)
  706. --[[
  707. TopView/BossBlood/BossSkill/Extra
  708. --]]
  709. local tmp = Root:Find("TopView/BossBlood/BossSkill/Extra").gameObject
  710. if tolua.getpeer(tmp) == nil then
  711. tolua.setpeer(tmp, {})
  712. end
  713. self.bossSkillNode.extraNode = tmp
  714. end
  715. ---@private
  716. function UINewbieBattleView:InitGenerate__13(Root, data)
  717. --[[
  718. TopView/BossBlood/BossSkill/Forbidden
  719. --]]
  720. local tmp = Root:Find("TopView/BossBlood/BossSkill/Forbidden").gameObject
  721. if tolua.getpeer(tmp) == nil then
  722. tolua.setpeer(tmp, {})
  723. end
  724. self.bossSkillNode.forbidNode = tmp
  725. end
  726. ---@private
  727. function UINewbieBattleView:InitGenerate__14(Root, data)
  728. --[[
  729. TopView/BossBlood/BossSkill/Release
  730. --]]
  731. local tmp = Root:Find("TopView/BossBlood/BossSkill/Release").gameObject
  732. if tolua.getpeer(tmp) == nil then
  733. tolua.setpeer(tmp, {})
  734. end
  735. self.bossSkillNode.releaseNode = tmp
  736. end
  737. ---@private
  738. function UINewbieBattleView:InitGenerate__15(Root, data)
  739. --[[
  740. TopView/BossBlood/BossBuff/Buff/Image
  741. --]]
  742. local tmp = Root:Find("TopView/BossBlood/BossBuff/Buff/Image").gameObject
  743. if tolua.getpeer(tmp) == nil then
  744. tolua.setpeer(tmp, {})
  745. end
  746. self.bossBuffTemp = tmp
  747. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  748. end
  749. ---@private
  750. function UINewbieBattleView:InitGenerate__16(Root, data)
  751. --[[
  752. TopView/BossBlood/BossBuff/DeBuff/Image
  753. --]]
  754. local tmp = Root:Find("TopView/BossBlood/BossBuff/DeBuff/Image").gameObject
  755. if tolua.getpeer(tmp) == nil then
  756. tolua.setpeer(tmp, {})
  757. end
  758. self.bossDebuffTemp = tmp
  759. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  760. end
  761. ---@private
  762. function UINewbieBattleView:InitGenerate__17(Root, data)
  763. --[[
  764. TopView/SkipBtn
  765. --]]
  766. local tmp = Root:Find("TopView/SkipBtn").gameObject
  767. if tolua.getpeer(tmp) == nil then
  768. tolua.setpeer(tmp, {})
  769. end
  770. self.skipBtn = tmp
  771. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  772. end
  773. ---@private
  774. function UINewbieBattleView:InitGenerate__18(Root, data)
  775. --[[
  776. BottomView/HeadsBox/Player1
  777. --]]
  778. local tmp = Root:Find("BottomView/HeadsBox/Player1").gameObject
  779. if tolua.getpeer(tmp) == nil then
  780. tolua.setpeer(tmp, {})
  781. end
  782. self.playerNode1 = tmp
  783. end
  784. ---@private
  785. function UINewbieBattleView:InitGenerate__19(Root, data)
  786. --[[
  787. BottomView/HeadsBox/Player1/Position/HeadBoxItem
  788. --]]
  789. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem").gameObject
  790. if tolua.getpeer(tmp) == nil then
  791. tolua.setpeer(tmp, {})
  792. end
  793. self.playerNode1.headBoxItem = tmp
  794. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  795. tmp.animator.logWarnings = false
  796. end
  797. ---@private
  798. function UINewbieBattleView:InitGenerate__20(Root, data)
  799. --[[
  800. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head
  801. --]]
  802. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head").gameObject
  803. if tolua.getpeer(tmp) == nil then
  804. tolua.setpeer(tmp, {})
  805. end
  806. self.playerNode1.headBoxItem.headNode = tmp
  807. end
  808. ---@private
  809. function UINewbieBattleView:InitGenerate__21(Root, data)
  810. --[[
  811. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/Head
  812. --]]
  813. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/Head").gameObject
  814. if tolua.getpeer(tmp) == nil then
  815. tolua.setpeer(tmp, {})
  816. end
  817. self.playerNode1.headBoxItem.headNode.head = tmp
  818. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  819. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  820. end
  821. ---@private
  822. function UINewbieBattleView:InitGenerate__22(Root, data)
  823. --[[
  824. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/JobIcon
  825. --]]
  826. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/JobIcon").gameObject
  827. if tolua.getpeer(tmp) == nil then
  828. tolua.setpeer(tmp, {})
  829. end
  830. self.playerNode1.headBoxItem.headNode.jobIcon = tmp
  831. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  832. end
  833. ---@private
  834. function UINewbieBattleView:InitGenerate__23(Root, data)
  835. --[[
  836. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/TextLV
  837. --]]
  838. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Head/TextLV").gameObject
  839. if tolua.getpeer(tmp) == nil then
  840. tolua.setpeer(tmp, {})
  841. end
  842. self.playerNode1.headBoxItem.headNode.levelText = tmp
  843. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  844. end
  845. ---@private
  846. function UINewbieBattleView:InitGenerate__24(Root, data)
  847. --[[
  848. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar
  849. --]]
  850. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar").gameObject
  851. if tolua.getpeer(tmp) == nil then
  852. tolua.setpeer(tmp, {})
  853. end
  854. self.playerNode1.headBoxItem.barNode = tmp
  855. end
  856. ---@private
  857. function UINewbieBattleView:InitGenerate__25(Root, data)
  858. --[[
  859. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar/HP/bloodImg
  860. --]]
  861. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
  862. if tolua.getpeer(tmp) == nil then
  863. tolua.setpeer(tmp, {})
  864. end
  865. self.playerNode1.headBoxItem.barNode.hp = tmp
  866. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  867. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  868. end
  869. ---@private
  870. function UINewbieBattleView:InitGenerate__26(Root, data)
  871. --[[
  872. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar/Sp/spImg
  873. --]]
  874. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
  875. if tolua.getpeer(tmp) == nil then
  876. tolua.setpeer(tmp, {})
  877. end
  878. self.playerNode1.headBoxItem.barNode.sp = tmp
  879. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  880. end
  881. ---@private
  882. function UINewbieBattleView:InitGenerate__27(Root, data)
  883. --[[
  884. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill
  885. --]]
  886. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill").gameObject
  887. if tolua.getpeer(tmp) == nil then
  888. tolua.setpeer(tmp, {})
  889. end
  890. self.playerNode1.headBoxItem.skillNode = tmp
  891. end
  892. ---@private
  893. function UINewbieBattleView:InitGenerate__28(Root, data)
  894. --[[
  895. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Icon
  896. --]]
  897. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Icon").gameObject
  898. if tolua.getpeer(tmp) == nil then
  899. tolua.setpeer(tmp, {})
  900. end
  901. self.playerNode1.headBoxItem.skillNode.skillIcon = tmp
  902. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  903. end
  904. ---@private
  905. function UINewbieBattleView:InitGenerate__29(Root, data)
  906. --[[
  907. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Mask
  908. --]]
  909. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Mask").gameObject
  910. if tolua.getpeer(tmp) == nil then
  911. tolua.setpeer(tmp, {})
  912. end
  913. self.playerNode1.headBoxItem.skillNode.skillProgress = tmp
  914. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  915. end
  916. ---@private
  917. function UINewbieBattleView:InitGenerate__30(Root, data)
  918. --[[
  919. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/CD
  920. --]]
  921. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/CD").gameObject
  922. if tolua.getpeer(tmp) == nil then
  923. tolua.setpeer(tmp, {})
  924. end
  925. self.playerNode1.headBoxItem.skillNode.skillCD = tmp
  926. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  927. end
  928. ---@private
  929. function UINewbieBattleView:InitGenerate__31(Root, data)
  930. --[[
  931. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Keep
  932. --]]
  933. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Keep").gameObject
  934. if tolua.getpeer(tmp) == nil then
  935. tolua.setpeer(tmp, {})
  936. end
  937. self.playerNode1.headBoxItem.skillNode.keepNode = tmp
  938. end
  939. ---@private
  940. function UINewbieBattleView:InitGenerate__32(Root, data)
  941. --[[
  942. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Wait
  943. --]]
  944. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Wait").gameObject
  945. if tolua.getpeer(tmp) == nil then
  946. tolua.setpeer(tmp, {})
  947. end
  948. self.playerNode1.headBoxItem.skillNode.waitNode = tmp
  949. end
  950. ---@private
  951. function UINewbieBattleView:InitGenerate__33(Root, data)
  952. --[[
  953. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Extra
  954. --]]
  955. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Extra").gameObject
  956. if tolua.getpeer(tmp) == nil then
  957. tolua.setpeer(tmp, {})
  958. end
  959. self.playerNode1.headBoxItem.skillNode.extraNode = tmp
  960. end
  961. ---@private
  962. function UINewbieBattleView:InitGenerate__34(Root, data)
  963. --[[
  964. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Forbidden
  965. --]]
  966. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Forbidden").gameObject
  967. if tolua.getpeer(tmp) == nil then
  968. tolua.setpeer(tmp, {})
  969. end
  970. self.playerNode1.headBoxItem.skillNode.forbidNode = tmp
  971. end
  972. ---@private
  973. function UINewbieBattleView:InitGenerate__35(Root, data)
  974. --[[
  975. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Release
  976. --]]
  977. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Skill/Release").gameObject
  978. if tolua.getpeer(tmp) == nil then
  979. tolua.setpeer(tmp, {})
  980. end
  981. self.playerNode1.headBoxItem.skillNode.releaseNode = tmp
  982. end
  983. ---@private
  984. function UINewbieBattleView:InitGenerate__36(Root, data)
  985. --[[
  986. BottomView/HeadsBox/Player1/Position/HeadBoxItem/Dead
  987. --]]
  988. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/HeadBoxItem/Dead").gameObject
  989. if tolua.getpeer(tmp) == nil then
  990. tolua.setpeer(tmp, {})
  991. end
  992. self.playerNode1.headBoxItem.deadNode = tmp
  993. end
  994. ---@private
  995. function UINewbieBattleView:InitGenerate__37(Root, data)
  996. --[[
  997. BottomView/HeadsBox/Player1/Position/PlayerName
  998. --]]
  999. local tmp = Root:Find("BottomView/HeadsBox/Player1/Position/PlayerName").gameObject
  1000. if tolua.getpeer(tmp) == nil then
  1001. tolua.setpeer(tmp, {})
  1002. end
  1003. self.playerNode1.playerName = tmp
  1004. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1005. end
  1006. ---@private
  1007. function UINewbieBattleView:InitGenerate__38(Root, data)
  1008. --[[
  1009. BottomView/HeadsBox/Player2
  1010. --]]
  1011. local tmp = Root:Find("BottomView/HeadsBox/Player2").gameObject
  1012. if tolua.getpeer(tmp) == nil then
  1013. tolua.setpeer(tmp, {})
  1014. end
  1015. self.playerNode2 = tmp
  1016. end
  1017. ---@private
  1018. function UINewbieBattleView:InitGenerate__39(Root, data)
  1019. --[[
  1020. BottomView/HeadsBox/Player2/Position/HeadBoxItem
  1021. --]]
  1022. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem").gameObject
  1023. if tolua.getpeer(tmp) == nil then
  1024. tolua.setpeer(tmp, {})
  1025. end
  1026. self.playerNode2.headBoxItem = tmp
  1027. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1028. tmp.animator.logWarnings = false
  1029. end
  1030. ---@private
  1031. function UINewbieBattleView:InitGenerate__40(Root, data)
  1032. --[[
  1033. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head
  1034. --]]
  1035. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head").gameObject
  1036. if tolua.getpeer(tmp) == nil then
  1037. tolua.setpeer(tmp, {})
  1038. end
  1039. self.playerNode2.headBoxItem.headNode = tmp
  1040. end
  1041. ---@private
  1042. function UINewbieBattleView:InitGenerate__41(Root, data)
  1043. --[[
  1044. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/Head
  1045. --]]
  1046. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/Head").gameObject
  1047. if tolua.getpeer(tmp) == nil then
  1048. tolua.setpeer(tmp, {})
  1049. end
  1050. self.playerNode2.headBoxItem.headNode.head = tmp
  1051. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1052. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1053. end
  1054. ---@private
  1055. function UINewbieBattleView:InitGenerate__42(Root, data)
  1056. --[[
  1057. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/JobIcon
  1058. --]]
  1059. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/JobIcon").gameObject
  1060. if tolua.getpeer(tmp) == nil then
  1061. tolua.setpeer(tmp, {})
  1062. end
  1063. self.playerNode2.headBoxItem.headNode.jobIcon = tmp
  1064. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1065. end
  1066. ---@private
  1067. function UINewbieBattleView:InitGenerate__43(Root, data)
  1068. --[[
  1069. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/TextLV
  1070. --]]
  1071. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Head/TextLV").gameObject
  1072. if tolua.getpeer(tmp) == nil then
  1073. tolua.setpeer(tmp, {})
  1074. end
  1075. self.playerNode2.headBoxItem.headNode.levelText = tmp
  1076. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1077. end
  1078. ---@private
  1079. function UINewbieBattleView:InitGenerate__44(Root, data)
  1080. --[[
  1081. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar
  1082. --]]
  1083. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar").gameObject
  1084. if tolua.getpeer(tmp) == nil then
  1085. tolua.setpeer(tmp, {})
  1086. end
  1087. self.playerNode2.headBoxItem.barNode = tmp
  1088. end
  1089. ---@private
  1090. function UINewbieBattleView:InitGenerate__45(Root, data)
  1091. --[[
  1092. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar/HP/bloodImg
  1093. --]]
  1094. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
  1095. if tolua.getpeer(tmp) == nil then
  1096. tolua.setpeer(tmp, {})
  1097. end
  1098. self.playerNode2.headBoxItem.barNode.hp = tmp
  1099. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1100. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  1101. end
  1102. ---@private
  1103. function UINewbieBattleView:InitGenerate__46(Root, data)
  1104. --[[
  1105. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar/Sp/spImg
  1106. --]]
  1107. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
  1108. if tolua.getpeer(tmp) == nil then
  1109. tolua.setpeer(tmp, {})
  1110. end
  1111. self.playerNode2.headBoxItem.barNode.sp = tmp
  1112. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1113. end
  1114. ---@private
  1115. function UINewbieBattleView:InitGenerate__47(Root, data)
  1116. --[[
  1117. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill
  1118. --]]
  1119. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill").gameObject
  1120. if tolua.getpeer(tmp) == nil then
  1121. tolua.setpeer(tmp, {})
  1122. end
  1123. self.playerNode2.headBoxItem.skillNode = tmp
  1124. end
  1125. ---@private
  1126. function UINewbieBattleView:InitGenerate__48(Root, data)
  1127. --[[
  1128. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Icon
  1129. --]]
  1130. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Icon").gameObject
  1131. if tolua.getpeer(tmp) == nil then
  1132. tolua.setpeer(tmp, {})
  1133. end
  1134. self.playerNode2.headBoxItem.skillNode.skillIcon = tmp
  1135. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1136. end
  1137. ---@private
  1138. function UINewbieBattleView:InitGenerate__49(Root, data)
  1139. --[[
  1140. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Mask
  1141. --]]
  1142. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Mask").gameObject
  1143. if tolua.getpeer(tmp) == nil then
  1144. tolua.setpeer(tmp, {})
  1145. end
  1146. self.playerNode2.headBoxItem.skillNode.skillProgress = tmp
  1147. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1148. end
  1149. ---@private
  1150. function UINewbieBattleView:InitGenerate__50(Root, data)
  1151. --[[
  1152. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/CD
  1153. --]]
  1154. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/CD").gameObject
  1155. if tolua.getpeer(tmp) == nil then
  1156. tolua.setpeer(tmp, {})
  1157. end
  1158. self.playerNode2.headBoxItem.skillNode.skillCD = tmp
  1159. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1160. end
  1161. ---@private
  1162. function UINewbieBattleView:InitGenerate__51(Root, data)
  1163. --[[
  1164. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Keep
  1165. --]]
  1166. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Keep").gameObject
  1167. if tolua.getpeer(tmp) == nil then
  1168. tolua.setpeer(tmp, {})
  1169. end
  1170. self.playerNode2.headBoxItem.skillNode.keepNode = tmp
  1171. end
  1172. ---@private
  1173. function UINewbieBattleView:InitGenerate__52(Root, data)
  1174. --[[
  1175. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Wait
  1176. --]]
  1177. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Wait").gameObject
  1178. if tolua.getpeer(tmp) == nil then
  1179. tolua.setpeer(tmp, {})
  1180. end
  1181. self.playerNode2.headBoxItem.skillNode.waitNode = tmp
  1182. end
  1183. ---@private
  1184. function UINewbieBattleView:InitGenerate__53(Root, data)
  1185. --[[
  1186. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Extra
  1187. --]]
  1188. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Extra").gameObject
  1189. if tolua.getpeer(tmp) == nil then
  1190. tolua.setpeer(tmp, {})
  1191. end
  1192. self.playerNode2.headBoxItem.skillNode.extraNode = tmp
  1193. end
  1194. ---@private
  1195. function UINewbieBattleView:InitGenerate__54(Root, data)
  1196. --[[
  1197. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Forbidden
  1198. --]]
  1199. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Forbidden").gameObject
  1200. if tolua.getpeer(tmp) == nil then
  1201. tolua.setpeer(tmp, {})
  1202. end
  1203. self.playerNode2.headBoxItem.skillNode.forbidNode = tmp
  1204. end
  1205. ---@private
  1206. function UINewbieBattleView:InitGenerate__55(Root, data)
  1207. --[[
  1208. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Release
  1209. --]]
  1210. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Skill/Release").gameObject
  1211. if tolua.getpeer(tmp) == nil then
  1212. tolua.setpeer(tmp, {})
  1213. end
  1214. self.playerNode2.headBoxItem.skillNode.releaseNode = tmp
  1215. end
  1216. ---@private
  1217. function UINewbieBattleView:InitGenerate__56(Root, data)
  1218. --[[
  1219. BottomView/HeadsBox/Player2/Position/HeadBoxItem/Dead
  1220. --]]
  1221. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/HeadBoxItem/Dead").gameObject
  1222. if tolua.getpeer(tmp) == nil then
  1223. tolua.setpeer(tmp, {})
  1224. end
  1225. self.playerNode2.headBoxItem.deadNode = tmp
  1226. end
  1227. ---@private
  1228. function UINewbieBattleView:InitGenerate__57(Root, data)
  1229. --[[
  1230. BottomView/HeadsBox/Player2/Position/PlayerName
  1231. --]]
  1232. local tmp = Root:Find("BottomView/HeadsBox/Player2/Position/PlayerName").gameObject
  1233. if tolua.getpeer(tmp) == nil then
  1234. tolua.setpeer(tmp, {})
  1235. end
  1236. self.playerNode2.playerName = tmp
  1237. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1238. end
  1239. ---@private
  1240. function UINewbieBattleView:InitGenerate__58(Root, data)
  1241. --[[
  1242. BottomView/HeadsBox/Player3
  1243. --]]
  1244. local tmp = Root:Find("BottomView/HeadsBox/Player3").gameObject
  1245. if tolua.getpeer(tmp) == nil then
  1246. tolua.setpeer(tmp, {})
  1247. end
  1248. self.playerNode3 = tmp
  1249. end
  1250. ---@private
  1251. function UINewbieBattleView:InitGenerate__59(Root, data)
  1252. --[[
  1253. BottomView/HeadsBox/Player3/Position/HeadBoxItem
  1254. --]]
  1255. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem").gameObject
  1256. if tolua.getpeer(tmp) == nil then
  1257. tolua.setpeer(tmp, {})
  1258. end
  1259. self.playerNode3.headBoxItem = tmp
  1260. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1261. tmp.animator.logWarnings = false
  1262. end
  1263. ---@private
  1264. function UINewbieBattleView:InitGenerate__60(Root, data)
  1265. --[[
  1266. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head
  1267. --]]
  1268. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head").gameObject
  1269. if tolua.getpeer(tmp) == nil then
  1270. tolua.setpeer(tmp, {})
  1271. end
  1272. self.playerNode3.headBoxItem.headNode = tmp
  1273. end
  1274. ---@private
  1275. function UINewbieBattleView:InitGenerate__61(Root, data)
  1276. --[[
  1277. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/Head
  1278. --]]
  1279. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/Head").gameObject
  1280. if tolua.getpeer(tmp) == nil then
  1281. tolua.setpeer(tmp, {})
  1282. end
  1283. self.playerNode3.headBoxItem.headNode.head = tmp
  1284. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1285. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1286. end
  1287. ---@private
  1288. function UINewbieBattleView:InitGenerate__62(Root, data)
  1289. --[[
  1290. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/JobIcon
  1291. --]]
  1292. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/JobIcon").gameObject
  1293. if tolua.getpeer(tmp) == nil then
  1294. tolua.setpeer(tmp, {})
  1295. end
  1296. self.playerNode3.headBoxItem.headNode.jobIcon = tmp
  1297. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1298. end
  1299. ---@private
  1300. function UINewbieBattleView:InitGenerate__63(Root, data)
  1301. --[[
  1302. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/TextLV
  1303. --]]
  1304. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Head/TextLV").gameObject
  1305. if tolua.getpeer(tmp) == nil then
  1306. tolua.setpeer(tmp, {})
  1307. end
  1308. self.playerNode3.headBoxItem.headNode.levelText = tmp
  1309. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1310. end
  1311. ---@private
  1312. function UINewbieBattleView:InitGenerate__64(Root, data)
  1313. --[[
  1314. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar
  1315. --]]
  1316. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar").gameObject
  1317. if tolua.getpeer(tmp) == nil then
  1318. tolua.setpeer(tmp, {})
  1319. end
  1320. self.playerNode3.headBoxItem.barNode = tmp
  1321. end
  1322. ---@private
  1323. function UINewbieBattleView:InitGenerate__65(Root, data)
  1324. --[[
  1325. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar/HP/bloodImg
  1326. --]]
  1327. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
  1328. if tolua.getpeer(tmp) == nil then
  1329. tolua.setpeer(tmp, {})
  1330. end
  1331. self.playerNode3.headBoxItem.barNode.hp = tmp
  1332. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1333. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  1334. end
  1335. ---@private
  1336. function UINewbieBattleView:InitGenerate__66(Root, data)
  1337. --[[
  1338. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar/Sp/spImg
  1339. --]]
  1340. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
  1341. if tolua.getpeer(tmp) == nil then
  1342. tolua.setpeer(tmp, {})
  1343. end
  1344. self.playerNode3.headBoxItem.barNode.sp = tmp
  1345. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1346. end
  1347. ---@private
  1348. function UINewbieBattleView:InitGenerate__67(Root, data)
  1349. --[[
  1350. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill
  1351. --]]
  1352. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill").gameObject
  1353. if tolua.getpeer(tmp) == nil then
  1354. tolua.setpeer(tmp, {})
  1355. end
  1356. self.playerNode3.headBoxItem.skillNode = tmp
  1357. end
  1358. ---@private
  1359. function UINewbieBattleView:InitGenerate__68(Root, data)
  1360. --[[
  1361. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Icon
  1362. --]]
  1363. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Icon").gameObject
  1364. if tolua.getpeer(tmp) == nil then
  1365. tolua.setpeer(tmp, {})
  1366. end
  1367. self.playerNode3.headBoxItem.skillNode.skillIcon = tmp
  1368. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1369. end
  1370. ---@private
  1371. function UINewbieBattleView:InitGenerate__69(Root, data)
  1372. --[[
  1373. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Mask
  1374. --]]
  1375. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Mask").gameObject
  1376. if tolua.getpeer(tmp) == nil then
  1377. tolua.setpeer(tmp, {})
  1378. end
  1379. self.playerNode3.headBoxItem.skillNode.skillProgress = tmp
  1380. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1381. end
  1382. ---@private
  1383. function UINewbieBattleView:InitGenerate__70(Root, data)
  1384. --[[
  1385. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/CD
  1386. --]]
  1387. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/CD").gameObject
  1388. if tolua.getpeer(tmp) == nil then
  1389. tolua.setpeer(tmp, {})
  1390. end
  1391. self.playerNode3.headBoxItem.skillNode.skillCD = tmp
  1392. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1393. end
  1394. ---@private
  1395. function UINewbieBattleView:InitGenerate__71(Root, data)
  1396. --[[
  1397. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Keep
  1398. --]]
  1399. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Keep").gameObject
  1400. if tolua.getpeer(tmp) == nil then
  1401. tolua.setpeer(tmp, {})
  1402. end
  1403. self.playerNode3.headBoxItem.skillNode.keepNode = tmp
  1404. end
  1405. ---@private
  1406. function UINewbieBattleView:InitGenerate__72(Root, data)
  1407. --[[
  1408. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Wait
  1409. --]]
  1410. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Wait").gameObject
  1411. if tolua.getpeer(tmp) == nil then
  1412. tolua.setpeer(tmp, {})
  1413. end
  1414. self.playerNode3.headBoxItem.skillNode.waitNode = tmp
  1415. end
  1416. ---@private
  1417. function UINewbieBattleView:InitGenerate__73(Root, data)
  1418. --[[
  1419. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Extra
  1420. --]]
  1421. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Extra").gameObject
  1422. if tolua.getpeer(tmp) == nil then
  1423. tolua.setpeer(tmp, {})
  1424. end
  1425. self.playerNode3.headBoxItem.skillNode.extraNode = tmp
  1426. end
  1427. ---@private
  1428. function UINewbieBattleView:InitGenerate__74(Root, data)
  1429. --[[
  1430. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Forbidden
  1431. --]]
  1432. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Forbidden").gameObject
  1433. if tolua.getpeer(tmp) == nil then
  1434. tolua.setpeer(tmp, {})
  1435. end
  1436. self.playerNode3.headBoxItem.skillNode.forbidNode = tmp
  1437. end
  1438. ---@private
  1439. function UINewbieBattleView:InitGenerate__75(Root, data)
  1440. --[[
  1441. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Release
  1442. --]]
  1443. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Skill/Release").gameObject
  1444. if tolua.getpeer(tmp) == nil then
  1445. tolua.setpeer(tmp, {})
  1446. end
  1447. self.playerNode3.headBoxItem.skillNode.releaseNode = tmp
  1448. end
  1449. ---@private
  1450. function UINewbieBattleView:InitGenerate__76(Root, data)
  1451. --[[
  1452. BottomView/HeadsBox/Player3/Position/HeadBoxItem/Dead
  1453. --]]
  1454. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/HeadBoxItem/Dead").gameObject
  1455. if tolua.getpeer(tmp) == nil then
  1456. tolua.setpeer(tmp, {})
  1457. end
  1458. self.playerNode3.headBoxItem.deadNode = tmp
  1459. end
  1460. ---@private
  1461. function UINewbieBattleView:InitGenerate__77(Root, data)
  1462. --[[
  1463. BottomView/HeadsBox/Player3/Position/PlayerName
  1464. --]]
  1465. local tmp = Root:Find("BottomView/HeadsBox/Player3/Position/PlayerName").gameObject
  1466. if tolua.getpeer(tmp) == nil then
  1467. tolua.setpeer(tmp, {})
  1468. end
  1469. self.playerNode3.playerName = tmp
  1470. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1471. end
  1472. ---@private
  1473. function UINewbieBattleView:InitGenerate__78(Root, data)
  1474. --[[
  1475. BottomView/HeadsBox/Player4
  1476. --]]
  1477. local tmp = Root:Find("BottomView/HeadsBox/Player4").gameObject
  1478. if tolua.getpeer(tmp) == nil then
  1479. tolua.setpeer(tmp, {})
  1480. end
  1481. self.playerNode4 = tmp
  1482. end
  1483. ---@private
  1484. function UINewbieBattleView:InitGenerate__79(Root, data)
  1485. --[[
  1486. BottomView/HeadsBox/Player4/Position/HeadBoxItem
  1487. --]]
  1488. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem").gameObject
  1489. if tolua.getpeer(tmp) == nil then
  1490. tolua.setpeer(tmp, {})
  1491. end
  1492. self.playerNode4.headBoxItem = tmp
  1493. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1494. tmp.animator.logWarnings = false
  1495. end
  1496. ---@private
  1497. function UINewbieBattleView:InitGenerate__80(Root, data)
  1498. --[[
  1499. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head
  1500. --]]
  1501. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head").gameObject
  1502. if tolua.getpeer(tmp) == nil then
  1503. tolua.setpeer(tmp, {})
  1504. end
  1505. self.playerNode4.headBoxItem.headNode = tmp
  1506. end
  1507. ---@private
  1508. function UINewbieBattleView:InitGenerate__81(Root, data)
  1509. --[[
  1510. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/Head
  1511. --]]
  1512. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/Head").gameObject
  1513. if tolua.getpeer(tmp) == nil then
  1514. tolua.setpeer(tmp, {})
  1515. end
  1516. self.playerNode4.headBoxItem.headNode.head = tmp
  1517. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1518. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1519. end
  1520. ---@private
  1521. function UINewbieBattleView:InitGenerate__82(Root, data)
  1522. --[[
  1523. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/JobIcon
  1524. --]]
  1525. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/JobIcon").gameObject
  1526. if tolua.getpeer(tmp) == nil then
  1527. tolua.setpeer(tmp, {})
  1528. end
  1529. self.playerNode4.headBoxItem.headNode.jobIcon = tmp
  1530. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1531. end
  1532. ---@private
  1533. function UINewbieBattleView:InitGenerate__83(Root, data)
  1534. --[[
  1535. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/TextLV
  1536. --]]
  1537. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Head/TextLV").gameObject
  1538. if tolua.getpeer(tmp) == nil then
  1539. tolua.setpeer(tmp, {})
  1540. end
  1541. self.playerNode4.headBoxItem.headNode.levelText = tmp
  1542. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1543. end
  1544. ---@private
  1545. function UINewbieBattleView:InitGenerate__84(Root, data)
  1546. --[[
  1547. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar
  1548. --]]
  1549. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar").gameObject
  1550. if tolua.getpeer(tmp) == nil then
  1551. tolua.setpeer(tmp, {})
  1552. end
  1553. self.playerNode4.headBoxItem.barNode = tmp
  1554. end
  1555. ---@private
  1556. function UINewbieBattleView:InitGenerate__85(Root, data)
  1557. --[[
  1558. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar/HP/bloodImg
  1559. --]]
  1560. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
  1561. if tolua.getpeer(tmp) == nil then
  1562. tolua.setpeer(tmp, {})
  1563. end
  1564. self.playerNode4.headBoxItem.barNode.hp = tmp
  1565. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1566. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  1567. end
  1568. ---@private
  1569. function UINewbieBattleView:InitGenerate__86(Root, data)
  1570. --[[
  1571. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar/Sp/spImg
  1572. --]]
  1573. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
  1574. if tolua.getpeer(tmp) == nil then
  1575. tolua.setpeer(tmp, {})
  1576. end
  1577. self.playerNode4.headBoxItem.barNode.sp = tmp
  1578. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1579. end
  1580. ---@private
  1581. function UINewbieBattleView:InitGenerate__87(Root, data)
  1582. --[[
  1583. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill
  1584. --]]
  1585. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill").gameObject
  1586. if tolua.getpeer(tmp) == nil then
  1587. tolua.setpeer(tmp, {})
  1588. end
  1589. self.playerNode4.headBoxItem.skillNode = tmp
  1590. end
  1591. ---@private
  1592. function UINewbieBattleView:InitGenerate__88(Root, data)
  1593. --[[
  1594. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Icon
  1595. --]]
  1596. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Icon").gameObject
  1597. if tolua.getpeer(tmp) == nil then
  1598. tolua.setpeer(tmp, {})
  1599. end
  1600. self.playerNode4.headBoxItem.skillNode.skillIcon = tmp
  1601. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1602. end
  1603. ---@private
  1604. function UINewbieBattleView:InitGenerate__89(Root, data)
  1605. --[[
  1606. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Mask
  1607. --]]
  1608. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Mask").gameObject
  1609. if tolua.getpeer(tmp) == nil then
  1610. tolua.setpeer(tmp, {})
  1611. end
  1612. self.playerNode4.headBoxItem.skillNode.skillProgress = tmp
  1613. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1614. end
  1615. ---@private
  1616. function UINewbieBattleView:InitGenerate__90(Root, data)
  1617. --[[
  1618. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/CD
  1619. --]]
  1620. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/CD").gameObject
  1621. if tolua.getpeer(tmp) == nil then
  1622. tolua.setpeer(tmp, {})
  1623. end
  1624. self.playerNode4.headBoxItem.skillNode.skillCD = tmp
  1625. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1626. end
  1627. ---@private
  1628. function UINewbieBattleView:InitGenerate__91(Root, data)
  1629. --[[
  1630. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Keep
  1631. --]]
  1632. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Keep").gameObject
  1633. if tolua.getpeer(tmp) == nil then
  1634. tolua.setpeer(tmp, {})
  1635. end
  1636. self.playerNode4.headBoxItem.skillNode.keepNode = tmp
  1637. end
  1638. ---@private
  1639. function UINewbieBattleView:InitGenerate__92(Root, data)
  1640. --[[
  1641. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Wait
  1642. --]]
  1643. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Wait").gameObject
  1644. if tolua.getpeer(tmp) == nil then
  1645. tolua.setpeer(tmp, {})
  1646. end
  1647. self.playerNode4.headBoxItem.skillNode.waitNode = tmp
  1648. end
  1649. ---@private
  1650. function UINewbieBattleView:InitGenerate__93(Root, data)
  1651. --[[
  1652. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Extra
  1653. --]]
  1654. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Extra").gameObject
  1655. if tolua.getpeer(tmp) == nil then
  1656. tolua.setpeer(tmp, {})
  1657. end
  1658. self.playerNode4.headBoxItem.skillNode.extraNode = tmp
  1659. end
  1660. ---@private
  1661. function UINewbieBattleView:InitGenerate__94(Root, data)
  1662. --[[
  1663. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Forbidden
  1664. --]]
  1665. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Forbidden").gameObject
  1666. if tolua.getpeer(tmp) == nil then
  1667. tolua.setpeer(tmp, {})
  1668. end
  1669. self.playerNode4.headBoxItem.skillNode.forbidNode = tmp
  1670. end
  1671. ---@private
  1672. function UINewbieBattleView:InitGenerate__95(Root, data)
  1673. --[[
  1674. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Release
  1675. --]]
  1676. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Skill/Release").gameObject
  1677. if tolua.getpeer(tmp) == nil then
  1678. tolua.setpeer(tmp, {})
  1679. end
  1680. self.playerNode4.headBoxItem.skillNode.releaseNode = tmp
  1681. end
  1682. ---@private
  1683. function UINewbieBattleView:InitGenerate__96(Root, data)
  1684. --[[
  1685. BottomView/HeadsBox/Player4/Position/HeadBoxItem/Dead
  1686. --]]
  1687. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/HeadBoxItem/Dead").gameObject
  1688. if tolua.getpeer(tmp) == nil then
  1689. tolua.setpeer(tmp, {})
  1690. end
  1691. self.playerNode4.headBoxItem.deadNode = tmp
  1692. end
  1693. ---@private
  1694. function UINewbieBattleView:InitGenerate__97(Root, data)
  1695. --[[
  1696. BottomView/HeadsBox/Player4/Position/PlayerName
  1697. --]]
  1698. local tmp = Root:Find("BottomView/HeadsBox/Player4/Position/PlayerName").gameObject
  1699. if tolua.getpeer(tmp) == nil then
  1700. tolua.setpeer(tmp, {})
  1701. end
  1702. self.playerNode4.playerName = tmp
  1703. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1704. end
  1705. ---@private
  1706. function UINewbieBattleView:InitGenerate__98(Root, data)
  1707. --[[
  1708. BottomView/HeadsBox/Player5
  1709. --]]
  1710. local tmp = Root:Find("BottomView/HeadsBox/Player5").gameObject
  1711. if tolua.getpeer(tmp) == nil then
  1712. tolua.setpeer(tmp, {})
  1713. end
  1714. self.playerNode5 = tmp
  1715. end
  1716. ---@private
  1717. function UINewbieBattleView:InitGenerate__99(Root, data)
  1718. --[[
  1719. BottomView/HeadsBox/Player5/Position/HeadBoxItem
  1720. --]]
  1721. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem").gameObject
  1722. if tolua.getpeer(tmp) == nil then
  1723. tolua.setpeer(tmp, {})
  1724. end
  1725. self.playerNode5.headBoxItem = tmp
  1726. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1727. tmp.animator.logWarnings = false
  1728. end
  1729. ---@private
  1730. function UINewbieBattleView:InitGenerate__100(Root, data)
  1731. --[[
  1732. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head
  1733. --]]
  1734. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head").gameObject
  1735. if tolua.getpeer(tmp) == nil then
  1736. tolua.setpeer(tmp, {})
  1737. end
  1738. self.playerNode5.headBoxItem.headNode = tmp
  1739. end
  1740. ---@private
  1741. function UINewbieBattleView:InitGenerate__101(Root, data)
  1742. --[[
  1743. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/Head
  1744. --]]
  1745. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/Head").gameObject
  1746. if tolua.getpeer(tmp) == nil then
  1747. tolua.setpeer(tmp, {})
  1748. end
  1749. self.playerNode5.headBoxItem.headNode.head = tmp
  1750. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1751. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1752. end
  1753. ---@private
  1754. function UINewbieBattleView:InitGenerate__102(Root, data)
  1755. --[[
  1756. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/JobIcon
  1757. --]]
  1758. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/JobIcon").gameObject
  1759. if tolua.getpeer(tmp) == nil then
  1760. tolua.setpeer(tmp, {})
  1761. end
  1762. self.playerNode5.headBoxItem.headNode.jobIcon = tmp
  1763. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1764. end
  1765. ---@private
  1766. function UINewbieBattleView:InitGenerate__103(Root, data)
  1767. --[[
  1768. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/TextLV
  1769. --]]
  1770. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Head/TextLV").gameObject
  1771. if tolua.getpeer(tmp) == nil then
  1772. tolua.setpeer(tmp, {})
  1773. end
  1774. self.playerNode5.headBoxItem.headNode.levelText = tmp
  1775. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1776. end
  1777. ---@private
  1778. function UINewbieBattleView:InitGenerate__104(Root, data)
  1779. --[[
  1780. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar
  1781. --]]
  1782. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar").gameObject
  1783. if tolua.getpeer(tmp) == nil then
  1784. tolua.setpeer(tmp, {})
  1785. end
  1786. self.playerNode5.headBoxItem.barNode = tmp
  1787. end
  1788. ---@private
  1789. function UINewbieBattleView:InitGenerate__105(Root, data)
  1790. --[[
  1791. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar/HP/bloodImg
  1792. --]]
  1793. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
  1794. if tolua.getpeer(tmp) == nil then
  1795. tolua.setpeer(tmp, {})
  1796. end
  1797. self.playerNode5.headBoxItem.barNode.hp = tmp
  1798. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1799. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  1800. end
  1801. ---@private
  1802. function UINewbieBattleView:InitGenerate__106(Root, data)
  1803. --[[
  1804. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar/Sp/spImg
  1805. --]]
  1806. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
  1807. if tolua.getpeer(tmp) == nil then
  1808. tolua.setpeer(tmp, {})
  1809. end
  1810. self.playerNode5.headBoxItem.barNode.sp = tmp
  1811. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1812. end
  1813. ---@private
  1814. function UINewbieBattleView:InitGenerate__107(Root, data)
  1815. --[[
  1816. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill
  1817. --]]
  1818. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill").gameObject
  1819. if tolua.getpeer(tmp) == nil then
  1820. tolua.setpeer(tmp, {})
  1821. end
  1822. self.playerNode5.headBoxItem.skillNode = tmp
  1823. end
  1824. ---@private
  1825. function UINewbieBattleView:InitGenerate__108(Root, data)
  1826. --[[
  1827. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Icon
  1828. --]]
  1829. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Icon").gameObject
  1830. if tolua.getpeer(tmp) == nil then
  1831. tolua.setpeer(tmp, {})
  1832. end
  1833. self.playerNode5.headBoxItem.skillNode.skillIcon = tmp
  1834. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1835. end
  1836. ---@private
  1837. function UINewbieBattleView:InitGenerate__109(Root, data)
  1838. --[[
  1839. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Mask
  1840. --]]
  1841. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Mask").gameObject
  1842. if tolua.getpeer(tmp) == nil then
  1843. tolua.setpeer(tmp, {})
  1844. end
  1845. self.playerNode5.headBoxItem.skillNode.skillProgress = tmp
  1846. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1847. end
  1848. ---@private
  1849. function UINewbieBattleView:InitGenerate__110(Root, data)
  1850. --[[
  1851. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/CD
  1852. --]]
  1853. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/CD").gameObject
  1854. if tolua.getpeer(tmp) == nil then
  1855. tolua.setpeer(tmp, {})
  1856. end
  1857. self.playerNode5.headBoxItem.skillNode.skillCD = tmp
  1858. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1859. end
  1860. ---@private
  1861. function UINewbieBattleView:InitGenerate__111(Root, data)
  1862. --[[
  1863. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Keep
  1864. --]]
  1865. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Keep").gameObject
  1866. if tolua.getpeer(tmp) == nil then
  1867. tolua.setpeer(tmp, {})
  1868. end
  1869. self.playerNode5.headBoxItem.skillNode.keepNode = tmp
  1870. end
  1871. ---@private
  1872. function UINewbieBattleView:InitGenerate__112(Root, data)
  1873. --[[
  1874. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Wait
  1875. --]]
  1876. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Wait").gameObject
  1877. if tolua.getpeer(tmp) == nil then
  1878. tolua.setpeer(tmp, {})
  1879. end
  1880. self.playerNode5.headBoxItem.skillNode.waitNode = tmp
  1881. end
  1882. ---@private
  1883. function UINewbieBattleView:InitGenerate__113(Root, data)
  1884. --[[
  1885. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Extra
  1886. --]]
  1887. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Extra").gameObject
  1888. if tolua.getpeer(tmp) == nil then
  1889. tolua.setpeer(tmp, {})
  1890. end
  1891. self.playerNode5.headBoxItem.skillNode.extraNode = tmp
  1892. end
  1893. ---@private
  1894. function UINewbieBattleView:InitGenerate__114(Root, data)
  1895. --[[
  1896. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Forbidden
  1897. --]]
  1898. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Forbidden").gameObject
  1899. if tolua.getpeer(tmp) == nil then
  1900. tolua.setpeer(tmp, {})
  1901. end
  1902. self.playerNode5.headBoxItem.skillNode.forbidNode = tmp
  1903. end
  1904. ---@private
  1905. function UINewbieBattleView:InitGenerate__115(Root, data)
  1906. --[[
  1907. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Release
  1908. --]]
  1909. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Skill/Release").gameObject
  1910. if tolua.getpeer(tmp) == nil then
  1911. tolua.setpeer(tmp, {})
  1912. end
  1913. self.playerNode5.headBoxItem.skillNode.releaseNode = tmp
  1914. end
  1915. ---@private
  1916. function UINewbieBattleView:InitGenerate__116(Root, data)
  1917. --[[
  1918. BottomView/HeadsBox/Player5/Position/HeadBoxItem/Dead
  1919. --]]
  1920. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/HeadBoxItem/Dead").gameObject
  1921. if tolua.getpeer(tmp) == nil then
  1922. tolua.setpeer(tmp, {})
  1923. end
  1924. self.playerNode5.headBoxItem.deadNode = tmp
  1925. end
  1926. ---@private
  1927. function UINewbieBattleView:InitGenerate__117(Root, data)
  1928. --[[
  1929. BottomView/HeadsBox/Player5/Position/PlayerName
  1930. --]]
  1931. local tmp = Root:Find("BottomView/HeadsBox/Player5/Position/PlayerName").gameObject
  1932. if tolua.getpeer(tmp) == nil then
  1933. tolua.setpeer(tmp, {})
  1934. end
  1935. self.playerNode5.playerName = tmp
  1936. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1937. end
  1938. ---@private
  1939. function UINewbieBattleView:InitGenerate__118(Root, data)
  1940. --[[
  1941. BottomView/HeadsBox/Player6
  1942. --]]
  1943. local tmp = Root:Find("BottomView/HeadsBox/Player6").gameObject
  1944. if tolua.getpeer(tmp) == nil then
  1945. tolua.setpeer(tmp, {})
  1946. end
  1947. self.playerNode6 = tmp
  1948. end
  1949. ---@private
  1950. function UINewbieBattleView:InitGenerate__119(Root, data)
  1951. --[[
  1952. BottomView/HeadsBox/Player6/Position/HeadBoxItem
  1953. --]]
  1954. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem").gameObject
  1955. if tolua.getpeer(tmp) == nil then
  1956. tolua.setpeer(tmp, {})
  1957. end
  1958. self.playerNode6.headBoxItem = tmp
  1959. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1960. tmp.animator.logWarnings = false
  1961. end
  1962. ---@private
  1963. function UINewbieBattleView:InitGenerate__120(Root, data)
  1964. --[[
  1965. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head
  1966. --]]
  1967. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head").gameObject
  1968. if tolua.getpeer(tmp) == nil then
  1969. tolua.setpeer(tmp, {})
  1970. end
  1971. self.playerNode6.headBoxItem.headNode = tmp
  1972. end
  1973. ---@private
  1974. function UINewbieBattleView:InitGenerate__121(Root, data)
  1975. --[[
  1976. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/Head
  1977. --]]
  1978. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/Head").gameObject
  1979. if tolua.getpeer(tmp) == nil then
  1980. tolua.setpeer(tmp, {})
  1981. end
  1982. self.playerNode6.headBoxItem.headNode.head = tmp
  1983. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1984. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1985. end
  1986. ---@private
  1987. function UINewbieBattleView:InitGenerate__122(Root, data)
  1988. --[[
  1989. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/JobIcon
  1990. --]]
  1991. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/JobIcon").gameObject
  1992. if tolua.getpeer(tmp) == nil then
  1993. tolua.setpeer(tmp, {})
  1994. end
  1995. self.playerNode6.headBoxItem.headNode.jobIcon = tmp
  1996. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  1997. end
  1998. ---@private
  1999. function UINewbieBattleView:InitGenerate__123(Root, data)
  2000. --[[
  2001. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/TextLV
  2002. --]]
  2003. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Head/TextLV").gameObject
  2004. if tolua.getpeer(tmp) == nil then
  2005. tolua.setpeer(tmp, {})
  2006. end
  2007. self.playerNode6.headBoxItem.headNode.levelText = tmp
  2008. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  2009. end
  2010. ---@private
  2011. function UINewbieBattleView:InitGenerate__124(Root, data)
  2012. --[[
  2013. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar
  2014. --]]
  2015. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar").gameObject
  2016. if tolua.getpeer(tmp) == nil then
  2017. tolua.setpeer(tmp, {})
  2018. end
  2019. self.playerNode6.headBoxItem.barNode = tmp
  2020. end
  2021. ---@private
  2022. function UINewbieBattleView:InitGenerate__125(Root, data)
  2023. --[[
  2024. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar/HP/bloodImg
  2025. --]]
  2026. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar/HP/bloodImg").gameObject
  2027. if tolua.getpeer(tmp) == nil then
  2028. tolua.setpeer(tmp, {})
  2029. end
  2030. self.playerNode6.headBoxItem.barNode.hp = tmp
  2031. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  2032. tmp.switchSprite = tmp:GetComponent(Enum.TypeInfo.SwitchSprite)
  2033. end
  2034. ---@private
  2035. function UINewbieBattleView:InitGenerate__126(Root, data)
  2036. --[[
  2037. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar/Sp/spImg
  2038. --]]
  2039. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Bar/Sp/spImg").gameObject
  2040. if tolua.getpeer(tmp) == nil then
  2041. tolua.setpeer(tmp, {})
  2042. end
  2043. self.playerNode6.headBoxItem.barNode.sp = tmp
  2044. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  2045. end
  2046. ---@private
  2047. function UINewbieBattleView:InitGenerate__127(Root, data)
  2048. --[[
  2049. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill
  2050. --]]
  2051. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill").gameObject
  2052. if tolua.getpeer(tmp) == nil then
  2053. tolua.setpeer(tmp, {})
  2054. end
  2055. self.playerNode6.headBoxItem.skillNode = tmp
  2056. end
  2057. ---@private
  2058. function UINewbieBattleView:InitGenerate__128(Root, data)
  2059. --[[
  2060. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Icon
  2061. --]]
  2062. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Icon").gameObject
  2063. if tolua.getpeer(tmp) == nil then
  2064. tolua.setpeer(tmp, {})
  2065. end
  2066. self.playerNode6.headBoxItem.skillNode.skillIcon = tmp
  2067. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  2068. end
  2069. ---@private
  2070. function UINewbieBattleView:InitGenerate__129(Root, data)
  2071. --[[
  2072. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Mask
  2073. --]]
  2074. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Mask").gameObject
  2075. if tolua.getpeer(tmp) == nil then
  2076. tolua.setpeer(tmp, {})
  2077. end
  2078. self.playerNode6.headBoxItem.skillNode.skillProgress = tmp
  2079. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  2080. end
  2081. ---@private
  2082. function UINewbieBattleView:InitGenerate__130(Root, data)
  2083. --[[
  2084. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/CD
  2085. --]]
  2086. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/CD").gameObject
  2087. if tolua.getpeer(tmp) == nil then
  2088. tolua.setpeer(tmp, {})
  2089. end
  2090. self.playerNode6.headBoxItem.skillNode.skillCD = tmp
  2091. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  2092. end
  2093. ---@private
  2094. function UINewbieBattleView:InitGenerate__131(Root, data)
  2095. --[[
  2096. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Keep
  2097. --]]
  2098. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Keep").gameObject
  2099. if tolua.getpeer(tmp) == nil then
  2100. tolua.setpeer(tmp, {})
  2101. end
  2102. self.playerNode6.headBoxItem.skillNode.keepNode = tmp
  2103. end
  2104. ---@private
  2105. function UINewbieBattleView:InitGenerate__132(Root, data)
  2106. --[[
  2107. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Wait
  2108. --]]
  2109. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Wait").gameObject
  2110. if tolua.getpeer(tmp) == nil then
  2111. tolua.setpeer(tmp, {})
  2112. end
  2113. self.playerNode6.headBoxItem.skillNode.waitNode = tmp
  2114. end
  2115. ---@private
  2116. function UINewbieBattleView:InitGenerate__133(Root, data)
  2117. --[[
  2118. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Extra
  2119. --]]
  2120. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Extra").gameObject
  2121. if tolua.getpeer(tmp) == nil then
  2122. tolua.setpeer(tmp, {})
  2123. end
  2124. self.playerNode6.headBoxItem.skillNode.extraNode = tmp
  2125. end
  2126. ---@private
  2127. function UINewbieBattleView:InitGenerate__134(Root, data)
  2128. --[[
  2129. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Forbidden
  2130. --]]
  2131. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Forbidden").gameObject
  2132. if tolua.getpeer(tmp) == nil then
  2133. tolua.setpeer(tmp, {})
  2134. end
  2135. self.playerNode6.headBoxItem.skillNode.forbidNode = tmp
  2136. end
  2137. ---@private
  2138. function UINewbieBattleView:InitGenerate__135(Root, data)
  2139. --[[
  2140. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Release
  2141. --]]
  2142. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Skill/Release").gameObject
  2143. if tolua.getpeer(tmp) == nil then
  2144. tolua.setpeer(tmp, {})
  2145. end
  2146. self.playerNode6.headBoxItem.skillNode.releaseNode = tmp
  2147. end
  2148. ---@private
  2149. function UINewbieBattleView:InitGenerate__136(Root, data)
  2150. --[[
  2151. BottomView/HeadsBox/Player6/Position/HeadBoxItem/Dead
  2152. --]]
  2153. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/HeadBoxItem/Dead").gameObject
  2154. if tolua.getpeer(tmp) == nil then
  2155. tolua.setpeer(tmp, {})
  2156. end
  2157. self.playerNode6.headBoxItem.deadNode = tmp
  2158. end
  2159. ---@private
  2160. function UINewbieBattleView:InitGenerate__137(Root, data)
  2161. --[[
  2162. BottomView/HeadsBox/Player6/Position/PlayerName
  2163. --]]
  2164. local tmp = Root:Find("BottomView/HeadsBox/Player6/Position/PlayerName").gameObject
  2165. if tolua.getpeer(tmp) == nil then
  2166. tolua.setpeer(tmp, {})
  2167. end
  2168. self.playerNode6.playerName = tmp
  2169. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  2170. end
  2171. ---@private
  2172. function UINewbieBattleView:InitGenerate__138(Root, data)
  2173. --[[
  2174. WhiteShow
  2175. --]]
  2176. local tmp = Root:Find("WhiteShow").gameObject
  2177. if tolua.getpeer(tmp) == nil then
  2178. tolua.setpeer(tmp, {})
  2179. end
  2180. self.whiteShow = tmp
  2181. end
  2182. ---@private
  2183. function UINewbieBattleView:GenerateDestroy()
  2184. if tolua.getpeer(self.playerNode6.playerName) ~= nil then
  2185. tolua.setpeer(self.playerNode6.playerName, nil)
  2186. end
  2187. if tolua.getpeer(self.playerNode6.headBoxItem.deadNode) ~= nil then
  2188. tolua.setpeer(self.playerNode6.headBoxItem.deadNode, nil)
  2189. end
  2190. if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.releaseNode) ~= nil then
  2191. tolua.setpeer(self.playerNode6.headBoxItem.skillNode.releaseNode, nil)
  2192. end
  2193. if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.forbidNode) ~= nil then
  2194. tolua.setpeer(self.playerNode6.headBoxItem.skillNode.forbidNode, nil)
  2195. end
  2196. if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.extraNode) ~= nil then
  2197. tolua.setpeer(self.playerNode6.headBoxItem.skillNode.extraNode, nil)
  2198. end
  2199. if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.waitNode) ~= nil then
  2200. tolua.setpeer(self.playerNode6.headBoxItem.skillNode.waitNode, nil)
  2201. end
  2202. if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.keepNode) ~= nil then
  2203. tolua.setpeer(self.playerNode6.headBoxItem.skillNode.keepNode, nil)
  2204. end
  2205. if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.skillCD) ~= nil then
  2206. tolua.setpeer(self.playerNode6.headBoxItem.skillNode.skillCD, nil)
  2207. end
  2208. if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.skillProgress) ~= nil then
  2209. tolua.setpeer(self.playerNode6.headBoxItem.skillNode.skillProgress, nil)
  2210. end
  2211. if tolua.getpeer(self.playerNode6.headBoxItem.skillNode.skillIcon) ~= nil then
  2212. tolua.setpeer(self.playerNode6.headBoxItem.skillNode.skillIcon, nil)
  2213. end
  2214. if tolua.getpeer(self.playerNode6.headBoxItem.skillNode) ~= nil then
  2215. tolua.setpeer(self.playerNode6.headBoxItem.skillNode, nil)
  2216. end
  2217. if tolua.getpeer(self.playerNode6.headBoxItem.barNode.sp) ~= nil then
  2218. tolua.setpeer(self.playerNode6.headBoxItem.barNode.sp, nil)
  2219. end
  2220. if tolua.getpeer(self.playerNode6.headBoxItem.barNode.hp) ~= nil then
  2221. tolua.setpeer(self.playerNode6.headBoxItem.barNode.hp, nil)
  2222. end
  2223. if tolua.getpeer(self.playerNode6.headBoxItem.barNode) ~= nil then
  2224. tolua.setpeer(self.playerNode6.headBoxItem.barNode, nil)
  2225. end
  2226. if tolua.getpeer(self.playerNode6.headBoxItem.headNode.levelText) ~= nil then
  2227. tolua.setpeer(self.playerNode6.headBoxItem.headNode.levelText, nil)
  2228. end
  2229. if tolua.getpeer(self.playerNode6.headBoxItem.headNode.jobIcon) ~= nil then
  2230. tolua.setpeer(self.playerNode6.headBoxItem.headNode.jobIcon, nil)
  2231. end
  2232. if tolua.getpeer(self.playerNode6.headBoxItem.headNode.head) ~= nil then
  2233. tolua.setpeer(self.playerNode6.headBoxItem.headNode.head, nil)
  2234. end
  2235. if tolua.getpeer(self.playerNode6.headBoxItem.headNode) ~= nil then
  2236. tolua.setpeer(self.playerNode6.headBoxItem.headNode, nil)
  2237. end
  2238. if tolua.getpeer(self.playerNode6.headBoxItem) ~= nil then
  2239. tolua.setpeer(self.playerNode6.headBoxItem, nil)
  2240. end
  2241. if tolua.getpeer(self.playerNode5.playerName) ~= nil then
  2242. tolua.setpeer(self.playerNode5.playerName, nil)
  2243. end
  2244. if tolua.getpeer(self.playerNode5.headBoxItem.deadNode) ~= nil then
  2245. tolua.setpeer(self.playerNode5.headBoxItem.deadNode, nil)
  2246. end
  2247. if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.releaseNode) ~= nil then
  2248. tolua.setpeer(self.playerNode5.headBoxItem.skillNode.releaseNode, nil)
  2249. end
  2250. if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.forbidNode) ~= nil then
  2251. tolua.setpeer(self.playerNode5.headBoxItem.skillNode.forbidNode, nil)
  2252. end
  2253. if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.extraNode) ~= nil then
  2254. tolua.setpeer(self.playerNode5.headBoxItem.skillNode.extraNode, nil)
  2255. end
  2256. if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.waitNode) ~= nil then
  2257. tolua.setpeer(self.playerNode5.headBoxItem.skillNode.waitNode, nil)
  2258. end
  2259. if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.keepNode) ~= nil then
  2260. tolua.setpeer(self.playerNode5.headBoxItem.skillNode.keepNode, nil)
  2261. end
  2262. if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.skillCD) ~= nil then
  2263. tolua.setpeer(self.playerNode5.headBoxItem.skillNode.skillCD, nil)
  2264. end
  2265. if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.skillProgress) ~= nil then
  2266. tolua.setpeer(self.playerNode5.headBoxItem.skillNode.skillProgress, nil)
  2267. end
  2268. if tolua.getpeer(self.playerNode5.headBoxItem.skillNode.skillIcon) ~= nil then
  2269. tolua.setpeer(self.playerNode5.headBoxItem.skillNode.skillIcon, nil)
  2270. end
  2271. if tolua.getpeer(self.playerNode5.headBoxItem.skillNode) ~= nil then
  2272. tolua.setpeer(self.playerNode5.headBoxItem.skillNode, nil)
  2273. end
  2274. if tolua.getpeer(self.playerNode5.headBoxItem.barNode.sp) ~= nil then
  2275. tolua.setpeer(self.playerNode5.headBoxItem.barNode.sp, nil)
  2276. end
  2277. if tolua.getpeer(self.playerNode5.headBoxItem.barNode.hp) ~= nil then
  2278. tolua.setpeer(self.playerNode5.headBoxItem.barNode.hp, nil)
  2279. end
  2280. if tolua.getpeer(self.playerNode5.headBoxItem.barNode) ~= nil then
  2281. tolua.setpeer(self.playerNode5.headBoxItem.barNode, nil)
  2282. end
  2283. if tolua.getpeer(self.playerNode5.headBoxItem.headNode.levelText) ~= nil then
  2284. tolua.setpeer(self.playerNode5.headBoxItem.headNode.levelText, nil)
  2285. end
  2286. if tolua.getpeer(self.playerNode5.headBoxItem.headNode.jobIcon) ~= nil then
  2287. tolua.setpeer(self.playerNode5.headBoxItem.headNode.jobIcon, nil)
  2288. end
  2289. if tolua.getpeer(self.playerNode5.headBoxItem.headNode.head) ~= nil then
  2290. tolua.setpeer(self.playerNode5.headBoxItem.headNode.head, nil)
  2291. end
  2292. if tolua.getpeer(self.playerNode5.headBoxItem.headNode) ~= nil then
  2293. tolua.setpeer(self.playerNode5.headBoxItem.headNode, nil)
  2294. end
  2295. if tolua.getpeer(self.playerNode5.headBoxItem) ~= nil then
  2296. tolua.setpeer(self.playerNode5.headBoxItem, nil)
  2297. end
  2298. if tolua.getpeer(self.playerNode4.playerName) ~= nil then
  2299. tolua.setpeer(self.playerNode4.playerName, nil)
  2300. end
  2301. if tolua.getpeer(self.playerNode4.headBoxItem.deadNode) ~= nil then
  2302. tolua.setpeer(self.playerNode4.headBoxItem.deadNode, nil)
  2303. end
  2304. if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.releaseNode) ~= nil then
  2305. tolua.setpeer(self.playerNode4.headBoxItem.skillNode.releaseNode, nil)
  2306. end
  2307. if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.forbidNode) ~= nil then
  2308. tolua.setpeer(self.playerNode4.headBoxItem.skillNode.forbidNode, nil)
  2309. end
  2310. if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.extraNode) ~= nil then
  2311. tolua.setpeer(self.playerNode4.headBoxItem.skillNode.extraNode, nil)
  2312. end
  2313. if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.waitNode) ~= nil then
  2314. tolua.setpeer(self.playerNode4.headBoxItem.skillNode.waitNode, nil)
  2315. end
  2316. if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.keepNode) ~= nil then
  2317. tolua.setpeer(self.playerNode4.headBoxItem.skillNode.keepNode, nil)
  2318. end
  2319. if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.skillCD) ~= nil then
  2320. tolua.setpeer(self.playerNode4.headBoxItem.skillNode.skillCD, nil)
  2321. end
  2322. if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.skillProgress) ~= nil then
  2323. tolua.setpeer(self.playerNode4.headBoxItem.skillNode.skillProgress, nil)
  2324. end
  2325. if tolua.getpeer(self.playerNode4.headBoxItem.skillNode.skillIcon) ~= nil then
  2326. tolua.setpeer(self.playerNode4.headBoxItem.skillNode.skillIcon, nil)
  2327. end
  2328. if tolua.getpeer(self.playerNode4.headBoxItem.skillNode) ~= nil then
  2329. tolua.setpeer(self.playerNode4.headBoxItem.skillNode, nil)
  2330. end
  2331. if tolua.getpeer(self.playerNode4.headBoxItem.barNode.sp) ~= nil then
  2332. tolua.setpeer(self.playerNode4.headBoxItem.barNode.sp, nil)
  2333. end
  2334. if tolua.getpeer(self.playerNode4.headBoxItem.barNode.hp) ~= nil then
  2335. tolua.setpeer(self.playerNode4.headBoxItem.barNode.hp, nil)
  2336. end
  2337. if tolua.getpeer(self.playerNode4.headBoxItem.barNode) ~= nil then
  2338. tolua.setpeer(self.playerNode4.headBoxItem.barNode, nil)
  2339. end
  2340. if tolua.getpeer(self.playerNode4.headBoxItem.headNode.levelText) ~= nil then
  2341. tolua.setpeer(self.playerNode4.headBoxItem.headNode.levelText, nil)
  2342. end
  2343. if tolua.getpeer(self.playerNode4.headBoxItem.headNode.jobIcon) ~= nil then
  2344. tolua.setpeer(self.playerNode4.headBoxItem.headNode.jobIcon, nil)
  2345. end
  2346. if tolua.getpeer(self.playerNode4.headBoxItem.headNode.head) ~= nil then
  2347. tolua.setpeer(self.playerNode4.headBoxItem.headNode.head, nil)
  2348. end
  2349. if tolua.getpeer(self.playerNode4.headBoxItem.headNode) ~= nil then
  2350. tolua.setpeer(self.playerNode4.headBoxItem.headNode, nil)
  2351. end
  2352. if tolua.getpeer(self.playerNode4.headBoxItem) ~= nil then
  2353. tolua.setpeer(self.playerNode4.headBoxItem, nil)
  2354. end
  2355. if tolua.getpeer(self.playerNode3.playerName) ~= nil then
  2356. tolua.setpeer(self.playerNode3.playerName, nil)
  2357. end
  2358. if tolua.getpeer(self.playerNode3.headBoxItem.deadNode) ~= nil then
  2359. tolua.setpeer(self.playerNode3.headBoxItem.deadNode, nil)
  2360. end
  2361. if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.releaseNode) ~= nil then
  2362. tolua.setpeer(self.playerNode3.headBoxItem.skillNode.releaseNode, nil)
  2363. end
  2364. if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.forbidNode) ~= nil then
  2365. tolua.setpeer(self.playerNode3.headBoxItem.skillNode.forbidNode, nil)
  2366. end
  2367. if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.extraNode) ~= nil then
  2368. tolua.setpeer(self.playerNode3.headBoxItem.skillNode.extraNode, nil)
  2369. end
  2370. if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.waitNode) ~= nil then
  2371. tolua.setpeer(self.playerNode3.headBoxItem.skillNode.waitNode, nil)
  2372. end
  2373. if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.keepNode) ~= nil then
  2374. tolua.setpeer(self.playerNode3.headBoxItem.skillNode.keepNode, nil)
  2375. end
  2376. if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.skillCD) ~= nil then
  2377. tolua.setpeer(self.playerNode3.headBoxItem.skillNode.skillCD, nil)
  2378. end
  2379. if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.skillProgress) ~= nil then
  2380. tolua.setpeer(self.playerNode3.headBoxItem.skillNode.skillProgress, nil)
  2381. end
  2382. if tolua.getpeer(self.playerNode3.headBoxItem.skillNode.skillIcon) ~= nil then
  2383. tolua.setpeer(self.playerNode3.headBoxItem.skillNode.skillIcon, nil)
  2384. end
  2385. if tolua.getpeer(self.playerNode3.headBoxItem.skillNode) ~= nil then
  2386. tolua.setpeer(self.playerNode3.headBoxItem.skillNode, nil)
  2387. end
  2388. if tolua.getpeer(self.playerNode3.headBoxItem.barNode.sp) ~= nil then
  2389. tolua.setpeer(self.playerNode3.headBoxItem.barNode.sp, nil)
  2390. end
  2391. if tolua.getpeer(self.playerNode3.headBoxItem.barNode.hp) ~= nil then
  2392. tolua.setpeer(self.playerNode3.headBoxItem.barNode.hp, nil)
  2393. end
  2394. if tolua.getpeer(self.playerNode3.headBoxItem.barNode) ~= nil then
  2395. tolua.setpeer(self.playerNode3.headBoxItem.barNode, nil)
  2396. end
  2397. if tolua.getpeer(self.playerNode3.headBoxItem.headNode.levelText) ~= nil then
  2398. tolua.setpeer(self.playerNode3.headBoxItem.headNode.levelText, nil)
  2399. end
  2400. if tolua.getpeer(self.playerNode3.headBoxItem.headNode.jobIcon) ~= nil then
  2401. tolua.setpeer(self.playerNode3.headBoxItem.headNode.jobIcon, nil)
  2402. end
  2403. if tolua.getpeer(self.playerNode3.headBoxItem.headNode.head) ~= nil then
  2404. tolua.setpeer(self.playerNode3.headBoxItem.headNode.head, nil)
  2405. end
  2406. if tolua.getpeer(self.playerNode3.headBoxItem.headNode) ~= nil then
  2407. tolua.setpeer(self.playerNode3.headBoxItem.headNode, nil)
  2408. end
  2409. if tolua.getpeer(self.playerNode3.headBoxItem) ~= nil then
  2410. tolua.setpeer(self.playerNode3.headBoxItem, nil)
  2411. end
  2412. if tolua.getpeer(self.playerNode2.playerName) ~= nil then
  2413. tolua.setpeer(self.playerNode2.playerName, nil)
  2414. end
  2415. if tolua.getpeer(self.playerNode2.headBoxItem.deadNode) ~= nil then
  2416. tolua.setpeer(self.playerNode2.headBoxItem.deadNode, nil)
  2417. end
  2418. if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.releaseNode) ~= nil then
  2419. tolua.setpeer(self.playerNode2.headBoxItem.skillNode.releaseNode, nil)
  2420. end
  2421. if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.forbidNode) ~= nil then
  2422. tolua.setpeer(self.playerNode2.headBoxItem.skillNode.forbidNode, nil)
  2423. end
  2424. if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.extraNode) ~= nil then
  2425. tolua.setpeer(self.playerNode2.headBoxItem.skillNode.extraNode, nil)
  2426. end
  2427. if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.waitNode) ~= nil then
  2428. tolua.setpeer(self.playerNode2.headBoxItem.skillNode.waitNode, nil)
  2429. end
  2430. if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.keepNode) ~= nil then
  2431. tolua.setpeer(self.playerNode2.headBoxItem.skillNode.keepNode, nil)
  2432. end
  2433. if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.skillCD) ~= nil then
  2434. tolua.setpeer(self.playerNode2.headBoxItem.skillNode.skillCD, nil)
  2435. end
  2436. if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.skillProgress) ~= nil then
  2437. tolua.setpeer(self.playerNode2.headBoxItem.skillNode.skillProgress, nil)
  2438. end
  2439. if tolua.getpeer(self.playerNode2.headBoxItem.skillNode.skillIcon) ~= nil then
  2440. tolua.setpeer(self.playerNode2.headBoxItem.skillNode.skillIcon, nil)
  2441. end
  2442. if tolua.getpeer(self.playerNode2.headBoxItem.skillNode) ~= nil then
  2443. tolua.setpeer(self.playerNode2.headBoxItem.skillNode, nil)
  2444. end
  2445. if tolua.getpeer(self.playerNode2.headBoxItem.barNode.sp) ~= nil then
  2446. tolua.setpeer(self.playerNode2.headBoxItem.barNode.sp, nil)
  2447. end
  2448. if tolua.getpeer(self.playerNode2.headBoxItem.barNode.hp) ~= nil then
  2449. tolua.setpeer(self.playerNode2.headBoxItem.barNode.hp, nil)
  2450. end
  2451. if tolua.getpeer(self.playerNode2.headBoxItem.barNode) ~= nil then
  2452. tolua.setpeer(self.playerNode2.headBoxItem.barNode, nil)
  2453. end
  2454. if tolua.getpeer(self.playerNode2.headBoxItem.headNode.levelText) ~= nil then
  2455. tolua.setpeer(self.playerNode2.headBoxItem.headNode.levelText, nil)
  2456. end
  2457. if tolua.getpeer(self.playerNode2.headBoxItem.headNode.jobIcon) ~= nil then
  2458. tolua.setpeer(self.playerNode2.headBoxItem.headNode.jobIcon, nil)
  2459. end
  2460. if tolua.getpeer(self.playerNode2.headBoxItem.headNode.head) ~= nil then
  2461. tolua.setpeer(self.playerNode2.headBoxItem.headNode.head, nil)
  2462. end
  2463. if tolua.getpeer(self.playerNode2.headBoxItem.headNode) ~= nil then
  2464. tolua.setpeer(self.playerNode2.headBoxItem.headNode, nil)
  2465. end
  2466. if tolua.getpeer(self.playerNode2.headBoxItem) ~= nil then
  2467. tolua.setpeer(self.playerNode2.headBoxItem, nil)
  2468. end
  2469. if tolua.getpeer(self.playerNode1.playerName) ~= nil then
  2470. tolua.setpeer(self.playerNode1.playerName, nil)
  2471. end
  2472. if tolua.getpeer(self.playerNode1.headBoxItem.deadNode) ~= nil then
  2473. tolua.setpeer(self.playerNode1.headBoxItem.deadNode, nil)
  2474. end
  2475. if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.releaseNode) ~= nil then
  2476. tolua.setpeer(self.playerNode1.headBoxItem.skillNode.releaseNode, nil)
  2477. end
  2478. if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.forbidNode) ~= nil then
  2479. tolua.setpeer(self.playerNode1.headBoxItem.skillNode.forbidNode, nil)
  2480. end
  2481. if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.extraNode) ~= nil then
  2482. tolua.setpeer(self.playerNode1.headBoxItem.skillNode.extraNode, nil)
  2483. end
  2484. if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.waitNode) ~= nil then
  2485. tolua.setpeer(self.playerNode1.headBoxItem.skillNode.waitNode, nil)
  2486. end
  2487. if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.keepNode) ~= nil then
  2488. tolua.setpeer(self.playerNode1.headBoxItem.skillNode.keepNode, nil)
  2489. end
  2490. if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.skillCD) ~= nil then
  2491. tolua.setpeer(self.playerNode1.headBoxItem.skillNode.skillCD, nil)
  2492. end
  2493. if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.skillProgress) ~= nil then
  2494. tolua.setpeer(self.playerNode1.headBoxItem.skillNode.skillProgress, nil)
  2495. end
  2496. if tolua.getpeer(self.playerNode1.headBoxItem.skillNode.skillIcon) ~= nil then
  2497. tolua.setpeer(self.playerNode1.headBoxItem.skillNode.skillIcon, nil)
  2498. end
  2499. if tolua.getpeer(self.playerNode1.headBoxItem.skillNode) ~= nil then
  2500. tolua.setpeer(self.playerNode1.headBoxItem.skillNode, nil)
  2501. end
  2502. if tolua.getpeer(self.playerNode1.headBoxItem.barNode.sp) ~= nil then
  2503. tolua.setpeer(self.playerNode1.headBoxItem.barNode.sp, nil)
  2504. end
  2505. if tolua.getpeer(self.playerNode1.headBoxItem.barNode.hp) ~= nil then
  2506. tolua.setpeer(self.playerNode1.headBoxItem.barNode.hp, nil)
  2507. end
  2508. if tolua.getpeer(self.playerNode1.headBoxItem.barNode) ~= nil then
  2509. tolua.setpeer(self.playerNode1.headBoxItem.barNode, nil)
  2510. end
  2511. if tolua.getpeer(self.playerNode1.headBoxItem.headNode.levelText) ~= nil then
  2512. tolua.setpeer(self.playerNode1.headBoxItem.headNode.levelText, nil)
  2513. end
  2514. if tolua.getpeer(self.playerNode1.headBoxItem.headNode.jobIcon) ~= nil then
  2515. tolua.setpeer(self.playerNode1.headBoxItem.headNode.jobIcon, nil)
  2516. end
  2517. if tolua.getpeer(self.playerNode1.headBoxItem.headNode.head) ~= nil then
  2518. tolua.setpeer(self.playerNode1.headBoxItem.headNode.head, nil)
  2519. end
  2520. if tolua.getpeer(self.playerNode1.headBoxItem.headNode) ~= nil then
  2521. tolua.setpeer(self.playerNode1.headBoxItem.headNode, nil)
  2522. end
  2523. if tolua.getpeer(self.playerNode1.headBoxItem) ~= nil then
  2524. tolua.setpeer(self.playerNode1.headBoxItem, nil)
  2525. end
  2526. if tolua.getpeer(self.bossSkillNode.releaseNode) ~= nil then
  2527. tolua.setpeer(self.bossSkillNode.releaseNode, nil)
  2528. end
  2529. if tolua.getpeer(self.bossSkillNode.forbidNode) ~= nil then
  2530. tolua.setpeer(self.bossSkillNode.forbidNode, nil)
  2531. end
  2532. if tolua.getpeer(self.bossSkillNode.extraNode) ~= nil then
  2533. tolua.setpeer(self.bossSkillNode.extraNode, nil)
  2534. end
  2535. if tolua.getpeer(self.bossSkillNode.waitNode) ~= nil then
  2536. tolua.setpeer(self.bossSkillNode.waitNode, nil)
  2537. end
  2538. if tolua.getpeer(self.bossSkillNode.keepNode) ~= nil then
  2539. tolua.setpeer(self.bossSkillNode.keepNode, nil)
  2540. end
  2541. if tolua.getpeer(self.bossBloodNode) ~= nil then
  2542. tolua.setpeer(self.bossBloodNode, nil)
  2543. end
  2544. self.bossBloodNode = nil
  2545. if tolua.getpeer(self.bossBlood2) ~= nil then
  2546. tolua.setpeer(self.bossBlood2, nil)
  2547. end
  2548. self.bossBlood2 = nil
  2549. if tolua.getpeer(self.bossBloodBack) ~= nil then
  2550. tolua.setpeer(self.bossBloodBack, nil)
  2551. end
  2552. self.bossBloodBack = nil
  2553. if tolua.getpeer(self.bossBlood) ~= nil then
  2554. tolua.setpeer(self.bossBlood, nil)
  2555. end
  2556. self.bossBlood = nil
  2557. if tolua.getpeer(self.bossName) ~= nil then
  2558. tolua.setpeer(self.bossName, nil)
  2559. end
  2560. self.bossName = nil
  2561. if tolua.getpeer(self.bossSkillNode) ~= nil then
  2562. tolua.setpeer(self.bossSkillNode, nil)
  2563. end
  2564. self.bossSkillNode = nil
  2565. if tolua.getpeer(self.bossSkillIcon) ~= nil then
  2566. tolua.setpeer(self.bossSkillIcon, nil)
  2567. end
  2568. self.bossSkillIcon = nil
  2569. if tolua.getpeer(self.bossSkillProgress) ~= nil then
  2570. tolua.setpeer(self.bossSkillProgress, nil)
  2571. end
  2572. self.bossSkillProgress = nil
  2573. if tolua.getpeer(self.bossSkillCD) ~= nil then
  2574. tolua.setpeer(self.bossSkillCD, nil)
  2575. end
  2576. self.bossSkillCD = nil
  2577. if tolua.getpeer(self.bossBuffTemp) ~= nil then
  2578. tolua.setpeer(self.bossBuffTemp, nil)
  2579. end
  2580. self.bossBuffTemp = nil
  2581. if tolua.getpeer(self.bossDebuffTemp) ~= nil then
  2582. tolua.setpeer(self.bossDebuffTemp, nil)
  2583. end
  2584. self.bossDebuffTemp = nil
  2585. if tolua.getpeer(self.skipBtn) ~= nil then
  2586. tolua.setpeer(self.skipBtn, nil)
  2587. end
  2588. self.skipBtn = nil
  2589. if tolua.getpeer(self.playerNode1) ~= nil then
  2590. tolua.setpeer(self.playerNode1, nil)
  2591. end
  2592. self.playerNode1 = nil
  2593. if tolua.getpeer(self.playerNode2) ~= nil then
  2594. tolua.setpeer(self.playerNode2, nil)
  2595. end
  2596. self.playerNode2 = nil
  2597. if tolua.getpeer(self.playerNode3) ~= nil then
  2598. tolua.setpeer(self.playerNode3, nil)
  2599. end
  2600. self.playerNode3 = nil
  2601. if tolua.getpeer(self.playerNode4) ~= nil then
  2602. tolua.setpeer(self.playerNode4, nil)
  2603. end
  2604. self.playerNode4 = nil
  2605. if tolua.getpeer(self.playerNode5) ~= nil then
  2606. tolua.setpeer(self.playerNode5, nil)
  2607. end
  2608. self.playerNode5 = nil
  2609. if tolua.getpeer(self.playerNode6) ~= nil then
  2610. tolua.setpeer(self.playerNode6, nil)
  2611. end
  2612. self.playerNode6 = nil
  2613. if tolua.getpeer(self.whiteShow) ~= nil then
  2614. tolua.setpeer(self.whiteShow, nil)
  2615. end
  2616. self.whiteShow = nil
  2617. self.transform = nil
  2618. self.gameObject = nil
  2619. self.inited = false
  2620. end
  2621. return UINewbieBattleView