| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385 |
- ---@class UIRuneShop__Generate_gold_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_gold_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_gold
- ---@field public gameObject UnityEngine.GameObject
- ---@field public icon UIRuneShop__Generate_gold_icon
- ---@field public number UIRuneShop__Generate_gold_number
- ---@class UIRuneShop__Generate_coin_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_coin_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_coin
- ---@field public gameObject UnityEngine.GameObject
- ---@field public icon UIRuneShop__Generate_coin_icon
- ---@field public number UIRuneShop__Generate_coin_number
- ---@class UIRuneShop__Generate_textBox
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_rewardsToggle
- ---@field public gameObject UnityEngine.GameObject
- ---@field public toggle UnityEngine.UI.Toggle
- ---@field public off UnityEngine.GameObject
- ---@field public on UnityEngine.GameObject
- ---@class UIRuneShop__Generate_limitedToggle
- ---@field public gameObject UnityEngine.GameObject
- ---@field public toggle UnityEngine.UI.Toggle
- ---@field public off UnityEngine.GameObject
- ---@field public on UnityEngine.GameObject
- ---@class UIRuneShop__Generate_giftsToggle
- ---@field public gameObject UnityEngine.GameObject
- ---@field public toggle UnityEngine.UI.Toggle
- ---@field public off UnityEngine.GameObject
- ---@field public on UnityEngine.GameObject
- ---@class UIRuneShop__Generate_monthToggle
- ---@field public gameObject UnityEngine.GameObject
- ---@field public toggle UnityEngine.UI.Toggle
- ---@field public off UnityEngine.GameObject
- ---@field public on UnityEngine.GameObject
- ---@class UIRuneShop__Generate_content
- ---@field public gameObject UnityEngine.GameObject
- ---@field public toggleGroup UnityEngine.UI.ToggleGroup
- ---@class UIRuneShop__Generate_vipNameTxt
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UIRuneShop__Generate_vipIcon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_vipFrame
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_btnVIP
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRuneShop__Generate_expUpBlue_num
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_expUpBlue
- ---@field public gameObject UnityEngine.GameObject
- ---@field public num UIRuneShop__Generate_expUpBlue_num
- ---@class UIRuneShop__Generate_btnTaskExp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public icon UnityEngine.GameObject
- ---@class UIRuneShop__Generate_expSlider
- ---@field public gameObject UnityEngine.GameObject
- ---@field public slider UnityEngine.UI.Slider
- ---@class UIRuneShop__Generate_numexp
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_rewardsmax
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_rewardslv
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UIRuneShop__Generate_btnClose
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRuneShop__Generate_runeShopLimitedItem
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRuneShop__Generate_limitedBox_scrollView
- ---@field public gameObject UnityEngine.GameObject
- ---@field public loopGridView SuperScrollView.LoopGridView
- ---@class UIRuneShop__Generate_limitedBox
- ---@field public gameObject UnityEngine.GameObject
- ---@field public scrollView UIRuneShop__Generate_limitedBox_scrollView
- ---@class UIRuneShop__Generate_runeShopGoodsItem
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRuneShop__Generate_giftsBox_scrollView
- ---@field public gameObject UnityEngine.GameObject
- ---@field public loopGridView SuperScrollView.LoopGridView
- ---@class UIRuneShop__Generate_timeBox_textTime
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_timeBox
- ---@field public gameObject UnityEngine.GameObject
- ---@field public textTime UIRuneShop__Generate_timeBox_textTime
- ---@class UIRuneShop__Generate_goldBtn_off_text
- ---@field public gameObject UnityEngine.GameObject
- ---@field public uILocalizeScript UILocalizeScript
- ---@class UIRuneShop__Generate_goldBtn_off
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UIRuneShop__Generate_goldBtn_off_text
- ---@class UIRuneShop__Generate_goldBtn
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public off UIRuneShop__Generate_goldBtn_off
- ---@field public on UnityEngine.GameObject
- ---@class UIRuneShop__Generate_monthBtn_off_text
- ---@field public gameObject UnityEngine.GameObject
- ---@field public uILocalizeScript UILocalizeScript
- ---@class UIRuneShop__Generate_monthBtn_off
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UIRuneShop__Generate_monthBtn_off_text
- ---@class UIRuneShop__Generate_monthBtn
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public off UIRuneShop__Generate_monthBtn_off
- ---@field public on UnityEngine.GameObject
- ---@class UIRuneShop__Generate_weekBtn_off_text
- ---@field public gameObject UnityEngine.GameObject
- ---@field public uILocalizeScript UILocalizeScript
- ---@class UIRuneShop__Generate_weekBtn_off
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UIRuneShop__Generate_weekBtn_off_text
- ---@class UIRuneShop__Generate_weekBtn
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public off UIRuneShop__Generate_weekBtn_off
- ---@field public on UnityEngine.GameObject
- ---@class UIRuneShop__Generate_dailyBtn_off_text
- ---@field public gameObject UnityEngine.GameObject
- ---@field public uILocalizeScript UILocalizeScript
- ---@class UIRuneShop__Generate_dailyBtn_off
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UIRuneShop__Generate_dailyBtn_off_text
- ---@class UIRuneShop__Generate_dailyBtn
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public off UIRuneShop__Generate_dailyBtn_off
- ---@field public on UnityEngine.GameObject
- ---@class UIRuneShop__Generate_giftsBox
- ---@field public gameObject UnityEngine.GameObject
- ---@field public scrollView UIRuneShop__Generate_giftsBox_scrollView
- ---@class UIRuneShop__Generate_monthCard2_unActive_text
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@field public uILocalizeScript UILocalizeScript
- ---@class UIRuneShop__Generate_monthCard2_unActive
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UIRuneShop__Generate_monthCard2_unActive_text
- ---@class UIRuneShop__Generate_monthCard2_active_text
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@field public uILocalizeScript UILocalizeScript
- ---@class UIRuneShop__Generate_monthCard2_active
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UIRuneShop__Generate_monthCard2_active_text
- ---@class UIRuneShop__Generate_monthCard2_presentPrice_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard2_presentPrice_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UIRuneShop__Generate_monthCard2_presentPrice_shadow
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard2_presentPrice
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public shadow UIRuneShop__Generate_monthCard2_presentPrice_shadow
- ---@field public number UIRuneShop__Generate_monthCard2_presentPrice_number
- ---@field public icon UIRuneShop__Generate_monthCard2_presentPrice_icon
- ---@class UIRuneShop__Generate_monthCard2_totalReward_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_monthCard2_totalReward_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard2_totalReward
- ---@field public gameObject UnityEngine.GameObject
- ---@field public icon UIRuneShop__Generate_monthCard2_totalReward_icon
- ---@field public number UIRuneShop__Generate_monthCard2_totalReward_number
- ---@class UIRuneShop__Generate_monthCard2_dailyReward_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_monthCard2_dailyReward_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard2_dailyReward
- ---@field public gameObject UnityEngine.GameObject
- ---@field public icon UIRuneShop__Generate_monthCard2_dailyReward_icon
- ---@field public number UIRuneShop__Generate_monthCard2_dailyReward_number
- ---@class UIRuneShop__Generate_monthCard2_buyReward2_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_monthCard2_buyReward2_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard2_buyReward2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public icon UIRuneShop__Generate_monthCard2_buyReward2_icon
- ---@field public number UIRuneShop__Generate_monthCard2_buyReward2_number
- ---@class UIRuneShop__Generate_monthCard2_buyReward1_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_monthCard2_buyReward1_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard2_buyReward1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public icon UIRuneShop__Generate_monthCard2_buyReward1_icon
- ---@field public number UIRuneShop__Generate_monthCard2_buyReward1_number
- ---@class UIRuneShop__Generate_monthCard2_textDsc
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_btnLog
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRuneShop__Generate_monthCard2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public textDsc UIRuneShop__Generate_monthCard2_textDsc
- ---@field public buyReward1 UIRuneShop__Generate_monthCard2_buyReward1
- ---@field public buyReward2 UIRuneShop__Generate_monthCard2_buyReward2
- ---@field public dailyReward UIRuneShop__Generate_monthCard2_dailyReward
- ---@field public totalReward UIRuneShop__Generate_monthCard2_totalReward
- ---@field public presentPrice UIRuneShop__Generate_monthCard2_presentPrice
- ---@field public active UIRuneShop__Generate_monthCard2_active
- ---@field public unActive UIRuneShop__Generate_monthCard2_unActive
- ---@class UIRuneShop__Generate_monthCard1_unActive_text
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@field public uILocalizeScript UILocalizeScript
- ---@class UIRuneShop__Generate_monthCard1_unActive
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UIRuneShop__Generate_monthCard1_unActive_text
- ---@class UIRuneShop__Generate_monthCard1_active_text
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@field public uILocalizeScript UILocalizeScript
- ---@class UIRuneShop__Generate_monthCard1_active
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UIRuneShop__Generate_monthCard1_active_text
- ---@class UIRuneShop__Generate_monthCard1_presentPrice_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard1_presentPrice_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text TMPro.TextMeshProUGUI
- ---@class UIRuneShop__Generate_monthCard1_presentPrice_shadow
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard1_presentPrice
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@field public shadow UIRuneShop__Generate_monthCard1_presentPrice_shadow
- ---@field public number UIRuneShop__Generate_monthCard1_presentPrice_number
- ---@field public icon UIRuneShop__Generate_monthCard1_presentPrice_icon
- ---@class UIRuneShop__Generate_monthCard1_totalReward_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_monthCard1_totalReward_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard1_totalReward
- ---@field public gameObject UnityEngine.GameObject
- ---@field public icon UIRuneShop__Generate_monthCard1_totalReward_icon
- ---@field public number UIRuneShop__Generate_monthCard1_totalReward_number
- ---@class UIRuneShop__Generate_monthCard1_dailyReward_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_monthCard1_dailyReward_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard1_dailyReward
- ---@field public gameObject UnityEngine.GameObject
- ---@field public icon UIRuneShop__Generate_monthCard1_dailyReward_icon
- ---@field public number UIRuneShop__Generate_monthCard1_dailyReward_number
- ---@class UIRuneShop__Generate_monthCard1_buyReward2_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_monthCard1_buyReward2_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard1_buyReward2
- ---@field public gameObject UnityEngine.GameObject
- ---@field public icon UIRuneShop__Generate_monthCard1_buyReward2_icon
- ---@field public number UIRuneShop__Generate_monthCard1_buyReward2_number
- ---@class UIRuneShop__Generate_monthCard1_buyReward1_number
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_monthCard1_buyReward1_icon
- ---@field public gameObject UnityEngine.GameObject
- ---@field public image UnityEngine.UI.Image
- ---@class UIRuneShop__Generate_monthCard1_buyReward1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public icon UIRuneShop__Generate_monthCard1_buyReward1_icon
- ---@field public number UIRuneShop__Generate_monthCard1_buyReward1_number
- ---@class UIRuneShop__Generate_monthCard1_textDsc
- ---@field public gameObject UnityEngine.GameObject
- ---@field public text UnityEngine.UI.Text
- ---@class UIRuneShop__Generate_monthCard1
- ---@field public gameObject UnityEngine.GameObject
- ---@field public textDsc UIRuneShop__Generate_monthCard1_textDsc
- ---@field public buyReward1 UIRuneShop__Generate_monthCard1_buyReward1
- ---@field public buyReward2 UIRuneShop__Generate_monthCard1_buyReward2
- ---@field public dailyReward UIRuneShop__Generate_monthCard1_dailyReward
- ---@field public totalReward UIRuneShop__Generate_monthCard1_totalReward
- ---@field public presentPrice UIRuneShop__Generate_monthCard1_presentPrice
- ---@field public active UIRuneShop__Generate_monthCard1_active
- ---@field public unActive UIRuneShop__Generate_monthCard1_unActive
- ---@class UIRuneShop__Generate_AnyBtn
- ---@field public gameObject UnityEngine.GameObject
- ---@field public button UnityEngine.UI.Button
- ---@class UIRuneShop__Generate_uIAnimator
- ---@field public gameObject UnityEngine.GameObject
- ---@field public animator UnityEngine.Animator
- ---@class UIRuneShop__Generate
- ---@field private gameObject UnityEngine.GameObject
- ---@field private transform UnityEngine.Transform
- ---@field private uIAnimator UIRuneShop__Generate_uIAnimator
- ---@field private AnyBtn UIRuneShop__Generate_AnyBtn
- ---@field private monthBox UnityEngine.GameObject
- ---@field private monthCard1 UIRuneShop__Generate_monthCard1
- ---@field private monthCard2 UIRuneShop__Generate_monthCard2
- ---@field private btnLog UIRuneShop__Generate_btnLog
- ---@field private giftsBox UIRuneShop__Generate_giftsBox
- ---@field private dailyBtn UIRuneShop__Generate_dailyBtn
- ---@field private weekBtn UIRuneShop__Generate_weekBtn
- ---@field private monthBtn UIRuneShop__Generate_monthBtn
- ---@field private goldBtn UIRuneShop__Generate_goldBtn
- ---@field private timeBox UIRuneShop__Generate_timeBox
- ---@field private runeShopGoodsItem UIRuneShop__Generate_runeShopGoodsItem
- ---@field private limitedBox UIRuneShop__Generate_limitedBox
- ---@field private runeShopLimitedItem UIRuneShop__Generate_runeShopLimitedItem
- ---@field private rewardsBox UnityEngine.GameObject
- ---@field private btnClose UIRuneShop__Generate_btnClose
- ---@field private rewardsExpBox UnityEngine.GameObject
- ---@field private rewardslv UIRuneShop__Generate_rewardslv
- ---@field private rewardsmax UIRuneShop__Generate_rewardsmax
- ---@field private numexp UIRuneShop__Generate_numexp
- ---@field private expSlider UIRuneShop__Generate_expSlider
- ---@field private btnTaskExp UIRuneShop__Generate_btnTaskExp
- ---@field private expUpBlue UIRuneShop__Generate_expUpBlue
- ---@field private btnVIP UIRuneShop__Generate_btnVIP
- ---@field private vipFrame UIRuneShop__Generate_vipFrame
- ---@field private vipIcon UIRuneShop__Generate_vipIcon
- ---@field private vipNameTxt UIRuneShop__Generate_vipNameTxt
- ---@field private content UIRuneShop__Generate_content
- ---@field private monthToggle UIRuneShop__Generate_monthToggle
- ---@field private giftsToggle UIRuneShop__Generate_giftsToggle
- ---@field private limitedToggle UIRuneShop__Generate_limitedToggle
- ---@field private rewardsToggle UIRuneShop__Generate_rewardsToggle
- ---@field private textBox UIRuneShop__Generate_textBox
- ---@field private coin UIRuneShop__Generate_coin
- ---@field private gold UIRuneShop__Generate_gold
- local UIRuneShopView = class("UIRuneShopView", require("UIViewBase"))
- function UIRuneShopView:ctor()
- end
- ---@private
- function UIRuneShopView:SetActive(result)
- self.gameObject:SetActive(result)
- end
- ---@private
- function UIRuneShopView:InitGenerate(Root, data)
- self.transform = Root
- self.inited = true
- if self.super.Init then
- self.super.Init(self)
- end
- local tmp
- self:InitGenerate__1(Root,data)
- self:InitGenerate__2(Root,data)
- self:InitGenerate__3(Root,data)
- self:InitGenerate__4(Root,data)
- self:InitGenerate__5(Root,data)
- self:InitGenerate__6(Root,data)
- self:InitGenerate__7(Root,data)
- self:InitGenerate__8(Root,data)
- self:InitGenerate__9(Root,data)
- self:InitGenerate__10(Root,data)
- self:InitGenerate__11(Root,data)
- self:InitGenerate__12(Root,data)
- self:InitGenerate__13(Root,data)
- self:InitGenerate__14(Root,data)
- self:InitGenerate__15(Root,data)
- self:InitGenerate__16(Root,data)
- self:InitGenerate__17(Root,data)
- self:InitGenerate__18(Root,data)
- self:InitGenerate__19(Root,data)
- self:InitGenerate__20(Root,data)
- self:InitGenerate__21(Root,data)
- self:InitGenerate__22(Root,data)
- self:InitGenerate__23(Root,data)
- self:InitGenerate__24(Root,data)
- self:InitGenerate__25(Root,data)
- self:InitGenerate__26(Root,data)
- self:InitGenerate__27(Root,data)
- self:InitGenerate__28(Root,data)
- self:InitGenerate__29(Root,data)
- self:InitGenerate__30(Root,data)
- self:InitGenerate__31(Root,data)
- self:InitGenerate__32(Root,data)
- self:InitGenerate__33(Root,data)
- self:InitGenerate__34(Root,data)
- self:InitGenerate__35(Root,data)
- self:InitGenerate__36(Root,data)
- self:InitGenerate__37(Root,data)
- self:InitGenerate__38(Root,data)
- self:InitGenerate__39(Root,data)
- self:InitGenerate__40(Root,data)
- self:InitGenerate__41(Root,data)
- self:InitGenerate__42(Root,data)
- self:InitGenerate__43(Root,data)
- self:InitGenerate__44(Root,data)
- self:InitGenerate__45(Root,data)
- self:InitGenerate__46(Root,data)
- self:InitGenerate__47(Root,data)
- self:InitGenerate__48(Root,data)
- self:InitGenerate__49(Root,data)
- self:InitGenerate__50(Root,data)
- self:InitGenerate__51(Root,data)
- self:InitGenerate__52(Root,data)
- self:InitGenerate__53(Root,data)
- self:InitGenerate__54(Root,data)
- self:InitGenerate__55(Root,data)
- self:InitGenerate__56(Root,data)
- self:InitGenerate__57(Root,data)
- self:InitGenerate__58(Root,data)
- self:InitGenerate__59(Root,data)
- self:InitGenerate__60(Root,data)
- self:InitGenerate__61(Root,data)
- self:InitGenerate__62(Root,data)
- self:InitGenerate__63(Root,data)
- self:InitGenerate__64(Root,data)
- self:InitGenerate__65(Root,data)
- self:InitGenerate__66(Root,data)
- self:InitGenerate__67(Root,data)
- self:InitGenerate__68(Root,data)
- self:InitGenerate__69(Root,data)
- self:InitGenerate__70(Root,data)
- self:InitGenerate__71(Root,data)
- self:InitGenerate__72(Root,data)
- self:InitGenerate__73(Root,data)
- self:InitGenerate__74(Root,data)
- self:InitGenerate__75(Root,data)
- self:InitGenerate__76(Root,data)
- self:InitGenerate__77(Root,data)
- self:InitGenerate__78(Root,data)
- self:InitGenerate__79(Root,data)
- self:InitGenerate__80(Root,data)
- self:InitGenerate__81(Root,data)
- self:InitGenerate__82(Root,data)
- self:InitGenerate__83(Root,data)
- self:InitGenerate__84(Root,data)
- self:InitGenerate__85(Root,data)
- self:InitGenerate__86(Root,data)
- self:InitGenerate__87(Root,data)
- self:InitGenerate__88(Root,data)
- self:InitGenerate__89(Root,data)
- self:InitGenerate__90(Root,data)
- self:InitGenerate__91(Root,data)
- self:InitGenerate__92(Root,data)
- self:InitGenerate__93(Root,data)
- self:InitGenerate__94(Root,data)
- self:InitGenerate__95(Root,data)
- self:InitGenerate__96(Root,data)
- self:InitGenerate__97(Root,data)
- self:InitGenerate__98(Root,data)
- self:InitGenerate__99(Root,data)
- self:InitGenerate__100(Root,data)
- self:InitGenerate__101(Root,data)
- self:InitGenerate__102(Root,data)
- self:InitGenerate__103(Root,data)
- self:InitGenerate__104(Root,data)
- self:InitGenerate__105(Root,data)
- self:InitGenerate__106(Root,data)
- self:InitGenerate__107(Root,data)
- end
- ---@private
- function UIRuneShopView:InitGenerate__1(Root, data)
- --[[
- UIAnimator
- --]]
- local tmp = Root:Find("UIAnimator").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.uIAnimator = tmp
- tmp.animator = tmp:GetComponent(Enum.TypeInfo.Animator)
- tmp.animator.logWarnings = false
- end
- ---@private
- function UIRuneShopView:InitGenerate__2(Root, data)
- --[[
- UIAnimator/Alpha
- --]]
- local tmp = Root:Find("UIAnimator/Alpha").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.AnyBtn = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__3(Root, data)
- --[[
- UIAnimator/Window/MonthBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthBox = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__4(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1 = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__5(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/DscBox/TextDsc
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/DscBox/TextDsc").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.textDsc = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__6(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/BuyReward1
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/BuyReward1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.buyReward1 = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__7(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/BuyReward1/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/BuyReward1/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.buyReward1.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__8(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/BuyReward1/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/BuyReward1/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.buyReward1.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__9(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/BuyReward2
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/BuyReward2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.buyReward2 = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__10(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/BuyReward2/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/BuyReward2/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.buyReward2.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__11(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/BuyReward2/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/BuyReward2/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.buyReward2.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__12(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/DailyReward
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/DailyReward").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.dailyReward = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__13(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/DailyReward/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/DailyReward/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.dailyReward.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__14(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/DailyReward/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/DailyReward/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.dailyReward.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__15(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/TotalReward
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/TotalReward").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.totalReward = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__16(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/TotalReward/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/TotalReward/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.totalReward.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__17(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/TotalReward/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/TotalReward/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.totalReward.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__18(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/PresentPrice
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/PresentPrice").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.presentPrice = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__19(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/PresentPrice/shadow
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/PresentPrice/shadow").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.presentPrice.shadow = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__20(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/PresentPrice/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/PresentPrice/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.presentPrice.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UIRuneShopView:InitGenerate__21(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/PresentPrice/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/PresentPrice/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.presentPrice.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__22(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/Active
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/Active").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.active = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__23(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/Active/Text
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/Active/Text").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.active.text = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
- end
- ---@private
- function UIRuneShopView:InitGenerate__24(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/UnActive
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/UnActive").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.unActive = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__25(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard1/UnActive/Text
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard1/UnActive/Text").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard1.unActive.text = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
- end
- ---@private
- function UIRuneShopView:InitGenerate__26(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2 = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__27(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/BtnLog
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/BtnLog").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnLog = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__28(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/DscBox/TextDsc
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/DscBox/TextDsc").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.textDsc = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__29(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/BuyReward1
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/BuyReward1").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.buyReward1 = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__30(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/BuyReward1/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/BuyReward1/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.buyReward1.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__31(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/BuyReward1/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/BuyReward1/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.buyReward1.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__32(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/BuyReward2
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/BuyReward2").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.buyReward2 = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__33(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/BuyReward2/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/BuyReward2/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.buyReward2.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__34(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/BuyReward2/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/BuyReward2/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.buyReward2.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__35(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/DailyReward
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/DailyReward").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.dailyReward = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__36(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/DailyReward/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/DailyReward/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.dailyReward.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__37(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/DailyReward/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/DailyReward/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.dailyReward.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__38(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/TotalReward
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/TotalReward").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.totalReward = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__39(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/TotalReward/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/TotalReward/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.totalReward.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__40(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/TotalReward/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/TotalReward/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.totalReward.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__41(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/PresentPrice
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/PresentPrice").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.presentPrice = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__42(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/PresentPrice/shadow
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/PresentPrice/shadow").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.presentPrice.shadow = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__43(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/PresentPrice/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/PresentPrice/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.presentPrice.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UIRuneShopView:InitGenerate__44(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/PresentPrice/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/PresentPrice/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.presentPrice.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__45(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/Active
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/Active").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.active = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__46(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/Active/Text
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/Active/Text").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.active.text = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
- end
- ---@private
- function UIRuneShopView:InitGenerate__47(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/UnActive
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/UnActive").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.unActive = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__48(Root, data)
- --[[
- UIAnimator/Window/MonthBox/MonthCard2/UnActive/Text
- --]]
- local tmp = Root:Find("UIAnimator/Window/MonthBox/MonthCard2/UnActive/Text").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthCard2.unActive.text = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
- end
- ---@private
- function UIRuneShopView:InitGenerate__49(Root, data)
- --[[
- UIAnimator/Window/GiftsBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.giftsBox = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__50(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/DailyBtn
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/DailyBtn").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.dailyBtn = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__51(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/DailyBtn/Off
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/DailyBtn/Off").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.dailyBtn.off = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__52(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/DailyBtn/On
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/DailyBtn/On").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.dailyBtn.on = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__53(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/DailyBtn/Text
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/DailyBtn/Text").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.dailyBtn.off.text = tmp
- tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
- end
- ---@private
- function UIRuneShopView:InitGenerate__54(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/WeekBtn
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/WeekBtn").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.weekBtn = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__55(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/WeekBtn/Off
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/WeekBtn/Off").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.weekBtn.off = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__56(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/WeekBtn/On
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/WeekBtn/On").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.weekBtn.on = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__57(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/WeekBtn/Text
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/WeekBtn/Text").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.weekBtn.off.text = tmp
- tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
- end
- ---@private
- function UIRuneShopView:InitGenerate__58(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/MonthBtn
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/MonthBtn").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthBtn = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__59(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/MonthBtn/Off
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/MonthBtn/Off").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthBtn.off = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__60(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/MonthBtn/On
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/MonthBtn/On").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthBtn.on = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__61(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/MonthBtn/Text
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/MonthBtn/Text").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthBtn.off.text = tmp
- tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
- end
- ---@private
- function UIRuneShopView:InitGenerate__62(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/GoldBtn
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/GoldBtn").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.goldBtn = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__63(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/GoldBtn/Off
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/GoldBtn/Off").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.goldBtn.off = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__64(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/GoldBtn/On
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/GoldBtn/On").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.goldBtn.on = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__65(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ToggleGroup/GoldBtn/Text
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ToggleGroup/GoldBtn/Text").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.goldBtn.off.text = tmp
- tmp.uILocalizeScript = tmp:GetComponent(Enum.TypeInfo.UILocalizeScript)
- end
- ---@private
- function UIRuneShopView:InitGenerate__66(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/TimeBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/TimeBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.timeBox = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__67(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/TimeBox/TextTime
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/TimeBox/TextTime").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.timeBox.textTime = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__68(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ScrollView
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ScrollView").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.giftsBox.scrollView = tmp
- tmp.loopGridView = tmp:GetComponent(Enum.TypeInfo.LoopGridView)
- end
- ---@private
- function UIRuneShopView:InitGenerate__69(Root, data)
- --[[
- UIAnimator/Window/GiftsBox/ScrollView/Viewport/Content/RuneShopGoodsItem
- --]]
- local tmp = Root:Find("UIAnimator/Window/GiftsBox/ScrollView/Viewport/Content/RuneShopGoodsItem").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.runeShopGoodsItem = CommonUtil.BindGridViewItem2LuaStatic("RuneShopGoodsItem", tmp)
- self.runeShopGoodsItem.prefabName = "RuneShopGoodsItem"
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__70(Root, data)
- --[[
- UIAnimator/Window/LimitedBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/LimitedBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.limitedBox = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__71(Root, data)
- --[[
- UIAnimator/Window/LimitedBox/ScrollView
- --]]
- local tmp = Root:Find("UIAnimator/Window/LimitedBox/ScrollView").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.limitedBox.scrollView = tmp
- tmp.loopGridView = tmp:GetComponent(Enum.TypeInfo.LoopGridView)
- end
- ---@private
- function UIRuneShopView:InitGenerate__72(Root, data)
- --[[
- UIAnimator/Window/LimitedBox/ScrollView/Viewport/Content/RuneShopLimitedItem
- --]]
- local tmp = Root:Find("UIAnimator/Window/LimitedBox/ScrollView/Viewport/Content/RuneShopLimitedItem").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.runeShopLimitedItem = CommonUtil.BindGridViewItem2LuaStatic("RuneShopLimitedItem", tmp)
- self.runeShopLimitedItem.prefabName = "RuneShopLimitedItem"
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__73(Root, data)
- --[[
- UIAnimator/Window/RewardsBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/RewardsBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.rewardsBox = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__74(Root, data)
- --[[
- UIAnimator/Window/Bottom/BtnClose
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/BtnClose").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnClose = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__75(Root, data)
- --[[
- UIAnimator/Window/Bottom/RewardsExpBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/RewardsExpBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.rewardsExpBox = tmp
- self.rewardsExpBox:SetActive(false)
- end
- ---@private
- function UIRuneShopView:InitGenerate__76(Root, data)
- --[[
- UIAnimator/Window/Bottom/RewardsExpBox/ExpBox/rewardslv
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/RewardsExpBox/ExpBox/rewardslv").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.rewardslv = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UIRuneShopView:InitGenerate__77(Root, data)
- --[[
- UIAnimator/Window/Bottom/RewardsExpBox/ExpBox/rewardsmax
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/RewardsExpBox/ExpBox/rewardsmax").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.rewardsmax = tmp
- self.rewardsmax:SetActive(false)
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__78(Root, data)
- --[[
- UIAnimator/Window/Bottom/RewardsExpBox/ExpBox/numexp
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/RewardsExpBox/ExpBox/numexp").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.numexp = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__79(Root, data)
- --[[
- UIAnimator/Window/Bottom/RewardsExpBox/ExpBox/ExpSlider
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/RewardsExpBox/ExpBox/ExpSlider").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.expSlider = tmp
- tmp.slider = tmp:GetComponent(Enum.TypeInfo.Slider)
- end
- ---@private
- function UIRuneShopView:InitGenerate__80(Root, data)
- --[[
- UIAnimator/Window/Bottom/RewardsExpBox/BtnTaskExp
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/RewardsExpBox/BtnTaskExp").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnTaskExp = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__81(Root, data)
- --[[
- UIAnimator/Window/Bottom/RewardsExpBox/BtnTaskExp/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/RewardsExpBox/BtnTaskExp/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnTaskExp.icon = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__82(Root, data)
- --[[
- UIAnimator/Window/Bottom/RewardsExpBox/ExpUpBlue
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/RewardsExpBox/ExpUpBlue").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.expUpBlue = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__83(Root, data)
- --[[
- UIAnimator/Window/Bottom/RewardsExpBox/ExpUpBlue/RedPoint/LvUp/num
- --]]
- local tmp = Root:Find("UIAnimator/Window/Bottom/RewardsExpBox/ExpUpBlue/RedPoint/LvUp/num").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.expUpBlue.num = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__84(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnVIP
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnVIP").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.btnVIP = tmp
- tmp.button = tmp:GetComponent(Enum.TypeInfo.Button)
- end
- ---@private
- function UIRuneShopView:InitGenerate__85(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnVIP/BG/VipFrame
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnVIP/BG/VipFrame").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.vipFrame = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__86(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnVIP/BG/VipIcon
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnVIP/BG/VipIcon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.vipIcon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__87(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnVIP/BtnName/VipNameTxt
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnVIP/BtnName/VipNameTxt").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.vipNameTxt = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.TextMeshProUGUI)
- end
- ---@private
- function UIRuneShopView:InitGenerate__88(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.content = tmp
- tmp.toggleGroup = tmp:GetComponent(Enum.TypeInfo.ToggleGroup)
- end
- ---@private
- function UIRuneShopView:InitGenerate__89(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/MonthToggle
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/MonthToggle").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthToggle = tmp
- tmp.toggle = tmp:GetComponent(Enum.TypeInfo.Toggle)
- end
- ---@private
- function UIRuneShopView:InitGenerate__90(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/MonthToggle/Off
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/MonthToggle/Off").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthToggle.off = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__91(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/MonthToggle/On
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/MonthToggle/On").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.monthToggle.on = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__92(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/GiftsToggle
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/GiftsToggle").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.giftsToggle = tmp
- tmp.toggle = tmp:GetComponent(Enum.TypeInfo.Toggle)
- end
- ---@private
- function UIRuneShopView:InitGenerate__93(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/GiftsToggle/Off
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/GiftsToggle/Off").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.giftsToggle.off = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__94(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/GiftsToggle/On
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/GiftsToggle/On").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.giftsToggle.on = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__95(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/LimitedToggle
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/LimitedToggle").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.limitedToggle = tmp
- tmp.toggle = tmp:GetComponent(Enum.TypeInfo.Toggle)
- end
- ---@private
- function UIRuneShopView:InitGenerate__96(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/LimitedToggle/Off
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/LimitedToggle/Off").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.limitedToggle.off = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__97(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/LimitedToggle/On
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/LimitedToggle/On").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.limitedToggle.on = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__98(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/RewardsToggle
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/RewardsToggle").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.rewardsToggle = tmp
- tmp.toggle = tmp:GetComponent(Enum.TypeInfo.Toggle)
- end
- ---@private
- function UIRuneShopView:InitGenerate__99(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/RewardsToggle/Off
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/RewardsToggle/Off").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.rewardsToggle.off = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__100(Root, data)
- --[[
- UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/RewardsToggle/On
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/BtnScrollView/Viewport/Content/RewardsToggle/On").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.rewardsToggle.on = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__101(Root, data)
- --[[
- UIAnimator/Window/TopView/TalkBox/TextBox
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/TalkBox/TextBox").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.textBox = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__102(Root, data)
- --[[
- UIAnimator/Window/TopView/ResourceBox/Coin
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBox/Coin").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.coin = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__103(Root, data)
- --[[
- UIAnimator/Window/TopView/ResourceBox/Coin/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBox/Coin/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.coin.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__104(Root, data)
- --[[
- UIAnimator/Window/TopView/ResourceBox/Coin/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBox/Coin/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.coin.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:InitGenerate__105(Root, data)
- --[[
- UIAnimator/Window/TopView/ResourceBox/Gold
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBox/Gold").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.gold = tmp
- end
- ---@private
- function UIRuneShopView:InitGenerate__106(Root, data)
- --[[
- UIAnimator/Window/TopView/ResourceBox/Gold/Icon
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBox/Gold/Icon").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.gold.icon = tmp
- tmp.image = tmp:GetComponent(Enum.TypeInfo.Image)
- end
- ---@private
- function UIRuneShopView:InitGenerate__107(Root, data)
- --[[
- UIAnimator/Window/TopView/ResourceBox/Gold/Number
- --]]
- local tmp = Root:Find("UIAnimator/Window/TopView/ResourceBox/Gold/Number").gameObject
- if tolua.getpeer(tmp) == nil then
- tolua.setpeer(tmp, {})
- end
- self.gold.number = tmp
- tmp.text = tmp:GetComponent(Enum.TypeInfo.Text)
- end
- ---@private
- function UIRuneShopView:GenerateDestroy()
- if tolua.getpeer(self.gold.number) ~= nil then
- tolua.setpeer(self.gold.number, nil)
- end
- if tolua.getpeer(self.gold.icon) ~= nil then
- tolua.setpeer(self.gold.icon, nil)
- end
- if tolua.getpeer(self.coin.number) ~= nil then
- tolua.setpeer(self.coin.number, nil)
- end
- if tolua.getpeer(self.coin.icon) ~= nil then
- tolua.setpeer(self.coin.icon, nil)
- end
- if tolua.getpeer(self.rewardsToggle.on) ~= nil then
- tolua.setpeer(self.rewardsToggle.on, nil)
- end
- if tolua.getpeer(self.rewardsToggle.off) ~= nil then
- tolua.setpeer(self.rewardsToggle.off, nil)
- end
- if tolua.getpeer(self.limitedToggle.on) ~= nil then
- tolua.setpeer(self.limitedToggle.on, nil)
- end
- if tolua.getpeer(self.limitedToggle.off) ~= nil then
- tolua.setpeer(self.limitedToggle.off, nil)
- end
- if tolua.getpeer(self.giftsToggle.on) ~= nil then
- tolua.setpeer(self.giftsToggle.on, nil)
- end
- if tolua.getpeer(self.giftsToggle.off) ~= nil then
- tolua.setpeer(self.giftsToggle.off, nil)
- end
- if tolua.getpeer(self.monthToggle.on) ~= nil then
- tolua.setpeer(self.monthToggle.on, nil)
- end
- if tolua.getpeer(self.monthToggle.off) ~= nil then
- tolua.setpeer(self.monthToggle.off, nil)
- end
- if tolua.getpeer(self.expUpBlue.num) ~= nil then
- tolua.setpeer(self.expUpBlue.num, nil)
- end
- if tolua.getpeer(self.btnTaskExp.icon) ~= nil then
- tolua.setpeer(self.btnTaskExp.icon, nil)
- end
- if tolua.getpeer(self.limitedBox.scrollView) ~= nil then
- tolua.setpeer(self.limitedBox.scrollView, nil)
- end
- if tolua.getpeer(self.giftsBox.scrollView) ~= nil then
- tolua.setpeer(self.giftsBox.scrollView, nil)
- end
- if tolua.getpeer(self.timeBox.textTime) ~= nil then
- tolua.setpeer(self.timeBox.textTime, nil)
- end
- if tolua.getpeer(self.goldBtn.off.text) ~= nil then
- tolua.setpeer(self.goldBtn.off.text, nil)
- end
- if tolua.getpeer(self.goldBtn.on) ~= nil then
- tolua.setpeer(self.goldBtn.on, nil)
- end
- if tolua.getpeer(self.goldBtn.off) ~= nil then
- tolua.setpeer(self.goldBtn.off, nil)
- end
- if tolua.getpeer(self.monthBtn.off.text) ~= nil then
- tolua.setpeer(self.monthBtn.off.text, nil)
- end
- if tolua.getpeer(self.monthBtn.on) ~= nil then
- tolua.setpeer(self.monthBtn.on, nil)
- end
- if tolua.getpeer(self.monthBtn.off) ~= nil then
- tolua.setpeer(self.monthBtn.off, nil)
- end
- if tolua.getpeer(self.weekBtn.off.text) ~= nil then
- tolua.setpeer(self.weekBtn.off.text, nil)
- end
- if tolua.getpeer(self.weekBtn.on) ~= nil then
- tolua.setpeer(self.weekBtn.on, nil)
- end
- if tolua.getpeer(self.weekBtn.off) ~= nil then
- tolua.setpeer(self.weekBtn.off, nil)
- end
- if tolua.getpeer(self.dailyBtn.off.text) ~= nil then
- tolua.setpeer(self.dailyBtn.off.text, nil)
- end
- if tolua.getpeer(self.dailyBtn.on) ~= nil then
- tolua.setpeer(self.dailyBtn.on, nil)
- end
- if tolua.getpeer(self.dailyBtn.off) ~= nil then
- tolua.setpeer(self.dailyBtn.off, nil)
- end
- if tolua.getpeer(self.monthCard2.unActive.text) ~= nil then
- tolua.setpeer(self.monthCard2.unActive.text, nil)
- end
- if tolua.getpeer(self.monthCard2.unActive) ~= nil then
- tolua.setpeer(self.monthCard2.unActive, nil)
- end
- if tolua.getpeer(self.monthCard2.active.text) ~= nil then
- tolua.setpeer(self.monthCard2.active.text, nil)
- end
- if tolua.getpeer(self.monthCard2.active) ~= nil then
- tolua.setpeer(self.monthCard2.active, nil)
- end
- if tolua.getpeer(self.monthCard2.presentPrice.icon) ~= nil then
- tolua.setpeer(self.monthCard2.presentPrice.icon, nil)
- end
- if tolua.getpeer(self.monthCard2.presentPrice.number) ~= nil then
- tolua.setpeer(self.monthCard2.presentPrice.number, nil)
- end
- if tolua.getpeer(self.monthCard2.presentPrice.shadow) ~= nil then
- tolua.setpeer(self.monthCard2.presentPrice.shadow, nil)
- end
- if tolua.getpeer(self.monthCard2.presentPrice) ~= nil then
- tolua.setpeer(self.monthCard2.presentPrice, nil)
- end
- if tolua.getpeer(self.monthCard2.totalReward.number) ~= nil then
- tolua.setpeer(self.monthCard2.totalReward.number, nil)
- end
- if tolua.getpeer(self.monthCard2.totalReward.icon) ~= nil then
- tolua.setpeer(self.monthCard2.totalReward.icon, nil)
- end
- if tolua.getpeer(self.monthCard2.totalReward) ~= nil then
- tolua.setpeer(self.monthCard2.totalReward, nil)
- end
- if tolua.getpeer(self.monthCard2.dailyReward.number) ~= nil then
- tolua.setpeer(self.monthCard2.dailyReward.number, nil)
- end
- if tolua.getpeer(self.monthCard2.dailyReward.icon) ~= nil then
- tolua.setpeer(self.monthCard2.dailyReward.icon, nil)
- end
- if tolua.getpeer(self.monthCard2.dailyReward) ~= nil then
- tolua.setpeer(self.monthCard2.dailyReward, nil)
- end
- if tolua.getpeer(self.monthCard2.buyReward2.number) ~= nil then
- tolua.setpeer(self.monthCard2.buyReward2.number, nil)
- end
- if tolua.getpeer(self.monthCard2.buyReward2.icon) ~= nil then
- tolua.setpeer(self.monthCard2.buyReward2.icon, nil)
- end
- if tolua.getpeer(self.monthCard2.buyReward2) ~= nil then
- tolua.setpeer(self.monthCard2.buyReward2, nil)
- end
- if tolua.getpeer(self.monthCard2.buyReward1.number) ~= nil then
- tolua.setpeer(self.monthCard2.buyReward1.number, nil)
- end
- if tolua.getpeer(self.monthCard2.buyReward1.icon) ~= nil then
- tolua.setpeer(self.monthCard2.buyReward1.icon, nil)
- end
- if tolua.getpeer(self.monthCard2.buyReward1) ~= nil then
- tolua.setpeer(self.monthCard2.buyReward1, nil)
- end
- if tolua.getpeer(self.monthCard2.textDsc) ~= nil then
- tolua.setpeer(self.monthCard2.textDsc, nil)
- end
- if tolua.getpeer(self.monthCard1.unActive.text) ~= nil then
- tolua.setpeer(self.monthCard1.unActive.text, nil)
- end
- if tolua.getpeer(self.monthCard1.unActive) ~= nil then
- tolua.setpeer(self.monthCard1.unActive, nil)
- end
- if tolua.getpeer(self.monthCard1.active.text) ~= nil then
- tolua.setpeer(self.monthCard1.active.text, nil)
- end
- if tolua.getpeer(self.monthCard1.active) ~= nil then
- tolua.setpeer(self.monthCard1.active, nil)
- end
- if tolua.getpeer(self.monthCard1.presentPrice.icon) ~= nil then
- tolua.setpeer(self.monthCard1.presentPrice.icon, nil)
- end
- if tolua.getpeer(self.monthCard1.presentPrice.number) ~= nil then
- tolua.setpeer(self.monthCard1.presentPrice.number, nil)
- end
- if tolua.getpeer(self.monthCard1.presentPrice.shadow) ~= nil then
- tolua.setpeer(self.monthCard1.presentPrice.shadow, nil)
- end
- if tolua.getpeer(self.monthCard1.presentPrice) ~= nil then
- tolua.setpeer(self.monthCard1.presentPrice, nil)
- end
- if tolua.getpeer(self.monthCard1.totalReward.number) ~= nil then
- tolua.setpeer(self.monthCard1.totalReward.number, nil)
- end
- if tolua.getpeer(self.monthCard1.totalReward.icon) ~= nil then
- tolua.setpeer(self.monthCard1.totalReward.icon, nil)
- end
- if tolua.getpeer(self.monthCard1.totalReward) ~= nil then
- tolua.setpeer(self.monthCard1.totalReward, nil)
- end
- if tolua.getpeer(self.monthCard1.dailyReward.number) ~= nil then
- tolua.setpeer(self.monthCard1.dailyReward.number, nil)
- end
- if tolua.getpeer(self.monthCard1.dailyReward.icon) ~= nil then
- tolua.setpeer(self.monthCard1.dailyReward.icon, nil)
- end
- if tolua.getpeer(self.monthCard1.dailyReward) ~= nil then
- tolua.setpeer(self.monthCard1.dailyReward, nil)
- end
- if tolua.getpeer(self.monthCard1.buyReward2.number) ~= nil then
- tolua.setpeer(self.monthCard1.buyReward2.number, nil)
- end
- if tolua.getpeer(self.monthCard1.buyReward2.icon) ~= nil then
- tolua.setpeer(self.monthCard1.buyReward2.icon, nil)
- end
- if tolua.getpeer(self.monthCard1.buyReward2) ~= nil then
- tolua.setpeer(self.monthCard1.buyReward2, nil)
- end
- if tolua.getpeer(self.monthCard1.buyReward1.number) ~= nil then
- tolua.setpeer(self.monthCard1.buyReward1.number, nil)
- end
- if tolua.getpeer(self.monthCard1.buyReward1.icon) ~= nil then
- tolua.setpeer(self.monthCard1.buyReward1.icon, nil)
- end
- if tolua.getpeer(self.monthCard1.buyReward1) ~= nil then
- tolua.setpeer(self.monthCard1.buyReward1, nil)
- end
- if tolua.getpeer(self.monthCard1.textDsc) ~= nil then
- tolua.setpeer(self.monthCard1.textDsc, nil)
- end
- if tolua.getpeer(self.uIAnimator) ~= nil then
- tolua.setpeer(self.uIAnimator, nil)
- end
- self.uIAnimator = nil
- if tolua.getpeer(self.AnyBtn) ~= nil then
- tolua.setpeer(self.AnyBtn, nil)
- end
- self.AnyBtn = nil
- if tolua.getpeer(self.monthBox) ~= nil then
- tolua.setpeer(self.monthBox, nil)
- end
- self.monthBox = nil
- if tolua.getpeer(self.monthCard1) ~= nil then
- tolua.setpeer(self.monthCard1, nil)
- end
- self.monthCard1 = nil
- if tolua.getpeer(self.monthCard2) ~= nil then
- tolua.setpeer(self.monthCard2, nil)
- end
- self.monthCard2 = nil
- if tolua.getpeer(self.btnLog) ~= nil then
- tolua.setpeer(self.btnLog, nil)
- end
- self.btnLog = nil
- if tolua.getpeer(self.giftsBox) ~= nil then
- tolua.setpeer(self.giftsBox, nil)
- end
- self.giftsBox = nil
- if tolua.getpeer(self.dailyBtn) ~= nil then
- tolua.setpeer(self.dailyBtn, nil)
- end
- self.dailyBtn = nil
- if tolua.getpeer(self.weekBtn) ~= nil then
- tolua.setpeer(self.weekBtn, nil)
- end
- self.weekBtn = nil
- if tolua.getpeer(self.monthBtn) ~= nil then
- tolua.setpeer(self.monthBtn, nil)
- end
- self.monthBtn = nil
- if tolua.getpeer(self.goldBtn) ~= nil then
- tolua.setpeer(self.goldBtn, nil)
- end
- self.goldBtn = nil
- if tolua.getpeer(self.timeBox) ~= nil then
- tolua.setpeer(self.timeBox, nil)
- end
- self.timeBox = nil
- if self.runeShopGoodsItem.GenerateDestroy ~= nil then
- self.runeShopGoodsItem:GenerateDestroy()
- end
- if tolua.getpeer(self.runeShopGoodsItem) ~= nil then
- tolua.setpeer(self.runeShopGoodsItem, nil)
- end
- self.runeShopGoodsItem = nil
- if tolua.getpeer(self.limitedBox) ~= nil then
- tolua.setpeer(self.limitedBox, nil)
- end
- self.limitedBox = nil
- if self.runeShopLimitedItem.GenerateDestroy ~= nil then
- self.runeShopLimitedItem:GenerateDestroy()
- end
- if tolua.getpeer(self.runeShopLimitedItem) ~= nil then
- tolua.setpeer(self.runeShopLimitedItem, nil)
- end
- self.runeShopLimitedItem = nil
- if tolua.getpeer(self.rewardsBox) ~= nil then
- tolua.setpeer(self.rewardsBox, nil)
- end
- self.rewardsBox = nil
- if tolua.getpeer(self.btnClose) ~= nil then
- tolua.setpeer(self.btnClose, nil)
- end
- self.btnClose = nil
- if tolua.getpeer(self.rewardsExpBox) ~= nil then
- tolua.setpeer(self.rewardsExpBox, nil)
- end
- self.rewardsExpBox = nil
- if tolua.getpeer(self.rewardslv) ~= nil then
- tolua.setpeer(self.rewardslv, nil)
- end
- self.rewardslv = nil
- if tolua.getpeer(self.rewardsmax) ~= nil then
- tolua.setpeer(self.rewardsmax, nil)
- end
- self.rewardsmax = nil
- if tolua.getpeer(self.numexp) ~= nil then
- tolua.setpeer(self.numexp, nil)
- end
- self.numexp = nil
- if tolua.getpeer(self.expSlider) ~= nil then
- tolua.setpeer(self.expSlider, nil)
- end
- self.expSlider = nil
- if tolua.getpeer(self.btnTaskExp) ~= nil then
- tolua.setpeer(self.btnTaskExp, nil)
- end
- self.btnTaskExp = nil
- if tolua.getpeer(self.expUpBlue) ~= nil then
- tolua.setpeer(self.expUpBlue, nil)
- end
- self.expUpBlue = nil
- if tolua.getpeer(self.btnVIP) ~= nil then
- tolua.setpeer(self.btnVIP, nil)
- end
- self.btnVIP = nil
- if tolua.getpeer(self.vipFrame) ~= nil then
- tolua.setpeer(self.vipFrame, nil)
- end
- self.vipFrame = nil
- if tolua.getpeer(self.vipIcon) ~= nil then
- tolua.setpeer(self.vipIcon, nil)
- end
- self.vipIcon = nil
- if tolua.getpeer(self.vipNameTxt) ~= nil then
- tolua.setpeer(self.vipNameTxt, nil)
- end
- self.vipNameTxt = nil
- if tolua.getpeer(self.content) ~= nil then
- tolua.setpeer(self.content, nil)
- end
- self.content = nil
- if tolua.getpeer(self.monthToggle) ~= nil then
- tolua.setpeer(self.monthToggle, nil)
- end
- self.monthToggle = nil
- if tolua.getpeer(self.giftsToggle) ~= nil then
- tolua.setpeer(self.giftsToggle, nil)
- end
- self.giftsToggle = nil
- if tolua.getpeer(self.limitedToggle) ~= nil then
- tolua.setpeer(self.limitedToggle, nil)
- end
- self.limitedToggle = nil
- if tolua.getpeer(self.rewardsToggle) ~= nil then
- tolua.setpeer(self.rewardsToggle, nil)
- end
- self.rewardsToggle = nil
- if tolua.getpeer(self.textBox) ~= nil then
- tolua.setpeer(self.textBox, nil)
- end
- self.textBox = nil
- if tolua.getpeer(self.coin) ~= nil then
- tolua.setpeer(self.coin, nil)
- end
- self.coin = nil
- if tolua.getpeer(self.gold) ~= nil then
- tolua.setpeer(self.gold, nil)
- end
- self.gold = nil
- self.transform = nil
- self.gameObject = nil
- self.inited = false
- end
- return UIRuneShopView
|