UIStarSignTipsView_Generate.lua 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424
  1. ---@class UIStarSignTips__Generate_btnSkip
  2. ---@field public gameObject UnityEngine.GameObject
  3. ---@field public button UnityEngine.UI.Button
  4. ---@class UIStarSignTips__Generate_btnClose
  5. ---@field public gameObject UnityEngine.GameObject
  6. ---@field public button UnityEngine.UI.Button
  7. ---@class UIStarSignTips__Generate_btnGetRewards
  8. ---@field public gameObject UnityEngine.GameObject
  9. ---@field public button UnityEngine.UI.Button
  10. ---@field public uIRedPointRP UnityEngine.GameObject
  11. ---@class UIStarSignTips__Generate_btnRewardsList
  12. ---@field public gameObject UnityEngine.GameObject
  13. ---@field public button UnityEngine.UI.Button
  14. ---@class UIStarSignTips__Generate_btnGift
  15. ---@field public gameObject UnityEngine.GameObject
  16. ---@field public button UnityEngine.UI.Button
  17. ---@class UIStarSignTips__Generate_btnPlayRule
  18. ---@field public gameObject UnityEngine.GameObject
  19. ---@field public button UnityEngine.UI.Button
  20. ---@class UIStarSignTips__Generate_scoreInfo_num2
  21. ---@field public gameObject UnityEngine.GameObject
  22. ---@field public text UnityEngine.UI.Text
  23. ---@class UIStarSignTips__Generate_scoreInfo_text2
  24. ---@field public gameObject UnityEngine.GameObject
  25. ---@field public text UnityEngine.UI.Text
  26. ---@class UIStarSignTips__Generate_scoreInfo_num1
  27. ---@field public gameObject UnityEngine.GameObject
  28. ---@field public text UnityEngine.UI.Text
  29. ---@class UIStarSignTips__Generate_scoreInfo
  30. ---@field public gameObject UnityEngine.GameObject
  31. ---@field public button UnityEngine.UI.Button
  32. ---@field public num1 UIStarSignTips__Generate_scoreInfo_num1
  33. ---@field public text2 UIStarSignTips__Generate_scoreInfo_text2
  34. ---@field public num2 UIStarSignTips__Generate_scoreInfo_num2
  35. ---@class UIStarSignTips__Generate_rewardsBox_item12_iconSmallItem
  36. ---@field public gameObject UnityEngine.GameObject
  37. ---@field public rectTransform UnityEngine.RectTransform
  38. ---@field public layoutElement UnityEngine.UI.LayoutElement
  39. ---@class UIStarSignTips__Generate_rewardsBox_item12_num
  40. ---@field public gameObject UnityEngine.GameObject
  41. ---@field public text TMPro.TextMeshProUGUI
  42. ---@class UIStarSignTips__Generate_rewardsBox_item12_current
  43. ---@field public gameObject UnityEngine.GameObject
  44. ---@field public animator UnityEngine.Animator
  45. ---@class UIStarSignTips__Generate_rewardsBox_item12
  46. ---@field public gameObject UnityEngine.GameObject
  47. ---@field public current UIStarSignTips__Generate_rewardsBox_item12_current
  48. ---@field public num UIStarSignTips__Generate_rewardsBox_item12_num
  49. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item12_iconSmallItem
  50. ---@class UIStarSignTips__Generate_rewardsBox_item11_iconSmallItem
  51. ---@field public gameObject UnityEngine.GameObject
  52. ---@field public rectTransform UnityEngine.RectTransform
  53. ---@field public layoutElement UnityEngine.UI.LayoutElement
  54. ---@class UIStarSignTips__Generate_rewardsBox_item11_num
  55. ---@field public gameObject UnityEngine.GameObject
  56. ---@field public text TMPro.TextMeshProUGUI
  57. ---@class UIStarSignTips__Generate_rewardsBox_item11_current
  58. ---@field public gameObject UnityEngine.GameObject
  59. ---@field public animator UnityEngine.Animator
  60. ---@class UIStarSignTips__Generate_rewardsBox_item11
  61. ---@field public gameObject UnityEngine.GameObject
  62. ---@field public current UIStarSignTips__Generate_rewardsBox_item11_current
  63. ---@field public num UIStarSignTips__Generate_rewardsBox_item11_num
  64. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item11_iconSmallItem
  65. ---@class UIStarSignTips__Generate_rewardsBox_item10_iconSmallItem
  66. ---@field public gameObject UnityEngine.GameObject
  67. ---@field public rectTransform UnityEngine.RectTransform
  68. ---@field public layoutElement UnityEngine.UI.LayoutElement
  69. ---@class UIStarSignTips__Generate_rewardsBox_item10_num
  70. ---@field public gameObject UnityEngine.GameObject
  71. ---@field public text TMPro.TextMeshProUGUI
  72. ---@class UIStarSignTips__Generate_rewardsBox_item10_current
  73. ---@field public gameObject UnityEngine.GameObject
  74. ---@field public animator UnityEngine.Animator
  75. ---@class UIStarSignTips__Generate_rewardsBox_item10
  76. ---@field public gameObject UnityEngine.GameObject
  77. ---@field public current UIStarSignTips__Generate_rewardsBox_item10_current
  78. ---@field public num UIStarSignTips__Generate_rewardsBox_item10_num
  79. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item10_iconSmallItem
  80. ---@class UIStarSignTips__Generate_rewardsBox_item9_iconSmallItem
  81. ---@field public gameObject UnityEngine.GameObject
  82. ---@field public rectTransform UnityEngine.RectTransform
  83. ---@field public layoutElement UnityEngine.UI.LayoutElement
  84. ---@class UIStarSignTips__Generate_rewardsBox_item9_num
  85. ---@field public gameObject UnityEngine.GameObject
  86. ---@field public text TMPro.TextMeshProUGUI
  87. ---@class UIStarSignTips__Generate_rewardsBox_item9_current
  88. ---@field public gameObject UnityEngine.GameObject
  89. ---@field public animator UnityEngine.Animator
  90. ---@class UIStarSignTips__Generate_rewardsBox_item9
  91. ---@field public gameObject UnityEngine.GameObject
  92. ---@field public current UIStarSignTips__Generate_rewardsBox_item9_current
  93. ---@field public num UIStarSignTips__Generate_rewardsBox_item9_num
  94. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item9_iconSmallItem
  95. ---@class UIStarSignTips__Generate_rewardsBox_item8_iconSmallItem
  96. ---@field public gameObject UnityEngine.GameObject
  97. ---@field public rectTransform UnityEngine.RectTransform
  98. ---@field public layoutElement UnityEngine.UI.LayoutElement
  99. ---@class UIStarSignTips__Generate_rewardsBox_item8_num
  100. ---@field public gameObject UnityEngine.GameObject
  101. ---@field public text TMPro.TextMeshProUGUI
  102. ---@class UIStarSignTips__Generate_rewardsBox_item8_current
  103. ---@field public gameObject UnityEngine.GameObject
  104. ---@field public animator UnityEngine.Animator
  105. ---@class UIStarSignTips__Generate_rewardsBox_item8
  106. ---@field public gameObject UnityEngine.GameObject
  107. ---@field public current UIStarSignTips__Generate_rewardsBox_item8_current
  108. ---@field public num UIStarSignTips__Generate_rewardsBox_item8_num
  109. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item8_iconSmallItem
  110. ---@class UIStarSignTips__Generate_rewardsBox_item7_iconSmallItem
  111. ---@field public gameObject UnityEngine.GameObject
  112. ---@field public rectTransform UnityEngine.RectTransform
  113. ---@field public layoutElement UnityEngine.UI.LayoutElement
  114. ---@class UIStarSignTips__Generate_rewardsBox_item7_num
  115. ---@field public gameObject UnityEngine.GameObject
  116. ---@field public text TMPro.TextMeshProUGUI
  117. ---@class UIStarSignTips__Generate_rewardsBox_item7_current
  118. ---@field public gameObject UnityEngine.GameObject
  119. ---@field public animator UnityEngine.Animator
  120. ---@class UIStarSignTips__Generate_rewardsBox_item7
  121. ---@field public gameObject UnityEngine.GameObject
  122. ---@field public current UIStarSignTips__Generate_rewardsBox_item7_current
  123. ---@field public num UIStarSignTips__Generate_rewardsBox_item7_num
  124. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item7_iconSmallItem
  125. ---@class UIStarSignTips__Generate_rewardsBox_item6_iconSmallItem
  126. ---@field public gameObject UnityEngine.GameObject
  127. ---@field public rectTransform UnityEngine.RectTransform
  128. ---@field public layoutElement UnityEngine.UI.LayoutElement
  129. ---@class UIStarSignTips__Generate_rewardsBox_item6_num
  130. ---@field public gameObject UnityEngine.GameObject
  131. ---@field public text TMPro.TextMeshProUGUI
  132. ---@class UIStarSignTips__Generate_rewardsBox_item6_current
  133. ---@field public gameObject UnityEngine.GameObject
  134. ---@field public animator UnityEngine.Animator
  135. ---@class UIStarSignTips__Generate_rewardsBox_item6
  136. ---@field public gameObject UnityEngine.GameObject
  137. ---@field public current UIStarSignTips__Generate_rewardsBox_item6_current
  138. ---@field public num UIStarSignTips__Generate_rewardsBox_item6_num
  139. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item6_iconSmallItem
  140. ---@class UIStarSignTips__Generate_rewardsBox_item5_iconSmallItem
  141. ---@field public gameObject UnityEngine.GameObject
  142. ---@field public rectTransform UnityEngine.RectTransform
  143. ---@field public layoutElement UnityEngine.UI.LayoutElement
  144. ---@class UIStarSignTips__Generate_rewardsBox_item5_num
  145. ---@field public gameObject UnityEngine.GameObject
  146. ---@field public text TMPro.TextMeshProUGUI
  147. ---@class UIStarSignTips__Generate_rewardsBox_item5_current
  148. ---@field public gameObject UnityEngine.GameObject
  149. ---@field public animator UnityEngine.Animator
  150. ---@class UIStarSignTips__Generate_rewardsBox_item5
  151. ---@field public gameObject UnityEngine.GameObject
  152. ---@field public current UIStarSignTips__Generate_rewardsBox_item5_current
  153. ---@field public num UIStarSignTips__Generate_rewardsBox_item5_num
  154. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item5_iconSmallItem
  155. ---@class UIStarSignTips__Generate_rewardsBox_item4_iconSmallItem
  156. ---@field public gameObject UnityEngine.GameObject
  157. ---@field public rectTransform UnityEngine.RectTransform
  158. ---@field public layoutElement UnityEngine.UI.LayoutElement
  159. ---@class UIStarSignTips__Generate_rewardsBox_item4_num
  160. ---@field public gameObject UnityEngine.GameObject
  161. ---@field public text TMPro.TextMeshProUGUI
  162. ---@class UIStarSignTips__Generate_rewardsBox_item4_current
  163. ---@field public gameObject UnityEngine.GameObject
  164. ---@field public animator UnityEngine.Animator
  165. ---@class UIStarSignTips__Generate_rewardsBox_item4
  166. ---@field public gameObject UnityEngine.GameObject
  167. ---@field public current UIStarSignTips__Generate_rewardsBox_item4_current
  168. ---@field public num UIStarSignTips__Generate_rewardsBox_item4_num
  169. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item4_iconSmallItem
  170. ---@class UIStarSignTips__Generate_rewardsBox_item3_iconSmallItem
  171. ---@field public gameObject UnityEngine.GameObject
  172. ---@field public rectTransform UnityEngine.RectTransform
  173. ---@field public layoutElement UnityEngine.UI.LayoutElement
  174. ---@class UIStarSignTips__Generate_rewardsBox_item3_num
  175. ---@field public gameObject UnityEngine.GameObject
  176. ---@field public text TMPro.TextMeshProUGUI
  177. ---@class UIStarSignTips__Generate_rewardsBox_item3_current
  178. ---@field public gameObject UnityEngine.GameObject
  179. ---@field public animator UnityEngine.Animator
  180. ---@class UIStarSignTips__Generate_rewardsBox_item3
  181. ---@field public gameObject UnityEngine.GameObject
  182. ---@field public current UIStarSignTips__Generate_rewardsBox_item3_current
  183. ---@field public num UIStarSignTips__Generate_rewardsBox_item3_num
  184. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item3_iconSmallItem
  185. ---@class UIStarSignTips__Generate_rewardsBox_item2_iconSmallItem
  186. ---@field public gameObject UnityEngine.GameObject
  187. ---@field public rectTransform UnityEngine.RectTransform
  188. ---@field public layoutElement UnityEngine.UI.LayoutElement
  189. ---@class UIStarSignTips__Generate_rewardsBox_item2_num
  190. ---@field public gameObject UnityEngine.GameObject
  191. ---@field public text TMPro.TextMeshProUGUI
  192. ---@class UIStarSignTips__Generate_rewardsBox_item2_current
  193. ---@field public gameObject UnityEngine.GameObject
  194. ---@field public animator UnityEngine.Animator
  195. ---@class UIStarSignTips__Generate_rewardsBox_item2
  196. ---@field public gameObject UnityEngine.GameObject
  197. ---@field public current UIStarSignTips__Generate_rewardsBox_item2_current
  198. ---@field public num UIStarSignTips__Generate_rewardsBox_item2_num
  199. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item2_iconSmallItem
  200. ---@class UIStarSignTips__Generate_rewardsBox_item1_iconSmallItem
  201. ---@field public gameObject UnityEngine.GameObject
  202. ---@field public rectTransform UnityEngine.RectTransform
  203. ---@field public layoutElement UnityEngine.UI.LayoutElement
  204. ---@class UIStarSignTips__Generate_rewardsBox_item1_num
  205. ---@field public gameObject UnityEngine.GameObject
  206. ---@field public text TMPro.TextMeshProUGUI
  207. ---@class UIStarSignTips__Generate_rewardsBox_item1_current
  208. ---@field public gameObject UnityEngine.GameObject
  209. ---@field public animator UnityEngine.Animator
  210. ---@class UIStarSignTips__Generate_rewardsBox_item1
  211. ---@field public gameObject UnityEngine.GameObject
  212. ---@field public current UIStarSignTips__Generate_rewardsBox_item1_current
  213. ---@field public num UIStarSignTips__Generate_rewardsBox_item1_num
  214. ---@field public iconSmallItem UIStarSignTips__Generate_rewardsBox_item1_iconSmallItem
  215. ---@class UIStarSignTips__Generate_rewardsBox_content
  216. ---@field public gameObject UnityEngine.GameObject
  217. ---@field public rectTransform UnityEngine.RectTransform
  218. ---@class UIStarSignTips__Generate_rewardsBox
  219. ---@field public gameObject UnityEngine.GameObject
  220. ---@field public content UIStarSignTips__Generate_rewardsBox_content
  221. ---@field public item1 UIStarSignTips__Generate_rewardsBox_item1
  222. ---@field public item2 UIStarSignTips__Generate_rewardsBox_item2
  223. ---@field public item3 UIStarSignTips__Generate_rewardsBox_item3
  224. ---@field public item4 UIStarSignTips__Generate_rewardsBox_item4
  225. ---@field public item5 UIStarSignTips__Generate_rewardsBox_item5
  226. ---@field public item6 UIStarSignTips__Generate_rewardsBox_item6
  227. ---@field public item7 UIStarSignTips__Generate_rewardsBox_item7
  228. ---@field public item8 UIStarSignTips__Generate_rewardsBox_item8
  229. ---@field public item9 UIStarSignTips__Generate_rewardsBox_item9
  230. ---@field public item10 UIStarSignTips__Generate_rewardsBox_item10
  231. ---@field public item11 UIStarSignTips__Generate_rewardsBox_item11
  232. ---@field public item12 UIStarSignTips__Generate_rewardsBox_item12
  233. ---@class UIStarSignTips__Generate_fx_uistarsigntipseffect_02
  234. ---@field public gameObject UnityEngine.GameObject
  235. ---@field public uIParticle UIExtensions.UIParticle
  236. ---@class UIStarSignTips__Generate_fx_uistarsigntipseffect_01
  237. ---@field public gameObject UnityEngine.GameObject
  238. ---@field public uIParticle UIExtensions.UIParticle
  239. ---@class UIStarSignTips__Generate_scrollBox_arrowAnim
  240. ---@field public gameObject UnityEngine.GameObject
  241. ---@field public animator UnityEngine.Animator
  242. ---@class UIStarSignTips__Generate_sign12
  243. ---@field public gameObject UnityEngine.GameObject
  244. ---@field public animator UnityEngine.Animator
  245. ---@class UIStarSignTips__Generate_sign11
  246. ---@field public gameObject UnityEngine.GameObject
  247. ---@field public animator UnityEngine.Animator
  248. ---@class UIStarSignTips__Generate_sign10
  249. ---@field public gameObject UnityEngine.GameObject
  250. ---@field public animator UnityEngine.Animator
  251. ---@class UIStarSignTips__Generate_sign9
  252. ---@field public gameObject UnityEngine.GameObject
  253. ---@field public animator UnityEngine.Animator
  254. ---@class UIStarSignTips__Generate_sign8
  255. ---@field public gameObject UnityEngine.GameObject
  256. ---@field public animator UnityEngine.Animator
  257. ---@class UIStarSignTips__Generate_sign7
  258. ---@field public gameObject UnityEngine.GameObject
  259. ---@field public animator UnityEngine.Animator
  260. ---@class UIStarSignTips__Generate_sign6
  261. ---@field public gameObject UnityEngine.GameObject
  262. ---@field public animator UnityEngine.Animator
  263. ---@class UIStarSignTips__Generate_sign5
  264. ---@field public gameObject UnityEngine.GameObject
  265. ---@field public animator UnityEngine.Animator
  266. ---@class UIStarSignTips__Generate_sign4
  267. ---@field public gameObject UnityEngine.GameObject
  268. ---@field public animator UnityEngine.Animator
  269. ---@class UIStarSignTips__Generate_sign3
  270. ---@field public gameObject UnityEngine.GameObject
  271. ---@field public animator UnityEngine.Animator
  272. ---@class UIStarSignTips__Generate_sign2
  273. ---@field public gameObject UnityEngine.GameObject
  274. ---@field public animator UnityEngine.Animator
  275. ---@class UIStarSignTips__Generate_sign1
  276. ---@field public gameObject UnityEngine.GameObject
  277. ---@field public animator UnityEngine.Animator
  278. ---@class UIStarSignTips__Generate_stopAnim
  279. ---@field public gameObject UnityEngine.GameObject
  280. ---@field public animator UnityEngine.Animator
  281. ---@class UIStarSignTips__Generate_scroll
  282. ---@field public gameObject UnityEngine.GameObject
  283. ---@field public rectTransform UnityEngine.RectTransform
  284. ---@class UIStarSignTips__Generate_scrollBox
  285. ---@field public gameObject UnityEngine.GameObject
  286. ---@field public arrowAnim UIStarSignTips__Generate_scrollBox_arrowAnim
  287. ---@class UIStarSignTips__Generate_btnAstrology_num
  288. ---@field public gameObject UnityEngine.GameObject
  289. ---@field public text UnityEngine.UI.Text
  290. ---@class UIStarSignTips__Generate_btnAstrology_image
  291. ---@field public gameObject UnityEngine.GameObject
  292. ---@field public image UnityEngine.UI.Image
  293. ---@class UIStarSignTips__Generate_btnAstrology
  294. ---@field public gameObject UnityEngine.GameObject
  295. ---@field public button UnityEngine.UI.Button
  296. ---@field public image UIStarSignTips__Generate_btnAstrology_image
  297. ---@field public num UIStarSignTips__Generate_btnAstrology_num
  298. ---@class UIStarSignTips__Generate_txt
  299. ---@field public gameObject UnityEngine.GameObject
  300. ---@field public text UnityEngine.UI.Text
  301. ---@class UIStarSignTips__Generate_btnUseLucky_text
  302. ---@field public gameObject UnityEngine.GameObject
  303. ---@field public text UnityEngine.UI.Text
  304. ---@class UIStarSignTips__Generate_btnUseLucky
  305. ---@field public gameObject UnityEngine.GameObject
  306. ---@field public toggle UnityEngine.UI.Toggle
  307. ---@field public text UIStarSignTips__Generate_btnUseLucky_text
  308. ---@class UIStarSignTips__Generate_currency3_btnBuy
  309. ---@field public gameObject UnityEngine.GameObject
  310. ---@field public button UnityEngine.UI.Button
  311. ---@class UIStarSignTips__Generate_currency3_number
  312. ---@field public gameObject UnityEngine.GameObject
  313. ---@field public text UnityEngine.UI.Text
  314. ---@class UIStarSignTips__Generate_currency3_icon
  315. ---@field public gameObject UnityEngine.GameObject
  316. ---@field public image UnityEngine.UI.Image
  317. ---@class UIStarSignTips__Generate_currency3
  318. ---@field public gameObject UnityEngine.GameObject
  319. ---@field public icon UIStarSignTips__Generate_currency3_icon
  320. ---@field public number UIStarSignTips__Generate_currency3_number
  321. ---@field public btnBuy UIStarSignTips__Generate_currency3_btnBuy
  322. ---@class UIStarSignTips__Generate_currency2_btnBuy
  323. ---@field public gameObject UnityEngine.GameObject
  324. ---@field public button UnityEngine.UI.Button
  325. ---@class UIStarSignTips__Generate_currency2_number
  326. ---@field public gameObject UnityEngine.GameObject
  327. ---@field public text UnityEngine.UI.Text
  328. ---@class UIStarSignTips__Generate_currency2_icon
  329. ---@field public gameObject UnityEngine.GameObject
  330. ---@field public image UnityEngine.UI.Image
  331. ---@class UIStarSignTips__Generate_currency2
  332. ---@field public gameObject UnityEngine.GameObject
  333. ---@field public icon UIStarSignTips__Generate_currency2_icon
  334. ---@field public number UIStarSignTips__Generate_currency2_number
  335. ---@field public btnBuy UIStarSignTips__Generate_currency2_btnBuy
  336. ---@class UIStarSignTips__Generate_currency1_btnBuy
  337. ---@field public gameObject UnityEngine.GameObject
  338. ---@field public button UnityEngine.UI.Button
  339. ---@class UIStarSignTips__Generate_currency1_number
  340. ---@field public gameObject UnityEngine.GameObject
  341. ---@field public text UnityEngine.UI.Text
  342. ---@class UIStarSignTips__Generate_currency1_icon
  343. ---@field public gameObject UnityEngine.GameObject
  344. ---@field public image UnityEngine.UI.Image
  345. ---@class UIStarSignTips__Generate_currency1
  346. ---@field public gameObject UnityEngine.GameObject
  347. ---@field public icon UIStarSignTips__Generate_currency1_icon
  348. ---@field public number UIStarSignTips__Generate_currency1_number
  349. ---@field public btnBuy UIStarSignTips__Generate_currency1_btnBuy
  350. ---@class UIStarSignTips__Generate_AnyBtn
  351. ---@field public gameObject UnityEngine.GameObject
  352. ---@field public button UnityEngine.UI.Button
  353. ---@class UIStarSignTips__Generate_uIAnimator
  354. ---@field public gameObject UnityEngine.GameObject
  355. ---@field public animator UnityEngine.Animator
  356. ---@class UIStarSignTips__Generate
  357. ---@field private gameObject UnityEngine.GameObject
  358. ---@field private transform UnityEngine.Transform
  359. ---@field private uIAnimator UIStarSignTips__Generate_uIAnimator
  360. ---@field private AnyBtn UIStarSignTips__Generate_AnyBtn
  361. ---@field private currency1 UIStarSignTips__Generate_currency1
  362. ---@field private currency2 UIStarSignTips__Generate_currency2
  363. ---@field private currency3 UIStarSignTips__Generate_currency3
  364. ---@field private astrolabe UnityEngine.GameObject
  365. ---@field private btnUseLucky UIStarSignTips__Generate_btnUseLucky
  366. ---@field private txt UIStarSignTips__Generate_txt
  367. ---@field private btnAstrology UIStarSignTips__Generate_btnAstrology
  368. ---@field private scrollBox UIStarSignTips__Generate_scrollBox
  369. ---@field private scroll UIStarSignTips__Generate_scroll
  370. ---@field private stopAnim UIStarSignTips__Generate_stopAnim
  371. ---@field private sign1 UIStarSignTips__Generate_sign1
  372. ---@field private sign2 UIStarSignTips__Generate_sign2
  373. ---@field private sign3 UIStarSignTips__Generate_sign3
  374. ---@field private sign4 UIStarSignTips__Generate_sign4
  375. ---@field private sign5 UIStarSignTips__Generate_sign5
  376. ---@field private sign6 UIStarSignTips__Generate_sign6
  377. ---@field private sign7 UIStarSignTips__Generate_sign7
  378. ---@field private sign8 UIStarSignTips__Generate_sign8
  379. ---@field private sign9 UIStarSignTips__Generate_sign9
  380. ---@field private sign10 UIStarSignTips__Generate_sign10
  381. ---@field private sign11 UIStarSignTips__Generate_sign11
  382. ---@field private sign12 UIStarSignTips__Generate_sign12
  383. ---@field private fx_uistarsigntipseffect_01 UIStarSignTips__Generate_fx_uistarsigntipseffect_01
  384. ---@field private fx_uistarsigntipseffect_02 UIStarSignTips__Generate_fx_uistarsigntipseffect_02
  385. ---@field private rewardsBox UIStarSignTips__Generate_rewardsBox
  386. ---@field private scoreInfo UIStarSignTips__Generate_scoreInfo
  387. ---@field private btnPlayRule UIStarSignTips__Generate_btnPlayRule
  388. ---@field private btnGift UIStarSignTips__Generate_btnGift
  389. ---@field private btnRewardsList UIStarSignTips__Generate_btnRewardsList
  390. ---@field private btnGetRewards UIStarSignTips__Generate_btnGetRewards
  391. ---@field private btnClose UIStarSignTips__Generate_btnClose
  392. ---@field private btnSkip UIStarSignTips__Generate_btnSkip
  393. local UIStarSignTipsView = class("UIStarSignTipsView", require("UIViewBase"))
  394. function UIStarSignTipsView:ctor()
  395. end
  396. ---@private
  397. function UIStarSignTipsView:SetActive(result)
  398. self.gameObject:SetActive(result)
  399. end
  400. ---@private
  401. function UIStarSignTipsView:InitGenerate(Root, data)
  402. self.transform = Root
  403. self.inited = true
  404. if self.super.Init then
  405. self.super.Init(self)
  406. end
  407. local tmp
  408. self:InitGenerate__1(Root,data)
  409. self:InitGenerate__2(Root,data)
  410. self:InitGenerate__3(Root,data)
  411. self:InitGenerate__4(Root,data)
  412. self:InitGenerate__5(Root,data)
  413. self:InitGenerate__6(Root,data)
  414. self:InitGenerate__7(Root,data)
  415. self:InitGenerate__8(Root,data)
  416. self:InitGenerate__9(Root,data)
  417. self:InitGenerate__10(Root,data)
  418. self:InitGenerate__11(Root,data)
  419. self:InitGenerate__12(Root,data)
  420. self:InitGenerate__13(Root,data)
  421. self:InitGenerate__14(Root,data)
  422. self:InitGenerate__15(Root,data)
  423. self:InitGenerate__16(Root,data)
  424. self:InitGenerate__17(Root,data)
  425. self:InitGenerate__18(Root,data)
  426. self:InitGenerate__19(Root,data)
  427. self:InitGenerate__20(Root,data)
  428. self:InitGenerate__21(Root,data)
  429. self:InitGenerate__22(Root,data)
  430. self:InitGenerate__23(Root,data)
  431. self:InitGenerate__24(Root,data)
  432. self:InitGenerate__25(Root,data)
  433. self:InitGenerate__26(Root,data)
  434. self:InitGenerate__27(Root,data)
  435. self:InitGenerate__28(Root,data)
  436. self:InitGenerate__29(Root,data)
  437. self:InitGenerate__30(Root,data)
  438. self:InitGenerate__31(Root,data)
  439. self:InitGenerate__32(Root,data)
  440. self:InitGenerate__33(Root,data)
  441. self:InitGenerate__34(Root,data)
  442. self:InitGenerate__35(Root,data)
  443. self:InitGenerate__36(Root,data)
  444. self:InitGenerate__37(Root,data)
  445. self:InitGenerate__38(Root,data)
  446. self:InitGenerate__39(Root,data)
  447. self:InitGenerate__40(Root,data)
  448. self:InitGenerate__41(Root,data)
  449. self:InitGenerate__42(Root,data)
  450. self:InitGenerate__43(Root,data)
  451. self:InitGenerate__44(Root,data)
  452. self:InitGenerate__45(Root,data)
  453. self:InitGenerate__46(Root,data)
  454. self:InitGenerate__47(Root,data)
  455. self:InitGenerate__48(Root,data)
  456. self:InitGenerate__49(Root,data)
  457. self:InitGenerate__50(Root,data)
  458. self:InitGenerate__51(Root,data)
  459. self:InitGenerate__52(Root,data)
  460. self:InitGenerate__53(Root,data)
  461. self:InitGenerate__54(Root,data)
  462. self:InitGenerate__55(Root,data)
  463. self:InitGenerate__56(Root,data)
  464. self:InitGenerate__57(Root,data)
  465. self:InitGenerate__58(Root,data)
  466. self:InitGenerate__59(Root,data)
  467. self:InitGenerate__60(Root,data)
  468. self:InitGenerate__61(Root,data)
  469. self:InitGenerate__62(Root,data)
  470. self:InitGenerate__63(Root,data)
  471. self:InitGenerate__64(Root,data)
  472. self:InitGenerate__65(Root,data)
  473. self:InitGenerate__66(Root,data)
  474. self:InitGenerate__67(Root,data)
  475. self:InitGenerate__68(Root,data)
  476. self:InitGenerate__69(Root,data)
  477. self:InitGenerate__70(Root,data)
  478. self:InitGenerate__71(Root,data)
  479. self:InitGenerate__72(Root,data)
  480. self:InitGenerate__73(Root,data)
  481. self:InitGenerate__74(Root,data)
  482. self:InitGenerate__75(Root,data)
  483. self:InitGenerate__76(Root,data)
  484. self:InitGenerate__77(Root,data)
  485. self:InitGenerate__78(Root,data)
  486. self:InitGenerate__79(Root,data)
  487. self:InitGenerate__80(Root,data)
  488. self:InitGenerate__81(Root,data)
  489. self:InitGenerate__82(Root,data)
  490. self:InitGenerate__83(Root,data)
  491. self:InitGenerate__84(Root,data)
  492. self:InitGenerate__85(Root,data)
  493. self:InitGenerate__86(Root,data)
  494. self:InitGenerate__87(Root,data)
  495. self:InitGenerate__88(Root,data)
  496. self:InitGenerate__89(Root,data)
  497. self:InitGenerate__90(Root,data)
  498. self:InitGenerate__91(Root,data)
  499. self:InitGenerate__92(Root,data)
  500. self:InitGenerate__93(Root,data)
  501. self:InitGenerate__94(Root,data)
  502. self:InitGenerate__95(Root,data)
  503. self:InitGenerate__96(Root,data)
  504. self:InitGenerate__97(Root,data)
  505. self:InitGenerate__98(Root,data)
  506. self:InitGenerate__99(Root,data)
  507. self:InitGenerate__100(Root,data)
  508. self:InitGenerate__101(Root,data)
  509. end
  510. ---@private
  511. function UIStarSignTipsView:InitGenerate__1(Root, data)
  512. --[[
  513. Root
  514. --]]
  515. end
  516. ---@private
  517. function UIStarSignTipsView:InitGenerate__2(Root, data)
  518. --[[
  519. UIAnimator
  520. --]]
  521. local tmp = Root:Find("UIAnimator").gameObject
  522. if tolua.getpeer(tmp) == nil then
  523. tolua.setpeer(tmp, {})
  524. end
  525. self.uIAnimator = tmp
  526. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  527. tmp.animator.logWarnings = false
  528. end
  529. ---@private
  530. function UIStarSignTipsView:InitGenerate__3(Root, data)
  531. --[[
  532. UIAnimator/Alpha
  533. --]]
  534. local tmp = Root:Find("UIAnimator/Alpha").gameObject
  535. if tolua.getpeer(tmp) == nil then
  536. tolua.setpeer(tmp, {})
  537. end
  538. self.AnyBtn = tmp
  539. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  540. end
  541. ---@private
  542. function UIStarSignTipsView:InitGenerate__4(Root, data)
  543. --[[
  544. UIAnimator/Window/TopView/ResourceBoxAnim/Currency1
  545. --]]
  546. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency1").gameObject
  547. if tolua.getpeer(tmp) == nil then
  548. tolua.setpeer(tmp, {})
  549. end
  550. self.currency1 = tmp
  551. end
  552. ---@private
  553. function UIStarSignTipsView:InitGenerate__5(Root, data)
  554. --[[
  555. UIAnimator/Window/TopView/ResourceBoxAnim/Currency1/Icon
  556. --]]
  557. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency1/Icon").gameObject
  558. if tolua.getpeer(tmp) == nil then
  559. tolua.setpeer(tmp, {})
  560. end
  561. self.currency1.icon = tmp
  562. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  563. end
  564. ---@private
  565. function UIStarSignTipsView:InitGenerate__6(Root, data)
  566. --[[
  567. UIAnimator/Window/TopView/ResourceBoxAnim/Currency1/Number
  568. --]]
  569. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency1/Number").gameObject
  570. if tolua.getpeer(tmp) == nil then
  571. tolua.setpeer(tmp, {})
  572. end
  573. self.currency1.number = tmp
  574. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  575. end
  576. ---@private
  577. function UIStarSignTipsView:InitGenerate__7(Root, data)
  578. --[[
  579. UIAnimator/Window/TopView/ResourceBoxAnim/Currency1/BtnBuy
  580. --]]
  581. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency1/BtnBuy").gameObject
  582. if tolua.getpeer(tmp) == nil then
  583. tolua.setpeer(tmp, {})
  584. end
  585. self.currency1.btnBuy = tmp
  586. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  587. end
  588. ---@private
  589. function UIStarSignTipsView:InitGenerate__8(Root, data)
  590. --[[
  591. UIAnimator/Window/TopView/ResourceBoxAnim/Currency2
  592. --]]
  593. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency2").gameObject
  594. if tolua.getpeer(tmp) == nil then
  595. tolua.setpeer(tmp, {})
  596. end
  597. self.currency2 = tmp
  598. end
  599. ---@private
  600. function UIStarSignTipsView:InitGenerate__9(Root, data)
  601. --[[
  602. UIAnimator/Window/TopView/ResourceBoxAnim/Currency2/Icon
  603. --]]
  604. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency2/Icon").gameObject
  605. if tolua.getpeer(tmp) == nil then
  606. tolua.setpeer(tmp, {})
  607. end
  608. self.currency2.icon = tmp
  609. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  610. end
  611. ---@private
  612. function UIStarSignTipsView:InitGenerate__10(Root, data)
  613. --[[
  614. UIAnimator/Window/TopView/ResourceBoxAnim/Currency2/Number
  615. --]]
  616. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency2/Number").gameObject
  617. if tolua.getpeer(tmp) == nil then
  618. tolua.setpeer(tmp, {})
  619. end
  620. self.currency2.number = tmp
  621. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  622. end
  623. ---@private
  624. function UIStarSignTipsView:InitGenerate__11(Root, data)
  625. --[[
  626. UIAnimator/Window/TopView/ResourceBoxAnim/Currency2/BtnBuy
  627. --]]
  628. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency2/BtnBuy").gameObject
  629. if tolua.getpeer(tmp) == nil then
  630. tolua.setpeer(tmp, {})
  631. end
  632. self.currency2.btnBuy = tmp
  633. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  634. end
  635. ---@private
  636. function UIStarSignTipsView:InitGenerate__12(Root, data)
  637. --[[
  638. UIAnimator/Window/TopView/ResourceBoxAnim/Currency3
  639. --]]
  640. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency3").gameObject
  641. if tolua.getpeer(tmp) == nil then
  642. tolua.setpeer(tmp, {})
  643. end
  644. self.currency3 = tmp
  645. end
  646. ---@private
  647. function UIStarSignTipsView:InitGenerate__13(Root, data)
  648. --[[
  649. UIAnimator/Window/TopView/ResourceBoxAnim/Currency3/Icon
  650. --]]
  651. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency3/Icon").gameObject
  652. if tolua.getpeer(tmp) == nil then
  653. tolua.setpeer(tmp, {})
  654. end
  655. self.currency3.icon = tmp
  656. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  657. end
  658. ---@private
  659. function UIStarSignTipsView:InitGenerate__14(Root, data)
  660. --[[
  661. UIAnimator/Window/TopView/ResourceBoxAnim/Currency3/Number
  662. --]]
  663. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency3/Number").gameObject
  664. if tolua.getpeer(tmp) == nil then
  665. tolua.setpeer(tmp, {})
  666. end
  667. self.currency3.number = tmp
  668. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  669. end
  670. ---@private
  671. function UIStarSignTipsView:InitGenerate__15(Root, data)
  672. --[[
  673. UIAnimator/Window/TopView/ResourceBoxAnim/Currency3/BtnBuy
  674. --]]
  675. local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBoxAnim/Currency3/BtnBuy").gameObject
  676. if tolua.getpeer(tmp) == nil then
  677. tolua.setpeer(tmp, {})
  678. end
  679. self.currency3.btnBuy = tmp
  680. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  681. end
  682. ---@private
  683. function UIStarSignTipsView:InitGenerate__16(Root, data)
  684. --[[
  685. UIAnimator/Window/Astrolabe
  686. --]]
  687. local tmp = Root:Find("UIAnimator/Window/Astrolabe").gameObject
  688. if tolua.getpeer(tmp) == nil then
  689. tolua.setpeer(tmp, {})
  690. end
  691. self.astrolabe = tmp
  692. end
  693. ---@private
  694. function UIStarSignTipsView:InitGenerate__17(Root, data)
  695. --[[
  696. UIAnimator/Window/Astrolabe/BtnUseLucky
  697. --]]
  698. local tmp = Root:Find("UIAnimator/Window/Astrolabe/BtnUseLucky").gameObject
  699. if tolua.getpeer(tmp) == nil then
  700. tolua.setpeer(tmp, {})
  701. end
  702. self.btnUseLucky = tmp
  703. tmp.toggle = tmp:GetComponent(Enum.TypeInfo.Toggle)
  704. end
  705. ---@private
  706. function UIStarSignTipsView:InitGenerate__18(Root, data)
  707. --[[
  708. UIAnimator/Window/Astrolabe/BtnUseLucky/Text
  709. --]]
  710. local tmp = Root:Find("UIAnimator/Window/Astrolabe/BtnUseLucky/Text").gameObject
  711. if tolua.getpeer(tmp) == nil then
  712. tolua.setpeer(tmp, {})
  713. end
  714. self.btnUseLucky.text = tmp
  715. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  716. end
  717. ---@private
  718. function UIStarSignTipsView:InitGenerate__19(Root, data)
  719. --[[
  720. UIAnimator/Window/Astrolabe/BtnUseLucky/Txt
  721. --]]
  722. local tmp = Root:Find("UIAnimator/Window/Astrolabe/BtnUseLucky/Txt").gameObject
  723. if tolua.getpeer(tmp) == nil then
  724. tolua.setpeer(tmp, {})
  725. end
  726. self.txt = tmp
  727. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  728. end
  729. ---@private
  730. function UIStarSignTipsView:InitGenerate__20(Root, data)
  731. --[[
  732. UIAnimator/Window/Astrolabe/BtnAstrology
  733. --]]
  734. local tmp = Root:Find("UIAnimator/Window/Astrolabe/BtnAstrology").gameObject
  735. if tolua.getpeer(tmp) == nil then
  736. tolua.setpeer(tmp, {})
  737. end
  738. self.btnAstrology = tmp
  739. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  740. end
  741. ---@private
  742. function UIStarSignTipsView:InitGenerate__21(Root, data)
  743. --[[
  744. UIAnimator/Window/Astrolabe/BtnAstrology/Content/Image
  745. --]]
  746. local tmp = Root:Find("UIAnimator/Window/Astrolabe/BtnAstrology/Content/Image").gameObject
  747. if tolua.getpeer(tmp) == nil then
  748. tolua.setpeer(tmp, {})
  749. end
  750. self.btnAstrology.image = tmp
  751. tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
  752. end
  753. ---@private
  754. function UIStarSignTipsView:InitGenerate__22(Root, data)
  755. --[[
  756. UIAnimator/Window/Astrolabe/BtnAstrology/Content/num
  757. --]]
  758. local tmp = Root:Find("UIAnimator/Window/Astrolabe/BtnAstrology/Content/num").gameObject
  759. if tolua.getpeer(tmp) == nil then
  760. tolua.setpeer(tmp, {})
  761. end
  762. self.btnAstrology.num = tmp
  763. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  764. end
  765. ---@private
  766. function UIStarSignTipsView:InitGenerate__23(Root, data)
  767. --[[
  768. UIAnimator/Window/Astrolabe/ScrollBox
  769. --]]
  770. local tmp = Root:Find("UIAnimator/Window/Astrolabe/ScrollBox").gameObject
  771. if tolua.getpeer(tmp) == nil then
  772. tolua.setpeer(tmp, {})
  773. end
  774. self.scrollBox = tmp
  775. end
  776. ---@private
  777. function UIStarSignTipsView:InitGenerate__24(Root, data)
  778. --[[
  779. UIAnimator/Window/Astrolabe/ScrollBox/Box/scroll
  780. --]]
  781. local tmp = Root:Find("UIAnimator/Window/Astrolabe/ScrollBox/Box/scroll").gameObject
  782. if tolua.getpeer(tmp) == nil then
  783. tolua.setpeer(tmp, {})
  784. end
  785. self.scroll = tmp
  786. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  787. end
  788. ---@private
  789. function UIStarSignTipsView:InitGenerate__25(Root, data)
  790. --[[
  791. UIAnimator/Window/Astrolabe/ScrollBox/StopAnim
  792. --]]
  793. local tmp = Root:Find("UIAnimator/Window/Astrolabe/ScrollBox/StopAnim").gameObject
  794. if tolua.getpeer(tmp) == nil then
  795. tolua.setpeer(tmp, {})
  796. end
  797. self.stopAnim = tmp
  798. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  799. tmp.animator.logWarnings = false
  800. end
  801. ---@private
  802. function UIStarSignTipsView:InitGenerate__26(Root, data)
  803. --[[
  804. UIAnimator/Window/Astrolabe/StarSign/Sign1
  805. --]]
  806. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign1").gameObject
  807. if tolua.getpeer(tmp) == nil then
  808. tolua.setpeer(tmp, {})
  809. end
  810. self.sign1 = tmp
  811. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  812. tmp.animator.logWarnings = false
  813. end
  814. ---@private
  815. function UIStarSignTipsView:InitGenerate__27(Root, data)
  816. --[[
  817. UIAnimator/Window/Astrolabe/StarSign/Sign2
  818. --]]
  819. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign2").gameObject
  820. if tolua.getpeer(tmp) == nil then
  821. tolua.setpeer(tmp, {})
  822. end
  823. self.sign2 = tmp
  824. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  825. tmp.animator.logWarnings = false
  826. end
  827. ---@private
  828. function UIStarSignTipsView:InitGenerate__28(Root, data)
  829. --[[
  830. UIAnimator/Window/Astrolabe/StarSign/Sign3
  831. --]]
  832. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign3").gameObject
  833. if tolua.getpeer(tmp) == nil then
  834. tolua.setpeer(tmp, {})
  835. end
  836. self.sign3 = tmp
  837. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  838. tmp.animator.logWarnings = false
  839. end
  840. ---@private
  841. function UIStarSignTipsView:InitGenerate__29(Root, data)
  842. --[[
  843. UIAnimator/Window/Astrolabe/StarSign/Sign4
  844. --]]
  845. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign4").gameObject
  846. if tolua.getpeer(tmp) == nil then
  847. tolua.setpeer(tmp, {})
  848. end
  849. self.sign4 = tmp
  850. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  851. tmp.animator.logWarnings = false
  852. end
  853. ---@private
  854. function UIStarSignTipsView:InitGenerate__30(Root, data)
  855. --[[
  856. UIAnimator/Window/Astrolabe/StarSign/Sign5
  857. --]]
  858. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign5").gameObject
  859. if tolua.getpeer(tmp) == nil then
  860. tolua.setpeer(tmp, {})
  861. end
  862. self.sign5 = tmp
  863. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  864. tmp.animator.logWarnings = false
  865. end
  866. ---@private
  867. function UIStarSignTipsView:InitGenerate__31(Root, data)
  868. --[[
  869. UIAnimator/Window/Astrolabe/StarSign/Sign6
  870. --]]
  871. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign6").gameObject
  872. if tolua.getpeer(tmp) == nil then
  873. tolua.setpeer(tmp, {})
  874. end
  875. self.sign6 = tmp
  876. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  877. tmp.animator.logWarnings = false
  878. end
  879. ---@private
  880. function UIStarSignTipsView:InitGenerate__32(Root, data)
  881. --[[
  882. UIAnimator/Window/Astrolabe/StarSign/Sign7
  883. --]]
  884. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign7").gameObject
  885. if tolua.getpeer(tmp) == nil then
  886. tolua.setpeer(tmp, {})
  887. end
  888. self.sign7 = tmp
  889. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  890. tmp.animator.logWarnings = false
  891. end
  892. ---@private
  893. function UIStarSignTipsView:InitGenerate__33(Root, data)
  894. --[[
  895. UIAnimator/Window/Astrolabe/StarSign/Sign8
  896. --]]
  897. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign8").gameObject
  898. if tolua.getpeer(tmp) == nil then
  899. tolua.setpeer(tmp, {})
  900. end
  901. self.sign8 = tmp
  902. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  903. tmp.animator.logWarnings = false
  904. end
  905. ---@private
  906. function UIStarSignTipsView:InitGenerate__34(Root, data)
  907. --[[
  908. UIAnimator/Window/Astrolabe/StarSign/Sign9
  909. --]]
  910. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign9").gameObject
  911. if tolua.getpeer(tmp) == nil then
  912. tolua.setpeer(tmp, {})
  913. end
  914. self.sign9 = tmp
  915. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  916. tmp.animator.logWarnings = false
  917. end
  918. ---@private
  919. function UIStarSignTipsView:InitGenerate__35(Root, data)
  920. --[[
  921. UIAnimator/Window/Astrolabe/StarSign/Sign10
  922. --]]
  923. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign10").gameObject
  924. if tolua.getpeer(tmp) == nil then
  925. tolua.setpeer(tmp, {})
  926. end
  927. self.sign10 = tmp
  928. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  929. tmp.animator.logWarnings = false
  930. end
  931. ---@private
  932. function UIStarSignTipsView:InitGenerate__36(Root, data)
  933. --[[
  934. UIAnimator/Window/Astrolabe/StarSign/Sign11
  935. --]]
  936. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign11").gameObject
  937. if tolua.getpeer(tmp) == nil then
  938. tolua.setpeer(tmp, {})
  939. end
  940. self.sign11 = tmp
  941. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  942. tmp.animator.logWarnings = false
  943. end
  944. ---@private
  945. function UIStarSignTipsView:InitGenerate__37(Root, data)
  946. --[[
  947. UIAnimator/Window/Astrolabe/StarSign/Sign12
  948. --]]
  949. local tmp = Root:Find("UIAnimator/Window/Astrolabe/StarSign/Sign12").gameObject
  950. if tolua.getpeer(tmp) == nil then
  951. tolua.setpeer(tmp, {})
  952. end
  953. self.sign12 = tmp
  954. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  955. tmp.animator.logWarnings = false
  956. end
  957. ---@private
  958. function UIStarSignTipsView:InitGenerate__38(Root, data)
  959. --[[
  960. UIAnimator/Window/Astrolabe/ArrowAnim
  961. --]]
  962. local tmp = Root:Find("UIAnimator/Window/Astrolabe/ArrowAnim").gameObject
  963. if tolua.getpeer(tmp) == nil then
  964. tolua.setpeer(tmp, {})
  965. end
  966. self.scrollBox.arrowAnim = tmp
  967. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  968. tmp.animator.logWarnings = false
  969. end
  970. ---@private
  971. function UIStarSignTipsView:InitGenerate__39(Root, data)
  972. --[[
  973. UIAnimator/Window/Astrolabe/ArrowAnim/Fx_UIStarSignTipsEffect_01/Particle System
  974. --]]
  975. local tmp = Root:Find("UIAnimator/Window/Astrolabe/ArrowAnim/Fx_UIStarSignTipsEffect_01/Particle System").gameObject
  976. if tolua.getpeer(tmp) == nil then
  977. tolua.setpeer(tmp, {})
  978. end
  979. self.fx_uistarsigntipseffect_01 = tmp
  980. tmp.uIParticle = tmp:GetComponent(Enum.TypeInfo.UIParticle)
  981. end
  982. ---@private
  983. function UIStarSignTipsView:InitGenerate__40(Root, data)
  984. --[[
  985. UIAnimator/Window/Astrolabe/ArrowAnim/Fx_UIStarSignTipsEffect_02/Particle System
  986. --]]
  987. local tmp = Root:Find("UIAnimator/Window/Astrolabe/ArrowAnim/Fx_UIStarSignTipsEffect_02/Particle System").gameObject
  988. if tolua.getpeer(tmp) == nil then
  989. tolua.setpeer(tmp, {})
  990. end
  991. self.fx_uistarsigntipseffect_02 = tmp
  992. tmp.uIParticle = tmp:GetComponent(Enum.TypeInfo.UIParticle)
  993. end
  994. ---@private
  995. function UIStarSignTipsView:InitGenerate__41(Root, data)
  996. --[[
  997. UIAnimator/Window/RewardsBox
  998. --]]
  999. local tmp = Root:Find("UIAnimator/Window/RewardsBox").gameObject
  1000. if tolua.getpeer(tmp) == nil then
  1001. tolua.setpeer(tmp, {})
  1002. end
  1003. self.rewardsBox = tmp
  1004. end
  1005. ---@private
  1006. function UIStarSignTipsView:InitGenerate__42(Root, data)
  1007. --[[
  1008. UIAnimator/Window/RewardsBox/Viewport/Content
  1009. --]]
  1010. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content").gameObject
  1011. if tolua.getpeer(tmp) == nil then
  1012. tolua.setpeer(tmp, {})
  1013. end
  1014. self.rewardsBox.content = tmp
  1015. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1016. end
  1017. ---@private
  1018. function UIStarSignTipsView:InitGenerate__43(Root, data)
  1019. --[[
  1020. UIAnimator/Window/RewardsBox/Viewport/Content/Item1
  1021. --]]
  1022. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item1").gameObject
  1023. if tolua.getpeer(tmp) == nil then
  1024. tolua.setpeer(tmp, {})
  1025. end
  1026. self.rewardsBox.item1 = tmp
  1027. end
  1028. ---@private
  1029. function UIStarSignTipsView:InitGenerate__44(Root, data)
  1030. --[[
  1031. UIAnimator/Window/RewardsBox/Viewport/Content/Item1/Current
  1032. --]]
  1033. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item1/Current").gameObject
  1034. if tolua.getpeer(tmp) == nil then
  1035. tolua.setpeer(tmp, {})
  1036. end
  1037. self.rewardsBox.item1.current = tmp
  1038. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1039. tmp.animator.logWarnings = false
  1040. end
  1041. ---@private
  1042. function UIStarSignTipsView:InitGenerate__45(Root, data)
  1043. --[[
  1044. UIAnimator/Window/RewardsBox/Viewport/Content/Item1/num
  1045. --]]
  1046. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item1/num").gameObject
  1047. if tolua.getpeer(tmp) == nil then
  1048. tolua.setpeer(tmp, {})
  1049. end
  1050. self.rewardsBox.item1.num = tmp
  1051. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1052. end
  1053. ---@private
  1054. function UIStarSignTipsView:InitGenerate__46(Root, data)
  1055. --[[
  1056. UIAnimator/Window/RewardsBox/Viewport/Content/Item1/IconSmallItem
  1057. --]]
  1058. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item1/IconSmallItem").gameObject
  1059. if tolua.getpeer(tmp) == nil then
  1060. tolua.setpeer(tmp, {})
  1061. end
  1062. self.rewardsBox.item1.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1063. self.rewardsBox.item1.iconSmallItem.prefabName = "IconItem"
  1064. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1065. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1066. end
  1067. ---@private
  1068. function UIStarSignTipsView:InitGenerate__47(Root, data)
  1069. --[[
  1070. UIAnimator/Window/RewardsBox/Viewport/Content/Item2
  1071. --]]
  1072. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item2").gameObject
  1073. if tolua.getpeer(tmp) == nil then
  1074. tolua.setpeer(tmp, {})
  1075. end
  1076. self.rewardsBox.item2 = tmp
  1077. end
  1078. ---@private
  1079. function UIStarSignTipsView:InitGenerate__48(Root, data)
  1080. --[[
  1081. UIAnimator/Window/RewardsBox/Viewport/Content/Item2/Current
  1082. --]]
  1083. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item2/Current").gameObject
  1084. if tolua.getpeer(tmp) == nil then
  1085. tolua.setpeer(tmp, {})
  1086. end
  1087. self.rewardsBox.item2.current = tmp
  1088. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1089. tmp.animator.logWarnings = false
  1090. end
  1091. ---@private
  1092. function UIStarSignTipsView:InitGenerate__49(Root, data)
  1093. --[[
  1094. UIAnimator/Window/RewardsBox/Viewport/Content/Item2/num
  1095. --]]
  1096. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item2/num").gameObject
  1097. if tolua.getpeer(tmp) == nil then
  1098. tolua.setpeer(tmp, {})
  1099. end
  1100. self.rewardsBox.item2.num = tmp
  1101. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1102. end
  1103. ---@private
  1104. function UIStarSignTipsView:InitGenerate__50(Root, data)
  1105. --[[
  1106. UIAnimator/Window/RewardsBox/Viewport/Content/Item2/IconSmallItem
  1107. --]]
  1108. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item2/IconSmallItem").gameObject
  1109. if tolua.getpeer(tmp) == nil then
  1110. tolua.setpeer(tmp, {})
  1111. end
  1112. self.rewardsBox.item2.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1113. self.rewardsBox.item2.iconSmallItem.prefabName = "IconItem"
  1114. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1115. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1116. end
  1117. ---@private
  1118. function UIStarSignTipsView:InitGenerate__51(Root, data)
  1119. --[[
  1120. UIAnimator/Window/RewardsBox/Viewport/Content/Item3
  1121. --]]
  1122. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item3").gameObject
  1123. if tolua.getpeer(tmp) == nil then
  1124. tolua.setpeer(tmp, {})
  1125. end
  1126. self.rewardsBox.item3 = tmp
  1127. end
  1128. ---@private
  1129. function UIStarSignTipsView:InitGenerate__52(Root, data)
  1130. --[[
  1131. UIAnimator/Window/RewardsBox/Viewport/Content/Item3/Current
  1132. --]]
  1133. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item3/Current").gameObject
  1134. if tolua.getpeer(tmp) == nil then
  1135. tolua.setpeer(tmp, {})
  1136. end
  1137. self.rewardsBox.item3.current = tmp
  1138. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1139. tmp.animator.logWarnings = false
  1140. end
  1141. ---@private
  1142. function UIStarSignTipsView:InitGenerate__53(Root, data)
  1143. --[[
  1144. UIAnimator/Window/RewardsBox/Viewport/Content/Item3/num
  1145. --]]
  1146. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item3/num").gameObject
  1147. if tolua.getpeer(tmp) == nil then
  1148. tolua.setpeer(tmp, {})
  1149. end
  1150. self.rewardsBox.item3.num = tmp
  1151. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1152. end
  1153. ---@private
  1154. function UIStarSignTipsView:InitGenerate__54(Root, data)
  1155. --[[
  1156. UIAnimator/Window/RewardsBox/Viewport/Content/Item3/IconSmallItem
  1157. --]]
  1158. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item3/IconSmallItem").gameObject
  1159. if tolua.getpeer(tmp) == nil then
  1160. tolua.setpeer(tmp, {})
  1161. end
  1162. self.rewardsBox.item3.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1163. self.rewardsBox.item3.iconSmallItem.prefabName = "IconItem"
  1164. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1165. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1166. end
  1167. ---@private
  1168. function UIStarSignTipsView:InitGenerate__55(Root, data)
  1169. --[[
  1170. UIAnimator/Window/RewardsBox/Viewport/Content/Item4
  1171. --]]
  1172. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item4").gameObject
  1173. if tolua.getpeer(tmp) == nil then
  1174. tolua.setpeer(tmp, {})
  1175. end
  1176. self.rewardsBox.item4 = tmp
  1177. end
  1178. ---@private
  1179. function UIStarSignTipsView:InitGenerate__56(Root, data)
  1180. --[[
  1181. UIAnimator/Window/RewardsBox/Viewport/Content/Item4/Current
  1182. --]]
  1183. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item4/Current").gameObject
  1184. if tolua.getpeer(tmp) == nil then
  1185. tolua.setpeer(tmp, {})
  1186. end
  1187. self.rewardsBox.item4.current = tmp
  1188. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1189. tmp.animator.logWarnings = false
  1190. end
  1191. ---@private
  1192. function UIStarSignTipsView:InitGenerate__57(Root, data)
  1193. --[[
  1194. UIAnimator/Window/RewardsBox/Viewport/Content/Item4/num
  1195. --]]
  1196. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item4/num").gameObject
  1197. if tolua.getpeer(tmp) == nil then
  1198. tolua.setpeer(tmp, {})
  1199. end
  1200. self.rewardsBox.item4.num = tmp
  1201. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1202. end
  1203. ---@private
  1204. function UIStarSignTipsView:InitGenerate__58(Root, data)
  1205. --[[
  1206. UIAnimator/Window/RewardsBox/Viewport/Content/Item4/IconSmallItem
  1207. --]]
  1208. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item4/IconSmallItem").gameObject
  1209. if tolua.getpeer(tmp) == nil then
  1210. tolua.setpeer(tmp, {})
  1211. end
  1212. self.rewardsBox.item4.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1213. self.rewardsBox.item4.iconSmallItem.prefabName = "IconItem"
  1214. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1215. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1216. end
  1217. ---@private
  1218. function UIStarSignTipsView:InitGenerate__59(Root, data)
  1219. --[[
  1220. UIAnimator/Window/RewardsBox/Viewport/Content/Item5
  1221. --]]
  1222. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item5").gameObject
  1223. if tolua.getpeer(tmp) == nil then
  1224. tolua.setpeer(tmp, {})
  1225. end
  1226. self.rewardsBox.item5 = tmp
  1227. end
  1228. ---@private
  1229. function UIStarSignTipsView:InitGenerate__60(Root, data)
  1230. --[[
  1231. UIAnimator/Window/RewardsBox/Viewport/Content/Item5/Current
  1232. --]]
  1233. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item5/Current").gameObject
  1234. if tolua.getpeer(tmp) == nil then
  1235. tolua.setpeer(tmp, {})
  1236. end
  1237. self.rewardsBox.item5.current = tmp
  1238. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1239. tmp.animator.logWarnings = false
  1240. end
  1241. ---@private
  1242. function UIStarSignTipsView:InitGenerate__61(Root, data)
  1243. --[[
  1244. UIAnimator/Window/RewardsBox/Viewport/Content/Item5/num
  1245. --]]
  1246. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item5/num").gameObject
  1247. if tolua.getpeer(tmp) == nil then
  1248. tolua.setpeer(tmp, {})
  1249. end
  1250. self.rewardsBox.item5.num = tmp
  1251. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1252. end
  1253. ---@private
  1254. function UIStarSignTipsView:InitGenerate__62(Root, data)
  1255. --[[
  1256. UIAnimator/Window/RewardsBox/Viewport/Content/Item5/IconSmallItem
  1257. --]]
  1258. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item5/IconSmallItem").gameObject
  1259. if tolua.getpeer(tmp) == nil then
  1260. tolua.setpeer(tmp, {})
  1261. end
  1262. self.rewardsBox.item5.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1263. self.rewardsBox.item5.iconSmallItem.prefabName = "IconItem"
  1264. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1265. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1266. end
  1267. ---@private
  1268. function UIStarSignTipsView:InitGenerate__63(Root, data)
  1269. --[[
  1270. UIAnimator/Window/RewardsBox/Viewport/Content/Item6
  1271. --]]
  1272. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item6").gameObject
  1273. if tolua.getpeer(tmp) == nil then
  1274. tolua.setpeer(tmp, {})
  1275. end
  1276. self.rewardsBox.item6 = tmp
  1277. end
  1278. ---@private
  1279. function UIStarSignTipsView:InitGenerate__64(Root, data)
  1280. --[[
  1281. UIAnimator/Window/RewardsBox/Viewport/Content/Item6/Current
  1282. --]]
  1283. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item6/Current").gameObject
  1284. if tolua.getpeer(tmp) == nil then
  1285. tolua.setpeer(tmp, {})
  1286. end
  1287. self.rewardsBox.item6.current = tmp
  1288. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1289. tmp.animator.logWarnings = false
  1290. end
  1291. ---@private
  1292. function UIStarSignTipsView:InitGenerate__65(Root, data)
  1293. --[[
  1294. UIAnimator/Window/RewardsBox/Viewport/Content/Item6/num
  1295. --]]
  1296. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item6/num").gameObject
  1297. if tolua.getpeer(tmp) == nil then
  1298. tolua.setpeer(tmp, {})
  1299. end
  1300. self.rewardsBox.item6.num = tmp
  1301. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1302. end
  1303. ---@private
  1304. function UIStarSignTipsView:InitGenerate__66(Root, data)
  1305. --[[
  1306. UIAnimator/Window/RewardsBox/Viewport/Content/Item6/IconSmallItem
  1307. --]]
  1308. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item6/IconSmallItem").gameObject
  1309. if tolua.getpeer(tmp) == nil then
  1310. tolua.setpeer(tmp, {})
  1311. end
  1312. self.rewardsBox.item6.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1313. self.rewardsBox.item6.iconSmallItem.prefabName = "IconItem"
  1314. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1315. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1316. end
  1317. ---@private
  1318. function UIStarSignTipsView:InitGenerate__67(Root, data)
  1319. --[[
  1320. UIAnimator/Window/RewardsBox/Viewport/Content/Item7
  1321. --]]
  1322. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item7").gameObject
  1323. if tolua.getpeer(tmp) == nil then
  1324. tolua.setpeer(tmp, {})
  1325. end
  1326. self.rewardsBox.item7 = tmp
  1327. end
  1328. ---@private
  1329. function UIStarSignTipsView:InitGenerate__68(Root, data)
  1330. --[[
  1331. UIAnimator/Window/RewardsBox/Viewport/Content/Item7/Current
  1332. --]]
  1333. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item7/Current").gameObject
  1334. if tolua.getpeer(tmp) == nil then
  1335. tolua.setpeer(tmp, {})
  1336. end
  1337. self.rewardsBox.item7.current = tmp
  1338. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1339. tmp.animator.logWarnings = false
  1340. end
  1341. ---@private
  1342. function UIStarSignTipsView:InitGenerate__69(Root, data)
  1343. --[[
  1344. UIAnimator/Window/RewardsBox/Viewport/Content/Item7/num
  1345. --]]
  1346. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item7/num").gameObject
  1347. if tolua.getpeer(tmp) == nil then
  1348. tolua.setpeer(tmp, {})
  1349. end
  1350. self.rewardsBox.item7.num = tmp
  1351. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1352. end
  1353. ---@private
  1354. function UIStarSignTipsView:InitGenerate__70(Root, data)
  1355. --[[
  1356. UIAnimator/Window/RewardsBox/Viewport/Content/Item7/IconSmallItem
  1357. --]]
  1358. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item7/IconSmallItem").gameObject
  1359. if tolua.getpeer(tmp) == nil then
  1360. tolua.setpeer(tmp, {})
  1361. end
  1362. self.rewardsBox.item7.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1363. self.rewardsBox.item7.iconSmallItem.prefabName = "IconItem"
  1364. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1365. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1366. end
  1367. ---@private
  1368. function UIStarSignTipsView:InitGenerate__71(Root, data)
  1369. --[[
  1370. UIAnimator/Window/RewardsBox/Viewport/Content/Item8
  1371. --]]
  1372. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item8").gameObject
  1373. if tolua.getpeer(tmp) == nil then
  1374. tolua.setpeer(tmp, {})
  1375. end
  1376. self.rewardsBox.item8 = tmp
  1377. end
  1378. ---@private
  1379. function UIStarSignTipsView:InitGenerate__72(Root, data)
  1380. --[[
  1381. UIAnimator/Window/RewardsBox/Viewport/Content/Item8/Current
  1382. --]]
  1383. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item8/Current").gameObject
  1384. if tolua.getpeer(tmp) == nil then
  1385. tolua.setpeer(tmp, {})
  1386. end
  1387. self.rewardsBox.item8.current = tmp
  1388. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1389. tmp.animator.logWarnings = false
  1390. end
  1391. ---@private
  1392. function UIStarSignTipsView:InitGenerate__73(Root, data)
  1393. --[[
  1394. UIAnimator/Window/RewardsBox/Viewport/Content/Item8/num
  1395. --]]
  1396. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item8/num").gameObject
  1397. if tolua.getpeer(tmp) == nil then
  1398. tolua.setpeer(tmp, {})
  1399. end
  1400. self.rewardsBox.item8.num = tmp
  1401. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1402. end
  1403. ---@private
  1404. function UIStarSignTipsView:InitGenerate__74(Root, data)
  1405. --[[
  1406. UIAnimator/Window/RewardsBox/Viewport/Content/Item8/IconSmallItem
  1407. --]]
  1408. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item8/IconSmallItem").gameObject
  1409. if tolua.getpeer(tmp) == nil then
  1410. tolua.setpeer(tmp, {})
  1411. end
  1412. self.rewardsBox.item8.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1413. self.rewardsBox.item8.iconSmallItem.prefabName = "IconItem"
  1414. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1415. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1416. end
  1417. ---@private
  1418. function UIStarSignTipsView:InitGenerate__75(Root, data)
  1419. --[[
  1420. UIAnimator/Window/RewardsBox/Viewport/Content/Item9
  1421. --]]
  1422. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item9").gameObject
  1423. if tolua.getpeer(tmp) == nil then
  1424. tolua.setpeer(tmp, {})
  1425. end
  1426. self.rewardsBox.item9 = tmp
  1427. end
  1428. ---@private
  1429. function UIStarSignTipsView:InitGenerate__76(Root, data)
  1430. --[[
  1431. UIAnimator/Window/RewardsBox/Viewport/Content/Item9/Current
  1432. --]]
  1433. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item9/Current").gameObject
  1434. if tolua.getpeer(tmp) == nil then
  1435. tolua.setpeer(tmp, {})
  1436. end
  1437. self.rewardsBox.item9.current = tmp
  1438. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1439. tmp.animator.logWarnings = false
  1440. end
  1441. ---@private
  1442. function UIStarSignTipsView:InitGenerate__77(Root, data)
  1443. --[[
  1444. UIAnimator/Window/RewardsBox/Viewport/Content/Item9/num
  1445. --]]
  1446. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item9/num").gameObject
  1447. if tolua.getpeer(tmp) == nil then
  1448. tolua.setpeer(tmp, {})
  1449. end
  1450. self.rewardsBox.item9.num = tmp
  1451. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1452. end
  1453. ---@private
  1454. function UIStarSignTipsView:InitGenerate__78(Root, data)
  1455. --[[
  1456. UIAnimator/Window/RewardsBox/Viewport/Content/Item9/IconSmallItem
  1457. --]]
  1458. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item9/IconSmallItem").gameObject
  1459. if tolua.getpeer(tmp) == nil then
  1460. tolua.setpeer(tmp, {})
  1461. end
  1462. self.rewardsBox.item9.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1463. self.rewardsBox.item9.iconSmallItem.prefabName = "IconItem"
  1464. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1465. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1466. end
  1467. ---@private
  1468. function UIStarSignTipsView:InitGenerate__79(Root, data)
  1469. --[[
  1470. UIAnimator/Window/RewardsBox/Viewport/Content/Item10
  1471. --]]
  1472. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item10").gameObject
  1473. if tolua.getpeer(tmp) == nil then
  1474. tolua.setpeer(tmp, {})
  1475. end
  1476. self.rewardsBox.item10 = tmp
  1477. end
  1478. ---@private
  1479. function UIStarSignTipsView:InitGenerate__80(Root, data)
  1480. --[[
  1481. UIAnimator/Window/RewardsBox/Viewport/Content/Item10/Current
  1482. --]]
  1483. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item10/Current").gameObject
  1484. if tolua.getpeer(tmp) == nil then
  1485. tolua.setpeer(tmp, {})
  1486. end
  1487. self.rewardsBox.item10.current = tmp
  1488. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1489. tmp.animator.logWarnings = false
  1490. end
  1491. ---@private
  1492. function UIStarSignTipsView:InitGenerate__81(Root, data)
  1493. --[[
  1494. UIAnimator/Window/RewardsBox/Viewport/Content/Item10/num
  1495. --]]
  1496. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item10/num").gameObject
  1497. if tolua.getpeer(tmp) == nil then
  1498. tolua.setpeer(tmp, {})
  1499. end
  1500. self.rewardsBox.item10.num = tmp
  1501. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1502. end
  1503. ---@private
  1504. function UIStarSignTipsView:InitGenerate__82(Root, data)
  1505. --[[
  1506. UIAnimator/Window/RewardsBox/Viewport/Content/Item10/IconSmallItem
  1507. --]]
  1508. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item10/IconSmallItem").gameObject
  1509. if tolua.getpeer(tmp) == nil then
  1510. tolua.setpeer(tmp, {})
  1511. end
  1512. self.rewardsBox.item10.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1513. self.rewardsBox.item10.iconSmallItem.prefabName = "IconItem"
  1514. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1515. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1516. end
  1517. ---@private
  1518. function UIStarSignTipsView:InitGenerate__83(Root, data)
  1519. --[[
  1520. UIAnimator/Window/RewardsBox/Viewport/Content/Item11
  1521. --]]
  1522. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item11").gameObject
  1523. if tolua.getpeer(tmp) == nil then
  1524. tolua.setpeer(tmp, {})
  1525. end
  1526. self.rewardsBox.item11 = tmp
  1527. end
  1528. ---@private
  1529. function UIStarSignTipsView:InitGenerate__84(Root, data)
  1530. --[[
  1531. UIAnimator/Window/RewardsBox/Viewport/Content/Item11/Current
  1532. --]]
  1533. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item11/Current").gameObject
  1534. if tolua.getpeer(tmp) == nil then
  1535. tolua.setpeer(tmp, {})
  1536. end
  1537. self.rewardsBox.item11.current = tmp
  1538. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1539. tmp.animator.logWarnings = false
  1540. end
  1541. ---@private
  1542. function UIStarSignTipsView:InitGenerate__85(Root, data)
  1543. --[[
  1544. UIAnimator/Window/RewardsBox/Viewport/Content/Item11/num
  1545. --]]
  1546. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item11/num").gameObject
  1547. if tolua.getpeer(tmp) == nil then
  1548. tolua.setpeer(tmp, {})
  1549. end
  1550. self.rewardsBox.item11.num = tmp
  1551. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1552. end
  1553. ---@private
  1554. function UIStarSignTipsView:InitGenerate__86(Root, data)
  1555. --[[
  1556. UIAnimator/Window/RewardsBox/Viewport/Content/Item11/IconSmallItem
  1557. --]]
  1558. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item11/IconSmallItem").gameObject
  1559. if tolua.getpeer(tmp) == nil then
  1560. tolua.setpeer(tmp, {})
  1561. end
  1562. self.rewardsBox.item11.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1563. self.rewardsBox.item11.iconSmallItem.prefabName = "IconItem"
  1564. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1565. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1566. end
  1567. ---@private
  1568. function UIStarSignTipsView:InitGenerate__87(Root, data)
  1569. --[[
  1570. UIAnimator/Window/RewardsBox/Viewport/Content/Item12
  1571. --]]
  1572. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item12").gameObject
  1573. if tolua.getpeer(tmp) == nil then
  1574. tolua.setpeer(tmp, {})
  1575. end
  1576. self.rewardsBox.item12 = tmp
  1577. end
  1578. ---@private
  1579. function UIStarSignTipsView:InitGenerate__88(Root, data)
  1580. --[[
  1581. UIAnimator/Window/RewardsBox/Viewport/Content/Item12/Current
  1582. --]]
  1583. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item12/Current").gameObject
  1584. if tolua.getpeer(tmp) == nil then
  1585. tolua.setpeer(tmp, {})
  1586. end
  1587. self.rewardsBox.item12.current = tmp
  1588. tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
  1589. tmp.animator.logWarnings = false
  1590. end
  1591. ---@private
  1592. function UIStarSignTipsView:InitGenerate__89(Root, data)
  1593. --[[
  1594. UIAnimator/Window/RewardsBox/Viewport/Content/Item12/num
  1595. --]]
  1596. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item12/num").gameObject
  1597. if tolua.getpeer(tmp) == nil then
  1598. tolua.setpeer(tmp, {})
  1599. end
  1600. self.rewardsBox.item12.num = tmp
  1601. tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
  1602. end
  1603. ---@private
  1604. function UIStarSignTipsView:InitGenerate__90(Root, data)
  1605. --[[
  1606. UIAnimator/Window/RewardsBox/Viewport/Content/Item12/IconSmallItem
  1607. --]]
  1608. local tmp = Root:Find("UIAnimator/Window/RewardsBox/Viewport/Content/Item12/IconSmallItem").gameObject
  1609. if tolua.getpeer(tmp) == nil then
  1610. tolua.setpeer(tmp, {})
  1611. end
  1612. self.rewardsBox.item12.iconSmallItem = CommonUtil.BindGridViewItem2LuaStatic("IconItem", tmp)
  1613. self.rewardsBox.item12.iconSmallItem.prefabName = "IconItem"
  1614. tmp.rectTransform = tmp:GetComponent(Enum.TypeInfo.RectTransform)
  1615. tmp.layoutElement = tmp:GetComponent(Enum.TypeInfo.LayoutElement)
  1616. end
  1617. ---@private
  1618. function UIStarSignTipsView:InitGenerate__91(Root, data)
  1619. --[[
  1620. UIAnimator/Window/ScoreInfo
  1621. --]]
  1622. local tmp = Root:Find("UIAnimator/Window/ScoreInfo").gameObject
  1623. if tolua.getpeer(tmp) == nil then
  1624. tolua.setpeer(tmp, {})
  1625. end
  1626. self.scoreInfo = tmp
  1627. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1628. end
  1629. ---@private
  1630. function UIStarSignTipsView:InitGenerate__92(Root, data)
  1631. --[[
  1632. UIAnimator/Window/ScoreInfo/num1
  1633. --]]
  1634. local tmp = Root:Find("UIAnimator/Window/ScoreInfo/num1").gameObject
  1635. if tolua.getpeer(tmp) == nil then
  1636. tolua.setpeer(tmp, {})
  1637. end
  1638. self.scoreInfo.num1 = tmp
  1639. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1640. end
  1641. ---@private
  1642. function UIStarSignTipsView:InitGenerate__93(Root, data)
  1643. --[[
  1644. UIAnimator/Window/ScoreInfo/text2
  1645. --]]
  1646. local tmp = Root:Find("UIAnimator/Window/ScoreInfo/text2").gameObject
  1647. if tolua.getpeer(tmp) == nil then
  1648. tolua.setpeer(tmp, {})
  1649. end
  1650. self.scoreInfo.text2 = tmp
  1651. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1652. end
  1653. ---@private
  1654. function UIStarSignTipsView:InitGenerate__94(Root, data)
  1655. --[[
  1656. UIAnimator/Window/ScoreInfo/num2
  1657. --]]
  1658. local tmp = Root:Find("UIAnimator/Window/ScoreInfo/num2").gameObject
  1659. if tolua.getpeer(tmp) == nil then
  1660. tolua.setpeer(tmp, {})
  1661. end
  1662. self.scoreInfo.num2 = tmp
  1663. tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
  1664. end
  1665. ---@private
  1666. function UIStarSignTipsView:InitGenerate__95(Root, data)
  1667. --[[
  1668. UIAnimator/Window/ScoreInfo/BtnPlayRule
  1669. --]]
  1670. local tmp = Root:Find("UIAnimator/Window/ScoreInfo/BtnPlayRule").gameObject
  1671. if tolua.getpeer(tmp) == nil then
  1672. tolua.setpeer(tmp, {})
  1673. end
  1674. self.btnPlayRule = tmp
  1675. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1676. end
  1677. ---@private
  1678. function UIStarSignTipsView:InitGenerate__96(Root, data)
  1679. --[[
  1680. UIAnimator/Window/BtnGift
  1681. --]]
  1682. local tmp = Root:Find("UIAnimator/Window/BtnGift").gameObject
  1683. if tolua.getpeer(tmp) == nil then
  1684. tolua.setpeer(tmp, {})
  1685. end
  1686. self.btnGift = tmp
  1687. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1688. end
  1689. ---@private
  1690. function UIStarSignTipsView:InitGenerate__97(Root, data)
  1691. --[[
  1692. UIAnimator/Window/BtnRewardsList
  1693. --]]
  1694. local tmp = Root:Find("UIAnimator/Window/BtnRewardsList").gameObject
  1695. if tolua.getpeer(tmp) == nil then
  1696. tolua.setpeer(tmp, {})
  1697. end
  1698. self.btnRewardsList = tmp
  1699. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1700. end
  1701. ---@private
  1702. function UIStarSignTipsView:InitGenerate__98(Root, data)
  1703. --[[
  1704. UIAnimator/Window/BtnGetRewards
  1705. --]]
  1706. local tmp = Root:Find("UIAnimator/Window/BtnGetRewards").gameObject
  1707. if tolua.getpeer(tmp) == nil then
  1708. tolua.setpeer(tmp, {})
  1709. end
  1710. self.btnGetRewards = tmp
  1711. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1712. end
  1713. ---@private
  1714. function UIStarSignTipsView:InitGenerate__99(Root, data)
  1715. --[[
  1716. UIAnimator/Window/BtnGetRewards/UIRedPointRP
  1717. --]]
  1718. local tmp = Root:Find("UIAnimator/Window/BtnGetRewards/UIRedPointRP").gameObject
  1719. if tolua.getpeer(tmp) == nil then
  1720. tolua.setpeer(tmp, {})
  1721. end
  1722. self.btnGetRewards.uIRedPointRP = tmp
  1723. end
  1724. ---@private
  1725. function UIStarSignTipsView:InitGenerate__100(Root, data)
  1726. --[[
  1727. UIAnimator/Window/BtnClose
  1728. --]]
  1729. local tmp = Root:Find("UIAnimator/Window/BtnClose").gameObject
  1730. if tolua.getpeer(tmp) == nil then
  1731. tolua.setpeer(tmp, {})
  1732. end
  1733. self.btnClose = tmp
  1734. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1735. end
  1736. ---@private
  1737. function UIStarSignTipsView:InitGenerate__101(Root, data)
  1738. --[[
  1739. UIAnimator/Window/BtnSkip
  1740. --]]
  1741. local tmp = Root:Find("UIAnimator/Window/BtnSkip").gameObject
  1742. if tolua.getpeer(tmp) == nil then
  1743. tolua.setpeer(tmp, {})
  1744. end
  1745. self.btnSkip = tmp
  1746. self.btnSkip:SetActive(false)
  1747. tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
  1748. end
  1749. ---@private
  1750. function UIStarSignTipsView:GenerateDestroy()
  1751. if tolua.getpeer(self.btnGetRewards.uIRedPointRP) ~= nil then
  1752. tolua.setpeer(self.btnGetRewards.uIRedPointRP, nil)
  1753. end
  1754. if tolua.getpeer(self.scoreInfo.num2) ~= nil then
  1755. tolua.setpeer(self.scoreInfo.num2, nil)
  1756. end
  1757. if tolua.getpeer(self.scoreInfo.text2) ~= nil then
  1758. tolua.setpeer(self.scoreInfo.text2, nil)
  1759. end
  1760. if tolua.getpeer(self.scoreInfo.num1) ~= nil then
  1761. tolua.setpeer(self.scoreInfo.num1, nil)
  1762. end
  1763. if self.rewardsBox.item12.iconSmallItem.GenerateDestroy ~= nil then
  1764. self.rewardsBox.item12.iconSmallItem:GenerateDestroy()
  1765. end
  1766. if tolua.getpeer(self.rewardsBox.item12.iconSmallItem) ~= nil then
  1767. tolua.setpeer(self.rewardsBox.item12.iconSmallItem, nil)
  1768. end
  1769. if tolua.getpeer(self.rewardsBox.item12.num) ~= nil then
  1770. tolua.setpeer(self.rewardsBox.item12.num, nil)
  1771. end
  1772. if tolua.getpeer(self.rewardsBox.item12.current) ~= nil then
  1773. tolua.setpeer(self.rewardsBox.item12.current, nil)
  1774. end
  1775. if tolua.getpeer(self.rewardsBox.item12) ~= nil then
  1776. tolua.setpeer(self.rewardsBox.item12, nil)
  1777. end
  1778. if self.rewardsBox.item11.iconSmallItem.GenerateDestroy ~= nil then
  1779. self.rewardsBox.item11.iconSmallItem:GenerateDestroy()
  1780. end
  1781. if tolua.getpeer(self.rewardsBox.item11.iconSmallItem) ~= nil then
  1782. tolua.setpeer(self.rewardsBox.item11.iconSmallItem, nil)
  1783. end
  1784. if tolua.getpeer(self.rewardsBox.item11.num) ~= nil then
  1785. tolua.setpeer(self.rewardsBox.item11.num, nil)
  1786. end
  1787. if tolua.getpeer(self.rewardsBox.item11.current) ~= nil then
  1788. tolua.setpeer(self.rewardsBox.item11.current, nil)
  1789. end
  1790. if tolua.getpeer(self.rewardsBox.item11) ~= nil then
  1791. tolua.setpeer(self.rewardsBox.item11, nil)
  1792. end
  1793. if self.rewardsBox.item10.iconSmallItem.GenerateDestroy ~= nil then
  1794. self.rewardsBox.item10.iconSmallItem:GenerateDestroy()
  1795. end
  1796. if tolua.getpeer(self.rewardsBox.item10.iconSmallItem) ~= nil then
  1797. tolua.setpeer(self.rewardsBox.item10.iconSmallItem, nil)
  1798. end
  1799. if tolua.getpeer(self.rewardsBox.item10.num) ~= nil then
  1800. tolua.setpeer(self.rewardsBox.item10.num, nil)
  1801. end
  1802. if tolua.getpeer(self.rewardsBox.item10.current) ~= nil then
  1803. tolua.setpeer(self.rewardsBox.item10.current, nil)
  1804. end
  1805. if tolua.getpeer(self.rewardsBox.item10) ~= nil then
  1806. tolua.setpeer(self.rewardsBox.item10, nil)
  1807. end
  1808. if self.rewardsBox.item9.iconSmallItem.GenerateDestroy ~= nil then
  1809. self.rewardsBox.item9.iconSmallItem:GenerateDestroy()
  1810. end
  1811. if tolua.getpeer(self.rewardsBox.item9.iconSmallItem) ~= nil then
  1812. tolua.setpeer(self.rewardsBox.item9.iconSmallItem, nil)
  1813. end
  1814. if tolua.getpeer(self.rewardsBox.item9.num) ~= nil then
  1815. tolua.setpeer(self.rewardsBox.item9.num, nil)
  1816. end
  1817. if tolua.getpeer(self.rewardsBox.item9.current) ~= nil then
  1818. tolua.setpeer(self.rewardsBox.item9.current, nil)
  1819. end
  1820. if tolua.getpeer(self.rewardsBox.item9) ~= nil then
  1821. tolua.setpeer(self.rewardsBox.item9, nil)
  1822. end
  1823. if self.rewardsBox.item8.iconSmallItem.GenerateDestroy ~= nil then
  1824. self.rewardsBox.item8.iconSmallItem:GenerateDestroy()
  1825. end
  1826. if tolua.getpeer(self.rewardsBox.item8.iconSmallItem) ~= nil then
  1827. tolua.setpeer(self.rewardsBox.item8.iconSmallItem, nil)
  1828. end
  1829. if tolua.getpeer(self.rewardsBox.item8.num) ~= nil then
  1830. tolua.setpeer(self.rewardsBox.item8.num, nil)
  1831. end
  1832. if tolua.getpeer(self.rewardsBox.item8.current) ~= nil then
  1833. tolua.setpeer(self.rewardsBox.item8.current, nil)
  1834. end
  1835. if tolua.getpeer(self.rewardsBox.item8) ~= nil then
  1836. tolua.setpeer(self.rewardsBox.item8, nil)
  1837. end
  1838. if self.rewardsBox.item7.iconSmallItem.GenerateDestroy ~= nil then
  1839. self.rewardsBox.item7.iconSmallItem:GenerateDestroy()
  1840. end
  1841. if tolua.getpeer(self.rewardsBox.item7.iconSmallItem) ~= nil then
  1842. tolua.setpeer(self.rewardsBox.item7.iconSmallItem, nil)
  1843. end
  1844. if tolua.getpeer(self.rewardsBox.item7.num) ~= nil then
  1845. tolua.setpeer(self.rewardsBox.item7.num, nil)
  1846. end
  1847. if tolua.getpeer(self.rewardsBox.item7.current) ~= nil then
  1848. tolua.setpeer(self.rewardsBox.item7.current, nil)
  1849. end
  1850. if tolua.getpeer(self.rewardsBox.item7) ~= nil then
  1851. tolua.setpeer(self.rewardsBox.item7, nil)
  1852. end
  1853. if self.rewardsBox.item6.iconSmallItem.GenerateDestroy ~= nil then
  1854. self.rewardsBox.item6.iconSmallItem:GenerateDestroy()
  1855. end
  1856. if tolua.getpeer(self.rewardsBox.item6.iconSmallItem) ~= nil then
  1857. tolua.setpeer(self.rewardsBox.item6.iconSmallItem, nil)
  1858. end
  1859. if tolua.getpeer(self.rewardsBox.item6.num) ~= nil then
  1860. tolua.setpeer(self.rewardsBox.item6.num, nil)
  1861. end
  1862. if tolua.getpeer(self.rewardsBox.item6.current) ~= nil then
  1863. tolua.setpeer(self.rewardsBox.item6.current, nil)
  1864. end
  1865. if tolua.getpeer(self.rewardsBox.item6) ~= nil then
  1866. tolua.setpeer(self.rewardsBox.item6, nil)
  1867. end
  1868. if self.rewardsBox.item5.iconSmallItem.GenerateDestroy ~= nil then
  1869. self.rewardsBox.item5.iconSmallItem:GenerateDestroy()
  1870. end
  1871. if tolua.getpeer(self.rewardsBox.item5.iconSmallItem) ~= nil then
  1872. tolua.setpeer(self.rewardsBox.item5.iconSmallItem, nil)
  1873. end
  1874. if tolua.getpeer(self.rewardsBox.item5.num) ~= nil then
  1875. tolua.setpeer(self.rewardsBox.item5.num, nil)
  1876. end
  1877. if tolua.getpeer(self.rewardsBox.item5.current) ~= nil then
  1878. tolua.setpeer(self.rewardsBox.item5.current, nil)
  1879. end
  1880. if tolua.getpeer(self.rewardsBox.item5) ~= nil then
  1881. tolua.setpeer(self.rewardsBox.item5, nil)
  1882. end
  1883. if self.rewardsBox.item4.iconSmallItem.GenerateDestroy ~= nil then
  1884. self.rewardsBox.item4.iconSmallItem:GenerateDestroy()
  1885. end
  1886. if tolua.getpeer(self.rewardsBox.item4.iconSmallItem) ~= nil then
  1887. tolua.setpeer(self.rewardsBox.item4.iconSmallItem, nil)
  1888. end
  1889. if tolua.getpeer(self.rewardsBox.item4.num) ~= nil then
  1890. tolua.setpeer(self.rewardsBox.item4.num, nil)
  1891. end
  1892. if tolua.getpeer(self.rewardsBox.item4.current) ~= nil then
  1893. tolua.setpeer(self.rewardsBox.item4.current, nil)
  1894. end
  1895. if tolua.getpeer(self.rewardsBox.item4) ~= nil then
  1896. tolua.setpeer(self.rewardsBox.item4, nil)
  1897. end
  1898. if self.rewardsBox.item3.iconSmallItem.GenerateDestroy ~= nil then
  1899. self.rewardsBox.item3.iconSmallItem:GenerateDestroy()
  1900. end
  1901. if tolua.getpeer(self.rewardsBox.item3.iconSmallItem) ~= nil then
  1902. tolua.setpeer(self.rewardsBox.item3.iconSmallItem, nil)
  1903. end
  1904. if tolua.getpeer(self.rewardsBox.item3.num) ~= nil then
  1905. tolua.setpeer(self.rewardsBox.item3.num, nil)
  1906. end
  1907. if tolua.getpeer(self.rewardsBox.item3.current) ~= nil then
  1908. tolua.setpeer(self.rewardsBox.item3.current, nil)
  1909. end
  1910. if tolua.getpeer(self.rewardsBox.item3) ~= nil then
  1911. tolua.setpeer(self.rewardsBox.item3, nil)
  1912. end
  1913. if self.rewardsBox.item2.iconSmallItem.GenerateDestroy ~= nil then
  1914. self.rewardsBox.item2.iconSmallItem:GenerateDestroy()
  1915. end
  1916. if tolua.getpeer(self.rewardsBox.item2.iconSmallItem) ~= nil then
  1917. tolua.setpeer(self.rewardsBox.item2.iconSmallItem, nil)
  1918. end
  1919. if tolua.getpeer(self.rewardsBox.item2.num) ~= nil then
  1920. tolua.setpeer(self.rewardsBox.item2.num, nil)
  1921. end
  1922. if tolua.getpeer(self.rewardsBox.item2.current) ~= nil then
  1923. tolua.setpeer(self.rewardsBox.item2.current, nil)
  1924. end
  1925. if tolua.getpeer(self.rewardsBox.item2) ~= nil then
  1926. tolua.setpeer(self.rewardsBox.item2, nil)
  1927. end
  1928. if self.rewardsBox.item1.iconSmallItem.GenerateDestroy ~= nil then
  1929. self.rewardsBox.item1.iconSmallItem:GenerateDestroy()
  1930. end
  1931. if tolua.getpeer(self.rewardsBox.item1.iconSmallItem) ~= nil then
  1932. tolua.setpeer(self.rewardsBox.item1.iconSmallItem, nil)
  1933. end
  1934. if tolua.getpeer(self.rewardsBox.item1.num) ~= nil then
  1935. tolua.setpeer(self.rewardsBox.item1.num, nil)
  1936. end
  1937. if tolua.getpeer(self.rewardsBox.item1.current) ~= nil then
  1938. tolua.setpeer(self.rewardsBox.item1.current, nil)
  1939. end
  1940. if tolua.getpeer(self.rewardsBox.item1) ~= nil then
  1941. tolua.setpeer(self.rewardsBox.item1, nil)
  1942. end
  1943. if tolua.getpeer(self.rewardsBox.content) ~= nil then
  1944. tolua.setpeer(self.rewardsBox.content, nil)
  1945. end
  1946. if tolua.getpeer(self.scrollBox.arrowAnim) ~= nil then
  1947. tolua.setpeer(self.scrollBox.arrowAnim, nil)
  1948. end
  1949. if tolua.getpeer(self.btnAstrology.num) ~= nil then
  1950. tolua.setpeer(self.btnAstrology.num, nil)
  1951. end
  1952. if tolua.getpeer(self.btnAstrology.image) ~= nil then
  1953. tolua.setpeer(self.btnAstrology.image, nil)
  1954. end
  1955. if tolua.getpeer(self.btnUseLucky.text) ~= nil then
  1956. tolua.setpeer(self.btnUseLucky.text, nil)
  1957. end
  1958. if tolua.getpeer(self.currency3.btnBuy) ~= nil then
  1959. tolua.setpeer(self.currency3.btnBuy, nil)
  1960. end
  1961. if tolua.getpeer(self.currency3.number) ~= nil then
  1962. tolua.setpeer(self.currency3.number, nil)
  1963. end
  1964. if tolua.getpeer(self.currency3.icon) ~= nil then
  1965. tolua.setpeer(self.currency3.icon, nil)
  1966. end
  1967. if tolua.getpeer(self.currency2.btnBuy) ~= nil then
  1968. tolua.setpeer(self.currency2.btnBuy, nil)
  1969. end
  1970. if tolua.getpeer(self.currency2.number) ~= nil then
  1971. tolua.setpeer(self.currency2.number, nil)
  1972. end
  1973. if tolua.getpeer(self.currency2.icon) ~= nil then
  1974. tolua.setpeer(self.currency2.icon, nil)
  1975. end
  1976. if tolua.getpeer(self.currency1.btnBuy) ~= nil then
  1977. tolua.setpeer(self.currency1.btnBuy, nil)
  1978. end
  1979. if tolua.getpeer(self.currency1.number) ~= nil then
  1980. tolua.setpeer(self.currency1.number, nil)
  1981. end
  1982. if tolua.getpeer(self.currency1.icon) ~= nil then
  1983. tolua.setpeer(self.currency1.icon, nil)
  1984. end
  1985. if tolua.getpeer(self.uIAnimator) ~= nil then
  1986. tolua.setpeer(self.uIAnimator, nil)
  1987. end
  1988. self.uIAnimator = nil
  1989. if tolua.getpeer(self.AnyBtn) ~= nil then
  1990. tolua.setpeer(self.AnyBtn, nil)
  1991. end
  1992. self.AnyBtn = nil
  1993. if tolua.getpeer(self.currency1) ~= nil then
  1994. tolua.setpeer(self.currency1, nil)
  1995. end
  1996. self.currency1 = nil
  1997. if tolua.getpeer(self.currency2) ~= nil then
  1998. tolua.setpeer(self.currency2, nil)
  1999. end
  2000. self.currency2 = nil
  2001. if tolua.getpeer(self.currency3) ~= nil then
  2002. tolua.setpeer(self.currency3, nil)
  2003. end
  2004. self.currency3 = nil
  2005. if tolua.getpeer(self.astrolabe) ~= nil then
  2006. tolua.setpeer(self.astrolabe, nil)
  2007. end
  2008. self.astrolabe = nil
  2009. if tolua.getpeer(self.btnUseLucky) ~= nil then
  2010. tolua.setpeer(self.btnUseLucky, nil)
  2011. end
  2012. self.btnUseLucky = nil
  2013. if tolua.getpeer(self.txt) ~= nil then
  2014. tolua.setpeer(self.txt, nil)
  2015. end
  2016. self.txt = nil
  2017. if tolua.getpeer(self.btnAstrology) ~= nil then
  2018. tolua.setpeer(self.btnAstrology, nil)
  2019. end
  2020. self.btnAstrology = nil
  2021. if tolua.getpeer(self.scrollBox) ~= nil then
  2022. tolua.setpeer(self.scrollBox, nil)
  2023. end
  2024. self.scrollBox = nil
  2025. if tolua.getpeer(self.scroll) ~= nil then
  2026. tolua.setpeer(self.scroll, nil)
  2027. end
  2028. self.scroll = nil
  2029. if tolua.getpeer(self.stopAnim) ~= nil then
  2030. tolua.setpeer(self.stopAnim, nil)
  2031. end
  2032. self.stopAnim = nil
  2033. if tolua.getpeer(self.sign1) ~= nil then
  2034. tolua.setpeer(self.sign1, nil)
  2035. end
  2036. self.sign1 = nil
  2037. if tolua.getpeer(self.sign2) ~= nil then
  2038. tolua.setpeer(self.sign2, nil)
  2039. end
  2040. self.sign2 = nil
  2041. if tolua.getpeer(self.sign3) ~= nil then
  2042. tolua.setpeer(self.sign3, nil)
  2043. end
  2044. self.sign3 = nil
  2045. if tolua.getpeer(self.sign4) ~= nil then
  2046. tolua.setpeer(self.sign4, nil)
  2047. end
  2048. self.sign4 = nil
  2049. if tolua.getpeer(self.sign5) ~= nil then
  2050. tolua.setpeer(self.sign5, nil)
  2051. end
  2052. self.sign5 = nil
  2053. if tolua.getpeer(self.sign6) ~= nil then
  2054. tolua.setpeer(self.sign6, nil)
  2055. end
  2056. self.sign6 = nil
  2057. if tolua.getpeer(self.sign7) ~= nil then
  2058. tolua.setpeer(self.sign7, nil)
  2059. end
  2060. self.sign7 = nil
  2061. if tolua.getpeer(self.sign8) ~= nil then
  2062. tolua.setpeer(self.sign8, nil)
  2063. end
  2064. self.sign8 = nil
  2065. if tolua.getpeer(self.sign9) ~= nil then
  2066. tolua.setpeer(self.sign9, nil)
  2067. end
  2068. self.sign9 = nil
  2069. if tolua.getpeer(self.sign10) ~= nil then
  2070. tolua.setpeer(self.sign10, nil)
  2071. end
  2072. self.sign10 = nil
  2073. if tolua.getpeer(self.sign11) ~= nil then
  2074. tolua.setpeer(self.sign11, nil)
  2075. end
  2076. self.sign11 = nil
  2077. if tolua.getpeer(self.sign12) ~= nil then
  2078. tolua.setpeer(self.sign12, nil)
  2079. end
  2080. self.sign12 = nil
  2081. if tolua.getpeer(self.fx_uistarsigntipseffect_01) ~= nil then
  2082. tolua.setpeer(self.fx_uistarsigntipseffect_01, nil)
  2083. end
  2084. self.fx_uistarsigntipseffect_01 = nil
  2085. if tolua.getpeer(self.fx_uistarsigntipseffect_02) ~= nil then
  2086. tolua.setpeer(self.fx_uistarsigntipseffect_02, nil)
  2087. end
  2088. self.fx_uistarsigntipseffect_02 = nil
  2089. if tolua.getpeer(self.rewardsBox) ~= nil then
  2090. tolua.setpeer(self.rewardsBox, nil)
  2091. end
  2092. self.rewardsBox = nil
  2093. if tolua.getpeer(self.scoreInfo) ~= nil then
  2094. tolua.setpeer(self.scoreInfo, nil)
  2095. end
  2096. self.scoreInfo = nil
  2097. if tolua.getpeer(self.btnPlayRule) ~= nil then
  2098. tolua.setpeer(self.btnPlayRule, nil)
  2099. end
  2100. self.btnPlayRule = nil
  2101. if tolua.getpeer(self.btnGift) ~= nil then
  2102. tolua.setpeer(self.btnGift, nil)
  2103. end
  2104. self.btnGift = nil
  2105. if tolua.getpeer(self.btnRewardsList) ~= nil then
  2106. tolua.setpeer(self.btnRewardsList, nil)
  2107. end
  2108. self.btnRewardsList = nil
  2109. if tolua.getpeer(self.btnGetRewards) ~= nil then
  2110. tolua.setpeer(self.btnGetRewards, nil)
  2111. end
  2112. self.btnGetRewards = nil
  2113. if tolua.getpeer(self.btnClose) ~= nil then
  2114. tolua.setpeer(self.btnClose, nil)
  2115. end
  2116. self.btnClose = nil
  2117. if tolua.getpeer(self.btnSkip) ~= nil then
  2118. tolua.setpeer(self.btnSkip, nil)
  2119. end
  2120. self.btnSkip = nil
  2121. self.transform = nil
  2122. self.gameObject = nil
  2123. self.inited = false
  2124. end
  2125. return UIStarSignTipsView