UIActivityTurntableView_Generate.lua 75 KB

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