UIRuneShopView_Generate.lua 72 KB

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