AttendancePanel.prefab 187 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "AttendancePanel",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [
  29. {
  30. "__id__": 295
  31. },
  32. {
  33. "__id__": 296
  34. },
  35. {
  36. "__id__": 297
  37. }
  38. ],
  39. "_prefab": {
  40. "__id__": 298
  41. },
  42. "_opacity": 255,
  43. "_color": {
  44. "__type__": "cc.Color",
  45. "r": 255,
  46. "g": 255,
  47. "b": 255,
  48. "a": 255
  49. },
  50. "_contentSize": {
  51. "__type__": "cc.Size",
  52. "width": 750,
  53. "height": 1334
  54. },
  55. "_anchorPoint": {
  56. "__type__": "cc.Vec2",
  57. "x": 0.5,
  58. "y": 0.5
  59. },
  60. "_position": {
  61. "__type__": "cc.Vec3",
  62. "x": 480,
  63. "y": 320,
  64. "z": 0
  65. },
  66. "_scale": {
  67. "__type__": "cc.Vec3",
  68. "x": 1,
  69. "y": 1,
  70. "z": 1
  71. },
  72. "_trs": {
  73. "__type__": "TypedArray",
  74. "ctor": "Float64Array",
  75. "array": [
  76. 375,
  77. 667,
  78. 0,
  79. 0,
  80. 0,
  81. 0,
  82. 1,
  83. 1,
  84. 1,
  85. 1
  86. ]
  87. },
  88. "_eulerAngles": {
  89. "__type__": "cc.Vec3",
  90. "x": 0,
  91. "y": 0,
  92. "z": 0
  93. },
  94. "_skewX": 0,
  95. "_skewY": 0,
  96. "_zIndex": 0,
  97. "_is3DNode": false,
  98. "_groupIndex": 0,
  99. "groupIndex": 0,
  100. "_id": ""
  101. },
  102. {
  103. "__type__": "cc.Node",
  104. "_name": "mask",
  105. "_objFlags": 0,
  106. "_parent": {
  107. "__id__": 1
  108. },
  109. "_children": [],
  110. "_active": true,
  111. "_components": [
  112. {
  113. "__id__": 3
  114. },
  115. {
  116. "__id__": 4
  117. }
  118. ],
  119. "_prefab": {
  120. "__id__": 5
  121. },
  122. "_opacity": 200,
  123. "_color": {
  124. "__type__": "cc.Color",
  125. "r": 0,
  126. "g": 0,
  127. "b": 0,
  128. "a": 255
  129. },
  130. "_contentSize": {
  131. "__type__": "cc.Size",
  132. "width": 750,
  133. "height": 1334
  134. },
  135. "_anchorPoint": {
  136. "__type__": "cc.Vec2",
  137. "x": 0.5,
  138. "y": 0.5
  139. },
  140. "_trs": {
  141. "__type__": "TypedArray",
  142. "ctor": "Float64Array",
  143. "array": [
  144. 0,
  145. 0,
  146. 0,
  147. 0,
  148. 0,
  149. 0,
  150. 1,
  151. 1,
  152. 1,
  153. 1
  154. ]
  155. },
  156. "_eulerAngles": {
  157. "__type__": "cc.Vec3",
  158. "x": 0,
  159. "y": 0,
  160. "z": 0
  161. },
  162. "_skewX": 0,
  163. "_skewY": 0,
  164. "_is3DNode": false,
  165. "_groupIndex": 0,
  166. "groupIndex": 0,
  167. "_id": ""
  168. },
  169. {
  170. "__type__": "cc.Sprite",
  171. "_name": "",
  172. "_objFlags": 0,
  173. "node": {
  174. "__id__": 2
  175. },
  176. "_enabled": true,
  177. "_materials": [
  178. {
  179. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  180. }
  181. ],
  182. "_srcBlendFactor": 770,
  183. "_dstBlendFactor": 771,
  184. "_spriteFrame": {
  185. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  186. },
  187. "_type": 0,
  188. "_sizeMode": 0,
  189. "_fillType": 0,
  190. "_fillCenter": {
  191. "__type__": "cc.Vec2",
  192. "x": 0,
  193. "y": 0
  194. },
  195. "_fillStart": 0,
  196. "_fillRange": 0,
  197. "_isTrimmedMode": true,
  198. "_atlas": null,
  199. "_id": ""
  200. },
  201. {
  202. "__type__": "cc.Widget",
  203. "_name": "",
  204. "_objFlags": 0,
  205. "node": {
  206. "__id__": 2
  207. },
  208. "_enabled": true,
  209. "alignMode": 1,
  210. "_target": null,
  211. "_alignFlags": 45,
  212. "_left": 0,
  213. "_right": 0,
  214. "_top": 0,
  215. "_bottom": 0,
  216. "_verticalCenter": 0,
  217. "_horizontalCenter": 0,
  218. "_isAbsLeft": true,
  219. "_isAbsRight": true,
  220. "_isAbsTop": true,
  221. "_isAbsBottom": true,
  222. "_isAbsHorizontalCenter": true,
  223. "_isAbsVerticalCenter": true,
  224. "_originalWidth": 100,
  225. "_originalHeight": 100,
  226. "_id": ""
  227. },
  228. {
  229. "__type__": "cc.PrefabInfo",
  230. "root": {
  231. "__id__": 1
  232. },
  233. "asset": {
  234. "__id__": 0
  235. },
  236. "fileId": "25ooHfDw1FDpYCC870pq1O",
  237. "sync": false
  238. },
  239. {
  240. "__type__": "cc.Node",
  241. "_name": "panel",
  242. "_objFlags": 0,
  243. "_parent": {
  244. "__id__": 1
  245. },
  246. "_children": [
  247. {
  248. "__id__": 7
  249. },
  250. {
  251. "__id__": 10
  252. },
  253. {
  254. "__id__": 14
  255. },
  256. {
  257. "__id__": 17
  258. },
  259. {
  260. "__id__": 267
  261. },
  262. {
  263. "__id__": 289
  264. }
  265. ],
  266. "_active": true,
  267. "_components": [
  268. {
  269. "__id__": 293
  270. }
  271. ],
  272. "_prefab": {
  273. "__id__": 294
  274. },
  275. "_opacity": 255,
  276. "_color": {
  277. "__type__": "cc.Color",
  278. "r": 255,
  279. "g": 255,
  280. "b": 255,
  281. "a": 255
  282. },
  283. "_contentSize": {
  284. "__type__": "cc.Size",
  285. "width": 584,
  286. "height": 818
  287. },
  288. "_anchorPoint": {
  289. "__type__": "cc.Vec2",
  290. "x": 0.5,
  291. "y": 0.5
  292. },
  293. "_trs": {
  294. "__type__": "TypedArray",
  295. "ctor": "Float64Array",
  296. "array": [
  297. 0,
  298. 0,
  299. 0,
  300. 0,
  301. 0,
  302. 0,
  303. 1,
  304. 1,
  305. 1,
  306. 1
  307. ]
  308. },
  309. "_eulerAngles": {
  310. "__type__": "cc.Vec3",
  311. "x": 0,
  312. "y": 0,
  313. "z": 0
  314. },
  315. "_skewX": 0,
  316. "_skewY": 0,
  317. "_is3DNode": false,
  318. "_groupIndex": 0,
  319. "groupIndex": 0,
  320. "_id": ""
  321. },
  322. {
  323. "__type__": "cc.Node",
  324. "_name": "qiandaojiangli",
  325. "_objFlags": 0,
  326. "_parent": {
  327. "__id__": 6
  328. },
  329. "_children": [],
  330. "_active": true,
  331. "_components": [
  332. {
  333. "__id__": 8
  334. }
  335. ],
  336. "_prefab": {
  337. "__id__": 9
  338. },
  339. "_opacity": 255,
  340. "_color": {
  341. "__type__": "cc.Color",
  342. "r": 255,
  343. "g": 255,
  344. "b": 255,
  345. "a": 255
  346. },
  347. "_contentSize": {
  348. "__type__": "cc.Size",
  349. "width": 161,
  350. "height": 42
  351. },
  352. "_anchorPoint": {
  353. "__type__": "cc.Vec2",
  354. "x": 0.5,
  355. "y": 0.5
  356. },
  357. "_trs": {
  358. "__type__": "TypedArray",
  359. "ctor": "Float64Array",
  360. "array": [
  361. 0,
  362. 367.102,
  363. 0,
  364. 0,
  365. 0,
  366. 0,
  367. 1,
  368. 1,
  369. 1,
  370. 1
  371. ]
  372. },
  373. "_eulerAngles": {
  374. "__type__": "cc.Vec3",
  375. "x": 0,
  376. "y": 0,
  377. "z": 0
  378. },
  379. "_skewX": 0,
  380. "_skewY": 0,
  381. "_is3DNode": false,
  382. "_groupIndex": 0,
  383. "groupIndex": 0,
  384. "_id": ""
  385. },
  386. {
  387. "__type__": "cc.Sprite",
  388. "_name": "",
  389. "_objFlags": 0,
  390. "node": {
  391. "__id__": 7
  392. },
  393. "_enabled": true,
  394. "_materials": [
  395. {
  396. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  397. }
  398. ],
  399. "_srcBlendFactor": 770,
  400. "_dstBlendFactor": 771,
  401. "_spriteFrame": {
  402. "__uuid__": "c633309a-6620-429c-86ce-79add50ff58e"
  403. },
  404. "_type": 0,
  405. "_sizeMode": 1,
  406. "_fillType": 0,
  407. "_fillCenter": {
  408. "__type__": "cc.Vec2",
  409. "x": 0,
  410. "y": 0
  411. },
  412. "_fillStart": 0,
  413. "_fillRange": 0,
  414. "_isTrimmedMode": true,
  415. "_atlas": null,
  416. "_id": ""
  417. },
  418. {
  419. "__type__": "cc.PrefabInfo",
  420. "root": {
  421. "__id__": 1
  422. },
  423. "asset": {
  424. "__id__": 0
  425. },
  426. "fileId": "260jc44ydCJKpEPxs2M4XT",
  427. "sync": false
  428. },
  429. {
  430. "__type__": "cc.Node",
  431. "_name": "title",
  432. "_objFlags": 0,
  433. "_parent": {
  434. "__id__": 6
  435. },
  436. "_children": [],
  437. "_active": false,
  438. "_components": [
  439. {
  440. "__id__": 11
  441. },
  442. {
  443. "__id__": 12
  444. }
  445. ],
  446. "_prefab": {
  447. "__id__": 13
  448. },
  449. "_opacity": 255,
  450. "_color": {
  451. "__type__": "cc.Color",
  452. "r": 255,
  453. "g": 255,
  454. "b": 255,
  455. "a": 255
  456. },
  457. "_contentSize": {
  458. "__type__": "cc.Size",
  459. "width": 164,
  460. "height": 54.4
  461. },
  462. "_anchorPoint": {
  463. "__type__": "cc.Vec2",
  464. "x": 0.5,
  465. "y": 0.5
  466. },
  467. "_trs": {
  468. "__type__": "TypedArray",
  469. "ctor": "Float64Array",
  470. "array": [
  471. 0,
  472. 368.271,
  473. 0,
  474. 0,
  475. 0,
  476. 0,
  477. 1,
  478. 1,
  479. 1,
  480. 1
  481. ]
  482. },
  483. "_eulerAngles": {
  484. "__type__": "cc.Vec3",
  485. "x": 0,
  486. "y": 0,
  487. "z": 0
  488. },
  489. "_skewX": 0,
  490. "_skewY": 0,
  491. "_is3DNode": false,
  492. "_groupIndex": 0,
  493. "groupIndex": 0,
  494. "_id": ""
  495. },
  496. {
  497. "__type__": "cc.Label",
  498. "_name": "",
  499. "_objFlags": 0,
  500. "node": {
  501. "__id__": 10
  502. },
  503. "_enabled": true,
  504. "_materials": [
  505. {
  506. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  507. }
  508. ],
  509. "_srcBlendFactor": 770,
  510. "_dstBlendFactor": 771,
  511. "_string": "签到奖励",
  512. "_N$string": "签到奖励",
  513. "_fontSize": 40,
  514. "_lineHeight": 40,
  515. "_enableWrapText": true,
  516. "_N$file": null,
  517. "_isSystemFontUsed": true,
  518. "_spacingX": 0,
  519. "_batchAsBitmap": false,
  520. "_styleFlags": 1,
  521. "_underlineHeight": 0,
  522. "_N$horizontalAlign": 1,
  523. "_N$verticalAlign": 1,
  524. "_N$fontFamily": "Arial",
  525. "_N$overflow": 0,
  526. "_N$cacheMode": 1,
  527. "_id": ""
  528. },
  529. {
  530. "__type__": "cc.LabelOutline",
  531. "_name": "",
  532. "_objFlags": 0,
  533. "node": {
  534. "__id__": 10
  535. },
  536. "_enabled": true,
  537. "_color": {
  538. "__type__": "cc.Color",
  539. "r": 113,
  540. "g": 15,
  541. "b": 0,
  542. "a": 255
  543. },
  544. "_width": 2,
  545. "_id": ""
  546. },
  547. {
  548. "__type__": "cc.PrefabInfo",
  549. "root": {
  550. "__id__": 1
  551. },
  552. "asset": {
  553. "__id__": 0
  554. },
  555. "fileId": "6a/NQQ7TNFapDUwORETBzr",
  556. "sync": false
  557. },
  558. {
  559. "__type__": "cc.Node",
  560. "_name": "bg",
  561. "_objFlags": 0,
  562. "_parent": {
  563. "__id__": 6
  564. },
  565. "_children": [],
  566. "_active": true,
  567. "_components": [
  568. {
  569. "__id__": 15
  570. }
  571. ],
  572. "_prefab": {
  573. "__id__": 16
  574. },
  575. "_opacity": 255,
  576. "_color": {
  577. "__type__": "cc.Color",
  578. "r": 255,
  579. "g": 255,
  580. "b": 255,
  581. "a": 255
  582. },
  583. "_contentSize": {
  584. "__type__": "cc.Size",
  585. "width": 550,
  586. "height": 718
  587. },
  588. "_anchorPoint": {
  589. "__type__": "cc.Vec2",
  590. "x": 0.5,
  591. "y": 0.5
  592. },
  593. "_trs": {
  594. "__type__": "TypedArray",
  595. "ctor": "Float64Array",
  596. "array": [
  597. 0,
  598. -27.079,
  599. 0,
  600. 0,
  601. 0,
  602. 0,
  603. 1,
  604. 1,
  605. 1,
  606. 1
  607. ]
  608. },
  609. "_eulerAngles": {
  610. "__type__": "cc.Vec3",
  611. "x": 0,
  612. "y": 0,
  613. "z": 0
  614. },
  615. "_skewX": 0,
  616. "_skewY": 0,
  617. "_is3DNode": false,
  618. "_groupIndex": 0,
  619. "groupIndex": 0,
  620. "_id": ""
  621. },
  622. {
  623. "__type__": "cc.Sprite",
  624. "_name": "",
  625. "_objFlags": 0,
  626. "node": {
  627. "__id__": 14
  628. },
  629. "_enabled": true,
  630. "_materials": [
  631. {
  632. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  633. }
  634. ],
  635. "_srcBlendFactor": 770,
  636. "_dstBlendFactor": 771,
  637. "_spriteFrame": {
  638. "__uuid__": "f5c21024-017a-496e-a1df-b7daca274cef"
  639. },
  640. "_type": 1,
  641. "_sizeMode": 0,
  642. "_fillType": 0,
  643. "_fillCenter": {
  644. "__type__": "cc.Vec2",
  645. "x": 0,
  646. "y": 0
  647. },
  648. "_fillStart": 0,
  649. "_fillRange": 0,
  650. "_isTrimmedMode": true,
  651. "_atlas": null,
  652. "_id": ""
  653. },
  654. {
  655. "__type__": "cc.PrefabInfo",
  656. "root": {
  657. "__id__": 1
  658. },
  659. "asset": {
  660. "__id__": 0
  661. },
  662. "fileId": "c6jI+W16hKkZmilh2eVFPT",
  663. "sync": false
  664. },
  665. {
  666. "__type__": "cc.Node",
  667. "_name": "days",
  668. "_objFlags": 0,
  669. "_parent": {
  670. "__id__": 6
  671. },
  672. "_children": [
  673. {
  674. "__id__": 18
  675. },
  676. {
  677. "__id__": 50
  678. },
  679. {
  680. "__id__": 82
  681. },
  682. {
  683. "__id__": 114
  684. },
  685. {
  686. "__id__": 146
  687. },
  688. {
  689. "__id__": 178
  690. },
  691. {
  692. "__id__": 210
  693. }
  694. ],
  695. "_active": true,
  696. "_components": [
  697. {
  698. "__id__": 265
  699. }
  700. ],
  701. "_prefab": {
  702. "__id__": 266
  703. },
  704. "_opacity": 255,
  705. "_color": {
  706. "__type__": "cc.Color",
  707. "r": 255,
  708. "g": 255,
  709. "b": 255,
  710. "a": 255
  711. },
  712. "_contentSize": {
  713. "__type__": "cc.Size",
  714. "width": 512,
  715. "height": 540
  716. },
  717. "_anchorPoint": {
  718. "__type__": "cc.Vec2",
  719. "x": 0.5,
  720. "y": 0.5
  721. },
  722. "_trs": {
  723. "__type__": "TypedArray",
  724. "ctor": "Float64Array",
  725. "array": [
  726. 0,
  727. 40.29,
  728. 0,
  729. 0,
  730. 0,
  731. 0,
  732. 1,
  733. 1,
  734. 1,
  735. 1
  736. ]
  737. },
  738. "_eulerAngles": {
  739. "__type__": "cc.Vec3",
  740. "x": 0,
  741. "y": 0,
  742. "z": 0
  743. },
  744. "_skewX": 0,
  745. "_skewY": 0,
  746. "_is3DNode": false,
  747. "_groupIndex": 0,
  748. "groupIndex": 0,
  749. "_id": ""
  750. },
  751. {
  752. "__type__": "cc.Node",
  753. "_name": "one",
  754. "_objFlags": 0,
  755. "_parent": {
  756. "__id__": 17
  757. },
  758. "_children": [
  759. {
  760. "__id__": 19
  761. },
  762. {
  763. "__id__": 22
  764. },
  765. {
  766. "__id__": 29
  767. },
  768. {
  769. "__id__": 38
  770. }
  771. ],
  772. "_active": true,
  773. "_components": [
  774. {
  775. "__id__": 47
  776. },
  777. {
  778. "__id__": 48
  779. }
  780. ],
  781. "_prefab": {
  782. "__id__": 49
  783. },
  784. "_opacity": 255,
  785. "_color": {
  786. "__type__": "cc.Color",
  787. "r": 255,
  788. "g": 255,
  789. "b": 255,
  790. "a": 255
  791. },
  792. "_contentSize": {
  793. "__type__": "cc.Size",
  794. "width": 162,
  795. "height": 160
  796. },
  797. "_anchorPoint": {
  798. "__type__": "cc.Vec2",
  799. "x": 0.5,
  800. "y": 0.5
  801. },
  802. "_trs": {
  803. "__type__": "TypedArray",
  804. "ctor": "Float64Array",
  805. "array": [
  806. -175,
  807. 190,
  808. 0,
  809. 0,
  810. 0,
  811. 0,
  812. 1,
  813. 1,
  814. 1,
  815. 1
  816. ]
  817. },
  818. "_eulerAngles": {
  819. "__type__": "cc.Vec3",
  820. "x": 0,
  821. "y": 0,
  822. "z": 0
  823. },
  824. "_skewX": 0,
  825. "_skewY": 0,
  826. "_is3DNode": false,
  827. "_groupIndex": 0,
  828. "groupIndex": 0,
  829. "_id": ""
  830. },
  831. {
  832. "__type__": "cc.Node",
  833. "_name": "di",
  834. "_objFlags": 0,
  835. "_parent": {
  836. "__id__": 18
  837. },
  838. "_children": [],
  839. "_active": false,
  840. "_components": [
  841. {
  842. "__id__": 20
  843. }
  844. ],
  845. "_prefab": {
  846. "__id__": 21
  847. },
  848. "_opacity": 255,
  849. "_color": {
  850. "__type__": "cc.Color",
  851. "r": 255,
  852. "g": 255,
  853. "b": 255,
  854. "a": 255
  855. },
  856. "_contentSize": {
  857. "__type__": "cc.Size",
  858. "width": 162,
  859. "height": 160
  860. },
  861. "_anchorPoint": {
  862. "__type__": "cc.Vec2",
  863. "x": 0.5,
  864. "y": 0.5
  865. },
  866. "_trs": {
  867. "__type__": "TypedArray",
  868. "ctor": "Float64Array",
  869. "array": [
  870. 0,
  871. 0,
  872. 0,
  873. 0,
  874. 0,
  875. 0,
  876. 1,
  877. 1,
  878. 1,
  879. 1
  880. ]
  881. },
  882. "_eulerAngles": {
  883. "__type__": "cc.Vec3",
  884. "x": 0,
  885. "y": 0,
  886. "z": 0
  887. },
  888. "_skewX": 0,
  889. "_skewY": 0,
  890. "_is3DNode": false,
  891. "_groupIndex": 0,
  892. "groupIndex": 0,
  893. "_id": ""
  894. },
  895. {
  896. "__type__": "cc.Sprite",
  897. "_name": "",
  898. "_objFlags": 0,
  899. "node": {
  900. "__id__": 19
  901. },
  902. "_enabled": true,
  903. "_materials": [
  904. {
  905. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  906. }
  907. ],
  908. "_srcBlendFactor": 770,
  909. "_dstBlendFactor": 771,
  910. "_spriteFrame": {
  911. "__uuid__": "6d9d4bf6-e66b-40aa-8e1b-609c88010983"
  912. },
  913. "_type": 1,
  914. "_sizeMode": 0,
  915. "_fillType": 0,
  916. "_fillCenter": {
  917. "__type__": "cc.Vec2",
  918. "x": 0,
  919. "y": 0
  920. },
  921. "_fillStart": 0,
  922. "_fillRange": 0,
  923. "_isTrimmedMode": true,
  924. "_atlas": null,
  925. "_id": ""
  926. },
  927. {
  928. "__type__": "cc.PrefabInfo",
  929. "root": {
  930. "__id__": 1
  931. },
  932. "asset": {
  933. "__id__": 0
  934. },
  935. "fileId": "1cspYR9KJAm7AiIleWbKoJ",
  936. "sync": false
  937. },
  938. {
  939. "__type__": "cc.Node",
  940. "_name": "item",
  941. "_objFlags": 0,
  942. "_parent": {
  943. "__id__": 18
  944. },
  945. "_children": [
  946. {
  947. "__id__": 23
  948. }
  949. ],
  950. "_active": true,
  951. "_components": [
  952. {
  953. "__id__": 27
  954. }
  955. ],
  956. "_prefab": {
  957. "__id__": 28
  958. },
  959. "_opacity": 255,
  960. "_color": {
  961. "__type__": "cc.Color",
  962. "r": 255,
  963. "g": 255,
  964. "b": 255,
  965. "a": 255
  966. },
  967. "_contentSize": {
  968. "__type__": "cc.Size",
  969. "width": 74,
  970. "height": 74
  971. },
  972. "_anchorPoint": {
  973. "__type__": "cc.Vec2",
  974. "x": 0.5,
  975. "y": 0.5
  976. },
  977. "_trs": {
  978. "__type__": "TypedArray",
  979. "ctor": "Float64Array",
  980. "array": [
  981. 0,
  982. 22.421,
  983. 0,
  984. 0,
  985. 0,
  986. 0,
  987. 1,
  988. 1,
  989. 1,
  990. 1
  991. ]
  992. },
  993. "_eulerAngles": {
  994. "__type__": "cc.Vec3",
  995. "x": 0,
  996. "y": 0,
  997. "z": 0
  998. },
  999. "_skewX": 0,
  1000. "_skewY": 0,
  1001. "_is3DNode": false,
  1002. "_groupIndex": 0,
  1003. "groupIndex": 0,
  1004. "_id": ""
  1005. },
  1006. {
  1007. "__type__": "cc.Node",
  1008. "_name": "num",
  1009. "_objFlags": 0,
  1010. "_parent": {
  1011. "__id__": 22
  1012. },
  1013. "_children": [],
  1014. "_active": true,
  1015. "_components": [
  1016. {
  1017. "__id__": 24
  1018. },
  1019. {
  1020. "__id__": 25
  1021. }
  1022. ],
  1023. "_prefab": {
  1024. "__id__": 26
  1025. },
  1026. "_opacity": 255,
  1027. "_color": {
  1028. "__type__": "cc.Color",
  1029. "r": 255,
  1030. "g": 255,
  1031. "b": 255,
  1032. "a": 255
  1033. },
  1034. "_contentSize": {
  1035. "__type__": "cc.Size",
  1036. "width": 30.7,
  1037. "height": 34.239999999999995
  1038. },
  1039. "_anchorPoint": {
  1040. "__type__": "cc.Vec2",
  1041. "x": 0.5,
  1042. "y": 0.5
  1043. },
  1044. "_trs": {
  1045. "__type__": "TypedArray",
  1046. "ctor": "Float64Array",
  1047. "array": [
  1048. 31.485,
  1049. -20.513,
  1050. 0,
  1051. 0,
  1052. 0,
  1053. 0,
  1054. 1,
  1055. 1,
  1056. 1,
  1057. 1
  1058. ]
  1059. },
  1060. "_eulerAngles": {
  1061. "__type__": "cc.Vec3",
  1062. "x": 0,
  1063. "y": 0,
  1064. "z": 0
  1065. },
  1066. "_skewX": 0,
  1067. "_skewY": 0,
  1068. "_is3DNode": false,
  1069. "_groupIndex": 0,
  1070. "groupIndex": 0,
  1071. "_id": ""
  1072. },
  1073. {
  1074. "__type__": "cc.Label",
  1075. "_name": "",
  1076. "_objFlags": 0,
  1077. "node": {
  1078. "__id__": 23
  1079. },
  1080. "_enabled": true,
  1081. "_materials": [
  1082. {
  1083. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1084. }
  1085. ],
  1086. "_srcBlendFactor": 770,
  1087. "_dstBlendFactor": 771,
  1088. "_string": "x1",
  1089. "_N$string": "x1",
  1090. "_fontSize": 24,
  1091. "_lineHeight": 24,
  1092. "_enableWrapText": true,
  1093. "_N$file": null,
  1094. "_isSystemFontUsed": true,
  1095. "_spacingX": 0,
  1096. "_batchAsBitmap": false,
  1097. "_styleFlags": 1,
  1098. "_underlineHeight": 0,
  1099. "_N$horizontalAlign": 1,
  1100. "_N$verticalAlign": 1,
  1101. "_N$fontFamily": "Arial",
  1102. "_N$overflow": 0,
  1103. "_N$cacheMode": 1,
  1104. "_id": ""
  1105. },
  1106. {
  1107. "__type__": "cc.LabelOutline",
  1108. "_name": "",
  1109. "_objFlags": 0,
  1110. "node": {
  1111. "__id__": 23
  1112. },
  1113. "_enabled": true,
  1114. "_color": {
  1115. "__type__": "cc.Color",
  1116. "r": 113,
  1117. "g": 15,
  1118. "b": 0,
  1119. "a": 255
  1120. },
  1121. "_width": 2,
  1122. "_id": ""
  1123. },
  1124. {
  1125. "__type__": "cc.PrefabInfo",
  1126. "root": {
  1127. "__id__": 1
  1128. },
  1129. "asset": {
  1130. "__id__": 0
  1131. },
  1132. "fileId": "afGlTd1UVK7LA+mT9qp5pc",
  1133. "sync": false
  1134. },
  1135. {
  1136. "__type__": "cc.Sprite",
  1137. "_name": "",
  1138. "_objFlags": 0,
  1139. "node": {
  1140. "__id__": 22
  1141. },
  1142. "_enabled": true,
  1143. "_materials": [
  1144. {
  1145. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1146. }
  1147. ],
  1148. "_srcBlendFactor": 770,
  1149. "_dstBlendFactor": 771,
  1150. "_spriteFrame": {
  1151. "__uuid__": "5dbfd41d-1e0c-4834-a2b4-bb81de1f6eea"
  1152. },
  1153. "_type": 0,
  1154. "_sizeMode": 0,
  1155. "_fillType": 0,
  1156. "_fillCenter": {
  1157. "__type__": "cc.Vec2",
  1158. "x": 0,
  1159. "y": 0
  1160. },
  1161. "_fillStart": 0,
  1162. "_fillRange": 0,
  1163. "_isTrimmedMode": true,
  1164. "_atlas": null,
  1165. "_id": ""
  1166. },
  1167. {
  1168. "__type__": "cc.PrefabInfo",
  1169. "root": {
  1170. "__id__": 1
  1171. },
  1172. "asset": {
  1173. "__id__": 0
  1174. },
  1175. "fileId": "08/oDYnIxCVYyPkIKiyTWd",
  1176. "sync": false
  1177. },
  1178. {
  1179. "__type__": "cc.Node",
  1180. "_name": "bottom",
  1181. "_objFlags": 0,
  1182. "_parent": {
  1183. "__id__": 18
  1184. },
  1185. "_children": [
  1186. {
  1187. "__id__": 30
  1188. },
  1189. {
  1190. "__id__": 33
  1191. }
  1192. ],
  1193. "_active": true,
  1194. "_components": [
  1195. {
  1196. "__id__": 36
  1197. }
  1198. ],
  1199. "_prefab": {
  1200. "__id__": 37
  1201. },
  1202. "_opacity": 255,
  1203. "_color": {
  1204. "__type__": "cc.Color",
  1205. "r": 255,
  1206. "g": 255,
  1207. "b": 255,
  1208. "a": 255
  1209. },
  1210. "_contentSize": {
  1211. "__type__": "cc.Size",
  1212. "width": 162,
  1213. "height": 50
  1214. },
  1215. "_anchorPoint": {
  1216. "__type__": "cc.Vec2",
  1217. "x": 0.5,
  1218. "y": 0.5
  1219. },
  1220. "_trs": {
  1221. "__type__": "TypedArray",
  1222. "ctor": "Float64Array",
  1223. "array": [
  1224. 0,
  1225. -55,
  1226. 0,
  1227. 0,
  1228. 0,
  1229. 0,
  1230. 1,
  1231. 1,
  1232. 1,
  1233. 1
  1234. ]
  1235. },
  1236. "_eulerAngles": {
  1237. "__type__": "cc.Vec3",
  1238. "x": 0,
  1239. "y": 0,
  1240. "z": 0
  1241. },
  1242. "_skewX": 0,
  1243. "_skewY": 0,
  1244. "_is3DNode": false,
  1245. "_groupIndex": 0,
  1246. "groupIndex": 0,
  1247. "_id": ""
  1248. },
  1249. {
  1250. "__type__": "cc.Node",
  1251. "_name": "label",
  1252. "_objFlags": 0,
  1253. "_parent": {
  1254. "__id__": 29
  1255. },
  1256. "_children": [],
  1257. "_active": true,
  1258. "_components": [
  1259. {
  1260. "__id__": 31
  1261. }
  1262. ],
  1263. "_prefab": {
  1264. "__id__": 32
  1265. },
  1266. "_opacity": 255,
  1267. "_color": {
  1268. "__type__": "cc.Color",
  1269. "r": 144,
  1270. "g": 85,
  1271. "b": 53,
  1272. "a": 255
  1273. },
  1274. "_contentSize": {
  1275. "__type__": "cc.Size",
  1276. "width": 84,
  1277. "height": 35.28
  1278. },
  1279. "_anchorPoint": {
  1280. "__type__": "cc.Vec2",
  1281. "x": 0.5,
  1282. "y": 0.5
  1283. },
  1284. "_trs": {
  1285. "__type__": "TypedArray",
  1286. "ctor": "Float64Array",
  1287. "array": [
  1288. 0,
  1289. 0,
  1290. 0,
  1291. 0,
  1292. 0,
  1293. 0,
  1294. 1,
  1295. 1,
  1296. 1,
  1297. 1
  1298. ]
  1299. },
  1300. "_eulerAngles": {
  1301. "__type__": "cc.Vec3",
  1302. "x": 0,
  1303. "y": 0,
  1304. "z": 0
  1305. },
  1306. "_skewX": 0,
  1307. "_skewY": 0,
  1308. "_is3DNode": false,
  1309. "_groupIndex": 0,
  1310. "groupIndex": 0,
  1311. "_id": ""
  1312. },
  1313. {
  1314. "__type__": "cc.Label",
  1315. "_name": "",
  1316. "_objFlags": 0,
  1317. "node": {
  1318. "__id__": 30
  1319. },
  1320. "_enabled": true,
  1321. "_materials": [
  1322. {
  1323. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1324. }
  1325. ],
  1326. "_srcBlendFactor": 770,
  1327. "_dstBlendFactor": 771,
  1328. "_string": "第一天",
  1329. "_N$string": "第一天",
  1330. "_fontSize": 28,
  1331. "_lineHeight": 28,
  1332. "_enableWrapText": true,
  1333. "_N$file": null,
  1334. "_isSystemFontUsed": true,
  1335. "_spacingX": 0,
  1336. "_batchAsBitmap": false,
  1337. "_styleFlags": 1,
  1338. "_underlineHeight": 0,
  1339. "_N$horizontalAlign": 1,
  1340. "_N$verticalAlign": 1,
  1341. "_N$fontFamily": "Arial",
  1342. "_N$overflow": 0,
  1343. "_N$cacheMode": 1,
  1344. "_id": ""
  1345. },
  1346. {
  1347. "__type__": "cc.PrefabInfo",
  1348. "root": {
  1349. "__id__": 1
  1350. },
  1351. "asset": {
  1352. "__id__": 0
  1353. },
  1354. "fileId": "11BFff0/1Cipxb8U0bSNhV",
  1355. "sync": false
  1356. },
  1357. {
  1358. "__type__": "cc.Node",
  1359. "_name": "videoIcon",
  1360. "_objFlags": 0,
  1361. "_parent": {
  1362. "__id__": 29
  1363. },
  1364. "_children": [],
  1365. "_active": false,
  1366. "_components": [
  1367. {
  1368. "__id__": 34
  1369. }
  1370. ],
  1371. "_prefab": {
  1372. "__id__": 35
  1373. },
  1374. "_opacity": 255,
  1375. "_color": {
  1376. "__type__": "cc.Color",
  1377. "r": 255,
  1378. "g": 255,
  1379. "b": 255,
  1380. "a": 255
  1381. },
  1382. "_contentSize": {
  1383. "__type__": "cc.Size",
  1384. "width": 56,
  1385. "height": 43
  1386. },
  1387. "_anchorPoint": {
  1388. "__type__": "cc.Vec2",
  1389. "x": 0.5,
  1390. "y": 0.5
  1391. },
  1392. "_trs": {
  1393. "__type__": "TypedArray",
  1394. "ctor": "Float64Array",
  1395. "array": [
  1396. 40,
  1397. 0,
  1398. 0,
  1399. 0,
  1400. 0,
  1401. 0,
  1402. 1,
  1403. 0.5,
  1404. 0.5,
  1405. 1
  1406. ]
  1407. },
  1408. "_eulerAngles": {
  1409. "__type__": "cc.Vec3",
  1410. "x": 0,
  1411. "y": 0,
  1412. "z": 0
  1413. },
  1414. "_skewX": 0,
  1415. "_skewY": 0,
  1416. "_is3DNode": false,
  1417. "_groupIndex": 0,
  1418. "groupIndex": 0,
  1419. "_id": ""
  1420. },
  1421. {
  1422. "__type__": "cc.Sprite",
  1423. "_name": "",
  1424. "_objFlags": 0,
  1425. "node": {
  1426. "__id__": 33
  1427. },
  1428. "_enabled": true,
  1429. "_materials": [
  1430. {
  1431. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1432. }
  1433. ],
  1434. "_srcBlendFactor": 770,
  1435. "_dstBlendFactor": 771,
  1436. "_spriteFrame": {
  1437. "__uuid__": "a15d6951-f9a3-45b7-b099-8116c6a78eea"
  1438. },
  1439. "_type": 0,
  1440. "_sizeMode": 1,
  1441. "_fillType": 0,
  1442. "_fillCenter": {
  1443. "__type__": "cc.Vec2",
  1444. "x": 0,
  1445. "y": 0
  1446. },
  1447. "_fillStart": 0,
  1448. "_fillRange": 0,
  1449. "_isTrimmedMode": true,
  1450. "_atlas": null,
  1451. "_id": ""
  1452. },
  1453. {
  1454. "__type__": "cc.PrefabInfo",
  1455. "root": {
  1456. "__id__": 1
  1457. },
  1458. "asset": {
  1459. "__id__": 0
  1460. },
  1461. "fileId": "c5sD2FOsFG+YC03Akit2bG",
  1462. "sync": false
  1463. },
  1464. {
  1465. "__type__": "cc.Sprite",
  1466. "_name": "",
  1467. "_objFlags": 0,
  1468. "node": {
  1469. "__id__": 29
  1470. },
  1471. "_enabled": true,
  1472. "_materials": [
  1473. {
  1474. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1475. }
  1476. ],
  1477. "_srcBlendFactor": 770,
  1478. "_dstBlendFactor": 771,
  1479. "_spriteFrame": {
  1480. "__uuid__": "80d1c3b0-9a53-434a-ae8e-fc3c77e6e4d0"
  1481. },
  1482. "_type": 1,
  1483. "_sizeMode": 0,
  1484. "_fillType": 0,
  1485. "_fillCenter": {
  1486. "__type__": "cc.Vec2",
  1487. "x": 0,
  1488. "y": 0
  1489. },
  1490. "_fillStart": 0,
  1491. "_fillRange": 0,
  1492. "_isTrimmedMode": true,
  1493. "_atlas": null,
  1494. "_id": ""
  1495. },
  1496. {
  1497. "__type__": "cc.PrefabInfo",
  1498. "root": {
  1499. "__id__": 1
  1500. },
  1501. "asset": {
  1502. "__id__": 0
  1503. },
  1504. "fileId": "99pjxXKwRMU5d2roXcevso",
  1505. "sync": false
  1506. },
  1507. {
  1508. "__type__": "cc.Node",
  1509. "_name": "mask",
  1510. "_objFlags": 0,
  1511. "_parent": {
  1512. "__id__": 18
  1513. },
  1514. "_children": [
  1515. {
  1516. "__id__": 39
  1517. },
  1518. {
  1519. "__id__": 42
  1520. }
  1521. ],
  1522. "_active": false,
  1523. "_components": [
  1524. {
  1525. "__id__": 45
  1526. }
  1527. ],
  1528. "_prefab": {
  1529. "__id__": 46
  1530. },
  1531. "_opacity": 255,
  1532. "_color": {
  1533. "__type__": "cc.Color",
  1534. "r": 255,
  1535. "g": 255,
  1536. "b": 255,
  1537. "a": 255
  1538. },
  1539. "_contentSize": {
  1540. "__type__": "cc.Size",
  1541. "width": 162,
  1542. "height": 160
  1543. },
  1544. "_anchorPoint": {
  1545. "__type__": "cc.Vec2",
  1546. "x": 0.5,
  1547. "y": 0.5
  1548. },
  1549. "_trs": {
  1550. "__type__": "TypedArray",
  1551. "ctor": "Float64Array",
  1552. "array": [
  1553. 0,
  1554. 0,
  1555. 0,
  1556. 0,
  1557. 0,
  1558. 0,
  1559. 1,
  1560. 1,
  1561. 1,
  1562. 1
  1563. ]
  1564. },
  1565. "_eulerAngles": {
  1566. "__type__": "cc.Vec3",
  1567. "x": 0,
  1568. "y": 0,
  1569. "z": 0
  1570. },
  1571. "_skewX": 0,
  1572. "_skewY": 0,
  1573. "_is3DNode": false,
  1574. "_groupIndex": 0,
  1575. "groupIndex": 0,
  1576. "_id": ""
  1577. },
  1578. {
  1579. "__type__": "cc.Node",
  1580. "_name": "right",
  1581. "_objFlags": 0,
  1582. "_parent": {
  1583. "__id__": 38
  1584. },
  1585. "_children": [],
  1586. "_active": true,
  1587. "_components": [
  1588. {
  1589. "__id__": 40
  1590. }
  1591. ],
  1592. "_prefab": {
  1593. "__id__": 41
  1594. },
  1595. "_opacity": 255,
  1596. "_color": {
  1597. "__type__": "cc.Color",
  1598. "r": 255,
  1599. "g": 255,
  1600. "b": 255,
  1601. "a": 255
  1602. },
  1603. "_contentSize": {
  1604. "__type__": "cc.Size",
  1605. "width": 54,
  1606. "height": 41
  1607. },
  1608. "_anchorPoint": {
  1609. "__type__": "cc.Vec2",
  1610. "x": 0.5,
  1611. "y": 0.5
  1612. },
  1613. "_trs": {
  1614. "__type__": "TypedArray",
  1615. "ctor": "Float64Array",
  1616. "array": [
  1617. 0,
  1618. 28.288,
  1619. 0,
  1620. 0,
  1621. 0,
  1622. 0,
  1623. 1,
  1624. 1,
  1625. 1,
  1626. 1
  1627. ]
  1628. },
  1629. "_eulerAngles": {
  1630. "__type__": "cc.Vec3",
  1631. "x": 0,
  1632. "y": 0,
  1633. "z": 0
  1634. },
  1635. "_skewX": 0,
  1636. "_skewY": 0,
  1637. "_is3DNode": false,
  1638. "_groupIndex": 0,
  1639. "groupIndex": 0,
  1640. "_id": ""
  1641. },
  1642. {
  1643. "__type__": "cc.Sprite",
  1644. "_name": "",
  1645. "_objFlags": 0,
  1646. "node": {
  1647. "__id__": 39
  1648. },
  1649. "_enabled": true,
  1650. "_materials": [
  1651. {
  1652. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1653. }
  1654. ],
  1655. "_srcBlendFactor": 770,
  1656. "_dstBlendFactor": 771,
  1657. "_spriteFrame": {
  1658. "__uuid__": "b499d51c-984b-4b39-a014-4b1acc984027"
  1659. },
  1660. "_type": 0,
  1661. "_sizeMode": 1,
  1662. "_fillType": 0,
  1663. "_fillCenter": {
  1664. "__type__": "cc.Vec2",
  1665. "x": 0,
  1666. "y": 0
  1667. },
  1668. "_fillStart": 0,
  1669. "_fillRange": 0,
  1670. "_isTrimmedMode": true,
  1671. "_atlas": null,
  1672. "_id": ""
  1673. },
  1674. {
  1675. "__type__": "cc.PrefabInfo",
  1676. "root": {
  1677. "__id__": 1
  1678. },
  1679. "asset": {
  1680. "__id__": 0
  1681. },
  1682. "fileId": "598xuRn0FO86dCwSq+aZ7H",
  1683. "sync": false
  1684. },
  1685. {
  1686. "__type__": "cc.Node",
  1687. "_name": "label",
  1688. "_objFlags": 0,
  1689. "_parent": {
  1690. "__id__": 38
  1691. },
  1692. "_children": [],
  1693. "_active": true,
  1694. "_components": [
  1695. {
  1696. "__id__": 43
  1697. }
  1698. ],
  1699. "_prefab": {
  1700. "__id__": 44
  1701. },
  1702. "_opacity": 255,
  1703. "_color": {
  1704. "__type__": "cc.Color",
  1705. "r": 255,
  1706. "g": 255,
  1707. "b": 255,
  1708. "a": 255
  1709. },
  1710. "_contentSize": {
  1711. "__type__": "cc.Size",
  1712. "width": 84,
  1713. "height": 35.28
  1714. },
  1715. "_anchorPoint": {
  1716. "__type__": "cc.Vec2",
  1717. "x": 0.5,
  1718. "y": 0.5
  1719. },
  1720. "_trs": {
  1721. "__type__": "TypedArray",
  1722. "ctor": "Float64Array",
  1723. "array": [
  1724. 0,
  1725. -30.646,
  1726. 0,
  1727. 0,
  1728. 0,
  1729. 0,
  1730. 1,
  1731. 1,
  1732. 1,
  1733. 1
  1734. ]
  1735. },
  1736. "_eulerAngles": {
  1737. "__type__": "cc.Vec3",
  1738. "x": 0,
  1739. "y": 0,
  1740. "z": 0
  1741. },
  1742. "_skewX": 0,
  1743. "_skewY": 0,
  1744. "_is3DNode": false,
  1745. "_groupIndex": 0,
  1746. "groupIndex": 0,
  1747. "_id": ""
  1748. },
  1749. {
  1750. "__type__": "cc.Label",
  1751. "_name": "",
  1752. "_objFlags": 0,
  1753. "node": {
  1754. "__id__": 42
  1755. },
  1756. "_enabled": true,
  1757. "_materials": [
  1758. {
  1759. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1760. }
  1761. ],
  1762. "_srcBlendFactor": 770,
  1763. "_dstBlendFactor": 771,
  1764. "_string": "已领取",
  1765. "_N$string": "已领取",
  1766. "_fontSize": 28,
  1767. "_lineHeight": 28,
  1768. "_enableWrapText": true,
  1769. "_N$file": null,
  1770. "_isSystemFontUsed": true,
  1771. "_spacingX": 0,
  1772. "_batchAsBitmap": false,
  1773. "_styleFlags": 1,
  1774. "_underlineHeight": 0,
  1775. "_N$horizontalAlign": 1,
  1776. "_N$verticalAlign": 1,
  1777. "_N$fontFamily": "Arial",
  1778. "_N$overflow": 0,
  1779. "_N$cacheMode": 1,
  1780. "_id": ""
  1781. },
  1782. {
  1783. "__type__": "cc.PrefabInfo",
  1784. "root": {
  1785. "__id__": 1
  1786. },
  1787. "asset": {
  1788. "__id__": 0
  1789. },
  1790. "fileId": "7fWtozvMtEnJu2lQ5PriIz",
  1791. "sync": false
  1792. },
  1793. {
  1794. "__type__": "cc.Sprite",
  1795. "_name": "",
  1796. "_objFlags": 0,
  1797. "node": {
  1798. "__id__": 38
  1799. },
  1800. "_enabled": true,
  1801. "_materials": [
  1802. {
  1803. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1804. }
  1805. ],
  1806. "_srcBlendFactor": 770,
  1807. "_dstBlendFactor": 771,
  1808. "_spriteFrame": {
  1809. "__uuid__": "6c65fd34-97dc-4451-960d-cf4a253fa4b7"
  1810. },
  1811. "_type": 1,
  1812. "_sizeMode": 0,
  1813. "_fillType": 0,
  1814. "_fillCenter": {
  1815. "__type__": "cc.Vec2",
  1816. "x": 0,
  1817. "y": 0
  1818. },
  1819. "_fillStart": 0,
  1820. "_fillRange": 0,
  1821. "_isTrimmedMode": true,
  1822. "_atlas": null,
  1823. "_id": ""
  1824. },
  1825. {
  1826. "__type__": "cc.PrefabInfo",
  1827. "root": {
  1828. "__id__": 1
  1829. },
  1830. "asset": {
  1831. "__id__": 0
  1832. },
  1833. "fileId": "e6h7njgnJAroOPipmGhV6D",
  1834. "sync": false
  1835. },
  1836. {
  1837. "__type__": "cc.Sprite",
  1838. "_name": "",
  1839. "_objFlags": 0,
  1840. "node": {
  1841. "__id__": 18
  1842. },
  1843. "_enabled": true,
  1844. "_materials": [
  1845. {
  1846. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1847. }
  1848. ],
  1849. "_srcBlendFactor": 770,
  1850. "_dstBlendFactor": 771,
  1851. "_spriteFrame": {
  1852. "__uuid__": "66d456b9-18f2-4209-b61d-67b9997479d9"
  1853. },
  1854. "_type": 1,
  1855. "_sizeMode": 0,
  1856. "_fillType": 0,
  1857. "_fillCenter": {
  1858. "__type__": "cc.Vec2",
  1859. "x": 0,
  1860. "y": 0
  1861. },
  1862. "_fillStart": 0,
  1863. "_fillRange": 0,
  1864. "_isTrimmedMode": true,
  1865. "_atlas": null,
  1866. "_id": ""
  1867. },
  1868. {
  1869. "__type__": "cc.Button",
  1870. "_name": "",
  1871. "_objFlags": 0,
  1872. "node": {
  1873. "__id__": 18
  1874. },
  1875. "_enabled": true,
  1876. "_normalMaterial": null,
  1877. "_grayMaterial": null,
  1878. "duration": 0.1,
  1879. "zoomScale": 1.2,
  1880. "clickEvents": [],
  1881. "_N$interactable": true,
  1882. "_N$enableAutoGrayEffect": false,
  1883. "_N$transition": 0,
  1884. "transition": 0,
  1885. "_N$normalColor": {
  1886. "__type__": "cc.Color",
  1887. "r": 255,
  1888. "g": 255,
  1889. "b": 255,
  1890. "a": 255
  1891. },
  1892. "_N$pressedColor": {
  1893. "__type__": "cc.Color",
  1894. "r": 211,
  1895. "g": 211,
  1896. "b": 211,
  1897. "a": 255
  1898. },
  1899. "pressedColor": {
  1900. "__type__": "cc.Color",
  1901. "r": 211,
  1902. "g": 211,
  1903. "b": 211,
  1904. "a": 255
  1905. },
  1906. "_N$hoverColor": {
  1907. "__type__": "cc.Color",
  1908. "r": 255,
  1909. "g": 255,
  1910. "b": 255,
  1911. "a": 255
  1912. },
  1913. "hoverColor": {
  1914. "__type__": "cc.Color",
  1915. "r": 255,
  1916. "g": 255,
  1917. "b": 255,
  1918. "a": 255
  1919. },
  1920. "_N$disabledColor": {
  1921. "__type__": "cc.Color",
  1922. "r": 124,
  1923. "g": 124,
  1924. "b": 124,
  1925. "a": 255
  1926. },
  1927. "_N$normalSprite": null,
  1928. "_N$pressedSprite": null,
  1929. "pressedSprite": null,
  1930. "_N$hoverSprite": null,
  1931. "hoverSprite": null,
  1932. "_N$disabledSprite": null,
  1933. "_N$target": null,
  1934. "_id": ""
  1935. },
  1936. {
  1937. "__type__": "cc.PrefabInfo",
  1938. "root": {
  1939. "__id__": 1
  1940. },
  1941. "asset": {
  1942. "__id__": 0
  1943. },
  1944. "fileId": "18dkt+Gx1NJo06JIl+i+L3",
  1945. "sync": false
  1946. },
  1947. {
  1948. "__type__": "cc.Node",
  1949. "_name": "two",
  1950. "_objFlags": 0,
  1951. "_parent": {
  1952. "__id__": 17
  1953. },
  1954. "_children": [
  1955. {
  1956. "__id__": 51
  1957. },
  1958. {
  1959. "__id__": 54
  1960. },
  1961. {
  1962. "__id__": 61
  1963. },
  1964. {
  1965. "__id__": 70
  1966. }
  1967. ],
  1968. "_active": true,
  1969. "_components": [
  1970. {
  1971. "__id__": 79
  1972. },
  1973. {
  1974. "__id__": 80
  1975. }
  1976. ],
  1977. "_prefab": {
  1978. "__id__": 81
  1979. },
  1980. "_opacity": 255,
  1981. "_color": {
  1982. "__type__": "cc.Color",
  1983. "r": 255,
  1984. "g": 255,
  1985. "b": 255,
  1986. "a": 255
  1987. },
  1988. "_contentSize": {
  1989. "__type__": "cc.Size",
  1990. "width": 162,
  1991. "height": 160
  1992. },
  1993. "_anchorPoint": {
  1994. "__type__": "cc.Vec2",
  1995. "x": 0.5,
  1996. "y": 0.5
  1997. },
  1998. "_trs": {
  1999. "__type__": "TypedArray",
  2000. "ctor": "Float64Array",
  2001. "array": [
  2002. 0,
  2003. 190,
  2004. 0,
  2005. 0,
  2006. 0,
  2007. 0,
  2008. 1,
  2009. 1,
  2010. 1,
  2011. 1
  2012. ]
  2013. },
  2014. "_eulerAngles": {
  2015. "__type__": "cc.Vec3",
  2016. "x": 0,
  2017. "y": 0,
  2018. "z": 0
  2019. },
  2020. "_skewX": 0,
  2021. "_skewY": 0,
  2022. "_is3DNode": false,
  2023. "_groupIndex": 0,
  2024. "groupIndex": 0,
  2025. "_id": ""
  2026. },
  2027. {
  2028. "__type__": "cc.Node",
  2029. "_name": "di",
  2030. "_objFlags": 0,
  2031. "_parent": {
  2032. "__id__": 50
  2033. },
  2034. "_children": [],
  2035. "_active": false,
  2036. "_components": [
  2037. {
  2038. "__id__": 52
  2039. }
  2040. ],
  2041. "_prefab": {
  2042. "__id__": 53
  2043. },
  2044. "_opacity": 255,
  2045. "_color": {
  2046. "__type__": "cc.Color",
  2047. "r": 255,
  2048. "g": 255,
  2049. "b": 255,
  2050. "a": 255
  2051. },
  2052. "_contentSize": {
  2053. "__type__": "cc.Size",
  2054. "width": 162,
  2055. "height": 160
  2056. },
  2057. "_anchorPoint": {
  2058. "__type__": "cc.Vec2",
  2059. "x": 0.5,
  2060. "y": 0.5
  2061. },
  2062. "_trs": {
  2063. "__type__": "TypedArray",
  2064. "ctor": "Float64Array",
  2065. "array": [
  2066. 0,
  2067. 0,
  2068. 0,
  2069. 0,
  2070. 0,
  2071. 0,
  2072. 1,
  2073. 1,
  2074. 1,
  2075. 1
  2076. ]
  2077. },
  2078. "_eulerAngles": {
  2079. "__type__": "cc.Vec3",
  2080. "x": 0,
  2081. "y": 0,
  2082. "z": 0
  2083. },
  2084. "_skewX": 0,
  2085. "_skewY": 0,
  2086. "_is3DNode": false,
  2087. "_groupIndex": 0,
  2088. "groupIndex": 0,
  2089. "_id": ""
  2090. },
  2091. {
  2092. "__type__": "cc.Sprite",
  2093. "_name": "",
  2094. "_objFlags": 0,
  2095. "node": {
  2096. "__id__": 51
  2097. },
  2098. "_enabled": true,
  2099. "_materials": [
  2100. {
  2101. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2102. }
  2103. ],
  2104. "_srcBlendFactor": 770,
  2105. "_dstBlendFactor": 771,
  2106. "_spriteFrame": {
  2107. "__uuid__": "6d9d4bf6-e66b-40aa-8e1b-609c88010983"
  2108. },
  2109. "_type": 1,
  2110. "_sizeMode": 0,
  2111. "_fillType": 0,
  2112. "_fillCenter": {
  2113. "__type__": "cc.Vec2",
  2114. "x": 0,
  2115. "y": 0
  2116. },
  2117. "_fillStart": 0,
  2118. "_fillRange": 0,
  2119. "_isTrimmedMode": true,
  2120. "_atlas": null,
  2121. "_id": ""
  2122. },
  2123. {
  2124. "__type__": "cc.PrefabInfo",
  2125. "root": {
  2126. "__id__": 1
  2127. },
  2128. "asset": {
  2129. "__id__": 0
  2130. },
  2131. "fileId": "cfY7h+NChLiZCIPaFnTnzh",
  2132. "sync": false
  2133. },
  2134. {
  2135. "__type__": "cc.Node",
  2136. "_name": "item",
  2137. "_objFlags": 0,
  2138. "_parent": {
  2139. "__id__": 50
  2140. },
  2141. "_children": [
  2142. {
  2143. "__id__": 55
  2144. }
  2145. ],
  2146. "_active": true,
  2147. "_components": [
  2148. {
  2149. "__id__": 59
  2150. }
  2151. ],
  2152. "_prefab": {
  2153. "__id__": 60
  2154. },
  2155. "_opacity": 255,
  2156. "_color": {
  2157. "__type__": "cc.Color",
  2158. "r": 255,
  2159. "g": 255,
  2160. "b": 255,
  2161. "a": 255
  2162. },
  2163. "_contentSize": {
  2164. "__type__": "cc.Size",
  2165. "width": 74,
  2166. "height": 74
  2167. },
  2168. "_anchorPoint": {
  2169. "__type__": "cc.Vec2",
  2170. "x": 0.5,
  2171. "y": 0.5
  2172. },
  2173. "_trs": {
  2174. "__type__": "TypedArray",
  2175. "ctor": "Float64Array",
  2176. "array": [
  2177. 0,
  2178. 22.421,
  2179. 0,
  2180. 0,
  2181. 0,
  2182. 0,
  2183. 1,
  2184. 1,
  2185. 1,
  2186. 1
  2187. ]
  2188. },
  2189. "_eulerAngles": {
  2190. "__type__": "cc.Vec3",
  2191. "x": 0,
  2192. "y": 0,
  2193. "z": 0
  2194. },
  2195. "_skewX": 0,
  2196. "_skewY": 0,
  2197. "_is3DNode": false,
  2198. "_groupIndex": 0,
  2199. "groupIndex": 0,
  2200. "_id": ""
  2201. },
  2202. {
  2203. "__type__": "cc.Node",
  2204. "_name": "num",
  2205. "_objFlags": 0,
  2206. "_parent": {
  2207. "__id__": 54
  2208. },
  2209. "_children": [],
  2210. "_active": true,
  2211. "_components": [
  2212. {
  2213. "__id__": 56
  2214. },
  2215. {
  2216. "__id__": 57
  2217. }
  2218. ],
  2219. "_prefab": {
  2220. "__id__": 58
  2221. },
  2222. "_opacity": 255,
  2223. "_color": {
  2224. "__type__": "cc.Color",
  2225. "r": 255,
  2226. "g": 255,
  2227. "b": 255,
  2228. "a": 255
  2229. },
  2230. "_contentSize": {
  2231. "__type__": "cc.Size",
  2232. "width": 57.39,
  2233. "height": 34.239999999999995
  2234. },
  2235. "_anchorPoint": {
  2236. "__type__": "cc.Vec2",
  2237. "x": 0.5,
  2238. "y": 0.5
  2239. },
  2240. "_trs": {
  2241. "__type__": "TypedArray",
  2242. "ctor": "Float64Array",
  2243. "array": [
  2244. 31.485,
  2245. -20.513,
  2246. 0,
  2247. 0,
  2248. 0,
  2249. 0,
  2250. 1,
  2251. 1,
  2252. 1,
  2253. 1
  2254. ]
  2255. },
  2256. "_eulerAngles": {
  2257. "__type__": "cc.Vec3",
  2258. "x": 0,
  2259. "y": 0,
  2260. "z": 0
  2261. },
  2262. "_skewX": 0,
  2263. "_skewY": 0,
  2264. "_is3DNode": false,
  2265. "_groupIndex": 0,
  2266. "groupIndex": 0,
  2267. "_id": ""
  2268. },
  2269. {
  2270. "__type__": "cc.Label",
  2271. "_name": "",
  2272. "_objFlags": 0,
  2273. "node": {
  2274. "__id__": 55
  2275. },
  2276. "_enabled": true,
  2277. "_materials": [
  2278. {
  2279. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2280. }
  2281. ],
  2282. "_srcBlendFactor": 770,
  2283. "_dstBlendFactor": 771,
  2284. "_string": "x100",
  2285. "_N$string": "x100",
  2286. "_fontSize": 24,
  2287. "_lineHeight": 24,
  2288. "_enableWrapText": true,
  2289. "_N$file": null,
  2290. "_isSystemFontUsed": true,
  2291. "_spacingX": 0,
  2292. "_batchAsBitmap": false,
  2293. "_styleFlags": 1,
  2294. "_underlineHeight": 0,
  2295. "_N$horizontalAlign": 1,
  2296. "_N$verticalAlign": 1,
  2297. "_N$fontFamily": "Arial",
  2298. "_N$overflow": 0,
  2299. "_N$cacheMode": 1,
  2300. "_id": ""
  2301. },
  2302. {
  2303. "__type__": "cc.LabelOutline",
  2304. "_name": "",
  2305. "_objFlags": 0,
  2306. "node": {
  2307. "__id__": 55
  2308. },
  2309. "_enabled": true,
  2310. "_color": {
  2311. "__type__": "cc.Color",
  2312. "r": 113,
  2313. "g": 15,
  2314. "b": 0,
  2315. "a": 255
  2316. },
  2317. "_width": 2,
  2318. "_id": ""
  2319. },
  2320. {
  2321. "__type__": "cc.PrefabInfo",
  2322. "root": {
  2323. "__id__": 1
  2324. },
  2325. "asset": {
  2326. "__id__": 0
  2327. },
  2328. "fileId": "76b6fssvlH+rS7iMgTCg0z",
  2329. "sync": false
  2330. },
  2331. {
  2332. "__type__": "cc.Sprite",
  2333. "_name": "",
  2334. "_objFlags": 0,
  2335. "node": {
  2336. "__id__": 54
  2337. },
  2338. "_enabled": true,
  2339. "_materials": [
  2340. {
  2341. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2342. }
  2343. ],
  2344. "_srcBlendFactor": 770,
  2345. "_dstBlendFactor": 771,
  2346. "_spriteFrame": {
  2347. "__uuid__": "f5432709-f14e-4906-b478-344bd9139137"
  2348. },
  2349. "_type": 0,
  2350. "_sizeMode": 1,
  2351. "_fillType": 0,
  2352. "_fillCenter": {
  2353. "__type__": "cc.Vec2",
  2354. "x": 0,
  2355. "y": 0
  2356. },
  2357. "_fillStart": 0,
  2358. "_fillRange": 0,
  2359. "_isTrimmedMode": true,
  2360. "_atlas": null,
  2361. "_id": ""
  2362. },
  2363. {
  2364. "__type__": "cc.PrefabInfo",
  2365. "root": {
  2366. "__id__": 1
  2367. },
  2368. "asset": {
  2369. "__id__": 0
  2370. },
  2371. "fileId": "2fhsycZ/tMP6r/JjGk43de",
  2372. "sync": false
  2373. },
  2374. {
  2375. "__type__": "cc.Node",
  2376. "_name": "bottom",
  2377. "_objFlags": 0,
  2378. "_parent": {
  2379. "__id__": 50
  2380. },
  2381. "_children": [
  2382. {
  2383. "__id__": 62
  2384. },
  2385. {
  2386. "__id__": 65
  2387. }
  2388. ],
  2389. "_active": true,
  2390. "_components": [
  2391. {
  2392. "__id__": 68
  2393. }
  2394. ],
  2395. "_prefab": {
  2396. "__id__": 69
  2397. },
  2398. "_opacity": 255,
  2399. "_color": {
  2400. "__type__": "cc.Color",
  2401. "r": 255,
  2402. "g": 255,
  2403. "b": 255,
  2404. "a": 255
  2405. },
  2406. "_contentSize": {
  2407. "__type__": "cc.Size",
  2408. "width": 162,
  2409. "height": 50
  2410. },
  2411. "_anchorPoint": {
  2412. "__type__": "cc.Vec2",
  2413. "x": 0.5,
  2414. "y": 0.5
  2415. },
  2416. "_trs": {
  2417. "__type__": "TypedArray",
  2418. "ctor": "Float64Array",
  2419. "array": [
  2420. 0,
  2421. -55,
  2422. 0,
  2423. 0,
  2424. 0,
  2425. 0,
  2426. 1,
  2427. 1,
  2428. 1,
  2429. 1
  2430. ]
  2431. },
  2432. "_eulerAngles": {
  2433. "__type__": "cc.Vec3",
  2434. "x": 0,
  2435. "y": 0,
  2436. "z": 0
  2437. },
  2438. "_skewX": 0,
  2439. "_skewY": 0,
  2440. "_is3DNode": false,
  2441. "_groupIndex": 0,
  2442. "groupIndex": 0,
  2443. "_id": ""
  2444. },
  2445. {
  2446. "__type__": "cc.Node",
  2447. "_name": "label",
  2448. "_objFlags": 0,
  2449. "_parent": {
  2450. "__id__": 61
  2451. },
  2452. "_children": [],
  2453. "_active": true,
  2454. "_components": [
  2455. {
  2456. "__id__": 63
  2457. }
  2458. ],
  2459. "_prefab": {
  2460. "__id__": 64
  2461. },
  2462. "_opacity": 255,
  2463. "_color": {
  2464. "__type__": "cc.Color",
  2465. "r": 144,
  2466. "g": 85,
  2467. "b": 53,
  2468. "a": 255
  2469. },
  2470. "_contentSize": {
  2471. "__type__": "cc.Size",
  2472. "width": 84,
  2473. "height": 35.28
  2474. },
  2475. "_anchorPoint": {
  2476. "__type__": "cc.Vec2",
  2477. "x": 0.5,
  2478. "y": 0.5
  2479. },
  2480. "_trs": {
  2481. "__type__": "TypedArray",
  2482. "ctor": "Float64Array",
  2483. "array": [
  2484. 0,
  2485. 0,
  2486. 0,
  2487. 0,
  2488. 0,
  2489. 0,
  2490. 1,
  2491. 1,
  2492. 1,
  2493. 1
  2494. ]
  2495. },
  2496. "_eulerAngles": {
  2497. "__type__": "cc.Vec3",
  2498. "x": 0,
  2499. "y": 0,
  2500. "z": 0
  2501. },
  2502. "_skewX": 0,
  2503. "_skewY": 0,
  2504. "_is3DNode": false,
  2505. "_groupIndex": 0,
  2506. "groupIndex": 0,
  2507. "_id": ""
  2508. },
  2509. {
  2510. "__type__": "cc.Label",
  2511. "_name": "",
  2512. "_objFlags": 0,
  2513. "node": {
  2514. "__id__": 62
  2515. },
  2516. "_enabled": true,
  2517. "_materials": [
  2518. {
  2519. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2520. }
  2521. ],
  2522. "_srcBlendFactor": 770,
  2523. "_dstBlendFactor": 771,
  2524. "_string": "第二天",
  2525. "_N$string": "第二天",
  2526. "_fontSize": 28,
  2527. "_lineHeight": 28,
  2528. "_enableWrapText": true,
  2529. "_N$file": null,
  2530. "_isSystemFontUsed": true,
  2531. "_spacingX": 0,
  2532. "_batchAsBitmap": false,
  2533. "_styleFlags": 1,
  2534. "_underlineHeight": 0,
  2535. "_N$horizontalAlign": 1,
  2536. "_N$verticalAlign": 1,
  2537. "_N$fontFamily": "Arial",
  2538. "_N$overflow": 0,
  2539. "_N$cacheMode": 1,
  2540. "_id": ""
  2541. },
  2542. {
  2543. "__type__": "cc.PrefabInfo",
  2544. "root": {
  2545. "__id__": 1
  2546. },
  2547. "asset": {
  2548. "__id__": 0
  2549. },
  2550. "fileId": "4eAES+8alOX4geXHzX2Ue8",
  2551. "sync": false
  2552. },
  2553. {
  2554. "__type__": "cc.Node",
  2555. "_name": "videoIcon",
  2556. "_objFlags": 0,
  2557. "_parent": {
  2558. "__id__": 61
  2559. },
  2560. "_children": [],
  2561. "_active": false,
  2562. "_components": [
  2563. {
  2564. "__id__": 66
  2565. }
  2566. ],
  2567. "_prefab": {
  2568. "__id__": 67
  2569. },
  2570. "_opacity": 255,
  2571. "_color": {
  2572. "__type__": "cc.Color",
  2573. "r": 255,
  2574. "g": 255,
  2575. "b": 255,
  2576. "a": 255
  2577. },
  2578. "_contentSize": {
  2579. "__type__": "cc.Size",
  2580. "width": 56,
  2581. "height": 43
  2582. },
  2583. "_anchorPoint": {
  2584. "__type__": "cc.Vec2",
  2585. "x": 0.5,
  2586. "y": 0.5
  2587. },
  2588. "_trs": {
  2589. "__type__": "TypedArray",
  2590. "ctor": "Float64Array",
  2591. "array": [
  2592. 40,
  2593. 0,
  2594. 0,
  2595. 0,
  2596. 0,
  2597. 0,
  2598. 1,
  2599. 0.5,
  2600. 0.5,
  2601. 1
  2602. ]
  2603. },
  2604. "_eulerAngles": {
  2605. "__type__": "cc.Vec3",
  2606. "x": 0,
  2607. "y": 0,
  2608. "z": 0
  2609. },
  2610. "_skewX": 0,
  2611. "_skewY": 0,
  2612. "_is3DNode": false,
  2613. "_groupIndex": 0,
  2614. "groupIndex": 0,
  2615. "_id": ""
  2616. },
  2617. {
  2618. "__type__": "cc.Sprite",
  2619. "_name": "",
  2620. "_objFlags": 0,
  2621. "node": {
  2622. "__id__": 65
  2623. },
  2624. "_enabled": true,
  2625. "_materials": [
  2626. {
  2627. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2628. }
  2629. ],
  2630. "_srcBlendFactor": 770,
  2631. "_dstBlendFactor": 771,
  2632. "_spriteFrame": {
  2633. "__uuid__": "a15d6951-f9a3-45b7-b099-8116c6a78eea"
  2634. },
  2635. "_type": 0,
  2636. "_sizeMode": 1,
  2637. "_fillType": 0,
  2638. "_fillCenter": {
  2639. "__type__": "cc.Vec2",
  2640. "x": 0,
  2641. "y": 0
  2642. },
  2643. "_fillStart": 0,
  2644. "_fillRange": 0,
  2645. "_isTrimmedMode": true,
  2646. "_atlas": null,
  2647. "_id": ""
  2648. },
  2649. {
  2650. "__type__": "cc.PrefabInfo",
  2651. "root": {
  2652. "__id__": 1
  2653. },
  2654. "asset": {
  2655. "__id__": 0
  2656. },
  2657. "fileId": "03YK1YCJxBy5j8pcwzVchU",
  2658. "sync": false
  2659. },
  2660. {
  2661. "__type__": "cc.Sprite",
  2662. "_name": "",
  2663. "_objFlags": 0,
  2664. "node": {
  2665. "__id__": 61
  2666. },
  2667. "_enabled": true,
  2668. "_materials": [
  2669. {
  2670. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2671. }
  2672. ],
  2673. "_srcBlendFactor": 770,
  2674. "_dstBlendFactor": 771,
  2675. "_spriteFrame": {
  2676. "__uuid__": "80d1c3b0-9a53-434a-ae8e-fc3c77e6e4d0"
  2677. },
  2678. "_type": 1,
  2679. "_sizeMode": 0,
  2680. "_fillType": 0,
  2681. "_fillCenter": {
  2682. "__type__": "cc.Vec2",
  2683. "x": 0,
  2684. "y": 0
  2685. },
  2686. "_fillStart": 0,
  2687. "_fillRange": 0,
  2688. "_isTrimmedMode": true,
  2689. "_atlas": null,
  2690. "_id": ""
  2691. },
  2692. {
  2693. "__type__": "cc.PrefabInfo",
  2694. "root": {
  2695. "__id__": 1
  2696. },
  2697. "asset": {
  2698. "__id__": 0
  2699. },
  2700. "fileId": "95hyXbhr5HS66OMgBZRNPR",
  2701. "sync": false
  2702. },
  2703. {
  2704. "__type__": "cc.Node",
  2705. "_name": "mask",
  2706. "_objFlags": 0,
  2707. "_parent": {
  2708. "__id__": 50
  2709. },
  2710. "_children": [
  2711. {
  2712. "__id__": 71
  2713. },
  2714. {
  2715. "__id__": 74
  2716. }
  2717. ],
  2718. "_active": false,
  2719. "_components": [
  2720. {
  2721. "__id__": 77
  2722. }
  2723. ],
  2724. "_prefab": {
  2725. "__id__": 78
  2726. },
  2727. "_opacity": 255,
  2728. "_color": {
  2729. "__type__": "cc.Color",
  2730. "r": 255,
  2731. "g": 255,
  2732. "b": 255,
  2733. "a": 255
  2734. },
  2735. "_contentSize": {
  2736. "__type__": "cc.Size",
  2737. "width": 162,
  2738. "height": 160
  2739. },
  2740. "_anchorPoint": {
  2741. "__type__": "cc.Vec2",
  2742. "x": 0.5,
  2743. "y": 0.5
  2744. },
  2745. "_trs": {
  2746. "__type__": "TypedArray",
  2747. "ctor": "Float64Array",
  2748. "array": [
  2749. 0,
  2750. 0,
  2751. 0,
  2752. 0,
  2753. 0,
  2754. 0,
  2755. 1,
  2756. 1,
  2757. 1,
  2758. 1
  2759. ]
  2760. },
  2761. "_eulerAngles": {
  2762. "__type__": "cc.Vec3",
  2763. "x": 0,
  2764. "y": 0,
  2765. "z": 0
  2766. },
  2767. "_skewX": 0,
  2768. "_skewY": 0,
  2769. "_is3DNode": false,
  2770. "_groupIndex": 0,
  2771. "groupIndex": 0,
  2772. "_id": ""
  2773. },
  2774. {
  2775. "__type__": "cc.Node",
  2776. "_name": "right",
  2777. "_objFlags": 0,
  2778. "_parent": {
  2779. "__id__": 70
  2780. },
  2781. "_children": [],
  2782. "_active": true,
  2783. "_components": [
  2784. {
  2785. "__id__": 72
  2786. }
  2787. ],
  2788. "_prefab": {
  2789. "__id__": 73
  2790. },
  2791. "_opacity": 255,
  2792. "_color": {
  2793. "__type__": "cc.Color",
  2794. "r": 255,
  2795. "g": 255,
  2796. "b": 255,
  2797. "a": 255
  2798. },
  2799. "_contentSize": {
  2800. "__type__": "cc.Size",
  2801. "width": 54,
  2802. "height": 41
  2803. },
  2804. "_anchorPoint": {
  2805. "__type__": "cc.Vec2",
  2806. "x": 0.5,
  2807. "y": 0.5
  2808. },
  2809. "_trs": {
  2810. "__type__": "TypedArray",
  2811. "ctor": "Float64Array",
  2812. "array": [
  2813. 0,
  2814. 28.288,
  2815. 0,
  2816. 0,
  2817. 0,
  2818. 0,
  2819. 1,
  2820. 1,
  2821. 1,
  2822. 1
  2823. ]
  2824. },
  2825. "_eulerAngles": {
  2826. "__type__": "cc.Vec3",
  2827. "x": 0,
  2828. "y": 0,
  2829. "z": 0
  2830. },
  2831. "_skewX": 0,
  2832. "_skewY": 0,
  2833. "_is3DNode": false,
  2834. "_groupIndex": 0,
  2835. "groupIndex": 0,
  2836. "_id": ""
  2837. },
  2838. {
  2839. "__type__": "cc.Sprite",
  2840. "_name": "",
  2841. "_objFlags": 0,
  2842. "node": {
  2843. "__id__": 71
  2844. },
  2845. "_enabled": true,
  2846. "_materials": [
  2847. {
  2848. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2849. }
  2850. ],
  2851. "_srcBlendFactor": 770,
  2852. "_dstBlendFactor": 771,
  2853. "_spriteFrame": {
  2854. "__uuid__": "b499d51c-984b-4b39-a014-4b1acc984027"
  2855. },
  2856. "_type": 0,
  2857. "_sizeMode": 1,
  2858. "_fillType": 0,
  2859. "_fillCenter": {
  2860. "__type__": "cc.Vec2",
  2861. "x": 0,
  2862. "y": 0
  2863. },
  2864. "_fillStart": 0,
  2865. "_fillRange": 0,
  2866. "_isTrimmedMode": true,
  2867. "_atlas": null,
  2868. "_id": ""
  2869. },
  2870. {
  2871. "__type__": "cc.PrefabInfo",
  2872. "root": {
  2873. "__id__": 1
  2874. },
  2875. "asset": {
  2876. "__id__": 0
  2877. },
  2878. "fileId": "4fnqv8pvJJ8ZXdq3t3OGQI",
  2879. "sync": false
  2880. },
  2881. {
  2882. "__type__": "cc.Node",
  2883. "_name": "label",
  2884. "_objFlags": 0,
  2885. "_parent": {
  2886. "__id__": 70
  2887. },
  2888. "_children": [],
  2889. "_active": true,
  2890. "_components": [
  2891. {
  2892. "__id__": 75
  2893. }
  2894. ],
  2895. "_prefab": {
  2896. "__id__": 76
  2897. },
  2898. "_opacity": 255,
  2899. "_color": {
  2900. "__type__": "cc.Color",
  2901. "r": 255,
  2902. "g": 255,
  2903. "b": 255,
  2904. "a": 255
  2905. },
  2906. "_contentSize": {
  2907. "__type__": "cc.Size",
  2908. "width": 84,
  2909. "height": 35.28
  2910. },
  2911. "_anchorPoint": {
  2912. "__type__": "cc.Vec2",
  2913. "x": 0.5,
  2914. "y": 0.5
  2915. },
  2916. "_trs": {
  2917. "__type__": "TypedArray",
  2918. "ctor": "Float64Array",
  2919. "array": [
  2920. 0,
  2921. -30.646,
  2922. 0,
  2923. 0,
  2924. 0,
  2925. 0,
  2926. 1,
  2927. 1,
  2928. 1,
  2929. 1
  2930. ]
  2931. },
  2932. "_eulerAngles": {
  2933. "__type__": "cc.Vec3",
  2934. "x": 0,
  2935. "y": 0,
  2936. "z": 0
  2937. },
  2938. "_skewX": 0,
  2939. "_skewY": 0,
  2940. "_is3DNode": false,
  2941. "_groupIndex": 0,
  2942. "groupIndex": 0,
  2943. "_id": ""
  2944. },
  2945. {
  2946. "__type__": "cc.Label",
  2947. "_name": "",
  2948. "_objFlags": 0,
  2949. "node": {
  2950. "__id__": 74
  2951. },
  2952. "_enabled": true,
  2953. "_materials": [
  2954. {
  2955. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2956. }
  2957. ],
  2958. "_srcBlendFactor": 770,
  2959. "_dstBlendFactor": 771,
  2960. "_string": "已领取",
  2961. "_N$string": "已领取",
  2962. "_fontSize": 28,
  2963. "_lineHeight": 28,
  2964. "_enableWrapText": true,
  2965. "_N$file": null,
  2966. "_isSystemFontUsed": true,
  2967. "_spacingX": 0,
  2968. "_batchAsBitmap": false,
  2969. "_styleFlags": 1,
  2970. "_underlineHeight": 0,
  2971. "_N$horizontalAlign": 1,
  2972. "_N$verticalAlign": 1,
  2973. "_N$fontFamily": "Arial",
  2974. "_N$overflow": 0,
  2975. "_N$cacheMode": 1,
  2976. "_id": ""
  2977. },
  2978. {
  2979. "__type__": "cc.PrefabInfo",
  2980. "root": {
  2981. "__id__": 1
  2982. },
  2983. "asset": {
  2984. "__id__": 0
  2985. },
  2986. "fileId": "7aWQbfTYlKQqYrVRvKfD7O",
  2987. "sync": false
  2988. },
  2989. {
  2990. "__type__": "cc.Sprite",
  2991. "_name": "",
  2992. "_objFlags": 0,
  2993. "node": {
  2994. "__id__": 70
  2995. },
  2996. "_enabled": true,
  2997. "_materials": [
  2998. {
  2999. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3000. }
  3001. ],
  3002. "_srcBlendFactor": 770,
  3003. "_dstBlendFactor": 771,
  3004. "_spriteFrame": {
  3005. "__uuid__": "6c65fd34-97dc-4451-960d-cf4a253fa4b7"
  3006. },
  3007. "_type": 1,
  3008. "_sizeMode": 0,
  3009. "_fillType": 0,
  3010. "_fillCenter": {
  3011. "__type__": "cc.Vec2",
  3012. "x": 0,
  3013. "y": 0
  3014. },
  3015. "_fillStart": 0,
  3016. "_fillRange": 0,
  3017. "_isTrimmedMode": true,
  3018. "_atlas": null,
  3019. "_id": ""
  3020. },
  3021. {
  3022. "__type__": "cc.PrefabInfo",
  3023. "root": {
  3024. "__id__": 1
  3025. },
  3026. "asset": {
  3027. "__id__": 0
  3028. },
  3029. "fileId": "49U2ap2c9N9K7Hqxj4hF/U",
  3030. "sync": false
  3031. },
  3032. {
  3033. "__type__": "cc.Sprite",
  3034. "_name": "",
  3035. "_objFlags": 0,
  3036. "node": {
  3037. "__id__": 50
  3038. },
  3039. "_enabled": true,
  3040. "_materials": [
  3041. {
  3042. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3043. }
  3044. ],
  3045. "_srcBlendFactor": 770,
  3046. "_dstBlendFactor": 771,
  3047. "_spriteFrame": {
  3048. "__uuid__": "66d456b9-18f2-4209-b61d-67b9997479d9"
  3049. },
  3050. "_type": 1,
  3051. "_sizeMode": 0,
  3052. "_fillType": 0,
  3053. "_fillCenter": {
  3054. "__type__": "cc.Vec2",
  3055. "x": 0,
  3056. "y": 0
  3057. },
  3058. "_fillStart": 0,
  3059. "_fillRange": 0,
  3060. "_isTrimmedMode": true,
  3061. "_atlas": null,
  3062. "_id": ""
  3063. },
  3064. {
  3065. "__type__": "cc.Button",
  3066. "_name": "",
  3067. "_objFlags": 0,
  3068. "node": {
  3069. "__id__": 50
  3070. },
  3071. "_enabled": true,
  3072. "_normalMaterial": null,
  3073. "_grayMaterial": null,
  3074. "duration": 0.1,
  3075. "zoomScale": 1.2,
  3076. "clickEvents": [],
  3077. "_N$interactable": true,
  3078. "_N$enableAutoGrayEffect": false,
  3079. "_N$transition": 0,
  3080. "transition": 0,
  3081. "_N$normalColor": {
  3082. "__type__": "cc.Color",
  3083. "r": 255,
  3084. "g": 255,
  3085. "b": 255,
  3086. "a": 255
  3087. },
  3088. "_N$pressedColor": {
  3089. "__type__": "cc.Color",
  3090. "r": 211,
  3091. "g": 211,
  3092. "b": 211,
  3093. "a": 255
  3094. },
  3095. "pressedColor": {
  3096. "__type__": "cc.Color",
  3097. "r": 211,
  3098. "g": 211,
  3099. "b": 211,
  3100. "a": 255
  3101. },
  3102. "_N$hoverColor": {
  3103. "__type__": "cc.Color",
  3104. "r": 255,
  3105. "g": 255,
  3106. "b": 255,
  3107. "a": 255
  3108. },
  3109. "hoverColor": {
  3110. "__type__": "cc.Color",
  3111. "r": 255,
  3112. "g": 255,
  3113. "b": 255,
  3114. "a": 255
  3115. },
  3116. "_N$disabledColor": {
  3117. "__type__": "cc.Color",
  3118. "r": 124,
  3119. "g": 124,
  3120. "b": 124,
  3121. "a": 255
  3122. },
  3123. "_N$normalSprite": null,
  3124. "_N$pressedSprite": null,
  3125. "pressedSprite": null,
  3126. "_N$hoverSprite": null,
  3127. "hoverSprite": null,
  3128. "_N$disabledSprite": null,
  3129. "_N$target": null,
  3130. "_id": ""
  3131. },
  3132. {
  3133. "__type__": "cc.PrefabInfo",
  3134. "root": {
  3135. "__id__": 1
  3136. },
  3137. "asset": {
  3138. "__id__": 0
  3139. },
  3140. "fileId": "25Sw+be/xOU7xxgwzigRLg",
  3141. "sync": false
  3142. },
  3143. {
  3144. "__type__": "cc.Node",
  3145. "_name": "three",
  3146. "_objFlags": 0,
  3147. "_parent": {
  3148. "__id__": 17
  3149. },
  3150. "_children": [
  3151. {
  3152. "__id__": 83
  3153. },
  3154. {
  3155. "__id__": 86
  3156. },
  3157. {
  3158. "__id__": 93
  3159. },
  3160. {
  3161. "__id__": 102
  3162. }
  3163. ],
  3164. "_active": true,
  3165. "_components": [
  3166. {
  3167. "__id__": 111
  3168. },
  3169. {
  3170. "__id__": 112
  3171. }
  3172. ],
  3173. "_prefab": {
  3174. "__id__": 113
  3175. },
  3176. "_opacity": 255,
  3177. "_color": {
  3178. "__type__": "cc.Color",
  3179. "r": 255,
  3180. "g": 255,
  3181. "b": 255,
  3182. "a": 255
  3183. },
  3184. "_contentSize": {
  3185. "__type__": "cc.Size",
  3186. "width": 162,
  3187. "height": 160
  3188. },
  3189. "_anchorPoint": {
  3190. "__type__": "cc.Vec2",
  3191. "x": 0.5,
  3192. "y": 0.5
  3193. },
  3194. "_trs": {
  3195. "__type__": "TypedArray",
  3196. "ctor": "Float64Array",
  3197. "array": [
  3198. 175,
  3199. 190,
  3200. 0,
  3201. 0,
  3202. 0,
  3203. 0,
  3204. 1,
  3205. 1,
  3206. 1,
  3207. 1
  3208. ]
  3209. },
  3210. "_eulerAngles": {
  3211. "__type__": "cc.Vec3",
  3212. "x": 0,
  3213. "y": 0,
  3214. "z": 0
  3215. },
  3216. "_skewX": 0,
  3217. "_skewY": 0,
  3218. "_is3DNode": false,
  3219. "_groupIndex": 0,
  3220. "groupIndex": 0,
  3221. "_id": ""
  3222. },
  3223. {
  3224. "__type__": "cc.Node",
  3225. "_name": "di",
  3226. "_objFlags": 0,
  3227. "_parent": {
  3228. "__id__": 82
  3229. },
  3230. "_children": [],
  3231. "_active": false,
  3232. "_components": [
  3233. {
  3234. "__id__": 84
  3235. }
  3236. ],
  3237. "_prefab": {
  3238. "__id__": 85
  3239. },
  3240. "_opacity": 255,
  3241. "_color": {
  3242. "__type__": "cc.Color",
  3243. "r": 255,
  3244. "g": 255,
  3245. "b": 255,
  3246. "a": 255
  3247. },
  3248. "_contentSize": {
  3249. "__type__": "cc.Size",
  3250. "width": 162,
  3251. "height": 160
  3252. },
  3253. "_anchorPoint": {
  3254. "__type__": "cc.Vec2",
  3255. "x": 0.5,
  3256. "y": 0.5
  3257. },
  3258. "_trs": {
  3259. "__type__": "TypedArray",
  3260. "ctor": "Float64Array",
  3261. "array": [
  3262. 0,
  3263. 0,
  3264. 0,
  3265. 0,
  3266. 0,
  3267. 0,
  3268. 1,
  3269. 1,
  3270. 1,
  3271. 1
  3272. ]
  3273. },
  3274. "_eulerAngles": {
  3275. "__type__": "cc.Vec3",
  3276. "x": 0,
  3277. "y": 0,
  3278. "z": 0
  3279. },
  3280. "_skewX": 0,
  3281. "_skewY": 0,
  3282. "_is3DNode": false,
  3283. "_groupIndex": 0,
  3284. "groupIndex": 0,
  3285. "_id": ""
  3286. },
  3287. {
  3288. "__type__": "cc.Sprite",
  3289. "_name": "",
  3290. "_objFlags": 0,
  3291. "node": {
  3292. "__id__": 83
  3293. },
  3294. "_enabled": true,
  3295. "_materials": [
  3296. {
  3297. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3298. }
  3299. ],
  3300. "_srcBlendFactor": 770,
  3301. "_dstBlendFactor": 771,
  3302. "_spriteFrame": {
  3303. "__uuid__": "6d9d4bf6-e66b-40aa-8e1b-609c88010983"
  3304. },
  3305. "_type": 1,
  3306. "_sizeMode": 0,
  3307. "_fillType": 0,
  3308. "_fillCenter": {
  3309. "__type__": "cc.Vec2",
  3310. "x": 0,
  3311. "y": 0
  3312. },
  3313. "_fillStart": 0,
  3314. "_fillRange": 0,
  3315. "_isTrimmedMode": true,
  3316. "_atlas": null,
  3317. "_id": ""
  3318. },
  3319. {
  3320. "__type__": "cc.PrefabInfo",
  3321. "root": {
  3322. "__id__": 1
  3323. },
  3324. "asset": {
  3325. "__id__": 0
  3326. },
  3327. "fileId": "1cuHgGd4dIlZQA+4DRZDmH",
  3328. "sync": false
  3329. },
  3330. {
  3331. "__type__": "cc.Node",
  3332. "_name": "item",
  3333. "_objFlags": 0,
  3334. "_parent": {
  3335. "__id__": 82
  3336. },
  3337. "_children": [
  3338. {
  3339. "__id__": 87
  3340. }
  3341. ],
  3342. "_active": true,
  3343. "_components": [
  3344. {
  3345. "__id__": 91
  3346. }
  3347. ],
  3348. "_prefab": {
  3349. "__id__": 92
  3350. },
  3351. "_opacity": 255,
  3352. "_color": {
  3353. "__type__": "cc.Color",
  3354. "r": 255,
  3355. "g": 255,
  3356. "b": 255,
  3357. "a": 255
  3358. },
  3359. "_contentSize": {
  3360. "__type__": "cc.Size",
  3361. "width": 74,
  3362. "height": 74
  3363. },
  3364. "_anchorPoint": {
  3365. "__type__": "cc.Vec2",
  3366. "x": 0.5,
  3367. "y": 0.5
  3368. },
  3369. "_trs": {
  3370. "__type__": "TypedArray",
  3371. "ctor": "Float64Array",
  3372. "array": [
  3373. 0,
  3374. 22.421,
  3375. 0,
  3376. 0,
  3377. 0,
  3378. 0,
  3379. 1,
  3380. 1,
  3381. 1,
  3382. 1
  3383. ]
  3384. },
  3385. "_eulerAngles": {
  3386. "__type__": "cc.Vec3",
  3387. "x": 0,
  3388. "y": 0,
  3389. "z": 0
  3390. },
  3391. "_skewX": 0,
  3392. "_skewY": 0,
  3393. "_is3DNode": false,
  3394. "_groupIndex": 0,
  3395. "groupIndex": 0,
  3396. "_id": ""
  3397. },
  3398. {
  3399. "__type__": "cc.Node",
  3400. "_name": "num",
  3401. "_objFlags": 0,
  3402. "_parent": {
  3403. "__id__": 86
  3404. },
  3405. "_children": [],
  3406. "_active": true,
  3407. "_components": [
  3408. {
  3409. "__id__": 88
  3410. },
  3411. {
  3412. "__id__": 89
  3413. }
  3414. ],
  3415. "_prefab": {
  3416. "__id__": 90
  3417. },
  3418. "_opacity": 255,
  3419. "_color": {
  3420. "__type__": "cc.Color",
  3421. "r": 255,
  3422. "g": 255,
  3423. "b": 255,
  3424. "a": 255
  3425. },
  3426. "_contentSize": {
  3427. "__type__": "cc.Size",
  3428. "width": 30.7,
  3429. "height": 34.239999999999995
  3430. },
  3431. "_anchorPoint": {
  3432. "__type__": "cc.Vec2",
  3433. "x": 0.5,
  3434. "y": 0.5
  3435. },
  3436. "_trs": {
  3437. "__type__": "TypedArray",
  3438. "ctor": "Float64Array",
  3439. "array": [
  3440. 31.485,
  3441. -20.513,
  3442. 0,
  3443. 0,
  3444. 0,
  3445. 0,
  3446. 1,
  3447. 1,
  3448. 1,
  3449. 1
  3450. ]
  3451. },
  3452. "_eulerAngles": {
  3453. "__type__": "cc.Vec3",
  3454. "x": 0,
  3455. "y": 0,
  3456. "z": 0
  3457. },
  3458. "_skewX": 0,
  3459. "_skewY": 0,
  3460. "_is3DNode": false,
  3461. "_groupIndex": 0,
  3462. "groupIndex": 0,
  3463. "_id": ""
  3464. },
  3465. {
  3466. "__type__": "cc.Label",
  3467. "_name": "",
  3468. "_objFlags": 0,
  3469. "node": {
  3470. "__id__": 87
  3471. },
  3472. "_enabled": true,
  3473. "_materials": [
  3474. {
  3475. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3476. }
  3477. ],
  3478. "_srcBlendFactor": 770,
  3479. "_dstBlendFactor": 771,
  3480. "_string": "x1",
  3481. "_N$string": "x1",
  3482. "_fontSize": 24,
  3483. "_lineHeight": 24,
  3484. "_enableWrapText": true,
  3485. "_N$file": null,
  3486. "_isSystemFontUsed": true,
  3487. "_spacingX": 0,
  3488. "_batchAsBitmap": false,
  3489. "_styleFlags": 1,
  3490. "_underlineHeight": 0,
  3491. "_N$horizontalAlign": 1,
  3492. "_N$verticalAlign": 1,
  3493. "_N$fontFamily": "Arial",
  3494. "_N$overflow": 0,
  3495. "_N$cacheMode": 1,
  3496. "_id": ""
  3497. },
  3498. {
  3499. "__type__": "cc.LabelOutline",
  3500. "_name": "",
  3501. "_objFlags": 0,
  3502. "node": {
  3503. "__id__": 87
  3504. },
  3505. "_enabled": true,
  3506. "_color": {
  3507. "__type__": "cc.Color",
  3508. "r": 113,
  3509. "g": 15,
  3510. "b": 0,
  3511. "a": 255
  3512. },
  3513. "_width": 2,
  3514. "_id": ""
  3515. },
  3516. {
  3517. "__type__": "cc.PrefabInfo",
  3518. "root": {
  3519. "__id__": 1
  3520. },
  3521. "asset": {
  3522. "__id__": 0
  3523. },
  3524. "fileId": "e5ZA2ttXFEtbA/ZNBKJpRs",
  3525. "sync": false
  3526. },
  3527. {
  3528. "__type__": "cc.Sprite",
  3529. "_name": "",
  3530. "_objFlags": 0,
  3531. "node": {
  3532. "__id__": 86
  3533. },
  3534. "_enabled": true,
  3535. "_materials": [
  3536. {
  3537. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3538. }
  3539. ],
  3540. "_srcBlendFactor": 770,
  3541. "_dstBlendFactor": 771,
  3542. "_spriteFrame": {
  3543. "__uuid__": "8d38be3e-db2c-408e-880d-64f534baf521"
  3544. },
  3545. "_type": 0,
  3546. "_sizeMode": 0,
  3547. "_fillType": 0,
  3548. "_fillCenter": {
  3549. "__type__": "cc.Vec2",
  3550. "x": 0,
  3551. "y": 0
  3552. },
  3553. "_fillStart": 0,
  3554. "_fillRange": 0,
  3555. "_isTrimmedMode": true,
  3556. "_atlas": null,
  3557. "_id": ""
  3558. },
  3559. {
  3560. "__type__": "cc.PrefabInfo",
  3561. "root": {
  3562. "__id__": 1
  3563. },
  3564. "asset": {
  3565. "__id__": 0
  3566. },
  3567. "fileId": "04nC18301FBqKyJf4Obx1o",
  3568. "sync": false
  3569. },
  3570. {
  3571. "__type__": "cc.Node",
  3572. "_name": "bottom",
  3573. "_objFlags": 0,
  3574. "_parent": {
  3575. "__id__": 82
  3576. },
  3577. "_children": [
  3578. {
  3579. "__id__": 94
  3580. },
  3581. {
  3582. "__id__": 97
  3583. }
  3584. ],
  3585. "_active": true,
  3586. "_components": [
  3587. {
  3588. "__id__": 100
  3589. }
  3590. ],
  3591. "_prefab": {
  3592. "__id__": 101
  3593. },
  3594. "_opacity": 255,
  3595. "_color": {
  3596. "__type__": "cc.Color",
  3597. "r": 255,
  3598. "g": 255,
  3599. "b": 255,
  3600. "a": 255
  3601. },
  3602. "_contentSize": {
  3603. "__type__": "cc.Size",
  3604. "width": 162,
  3605. "height": 50
  3606. },
  3607. "_anchorPoint": {
  3608. "__type__": "cc.Vec2",
  3609. "x": 0.5,
  3610. "y": 0.5
  3611. },
  3612. "_trs": {
  3613. "__type__": "TypedArray",
  3614. "ctor": "Float64Array",
  3615. "array": [
  3616. 0,
  3617. -55,
  3618. 0,
  3619. 0,
  3620. 0,
  3621. 0,
  3622. 1,
  3623. 1,
  3624. 1,
  3625. 1
  3626. ]
  3627. },
  3628. "_eulerAngles": {
  3629. "__type__": "cc.Vec3",
  3630. "x": 0,
  3631. "y": 0,
  3632. "z": 0
  3633. },
  3634. "_skewX": 0,
  3635. "_skewY": 0,
  3636. "_is3DNode": false,
  3637. "_groupIndex": 0,
  3638. "groupIndex": 0,
  3639. "_id": ""
  3640. },
  3641. {
  3642. "__type__": "cc.Node",
  3643. "_name": "label",
  3644. "_objFlags": 0,
  3645. "_parent": {
  3646. "__id__": 93
  3647. },
  3648. "_children": [],
  3649. "_active": true,
  3650. "_components": [
  3651. {
  3652. "__id__": 95
  3653. }
  3654. ],
  3655. "_prefab": {
  3656. "__id__": 96
  3657. },
  3658. "_opacity": 255,
  3659. "_color": {
  3660. "__type__": "cc.Color",
  3661. "r": 144,
  3662. "g": 85,
  3663. "b": 53,
  3664. "a": 255
  3665. },
  3666. "_contentSize": {
  3667. "__type__": "cc.Size",
  3668. "width": 84,
  3669. "height": 35.28
  3670. },
  3671. "_anchorPoint": {
  3672. "__type__": "cc.Vec2",
  3673. "x": 0.5,
  3674. "y": 0.5
  3675. },
  3676. "_trs": {
  3677. "__type__": "TypedArray",
  3678. "ctor": "Float64Array",
  3679. "array": [
  3680. 0,
  3681. 0,
  3682. 0,
  3683. 0,
  3684. 0,
  3685. 0,
  3686. 1,
  3687. 1,
  3688. 1,
  3689. 1
  3690. ]
  3691. },
  3692. "_eulerAngles": {
  3693. "__type__": "cc.Vec3",
  3694. "x": 0,
  3695. "y": 0,
  3696. "z": 0
  3697. },
  3698. "_skewX": 0,
  3699. "_skewY": 0,
  3700. "_is3DNode": false,
  3701. "_groupIndex": 0,
  3702. "groupIndex": 0,
  3703. "_id": ""
  3704. },
  3705. {
  3706. "__type__": "cc.Label",
  3707. "_name": "",
  3708. "_objFlags": 0,
  3709. "node": {
  3710. "__id__": 94
  3711. },
  3712. "_enabled": true,
  3713. "_materials": [
  3714. {
  3715. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3716. }
  3717. ],
  3718. "_srcBlendFactor": 770,
  3719. "_dstBlendFactor": 771,
  3720. "_string": "第三天",
  3721. "_N$string": "第三天",
  3722. "_fontSize": 28,
  3723. "_lineHeight": 28,
  3724. "_enableWrapText": true,
  3725. "_N$file": null,
  3726. "_isSystemFontUsed": true,
  3727. "_spacingX": 0,
  3728. "_batchAsBitmap": false,
  3729. "_styleFlags": 1,
  3730. "_underlineHeight": 0,
  3731. "_N$horizontalAlign": 1,
  3732. "_N$verticalAlign": 1,
  3733. "_N$fontFamily": "Arial",
  3734. "_N$overflow": 0,
  3735. "_N$cacheMode": 1,
  3736. "_id": ""
  3737. },
  3738. {
  3739. "__type__": "cc.PrefabInfo",
  3740. "root": {
  3741. "__id__": 1
  3742. },
  3743. "asset": {
  3744. "__id__": 0
  3745. },
  3746. "fileId": "9fe3bKFvVAPqGri5JHL70M",
  3747. "sync": false
  3748. },
  3749. {
  3750. "__type__": "cc.Node",
  3751. "_name": "videoIcon",
  3752. "_objFlags": 0,
  3753. "_parent": {
  3754. "__id__": 93
  3755. },
  3756. "_children": [],
  3757. "_active": false,
  3758. "_components": [
  3759. {
  3760. "__id__": 98
  3761. }
  3762. ],
  3763. "_prefab": {
  3764. "__id__": 99
  3765. },
  3766. "_opacity": 255,
  3767. "_color": {
  3768. "__type__": "cc.Color",
  3769. "r": 255,
  3770. "g": 255,
  3771. "b": 255,
  3772. "a": 255
  3773. },
  3774. "_contentSize": {
  3775. "__type__": "cc.Size",
  3776. "width": 56,
  3777. "height": 43
  3778. },
  3779. "_anchorPoint": {
  3780. "__type__": "cc.Vec2",
  3781. "x": 0.5,
  3782. "y": 0.5
  3783. },
  3784. "_trs": {
  3785. "__type__": "TypedArray",
  3786. "ctor": "Float64Array",
  3787. "array": [
  3788. 40,
  3789. 0,
  3790. 0,
  3791. 0,
  3792. 0,
  3793. 0,
  3794. 1,
  3795. 0.5,
  3796. 0.5,
  3797. 1
  3798. ]
  3799. },
  3800. "_eulerAngles": {
  3801. "__type__": "cc.Vec3",
  3802. "x": 0,
  3803. "y": 0,
  3804. "z": 0
  3805. },
  3806. "_skewX": 0,
  3807. "_skewY": 0,
  3808. "_is3DNode": false,
  3809. "_groupIndex": 0,
  3810. "groupIndex": 0,
  3811. "_id": ""
  3812. },
  3813. {
  3814. "__type__": "cc.Sprite",
  3815. "_name": "",
  3816. "_objFlags": 0,
  3817. "node": {
  3818. "__id__": 97
  3819. },
  3820. "_enabled": true,
  3821. "_materials": [
  3822. {
  3823. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3824. }
  3825. ],
  3826. "_srcBlendFactor": 770,
  3827. "_dstBlendFactor": 771,
  3828. "_spriteFrame": {
  3829. "__uuid__": "a15d6951-f9a3-45b7-b099-8116c6a78eea"
  3830. },
  3831. "_type": 0,
  3832. "_sizeMode": 1,
  3833. "_fillType": 0,
  3834. "_fillCenter": {
  3835. "__type__": "cc.Vec2",
  3836. "x": 0,
  3837. "y": 0
  3838. },
  3839. "_fillStart": 0,
  3840. "_fillRange": 0,
  3841. "_isTrimmedMode": true,
  3842. "_atlas": null,
  3843. "_id": ""
  3844. },
  3845. {
  3846. "__type__": "cc.PrefabInfo",
  3847. "root": {
  3848. "__id__": 1
  3849. },
  3850. "asset": {
  3851. "__id__": 0
  3852. },
  3853. "fileId": "56q9q3bwtKkrlQn0Y3sBzj",
  3854. "sync": false
  3855. },
  3856. {
  3857. "__type__": "cc.Sprite",
  3858. "_name": "",
  3859. "_objFlags": 0,
  3860. "node": {
  3861. "__id__": 93
  3862. },
  3863. "_enabled": true,
  3864. "_materials": [
  3865. {
  3866. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3867. }
  3868. ],
  3869. "_srcBlendFactor": 770,
  3870. "_dstBlendFactor": 771,
  3871. "_spriteFrame": {
  3872. "__uuid__": "80d1c3b0-9a53-434a-ae8e-fc3c77e6e4d0"
  3873. },
  3874. "_type": 1,
  3875. "_sizeMode": 0,
  3876. "_fillType": 0,
  3877. "_fillCenter": {
  3878. "__type__": "cc.Vec2",
  3879. "x": 0,
  3880. "y": 0
  3881. },
  3882. "_fillStart": 0,
  3883. "_fillRange": 0,
  3884. "_isTrimmedMode": true,
  3885. "_atlas": null,
  3886. "_id": ""
  3887. },
  3888. {
  3889. "__type__": "cc.PrefabInfo",
  3890. "root": {
  3891. "__id__": 1
  3892. },
  3893. "asset": {
  3894. "__id__": 0
  3895. },
  3896. "fileId": "a2Ji9RfE9CtZH6AAWUjO83",
  3897. "sync": false
  3898. },
  3899. {
  3900. "__type__": "cc.Node",
  3901. "_name": "mask",
  3902. "_objFlags": 0,
  3903. "_parent": {
  3904. "__id__": 82
  3905. },
  3906. "_children": [
  3907. {
  3908. "__id__": 103
  3909. },
  3910. {
  3911. "__id__": 106
  3912. }
  3913. ],
  3914. "_active": false,
  3915. "_components": [
  3916. {
  3917. "__id__": 109
  3918. }
  3919. ],
  3920. "_prefab": {
  3921. "__id__": 110
  3922. },
  3923. "_opacity": 255,
  3924. "_color": {
  3925. "__type__": "cc.Color",
  3926. "r": 255,
  3927. "g": 255,
  3928. "b": 255,
  3929. "a": 255
  3930. },
  3931. "_contentSize": {
  3932. "__type__": "cc.Size",
  3933. "width": 162,
  3934. "height": 160
  3935. },
  3936. "_anchorPoint": {
  3937. "__type__": "cc.Vec2",
  3938. "x": 0.5,
  3939. "y": 0.5
  3940. },
  3941. "_trs": {
  3942. "__type__": "TypedArray",
  3943. "ctor": "Float64Array",
  3944. "array": [
  3945. 0,
  3946. 0,
  3947. 0,
  3948. 0,
  3949. 0,
  3950. 0,
  3951. 1,
  3952. 1,
  3953. 1,
  3954. 1
  3955. ]
  3956. },
  3957. "_eulerAngles": {
  3958. "__type__": "cc.Vec3",
  3959. "x": 0,
  3960. "y": 0,
  3961. "z": 0
  3962. },
  3963. "_skewX": 0,
  3964. "_skewY": 0,
  3965. "_is3DNode": false,
  3966. "_groupIndex": 0,
  3967. "groupIndex": 0,
  3968. "_id": ""
  3969. },
  3970. {
  3971. "__type__": "cc.Node",
  3972. "_name": "right",
  3973. "_objFlags": 0,
  3974. "_parent": {
  3975. "__id__": 102
  3976. },
  3977. "_children": [],
  3978. "_active": true,
  3979. "_components": [
  3980. {
  3981. "__id__": 104
  3982. }
  3983. ],
  3984. "_prefab": {
  3985. "__id__": 105
  3986. },
  3987. "_opacity": 255,
  3988. "_color": {
  3989. "__type__": "cc.Color",
  3990. "r": 255,
  3991. "g": 255,
  3992. "b": 255,
  3993. "a": 255
  3994. },
  3995. "_contentSize": {
  3996. "__type__": "cc.Size",
  3997. "width": 54,
  3998. "height": 41
  3999. },
  4000. "_anchorPoint": {
  4001. "__type__": "cc.Vec2",
  4002. "x": 0.5,
  4003. "y": 0.5
  4004. },
  4005. "_trs": {
  4006. "__type__": "TypedArray",
  4007. "ctor": "Float64Array",
  4008. "array": [
  4009. 0,
  4010. 28.288,
  4011. 0,
  4012. 0,
  4013. 0,
  4014. 0,
  4015. 1,
  4016. 1,
  4017. 1,
  4018. 1
  4019. ]
  4020. },
  4021. "_eulerAngles": {
  4022. "__type__": "cc.Vec3",
  4023. "x": 0,
  4024. "y": 0,
  4025. "z": 0
  4026. },
  4027. "_skewX": 0,
  4028. "_skewY": 0,
  4029. "_is3DNode": false,
  4030. "_groupIndex": 0,
  4031. "groupIndex": 0,
  4032. "_id": ""
  4033. },
  4034. {
  4035. "__type__": "cc.Sprite",
  4036. "_name": "",
  4037. "_objFlags": 0,
  4038. "node": {
  4039. "__id__": 103
  4040. },
  4041. "_enabled": true,
  4042. "_materials": [
  4043. {
  4044. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4045. }
  4046. ],
  4047. "_srcBlendFactor": 770,
  4048. "_dstBlendFactor": 771,
  4049. "_spriteFrame": {
  4050. "__uuid__": "b499d51c-984b-4b39-a014-4b1acc984027"
  4051. },
  4052. "_type": 0,
  4053. "_sizeMode": 1,
  4054. "_fillType": 0,
  4055. "_fillCenter": {
  4056. "__type__": "cc.Vec2",
  4057. "x": 0,
  4058. "y": 0
  4059. },
  4060. "_fillStart": 0,
  4061. "_fillRange": 0,
  4062. "_isTrimmedMode": true,
  4063. "_atlas": null,
  4064. "_id": ""
  4065. },
  4066. {
  4067. "__type__": "cc.PrefabInfo",
  4068. "root": {
  4069. "__id__": 1
  4070. },
  4071. "asset": {
  4072. "__id__": 0
  4073. },
  4074. "fileId": "a8haf/tPtOe68B+Y64iK4y",
  4075. "sync": false
  4076. },
  4077. {
  4078. "__type__": "cc.Node",
  4079. "_name": "label",
  4080. "_objFlags": 0,
  4081. "_parent": {
  4082. "__id__": 102
  4083. },
  4084. "_children": [],
  4085. "_active": true,
  4086. "_components": [
  4087. {
  4088. "__id__": 107
  4089. }
  4090. ],
  4091. "_prefab": {
  4092. "__id__": 108
  4093. },
  4094. "_opacity": 255,
  4095. "_color": {
  4096. "__type__": "cc.Color",
  4097. "r": 255,
  4098. "g": 255,
  4099. "b": 255,
  4100. "a": 255
  4101. },
  4102. "_contentSize": {
  4103. "__type__": "cc.Size",
  4104. "width": 84,
  4105. "height": 35.28
  4106. },
  4107. "_anchorPoint": {
  4108. "__type__": "cc.Vec2",
  4109. "x": 0.5,
  4110. "y": 0.5
  4111. },
  4112. "_trs": {
  4113. "__type__": "TypedArray",
  4114. "ctor": "Float64Array",
  4115. "array": [
  4116. 0,
  4117. -30.646,
  4118. 0,
  4119. 0,
  4120. 0,
  4121. 0,
  4122. 1,
  4123. 1,
  4124. 1,
  4125. 1
  4126. ]
  4127. },
  4128. "_eulerAngles": {
  4129. "__type__": "cc.Vec3",
  4130. "x": 0,
  4131. "y": 0,
  4132. "z": 0
  4133. },
  4134. "_skewX": 0,
  4135. "_skewY": 0,
  4136. "_is3DNode": false,
  4137. "_groupIndex": 0,
  4138. "groupIndex": 0,
  4139. "_id": ""
  4140. },
  4141. {
  4142. "__type__": "cc.Label",
  4143. "_name": "",
  4144. "_objFlags": 0,
  4145. "node": {
  4146. "__id__": 106
  4147. },
  4148. "_enabled": true,
  4149. "_materials": [
  4150. {
  4151. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4152. }
  4153. ],
  4154. "_srcBlendFactor": 770,
  4155. "_dstBlendFactor": 771,
  4156. "_string": "已领取",
  4157. "_N$string": "已领取",
  4158. "_fontSize": 28,
  4159. "_lineHeight": 28,
  4160. "_enableWrapText": true,
  4161. "_N$file": null,
  4162. "_isSystemFontUsed": true,
  4163. "_spacingX": 0,
  4164. "_batchAsBitmap": false,
  4165. "_styleFlags": 1,
  4166. "_underlineHeight": 0,
  4167. "_N$horizontalAlign": 1,
  4168. "_N$verticalAlign": 1,
  4169. "_N$fontFamily": "Arial",
  4170. "_N$overflow": 0,
  4171. "_N$cacheMode": 1,
  4172. "_id": ""
  4173. },
  4174. {
  4175. "__type__": "cc.PrefabInfo",
  4176. "root": {
  4177. "__id__": 1
  4178. },
  4179. "asset": {
  4180. "__id__": 0
  4181. },
  4182. "fileId": "d4mQl5FBNJqqyS38w1uBOa",
  4183. "sync": false
  4184. },
  4185. {
  4186. "__type__": "cc.Sprite",
  4187. "_name": "",
  4188. "_objFlags": 0,
  4189. "node": {
  4190. "__id__": 102
  4191. },
  4192. "_enabled": true,
  4193. "_materials": [
  4194. {
  4195. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4196. }
  4197. ],
  4198. "_srcBlendFactor": 770,
  4199. "_dstBlendFactor": 771,
  4200. "_spriteFrame": {
  4201. "__uuid__": "6c65fd34-97dc-4451-960d-cf4a253fa4b7"
  4202. },
  4203. "_type": 1,
  4204. "_sizeMode": 0,
  4205. "_fillType": 0,
  4206. "_fillCenter": {
  4207. "__type__": "cc.Vec2",
  4208. "x": 0,
  4209. "y": 0
  4210. },
  4211. "_fillStart": 0,
  4212. "_fillRange": 0,
  4213. "_isTrimmedMode": true,
  4214. "_atlas": null,
  4215. "_id": ""
  4216. },
  4217. {
  4218. "__type__": "cc.PrefabInfo",
  4219. "root": {
  4220. "__id__": 1
  4221. },
  4222. "asset": {
  4223. "__id__": 0
  4224. },
  4225. "fileId": "4b5lPt1C1NroXD8c81fyqS",
  4226. "sync": false
  4227. },
  4228. {
  4229. "__type__": "cc.Sprite",
  4230. "_name": "",
  4231. "_objFlags": 0,
  4232. "node": {
  4233. "__id__": 82
  4234. },
  4235. "_enabled": true,
  4236. "_materials": [
  4237. {
  4238. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4239. }
  4240. ],
  4241. "_srcBlendFactor": 770,
  4242. "_dstBlendFactor": 771,
  4243. "_spriteFrame": {
  4244. "__uuid__": "66d456b9-18f2-4209-b61d-67b9997479d9"
  4245. },
  4246. "_type": 1,
  4247. "_sizeMode": 0,
  4248. "_fillType": 0,
  4249. "_fillCenter": {
  4250. "__type__": "cc.Vec2",
  4251. "x": 0,
  4252. "y": 0
  4253. },
  4254. "_fillStart": 0,
  4255. "_fillRange": 0,
  4256. "_isTrimmedMode": true,
  4257. "_atlas": null,
  4258. "_id": ""
  4259. },
  4260. {
  4261. "__type__": "cc.Button",
  4262. "_name": "",
  4263. "_objFlags": 0,
  4264. "node": {
  4265. "__id__": 82
  4266. },
  4267. "_enabled": true,
  4268. "_normalMaterial": null,
  4269. "_grayMaterial": null,
  4270. "duration": 0.1,
  4271. "zoomScale": 1.2,
  4272. "clickEvents": [],
  4273. "_N$interactable": true,
  4274. "_N$enableAutoGrayEffect": false,
  4275. "_N$transition": 0,
  4276. "transition": 0,
  4277. "_N$normalColor": {
  4278. "__type__": "cc.Color",
  4279. "r": 255,
  4280. "g": 255,
  4281. "b": 255,
  4282. "a": 255
  4283. },
  4284. "_N$pressedColor": {
  4285. "__type__": "cc.Color",
  4286. "r": 211,
  4287. "g": 211,
  4288. "b": 211,
  4289. "a": 255
  4290. },
  4291. "pressedColor": {
  4292. "__type__": "cc.Color",
  4293. "r": 211,
  4294. "g": 211,
  4295. "b": 211,
  4296. "a": 255
  4297. },
  4298. "_N$hoverColor": {
  4299. "__type__": "cc.Color",
  4300. "r": 255,
  4301. "g": 255,
  4302. "b": 255,
  4303. "a": 255
  4304. },
  4305. "hoverColor": {
  4306. "__type__": "cc.Color",
  4307. "r": 255,
  4308. "g": 255,
  4309. "b": 255,
  4310. "a": 255
  4311. },
  4312. "_N$disabledColor": {
  4313. "__type__": "cc.Color",
  4314. "r": 124,
  4315. "g": 124,
  4316. "b": 124,
  4317. "a": 255
  4318. },
  4319. "_N$normalSprite": null,
  4320. "_N$pressedSprite": null,
  4321. "pressedSprite": null,
  4322. "_N$hoverSprite": null,
  4323. "hoverSprite": null,
  4324. "_N$disabledSprite": null,
  4325. "_N$target": null,
  4326. "_id": ""
  4327. },
  4328. {
  4329. "__type__": "cc.PrefabInfo",
  4330. "root": {
  4331. "__id__": 1
  4332. },
  4333. "asset": {
  4334. "__id__": 0
  4335. },
  4336. "fileId": "843OjiATJGOJQhUNp0zvgw",
  4337. "sync": false
  4338. },
  4339. {
  4340. "__type__": "cc.Node",
  4341. "_name": "four",
  4342. "_objFlags": 0,
  4343. "_parent": {
  4344. "__id__": 17
  4345. },
  4346. "_children": [
  4347. {
  4348. "__id__": 115
  4349. },
  4350. {
  4351. "__id__": 118
  4352. },
  4353. {
  4354. "__id__": 125
  4355. },
  4356. {
  4357. "__id__": 134
  4358. }
  4359. ],
  4360. "_active": true,
  4361. "_components": [
  4362. {
  4363. "__id__": 143
  4364. },
  4365. {
  4366. "__id__": 144
  4367. }
  4368. ],
  4369. "_prefab": {
  4370. "__id__": 145
  4371. },
  4372. "_opacity": 255,
  4373. "_color": {
  4374. "__type__": "cc.Color",
  4375. "r": 255,
  4376. "g": 255,
  4377. "b": 255,
  4378. "a": 255
  4379. },
  4380. "_contentSize": {
  4381. "__type__": "cc.Size",
  4382. "width": 162,
  4383. "height": 160
  4384. },
  4385. "_anchorPoint": {
  4386. "__type__": "cc.Vec2",
  4387. "x": 0.5,
  4388. "y": 0.5
  4389. },
  4390. "_trs": {
  4391. "__type__": "TypedArray",
  4392. "ctor": "Float64Array",
  4393. "array": [
  4394. -175,
  4395. 0,
  4396. 0,
  4397. 0,
  4398. 0,
  4399. 0,
  4400. 1,
  4401. 1,
  4402. 1,
  4403. 1
  4404. ]
  4405. },
  4406. "_eulerAngles": {
  4407. "__type__": "cc.Vec3",
  4408. "x": 0,
  4409. "y": 0,
  4410. "z": 0
  4411. },
  4412. "_skewX": 0,
  4413. "_skewY": 0,
  4414. "_is3DNode": false,
  4415. "_groupIndex": 0,
  4416. "groupIndex": 0,
  4417. "_id": ""
  4418. },
  4419. {
  4420. "__type__": "cc.Node",
  4421. "_name": "di",
  4422. "_objFlags": 0,
  4423. "_parent": {
  4424. "__id__": 114
  4425. },
  4426. "_children": [],
  4427. "_active": false,
  4428. "_components": [
  4429. {
  4430. "__id__": 116
  4431. }
  4432. ],
  4433. "_prefab": {
  4434. "__id__": 117
  4435. },
  4436. "_opacity": 255,
  4437. "_color": {
  4438. "__type__": "cc.Color",
  4439. "r": 255,
  4440. "g": 255,
  4441. "b": 255,
  4442. "a": 255
  4443. },
  4444. "_contentSize": {
  4445. "__type__": "cc.Size",
  4446. "width": 162,
  4447. "height": 160
  4448. },
  4449. "_anchorPoint": {
  4450. "__type__": "cc.Vec2",
  4451. "x": 0.5,
  4452. "y": 0.5
  4453. },
  4454. "_trs": {
  4455. "__type__": "TypedArray",
  4456. "ctor": "Float64Array",
  4457. "array": [
  4458. 0,
  4459. 0,
  4460. 0,
  4461. 0,
  4462. 0,
  4463. 0,
  4464. 1,
  4465. 1,
  4466. 1,
  4467. 1
  4468. ]
  4469. },
  4470. "_eulerAngles": {
  4471. "__type__": "cc.Vec3",
  4472. "x": 0,
  4473. "y": 0,
  4474. "z": 0
  4475. },
  4476. "_skewX": 0,
  4477. "_skewY": 0,
  4478. "_is3DNode": false,
  4479. "_groupIndex": 0,
  4480. "groupIndex": 0,
  4481. "_id": ""
  4482. },
  4483. {
  4484. "__type__": "cc.Sprite",
  4485. "_name": "",
  4486. "_objFlags": 0,
  4487. "node": {
  4488. "__id__": 115
  4489. },
  4490. "_enabled": true,
  4491. "_materials": [
  4492. {
  4493. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4494. }
  4495. ],
  4496. "_srcBlendFactor": 770,
  4497. "_dstBlendFactor": 771,
  4498. "_spriteFrame": {
  4499. "__uuid__": "6d9d4bf6-e66b-40aa-8e1b-609c88010983"
  4500. },
  4501. "_type": 1,
  4502. "_sizeMode": 0,
  4503. "_fillType": 0,
  4504. "_fillCenter": {
  4505. "__type__": "cc.Vec2",
  4506. "x": 0,
  4507. "y": 0
  4508. },
  4509. "_fillStart": 0,
  4510. "_fillRange": 0,
  4511. "_isTrimmedMode": true,
  4512. "_atlas": null,
  4513. "_id": ""
  4514. },
  4515. {
  4516. "__type__": "cc.PrefabInfo",
  4517. "root": {
  4518. "__id__": 1
  4519. },
  4520. "asset": {
  4521. "__id__": 0
  4522. },
  4523. "fileId": "8cTwzc6uJIPKKfKd/Ksz6j",
  4524. "sync": false
  4525. },
  4526. {
  4527. "__type__": "cc.Node",
  4528. "_name": "item",
  4529. "_objFlags": 0,
  4530. "_parent": {
  4531. "__id__": 114
  4532. },
  4533. "_children": [
  4534. {
  4535. "__id__": 119
  4536. }
  4537. ],
  4538. "_active": true,
  4539. "_components": [
  4540. {
  4541. "__id__": 123
  4542. }
  4543. ],
  4544. "_prefab": {
  4545. "__id__": 124
  4546. },
  4547. "_opacity": 255,
  4548. "_color": {
  4549. "__type__": "cc.Color",
  4550. "r": 255,
  4551. "g": 255,
  4552. "b": 255,
  4553. "a": 255
  4554. },
  4555. "_contentSize": {
  4556. "__type__": "cc.Size",
  4557. "width": 74,
  4558. "height": 74
  4559. },
  4560. "_anchorPoint": {
  4561. "__type__": "cc.Vec2",
  4562. "x": 0.5,
  4563. "y": 0.5
  4564. },
  4565. "_trs": {
  4566. "__type__": "TypedArray",
  4567. "ctor": "Float64Array",
  4568. "array": [
  4569. 0,
  4570. 22.421,
  4571. 0,
  4572. 0,
  4573. 0,
  4574. 0,
  4575. 1,
  4576. 1,
  4577. 1,
  4578. 1
  4579. ]
  4580. },
  4581. "_eulerAngles": {
  4582. "__type__": "cc.Vec3",
  4583. "x": 0,
  4584. "y": 0,
  4585. "z": 0
  4586. },
  4587. "_skewX": 0,
  4588. "_skewY": 0,
  4589. "_is3DNode": false,
  4590. "_groupIndex": 0,
  4591. "groupIndex": 0,
  4592. "_id": ""
  4593. },
  4594. {
  4595. "__type__": "cc.Node",
  4596. "_name": "num",
  4597. "_objFlags": 0,
  4598. "_parent": {
  4599. "__id__": 118
  4600. },
  4601. "_children": [],
  4602. "_active": true,
  4603. "_components": [
  4604. {
  4605. "__id__": 120
  4606. },
  4607. {
  4608. "__id__": 121
  4609. }
  4610. ],
  4611. "_prefab": {
  4612. "__id__": 122
  4613. },
  4614. "_opacity": 255,
  4615. "_color": {
  4616. "__type__": "cc.Color",
  4617. "r": 255,
  4618. "g": 255,
  4619. "b": 255,
  4620. "a": 255
  4621. },
  4622. "_contentSize": {
  4623. "__type__": "cc.Size",
  4624. "width": 30.7,
  4625. "height": 34.239999999999995
  4626. },
  4627. "_anchorPoint": {
  4628. "__type__": "cc.Vec2",
  4629. "x": 0.5,
  4630. "y": 0.5
  4631. },
  4632. "_trs": {
  4633. "__type__": "TypedArray",
  4634. "ctor": "Float64Array",
  4635. "array": [
  4636. 31.485,
  4637. -20.513,
  4638. 0,
  4639. 0,
  4640. 0,
  4641. 0,
  4642. 1,
  4643. 1,
  4644. 1,
  4645. 1
  4646. ]
  4647. },
  4648. "_eulerAngles": {
  4649. "__type__": "cc.Vec3",
  4650. "x": 0,
  4651. "y": 0,
  4652. "z": 0
  4653. },
  4654. "_skewX": 0,
  4655. "_skewY": 0,
  4656. "_is3DNode": false,
  4657. "_groupIndex": 0,
  4658. "groupIndex": 0,
  4659. "_id": ""
  4660. },
  4661. {
  4662. "__type__": "cc.Label",
  4663. "_name": "",
  4664. "_objFlags": 0,
  4665. "node": {
  4666. "__id__": 119
  4667. },
  4668. "_enabled": true,
  4669. "_materials": [
  4670. {
  4671. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4672. }
  4673. ],
  4674. "_srcBlendFactor": 770,
  4675. "_dstBlendFactor": 771,
  4676. "_string": "x1",
  4677. "_N$string": "x1",
  4678. "_fontSize": 24,
  4679. "_lineHeight": 24,
  4680. "_enableWrapText": true,
  4681. "_N$file": null,
  4682. "_isSystemFontUsed": true,
  4683. "_spacingX": 0,
  4684. "_batchAsBitmap": false,
  4685. "_styleFlags": 1,
  4686. "_underlineHeight": 0,
  4687. "_N$horizontalAlign": 1,
  4688. "_N$verticalAlign": 1,
  4689. "_N$fontFamily": "Arial",
  4690. "_N$overflow": 0,
  4691. "_N$cacheMode": 1,
  4692. "_id": ""
  4693. },
  4694. {
  4695. "__type__": "cc.LabelOutline",
  4696. "_name": "",
  4697. "_objFlags": 0,
  4698. "node": {
  4699. "__id__": 119
  4700. },
  4701. "_enabled": true,
  4702. "_color": {
  4703. "__type__": "cc.Color",
  4704. "r": 113,
  4705. "g": 15,
  4706. "b": 0,
  4707. "a": 255
  4708. },
  4709. "_width": 2,
  4710. "_id": ""
  4711. },
  4712. {
  4713. "__type__": "cc.PrefabInfo",
  4714. "root": {
  4715. "__id__": 1
  4716. },
  4717. "asset": {
  4718. "__id__": 0
  4719. },
  4720. "fileId": "9bfBcLJ5JJW754Bg0YSwyb",
  4721. "sync": false
  4722. },
  4723. {
  4724. "__type__": "cc.Sprite",
  4725. "_name": "",
  4726. "_objFlags": 0,
  4727. "node": {
  4728. "__id__": 118
  4729. },
  4730. "_enabled": true,
  4731. "_materials": [
  4732. {
  4733. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4734. }
  4735. ],
  4736. "_srcBlendFactor": 770,
  4737. "_dstBlendFactor": 771,
  4738. "_spriteFrame": {
  4739. "__uuid__": "07e00e00-877d-4bcf-8480-64dbc3d5366d"
  4740. },
  4741. "_type": 0,
  4742. "_sizeMode": 0,
  4743. "_fillType": 0,
  4744. "_fillCenter": {
  4745. "__type__": "cc.Vec2",
  4746. "x": 0,
  4747. "y": 0
  4748. },
  4749. "_fillStart": 0,
  4750. "_fillRange": 0,
  4751. "_isTrimmedMode": true,
  4752. "_atlas": null,
  4753. "_id": ""
  4754. },
  4755. {
  4756. "__type__": "cc.PrefabInfo",
  4757. "root": {
  4758. "__id__": 1
  4759. },
  4760. "asset": {
  4761. "__id__": 0
  4762. },
  4763. "fileId": "2fwXEvkMFIC6fnDuqwooSS",
  4764. "sync": false
  4765. },
  4766. {
  4767. "__type__": "cc.Node",
  4768. "_name": "bottom",
  4769. "_objFlags": 0,
  4770. "_parent": {
  4771. "__id__": 114
  4772. },
  4773. "_children": [
  4774. {
  4775. "__id__": 126
  4776. },
  4777. {
  4778. "__id__": 129
  4779. }
  4780. ],
  4781. "_active": true,
  4782. "_components": [
  4783. {
  4784. "__id__": 132
  4785. }
  4786. ],
  4787. "_prefab": {
  4788. "__id__": 133
  4789. },
  4790. "_opacity": 255,
  4791. "_color": {
  4792. "__type__": "cc.Color",
  4793. "r": 255,
  4794. "g": 255,
  4795. "b": 255,
  4796. "a": 255
  4797. },
  4798. "_contentSize": {
  4799. "__type__": "cc.Size",
  4800. "width": 162,
  4801. "height": 50
  4802. },
  4803. "_anchorPoint": {
  4804. "__type__": "cc.Vec2",
  4805. "x": 0.5,
  4806. "y": 0.5
  4807. },
  4808. "_trs": {
  4809. "__type__": "TypedArray",
  4810. "ctor": "Float64Array",
  4811. "array": [
  4812. 0,
  4813. -55,
  4814. 0,
  4815. 0,
  4816. 0,
  4817. 0,
  4818. 1,
  4819. 1,
  4820. 1,
  4821. 1
  4822. ]
  4823. },
  4824. "_eulerAngles": {
  4825. "__type__": "cc.Vec3",
  4826. "x": 0,
  4827. "y": 0,
  4828. "z": 0
  4829. },
  4830. "_skewX": 0,
  4831. "_skewY": 0,
  4832. "_is3DNode": false,
  4833. "_groupIndex": 0,
  4834. "groupIndex": 0,
  4835. "_id": ""
  4836. },
  4837. {
  4838. "__type__": "cc.Node",
  4839. "_name": "label",
  4840. "_objFlags": 0,
  4841. "_parent": {
  4842. "__id__": 125
  4843. },
  4844. "_children": [],
  4845. "_active": true,
  4846. "_components": [
  4847. {
  4848. "__id__": 127
  4849. }
  4850. ],
  4851. "_prefab": {
  4852. "__id__": 128
  4853. },
  4854. "_opacity": 255,
  4855. "_color": {
  4856. "__type__": "cc.Color",
  4857. "r": 144,
  4858. "g": 85,
  4859. "b": 53,
  4860. "a": 255
  4861. },
  4862. "_contentSize": {
  4863. "__type__": "cc.Size",
  4864. "width": 84,
  4865. "height": 35.28
  4866. },
  4867. "_anchorPoint": {
  4868. "__type__": "cc.Vec2",
  4869. "x": 0.5,
  4870. "y": 0.5
  4871. },
  4872. "_trs": {
  4873. "__type__": "TypedArray",
  4874. "ctor": "Float64Array",
  4875. "array": [
  4876. 0,
  4877. 0,
  4878. 0,
  4879. 0,
  4880. 0,
  4881. 0,
  4882. 1,
  4883. 1,
  4884. 1,
  4885. 1
  4886. ]
  4887. },
  4888. "_eulerAngles": {
  4889. "__type__": "cc.Vec3",
  4890. "x": 0,
  4891. "y": 0,
  4892. "z": 0
  4893. },
  4894. "_skewX": 0,
  4895. "_skewY": 0,
  4896. "_is3DNode": false,
  4897. "_groupIndex": 0,
  4898. "groupIndex": 0,
  4899. "_id": ""
  4900. },
  4901. {
  4902. "__type__": "cc.Label",
  4903. "_name": "",
  4904. "_objFlags": 0,
  4905. "node": {
  4906. "__id__": 126
  4907. },
  4908. "_enabled": true,
  4909. "_materials": [
  4910. {
  4911. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4912. }
  4913. ],
  4914. "_srcBlendFactor": 770,
  4915. "_dstBlendFactor": 771,
  4916. "_string": "第四天",
  4917. "_N$string": "第四天",
  4918. "_fontSize": 28,
  4919. "_lineHeight": 28,
  4920. "_enableWrapText": true,
  4921. "_N$file": null,
  4922. "_isSystemFontUsed": true,
  4923. "_spacingX": 0,
  4924. "_batchAsBitmap": false,
  4925. "_styleFlags": 1,
  4926. "_underlineHeight": 0,
  4927. "_N$horizontalAlign": 1,
  4928. "_N$verticalAlign": 1,
  4929. "_N$fontFamily": "Arial",
  4930. "_N$overflow": 0,
  4931. "_N$cacheMode": 1,
  4932. "_id": ""
  4933. },
  4934. {
  4935. "__type__": "cc.PrefabInfo",
  4936. "root": {
  4937. "__id__": 1
  4938. },
  4939. "asset": {
  4940. "__id__": 0
  4941. },
  4942. "fileId": "9aRniRQjFG+5Vt+NoH0uiM",
  4943. "sync": false
  4944. },
  4945. {
  4946. "__type__": "cc.Node",
  4947. "_name": "videoIcon",
  4948. "_objFlags": 0,
  4949. "_parent": {
  4950. "__id__": 125
  4951. },
  4952. "_children": [],
  4953. "_active": false,
  4954. "_components": [
  4955. {
  4956. "__id__": 130
  4957. }
  4958. ],
  4959. "_prefab": {
  4960. "__id__": 131
  4961. },
  4962. "_opacity": 255,
  4963. "_color": {
  4964. "__type__": "cc.Color",
  4965. "r": 255,
  4966. "g": 255,
  4967. "b": 255,
  4968. "a": 255
  4969. },
  4970. "_contentSize": {
  4971. "__type__": "cc.Size",
  4972. "width": 56,
  4973. "height": 43
  4974. },
  4975. "_anchorPoint": {
  4976. "__type__": "cc.Vec2",
  4977. "x": 0.5,
  4978. "y": 0.5
  4979. },
  4980. "_trs": {
  4981. "__type__": "TypedArray",
  4982. "ctor": "Float64Array",
  4983. "array": [
  4984. 40,
  4985. 0,
  4986. 0,
  4987. 0,
  4988. 0,
  4989. 0,
  4990. 1,
  4991. 0.5,
  4992. 0.5,
  4993. 1
  4994. ]
  4995. },
  4996. "_eulerAngles": {
  4997. "__type__": "cc.Vec3",
  4998. "x": 0,
  4999. "y": 0,
  5000. "z": 0
  5001. },
  5002. "_skewX": 0,
  5003. "_skewY": 0,
  5004. "_is3DNode": false,
  5005. "_groupIndex": 0,
  5006. "groupIndex": 0,
  5007. "_id": ""
  5008. },
  5009. {
  5010. "__type__": "cc.Sprite",
  5011. "_name": "",
  5012. "_objFlags": 0,
  5013. "node": {
  5014. "__id__": 129
  5015. },
  5016. "_enabled": true,
  5017. "_materials": [
  5018. {
  5019. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5020. }
  5021. ],
  5022. "_srcBlendFactor": 770,
  5023. "_dstBlendFactor": 771,
  5024. "_spriteFrame": {
  5025. "__uuid__": "a15d6951-f9a3-45b7-b099-8116c6a78eea"
  5026. },
  5027. "_type": 0,
  5028. "_sizeMode": 1,
  5029. "_fillType": 0,
  5030. "_fillCenter": {
  5031. "__type__": "cc.Vec2",
  5032. "x": 0,
  5033. "y": 0
  5034. },
  5035. "_fillStart": 0,
  5036. "_fillRange": 0,
  5037. "_isTrimmedMode": true,
  5038. "_atlas": null,
  5039. "_id": ""
  5040. },
  5041. {
  5042. "__type__": "cc.PrefabInfo",
  5043. "root": {
  5044. "__id__": 1
  5045. },
  5046. "asset": {
  5047. "__id__": 0
  5048. },
  5049. "fileId": "d85jhwoQVHBp7yxZnl6yHx",
  5050. "sync": false
  5051. },
  5052. {
  5053. "__type__": "cc.Sprite",
  5054. "_name": "",
  5055. "_objFlags": 0,
  5056. "node": {
  5057. "__id__": 125
  5058. },
  5059. "_enabled": true,
  5060. "_materials": [
  5061. {
  5062. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5063. }
  5064. ],
  5065. "_srcBlendFactor": 770,
  5066. "_dstBlendFactor": 771,
  5067. "_spriteFrame": {
  5068. "__uuid__": "80d1c3b0-9a53-434a-ae8e-fc3c77e6e4d0"
  5069. },
  5070. "_type": 1,
  5071. "_sizeMode": 0,
  5072. "_fillType": 0,
  5073. "_fillCenter": {
  5074. "__type__": "cc.Vec2",
  5075. "x": 0,
  5076. "y": 0
  5077. },
  5078. "_fillStart": 0,
  5079. "_fillRange": 0,
  5080. "_isTrimmedMode": true,
  5081. "_atlas": null,
  5082. "_id": ""
  5083. },
  5084. {
  5085. "__type__": "cc.PrefabInfo",
  5086. "root": {
  5087. "__id__": 1
  5088. },
  5089. "asset": {
  5090. "__id__": 0
  5091. },
  5092. "fileId": "e2vovWFq1EIaJGoSUsf06t",
  5093. "sync": false
  5094. },
  5095. {
  5096. "__type__": "cc.Node",
  5097. "_name": "mask",
  5098. "_objFlags": 0,
  5099. "_parent": {
  5100. "__id__": 114
  5101. },
  5102. "_children": [
  5103. {
  5104. "__id__": 135
  5105. },
  5106. {
  5107. "__id__": 138
  5108. }
  5109. ],
  5110. "_active": false,
  5111. "_components": [
  5112. {
  5113. "__id__": 141
  5114. }
  5115. ],
  5116. "_prefab": {
  5117. "__id__": 142
  5118. },
  5119. "_opacity": 255,
  5120. "_color": {
  5121. "__type__": "cc.Color",
  5122. "r": 255,
  5123. "g": 255,
  5124. "b": 255,
  5125. "a": 255
  5126. },
  5127. "_contentSize": {
  5128. "__type__": "cc.Size",
  5129. "width": 162,
  5130. "height": 160
  5131. },
  5132. "_anchorPoint": {
  5133. "__type__": "cc.Vec2",
  5134. "x": 0.5,
  5135. "y": 0.5
  5136. },
  5137. "_trs": {
  5138. "__type__": "TypedArray",
  5139. "ctor": "Float64Array",
  5140. "array": [
  5141. 0,
  5142. 0,
  5143. 0,
  5144. 0,
  5145. 0,
  5146. 0,
  5147. 1,
  5148. 1,
  5149. 1,
  5150. 1
  5151. ]
  5152. },
  5153. "_eulerAngles": {
  5154. "__type__": "cc.Vec3",
  5155. "x": 0,
  5156. "y": 0,
  5157. "z": 0
  5158. },
  5159. "_skewX": 0,
  5160. "_skewY": 0,
  5161. "_is3DNode": false,
  5162. "_groupIndex": 0,
  5163. "groupIndex": 0,
  5164. "_id": ""
  5165. },
  5166. {
  5167. "__type__": "cc.Node",
  5168. "_name": "right",
  5169. "_objFlags": 0,
  5170. "_parent": {
  5171. "__id__": 134
  5172. },
  5173. "_children": [],
  5174. "_active": true,
  5175. "_components": [
  5176. {
  5177. "__id__": 136
  5178. }
  5179. ],
  5180. "_prefab": {
  5181. "__id__": 137
  5182. },
  5183. "_opacity": 255,
  5184. "_color": {
  5185. "__type__": "cc.Color",
  5186. "r": 255,
  5187. "g": 255,
  5188. "b": 255,
  5189. "a": 255
  5190. },
  5191. "_contentSize": {
  5192. "__type__": "cc.Size",
  5193. "width": 54,
  5194. "height": 41
  5195. },
  5196. "_anchorPoint": {
  5197. "__type__": "cc.Vec2",
  5198. "x": 0.5,
  5199. "y": 0.5
  5200. },
  5201. "_trs": {
  5202. "__type__": "TypedArray",
  5203. "ctor": "Float64Array",
  5204. "array": [
  5205. 0,
  5206. 28.288,
  5207. 0,
  5208. 0,
  5209. 0,
  5210. 0,
  5211. 1,
  5212. 1,
  5213. 1,
  5214. 1
  5215. ]
  5216. },
  5217. "_eulerAngles": {
  5218. "__type__": "cc.Vec3",
  5219. "x": 0,
  5220. "y": 0,
  5221. "z": 0
  5222. },
  5223. "_skewX": 0,
  5224. "_skewY": 0,
  5225. "_is3DNode": false,
  5226. "_groupIndex": 0,
  5227. "groupIndex": 0,
  5228. "_id": ""
  5229. },
  5230. {
  5231. "__type__": "cc.Sprite",
  5232. "_name": "",
  5233. "_objFlags": 0,
  5234. "node": {
  5235. "__id__": 135
  5236. },
  5237. "_enabled": true,
  5238. "_materials": [
  5239. {
  5240. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5241. }
  5242. ],
  5243. "_srcBlendFactor": 770,
  5244. "_dstBlendFactor": 771,
  5245. "_spriteFrame": {
  5246. "__uuid__": "b499d51c-984b-4b39-a014-4b1acc984027"
  5247. },
  5248. "_type": 0,
  5249. "_sizeMode": 1,
  5250. "_fillType": 0,
  5251. "_fillCenter": {
  5252. "__type__": "cc.Vec2",
  5253. "x": 0,
  5254. "y": 0
  5255. },
  5256. "_fillStart": 0,
  5257. "_fillRange": 0,
  5258. "_isTrimmedMode": true,
  5259. "_atlas": null,
  5260. "_id": ""
  5261. },
  5262. {
  5263. "__type__": "cc.PrefabInfo",
  5264. "root": {
  5265. "__id__": 1
  5266. },
  5267. "asset": {
  5268. "__id__": 0
  5269. },
  5270. "fileId": "65HXvmpnRHaZjsftzv5VzO",
  5271. "sync": false
  5272. },
  5273. {
  5274. "__type__": "cc.Node",
  5275. "_name": "label",
  5276. "_objFlags": 0,
  5277. "_parent": {
  5278. "__id__": 134
  5279. },
  5280. "_children": [],
  5281. "_active": true,
  5282. "_components": [
  5283. {
  5284. "__id__": 139
  5285. }
  5286. ],
  5287. "_prefab": {
  5288. "__id__": 140
  5289. },
  5290. "_opacity": 255,
  5291. "_color": {
  5292. "__type__": "cc.Color",
  5293. "r": 255,
  5294. "g": 255,
  5295. "b": 255,
  5296. "a": 255
  5297. },
  5298. "_contentSize": {
  5299. "__type__": "cc.Size",
  5300. "width": 84,
  5301. "height": 35.28
  5302. },
  5303. "_anchorPoint": {
  5304. "__type__": "cc.Vec2",
  5305. "x": 0.5,
  5306. "y": 0.5
  5307. },
  5308. "_trs": {
  5309. "__type__": "TypedArray",
  5310. "ctor": "Float64Array",
  5311. "array": [
  5312. 0,
  5313. -30.646,
  5314. 0,
  5315. 0,
  5316. 0,
  5317. 0,
  5318. 1,
  5319. 1,
  5320. 1,
  5321. 1
  5322. ]
  5323. },
  5324. "_eulerAngles": {
  5325. "__type__": "cc.Vec3",
  5326. "x": 0,
  5327. "y": 0,
  5328. "z": 0
  5329. },
  5330. "_skewX": 0,
  5331. "_skewY": 0,
  5332. "_is3DNode": false,
  5333. "_groupIndex": 0,
  5334. "groupIndex": 0,
  5335. "_id": ""
  5336. },
  5337. {
  5338. "__type__": "cc.Label",
  5339. "_name": "",
  5340. "_objFlags": 0,
  5341. "node": {
  5342. "__id__": 138
  5343. },
  5344. "_enabled": true,
  5345. "_materials": [
  5346. {
  5347. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5348. }
  5349. ],
  5350. "_srcBlendFactor": 770,
  5351. "_dstBlendFactor": 771,
  5352. "_string": "已领取",
  5353. "_N$string": "已领取",
  5354. "_fontSize": 28,
  5355. "_lineHeight": 28,
  5356. "_enableWrapText": true,
  5357. "_N$file": null,
  5358. "_isSystemFontUsed": true,
  5359. "_spacingX": 0,
  5360. "_batchAsBitmap": false,
  5361. "_styleFlags": 1,
  5362. "_underlineHeight": 0,
  5363. "_N$horizontalAlign": 1,
  5364. "_N$verticalAlign": 1,
  5365. "_N$fontFamily": "Arial",
  5366. "_N$overflow": 0,
  5367. "_N$cacheMode": 1,
  5368. "_id": ""
  5369. },
  5370. {
  5371. "__type__": "cc.PrefabInfo",
  5372. "root": {
  5373. "__id__": 1
  5374. },
  5375. "asset": {
  5376. "__id__": 0
  5377. },
  5378. "fileId": "f1DF27bGFGpomJnOp/KYn9",
  5379. "sync": false
  5380. },
  5381. {
  5382. "__type__": "cc.Sprite",
  5383. "_name": "",
  5384. "_objFlags": 0,
  5385. "node": {
  5386. "__id__": 134
  5387. },
  5388. "_enabled": true,
  5389. "_materials": [
  5390. {
  5391. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5392. }
  5393. ],
  5394. "_srcBlendFactor": 770,
  5395. "_dstBlendFactor": 771,
  5396. "_spriteFrame": {
  5397. "__uuid__": "6c65fd34-97dc-4451-960d-cf4a253fa4b7"
  5398. },
  5399. "_type": 1,
  5400. "_sizeMode": 0,
  5401. "_fillType": 0,
  5402. "_fillCenter": {
  5403. "__type__": "cc.Vec2",
  5404. "x": 0,
  5405. "y": 0
  5406. },
  5407. "_fillStart": 0,
  5408. "_fillRange": 0,
  5409. "_isTrimmedMode": true,
  5410. "_atlas": null,
  5411. "_id": ""
  5412. },
  5413. {
  5414. "__type__": "cc.PrefabInfo",
  5415. "root": {
  5416. "__id__": 1
  5417. },
  5418. "asset": {
  5419. "__id__": 0
  5420. },
  5421. "fileId": "92xdKDGOVOdpwxoxycfxi6",
  5422. "sync": false
  5423. },
  5424. {
  5425. "__type__": "cc.Sprite",
  5426. "_name": "",
  5427. "_objFlags": 0,
  5428. "node": {
  5429. "__id__": 114
  5430. },
  5431. "_enabled": true,
  5432. "_materials": [
  5433. {
  5434. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5435. }
  5436. ],
  5437. "_srcBlendFactor": 770,
  5438. "_dstBlendFactor": 771,
  5439. "_spriteFrame": {
  5440. "__uuid__": "66d456b9-18f2-4209-b61d-67b9997479d9"
  5441. },
  5442. "_type": 1,
  5443. "_sizeMode": 0,
  5444. "_fillType": 0,
  5445. "_fillCenter": {
  5446. "__type__": "cc.Vec2",
  5447. "x": 0,
  5448. "y": 0
  5449. },
  5450. "_fillStart": 0,
  5451. "_fillRange": 0,
  5452. "_isTrimmedMode": true,
  5453. "_atlas": null,
  5454. "_id": ""
  5455. },
  5456. {
  5457. "__type__": "cc.Button",
  5458. "_name": "",
  5459. "_objFlags": 0,
  5460. "node": {
  5461. "__id__": 114
  5462. },
  5463. "_enabled": true,
  5464. "_normalMaterial": null,
  5465. "_grayMaterial": null,
  5466. "duration": 0.1,
  5467. "zoomScale": 1.2,
  5468. "clickEvents": [],
  5469. "_N$interactable": true,
  5470. "_N$enableAutoGrayEffect": false,
  5471. "_N$transition": 0,
  5472. "transition": 0,
  5473. "_N$normalColor": {
  5474. "__type__": "cc.Color",
  5475. "r": 255,
  5476. "g": 255,
  5477. "b": 255,
  5478. "a": 255
  5479. },
  5480. "_N$pressedColor": {
  5481. "__type__": "cc.Color",
  5482. "r": 211,
  5483. "g": 211,
  5484. "b": 211,
  5485. "a": 255
  5486. },
  5487. "pressedColor": {
  5488. "__type__": "cc.Color",
  5489. "r": 211,
  5490. "g": 211,
  5491. "b": 211,
  5492. "a": 255
  5493. },
  5494. "_N$hoverColor": {
  5495. "__type__": "cc.Color",
  5496. "r": 255,
  5497. "g": 255,
  5498. "b": 255,
  5499. "a": 255
  5500. },
  5501. "hoverColor": {
  5502. "__type__": "cc.Color",
  5503. "r": 255,
  5504. "g": 255,
  5505. "b": 255,
  5506. "a": 255
  5507. },
  5508. "_N$disabledColor": {
  5509. "__type__": "cc.Color",
  5510. "r": 124,
  5511. "g": 124,
  5512. "b": 124,
  5513. "a": 255
  5514. },
  5515. "_N$normalSprite": null,
  5516. "_N$pressedSprite": null,
  5517. "pressedSprite": null,
  5518. "_N$hoverSprite": null,
  5519. "hoverSprite": null,
  5520. "_N$disabledSprite": null,
  5521. "_N$target": null,
  5522. "_id": ""
  5523. },
  5524. {
  5525. "__type__": "cc.PrefabInfo",
  5526. "root": {
  5527. "__id__": 1
  5528. },
  5529. "asset": {
  5530. "__id__": 0
  5531. },
  5532. "fileId": "9asjuCwe9FIKVuxTX3sElZ",
  5533. "sync": false
  5534. },
  5535. {
  5536. "__type__": "cc.Node",
  5537. "_name": "five",
  5538. "_objFlags": 0,
  5539. "_parent": {
  5540. "__id__": 17
  5541. },
  5542. "_children": [
  5543. {
  5544. "__id__": 147
  5545. },
  5546. {
  5547. "__id__": 150
  5548. },
  5549. {
  5550. "__id__": 157
  5551. },
  5552. {
  5553. "__id__": 166
  5554. }
  5555. ],
  5556. "_active": true,
  5557. "_components": [
  5558. {
  5559. "__id__": 175
  5560. },
  5561. {
  5562. "__id__": 176
  5563. }
  5564. ],
  5565. "_prefab": {
  5566. "__id__": 177
  5567. },
  5568. "_opacity": 255,
  5569. "_color": {
  5570. "__type__": "cc.Color",
  5571. "r": 255,
  5572. "g": 255,
  5573. "b": 255,
  5574. "a": 255
  5575. },
  5576. "_contentSize": {
  5577. "__type__": "cc.Size",
  5578. "width": 162,
  5579. "height": 160
  5580. },
  5581. "_anchorPoint": {
  5582. "__type__": "cc.Vec2",
  5583. "x": 0.5,
  5584. "y": 0.5
  5585. },
  5586. "_trs": {
  5587. "__type__": "TypedArray",
  5588. "ctor": "Float64Array",
  5589. "array": [
  5590. 0,
  5591. 0,
  5592. 0,
  5593. 0,
  5594. 0,
  5595. 0,
  5596. 1,
  5597. 1,
  5598. 1,
  5599. 1
  5600. ]
  5601. },
  5602. "_eulerAngles": {
  5603. "__type__": "cc.Vec3",
  5604. "x": 0,
  5605. "y": 0,
  5606. "z": 0
  5607. },
  5608. "_skewX": 0,
  5609. "_skewY": 0,
  5610. "_is3DNode": false,
  5611. "_groupIndex": 0,
  5612. "groupIndex": 0,
  5613. "_id": ""
  5614. },
  5615. {
  5616. "__type__": "cc.Node",
  5617. "_name": "di",
  5618. "_objFlags": 0,
  5619. "_parent": {
  5620. "__id__": 146
  5621. },
  5622. "_children": [],
  5623. "_active": false,
  5624. "_components": [
  5625. {
  5626. "__id__": 148
  5627. }
  5628. ],
  5629. "_prefab": {
  5630. "__id__": 149
  5631. },
  5632. "_opacity": 255,
  5633. "_color": {
  5634. "__type__": "cc.Color",
  5635. "r": 255,
  5636. "g": 255,
  5637. "b": 255,
  5638. "a": 255
  5639. },
  5640. "_contentSize": {
  5641. "__type__": "cc.Size",
  5642. "width": 162,
  5643. "height": 160
  5644. },
  5645. "_anchorPoint": {
  5646. "__type__": "cc.Vec2",
  5647. "x": 0.5,
  5648. "y": 0.5
  5649. },
  5650. "_trs": {
  5651. "__type__": "TypedArray",
  5652. "ctor": "Float64Array",
  5653. "array": [
  5654. 0,
  5655. 0,
  5656. 0,
  5657. 0,
  5658. 0,
  5659. 0,
  5660. 1,
  5661. 1,
  5662. 1,
  5663. 1
  5664. ]
  5665. },
  5666. "_eulerAngles": {
  5667. "__type__": "cc.Vec3",
  5668. "x": 0,
  5669. "y": 0,
  5670. "z": 0
  5671. },
  5672. "_skewX": 0,
  5673. "_skewY": 0,
  5674. "_is3DNode": false,
  5675. "_groupIndex": 0,
  5676. "groupIndex": 0,
  5677. "_id": ""
  5678. },
  5679. {
  5680. "__type__": "cc.Sprite",
  5681. "_name": "",
  5682. "_objFlags": 0,
  5683. "node": {
  5684. "__id__": 147
  5685. },
  5686. "_enabled": true,
  5687. "_materials": [
  5688. {
  5689. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5690. }
  5691. ],
  5692. "_srcBlendFactor": 770,
  5693. "_dstBlendFactor": 771,
  5694. "_spriteFrame": {
  5695. "__uuid__": "6d9d4bf6-e66b-40aa-8e1b-609c88010983"
  5696. },
  5697. "_type": 1,
  5698. "_sizeMode": 0,
  5699. "_fillType": 0,
  5700. "_fillCenter": {
  5701. "__type__": "cc.Vec2",
  5702. "x": 0,
  5703. "y": 0
  5704. },
  5705. "_fillStart": 0,
  5706. "_fillRange": 0,
  5707. "_isTrimmedMode": true,
  5708. "_atlas": null,
  5709. "_id": ""
  5710. },
  5711. {
  5712. "__type__": "cc.PrefabInfo",
  5713. "root": {
  5714. "__id__": 1
  5715. },
  5716. "asset": {
  5717. "__id__": 0
  5718. },
  5719. "fileId": "35saPSlBNH66js4ngsZEqQ",
  5720. "sync": false
  5721. },
  5722. {
  5723. "__type__": "cc.Node",
  5724. "_name": "item",
  5725. "_objFlags": 0,
  5726. "_parent": {
  5727. "__id__": 146
  5728. },
  5729. "_children": [
  5730. {
  5731. "__id__": 151
  5732. }
  5733. ],
  5734. "_active": true,
  5735. "_components": [
  5736. {
  5737. "__id__": 155
  5738. }
  5739. ],
  5740. "_prefab": {
  5741. "__id__": 156
  5742. },
  5743. "_opacity": 255,
  5744. "_color": {
  5745. "__type__": "cc.Color",
  5746. "r": 255,
  5747. "g": 255,
  5748. "b": 255,
  5749. "a": 255
  5750. },
  5751. "_contentSize": {
  5752. "__type__": "cc.Size",
  5753. "width": 74,
  5754. "height": 74
  5755. },
  5756. "_anchorPoint": {
  5757. "__type__": "cc.Vec2",
  5758. "x": 0.5,
  5759. "y": 0.5
  5760. },
  5761. "_trs": {
  5762. "__type__": "TypedArray",
  5763. "ctor": "Float64Array",
  5764. "array": [
  5765. 0,
  5766. 22.421,
  5767. 0,
  5768. 0,
  5769. 0,
  5770. 0,
  5771. 1,
  5772. 1,
  5773. 1,
  5774. 1
  5775. ]
  5776. },
  5777. "_eulerAngles": {
  5778. "__type__": "cc.Vec3",
  5779. "x": 0,
  5780. "y": 0,
  5781. "z": 0
  5782. },
  5783. "_skewX": 0,
  5784. "_skewY": 0,
  5785. "_is3DNode": false,
  5786. "_groupIndex": 0,
  5787. "groupIndex": 0,
  5788. "_id": ""
  5789. },
  5790. {
  5791. "__type__": "cc.Node",
  5792. "_name": "num",
  5793. "_objFlags": 0,
  5794. "_parent": {
  5795. "__id__": 150
  5796. },
  5797. "_children": [],
  5798. "_active": true,
  5799. "_components": [
  5800. {
  5801. "__id__": 152
  5802. },
  5803. {
  5804. "__id__": 153
  5805. }
  5806. ],
  5807. "_prefab": {
  5808. "__id__": 154
  5809. },
  5810. "_opacity": 255,
  5811. "_color": {
  5812. "__type__": "cc.Color",
  5813. "r": 255,
  5814. "g": 255,
  5815. "b": 255,
  5816. "a": 255
  5817. },
  5818. "_contentSize": {
  5819. "__type__": "cc.Size",
  5820. "width": 57.39,
  5821. "height": 34.239999999999995
  5822. },
  5823. "_anchorPoint": {
  5824. "__type__": "cc.Vec2",
  5825. "x": 0.5,
  5826. "y": 0.5
  5827. },
  5828. "_trs": {
  5829. "__type__": "TypedArray",
  5830. "ctor": "Float64Array",
  5831. "array": [
  5832. 31.485,
  5833. -20.513,
  5834. 0,
  5835. 0,
  5836. 0,
  5837. 0,
  5838. 1,
  5839. 1,
  5840. 1,
  5841. 1
  5842. ]
  5843. },
  5844. "_eulerAngles": {
  5845. "__type__": "cc.Vec3",
  5846. "x": 0,
  5847. "y": 0,
  5848. "z": 0
  5849. },
  5850. "_skewX": 0,
  5851. "_skewY": 0,
  5852. "_is3DNode": false,
  5853. "_groupIndex": 0,
  5854. "groupIndex": 0,
  5855. "_id": ""
  5856. },
  5857. {
  5858. "__type__": "cc.Label",
  5859. "_name": "",
  5860. "_objFlags": 0,
  5861. "node": {
  5862. "__id__": 151
  5863. },
  5864. "_enabled": true,
  5865. "_materials": [
  5866. {
  5867. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5868. }
  5869. ],
  5870. "_srcBlendFactor": 770,
  5871. "_dstBlendFactor": 771,
  5872. "_string": "x300",
  5873. "_N$string": "x300",
  5874. "_fontSize": 24,
  5875. "_lineHeight": 24,
  5876. "_enableWrapText": true,
  5877. "_N$file": null,
  5878. "_isSystemFontUsed": true,
  5879. "_spacingX": 0,
  5880. "_batchAsBitmap": false,
  5881. "_styleFlags": 1,
  5882. "_underlineHeight": 0,
  5883. "_N$horizontalAlign": 1,
  5884. "_N$verticalAlign": 1,
  5885. "_N$fontFamily": "Arial",
  5886. "_N$overflow": 0,
  5887. "_N$cacheMode": 1,
  5888. "_id": ""
  5889. },
  5890. {
  5891. "__type__": "cc.LabelOutline",
  5892. "_name": "",
  5893. "_objFlags": 0,
  5894. "node": {
  5895. "__id__": 151
  5896. },
  5897. "_enabled": true,
  5898. "_color": {
  5899. "__type__": "cc.Color",
  5900. "r": 113,
  5901. "g": 15,
  5902. "b": 0,
  5903. "a": 255
  5904. },
  5905. "_width": 2,
  5906. "_id": ""
  5907. },
  5908. {
  5909. "__type__": "cc.PrefabInfo",
  5910. "root": {
  5911. "__id__": 1
  5912. },
  5913. "asset": {
  5914. "__id__": 0
  5915. },
  5916. "fileId": "af1hwy91hAKIKE9L7iOQzX",
  5917. "sync": false
  5918. },
  5919. {
  5920. "__type__": "cc.Sprite",
  5921. "_name": "",
  5922. "_objFlags": 0,
  5923. "node": {
  5924. "__id__": 150
  5925. },
  5926. "_enabled": true,
  5927. "_materials": [
  5928. {
  5929. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5930. }
  5931. ],
  5932. "_srcBlendFactor": 770,
  5933. "_dstBlendFactor": 771,
  5934. "_spriteFrame": {
  5935. "__uuid__": "f5432709-f14e-4906-b478-344bd9139137"
  5936. },
  5937. "_type": 0,
  5938. "_sizeMode": 1,
  5939. "_fillType": 0,
  5940. "_fillCenter": {
  5941. "__type__": "cc.Vec2",
  5942. "x": 0,
  5943. "y": 0
  5944. },
  5945. "_fillStart": 0,
  5946. "_fillRange": 0,
  5947. "_isTrimmedMode": true,
  5948. "_atlas": null,
  5949. "_id": ""
  5950. },
  5951. {
  5952. "__type__": "cc.PrefabInfo",
  5953. "root": {
  5954. "__id__": 1
  5955. },
  5956. "asset": {
  5957. "__id__": 0
  5958. },
  5959. "fileId": "89PiBaqC1IxY3wy+DC5sv2",
  5960. "sync": false
  5961. },
  5962. {
  5963. "__type__": "cc.Node",
  5964. "_name": "bottom",
  5965. "_objFlags": 0,
  5966. "_parent": {
  5967. "__id__": 146
  5968. },
  5969. "_children": [
  5970. {
  5971. "__id__": 158
  5972. },
  5973. {
  5974. "__id__": 161
  5975. }
  5976. ],
  5977. "_active": true,
  5978. "_components": [
  5979. {
  5980. "__id__": 164
  5981. }
  5982. ],
  5983. "_prefab": {
  5984. "__id__": 165
  5985. },
  5986. "_opacity": 255,
  5987. "_color": {
  5988. "__type__": "cc.Color",
  5989. "r": 255,
  5990. "g": 255,
  5991. "b": 255,
  5992. "a": 255
  5993. },
  5994. "_contentSize": {
  5995. "__type__": "cc.Size",
  5996. "width": 162,
  5997. "height": 50
  5998. },
  5999. "_anchorPoint": {
  6000. "__type__": "cc.Vec2",
  6001. "x": 0.5,
  6002. "y": 0.5
  6003. },
  6004. "_trs": {
  6005. "__type__": "TypedArray",
  6006. "ctor": "Float64Array",
  6007. "array": [
  6008. 0,
  6009. -55,
  6010. 0,
  6011. 0,
  6012. 0,
  6013. 0,
  6014. 1,
  6015. 1,
  6016. 1,
  6017. 1
  6018. ]
  6019. },
  6020. "_eulerAngles": {
  6021. "__type__": "cc.Vec3",
  6022. "x": 0,
  6023. "y": 0,
  6024. "z": 0
  6025. },
  6026. "_skewX": 0,
  6027. "_skewY": 0,
  6028. "_is3DNode": false,
  6029. "_groupIndex": 0,
  6030. "groupIndex": 0,
  6031. "_id": ""
  6032. },
  6033. {
  6034. "__type__": "cc.Node",
  6035. "_name": "label",
  6036. "_objFlags": 0,
  6037. "_parent": {
  6038. "__id__": 157
  6039. },
  6040. "_children": [],
  6041. "_active": true,
  6042. "_components": [
  6043. {
  6044. "__id__": 159
  6045. }
  6046. ],
  6047. "_prefab": {
  6048. "__id__": 160
  6049. },
  6050. "_opacity": 255,
  6051. "_color": {
  6052. "__type__": "cc.Color",
  6053. "r": 144,
  6054. "g": 85,
  6055. "b": 53,
  6056. "a": 255
  6057. },
  6058. "_contentSize": {
  6059. "__type__": "cc.Size",
  6060. "width": 84,
  6061. "height": 35.28
  6062. },
  6063. "_anchorPoint": {
  6064. "__type__": "cc.Vec2",
  6065. "x": 0.5,
  6066. "y": 0.5
  6067. },
  6068. "_trs": {
  6069. "__type__": "TypedArray",
  6070. "ctor": "Float64Array",
  6071. "array": [
  6072. 0,
  6073. 0,
  6074. 0,
  6075. 0,
  6076. 0,
  6077. 0,
  6078. 1,
  6079. 1,
  6080. 1,
  6081. 1
  6082. ]
  6083. },
  6084. "_eulerAngles": {
  6085. "__type__": "cc.Vec3",
  6086. "x": 0,
  6087. "y": 0,
  6088. "z": 0
  6089. },
  6090. "_skewX": 0,
  6091. "_skewY": 0,
  6092. "_is3DNode": false,
  6093. "_groupIndex": 0,
  6094. "groupIndex": 0,
  6095. "_id": ""
  6096. },
  6097. {
  6098. "__type__": "cc.Label",
  6099. "_name": "",
  6100. "_objFlags": 0,
  6101. "node": {
  6102. "__id__": 158
  6103. },
  6104. "_enabled": true,
  6105. "_materials": [
  6106. {
  6107. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6108. }
  6109. ],
  6110. "_srcBlendFactor": 770,
  6111. "_dstBlendFactor": 771,
  6112. "_string": "第五天",
  6113. "_N$string": "第五天",
  6114. "_fontSize": 28,
  6115. "_lineHeight": 28,
  6116. "_enableWrapText": true,
  6117. "_N$file": null,
  6118. "_isSystemFontUsed": true,
  6119. "_spacingX": 0,
  6120. "_batchAsBitmap": false,
  6121. "_styleFlags": 1,
  6122. "_underlineHeight": 0,
  6123. "_N$horizontalAlign": 1,
  6124. "_N$verticalAlign": 1,
  6125. "_N$fontFamily": "Arial",
  6126. "_N$overflow": 0,
  6127. "_N$cacheMode": 1,
  6128. "_id": ""
  6129. },
  6130. {
  6131. "__type__": "cc.PrefabInfo",
  6132. "root": {
  6133. "__id__": 1
  6134. },
  6135. "asset": {
  6136. "__id__": 0
  6137. },
  6138. "fileId": "5bo2L6w4tA2ZCwbJCSHiip",
  6139. "sync": false
  6140. },
  6141. {
  6142. "__type__": "cc.Node",
  6143. "_name": "videoIcon",
  6144. "_objFlags": 0,
  6145. "_parent": {
  6146. "__id__": 157
  6147. },
  6148. "_children": [],
  6149. "_active": false,
  6150. "_components": [
  6151. {
  6152. "__id__": 162
  6153. }
  6154. ],
  6155. "_prefab": {
  6156. "__id__": 163
  6157. },
  6158. "_opacity": 255,
  6159. "_color": {
  6160. "__type__": "cc.Color",
  6161. "r": 255,
  6162. "g": 255,
  6163. "b": 255,
  6164. "a": 255
  6165. },
  6166. "_contentSize": {
  6167. "__type__": "cc.Size",
  6168. "width": 56,
  6169. "height": 43
  6170. },
  6171. "_anchorPoint": {
  6172. "__type__": "cc.Vec2",
  6173. "x": 0.5,
  6174. "y": 0.5
  6175. },
  6176. "_trs": {
  6177. "__type__": "TypedArray",
  6178. "ctor": "Float64Array",
  6179. "array": [
  6180. 40,
  6181. 0,
  6182. 0,
  6183. 0,
  6184. 0,
  6185. 0,
  6186. 1,
  6187. 0.5,
  6188. 0.5,
  6189. 1
  6190. ]
  6191. },
  6192. "_eulerAngles": {
  6193. "__type__": "cc.Vec3",
  6194. "x": 0,
  6195. "y": 0,
  6196. "z": 0
  6197. },
  6198. "_skewX": 0,
  6199. "_skewY": 0,
  6200. "_is3DNode": false,
  6201. "_groupIndex": 0,
  6202. "groupIndex": 0,
  6203. "_id": ""
  6204. },
  6205. {
  6206. "__type__": "cc.Sprite",
  6207. "_name": "",
  6208. "_objFlags": 0,
  6209. "node": {
  6210. "__id__": 161
  6211. },
  6212. "_enabled": true,
  6213. "_materials": [
  6214. {
  6215. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6216. }
  6217. ],
  6218. "_srcBlendFactor": 770,
  6219. "_dstBlendFactor": 771,
  6220. "_spriteFrame": {
  6221. "__uuid__": "a15d6951-f9a3-45b7-b099-8116c6a78eea"
  6222. },
  6223. "_type": 0,
  6224. "_sizeMode": 1,
  6225. "_fillType": 0,
  6226. "_fillCenter": {
  6227. "__type__": "cc.Vec2",
  6228. "x": 0,
  6229. "y": 0
  6230. },
  6231. "_fillStart": 0,
  6232. "_fillRange": 0,
  6233. "_isTrimmedMode": true,
  6234. "_atlas": null,
  6235. "_id": ""
  6236. },
  6237. {
  6238. "__type__": "cc.PrefabInfo",
  6239. "root": {
  6240. "__id__": 1
  6241. },
  6242. "asset": {
  6243. "__id__": 0
  6244. },
  6245. "fileId": "90wR//blZNxJYumGUK+v4C",
  6246. "sync": false
  6247. },
  6248. {
  6249. "__type__": "cc.Sprite",
  6250. "_name": "",
  6251. "_objFlags": 0,
  6252. "node": {
  6253. "__id__": 157
  6254. },
  6255. "_enabled": true,
  6256. "_materials": [
  6257. {
  6258. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6259. }
  6260. ],
  6261. "_srcBlendFactor": 770,
  6262. "_dstBlendFactor": 771,
  6263. "_spriteFrame": {
  6264. "__uuid__": "80d1c3b0-9a53-434a-ae8e-fc3c77e6e4d0"
  6265. },
  6266. "_type": 1,
  6267. "_sizeMode": 0,
  6268. "_fillType": 0,
  6269. "_fillCenter": {
  6270. "__type__": "cc.Vec2",
  6271. "x": 0,
  6272. "y": 0
  6273. },
  6274. "_fillStart": 0,
  6275. "_fillRange": 0,
  6276. "_isTrimmedMode": true,
  6277. "_atlas": null,
  6278. "_id": ""
  6279. },
  6280. {
  6281. "__type__": "cc.PrefabInfo",
  6282. "root": {
  6283. "__id__": 1
  6284. },
  6285. "asset": {
  6286. "__id__": 0
  6287. },
  6288. "fileId": "34QYe6+xxIq73uJJrZUKY9",
  6289. "sync": false
  6290. },
  6291. {
  6292. "__type__": "cc.Node",
  6293. "_name": "mask",
  6294. "_objFlags": 0,
  6295. "_parent": {
  6296. "__id__": 146
  6297. },
  6298. "_children": [
  6299. {
  6300. "__id__": 167
  6301. },
  6302. {
  6303. "__id__": 170
  6304. }
  6305. ],
  6306. "_active": false,
  6307. "_components": [
  6308. {
  6309. "__id__": 173
  6310. }
  6311. ],
  6312. "_prefab": {
  6313. "__id__": 174
  6314. },
  6315. "_opacity": 255,
  6316. "_color": {
  6317. "__type__": "cc.Color",
  6318. "r": 255,
  6319. "g": 255,
  6320. "b": 255,
  6321. "a": 255
  6322. },
  6323. "_contentSize": {
  6324. "__type__": "cc.Size",
  6325. "width": 162,
  6326. "height": 160
  6327. },
  6328. "_anchorPoint": {
  6329. "__type__": "cc.Vec2",
  6330. "x": 0.5,
  6331. "y": 0.5
  6332. },
  6333. "_trs": {
  6334. "__type__": "TypedArray",
  6335. "ctor": "Float64Array",
  6336. "array": [
  6337. 0,
  6338. 0,
  6339. 0,
  6340. 0,
  6341. 0,
  6342. 0,
  6343. 1,
  6344. 1,
  6345. 1,
  6346. 1
  6347. ]
  6348. },
  6349. "_eulerAngles": {
  6350. "__type__": "cc.Vec3",
  6351. "x": 0,
  6352. "y": 0,
  6353. "z": 0
  6354. },
  6355. "_skewX": 0,
  6356. "_skewY": 0,
  6357. "_is3DNode": false,
  6358. "_groupIndex": 0,
  6359. "groupIndex": 0,
  6360. "_id": ""
  6361. },
  6362. {
  6363. "__type__": "cc.Node",
  6364. "_name": "right",
  6365. "_objFlags": 0,
  6366. "_parent": {
  6367. "__id__": 166
  6368. },
  6369. "_children": [],
  6370. "_active": true,
  6371. "_components": [
  6372. {
  6373. "__id__": 168
  6374. }
  6375. ],
  6376. "_prefab": {
  6377. "__id__": 169
  6378. },
  6379. "_opacity": 255,
  6380. "_color": {
  6381. "__type__": "cc.Color",
  6382. "r": 255,
  6383. "g": 255,
  6384. "b": 255,
  6385. "a": 255
  6386. },
  6387. "_contentSize": {
  6388. "__type__": "cc.Size",
  6389. "width": 54,
  6390. "height": 41
  6391. },
  6392. "_anchorPoint": {
  6393. "__type__": "cc.Vec2",
  6394. "x": 0.5,
  6395. "y": 0.5
  6396. },
  6397. "_trs": {
  6398. "__type__": "TypedArray",
  6399. "ctor": "Float64Array",
  6400. "array": [
  6401. 0,
  6402. 28.288,
  6403. 0,
  6404. 0,
  6405. 0,
  6406. 0,
  6407. 1,
  6408. 1,
  6409. 1,
  6410. 1
  6411. ]
  6412. },
  6413. "_eulerAngles": {
  6414. "__type__": "cc.Vec3",
  6415. "x": 0,
  6416. "y": 0,
  6417. "z": 0
  6418. },
  6419. "_skewX": 0,
  6420. "_skewY": 0,
  6421. "_is3DNode": false,
  6422. "_groupIndex": 0,
  6423. "groupIndex": 0,
  6424. "_id": ""
  6425. },
  6426. {
  6427. "__type__": "cc.Sprite",
  6428. "_name": "",
  6429. "_objFlags": 0,
  6430. "node": {
  6431. "__id__": 167
  6432. },
  6433. "_enabled": true,
  6434. "_materials": [
  6435. {
  6436. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6437. }
  6438. ],
  6439. "_srcBlendFactor": 770,
  6440. "_dstBlendFactor": 771,
  6441. "_spriteFrame": {
  6442. "__uuid__": "b499d51c-984b-4b39-a014-4b1acc984027"
  6443. },
  6444. "_type": 0,
  6445. "_sizeMode": 1,
  6446. "_fillType": 0,
  6447. "_fillCenter": {
  6448. "__type__": "cc.Vec2",
  6449. "x": 0,
  6450. "y": 0
  6451. },
  6452. "_fillStart": 0,
  6453. "_fillRange": 0,
  6454. "_isTrimmedMode": true,
  6455. "_atlas": null,
  6456. "_id": ""
  6457. },
  6458. {
  6459. "__type__": "cc.PrefabInfo",
  6460. "root": {
  6461. "__id__": 1
  6462. },
  6463. "asset": {
  6464. "__id__": 0
  6465. },
  6466. "fileId": "6dBEnRuLVL8KRLJt3aNV+W",
  6467. "sync": false
  6468. },
  6469. {
  6470. "__type__": "cc.Node",
  6471. "_name": "label",
  6472. "_objFlags": 0,
  6473. "_parent": {
  6474. "__id__": 166
  6475. },
  6476. "_children": [],
  6477. "_active": true,
  6478. "_components": [
  6479. {
  6480. "__id__": 171
  6481. }
  6482. ],
  6483. "_prefab": {
  6484. "__id__": 172
  6485. },
  6486. "_opacity": 255,
  6487. "_color": {
  6488. "__type__": "cc.Color",
  6489. "r": 255,
  6490. "g": 255,
  6491. "b": 255,
  6492. "a": 255
  6493. },
  6494. "_contentSize": {
  6495. "__type__": "cc.Size",
  6496. "width": 84,
  6497. "height": 35.28
  6498. },
  6499. "_anchorPoint": {
  6500. "__type__": "cc.Vec2",
  6501. "x": 0.5,
  6502. "y": 0.5
  6503. },
  6504. "_trs": {
  6505. "__type__": "TypedArray",
  6506. "ctor": "Float64Array",
  6507. "array": [
  6508. 0,
  6509. -30.646,
  6510. 0,
  6511. 0,
  6512. 0,
  6513. 0,
  6514. 1,
  6515. 1,
  6516. 1,
  6517. 1
  6518. ]
  6519. },
  6520. "_eulerAngles": {
  6521. "__type__": "cc.Vec3",
  6522. "x": 0,
  6523. "y": 0,
  6524. "z": 0
  6525. },
  6526. "_skewX": 0,
  6527. "_skewY": 0,
  6528. "_is3DNode": false,
  6529. "_groupIndex": 0,
  6530. "groupIndex": 0,
  6531. "_id": ""
  6532. },
  6533. {
  6534. "__type__": "cc.Label",
  6535. "_name": "",
  6536. "_objFlags": 0,
  6537. "node": {
  6538. "__id__": 170
  6539. },
  6540. "_enabled": true,
  6541. "_materials": [
  6542. {
  6543. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6544. }
  6545. ],
  6546. "_srcBlendFactor": 770,
  6547. "_dstBlendFactor": 771,
  6548. "_string": "已领取",
  6549. "_N$string": "已领取",
  6550. "_fontSize": 28,
  6551. "_lineHeight": 28,
  6552. "_enableWrapText": true,
  6553. "_N$file": null,
  6554. "_isSystemFontUsed": true,
  6555. "_spacingX": 0,
  6556. "_batchAsBitmap": false,
  6557. "_styleFlags": 1,
  6558. "_underlineHeight": 0,
  6559. "_N$horizontalAlign": 1,
  6560. "_N$verticalAlign": 1,
  6561. "_N$fontFamily": "Arial",
  6562. "_N$overflow": 0,
  6563. "_N$cacheMode": 1,
  6564. "_id": ""
  6565. },
  6566. {
  6567. "__type__": "cc.PrefabInfo",
  6568. "root": {
  6569. "__id__": 1
  6570. },
  6571. "asset": {
  6572. "__id__": 0
  6573. },
  6574. "fileId": "7bves8siBGcZw4FM68Q0wi",
  6575. "sync": false
  6576. },
  6577. {
  6578. "__type__": "cc.Sprite",
  6579. "_name": "",
  6580. "_objFlags": 0,
  6581. "node": {
  6582. "__id__": 166
  6583. },
  6584. "_enabled": true,
  6585. "_materials": [
  6586. {
  6587. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6588. }
  6589. ],
  6590. "_srcBlendFactor": 770,
  6591. "_dstBlendFactor": 771,
  6592. "_spriteFrame": {
  6593. "__uuid__": "6c65fd34-97dc-4451-960d-cf4a253fa4b7"
  6594. },
  6595. "_type": 1,
  6596. "_sizeMode": 0,
  6597. "_fillType": 0,
  6598. "_fillCenter": {
  6599. "__type__": "cc.Vec2",
  6600. "x": 0,
  6601. "y": 0
  6602. },
  6603. "_fillStart": 0,
  6604. "_fillRange": 0,
  6605. "_isTrimmedMode": true,
  6606. "_atlas": null,
  6607. "_id": ""
  6608. },
  6609. {
  6610. "__type__": "cc.PrefabInfo",
  6611. "root": {
  6612. "__id__": 1
  6613. },
  6614. "asset": {
  6615. "__id__": 0
  6616. },
  6617. "fileId": "4cwfPCoGpDvr9o2Kh9nOtd",
  6618. "sync": false
  6619. },
  6620. {
  6621. "__type__": "cc.Sprite",
  6622. "_name": "",
  6623. "_objFlags": 0,
  6624. "node": {
  6625. "__id__": 146
  6626. },
  6627. "_enabled": true,
  6628. "_materials": [
  6629. {
  6630. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6631. }
  6632. ],
  6633. "_srcBlendFactor": 770,
  6634. "_dstBlendFactor": 771,
  6635. "_spriteFrame": {
  6636. "__uuid__": "66d456b9-18f2-4209-b61d-67b9997479d9"
  6637. },
  6638. "_type": 1,
  6639. "_sizeMode": 0,
  6640. "_fillType": 0,
  6641. "_fillCenter": {
  6642. "__type__": "cc.Vec2",
  6643. "x": 0,
  6644. "y": 0
  6645. },
  6646. "_fillStart": 0,
  6647. "_fillRange": 0,
  6648. "_isTrimmedMode": true,
  6649. "_atlas": null,
  6650. "_id": ""
  6651. },
  6652. {
  6653. "__type__": "cc.Button",
  6654. "_name": "",
  6655. "_objFlags": 0,
  6656. "node": {
  6657. "__id__": 146
  6658. },
  6659. "_enabled": true,
  6660. "_normalMaterial": null,
  6661. "_grayMaterial": null,
  6662. "duration": 0.1,
  6663. "zoomScale": 1.2,
  6664. "clickEvents": [],
  6665. "_N$interactable": true,
  6666. "_N$enableAutoGrayEffect": false,
  6667. "_N$transition": 0,
  6668. "transition": 0,
  6669. "_N$normalColor": {
  6670. "__type__": "cc.Color",
  6671. "r": 255,
  6672. "g": 255,
  6673. "b": 255,
  6674. "a": 255
  6675. },
  6676. "_N$pressedColor": {
  6677. "__type__": "cc.Color",
  6678. "r": 211,
  6679. "g": 211,
  6680. "b": 211,
  6681. "a": 255
  6682. },
  6683. "pressedColor": {
  6684. "__type__": "cc.Color",
  6685. "r": 211,
  6686. "g": 211,
  6687. "b": 211,
  6688. "a": 255
  6689. },
  6690. "_N$hoverColor": {
  6691. "__type__": "cc.Color",
  6692. "r": 255,
  6693. "g": 255,
  6694. "b": 255,
  6695. "a": 255
  6696. },
  6697. "hoverColor": {
  6698. "__type__": "cc.Color",
  6699. "r": 255,
  6700. "g": 255,
  6701. "b": 255,
  6702. "a": 255
  6703. },
  6704. "_N$disabledColor": {
  6705. "__type__": "cc.Color",
  6706. "r": 124,
  6707. "g": 124,
  6708. "b": 124,
  6709. "a": 255
  6710. },
  6711. "_N$normalSprite": null,
  6712. "_N$pressedSprite": null,
  6713. "pressedSprite": null,
  6714. "_N$hoverSprite": null,
  6715. "hoverSprite": null,
  6716. "_N$disabledSprite": null,
  6717. "_N$target": null,
  6718. "_id": ""
  6719. },
  6720. {
  6721. "__type__": "cc.PrefabInfo",
  6722. "root": {
  6723. "__id__": 1
  6724. },
  6725. "asset": {
  6726. "__id__": 0
  6727. },
  6728. "fileId": "57u/OL5BNKxrSuMw15CUHM",
  6729. "sync": false
  6730. },
  6731. {
  6732. "__type__": "cc.Node",
  6733. "_name": "six",
  6734. "_objFlags": 0,
  6735. "_parent": {
  6736. "__id__": 17
  6737. },
  6738. "_children": [
  6739. {
  6740. "__id__": 179
  6741. },
  6742. {
  6743. "__id__": 182
  6744. },
  6745. {
  6746. "__id__": 189
  6747. },
  6748. {
  6749. "__id__": 198
  6750. }
  6751. ],
  6752. "_active": true,
  6753. "_components": [
  6754. {
  6755. "__id__": 207
  6756. },
  6757. {
  6758. "__id__": 208
  6759. }
  6760. ],
  6761. "_prefab": {
  6762. "__id__": 209
  6763. },
  6764. "_opacity": 255,
  6765. "_color": {
  6766. "__type__": "cc.Color",
  6767. "r": 255,
  6768. "g": 255,
  6769. "b": 255,
  6770. "a": 255
  6771. },
  6772. "_contentSize": {
  6773. "__type__": "cc.Size",
  6774. "width": 162,
  6775. "height": 160
  6776. },
  6777. "_anchorPoint": {
  6778. "__type__": "cc.Vec2",
  6779. "x": 0.5,
  6780. "y": 0.5
  6781. },
  6782. "_trs": {
  6783. "__type__": "TypedArray",
  6784. "ctor": "Float64Array",
  6785. "array": [
  6786. 175,
  6787. 0,
  6788. 0,
  6789. 0,
  6790. 0,
  6791. 0,
  6792. 1,
  6793. 1,
  6794. 1,
  6795. 1
  6796. ]
  6797. },
  6798. "_eulerAngles": {
  6799. "__type__": "cc.Vec3",
  6800. "x": 0,
  6801. "y": 0,
  6802. "z": 0
  6803. },
  6804. "_skewX": 0,
  6805. "_skewY": 0,
  6806. "_is3DNode": false,
  6807. "_groupIndex": 0,
  6808. "groupIndex": 0,
  6809. "_id": ""
  6810. },
  6811. {
  6812. "__type__": "cc.Node",
  6813. "_name": "di",
  6814. "_objFlags": 0,
  6815. "_parent": {
  6816. "__id__": 178
  6817. },
  6818. "_children": [],
  6819. "_active": false,
  6820. "_components": [
  6821. {
  6822. "__id__": 180
  6823. }
  6824. ],
  6825. "_prefab": {
  6826. "__id__": 181
  6827. },
  6828. "_opacity": 255,
  6829. "_color": {
  6830. "__type__": "cc.Color",
  6831. "r": 255,
  6832. "g": 255,
  6833. "b": 255,
  6834. "a": 255
  6835. },
  6836. "_contentSize": {
  6837. "__type__": "cc.Size",
  6838. "width": 162,
  6839. "height": 160
  6840. },
  6841. "_anchorPoint": {
  6842. "__type__": "cc.Vec2",
  6843. "x": 0.5,
  6844. "y": 0.5
  6845. },
  6846. "_trs": {
  6847. "__type__": "TypedArray",
  6848. "ctor": "Float64Array",
  6849. "array": [
  6850. 0,
  6851. 0,
  6852. 0,
  6853. 0,
  6854. 0,
  6855. 0,
  6856. 1,
  6857. 1,
  6858. 1,
  6859. 1
  6860. ]
  6861. },
  6862. "_eulerAngles": {
  6863. "__type__": "cc.Vec3",
  6864. "x": 0,
  6865. "y": 0,
  6866. "z": 0
  6867. },
  6868. "_skewX": 0,
  6869. "_skewY": 0,
  6870. "_is3DNode": false,
  6871. "_groupIndex": 0,
  6872. "groupIndex": 0,
  6873. "_id": ""
  6874. },
  6875. {
  6876. "__type__": "cc.Sprite",
  6877. "_name": "",
  6878. "_objFlags": 0,
  6879. "node": {
  6880. "__id__": 179
  6881. },
  6882. "_enabled": true,
  6883. "_materials": [
  6884. {
  6885. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6886. }
  6887. ],
  6888. "_srcBlendFactor": 770,
  6889. "_dstBlendFactor": 771,
  6890. "_spriteFrame": {
  6891. "__uuid__": "6d9d4bf6-e66b-40aa-8e1b-609c88010983"
  6892. },
  6893. "_type": 1,
  6894. "_sizeMode": 0,
  6895. "_fillType": 0,
  6896. "_fillCenter": {
  6897. "__type__": "cc.Vec2",
  6898. "x": 0,
  6899. "y": 0
  6900. },
  6901. "_fillStart": 0,
  6902. "_fillRange": 0,
  6903. "_isTrimmedMode": true,
  6904. "_atlas": null,
  6905. "_id": ""
  6906. },
  6907. {
  6908. "__type__": "cc.PrefabInfo",
  6909. "root": {
  6910. "__id__": 1
  6911. },
  6912. "asset": {
  6913. "__id__": 0
  6914. },
  6915. "fileId": "cc6q9P1ntJ67UG7edbl6Wr",
  6916. "sync": false
  6917. },
  6918. {
  6919. "__type__": "cc.Node",
  6920. "_name": "item",
  6921. "_objFlags": 0,
  6922. "_parent": {
  6923. "__id__": 178
  6924. },
  6925. "_children": [
  6926. {
  6927. "__id__": 183
  6928. }
  6929. ],
  6930. "_active": true,
  6931. "_components": [
  6932. {
  6933. "__id__": 187
  6934. }
  6935. ],
  6936. "_prefab": {
  6937. "__id__": 188
  6938. },
  6939. "_opacity": 255,
  6940. "_color": {
  6941. "__type__": "cc.Color",
  6942. "r": 255,
  6943. "g": 255,
  6944. "b": 255,
  6945. "a": 255
  6946. },
  6947. "_contentSize": {
  6948. "__type__": "cc.Size",
  6949. "width": 74,
  6950. "height": 74
  6951. },
  6952. "_anchorPoint": {
  6953. "__type__": "cc.Vec2",
  6954. "x": 0.5,
  6955. "y": 0.5
  6956. },
  6957. "_trs": {
  6958. "__type__": "TypedArray",
  6959. "ctor": "Float64Array",
  6960. "array": [
  6961. 0,
  6962. 22.421,
  6963. 0,
  6964. 0,
  6965. 0,
  6966. 0,
  6967. 1,
  6968. 1,
  6969. 1,
  6970. 1
  6971. ]
  6972. },
  6973. "_eulerAngles": {
  6974. "__type__": "cc.Vec3",
  6975. "x": 0,
  6976. "y": 0,
  6977. "z": 0
  6978. },
  6979. "_skewX": 0,
  6980. "_skewY": 0,
  6981. "_is3DNode": false,
  6982. "_groupIndex": 0,
  6983. "groupIndex": 0,
  6984. "_id": ""
  6985. },
  6986. {
  6987. "__type__": "cc.Node",
  6988. "_name": "num",
  6989. "_objFlags": 0,
  6990. "_parent": {
  6991. "__id__": 182
  6992. },
  6993. "_children": [],
  6994. "_active": true,
  6995. "_components": [
  6996. {
  6997. "__id__": 184
  6998. },
  6999. {
  7000. "__id__": 185
  7001. }
  7002. ],
  7003. "_prefab": {
  7004. "__id__": 186
  7005. },
  7006. "_opacity": 255,
  7007. "_color": {
  7008. "__type__": "cc.Color",
  7009. "r": 255,
  7010. "g": 255,
  7011. "b": 255,
  7012. "a": 255
  7013. },
  7014. "_contentSize": {
  7015. "__type__": "cc.Size",
  7016. "width": 30.7,
  7017. "height": 34.239999999999995
  7018. },
  7019. "_anchorPoint": {
  7020. "__type__": "cc.Vec2",
  7021. "x": 0.5,
  7022. "y": 0.5
  7023. },
  7024. "_trs": {
  7025. "__type__": "TypedArray",
  7026. "ctor": "Float64Array",
  7027. "array": [
  7028. 31.485,
  7029. -20.513,
  7030. 0,
  7031. 0,
  7032. 0,
  7033. 0,
  7034. 1,
  7035. 1,
  7036. 1,
  7037. 1
  7038. ]
  7039. },
  7040. "_eulerAngles": {
  7041. "__type__": "cc.Vec3",
  7042. "x": 0,
  7043. "y": 0,
  7044. "z": 0
  7045. },
  7046. "_skewX": 0,
  7047. "_skewY": 0,
  7048. "_is3DNode": false,
  7049. "_groupIndex": 0,
  7050. "groupIndex": 0,
  7051. "_id": ""
  7052. },
  7053. {
  7054. "__type__": "cc.Label",
  7055. "_name": "",
  7056. "_objFlags": 0,
  7057. "node": {
  7058. "__id__": 183
  7059. },
  7060. "_enabled": true,
  7061. "_materials": [
  7062. {
  7063. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7064. }
  7065. ],
  7066. "_srcBlendFactor": 770,
  7067. "_dstBlendFactor": 771,
  7068. "_string": "x1",
  7069. "_N$string": "x1",
  7070. "_fontSize": 24,
  7071. "_lineHeight": 24,
  7072. "_enableWrapText": true,
  7073. "_N$file": null,
  7074. "_isSystemFontUsed": true,
  7075. "_spacingX": 0,
  7076. "_batchAsBitmap": false,
  7077. "_styleFlags": 1,
  7078. "_underlineHeight": 0,
  7079. "_N$horizontalAlign": 1,
  7080. "_N$verticalAlign": 1,
  7081. "_N$fontFamily": "Arial",
  7082. "_N$overflow": 0,
  7083. "_N$cacheMode": 1,
  7084. "_id": ""
  7085. },
  7086. {
  7087. "__type__": "cc.LabelOutline",
  7088. "_name": "",
  7089. "_objFlags": 0,
  7090. "node": {
  7091. "__id__": 183
  7092. },
  7093. "_enabled": true,
  7094. "_color": {
  7095. "__type__": "cc.Color",
  7096. "r": 113,
  7097. "g": 15,
  7098. "b": 0,
  7099. "a": 255
  7100. },
  7101. "_width": 2,
  7102. "_id": ""
  7103. },
  7104. {
  7105. "__type__": "cc.PrefabInfo",
  7106. "root": {
  7107. "__id__": 1
  7108. },
  7109. "asset": {
  7110. "__id__": 0
  7111. },
  7112. "fileId": "a9OoRsi/hJmbhAZIFoRNDz",
  7113. "sync": false
  7114. },
  7115. {
  7116. "__type__": "cc.Sprite",
  7117. "_name": "",
  7118. "_objFlags": 0,
  7119. "node": {
  7120. "__id__": 182
  7121. },
  7122. "_enabled": true,
  7123. "_materials": [
  7124. {
  7125. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7126. }
  7127. ],
  7128. "_srcBlendFactor": 770,
  7129. "_dstBlendFactor": 771,
  7130. "_spriteFrame": {
  7131. "__uuid__": "eb6a2bf0-79b5-42da-88ed-b2437323c8f4"
  7132. },
  7133. "_type": 0,
  7134. "_sizeMode": 0,
  7135. "_fillType": 0,
  7136. "_fillCenter": {
  7137. "__type__": "cc.Vec2",
  7138. "x": 0,
  7139. "y": 0
  7140. },
  7141. "_fillStart": 0,
  7142. "_fillRange": 0,
  7143. "_isTrimmedMode": true,
  7144. "_atlas": null,
  7145. "_id": ""
  7146. },
  7147. {
  7148. "__type__": "cc.PrefabInfo",
  7149. "root": {
  7150. "__id__": 1
  7151. },
  7152. "asset": {
  7153. "__id__": 0
  7154. },
  7155. "fileId": "3dtMqzaaVHpYg+ZY3JuKty",
  7156. "sync": false
  7157. },
  7158. {
  7159. "__type__": "cc.Node",
  7160. "_name": "bottom",
  7161. "_objFlags": 0,
  7162. "_parent": {
  7163. "__id__": 178
  7164. },
  7165. "_children": [
  7166. {
  7167. "__id__": 190
  7168. },
  7169. {
  7170. "__id__": 193
  7171. }
  7172. ],
  7173. "_active": true,
  7174. "_components": [
  7175. {
  7176. "__id__": 196
  7177. }
  7178. ],
  7179. "_prefab": {
  7180. "__id__": 197
  7181. },
  7182. "_opacity": 255,
  7183. "_color": {
  7184. "__type__": "cc.Color",
  7185. "r": 255,
  7186. "g": 255,
  7187. "b": 255,
  7188. "a": 255
  7189. },
  7190. "_contentSize": {
  7191. "__type__": "cc.Size",
  7192. "width": 162,
  7193. "height": 50
  7194. },
  7195. "_anchorPoint": {
  7196. "__type__": "cc.Vec2",
  7197. "x": 0.5,
  7198. "y": 0.5
  7199. },
  7200. "_trs": {
  7201. "__type__": "TypedArray",
  7202. "ctor": "Float64Array",
  7203. "array": [
  7204. 0,
  7205. -55,
  7206. 0,
  7207. 0,
  7208. 0,
  7209. 0,
  7210. 1,
  7211. 1,
  7212. 1,
  7213. 1
  7214. ]
  7215. },
  7216. "_eulerAngles": {
  7217. "__type__": "cc.Vec3",
  7218. "x": 0,
  7219. "y": 0,
  7220. "z": 0
  7221. },
  7222. "_skewX": 0,
  7223. "_skewY": 0,
  7224. "_is3DNode": false,
  7225. "_groupIndex": 0,
  7226. "groupIndex": 0,
  7227. "_id": ""
  7228. },
  7229. {
  7230. "__type__": "cc.Node",
  7231. "_name": "label",
  7232. "_objFlags": 0,
  7233. "_parent": {
  7234. "__id__": 189
  7235. },
  7236. "_children": [],
  7237. "_active": true,
  7238. "_components": [
  7239. {
  7240. "__id__": 191
  7241. }
  7242. ],
  7243. "_prefab": {
  7244. "__id__": 192
  7245. },
  7246. "_opacity": 255,
  7247. "_color": {
  7248. "__type__": "cc.Color",
  7249. "r": 144,
  7250. "g": 85,
  7251. "b": 53,
  7252. "a": 255
  7253. },
  7254. "_contentSize": {
  7255. "__type__": "cc.Size",
  7256. "width": 84,
  7257. "height": 35.28
  7258. },
  7259. "_anchorPoint": {
  7260. "__type__": "cc.Vec2",
  7261. "x": 0.5,
  7262. "y": 0.5
  7263. },
  7264. "_trs": {
  7265. "__type__": "TypedArray",
  7266. "ctor": "Float64Array",
  7267. "array": [
  7268. 0,
  7269. 0,
  7270. 0,
  7271. 0,
  7272. 0,
  7273. 0,
  7274. 1,
  7275. 1,
  7276. 1,
  7277. 1
  7278. ]
  7279. },
  7280. "_eulerAngles": {
  7281. "__type__": "cc.Vec3",
  7282. "x": 0,
  7283. "y": 0,
  7284. "z": 0
  7285. },
  7286. "_skewX": 0,
  7287. "_skewY": 0,
  7288. "_is3DNode": false,
  7289. "_groupIndex": 0,
  7290. "groupIndex": 0,
  7291. "_id": ""
  7292. },
  7293. {
  7294. "__type__": "cc.Label",
  7295. "_name": "",
  7296. "_objFlags": 0,
  7297. "node": {
  7298. "__id__": 190
  7299. },
  7300. "_enabled": true,
  7301. "_materials": [
  7302. {
  7303. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7304. }
  7305. ],
  7306. "_srcBlendFactor": 770,
  7307. "_dstBlendFactor": 771,
  7308. "_string": "第六天",
  7309. "_N$string": "第六天",
  7310. "_fontSize": 28,
  7311. "_lineHeight": 28,
  7312. "_enableWrapText": true,
  7313. "_N$file": null,
  7314. "_isSystemFontUsed": true,
  7315. "_spacingX": 0,
  7316. "_batchAsBitmap": false,
  7317. "_styleFlags": 1,
  7318. "_underlineHeight": 0,
  7319. "_N$horizontalAlign": 1,
  7320. "_N$verticalAlign": 1,
  7321. "_N$fontFamily": "Arial",
  7322. "_N$overflow": 0,
  7323. "_N$cacheMode": 1,
  7324. "_id": ""
  7325. },
  7326. {
  7327. "__type__": "cc.PrefabInfo",
  7328. "root": {
  7329. "__id__": 1
  7330. },
  7331. "asset": {
  7332. "__id__": 0
  7333. },
  7334. "fileId": "dd7qc++1lJU5+JmtGuAVSh",
  7335. "sync": false
  7336. },
  7337. {
  7338. "__type__": "cc.Node",
  7339. "_name": "videoIcon",
  7340. "_objFlags": 0,
  7341. "_parent": {
  7342. "__id__": 189
  7343. },
  7344. "_children": [],
  7345. "_active": false,
  7346. "_components": [
  7347. {
  7348. "__id__": 194
  7349. }
  7350. ],
  7351. "_prefab": {
  7352. "__id__": 195
  7353. },
  7354. "_opacity": 255,
  7355. "_color": {
  7356. "__type__": "cc.Color",
  7357. "r": 255,
  7358. "g": 255,
  7359. "b": 255,
  7360. "a": 255
  7361. },
  7362. "_contentSize": {
  7363. "__type__": "cc.Size",
  7364. "width": 56,
  7365. "height": 43
  7366. },
  7367. "_anchorPoint": {
  7368. "__type__": "cc.Vec2",
  7369. "x": 0.5,
  7370. "y": 0.5
  7371. },
  7372. "_trs": {
  7373. "__type__": "TypedArray",
  7374. "ctor": "Float64Array",
  7375. "array": [
  7376. 40,
  7377. 0,
  7378. 0,
  7379. 0,
  7380. 0,
  7381. 0,
  7382. 1,
  7383. 0.5,
  7384. 0.5,
  7385. 1
  7386. ]
  7387. },
  7388. "_eulerAngles": {
  7389. "__type__": "cc.Vec3",
  7390. "x": 0,
  7391. "y": 0,
  7392. "z": 0
  7393. },
  7394. "_skewX": 0,
  7395. "_skewY": 0,
  7396. "_is3DNode": false,
  7397. "_groupIndex": 0,
  7398. "groupIndex": 0,
  7399. "_id": ""
  7400. },
  7401. {
  7402. "__type__": "cc.Sprite",
  7403. "_name": "",
  7404. "_objFlags": 0,
  7405. "node": {
  7406. "__id__": 193
  7407. },
  7408. "_enabled": true,
  7409. "_materials": [
  7410. {
  7411. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7412. }
  7413. ],
  7414. "_srcBlendFactor": 770,
  7415. "_dstBlendFactor": 771,
  7416. "_spriteFrame": {
  7417. "__uuid__": "a15d6951-f9a3-45b7-b099-8116c6a78eea"
  7418. },
  7419. "_type": 0,
  7420. "_sizeMode": 1,
  7421. "_fillType": 0,
  7422. "_fillCenter": {
  7423. "__type__": "cc.Vec2",
  7424. "x": 0,
  7425. "y": 0
  7426. },
  7427. "_fillStart": 0,
  7428. "_fillRange": 0,
  7429. "_isTrimmedMode": true,
  7430. "_atlas": null,
  7431. "_id": ""
  7432. },
  7433. {
  7434. "__type__": "cc.PrefabInfo",
  7435. "root": {
  7436. "__id__": 1
  7437. },
  7438. "asset": {
  7439. "__id__": 0
  7440. },
  7441. "fileId": "dc/D8lIt5MW4d2ttUyYNs6",
  7442. "sync": false
  7443. },
  7444. {
  7445. "__type__": "cc.Sprite",
  7446. "_name": "",
  7447. "_objFlags": 0,
  7448. "node": {
  7449. "__id__": 189
  7450. },
  7451. "_enabled": true,
  7452. "_materials": [
  7453. {
  7454. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7455. }
  7456. ],
  7457. "_srcBlendFactor": 770,
  7458. "_dstBlendFactor": 771,
  7459. "_spriteFrame": {
  7460. "__uuid__": "80d1c3b0-9a53-434a-ae8e-fc3c77e6e4d0"
  7461. },
  7462. "_type": 1,
  7463. "_sizeMode": 0,
  7464. "_fillType": 0,
  7465. "_fillCenter": {
  7466. "__type__": "cc.Vec2",
  7467. "x": 0,
  7468. "y": 0
  7469. },
  7470. "_fillStart": 0,
  7471. "_fillRange": 0,
  7472. "_isTrimmedMode": true,
  7473. "_atlas": null,
  7474. "_id": ""
  7475. },
  7476. {
  7477. "__type__": "cc.PrefabInfo",
  7478. "root": {
  7479. "__id__": 1
  7480. },
  7481. "asset": {
  7482. "__id__": 0
  7483. },
  7484. "fileId": "d226mawNFAFL9WCZ2Qx25i",
  7485. "sync": false
  7486. },
  7487. {
  7488. "__type__": "cc.Node",
  7489. "_name": "mask",
  7490. "_objFlags": 0,
  7491. "_parent": {
  7492. "__id__": 178
  7493. },
  7494. "_children": [
  7495. {
  7496. "__id__": 199
  7497. },
  7498. {
  7499. "__id__": 202
  7500. }
  7501. ],
  7502. "_active": false,
  7503. "_components": [
  7504. {
  7505. "__id__": 205
  7506. }
  7507. ],
  7508. "_prefab": {
  7509. "__id__": 206
  7510. },
  7511. "_opacity": 255,
  7512. "_color": {
  7513. "__type__": "cc.Color",
  7514. "r": 255,
  7515. "g": 255,
  7516. "b": 255,
  7517. "a": 255
  7518. },
  7519. "_contentSize": {
  7520. "__type__": "cc.Size",
  7521. "width": 162,
  7522. "height": 160
  7523. },
  7524. "_anchorPoint": {
  7525. "__type__": "cc.Vec2",
  7526. "x": 0.5,
  7527. "y": 0.5
  7528. },
  7529. "_trs": {
  7530. "__type__": "TypedArray",
  7531. "ctor": "Float64Array",
  7532. "array": [
  7533. 0,
  7534. 0,
  7535. 0,
  7536. 0,
  7537. 0,
  7538. 0,
  7539. 1,
  7540. 1,
  7541. 1,
  7542. 1
  7543. ]
  7544. },
  7545. "_eulerAngles": {
  7546. "__type__": "cc.Vec3",
  7547. "x": 0,
  7548. "y": 0,
  7549. "z": 0
  7550. },
  7551. "_skewX": 0,
  7552. "_skewY": 0,
  7553. "_is3DNode": false,
  7554. "_groupIndex": 0,
  7555. "groupIndex": 0,
  7556. "_id": ""
  7557. },
  7558. {
  7559. "__type__": "cc.Node",
  7560. "_name": "right",
  7561. "_objFlags": 0,
  7562. "_parent": {
  7563. "__id__": 198
  7564. },
  7565. "_children": [],
  7566. "_active": true,
  7567. "_components": [
  7568. {
  7569. "__id__": 200
  7570. }
  7571. ],
  7572. "_prefab": {
  7573. "__id__": 201
  7574. },
  7575. "_opacity": 255,
  7576. "_color": {
  7577. "__type__": "cc.Color",
  7578. "r": 255,
  7579. "g": 255,
  7580. "b": 255,
  7581. "a": 255
  7582. },
  7583. "_contentSize": {
  7584. "__type__": "cc.Size",
  7585. "width": 54,
  7586. "height": 41
  7587. },
  7588. "_anchorPoint": {
  7589. "__type__": "cc.Vec2",
  7590. "x": 0.5,
  7591. "y": 0.5
  7592. },
  7593. "_trs": {
  7594. "__type__": "TypedArray",
  7595. "ctor": "Float64Array",
  7596. "array": [
  7597. 0,
  7598. 28.288,
  7599. 0,
  7600. 0,
  7601. 0,
  7602. 0,
  7603. 1,
  7604. 1,
  7605. 1,
  7606. 1
  7607. ]
  7608. },
  7609. "_eulerAngles": {
  7610. "__type__": "cc.Vec3",
  7611. "x": 0,
  7612. "y": 0,
  7613. "z": 0
  7614. },
  7615. "_skewX": 0,
  7616. "_skewY": 0,
  7617. "_is3DNode": false,
  7618. "_groupIndex": 0,
  7619. "groupIndex": 0,
  7620. "_id": ""
  7621. },
  7622. {
  7623. "__type__": "cc.Sprite",
  7624. "_name": "",
  7625. "_objFlags": 0,
  7626. "node": {
  7627. "__id__": 199
  7628. },
  7629. "_enabled": true,
  7630. "_materials": [
  7631. {
  7632. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7633. }
  7634. ],
  7635. "_srcBlendFactor": 770,
  7636. "_dstBlendFactor": 771,
  7637. "_spriteFrame": {
  7638. "__uuid__": "b499d51c-984b-4b39-a014-4b1acc984027"
  7639. },
  7640. "_type": 0,
  7641. "_sizeMode": 1,
  7642. "_fillType": 0,
  7643. "_fillCenter": {
  7644. "__type__": "cc.Vec2",
  7645. "x": 0,
  7646. "y": 0
  7647. },
  7648. "_fillStart": 0,
  7649. "_fillRange": 0,
  7650. "_isTrimmedMode": true,
  7651. "_atlas": null,
  7652. "_id": ""
  7653. },
  7654. {
  7655. "__type__": "cc.PrefabInfo",
  7656. "root": {
  7657. "__id__": 1
  7658. },
  7659. "asset": {
  7660. "__id__": 0
  7661. },
  7662. "fileId": "b2nn23BtFKCoSNtIL81OTu",
  7663. "sync": false
  7664. },
  7665. {
  7666. "__type__": "cc.Node",
  7667. "_name": "label",
  7668. "_objFlags": 0,
  7669. "_parent": {
  7670. "__id__": 198
  7671. },
  7672. "_children": [],
  7673. "_active": true,
  7674. "_components": [
  7675. {
  7676. "__id__": 203
  7677. }
  7678. ],
  7679. "_prefab": {
  7680. "__id__": 204
  7681. },
  7682. "_opacity": 255,
  7683. "_color": {
  7684. "__type__": "cc.Color",
  7685. "r": 255,
  7686. "g": 255,
  7687. "b": 255,
  7688. "a": 255
  7689. },
  7690. "_contentSize": {
  7691. "__type__": "cc.Size",
  7692. "width": 84,
  7693. "height": 35.28
  7694. },
  7695. "_anchorPoint": {
  7696. "__type__": "cc.Vec2",
  7697. "x": 0.5,
  7698. "y": 0.5
  7699. },
  7700. "_trs": {
  7701. "__type__": "TypedArray",
  7702. "ctor": "Float64Array",
  7703. "array": [
  7704. 0,
  7705. -30.646,
  7706. 0,
  7707. 0,
  7708. 0,
  7709. 0,
  7710. 1,
  7711. 1,
  7712. 1,
  7713. 1
  7714. ]
  7715. },
  7716. "_eulerAngles": {
  7717. "__type__": "cc.Vec3",
  7718. "x": 0,
  7719. "y": 0,
  7720. "z": 0
  7721. },
  7722. "_skewX": 0,
  7723. "_skewY": 0,
  7724. "_is3DNode": false,
  7725. "_groupIndex": 0,
  7726. "groupIndex": 0,
  7727. "_id": ""
  7728. },
  7729. {
  7730. "__type__": "cc.Label",
  7731. "_name": "",
  7732. "_objFlags": 0,
  7733. "node": {
  7734. "__id__": 202
  7735. },
  7736. "_enabled": true,
  7737. "_materials": [
  7738. {
  7739. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7740. }
  7741. ],
  7742. "_srcBlendFactor": 770,
  7743. "_dstBlendFactor": 771,
  7744. "_string": "已领取",
  7745. "_N$string": "已领取",
  7746. "_fontSize": 28,
  7747. "_lineHeight": 28,
  7748. "_enableWrapText": true,
  7749. "_N$file": null,
  7750. "_isSystemFontUsed": true,
  7751. "_spacingX": 0,
  7752. "_batchAsBitmap": false,
  7753. "_styleFlags": 1,
  7754. "_underlineHeight": 0,
  7755. "_N$horizontalAlign": 1,
  7756. "_N$verticalAlign": 1,
  7757. "_N$fontFamily": "Arial",
  7758. "_N$overflow": 0,
  7759. "_N$cacheMode": 1,
  7760. "_id": ""
  7761. },
  7762. {
  7763. "__type__": "cc.PrefabInfo",
  7764. "root": {
  7765. "__id__": 1
  7766. },
  7767. "asset": {
  7768. "__id__": 0
  7769. },
  7770. "fileId": "c4avR8A8dLEqoxBf6kYgEC",
  7771. "sync": false
  7772. },
  7773. {
  7774. "__type__": "cc.Sprite",
  7775. "_name": "",
  7776. "_objFlags": 0,
  7777. "node": {
  7778. "__id__": 198
  7779. },
  7780. "_enabled": true,
  7781. "_materials": [
  7782. {
  7783. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7784. }
  7785. ],
  7786. "_srcBlendFactor": 770,
  7787. "_dstBlendFactor": 771,
  7788. "_spriteFrame": {
  7789. "__uuid__": "6c65fd34-97dc-4451-960d-cf4a253fa4b7"
  7790. },
  7791. "_type": 1,
  7792. "_sizeMode": 0,
  7793. "_fillType": 0,
  7794. "_fillCenter": {
  7795. "__type__": "cc.Vec2",
  7796. "x": 0,
  7797. "y": 0
  7798. },
  7799. "_fillStart": 0,
  7800. "_fillRange": 0,
  7801. "_isTrimmedMode": true,
  7802. "_atlas": null,
  7803. "_id": ""
  7804. },
  7805. {
  7806. "__type__": "cc.PrefabInfo",
  7807. "root": {
  7808. "__id__": 1
  7809. },
  7810. "asset": {
  7811. "__id__": 0
  7812. },
  7813. "fileId": "7b6pvVUoBFuI/Da+39/hjg",
  7814. "sync": false
  7815. },
  7816. {
  7817. "__type__": "cc.Sprite",
  7818. "_name": "",
  7819. "_objFlags": 0,
  7820. "node": {
  7821. "__id__": 178
  7822. },
  7823. "_enabled": true,
  7824. "_materials": [
  7825. {
  7826. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7827. }
  7828. ],
  7829. "_srcBlendFactor": 770,
  7830. "_dstBlendFactor": 771,
  7831. "_spriteFrame": {
  7832. "__uuid__": "66d456b9-18f2-4209-b61d-67b9997479d9"
  7833. },
  7834. "_type": 1,
  7835. "_sizeMode": 0,
  7836. "_fillType": 0,
  7837. "_fillCenter": {
  7838. "__type__": "cc.Vec2",
  7839. "x": 0,
  7840. "y": 0
  7841. },
  7842. "_fillStart": 0,
  7843. "_fillRange": 0,
  7844. "_isTrimmedMode": true,
  7845. "_atlas": null,
  7846. "_id": ""
  7847. },
  7848. {
  7849. "__type__": "cc.Button",
  7850. "_name": "",
  7851. "_objFlags": 0,
  7852. "node": {
  7853. "__id__": 178
  7854. },
  7855. "_enabled": true,
  7856. "_normalMaterial": null,
  7857. "_grayMaterial": null,
  7858. "duration": 0.1,
  7859. "zoomScale": 1.2,
  7860. "clickEvents": [],
  7861. "_N$interactable": true,
  7862. "_N$enableAutoGrayEffect": false,
  7863. "_N$transition": 0,
  7864. "transition": 0,
  7865. "_N$normalColor": {
  7866. "__type__": "cc.Color",
  7867. "r": 255,
  7868. "g": 255,
  7869. "b": 255,
  7870. "a": 255
  7871. },
  7872. "_N$pressedColor": {
  7873. "__type__": "cc.Color",
  7874. "r": 211,
  7875. "g": 211,
  7876. "b": 211,
  7877. "a": 255
  7878. },
  7879. "pressedColor": {
  7880. "__type__": "cc.Color",
  7881. "r": 211,
  7882. "g": 211,
  7883. "b": 211,
  7884. "a": 255
  7885. },
  7886. "_N$hoverColor": {
  7887. "__type__": "cc.Color",
  7888. "r": 255,
  7889. "g": 255,
  7890. "b": 255,
  7891. "a": 255
  7892. },
  7893. "hoverColor": {
  7894. "__type__": "cc.Color",
  7895. "r": 255,
  7896. "g": 255,
  7897. "b": 255,
  7898. "a": 255
  7899. },
  7900. "_N$disabledColor": {
  7901. "__type__": "cc.Color",
  7902. "r": 124,
  7903. "g": 124,
  7904. "b": 124,
  7905. "a": 255
  7906. },
  7907. "_N$normalSprite": null,
  7908. "_N$pressedSprite": null,
  7909. "pressedSprite": null,
  7910. "_N$hoverSprite": null,
  7911. "hoverSprite": null,
  7912. "_N$disabledSprite": null,
  7913. "_N$target": null,
  7914. "_id": ""
  7915. },
  7916. {
  7917. "__type__": "cc.PrefabInfo",
  7918. "root": {
  7919. "__id__": 1
  7920. },
  7921. "asset": {
  7922. "__id__": 0
  7923. },
  7924. "fileId": "185+VzQZ1Eo75P3HaqJOm8",
  7925. "sync": false
  7926. },
  7927. {
  7928. "__type__": "cc.Node",
  7929. "_name": "seven",
  7930. "_objFlags": 0,
  7931. "_parent": {
  7932. "__id__": 17
  7933. },
  7934. "_children": [
  7935. {
  7936. "__id__": 211
  7937. },
  7938. {
  7939. "__id__": 214
  7940. },
  7941. {
  7942. "__id__": 223
  7943. }
  7944. ],
  7945. "_active": true,
  7946. "_components": [
  7947. {
  7948. "__id__": 262
  7949. },
  7950. {
  7951. "__id__": 263
  7952. }
  7953. ],
  7954. "_prefab": {
  7955. "__id__": 264
  7956. },
  7957. "_opacity": 255,
  7958. "_color": {
  7959. "__type__": "cc.Color",
  7960. "r": 255,
  7961. "g": 255,
  7962. "b": 255,
  7963. "a": 255
  7964. },
  7965. "_contentSize": {
  7966. "__type__": "cc.Size",
  7967. "width": 512,
  7968. "height": 160
  7969. },
  7970. "_anchorPoint": {
  7971. "__type__": "cc.Vec2",
  7972. "x": 0.5,
  7973. "y": 0.5
  7974. },
  7975. "_trs": {
  7976. "__type__": "TypedArray",
  7977. "ctor": "Float64Array",
  7978. "array": [
  7979. 0,
  7980. -190,
  7981. 0,
  7982. 0,
  7983. 0,
  7984. 0,
  7985. 1,
  7986. 1,
  7987. 1,
  7988. 1
  7989. ]
  7990. },
  7991. "_eulerAngles": {
  7992. "__type__": "cc.Vec3",
  7993. "x": 0,
  7994. "y": 0,
  7995. "z": 0
  7996. },
  7997. "_skewX": 0,
  7998. "_skewY": 0,
  7999. "_is3DNode": false,
  8000. "_groupIndex": 0,
  8001. "groupIndex": 0,
  8002. "_id": ""
  8003. },
  8004. {
  8005. "__type__": "cc.Node",
  8006. "_name": "di",
  8007. "_objFlags": 0,
  8008. "_parent": {
  8009. "__id__": 210
  8010. },
  8011. "_children": [],
  8012. "_active": false,
  8013. "_components": [
  8014. {
  8015. "__id__": 212
  8016. }
  8017. ],
  8018. "_prefab": {
  8019. "__id__": 213
  8020. },
  8021. "_opacity": 255,
  8022. "_color": {
  8023. "__type__": "cc.Color",
  8024. "r": 255,
  8025. "g": 255,
  8026. "b": 255,
  8027. "a": 255
  8028. },
  8029. "_contentSize": {
  8030. "__type__": "cc.Size",
  8031. "width": 512,
  8032. "height": 160
  8033. },
  8034. "_anchorPoint": {
  8035. "__type__": "cc.Vec2",
  8036. "x": 0.5,
  8037. "y": 0.5
  8038. },
  8039. "_trs": {
  8040. "__type__": "TypedArray",
  8041. "ctor": "Float64Array",
  8042. "array": [
  8043. 0,
  8044. 0,
  8045. 0,
  8046. 0,
  8047. 0,
  8048. 0,
  8049. 1,
  8050. 1,
  8051. 1,
  8052. 1
  8053. ]
  8054. },
  8055. "_eulerAngles": {
  8056. "__type__": "cc.Vec3",
  8057. "x": 0,
  8058. "y": 0,
  8059. "z": 0
  8060. },
  8061. "_skewX": 0,
  8062. "_skewY": 0,
  8063. "_is3DNode": false,
  8064. "_groupIndex": 0,
  8065. "groupIndex": 0,
  8066. "_id": ""
  8067. },
  8068. {
  8069. "__type__": "cc.Sprite",
  8070. "_name": "",
  8071. "_objFlags": 0,
  8072. "node": {
  8073. "__id__": 211
  8074. },
  8075. "_enabled": true,
  8076. "_materials": [
  8077. {
  8078. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8079. }
  8080. ],
  8081. "_srcBlendFactor": 770,
  8082. "_dstBlendFactor": 771,
  8083. "_spriteFrame": {
  8084. "__uuid__": "6d9d4bf6-e66b-40aa-8e1b-609c88010983"
  8085. },
  8086. "_type": 1,
  8087. "_sizeMode": 0,
  8088. "_fillType": 0,
  8089. "_fillCenter": {
  8090. "__type__": "cc.Vec2",
  8091. "x": 0,
  8092. "y": 0
  8093. },
  8094. "_fillStart": 0,
  8095. "_fillRange": 0,
  8096. "_isTrimmedMode": true,
  8097. "_atlas": null,
  8098. "_id": ""
  8099. },
  8100. {
  8101. "__type__": "cc.PrefabInfo",
  8102. "root": {
  8103. "__id__": 1
  8104. },
  8105. "asset": {
  8106. "__id__": 0
  8107. },
  8108. "fileId": "dfmiV6hKVEfrYFFcC+iAuw",
  8109. "sync": false
  8110. },
  8111. {
  8112. "__type__": "cc.Node",
  8113. "_name": "bottom",
  8114. "_objFlags": 0,
  8115. "_parent": {
  8116. "__id__": 210
  8117. },
  8118. "_children": [
  8119. {
  8120. "__id__": 215
  8121. },
  8122. {
  8123. "__id__": 218
  8124. }
  8125. ],
  8126. "_active": true,
  8127. "_components": [
  8128. {
  8129. "__id__": 221
  8130. }
  8131. ],
  8132. "_prefab": {
  8133. "__id__": 222
  8134. },
  8135. "_opacity": 255,
  8136. "_color": {
  8137. "__type__": "cc.Color",
  8138. "r": 255,
  8139. "g": 255,
  8140. "b": 255,
  8141. "a": 255
  8142. },
  8143. "_contentSize": {
  8144. "__type__": "cc.Size",
  8145. "width": 512,
  8146. "height": 50
  8147. },
  8148. "_anchorPoint": {
  8149. "__type__": "cc.Vec2",
  8150. "x": 0.5,
  8151. "y": 0.5
  8152. },
  8153. "_trs": {
  8154. "__type__": "TypedArray",
  8155. "ctor": "Float64Array",
  8156. "array": [
  8157. 0,
  8158. -55,
  8159. 0,
  8160. 0,
  8161. 0,
  8162. 0,
  8163. 1,
  8164. 1,
  8165. 1,
  8166. 1
  8167. ]
  8168. },
  8169. "_eulerAngles": {
  8170. "__type__": "cc.Vec3",
  8171. "x": 0,
  8172. "y": 0,
  8173. "z": 0
  8174. },
  8175. "_skewX": 0,
  8176. "_skewY": 0,
  8177. "_is3DNode": false,
  8178. "_groupIndex": 0,
  8179. "groupIndex": 0,
  8180. "_id": ""
  8181. },
  8182. {
  8183. "__type__": "cc.Node",
  8184. "_name": "label",
  8185. "_objFlags": 0,
  8186. "_parent": {
  8187. "__id__": 214
  8188. },
  8189. "_children": [],
  8190. "_active": true,
  8191. "_components": [
  8192. {
  8193. "__id__": 216
  8194. }
  8195. ],
  8196. "_prefab": {
  8197. "__id__": 217
  8198. },
  8199. "_opacity": 255,
  8200. "_color": {
  8201. "__type__": "cc.Color",
  8202. "r": 144,
  8203. "g": 85,
  8204. "b": 53,
  8205. "a": 255
  8206. },
  8207. "_contentSize": {
  8208. "__type__": "cc.Size",
  8209. "width": 84,
  8210. "height": 35.28
  8211. },
  8212. "_anchorPoint": {
  8213. "__type__": "cc.Vec2",
  8214. "x": 0.5,
  8215. "y": 0.5
  8216. },
  8217. "_trs": {
  8218. "__type__": "TypedArray",
  8219. "ctor": "Float64Array",
  8220. "array": [
  8221. 0,
  8222. 0,
  8223. 0,
  8224. 0,
  8225. 0,
  8226. 0,
  8227. 1,
  8228. 1,
  8229. 1,
  8230. 1
  8231. ]
  8232. },
  8233. "_eulerAngles": {
  8234. "__type__": "cc.Vec3",
  8235. "x": 0,
  8236. "y": 0,
  8237. "z": 0
  8238. },
  8239. "_skewX": 0,
  8240. "_skewY": 0,
  8241. "_is3DNode": false,
  8242. "_groupIndex": 0,
  8243. "groupIndex": 0,
  8244. "_id": ""
  8245. },
  8246. {
  8247. "__type__": "cc.Label",
  8248. "_name": "",
  8249. "_objFlags": 0,
  8250. "node": {
  8251. "__id__": 215
  8252. },
  8253. "_enabled": true,
  8254. "_materials": [
  8255. {
  8256. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8257. }
  8258. ],
  8259. "_srcBlendFactor": 770,
  8260. "_dstBlendFactor": 771,
  8261. "_string": "第七天",
  8262. "_N$string": "第七天",
  8263. "_fontSize": 28,
  8264. "_lineHeight": 28,
  8265. "_enableWrapText": true,
  8266. "_N$file": null,
  8267. "_isSystemFontUsed": true,
  8268. "_spacingX": 0,
  8269. "_batchAsBitmap": false,
  8270. "_styleFlags": 1,
  8271. "_underlineHeight": 0,
  8272. "_N$horizontalAlign": 1,
  8273. "_N$verticalAlign": 1,
  8274. "_N$fontFamily": "Arial",
  8275. "_N$overflow": 0,
  8276. "_N$cacheMode": 1,
  8277. "_id": ""
  8278. },
  8279. {
  8280. "__type__": "cc.PrefabInfo",
  8281. "root": {
  8282. "__id__": 1
  8283. },
  8284. "asset": {
  8285. "__id__": 0
  8286. },
  8287. "fileId": "f7s1eWLWhBvZrfmZ2iPhtR",
  8288. "sync": false
  8289. },
  8290. {
  8291. "__type__": "cc.Node",
  8292. "_name": "videoIcon",
  8293. "_objFlags": 0,
  8294. "_parent": {
  8295. "__id__": 214
  8296. },
  8297. "_children": [],
  8298. "_active": false,
  8299. "_components": [
  8300. {
  8301. "__id__": 219
  8302. }
  8303. ],
  8304. "_prefab": {
  8305. "__id__": 220
  8306. },
  8307. "_opacity": 255,
  8308. "_color": {
  8309. "__type__": "cc.Color",
  8310. "r": 255,
  8311. "g": 255,
  8312. "b": 255,
  8313. "a": 255
  8314. },
  8315. "_contentSize": {
  8316. "__type__": "cc.Size",
  8317. "width": 56,
  8318. "height": 43
  8319. },
  8320. "_anchorPoint": {
  8321. "__type__": "cc.Vec2",
  8322. "x": 0.5,
  8323. "y": 0.5
  8324. },
  8325. "_trs": {
  8326. "__type__": "TypedArray",
  8327. "ctor": "Float64Array",
  8328. "array": [
  8329. 40,
  8330. 0,
  8331. 0,
  8332. 0,
  8333. 0,
  8334. 0,
  8335. 1,
  8336. 0.5,
  8337. 0.5,
  8338. 1
  8339. ]
  8340. },
  8341. "_eulerAngles": {
  8342. "__type__": "cc.Vec3",
  8343. "x": 0,
  8344. "y": 0,
  8345. "z": 0
  8346. },
  8347. "_skewX": 0,
  8348. "_skewY": 0,
  8349. "_is3DNode": false,
  8350. "_groupIndex": 0,
  8351. "groupIndex": 0,
  8352. "_id": ""
  8353. },
  8354. {
  8355. "__type__": "cc.Sprite",
  8356. "_name": "",
  8357. "_objFlags": 0,
  8358. "node": {
  8359. "__id__": 218
  8360. },
  8361. "_enabled": true,
  8362. "_materials": [
  8363. {
  8364. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8365. }
  8366. ],
  8367. "_srcBlendFactor": 770,
  8368. "_dstBlendFactor": 771,
  8369. "_spriteFrame": {
  8370. "__uuid__": "a15d6951-f9a3-45b7-b099-8116c6a78eea"
  8371. },
  8372. "_type": 0,
  8373. "_sizeMode": 1,
  8374. "_fillType": 0,
  8375. "_fillCenter": {
  8376. "__type__": "cc.Vec2",
  8377. "x": 0,
  8378. "y": 0
  8379. },
  8380. "_fillStart": 0,
  8381. "_fillRange": 0,
  8382. "_isTrimmedMode": true,
  8383. "_atlas": null,
  8384. "_id": ""
  8385. },
  8386. {
  8387. "__type__": "cc.PrefabInfo",
  8388. "root": {
  8389. "__id__": 1
  8390. },
  8391. "asset": {
  8392. "__id__": 0
  8393. },
  8394. "fileId": "71YC0GNj5M0LRgZJVl+P8y",
  8395. "sync": false
  8396. },
  8397. {
  8398. "__type__": "cc.Sprite",
  8399. "_name": "",
  8400. "_objFlags": 0,
  8401. "node": {
  8402. "__id__": 214
  8403. },
  8404. "_enabled": true,
  8405. "_materials": [
  8406. {
  8407. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8408. }
  8409. ],
  8410. "_srcBlendFactor": 770,
  8411. "_dstBlendFactor": 771,
  8412. "_spriteFrame": {
  8413. "__uuid__": "80d1c3b0-9a53-434a-ae8e-fc3c77e6e4d0"
  8414. },
  8415. "_type": 1,
  8416. "_sizeMode": 0,
  8417. "_fillType": 0,
  8418. "_fillCenter": {
  8419. "__type__": "cc.Vec2",
  8420. "x": 0,
  8421. "y": 0
  8422. },
  8423. "_fillStart": 0,
  8424. "_fillRange": 0,
  8425. "_isTrimmedMode": true,
  8426. "_atlas": null,
  8427. "_id": ""
  8428. },
  8429. {
  8430. "__type__": "cc.PrefabInfo",
  8431. "root": {
  8432. "__id__": 1
  8433. },
  8434. "asset": {
  8435. "__id__": 0
  8436. },
  8437. "fileId": "99Gr+9YLxMJrT0UJqNAc3H",
  8438. "sync": false
  8439. },
  8440. {
  8441. "__type__": "cc.Node",
  8442. "_name": "item",
  8443. "_objFlags": 0,
  8444. "_parent": {
  8445. "__id__": 210
  8446. },
  8447. "_children": [
  8448. {
  8449. "__id__": 224
  8450. },
  8451. {
  8452. "__id__": 227
  8453. },
  8454. {
  8455. "__id__": 230
  8456. }
  8457. ],
  8458. "_active": true,
  8459. "_components": [],
  8460. "_prefab": {
  8461. "__id__": 261
  8462. },
  8463. "_opacity": 255,
  8464. "_color": {
  8465. "__type__": "cc.Color",
  8466. "r": 255,
  8467. "g": 255,
  8468. "b": 255,
  8469. "a": 255
  8470. },
  8471. "_contentSize": {
  8472. "__type__": "cc.Size",
  8473. "width": 0,
  8474. "height": 0
  8475. },
  8476. "_anchorPoint": {
  8477. "__type__": "cc.Vec2",
  8478. "x": 0.5,
  8479. "y": 0.5
  8480. },
  8481. "_trs": {
  8482. "__type__": "TypedArray",
  8483. "ctor": "Float64Array",
  8484. "array": [
  8485. 0,
  8486. 0,
  8487. 0,
  8488. 0,
  8489. 0,
  8490. 0,
  8491. 1,
  8492. 1,
  8493. 1,
  8494. 1
  8495. ]
  8496. },
  8497. "_eulerAngles": {
  8498. "__type__": "cc.Vec3",
  8499. "x": 0,
  8500. "y": 0,
  8501. "z": 0
  8502. },
  8503. "_skewX": 0,
  8504. "_skewY": 0,
  8505. "_is3DNode": false,
  8506. "_groupIndex": 0,
  8507. "groupIndex": 0,
  8508. "_id": ""
  8509. },
  8510. {
  8511. "__type__": "cc.Node",
  8512. "_name": "label",
  8513. "_objFlags": 0,
  8514. "_parent": {
  8515. "__id__": 223
  8516. },
  8517. "_children": [],
  8518. "_active": true,
  8519. "_components": [
  8520. {
  8521. "__id__": 225
  8522. }
  8523. ],
  8524. "_prefab": {
  8525. "__id__": 226
  8526. },
  8527. "_opacity": 255,
  8528. "_color": {
  8529. "__type__": "cc.Color",
  8530. "r": 255,
  8531. "g": 255,
  8532. "b": 255,
  8533. "a": 255
  8534. },
  8535. "_contentSize": {
  8536. "__type__": "cc.Size",
  8537. "width": 206,
  8538. "height": 35
  8539. },
  8540. "_anchorPoint": {
  8541. "__type__": "cc.Vec2",
  8542. "x": 0.5,
  8543. "y": 0.5
  8544. },
  8545. "_trs": {
  8546. "__type__": "TypedArray",
  8547. "ctor": "Float64Array",
  8548. "array": [
  8549. -131.207,
  8550. 48.754,
  8551. 0,
  8552. 0,
  8553. 0,
  8554. 0,
  8555. 1,
  8556. 1,
  8557. 1,
  8558. 1
  8559. ]
  8560. },
  8561. "_eulerAngles": {
  8562. "__type__": "cc.Vec3",
  8563. "x": 0,
  8564. "y": 0,
  8565. "z": 0
  8566. },
  8567. "_skewX": 0,
  8568. "_skewY": 0,
  8569. "_is3DNode": false,
  8570. "_groupIndex": 0,
  8571. "groupIndex": 0,
  8572. "_id": ""
  8573. },
  8574. {
  8575. "__type__": "cc.Sprite",
  8576. "_name": "",
  8577. "_objFlags": 0,
  8578. "node": {
  8579. "__id__": 224
  8580. },
  8581. "_enabled": true,
  8582. "_materials": [
  8583. {
  8584. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8585. }
  8586. ],
  8587. "_srcBlendFactor": 770,
  8588. "_dstBlendFactor": 771,
  8589. "_spriteFrame": {
  8590. "__uuid__": "5d147ced-232c-446f-bb23-6926cb74e400"
  8591. },
  8592. "_type": 0,
  8593. "_sizeMode": 1,
  8594. "_fillType": 0,
  8595. "_fillCenter": {
  8596. "__type__": "cc.Vec2",
  8597. "x": 0,
  8598. "y": 0
  8599. },
  8600. "_fillStart": 0,
  8601. "_fillRange": 0,
  8602. "_isTrimmedMode": true,
  8603. "_atlas": null,
  8604. "_id": ""
  8605. },
  8606. {
  8607. "__type__": "cc.PrefabInfo",
  8608. "root": {
  8609. "__id__": 1
  8610. },
  8611. "asset": {
  8612. "__id__": 0
  8613. },
  8614. "fileId": "13sZJSbolJxpJUq5DXVGWr",
  8615. "sync": false
  8616. },
  8617. {
  8618. "__type__": "cc.Node",
  8619. "_name": "gift",
  8620. "_objFlags": 0,
  8621. "_parent": {
  8622. "__id__": 223
  8623. },
  8624. "_children": [],
  8625. "_active": true,
  8626. "_components": [
  8627. {
  8628. "__id__": 228
  8629. }
  8630. ],
  8631. "_prefab": {
  8632. "__id__": 229
  8633. },
  8634. "_opacity": 255,
  8635. "_color": {
  8636. "__type__": "cc.Color",
  8637. "r": 255,
  8638. "g": 255,
  8639. "b": 255,
  8640. "a": 255
  8641. },
  8642. "_contentSize": {
  8643. "__type__": "cc.Size",
  8644. "width": 350,
  8645. "height": 160
  8646. },
  8647. "_anchorPoint": {
  8648. "__type__": "cc.Vec2",
  8649. "x": 0.5,
  8650. "y": 0.5
  8651. },
  8652. "_trs": {
  8653. "__type__": "TypedArray",
  8654. "ctor": "Float64Array",
  8655. "array": [
  8656. 79,
  8657. 0,
  8658. 0,
  8659. 0,
  8660. 0,
  8661. 0,
  8662. 1,
  8663. 1,
  8664. 1,
  8665. 1
  8666. ]
  8667. },
  8668. "_eulerAngles": {
  8669. "__type__": "cc.Vec3",
  8670. "x": 0,
  8671. "y": 0,
  8672. "z": 0
  8673. },
  8674. "_skewX": 0,
  8675. "_skewY": 0,
  8676. "_is3DNode": false,
  8677. "_groupIndex": 0,
  8678. "groupIndex": 0,
  8679. "_id": ""
  8680. },
  8681. {
  8682. "__type__": "cc.Sprite",
  8683. "_name": "",
  8684. "_objFlags": 0,
  8685. "node": {
  8686. "__id__": 227
  8687. },
  8688. "_enabled": true,
  8689. "_materials": [
  8690. {
  8691. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8692. }
  8693. ],
  8694. "_srcBlendFactor": 770,
  8695. "_dstBlendFactor": 771,
  8696. "_spriteFrame": {
  8697. "__uuid__": "cc01275c-b610-4eb5-a701-6f5e77423271"
  8698. },
  8699. "_type": 0,
  8700. "_sizeMode": 1,
  8701. "_fillType": 0,
  8702. "_fillCenter": {
  8703. "__type__": "cc.Vec2",
  8704. "x": 0,
  8705. "y": 0
  8706. },
  8707. "_fillStart": 0,
  8708. "_fillRange": 0,
  8709. "_isTrimmedMode": true,
  8710. "_atlas": null,
  8711. "_id": ""
  8712. },
  8713. {
  8714. "__type__": "cc.PrefabInfo",
  8715. "root": {
  8716. "__id__": 1
  8717. },
  8718. "asset": {
  8719. "__id__": 0
  8720. },
  8721. "fileId": "7b7duS78JLcLXN1JT9p5Ij",
  8722. "sync": false
  8723. },
  8724. {
  8725. "__type__": "cc.Node",
  8726. "_name": "bubble",
  8727. "_objFlags": 0,
  8728. "_parent": {
  8729. "__id__": 223
  8730. },
  8731. "_children": [
  8732. {
  8733. "__id__": 231
  8734. },
  8735. {
  8736. "__id__": 238
  8737. },
  8738. {
  8739. "__id__": 245
  8740. },
  8741. {
  8742. "__id__": 252
  8743. }
  8744. ],
  8745. "_active": true,
  8746. "_components": [
  8747. {
  8748. "__id__": 259
  8749. }
  8750. ],
  8751. "_prefab": {
  8752. "__id__": 260
  8753. },
  8754. "_opacity": 255,
  8755. "_color": {
  8756. "__type__": "cc.Color",
  8757. "r": 255,
  8758. "g": 255,
  8759. "b": 255,
  8760. "a": 255
  8761. },
  8762. "_contentSize": {
  8763. "__type__": "cc.Size",
  8764. "width": 190,
  8765. "height": 50
  8766. },
  8767. "_anchorPoint": {
  8768. "__type__": "cc.Vec2",
  8769. "x": 0.5,
  8770. "y": 0.5
  8771. },
  8772. "_trs": {
  8773. "__type__": "TypedArray",
  8774. "ctor": "Float64Array",
  8775. "array": [
  8776. -136,
  8777. 0,
  8778. 0,
  8779. 0,
  8780. 0,
  8781. 0,
  8782. 1,
  8783. 1,
  8784. 1,
  8785. 1
  8786. ]
  8787. },
  8788. "_eulerAngles": {
  8789. "__type__": "cc.Vec3",
  8790. "x": 0,
  8791. "y": 0,
  8792. "z": 0
  8793. },
  8794. "_skewX": 0,
  8795. "_skewY": 0,
  8796. "_is3DNode": false,
  8797. "_groupIndex": 0,
  8798. "groupIndex": 0,
  8799. "_id": ""
  8800. },
  8801. {
  8802. "__type__": "cc.Node",
  8803. "_name": "bubble",
  8804. "_objFlags": 0,
  8805. "_parent": {
  8806. "__id__": 230
  8807. },
  8808. "_children": [
  8809. {
  8810. "__id__": 232
  8811. }
  8812. ],
  8813. "_active": true,
  8814. "_components": [
  8815. {
  8816. "__id__": 236
  8817. }
  8818. ],
  8819. "_prefab": {
  8820. "__id__": 237
  8821. },
  8822. "_opacity": 255,
  8823. "_color": {
  8824. "__type__": "cc.Color",
  8825. "r": 255,
  8826. "g": 255,
  8827. "b": 255,
  8828. "a": 255
  8829. },
  8830. "_contentSize": {
  8831. "__type__": "cc.Size",
  8832. "width": 40,
  8833. "height": 40
  8834. },
  8835. "_anchorPoint": {
  8836. "__type__": "cc.Vec2",
  8837. "x": 0.5,
  8838. "y": 0.5
  8839. },
  8840. "_trs": {
  8841. "__type__": "TypedArray",
  8842. "ctor": "Float64Array",
  8843. "array": [
  8844. -75,
  8845. 0,
  8846. 0,
  8847. 0,
  8848. 0,
  8849. 0,
  8850. 1,
  8851. 1,
  8852. 1,
  8853. 1
  8854. ]
  8855. },
  8856. "_eulerAngles": {
  8857. "__type__": "cc.Vec3",
  8858. "x": 0,
  8859. "y": 0,
  8860. "z": 0
  8861. },
  8862. "_skewX": 0,
  8863. "_skewY": 0,
  8864. "_is3DNode": false,
  8865. "_groupIndex": 0,
  8866. "groupIndex": 0,
  8867. "_id": ""
  8868. },
  8869. {
  8870. "__type__": "cc.Node",
  8871. "_name": "num",
  8872. "_objFlags": 0,
  8873. "_parent": {
  8874. "__id__": 231
  8875. },
  8876. "_children": [],
  8877. "_active": true,
  8878. "_components": [
  8879. {
  8880. "__id__": 233
  8881. },
  8882. {
  8883. "__id__": 234
  8884. }
  8885. ],
  8886. "_prefab": {
  8887. "__id__": 235
  8888. },
  8889. "_opacity": 255,
  8890. "_color": {
  8891. "__type__": "cc.Color",
  8892. "r": 255,
  8893. "g": 255,
  8894. "b": 255,
  8895. "a": 255
  8896. },
  8897. "_contentSize": {
  8898. "__type__": "cc.Size",
  8899. "width": 24.02,
  8900. "height": 26.68
  8901. },
  8902. "_anchorPoint": {
  8903. "__type__": "cc.Vec2",
  8904. "x": 0.5,
  8905. "y": 0.5
  8906. },
  8907. "_trs": {
  8908. "__type__": "TypedArray",
  8909. "ctor": "Float64Array",
  8910. "array": [
  8911. 14,
  8912. -9,
  8913. 0,
  8914. 0,
  8915. 0,
  8916. 0,
  8917. 1,
  8918. 1,
  8919. 1,
  8920. 1
  8921. ]
  8922. },
  8923. "_eulerAngles": {
  8924. "__type__": "cc.Vec3",
  8925. "x": 0,
  8926. "y": 0,
  8927. "z": 0
  8928. },
  8929. "_skewX": 0,
  8930. "_skewY": 0,
  8931. "_is3DNode": false,
  8932. "_groupIndex": 0,
  8933. "groupIndex": 0,
  8934. "_id": ""
  8935. },
  8936. {
  8937. "__type__": "cc.Label",
  8938. "_name": "",
  8939. "_objFlags": 0,
  8940. "node": {
  8941. "__id__": 232
  8942. },
  8943. "_enabled": true,
  8944. "_materials": [
  8945. {
  8946. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8947. }
  8948. ],
  8949. "_srcBlendFactor": 770,
  8950. "_dstBlendFactor": 771,
  8951. "_string": "x2",
  8952. "_N$string": "x2",
  8953. "_fontSize": 18,
  8954. "_lineHeight": 18,
  8955. "_enableWrapText": true,
  8956. "_N$file": null,
  8957. "_isSystemFontUsed": true,
  8958. "_spacingX": 0,
  8959. "_batchAsBitmap": false,
  8960. "_styleFlags": 1,
  8961. "_underlineHeight": 0,
  8962. "_N$horizontalAlign": 1,
  8963. "_N$verticalAlign": 1,
  8964. "_N$fontFamily": "Arial",
  8965. "_N$overflow": 0,
  8966. "_N$cacheMode": 1,
  8967. "_id": ""
  8968. },
  8969. {
  8970. "__type__": "cc.LabelOutline",
  8971. "_name": "",
  8972. "_objFlags": 0,
  8973. "node": {
  8974. "__id__": 232
  8975. },
  8976. "_enabled": true,
  8977. "_color": {
  8978. "__type__": "cc.Color",
  8979. "r": 113,
  8980. "g": 15,
  8981. "b": 0,
  8982. "a": 255
  8983. },
  8984. "_width": 2,
  8985. "_id": ""
  8986. },
  8987. {
  8988. "__type__": "cc.PrefabInfo",
  8989. "root": {
  8990. "__id__": 1
  8991. },
  8992. "asset": {
  8993. "__id__": 0
  8994. },
  8995. "fileId": "07aTLVUQtJVLPi2EaMtd13",
  8996. "sync": false
  8997. },
  8998. {
  8999. "__type__": "cc.Sprite",
  9000. "_name": "",
  9001. "_objFlags": 0,
  9002. "node": {
  9003. "__id__": 231
  9004. },
  9005. "_enabled": true,
  9006. "_materials": [
  9007. {
  9008. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9009. }
  9010. ],
  9011. "_srcBlendFactor": 770,
  9012. "_dstBlendFactor": 771,
  9013. "_spriteFrame": {
  9014. "__uuid__": "5dbfd41d-1e0c-4834-a2b4-bb81de1f6eea"
  9015. },
  9016. "_type": 0,
  9017. "_sizeMode": 0,
  9018. "_fillType": 0,
  9019. "_fillCenter": {
  9020. "__type__": "cc.Vec2",
  9021. "x": 0,
  9022. "y": 0
  9023. },
  9024. "_fillStart": 0,
  9025. "_fillRange": 0,
  9026. "_isTrimmedMode": true,
  9027. "_atlas": null,
  9028. "_id": ""
  9029. },
  9030. {
  9031. "__type__": "cc.PrefabInfo",
  9032. "root": {
  9033. "__id__": 1
  9034. },
  9035. "asset": {
  9036. "__id__": 0
  9037. },
  9038. "fileId": "b8NxpiF5dNh6of13AjOS2t",
  9039. "sync": false
  9040. },
  9041. {
  9042. "__type__": "cc.Node",
  9043. "_name": "bubble",
  9044. "_objFlags": 0,
  9045. "_parent": {
  9046. "__id__": 230
  9047. },
  9048. "_children": [
  9049. {
  9050. "__id__": 239
  9051. }
  9052. ],
  9053. "_active": true,
  9054. "_components": [
  9055. {
  9056. "__id__": 243
  9057. }
  9058. ],
  9059. "_prefab": {
  9060. "__id__": 244
  9061. },
  9062. "_opacity": 255,
  9063. "_color": {
  9064. "__type__": "cc.Color",
  9065. "r": 255,
  9066. "g": 255,
  9067. "b": 255,
  9068. "a": 255
  9069. },
  9070. "_contentSize": {
  9071. "__type__": "cc.Size",
  9072. "width": 40,
  9073. "height": 40
  9074. },
  9075. "_anchorPoint": {
  9076. "__type__": "cc.Vec2",
  9077. "x": 0.5,
  9078. "y": 0.5
  9079. },
  9080. "_trs": {
  9081. "__type__": "TypedArray",
  9082. "ctor": "Float64Array",
  9083. "array": [
  9084. -25,
  9085. 0,
  9086. 0,
  9087. 0,
  9088. 0,
  9089. 0,
  9090. 1,
  9091. 1,
  9092. 1,
  9093. 1
  9094. ]
  9095. },
  9096. "_eulerAngles": {
  9097. "__type__": "cc.Vec3",
  9098. "x": 0,
  9099. "y": 0,
  9100. "z": 0
  9101. },
  9102. "_skewX": 0,
  9103. "_skewY": 0,
  9104. "_is3DNode": false,
  9105. "_groupIndex": 0,
  9106. "groupIndex": 0,
  9107. "_id": ""
  9108. },
  9109. {
  9110. "__type__": "cc.Node",
  9111. "_name": "num",
  9112. "_objFlags": 0,
  9113. "_parent": {
  9114. "__id__": 238
  9115. },
  9116. "_children": [],
  9117. "_active": true,
  9118. "_components": [
  9119. {
  9120. "__id__": 240
  9121. },
  9122. {
  9123. "__id__": 241
  9124. }
  9125. ],
  9126. "_prefab": {
  9127. "__id__": 242
  9128. },
  9129. "_opacity": 255,
  9130. "_color": {
  9131. "__type__": "cc.Color",
  9132. "r": 255,
  9133. "g": 255,
  9134. "b": 255,
  9135. "a": 255
  9136. },
  9137. "_contentSize": {
  9138. "__type__": "cc.Size",
  9139. "width": 24.02,
  9140. "height": 26.68
  9141. },
  9142. "_anchorPoint": {
  9143. "__type__": "cc.Vec2",
  9144. "x": 0.5,
  9145. "y": 0.5
  9146. },
  9147. "_trs": {
  9148. "__type__": "TypedArray",
  9149. "ctor": "Float64Array",
  9150. "array": [
  9151. 14,
  9152. -9,
  9153. 0,
  9154. 0,
  9155. 0,
  9156. 0,
  9157. 1,
  9158. 1,
  9159. 1,
  9160. 1
  9161. ]
  9162. },
  9163. "_eulerAngles": {
  9164. "__type__": "cc.Vec3",
  9165. "x": 0,
  9166. "y": 0,
  9167. "z": 0
  9168. },
  9169. "_skewX": 0,
  9170. "_skewY": 0,
  9171. "_is3DNode": false,
  9172. "_groupIndex": 0,
  9173. "groupIndex": 0,
  9174. "_id": ""
  9175. },
  9176. {
  9177. "__type__": "cc.Label",
  9178. "_name": "",
  9179. "_objFlags": 0,
  9180. "node": {
  9181. "__id__": 239
  9182. },
  9183. "_enabled": true,
  9184. "_materials": [
  9185. {
  9186. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9187. }
  9188. ],
  9189. "_srcBlendFactor": 770,
  9190. "_dstBlendFactor": 771,
  9191. "_string": "x2",
  9192. "_N$string": "x2",
  9193. "_fontSize": 18,
  9194. "_lineHeight": 18,
  9195. "_enableWrapText": true,
  9196. "_N$file": null,
  9197. "_isSystemFontUsed": true,
  9198. "_spacingX": 0,
  9199. "_batchAsBitmap": false,
  9200. "_styleFlags": 1,
  9201. "_underlineHeight": 0,
  9202. "_N$horizontalAlign": 1,
  9203. "_N$verticalAlign": 1,
  9204. "_N$fontFamily": "Arial",
  9205. "_N$overflow": 0,
  9206. "_N$cacheMode": 1,
  9207. "_id": ""
  9208. },
  9209. {
  9210. "__type__": "cc.LabelOutline",
  9211. "_name": "",
  9212. "_objFlags": 0,
  9213. "node": {
  9214. "__id__": 239
  9215. },
  9216. "_enabled": true,
  9217. "_color": {
  9218. "__type__": "cc.Color",
  9219. "r": 113,
  9220. "g": 15,
  9221. "b": 0,
  9222. "a": 255
  9223. },
  9224. "_width": 2,
  9225. "_id": ""
  9226. },
  9227. {
  9228. "__type__": "cc.PrefabInfo",
  9229. "root": {
  9230. "__id__": 1
  9231. },
  9232. "asset": {
  9233. "__id__": 0
  9234. },
  9235. "fileId": "f45hUh0RRPR7JJFCUHmrOZ",
  9236. "sync": false
  9237. },
  9238. {
  9239. "__type__": "cc.Sprite",
  9240. "_name": "",
  9241. "_objFlags": 0,
  9242. "node": {
  9243. "__id__": 238
  9244. },
  9245. "_enabled": true,
  9246. "_materials": [
  9247. {
  9248. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9249. }
  9250. ],
  9251. "_srcBlendFactor": 770,
  9252. "_dstBlendFactor": 771,
  9253. "_spriteFrame": {
  9254. "__uuid__": "8d38be3e-db2c-408e-880d-64f534baf521"
  9255. },
  9256. "_type": 0,
  9257. "_sizeMode": 0,
  9258. "_fillType": 0,
  9259. "_fillCenter": {
  9260. "__type__": "cc.Vec2",
  9261. "x": 0,
  9262. "y": 0
  9263. },
  9264. "_fillStart": 0,
  9265. "_fillRange": 0,
  9266. "_isTrimmedMode": true,
  9267. "_atlas": null,
  9268. "_id": ""
  9269. },
  9270. {
  9271. "__type__": "cc.PrefabInfo",
  9272. "root": {
  9273. "__id__": 1
  9274. },
  9275. "asset": {
  9276. "__id__": 0
  9277. },
  9278. "fileId": "8cKo1xbrhGh5LdAaJyBswP",
  9279. "sync": false
  9280. },
  9281. {
  9282. "__type__": "cc.Node",
  9283. "_name": "bubble",
  9284. "_objFlags": 0,
  9285. "_parent": {
  9286. "__id__": 230
  9287. },
  9288. "_children": [
  9289. {
  9290. "__id__": 246
  9291. }
  9292. ],
  9293. "_active": true,
  9294. "_components": [
  9295. {
  9296. "__id__": 250
  9297. }
  9298. ],
  9299. "_prefab": {
  9300. "__id__": 251
  9301. },
  9302. "_opacity": 255,
  9303. "_color": {
  9304. "__type__": "cc.Color",
  9305. "r": 255,
  9306. "g": 255,
  9307. "b": 255,
  9308. "a": 255
  9309. },
  9310. "_contentSize": {
  9311. "__type__": "cc.Size",
  9312. "width": 40,
  9313. "height": 40
  9314. },
  9315. "_anchorPoint": {
  9316. "__type__": "cc.Vec2",
  9317. "x": 0.5,
  9318. "y": 0.5
  9319. },
  9320. "_trs": {
  9321. "__type__": "TypedArray",
  9322. "ctor": "Float64Array",
  9323. "array": [
  9324. 25,
  9325. 0,
  9326. 0,
  9327. 0,
  9328. 0,
  9329. 0,
  9330. 1,
  9331. 1,
  9332. 1,
  9333. 1
  9334. ]
  9335. },
  9336. "_eulerAngles": {
  9337. "__type__": "cc.Vec3",
  9338. "x": 0,
  9339. "y": 0,
  9340. "z": 0
  9341. },
  9342. "_skewX": 0,
  9343. "_skewY": 0,
  9344. "_is3DNode": false,
  9345. "_groupIndex": 0,
  9346. "groupIndex": 0,
  9347. "_id": ""
  9348. },
  9349. {
  9350. "__type__": "cc.Node",
  9351. "_name": "num",
  9352. "_objFlags": 0,
  9353. "_parent": {
  9354. "__id__": 245
  9355. },
  9356. "_children": [],
  9357. "_active": true,
  9358. "_components": [
  9359. {
  9360. "__id__": 247
  9361. },
  9362. {
  9363. "__id__": 248
  9364. }
  9365. ],
  9366. "_prefab": {
  9367. "__id__": 249
  9368. },
  9369. "_opacity": 255,
  9370. "_color": {
  9371. "__type__": "cc.Color",
  9372. "r": 255,
  9373. "g": 255,
  9374. "b": 255,
  9375. "a": 255
  9376. },
  9377. "_contentSize": {
  9378. "__type__": "cc.Size",
  9379. "width": 24.02,
  9380. "height": 26.68
  9381. },
  9382. "_anchorPoint": {
  9383. "__type__": "cc.Vec2",
  9384. "x": 0.5,
  9385. "y": 0.5
  9386. },
  9387. "_trs": {
  9388. "__type__": "TypedArray",
  9389. "ctor": "Float64Array",
  9390. "array": [
  9391. 14,
  9392. -9,
  9393. 0,
  9394. 0,
  9395. 0,
  9396. 0,
  9397. 1,
  9398. 1,
  9399. 1,
  9400. 1
  9401. ]
  9402. },
  9403. "_eulerAngles": {
  9404. "__type__": "cc.Vec3",
  9405. "x": 0,
  9406. "y": 0,
  9407. "z": 0
  9408. },
  9409. "_skewX": 0,
  9410. "_skewY": 0,
  9411. "_is3DNode": false,
  9412. "_groupIndex": 0,
  9413. "groupIndex": 0,
  9414. "_id": ""
  9415. },
  9416. {
  9417. "__type__": "cc.Label",
  9418. "_name": "",
  9419. "_objFlags": 0,
  9420. "node": {
  9421. "__id__": 246
  9422. },
  9423. "_enabled": true,
  9424. "_materials": [
  9425. {
  9426. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9427. }
  9428. ],
  9429. "_srcBlendFactor": 770,
  9430. "_dstBlendFactor": 771,
  9431. "_string": "x2",
  9432. "_N$string": "x2",
  9433. "_fontSize": 18,
  9434. "_lineHeight": 18,
  9435. "_enableWrapText": true,
  9436. "_N$file": null,
  9437. "_isSystemFontUsed": true,
  9438. "_spacingX": 0,
  9439. "_batchAsBitmap": false,
  9440. "_styleFlags": 1,
  9441. "_underlineHeight": 0,
  9442. "_N$horizontalAlign": 1,
  9443. "_N$verticalAlign": 1,
  9444. "_N$fontFamily": "Arial",
  9445. "_N$overflow": 0,
  9446. "_N$cacheMode": 1,
  9447. "_id": ""
  9448. },
  9449. {
  9450. "__type__": "cc.LabelOutline",
  9451. "_name": "",
  9452. "_objFlags": 0,
  9453. "node": {
  9454. "__id__": 246
  9455. },
  9456. "_enabled": true,
  9457. "_color": {
  9458. "__type__": "cc.Color",
  9459. "r": 113,
  9460. "g": 15,
  9461. "b": 0,
  9462. "a": 255
  9463. },
  9464. "_width": 2,
  9465. "_id": ""
  9466. },
  9467. {
  9468. "__type__": "cc.PrefabInfo",
  9469. "root": {
  9470. "__id__": 1
  9471. },
  9472. "asset": {
  9473. "__id__": 0
  9474. },
  9475. "fileId": "59bKw1tz5MC6SVr8dWKVqk",
  9476. "sync": false
  9477. },
  9478. {
  9479. "__type__": "cc.Sprite",
  9480. "_name": "",
  9481. "_objFlags": 0,
  9482. "node": {
  9483. "__id__": 245
  9484. },
  9485. "_enabled": true,
  9486. "_materials": [
  9487. {
  9488. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9489. }
  9490. ],
  9491. "_srcBlendFactor": 770,
  9492. "_dstBlendFactor": 771,
  9493. "_spriteFrame": {
  9494. "__uuid__": "eb6a2bf0-79b5-42da-88ed-b2437323c8f4"
  9495. },
  9496. "_type": 0,
  9497. "_sizeMode": 0,
  9498. "_fillType": 0,
  9499. "_fillCenter": {
  9500. "__type__": "cc.Vec2",
  9501. "x": 0,
  9502. "y": 0
  9503. },
  9504. "_fillStart": 0,
  9505. "_fillRange": 0,
  9506. "_isTrimmedMode": true,
  9507. "_atlas": null,
  9508. "_id": ""
  9509. },
  9510. {
  9511. "__type__": "cc.PrefabInfo",
  9512. "root": {
  9513. "__id__": 1
  9514. },
  9515. "asset": {
  9516. "__id__": 0
  9517. },
  9518. "fileId": "4aNwFB/+xEdZnnYzB5pIN6",
  9519. "sync": false
  9520. },
  9521. {
  9522. "__type__": "cc.Node",
  9523. "_name": "bubble",
  9524. "_objFlags": 0,
  9525. "_parent": {
  9526. "__id__": 230
  9527. },
  9528. "_children": [
  9529. {
  9530. "__id__": 253
  9531. }
  9532. ],
  9533. "_active": true,
  9534. "_components": [
  9535. {
  9536. "__id__": 257
  9537. }
  9538. ],
  9539. "_prefab": {
  9540. "__id__": 258
  9541. },
  9542. "_opacity": 255,
  9543. "_color": {
  9544. "__type__": "cc.Color",
  9545. "r": 255,
  9546. "g": 255,
  9547. "b": 255,
  9548. "a": 255
  9549. },
  9550. "_contentSize": {
  9551. "__type__": "cc.Size",
  9552. "width": 40,
  9553. "height": 40
  9554. },
  9555. "_anchorPoint": {
  9556. "__type__": "cc.Vec2",
  9557. "x": 0.5,
  9558. "y": 0.5
  9559. },
  9560. "_trs": {
  9561. "__type__": "TypedArray",
  9562. "ctor": "Float64Array",
  9563. "array": [
  9564. 75,
  9565. 0,
  9566. 0,
  9567. 0,
  9568. 0,
  9569. 0,
  9570. 1,
  9571. 1,
  9572. 1,
  9573. 1
  9574. ]
  9575. },
  9576. "_eulerAngles": {
  9577. "__type__": "cc.Vec3",
  9578. "x": 0,
  9579. "y": 0,
  9580. "z": 0
  9581. },
  9582. "_skewX": 0,
  9583. "_skewY": 0,
  9584. "_is3DNode": false,
  9585. "_groupIndex": 0,
  9586. "groupIndex": 0,
  9587. "_id": ""
  9588. },
  9589. {
  9590. "__type__": "cc.Node",
  9591. "_name": "num",
  9592. "_objFlags": 0,
  9593. "_parent": {
  9594. "__id__": 252
  9595. },
  9596. "_children": [],
  9597. "_active": true,
  9598. "_components": [
  9599. {
  9600. "__id__": 254
  9601. },
  9602. {
  9603. "__id__": 255
  9604. }
  9605. ],
  9606. "_prefab": {
  9607. "__id__": 256
  9608. },
  9609. "_opacity": 255,
  9610. "_color": {
  9611. "__type__": "cc.Color",
  9612. "r": 255,
  9613. "g": 255,
  9614. "b": 255,
  9615. "a": 255
  9616. },
  9617. "_contentSize": {
  9618. "__type__": "cc.Size",
  9619. "width": 24.02,
  9620. "height": 26.68
  9621. },
  9622. "_anchorPoint": {
  9623. "__type__": "cc.Vec2",
  9624. "x": 0.5,
  9625. "y": 0.5
  9626. },
  9627. "_trs": {
  9628. "__type__": "TypedArray",
  9629. "ctor": "Float64Array",
  9630. "array": [
  9631. 14,
  9632. -9,
  9633. 0,
  9634. 0,
  9635. 0,
  9636. 0,
  9637. 1,
  9638. 1,
  9639. 1,
  9640. 1
  9641. ]
  9642. },
  9643. "_eulerAngles": {
  9644. "__type__": "cc.Vec3",
  9645. "x": 0,
  9646. "y": 0,
  9647. "z": 0
  9648. },
  9649. "_skewX": 0,
  9650. "_skewY": 0,
  9651. "_is3DNode": false,
  9652. "_groupIndex": 0,
  9653. "groupIndex": 0,
  9654. "_id": ""
  9655. },
  9656. {
  9657. "__type__": "cc.Label",
  9658. "_name": "",
  9659. "_objFlags": 0,
  9660. "node": {
  9661. "__id__": 253
  9662. },
  9663. "_enabled": true,
  9664. "_materials": [
  9665. {
  9666. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9667. }
  9668. ],
  9669. "_srcBlendFactor": 770,
  9670. "_dstBlendFactor": 771,
  9671. "_string": "x2",
  9672. "_N$string": "x2",
  9673. "_fontSize": 18,
  9674. "_lineHeight": 18,
  9675. "_enableWrapText": true,
  9676. "_N$file": null,
  9677. "_isSystemFontUsed": true,
  9678. "_spacingX": 0,
  9679. "_batchAsBitmap": false,
  9680. "_styleFlags": 1,
  9681. "_underlineHeight": 0,
  9682. "_N$horizontalAlign": 1,
  9683. "_N$verticalAlign": 1,
  9684. "_N$fontFamily": "Arial",
  9685. "_N$overflow": 0,
  9686. "_N$cacheMode": 1,
  9687. "_id": ""
  9688. },
  9689. {
  9690. "__type__": "cc.LabelOutline",
  9691. "_name": "",
  9692. "_objFlags": 0,
  9693. "node": {
  9694. "__id__": 253
  9695. },
  9696. "_enabled": true,
  9697. "_color": {
  9698. "__type__": "cc.Color",
  9699. "r": 113,
  9700. "g": 15,
  9701. "b": 0,
  9702. "a": 255
  9703. },
  9704. "_width": 2,
  9705. "_id": ""
  9706. },
  9707. {
  9708. "__type__": "cc.PrefabInfo",
  9709. "root": {
  9710. "__id__": 1
  9711. },
  9712. "asset": {
  9713. "__id__": 0
  9714. },
  9715. "fileId": "65T+1E2ytIzolNzJAoj0vN",
  9716. "sync": false
  9717. },
  9718. {
  9719. "__type__": "cc.Sprite",
  9720. "_name": "",
  9721. "_objFlags": 0,
  9722. "node": {
  9723. "__id__": 252
  9724. },
  9725. "_enabled": true,
  9726. "_materials": [
  9727. {
  9728. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9729. }
  9730. ],
  9731. "_srcBlendFactor": 770,
  9732. "_dstBlendFactor": 771,
  9733. "_spriteFrame": {
  9734. "__uuid__": "07e00e00-877d-4bcf-8480-64dbc3d5366d"
  9735. },
  9736. "_type": 0,
  9737. "_sizeMode": 0,
  9738. "_fillType": 0,
  9739. "_fillCenter": {
  9740. "__type__": "cc.Vec2",
  9741. "x": 0,
  9742. "y": 0
  9743. },
  9744. "_fillStart": 0,
  9745. "_fillRange": 0,
  9746. "_isTrimmedMode": true,
  9747. "_atlas": null,
  9748. "_id": ""
  9749. },
  9750. {
  9751. "__type__": "cc.PrefabInfo",
  9752. "root": {
  9753. "__id__": 1
  9754. },
  9755. "asset": {
  9756. "__id__": 0
  9757. },
  9758. "fileId": "3fxpIR+tJOPaf8Q/T7cjmR",
  9759. "sync": false
  9760. },
  9761. {
  9762. "__type__": "cc.Layout",
  9763. "_name": "",
  9764. "_objFlags": 0,
  9765. "node": {
  9766. "__id__": 230
  9767. },
  9768. "_enabled": true,
  9769. "_layoutSize": {
  9770. "__type__": "cc.Size",
  9771. "width": 190,
  9772. "height": 50
  9773. },
  9774. "_resize": 1,
  9775. "_N$layoutType": 1,
  9776. "_N$cellSize": {
  9777. "__type__": "cc.Size",
  9778. "width": 40,
  9779. "height": 40
  9780. },
  9781. "_N$startAxis": 0,
  9782. "_N$paddingLeft": 0,
  9783. "_N$paddingRight": 0,
  9784. "_N$paddingTop": 0,
  9785. "_N$paddingBottom": 0,
  9786. "_N$spacingX": 10,
  9787. "_N$spacingY": 0,
  9788. "_N$verticalDirection": 1,
  9789. "_N$horizontalDirection": 0,
  9790. "_N$affectedByScale": false,
  9791. "_id": ""
  9792. },
  9793. {
  9794. "__type__": "cc.PrefabInfo",
  9795. "root": {
  9796. "__id__": 1
  9797. },
  9798. "asset": {
  9799. "__id__": 0
  9800. },
  9801. "fileId": "caaZEQ5ElMbbqnbmUP7mqB",
  9802. "sync": false
  9803. },
  9804. {
  9805. "__type__": "cc.PrefabInfo",
  9806. "root": {
  9807. "__id__": 1
  9808. },
  9809. "asset": {
  9810. "__id__": 0
  9811. },
  9812. "fileId": "f63dmx0NZFMrJqjFrLWQip",
  9813. "sync": false
  9814. },
  9815. {
  9816. "__type__": "cc.Sprite",
  9817. "_name": "",
  9818. "_objFlags": 0,
  9819. "node": {
  9820. "__id__": 210
  9821. },
  9822. "_enabled": true,
  9823. "_materials": [
  9824. {
  9825. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9826. }
  9827. ],
  9828. "_srcBlendFactor": 770,
  9829. "_dstBlendFactor": 771,
  9830. "_spriteFrame": {
  9831. "__uuid__": "66d456b9-18f2-4209-b61d-67b9997479d9"
  9832. },
  9833. "_type": 1,
  9834. "_sizeMode": 0,
  9835. "_fillType": 0,
  9836. "_fillCenter": {
  9837. "__type__": "cc.Vec2",
  9838. "x": 0,
  9839. "y": 0
  9840. },
  9841. "_fillStart": 0,
  9842. "_fillRange": 0,
  9843. "_isTrimmedMode": true,
  9844. "_atlas": null,
  9845. "_id": ""
  9846. },
  9847. {
  9848. "__type__": "cc.Button",
  9849. "_name": "",
  9850. "_objFlags": 0,
  9851. "node": {
  9852. "__id__": 210
  9853. },
  9854. "_enabled": true,
  9855. "_normalMaterial": null,
  9856. "_grayMaterial": null,
  9857. "duration": 0.1,
  9858. "zoomScale": 1.2,
  9859. "clickEvents": [],
  9860. "_N$interactable": true,
  9861. "_N$enableAutoGrayEffect": false,
  9862. "_N$transition": 0,
  9863. "transition": 0,
  9864. "_N$normalColor": {
  9865. "__type__": "cc.Color",
  9866. "r": 255,
  9867. "g": 255,
  9868. "b": 255,
  9869. "a": 255
  9870. },
  9871. "_N$pressedColor": {
  9872. "__type__": "cc.Color",
  9873. "r": 211,
  9874. "g": 211,
  9875. "b": 211,
  9876. "a": 255
  9877. },
  9878. "pressedColor": {
  9879. "__type__": "cc.Color",
  9880. "r": 211,
  9881. "g": 211,
  9882. "b": 211,
  9883. "a": 255
  9884. },
  9885. "_N$hoverColor": {
  9886. "__type__": "cc.Color",
  9887. "r": 255,
  9888. "g": 255,
  9889. "b": 255,
  9890. "a": 255
  9891. },
  9892. "hoverColor": {
  9893. "__type__": "cc.Color",
  9894. "r": 255,
  9895. "g": 255,
  9896. "b": 255,
  9897. "a": 255
  9898. },
  9899. "_N$disabledColor": {
  9900. "__type__": "cc.Color",
  9901. "r": 124,
  9902. "g": 124,
  9903. "b": 124,
  9904. "a": 255
  9905. },
  9906. "_N$normalSprite": null,
  9907. "_N$pressedSprite": null,
  9908. "pressedSprite": null,
  9909. "_N$hoverSprite": null,
  9910. "hoverSprite": null,
  9911. "_N$disabledSprite": null,
  9912. "_N$target": null,
  9913. "_id": ""
  9914. },
  9915. {
  9916. "__type__": "cc.PrefabInfo",
  9917. "root": {
  9918. "__id__": 1
  9919. },
  9920. "asset": {
  9921. "__id__": 0
  9922. },
  9923. "fileId": "50eRywjZVFMoenhgEYD6jN",
  9924. "sync": false
  9925. },
  9926. {
  9927. "__type__": "cc.Layout",
  9928. "_name": "",
  9929. "_objFlags": 0,
  9930. "node": {
  9931. "__id__": 17
  9932. },
  9933. "_enabled": true,
  9934. "_layoutSize": {
  9935. "__type__": "cc.Size",
  9936. "width": 512,
  9937. "height": 540
  9938. },
  9939. "_resize": 0,
  9940. "_N$layoutType": 3,
  9941. "_N$cellSize": {
  9942. "__type__": "cc.Size",
  9943. "width": 40,
  9944. "height": 40
  9945. },
  9946. "_N$startAxis": 0,
  9947. "_N$paddingLeft": 0,
  9948. "_N$paddingRight": 0,
  9949. "_N$paddingTop": 0,
  9950. "_N$paddingBottom": 0,
  9951. "_N$spacingX": 13,
  9952. "_N$spacingY": 30,
  9953. "_N$verticalDirection": 1,
  9954. "_N$horizontalDirection": 0,
  9955. "_N$affectedByScale": false,
  9956. "_id": ""
  9957. },
  9958. {
  9959. "__type__": "cc.PrefabInfo",
  9960. "root": {
  9961. "__id__": 1
  9962. },
  9963. "asset": {
  9964. "__id__": 0
  9965. },
  9966. "fileId": "71ZSDr6RFFCrrcUsNvF5E6",
  9967. "sync": false
  9968. },
  9969. {
  9970. "__type__": "cc.Node",
  9971. "_name": "button",
  9972. "_objFlags": 0,
  9973. "_parent": {
  9974. "__id__": 6
  9975. },
  9976. "_children": [
  9977. {
  9978. "__id__": 268
  9979. },
  9980. {
  9981. "__id__": 276
  9982. }
  9983. ],
  9984. "_active": true,
  9985. "_components": [
  9986. {
  9987. "__id__": 287
  9988. }
  9989. ],
  9990. "_prefab": {
  9991. "__id__": 288
  9992. },
  9993. "_opacity": 255,
  9994. "_color": {
  9995. "__type__": "cc.Color",
  9996. "r": 255,
  9997. "g": 255,
  9998. "b": 255,
  9999. "a": 255
  10000. },
  10001. "_contentSize": {
  10002. "__type__": "cc.Size",
  10003. "width": 521,
  10004. "height": 96
  10005. },
  10006. "_anchorPoint": {
  10007. "__type__": "cc.Vec2",
  10008. "x": 0.5,
  10009. "y": 0.5
  10010. },
  10011. "_trs": {
  10012. "__type__": "TypedArray",
  10013. "ctor": "Float64Array",
  10014. "array": [
  10015. 0,
  10016. -306.234,
  10017. 0,
  10018. 0,
  10019. 0,
  10020. 0,
  10021. 1,
  10022. 1,
  10023. 1,
  10024. 1
  10025. ]
  10026. },
  10027. "_eulerAngles": {
  10028. "__type__": "cc.Vec3",
  10029. "x": 0,
  10030. "y": 0,
  10031. "z": 0
  10032. },
  10033. "_skewX": 0,
  10034. "_skewY": 0,
  10035. "_is3DNode": false,
  10036. "_groupIndex": 0,
  10037. "groupIndex": 0,
  10038. "_id": ""
  10039. },
  10040. {
  10041. "__type__": "cc.Node",
  10042. "_name": "get",
  10043. "_objFlags": 0,
  10044. "_parent": {
  10045. "__id__": 267
  10046. },
  10047. "_children": [
  10048. {
  10049. "__id__": 269
  10050. }
  10051. ],
  10052. "_active": true,
  10053. "_components": [
  10054. {
  10055. "__id__": 273
  10056. },
  10057. {
  10058. "__id__": 274
  10059. }
  10060. ],
  10061. "_prefab": {
  10062. "__id__": 275
  10063. },
  10064. "_opacity": 255,
  10065. "_color": {
  10066. "__type__": "cc.Color",
  10067. "r": 255,
  10068. "g": 255,
  10069. "b": 255,
  10070. "a": 255
  10071. },
  10072. "_contentSize": {
  10073. "__type__": "cc.Size",
  10074. "width": 248,
  10075. "height": 96
  10076. },
  10077. "_anchorPoint": {
  10078. "__type__": "cc.Vec2",
  10079. "x": 0.5,
  10080. "y": 0.5
  10081. },
  10082. "_trs": {
  10083. "__type__": "TypedArray",
  10084. "ctor": "Float64Array",
  10085. "array": [
  10086. -136.5,
  10087. 0,
  10088. 0,
  10089. 0,
  10090. 0,
  10091. 0,
  10092. 1,
  10093. 1,
  10094. 1,
  10095. 0
  10096. ]
  10097. },
  10098. "_eulerAngles": {
  10099. "__type__": "cc.Vec3",
  10100. "x": 0,
  10101. "y": 0,
  10102. "z": 0
  10103. },
  10104. "_skewX": 0,
  10105. "_skewY": 0,
  10106. "_is3DNode": false,
  10107. "_groupIndex": 0,
  10108. "groupIndex": 0,
  10109. "_id": ""
  10110. },
  10111. {
  10112. "__type__": "cc.Node",
  10113. "_name": "label",
  10114. "_objFlags": 0,
  10115. "_parent": {
  10116. "__id__": 268
  10117. },
  10118. "_children": [],
  10119. "_active": true,
  10120. "_components": [
  10121. {
  10122. "__id__": 270
  10123. },
  10124. {
  10125. "__id__": 271
  10126. }
  10127. ],
  10128. "_prefab": {
  10129. "__id__": 272
  10130. },
  10131. "_opacity": 255,
  10132. "_color": {
  10133. "__type__": "cc.Color",
  10134. "r": 255,
  10135. "g": 255,
  10136. "b": 255,
  10137. "a": 255
  10138. },
  10139. "_contentSize": {
  10140. "__type__": "cc.Size",
  10141. "width": 148,
  10142. "height": 49.36
  10143. },
  10144. "_anchorPoint": {
  10145. "__type__": "cc.Vec2",
  10146. "x": 0.5,
  10147. "y": 0.5
  10148. },
  10149. "_trs": {
  10150. "__type__": "TypedArray",
  10151. "ctor": "Float64Array",
  10152. "array": [
  10153. 0,
  10154. 0,
  10155. 0,
  10156. 0,
  10157. 0,
  10158. 0,
  10159. 1,
  10160. 1,
  10161. 1,
  10162. 1
  10163. ]
  10164. },
  10165. "_eulerAngles": {
  10166. "__type__": "cc.Vec3",
  10167. "x": 0,
  10168. "y": 0,
  10169. "z": 0
  10170. },
  10171. "_skewX": 0,
  10172. "_skewY": 0,
  10173. "_is3DNode": false,
  10174. "_groupIndex": 0,
  10175. "groupIndex": 0,
  10176. "_id": ""
  10177. },
  10178. {
  10179. "__type__": "cc.Label",
  10180. "_name": "",
  10181. "_objFlags": 0,
  10182. "node": {
  10183. "__id__": 269
  10184. },
  10185. "_enabled": true,
  10186. "_materials": [
  10187. {
  10188. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10189. }
  10190. ],
  10191. "_srcBlendFactor": 770,
  10192. "_dstBlendFactor": 771,
  10193. "_string": "普通领取",
  10194. "_N$string": "普通领取",
  10195. "_fontSize": 36,
  10196. "_lineHeight": 36,
  10197. "_enableWrapText": true,
  10198. "_N$file": null,
  10199. "_isSystemFontUsed": true,
  10200. "_spacingX": 0,
  10201. "_batchAsBitmap": false,
  10202. "_styleFlags": 1,
  10203. "_underlineHeight": 0,
  10204. "_N$horizontalAlign": 1,
  10205. "_N$verticalAlign": 1,
  10206. "_N$fontFamily": "Arial",
  10207. "_N$overflow": 0,
  10208. "_N$cacheMode": 1,
  10209. "_id": ""
  10210. },
  10211. {
  10212. "__type__": "cc.LabelOutline",
  10213. "_name": "",
  10214. "_objFlags": 0,
  10215. "node": {
  10216. "__id__": 269
  10217. },
  10218. "_enabled": true,
  10219. "_color": {
  10220. "__type__": "cc.Color",
  10221. "r": 212,
  10222. "g": 139,
  10223. "b": 99,
  10224. "a": 255
  10225. },
  10226. "_width": 2,
  10227. "_id": ""
  10228. },
  10229. {
  10230. "__type__": "cc.PrefabInfo",
  10231. "root": {
  10232. "__id__": 1
  10233. },
  10234. "asset": {
  10235. "__id__": 0
  10236. },
  10237. "fileId": "85shBvZkBEf66X5YcTUWTc",
  10238. "sync": false
  10239. },
  10240. {
  10241. "__type__": "cc.Button",
  10242. "_name": "",
  10243. "_objFlags": 0,
  10244. "node": {
  10245. "__id__": 268
  10246. },
  10247. "_enabled": true,
  10248. "_normalMaterial": null,
  10249. "_grayMaterial": null,
  10250. "duration": 0.1,
  10251. "zoomScale": 1.2,
  10252. "clickEvents": [],
  10253. "_N$interactable": true,
  10254. "_N$enableAutoGrayEffect": false,
  10255. "_N$transition": 3,
  10256. "transition": 3,
  10257. "_N$normalColor": {
  10258. "__type__": "cc.Color",
  10259. "r": 255,
  10260. "g": 255,
  10261. "b": 255,
  10262. "a": 255
  10263. },
  10264. "_N$pressedColor": {
  10265. "__type__": "cc.Color",
  10266. "r": 211,
  10267. "g": 211,
  10268. "b": 211,
  10269. "a": 255
  10270. },
  10271. "pressedColor": {
  10272. "__type__": "cc.Color",
  10273. "r": 211,
  10274. "g": 211,
  10275. "b": 211,
  10276. "a": 255
  10277. },
  10278. "_N$hoverColor": {
  10279. "__type__": "cc.Color",
  10280. "r": 255,
  10281. "g": 255,
  10282. "b": 255,
  10283. "a": 255
  10284. },
  10285. "hoverColor": {
  10286. "__type__": "cc.Color",
  10287. "r": 255,
  10288. "g": 255,
  10289. "b": 255,
  10290. "a": 255
  10291. },
  10292. "_N$disabledColor": {
  10293. "__type__": "cc.Color",
  10294. "r": 124,
  10295. "g": 124,
  10296. "b": 124,
  10297. "a": 255
  10298. },
  10299. "_N$normalSprite": null,
  10300. "_N$pressedSprite": null,
  10301. "pressedSprite": null,
  10302. "_N$hoverSprite": null,
  10303. "hoverSprite": null,
  10304. "_N$disabledSprite": null,
  10305. "_N$target": null,
  10306. "_id": ""
  10307. },
  10308. {
  10309. "__type__": "cc.Sprite",
  10310. "_name": "",
  10311. "_objFlags": 0,
  10312. "node": {
  10313. "__id__": 268
  10314. },
  10315. "_enabled": true,
  10316. "_materials": [
  10317. {
  10318. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10319. }
  10320. ],
  10321. "_srcBlendFactor": 770,
  10322. "_dstBlendFactor": 771,
  10323. "_spriteFrame": {
  10324. "__uuid__": "86d7d0b5-97f5-45b0-9732-d82e8d3a1e8e"
  10325. },
  10326. "_type": 1,
  10327. "_sizeMode": 0,
  10328. "_fillType": 0,
  10329. "_fillCenter": {
  10330. "__type__": "cc.Vec2",
  10331. "x": 0,
  10332. "y": 0
  10333. },
  10334. "_fillStart": 0,
  10335. "_fillRange": 0,
  10336. "_isTrimmedMode": true,
  10337. "_atlas": null,
  10338. "_id": ""
  10339. },
  10340. {
  10341. "__type__": "cc.PrefabInfo",
  10342. "root": {
  10343. "__id__": 1
  10344. },
  10345. "asset": {
  10346. "__id__": 0
  10347. },
  10348. "fileId": "51+5q1/ClA4IpotfBjZjof",
  10349. "sync": false
  10350. },
  10351. {
  10352. "__type__": "cc.Node",
  10353. "_name": "doubleGet",
  10354. "_objFlags": 0,
  10355. "_parent": {
  10356. "__id__": 267
  10357. },
  10358. "_children": [
  10359. {
  10360. "__id__": 277
  10361. },
  10362. {
  10363. "__id__": 280
  10364. }
  10365. ],
  10366. "_active": true,
  10367. "_components": [
  10368. {
  10369. "__id__": 284
  10370. },
  10371. {
  10372. "__id__": 285
  10373. }
  10374. ],
  10375. "_prefab": {
  10376. "__id__": 286
  10377. },
  10378. "_opacity": 255,
  10379. "_color": {
  10380. "__type__": "cc.Color",
  10381. "r": 255,
  10382. "g": 255,
  10383. "b": 255,
  10384. "a": 255
  10385. },
  10386. "_contentSize": {
  10387. "__type__": "cc.Size",
  10388. "width": 258,
  10389. "height": 96
  10390. },
  10391. "_anchorPoint": {
  10392. "__type__": "cc.Vec2",
  10393. "x": 0.5,
  10394. "y": 0.5
  10395. },
  10396. "_trs": {
  10397. "__type__": "TypedArray",
  10398. "ctor": "Float64Array",
  10399. "array": [
  10400. 131.5,
  10401. 0,
  10402. 0,
  10403. 0,
  10404. 0,
  10405. 0,
  10406. 1,
  10407. 1,
  10408. 1,
  10409. 0
  10410. ]
  10411. },
  10412. "_eulerAngles": {
  10413. "__type__": "cc.Vec3",
  10414. "x": 0,
  10415. "y": 0,
  10416. "z": 0
  10417. },
  10418. "_skewX": 0,
  10419. "_skewY": 0,
  10420. "_is3DNode": false,
  10421. "_groupIndex": 0,
  10422. "groupIndex": 0,
  10423. "_id": ""
  10424. },
  10425. {
  10426. "__type__": "cc.Node",
  10427. "_name": "icon",
  10428. "_objFlags": 0,
  10429. "_parent": {
  10430. "__id__": 276
  10431. },
  10432. "_children": [],
  10433. "_active": true,
  10434. "_components": [
  10435. {
  10436. "__id__": 278
  10437. }
  10438. ],
  10439. "_prefab": {
  10440. "__id__": 279
  10441. },
  10442. "_opacity": 255,
  10443. "_color": {
  10444. "__type__": "cc.Color",
  10445. "r": 255,
  10446. "g": 255,
  10447. "b": 255,
  10448. "a": 255
  10449. },
  10450. "_contentSize": {
  10451. "__type__": "cc.Size",
  10452. "width": 56,
  10453. "height": 43
  10454. },
  10455. "_anchorPoint": {
  10456. "__type__": "cc.Vec2",
  10457. "x": 0.5,
  10458. "y": 0.5
  10459. },
  10460. "_trs": {
  10461. "__type__": "TypedArray",
  10462. "ctor": "Float64Array",
  10463. "array": [
  10464. -77.648,
  10465. 0,
  10466. 0,
  10467. 0,
  10468. 0,
  10469. 0,
  10470. 1,
  10471. 1,
  10472. 1,
  10473. 1
  10474. ]
  10475. },
  10476. "_eulerAngles": {
  10477. "__type__": "cc.Vec3",
  10478. "x": 0,
  10479. "y": 0,
  10480. "z": 0
  10481. },
  10482. "_skewX": 0,
  10483. "_skewY": 0,
  10484. "_is3DNode": false,
  10485. "_groupIndex": 0,
  10486. "groupIndex": 0,
  10487. "_id": ""
  10488. },
  10489. {
  10490. "__type__": "cc.Sprite",
  10491. "_name": "",
  10492. "_objFlags": 0,
  10493. "node": {
  10494. "__id__": 277
  10495. },
  10496. "_enabled": true,
  10497. "_materials": [
  10498. {
  10499. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10500. }
  10501. ],
  10502. "_srcBlendFactor": 770,
  10503. "_dstBlendFactor": 771,
  10504. "_spriteFrame": {
  10505. "__uuid__": "a15d6951-f9a3-45b7-b099-8116c6a78eea"
  10506. },
  10507. "_type": 0,
  10508. "_sizeMode": 1,
  10509. "_fillType": 0,
  10510. "_fillCenter": {
  10511. "__type__": "cc.Vec2",
  10512. "x": 0,
  10513. "y": 0
  10514. },
  10515. "_fillStart": 0,
  10516. "_fillRange": 0,
  10517. "_isTrimmedMode": true,
  10518. "_atlas": null,
  10519. "_id": ""
  10520. },
  10521. {
  10522. "__type__": "cc.PrefabInfo",
  10523. "root": {
  10524. "__id__": 1
  10525. },
  10526. "asset": {
  10527. "__id__": 0
  10528. },
  10529. "fileId": "e94ciCVXVIRIfLrAoPLpht",
  10530. "sync": false
  10531. },
  10532. {
  10533. "__type__": "cc.Node",
  10534. "_name": "label",
  10535. "_objFlags": 0,
  10536. "_parent": {
  10537. "__id__": 276
  10538. },
  10539. "_children": [],
  10540. "_active": true,
  10541. "_components": [
  10542. {
  10543. "__id__": 281
  10544. },
  10545. {
  10546. "__id__": 282
  10547. }
  10548. ],
  10549. "_prefab": {
  10550. "__id__": 283
  10551. },
  10552. "_opacity": 255,
  10553. "_color": {
  10554. "__type__": "cc.Color",
  10555. "r": 255,
  10556. "g": 255,
  10557. "b": 255,
  10558. "a": 255
  10559. },
  10560. "_contentSize": {
  10561. "__type__": "cc.Size",
  10562. "width": 148,
  10563. "height": 49.36
  10564. },
  10565. "_anchorPoint": {
  10566. "__type__": "cc.Vec2",
  10567. "x": 0.5,
  10568. "y": 0.5
  10569. },
  10570. "_trs": {
  10571. "__type__": "TypedArray",
  10572. "ctor": "Float64Array",
  10573. "array": [
  10574. 29.922,
  10575. 0,
  10576. 0,
  10577. 0,
  10578. 0,
  10579. 0,
  10580. 1,
  10581. 1,
  10582. 1,
  10583. 1
  10584. ]
  10585. },
  10586. "_eulerAngles": {
  10587. "__type__": "cc.Vec3",
  10588. "x": 0,
  10589. "y": 0,
  10590. "z": 0
  10591. },
  10592. "_skewX": 0,
  10593. "_skewY": 0,
  10594. "_is3DNode": false,
  10595. "_groupIndex": 0,
  10596. "groupIndex": 0,
  10597. "_id": ""
  10598. },
  10599. {
  10600. "__type__": "cc.Label",
  10601. "_name": "",
  10602. "_objFlags": 0,
  10603. "node": {
  10604. "__id__": 280
  10605. },
  10606. "_enabled": true,
  10607. "_materials": [
  10608. {
  10609. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10610. }
  10611. ],
  10612. "_srcBlendFactor": 770,
  10613. "_dstBlendFactor": 771,
  10614. "_string": "双倍领取",
  10615. "_N$string": "双倍领取",
  10616. "_fontSize": 36,
  10617. "_lineHeight": 36,
  10618. "_enableWrapText": true,
  10619. "_N$file": null,
  10620. "_isSystemFontUsed": true,
  10621. "_spacingX": 0,
  10622. "_batchAsBitmap": false,
  10623. "_styleFlags": 1,
  10624. "_underlineHeight": 0,
  10625. "_N$horizontalAlign": 1,
  10626. "_N$verticalAlign": 1,
  10627. "_N$fontFamily": "Arial",
  10628. "_N$overflow": 0,
  10629. "_N$cacheMode": 1,
  10630. "_id": ""
  10631. },
  10632. {
  10633. "__type__": "cc.LabelOutline",
  10634. "_name": "",
  10635. "_objFlags": 0,
  10636. "node": {
  10637. "__id__": 280
  10638. },
  10639. "_enabled": true,
  10640. "_color": {
  10641. "__type__": "cc.Color",
  10642. "r": 52,
  10643. "g": 118,
  10644. "b": 21,
  10645. "a": 255
  10646. },
  10647. "_width": 2,
  10648. "_id": ""
  10649. },
  10650. {
  10651. "__type__": "cc.PrefabInfo",
  10652. "root": {
  10653. "__id__": 1
  10654. },
  10655. "asset": {
  10656. "__id__": 0
  10657. },
  10658. "fileId": "bfLEfP6ztJ3or+X+VlybJk",
  10659. "sync": false
  10660. },
  10661. {
  10662. "__type__": "cc.Sprite",
  10663. "_name": "",
  10664. "_objFlags": 0,
  10665. "node": {
  10666. "__id__": 276
  10667. },
  10668. "_enabled": true,
  10669. "_materials": [
  10670. {
  10671. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10672. }
  10673. ],
  10674. "_srcBlendFactor": 770,
  10675. "_dstBlendFactor": 771,
  10676. "_spriteFrame": {
  10677. "__uuid__": "d4dd816f-922c-4c2b-80e6-23327458b0ba"
  10678. },
  10679. "_type": 1,
  10680. "_sizeMode": 0,
  10681. "_fillType": 0,
  10682. "_fillCenter": {
  10683. "__type__": "cc.Vec2",
  10684. "x": 0,
  10685. "y": 0
  10686. },
  10687. "_fillStart": 0,
  10688. "_fillRange": 0,
  10689. "_isTrimmedMode": true,
  10690. "_atlas": null,
  10691. "_id": ""
  10692. },
  10693. {
  10694. "__type__": "cc.Button",
  10695. "_name": "",
  10696. "_objFlags": 0,
  10697. "node": {
  10698. "__id__": 276
  10699. },
  10700. "_enabled": true,
  10701. "_normalMaterial": null,
  10702. "_grayMaterial": null,
  10703. "duration": 0.1,
  10704. "zoomScale": 1.2,
  10705. "clickEvents": [],
  10706. "_N$interactable": true,
  10707. "_N$enableAutoGrayEffect": false,
  10708. "_N$transition": 3,
  10709. "transition": 3,
  10710. "_N$normalColor": {
  10711. "__type__": "cc.Color",
  10712. "r": 255,
  10713. "g": 255,
  10714. "b": 255,
  10715. "a": 255
  10716. },
  10717. "_N$pressedColor": {
  10718. "__type__": "cc.Color",
  10719. "r": 211,
  10720. "g": 211,
  10721. "b": 211,
  10722. "a": 255
  10723. },
  10724. "pressedColor": {
  10725. "__type__": "cc.Color",
  10726. "r": 211,
  10727. "g": 211,
  10728. "b": 211,
  10729. "a": 255
  10730. },
  10731. "_N$hoverColor": {
  10732. "__type__": "cc.Color",
  10733. "r": 255,
  10734. "g": 255,
  10735. "b": 255,
  10736. "a": 255
  10737. },
  10738. "hoverColor": {
  10739. "__type__": "cc.Color",
  10740. "r": 255,
  10741. "g": 255,
  10742. "b": 255,
  10743. "a": 255
  10744. },
  10745. "_N$disabledColor": {
  10746. "__type__": "cc.Color",
  10747. "r": 124,
  10748. "g": 124,
  10749. "b": 124,
  10750. "a": 255
  10751. },
  10752. "_N$normalSprite": null,
  10753. "_N$pressedSprite": null,
  10754. "pressedSprite": null,
  10755. "_N$hoverSprite": null,
  10756. "hoverSprite": null,
  10757. "_N$disabledSprite": null,
  10758. "_N$target": null,
  10759. "_id": ""
  10760. },
  10761. {
  10762. "__type__": "cc.PrefabInfo",
  10763. "root": {
  10764. "__id__": 1
  10765. },
  10766. "asset": {
  10767. "__id__": 0
  10768. },
  10769. "fileId": "cbL/iAEelPIYKy7HfdwscX",
  10770. "sync": false
  10771. },
  10772. {
  10773. "__type__": "cc.Layout",
  10774. "_name": "",
  10775. "_objFlags": 0,
  10776. "node": {
  10777. "__id__": 267
  10778. },
  10779. "_enabled": true,
  10780. "_layoutSize": {
  10781. "__type__": "cc.Size",
  10782. "width": 521,
  10783. "height": 96
  10784. },
  10785. "_resize": 1,
  10786. "_N$layoutType": 1,
  10787. "_N$cellSize": {
  10788. "__type__": "cc.Size",
  10789. "width": 40,
  10790. "height": 40
  10791. },
  10792. "_N$startAxis": 0,
  10793. "_N$paddingLeft": 0,
  10794. "_N$paddingRight": 0,
  10795. "_N$paddingTop": 0,
  10796. "_N$paddingBottom": 0,
  10797. "_N$spacingX": 15,
  10798. "_N$spacingY": 0,
  10799. "_N$verticalDirection": 1,
  10800. "_N$horizontalDirection": 0,
  10801. "_N$affectedByScale": false,
  10802. "_id": ""
  10803. },
  10804. {
  10805. "__type__": "cc.PrefabInfo",
  10806. "root": {
  10807. "__id__": 1
  10808. },
  10809. "asset": {
  10810. "__id__": 0
  10811. },
  10812. "fileId": "68wlWQrNJE4Y73fYWWe37N",
  10813. "sync": false
  10814. },
  10815. {
  10816. "__type__": "cc.Node",
  10817. "_name": "closeButton",
  10818. "_objFlags": 0,
  10819. "_parent": {
  10820. "__id__": 6
  10821. },
  10822. "_children": [],
  10823. "_active": true,
  10824. "_components": [
  10825. {
  10826. "__id__": 290
  10827. },
  10828. {
  10829. "__id__": 291
  10830. }
  10831. ],
  10832. "_prefab": {
  10833. "__id__": 292
  10834. },
  10835. "_opacity": 255,
  10836. "_color": {
  10837. "__type__": "cc.Color",
  10838. "r": 255,
  10839. "g": 255,
  10840. "b": 255,
  10841. "a": 255
  10842. },
  10843. "_contentSize": {
  10844. "__type__": "cc.Size",
  10845. "width": 70,
  10846. "height": 70
  10847. },
  10848. "_anchorPoint": {
  10849. "__type__": "cc.Vec2",
  10850. "x": 0.5,
  10851. "y": 0.5
  10852. },
  10853. "_trs": {
  10854. "__type__": "TypedArray",
  10855. "ctor": "Float64Array",
  10856. "array": [
  10857. 267.177,
  10858. 386.323,
  10859. 0,
  10860. 0,
  10861. 0,
  10862. 0,
  10863. 1,
  10864. 1,
  10865. 1,
  10866. 0
  10867. ]
  10868. },
  10869. "_eulerAngles": {
  10870. "__type__": "cc.Vec3",
  10871. "x": 0,
  10872. "y": 0,
  10873. "z": 0
  10874. },
  10875. "_skewX": 0,
  10876. "_skewY": 0,
  10877. "_is3DNode": false,
  10878. "_groupIndex": 0,
  10879. "groupIndex": 0,
  10880. "_id": ""
  10881. },
  10882. {
  10883. "__type__": "cc.Sprite",
  10884. "_name": "",
  10885. "_objFlags": 0,
  10886. "node": {
  10887. "__id__": 289
  10888. },
  10889. "_enabled": true,
  10890. "_materials": [
  10891. {
  10892. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10893. }
  10894. ],
  10895. "_srcBlendFactor": 770,
  10896. "_dstBlendFactor": 771,
  10897. "_spriteFrame": {
  10898. "__uuid__": "03101efc-0497-474b-8289-4aa15b85295c"
  10899. },
  10900. "_type": 0,
  10901. "_sizeMode": 1,
  10902. "_fillType": 0,
  10903. "_fillCenter": {
  10904. "__type__": "cc.Vec2",
  10905. "x": 0,
  10906. "y": 0
  10907. },
  10908. "_fillStart": 0,
  10909. "_fillRange": 0,
  10910. "_isTrimmedMode": true,
  10911. "_atlas": null,
  10912. "_id": ""
  10913. },
  10914. {
  10915. "__type__": "cc.Button",
  10916. "_name": "",
  10917. "_objFlags": 0,
  10918. "node": {
  10919. "__id__": 289
  10920. },
  10921. "_enabled": true,
  10922. "_normalMaterial": null,
  10923. "_grayMaterial": null,
  10924. "duration": 0.1,
  10925. "zoomScale": 1.2,
  10926. "clickEvents": [],
  10927. "_N$interactable": true,
  10928. "_N$enableAutoGrayEffect": false,
  10929. "_N$transition": 3,
  10930. "transition": 3,
  10931. "_N$normalColor": {
  10932. "__type__": "cc.Color",
  10933. "r": 255,
  10934. "g": 255,
  10935. "b": 255,
  10936. "a": 255
  10937. },
  10938. "_N$pressedColor": {
  10939. "__type__": "cc.Color",
  10940. "r": 211,
  10941. "g": 211,
  10942. "b": 211,
  10943. "a": 255
  10944. },
  10945. "pressedColor": {
  10946. "__type__": "cc.Color",
  10947. "r": 211,
  10948. "g": 211,
  10949. "b": 211,
  10950. "a": 255
  10951. },
  10952. "_N$hoverColor": {
  10953. "__type__": "cc.Color",
  10954. "r": 255,
  10955. "g": 255,
  10956. "b": 255,
  10957. "a": 255
  10958. },
  10959. "hoverColor": {
  10960. "__type__": "cc.Color",
  10961. "r": 255,
  10962. "g": 255,
  10963. "b": 255,
  10964. "a": 255
  10965. },
  10966. "_N$disabledColor": {
  10967. "__type__": "cc.Color",
  10968. "r": 124,
  10969. "g": 124,
  10970. "b": 124,
  10971. "a": 255
  10972. },
  10973. "_N$normalSprite": null,
  10974. "_N$pressedSprite": null,
  10975. "pressedSprite": null,
  10976. "_N$hoverSprite": null,
  10977. "hoverSprite": null,
  10978. "_N$disabledSprite": null,
  10979. "_N$target": null,
  10980. "_id": ""
  10981. },
  10982. {
  10983. "__type__": "cc.PrefabInfo",
  10984. "root": {
  10985. "__id__": 1
  10986. },
  10987. "asset": {
  10988. "__id__": 0
  10989. },
  10990. "fileId": "573pJN4EJJ4JwzjH0br5fi",
  10991. "sync": false
  10992. },
  10993. {
  10994. "__type__": "cc.Sprite",
  10995. "_name": "",
  10996. "_objFlags": 0,
  10997. "node": {
  10998. "__id__": 6
  10999. },
  11000. "_enabled": true,
  11001. "_materials": [
  11002. {
  11003. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11004. }
  11005. ],
  11006. "_srcBlendFactor": 770,
  11007. "_dstBlendFactor": 771,
  11008. "_spriteFrame": {
  11009. "__uuid__": "9586da9c-cce7-4633-b77a-a658a86ad169"
  11010. },
  11011. "_type": 1,
  11012. "_sizeMode": 0,
  11013. "_fillType": 0,
  11014. "_fillCenter": {
  11015. "__type__": "cc.Vec2",
  11016. "x": 0,
  11017. "y": 0
  11018. },
  11019. "_fillStart": 0,
  11020. "_fillRange": 0,
  11021. "_isTrimmedMode": true,
  11022. "_atlas": null,
  11023. "_id": ""
  11024. },
  11025. {
  11026. "__type__": "cc.PrefabInfo",
  11027. "root": {
  11028. "__id__": 1
  11029. },
  11030. "asset": {
  11031. "__id__": 0
  11032. },
  11033. "fileId": "f6c1nfuDVB/asqMsmWV1Cs",
  11034. "sync": false
  11035. },
  11036. {
  11037. "__type__": "cc.Widget",
  11038. "_name": "",
  11039. "_objFlags": 0,
  11040. "node": {
  11041. "__id__": 1
  11042. },
  11043. "_enabled": true,
  11044. "alignMode": 1,
  11045. "_target": null,
  11046. "_alignFlags": 45,
  11047. "_left": 0,
  11048. "_right": 0,
  11049. "_top": 0,
  11050. "_bottom": 0,
  11051. "_verticalCenter": 0,
  11052. "_horizontalCenter": 0,
  11053. "_isAbsLeft": true,
  11054. "_isAbsRight": true,
  11055. "_isAbsTop": true,
  11056. "_isAbsBottom": true,
  11057. "_isAbsHorizontalCenter": true,
  11058. "_isAbsVerticalCenter": true,
  11059. "_originalWidth": 750,
  11060. "_originalHeight": 1334,
  11061. "_id": ""
  11062. },
  11063. {
  11064. "__type__": "b043clSGvZKRJCyV6UEmNo6",
  11065. "_name": "",
  11066. "_objFlags": 0,
  11067. "node": {
  11068. "__id__": 1
  11069. },
  11070. "_enabled": true,
  11071. "allEvents": {},
  11072. "zIndex": 100,
  11073. "parentUIName": "",
  11074. "panel": {
  11075. "__id__": 6
  11076. },
  11077. "_id": ""
  11078. },
  11079. {
  11080. "__type__": "cc.BlockInputEvents",
  11081. "_name": "",
  11082. "_objFlags": 0,
  11083. "node": {
  11084. "__id__": 1
  11085. },
  11086. "_enabled": true,
  11087. "_id": ""
  11088. },
  11089. {
  11090. "__type__": "cc.PrefabInfo",
  11091. "root": {
  11092. "__id__": 1
  11093. },
  11094. "asset": {
  11095. "__id__": 0
  11096. },
  11097. "fileId": "",
  11098. "sync": false
  11099. }
  11100. ]