SignLayer.prefab 190 KB

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