UIRoleMain1View_Generate.lua 86 KB

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