SignPanel.prefab 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "SignPanel",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "SignPanel",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 12
  26. },
  27. {
  28. "__id__": 18
  29. },
  30. {
  31. "__id__": 24
  32. },
  33. {
  34. "__id__": 32
  35. },
  36. {
  37. "__id__": 60
  38. },
  39. {
  40. "__id__": 88
  41. },
  42. {
  43. "__id__": 116
  44. },
  45. {
  46. "__id__": 144
  47. },
  48. {
  49. "__id__": 172
  50. },
  51. {
  52. "__id__": 200
  53. },
  54. {
  55. "__id__": 228
  56. },
  57. {
  58. "__id__": 236
  59. }
  60. ],
  61. "_active": true,
  62. "_components": [
  63. {
  64. "__id__": 244
  65. },
  66. {
  67. "__id__": 246
  68. },
  69. {
  70. "__id__": 248
  71. }
  72. ],
  73. "_prefab": {
  74. "__id__": 250
  75. },
  76. "_lpos": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_lrot": {
  83. "__type__": "cc.Quat",
  84. "x": 0,
  85. "y": 0,
  86. "z": 0,
  87. "w": 1
  88. },
  89. "_lscale": {
  90. "__type__": "cc.Vec3",
  91. "x": 1,
  92. "y": 1,
  93. "z": 1
  94. },
  95. "_mobility": 0,
  96. "_layer": 33554432,
  97. "_euler": {
  98. "__type__": "cc.Vec3",
  99. "x": 0,
  100. "y": 0,
  101. "z": 0
  102. },
  103. "_id": ""
  104. },
  105. {
  106. "__type__": "cc.Node",
  107. "_name": "Mask",
  108. "_objFlags": 0,
  109. "__editorExtras__": {},
  110. "_parent": {
  111. "__id__": 1
  112. },
  113. "_children": [],
  114. "_active": true,
  115. "_components": [
  116. {
  117. "__id__": 3
  118. },
  119. {
  120. "__id__": 5
  121. },
  122. {
  123. "__id__": 7
  124. },
  125. {
  126. "__id__": 9
  127. }
  128. ],
  129. "_prefab": {
  130. "__id__": 11
  131. },
  132. "_lpos": {
  133. "__type__": "cc.Vec3",
  134. "x": 0,
  135. "y": 0,
  136. "z": 0
  137. },
  138. "_lrot": {
  139. "__type__": "cc.Quat",
  140. "x": 0,
  141. "y": 0,
  142. "z": 0,
  143. "w": 1
  144. },
  145. "_lscale": {
  146. "__type__": "cc.Vec3",
  147. "x": 1,
  148. "y": 1,
  149. "z": 1
  150. },
  151. "_mobility": 0,
  152. "_layer": 33554432,
  153. "_euler": {
  154. "__type__": "cc.Vec3",
  155. "x": 0,
  156. "y": 0,
  157. "z": 0
  158. },
  159. "_id": ""
  160. },
  161. {
  162. "__type__": "cc.UITransform",
  163. "_name": "",
  164. "_objFlags": 0,
  165. "__editorExtras__": {},
  166. "node": {
  167. "__id__": 2
  168. },
  169. "_enabled": true,
  170. "__prefab": {
  171. "__id__": 4
  172. },
  173. "_contentSize": {
  174. "__type__": "cc.Size",
  175. "width": 750,
  176. "height": 1634
  177. },
  178. "_anchorPoint": {
  179. "__type__": "cc.Vec2",
  180. "x": 0.5,
  181. "y": 0.5
  182. },
  183. "_id": ""
  184. },
  185. {
  186. "__type__": "cc.CompPrefabInfo",
  187. "fileId": "57LWpPzI9Ar42Hb/5rrJYG"
  188. },
  189. {
  190. "__type__": "cc.Mask",
  191. "_name": "",
  192. "_objFlags": 0,
  193. "__editorExtras__": {},
  194. "node": {
  195. "__id__": 2
  196. },
  197. "_enabled": true,
  198. "__prefab": {
  199. "__id__": 6
  200. },
  201. "_type": 0,
  202. "_inverted": false,
  203. "_segments": 64,
  204. "_alphaThreshold": 0.1,
  205. "_id": ""
  206. },
  207. {
  208. "__type__": "cc.CompPrefabInfo",
  209. "fileId": "b7WQQwSdhCQoynOQfWjPyU"
  210. },
  211. {
  212. "__type__": "cc.Graphics",
  213. "_name": "",
  214. "_objFlags": 0,
  215. "__editorExtras__": {},
  216. "node": {
  217. "__id__": 2
  218. },
  219. "_enabled": true,
  220. "__prefab": {
  221. "__id__": 8
  222. },
  223. "_customMaterial": null,
  224. "_srcBlendFactor": 2,
  225. "_dstBlendFactor": 4,
  226. "_color": {
  227. "__type__": "cc.Color",
  228. "r": 255,
  229. "g": 255,
  230. "b": 255,
  231. "a": 255
  232. },
  233. "_lineWidth": 1,
  234. "_strokeColor": {
  235. "__type__": "cc.Color",
  236. "r": 0,
  237. "g": 0,
  238. "b": 0,
  239. "a": 255
  240. },
  241. "_lineJoin": 2,
  242. "_lineCap": 0,
  243. "_fillColor": {
  244. "__type__": "cc.Color",
  245. "r": 255,
  246. "g": 255,
  247. "b": 255,
  248. "a": 0
  249. },
  250. "_miterLimit": 10,
  251. "_id": ""
  252. },
  253. {
  254. "__type__": "cc.CompPrefabInfo",
  255. "fileId": "e2crXWvARJN6t46ktK0eU5"
  256. },
  257. {
  258. "__type__": "cc.BlockInputEvents",
  259. "_name": "",
  260. "_objFlags": 0,
  261. "__editorExtras__": {},
  262. "node": {
  263. "__id__": 2
  264. },
  265. "_enabled": true,
  266. "__prefab": {
  267. "__id__": 10
  268. },
  269. "_id": ""
  270. },
  271. {
  272. "__type__": "cc.CompPrefabInfo",
  273. "fileId": "be3CoNvoxOEpfZ7KMmnjhD"
  274. },
  275. {
  276. "__type__": "cc.PrefabInfo",
  277. "root": {
  278. "__id__": 1
  279. },
  280. "asset": {
  281. "__id__": 0
  282. },
  283. "fileId": "89bcpAgK5Gs4l/Ikgx7ETn",
  284. "instance": null,
  285. "targetOverrides": null,
  286. "nestedPrefabInstanceRoots": null
  287. },
  288. {
  289. "__type__": "cc.Node",
  290. "_name": "Bg",
  291. "_objFlags": 0,
  292. "__editorExtras__": {},
  293. "_parent": {
  294. "__id__": 1
  295. },
  296. "_children": [],
  297. "_active": true,
  298. "_components": [
  299. {
  300. "__id__": 13
  301. },
  302. {
  303. "__id__": 15
  304. }
  305. ],
  306. "_prefab": {
  307. "__id__": 17
  308. },
  309. "_lpos": {
  310. "__type__": "cc.Vec3",
  311. "x": 0,
  312. "y": 30.037000000000035,
  313. "z": 0
  314. },
  315. "_lrot": {
  316. "__type__": "cc.Quat",
  317. "x": 0,
  318. "y": 0,
  319. "z": 0,
  320. "w": 1
  321. },
  322. "_lscale": {
  323. "__type__": "cc.Vec3",
  324. "x": 1,
  325. "y": 1,
  326. "z": 1
  327. },
  328. "_mobility": 0,
  329. "_layer": 33554432,
  330. "_euler": {
  331. "__type__": "cc.Vec3",
  332. "x": 0,
  333. "y": 0,
  334. "z": 0
  335. },
  336. "_id": ""
  337. },
  338. {
  339. "__type__": "cc.UITransform",
  340. "_name": "",
  341. "_objFlags": 0,
  342. "__editorExtras__": {},
  343. "node": {
  344. "__id__": 12
  345. },
  346. "_enabled": true,
  347. "__prefab": {
  348. "__id__": 14
  349. },
  350. "_contentSize": {
  351. "__type__": "cc.Size",
  352. "width": 706,
  353. "height": 1177
  354. },
  355. "_anchorPoint": {
  356. "__type__": "cc.Vec2",
  357. "x": 0.5,
  358. "y": 0.5
  359. },
  360. "_id": ""
  361. },
  362. {
  363. "__type__": "cc.CompPrefabInfo",
  364. "fileId": "f4pXX2EENHEpMH5WADuh/L"
  365. },
  366. {
  367. "__type__": "cc.Sprite",
  368. "_name": "",
  369. "_objFlags": 0,
  370. "__editorExtras__": {},
  371. "node": {
  372. "__id__": 12
  373. },
  374. "_enabled": true,
  375. "__prefab": {
  376. "__id__": 16
  377. },
  378. "_customMaterial": null,
  379. "_srcBlendFactor": 2,
  380. "_dstBlendFactor": 4,
  381. "_color": {
  382. "__type__": "cc.Color",
  383. "r": 255,
  384. "g": 255,
  385. "b": 255,
  386. "a": 255
  387. },
  388. "_spriteFrame": {
  389. "__uuid__": "ecf94468-63bb-4e1c-9dd1-3fb5b34c615f@f9941",
  390. "__expectedType__": "cc.SpriteFrame"
  391. },
  392. "_type": 0,
  393. "_fillType": 0,
  394. "_sizeMode": 1,
  395. "_fillCenter": {
  396. "__type__": "cc.Vec2",
  397. "x": 0,
  398. "y": 0
  399. },
  400. "_fillStart": 0,
  401. "_fillRange": 0,
  402. "_isTrimmedMode": true,
  403. "_useGrayscale": false,
  404. "_atlas": null,
  405. "_id": ""
  406. },
  407. {
  408. "__type__": "cc.CompPrefabInfo",
  409. "fileId": "3ft9KqON5HMIf81BYOa7Jf"
  410. },
  411. {
  412. "__type__": "cc.PrefabInfo",
  413. "root": {
  414. "__id__": 1
  415. },
  416. "asset": {
  417. "__id__": 0
  418. },
  419. "fileId": "15rbaBY11H3LF6hXYA2PiB",
  420. "instance": null,
  421. "targetOverrides": null,
  422. "nestedPrefabInstanceRoots": null
  423. },
  424. {
  425. "__type__": "cc.Node",
  426. "_name": "Title",
  427. "_objFlags": 0,
  428. "__editorExtras__": {},
  429. "_parent": {
  430. "__id__": 1
  431. },
  432. "_children": [],
  433. "_active": true,
  434. "_components": [
  435. {
  436. "__id__": 19
  437. },
  438. {
  439. "__id__": 21
  440. }
  441. ],
  442. "_prefab": {
  443. "__id__": 23
  444. },
  445. "_lpos": {
  446. "__type__": "cc.Vec3",
  447. "x": 0,
  448. "y": 549.29,
  449. "z": 0
  450. },
  451. "_lrot": {
  452. "__type__": "cc.Quat",
  453. "x": 0,
  454. "y": 0,
  455. "z": 0,
  456. "w": 1
  457. },
  458. "_lscale": {
  459. "__type__": "cc.Vec3",
  460. "x": 1,
  461. "y": 1,
  462. "z": 1
  463. },
  464. "_mobility": 0,
  465. "_layer": 33554432,
  466. "_euler": {
  467. "__type__": "cc.Vec3",
  468. "x": 0,
  469. "y": 0,
  470. "z": 0
  471. },
  472. "_id": ""
  473. },
  474. {
  475. "__type__": "cc.UITransform",
  476. "_name": "",
  477. "_objFlags": 0,
  478. "__editorExtras__": {},
  479. "node": {
  480. "__id__": 18
  481. },
  482. "_enabled": true,
  483. "__prefab": {
  484. "__id__": 20
  485. },
  486. "_contentSize": {
  487. "__type__": "cc.Size",
  488. "width": 285,
  489. "height": 62
  490. },
  491. "_anchorPoint": {
  492. "__type__": "cc.Vec2",
  493. "x": 0.5,
  494. "y": 0.5
  495. },
  496. "_id": ""
  497. },
  498. {
  499. "__type__": "cc.CompPrefabInfo",
  500. "fileId": "27La3evmtLsJwVAGQ7UmU8"
  501. },
  502. {
  503. "__type__": "cc.Sprite",
  504. "_name": "",
  505. "_objFlags": 0,
  506. "__editorExtras__": {},
  507. "node": {
  508. "__id__": 18
  509. },
  510. "_enabled": true,
  511. "__prefab": {
  512. "__id__": 22
  513. },
  514. "_customMaterial": null,
  515. "_srcBlendFactor": 2,
  516. "_dstBlendFactor": 4,
  517. "_color": {
  518. "__type__": "cc.Color",
  519. "r": 255,
  520. "g": 255,
  521. "b": 255,
  522. "a": 255
  523. },
  524. "_spriteFrame": {
  525. "__uuid__": "58ad5b37-25cf-4d1f-9708-152aad588e14@f9941",
  526. "__expectedType__": "cc.SpriteFrame"
  527. },
  528. "_type": 0,
  529. "_fillType": 0,
  530. "_sizeMode": 1,
  531. "_fillCenter": {
  532. "__type__": "cc.Vec2",
  533. "x": 0,
  534. "y": 0
  535. },
  536. "_fillStart": 0,
  537. "_fillRange": 0,
  538. "_isTrimmedMode": true,
  539. "_useGrayscale": false,
  540. "_atlas": null,
  541. "_id": ""
  542. },
  543. {
  544. "__type__": "cc.CompPrefabInfo",
  545. "fileId": "2d/sgy3lpBB4iFxwVOC2ZM"
  546. },
  547. {
  548. "__type__": "cc.PrefabInfo",
  549. "root": {
  550. "__id__": 1
  551. },
  552. "asset": {
  553. "__id__": 0
  554. },
  555. "fileId": "64DwvqqF9GALPIEya0a70p",
  556. "instance": null,
  557. "targetOverrides": null,
  558. "nestedPrefabInstanceRoots": null
  559. },
  560. {
  561. "__type__": "cc.Node",
  562. "_name": "Close_Btn",
  563. "_objFlags": 0,
  564. "__editorExtras__": {},
  565. "_parent": {
  566. "__id__": 1
  567. },
  568. "_children": [],
  569. "_active": true,
  570. "_components": [
  571. {
  572. "__id__": 25
  573. },
  574. {
  575. "__id__": 27
  576. },
  577. {
  578. "__id__": 29
  579. }
  580. ],
  581. "_prefab": {
  582. "__id__": 31
  583. },
  584. "_lpos": {
  585. "__type__": "cc.Vec3",
  586. "x": 286.69899999999996,
  587. "y": 517.1020000000001,
  588. "z": 0
  589. },
  590. "_lrot": {
  591. "__type__": "cc.Quat",
  592. "x": 0,
  593. "y": 0,
  594. "z": 0,
  595. "w": 1
  596. },
  597. "_lscale": {
  598. "__type__": "cc.Vec3",
  599. "x": 1,
  600. "y": 1,
  601. "z": 1
  602. },
  603. "_mobility": 0,
  604. "_layer": 33554432,
  605. "_euler": {
  606. "__type__": "cc.Vec3",
  607. "x": 0,
  608. "y": 0,
  609. "z": 0
  610. },
  611. "_id": ""
  612. },
  613. {
  614. "__type__": "cc.UITransform",
  615. "_name": "",
  616. "_objFlags": 0,
  617. "__editorExtras__": {},
  618. "node": {
  619. "__id__": 24
  620. },
  621. "_enabled": true,
  622. "__prefab": {
  623. "__id__": 26
  624. },
  625. "_contentSize": {
  626. "__type__": "cc.Size",
  627. "width": 60,
  628. "height": 60
  629. },
  630. "_anchorPoint": {
  631. "__type__": "cc.Vec2",
  632. "x": 0.5,
  633. "y": 0.5
  634. },
  635. "_id": ""
  636. },
  637. {
  638. "__type__": "cc.CompPrefabInfo",
  639. "fileId": "c2rnekqIZGgpqxZnsLCi9W"
  640. },
  641. {
  642. "__type__": "cc.Sprite",
  643. "_name": "",
  644. "_objFlags": 0,
  645. "__editorExtras__": {},
  646. "node": {
  647. "__id__": 24
  648. },
  649. "_enabled": true,
  650. "__prefab": {
  651. "__id__": 28
  652. },
  653. "_customMaterial": null,
  654. "_srcBlendFactor": 2,
  655. "_dstBlendFactor": 4,
  656. "_color": {
  657. "__type__": "cc.Color",
  658. "r": 255,
  659. "g": 255,
  660. "b": 255,
  661. "a": 255
  662. },
  663. "_spriteFrame": {
  664. "__uuid__": "a3054774-ae8b-49c5-87ed-7540b3c27d1c@f9941",
  665. "__expectedType__": "cc.SpriteFrame"
  666. },
  667. "_type": 1,
  668. "_fillType": 0,
  669. "_sizeMode": 0,
  670. "_fillCenter": {
  671. "__type__": "cc.Vec2",
  672. "x": 0,
  673. "y": 0
  674. },
  675. "_fillStart": 0,
  676. "_fillRange": 0,
  677. "_isTrimmedMode": true,
  678. "_useGrayscale": false,
  679. "_atlas": null,
  680. "_id": ""
  681. },
  682. {
  683. "__type__": "cc.CompPrefabInfo",
  684. "fileId": "f7js/g1c5LYJHe5lQe/Rb5"
  685. },
  686. {
  687. "__type__": "cc.Button",
  688. "_name": "",
  689. "_objFlags": 0,
  690. "__editorExtras__": {},
  691. "node": {
  692. "__id__": 24
  693. },
  694. "_enabled": true,
  695. "__prefab": {
  696. "__id__": 30
  697. },
  698. "clickEvents": [],
  699. "_interactable": true,
  700. "_transition": 2,
  701. "_normalColor": {
  702. "__type__": "cc.Color",
  703. "r": 214,
  704. "g": 214,
  705. "b": 214,
  706. "a": 255
  707. },
  708. "_hoverColor": {
  709. "__type__": "cc.Color",
  710. "r": 211,
  711. "g": 211,
  712. "b": 211,
  713. "a": 255
  714. },
  715. "_pressedColor": {
  716. "__type__": "cc.Color",
  717. "r": 255,
  718. "g": 255,
  719. "b": 255,
  720. "a": 255
  721. },
  722. "_disabledColor": {
  723. "__type__": "cc.Color",
  724. "r": 124,
  725. "g": 124,
  726. "b": 124,
  727. "a": 255
  728. },
  729. "_normalSprite": {
  730. "__uuid__": "a3054774-ae8b-49c5-87ed-7540b3c27d1c@f9941",
  731. "__expectedType__": "cc.SpriteFrame"
  732. },
  733. "_hoverSprite": {
  734. "__uuid__": "a3054774-ae8b-49c5-87ed-7540b3c27d1c@f9941",
  735. "__expectedType__": "cc.SpriteFrame"
  736. },
  737. "_pressedSprite": {
  738. "__uuid__": "a3054774-ae8b-49c5-87ed-7540b3c27d1c@f9941",
  739. "__expectedType__": "cc.SpriteFrame"
  740. },
  741. "_disabledSprite": {
  742. "__uuid__": "a3054774-ae8b-49c5-87ed-7540b3c27d1c@f9941",
  743. "__expectedType__": "cc.SpriteFrame"
  744. },
  745. "_duration": 0.1,
  746. "_zoomScale": 1.2,
  747. "_target": {
  748. "__id__": 24
  749. },
  750. "_id": ""
  751. },
  752. {
  753. "__type__": "cc.CompPrefabInfo",
  754. "fileId": "f40Au/xNlH1bWrgY7Aj8M9"
  755. },
  756. {
  757. "__type__": "cc.PrefabInfo",
  758. "root": {
  759. "__id__": 1
  760. },
  761. "asset": {
  762. "__id__": 0
  763. },
  764. "fileId": "279CC/gXBN/qrKCqA1KB+O",
  765. "instance": null,
  766. "targetOverrides": null,
  767. "nestedPrefabInstanceRoots": null
  768. },
  769. {
  770. "__type__": "cc.Node",
  771. "_name": "Day_1",
  772. "_objFlags": 0,
  773. "__editorExtras__": {},
  774. "_parent": {
  775. "__id__": 1
  776. },
  777. "_children": [
  778. {
  779. "__id__": 33
  780. },
  781. {
  782. "__id__": 39
  783. },
  784. {
  785. "__id__": 45
  786. }
  787. ],
  788. "_active": true,
  789. "_components": [
  790. {
  791. "__id__": 51
  792. },
  793. {
  794. "__id__": 53
  795. },
  796. {
  797. "__id__": 55
  798. },
  799. {
  800. "__id__": 57
  801. }
  802. ],
  803. "_prefab": {
  804. "__id__": 59
  805. },
  806. "_lpos": {
  807. "__type__": "cc.Vec3",
  808. "x": -204.984,
  809. "y": 309.88599999999997,
  810. "z": 0
  811. },
  812. "_lrot": {
  813. "__type__": "cc.Quat",
  814. "x": 0,
  815. "y": 0,
  816. "z": 0,
  817. "w": 1
  818. },
  819. "_lscale": {
  820. "__type__": "cc.Vec3",
  821. "x": 1,
  822. "y": 1,
  823. "z": 1
  824. },
  825. "_mobility": 0,
  826. "_layer": 33554432,
  827. "_euler": {
  828. "__type__": "cc.Vec3",
  829. "x": 0,
  830. "y": 0,
  831. "z": 0
  832. },
  833. "_id": ""
  834. },
  835. {
  836. "__type__": "cc.Node",
  837. "_name": "Gift",
  838. "_objFlags": 0,
  839. "__editorExtras__": {},
  840. "_parent": {
  841. "__id__": 32
  842. },
  843. "_children": [],
  844. "_active": true,
  845. "_components": [
  846. {
  847. "__id__": 34
  848. },
  849. {
  850. "__id__": 36
  851. }
  852. ],
  853. "_prefab": {
  854. "__id__": 38
  855. },
  856. "_lpos": {
  857. "__type__": "cc.Vec3",
  858. "x": 0,
  859. "y": 0,
  860. "z": 0
  861. },
  862. "_lrot": {
  863. "__type__": "cc.Quat",
  864. "x": 0,
  865. "y": 0,
  866. "z": 0,
  867. "w": 1
  868. },
  869. "_lscale": {
  870. "__type__": "cc.Vec3",
  871. "x": 1,
  872. "y": 1,
  873. "z": 1
  874. },
  875. "_mobility": 0,
  876. "_layer": 33554432,
  877. "_euler": {
  878. "__type__": "cc.Vec3",
  879. "x": 0,
  880. "y": 0,
  881. "z": 0
  882. },
  883. "_id": ""
  884. },
  885. {
  886. "__type__": "cc.UITransform",
  887. "_name": "",
  888. "_objFlags": 0,
  889. "__editorExtras__": {},
  890. "node": {
  891. "__id__": 33
  892. },
  893. "_enabled": true,
  894. "__prefab": {
  895. "__id__": 35
  896. },
  897. "_contentSize": {
  898. "__type__": "cc.Size",
  899. "width": 116,
  900. "height": 112
  901. },
  902. "_anchorPoint": {
  903. "__type__": "cc.Vec2",
  904. "x": 0.5,
  905. "y": 0.5
  906. },
  907. "_id": ""
  908. },
  909. {
  910. "__type__": "cc.CompPrefabInfo",
  911. "fileId": "f2DYZdaHNCQpkEUe3V45D6"
  912. },
  913. {
  914. "__type__": "cc.Sprite",
  915. "_name": "",
  916. "_objFlags": 0,
  917. "__editorExtras__": {},
  918. "node": {
  919. "__id__": 33
  920. },
  921. "_enabled": true,
  922. "__prefab": {
  923. "__id__": 37
  924. },
  925. "_customMaterial": null,
  926. "_srcBlendFactor": 2,
  927. "_dstBlendFactor": 4,
  928. "_color": {
  929. "__type__": "cc.Color",
  930. "r": 255,
  931. "g": 255,
  932. "b": 255,
  933. "a": 255
  934. },
  935. "_spriteFrame": {
  936. "__uuid__": "31c647db-302c-4f26-9afb-36980393c203@f9941",
  937. "__expectedType__": "cc.SpriteFrame"
  938. },
  939. "_type": 0,
  940. "_fillType": 0,
  941. "_sizeMode": 1,
  942. "_fillCenter": {
  943. "__type__": "cc.Vec2",
  944. "x": 0,
  945. "y": 0
  946. },
  947. "_fillStart": 0,
  948. "_fillRange": 0,
  949. "_isTrimmedMode": true,
  950. "_useGrayscale": false,
  951. "_atlas": null,
  952. "_id": ""
  953. },
  954. {
  955. "__type__": "cc.CompPrefabInfo",
  956. "fileId": "766aSMA1VLz5RJrdkFCQ03"
  957. },
  958. {
  959. "__type__": "cc.PrefabInfo",
  960. "root": {
  961. "__id__": 1
  962. },
  963. "asset": {
  964. "__id__": 0
  965. },
  966. "fileId": "74FlRw2opHUpm5n7mmDiQJ",
  967. "instance": null,
  968. "targetOverrides": null,
  969. "nestedPrefabInstanceRoots": null
  970. },
  971. {
  972. "__type__": "cc.Node",
  973. "_name": "HadSign",
  974. "_objFlags": 0,
  975. "__editorExtras__": {},
  976. "_parent": {
  977. "__id__": 32
  978. },
  979. "_children": [],
  980. "_active": true,
  981. "_components": [
  982. {
  983. "__id__": 40
  984. },
  985. {
  986. "__id__": 42
  987. }
  988. ],
  989. "_prefab": {
  990. "__id__": 44
  991. },
  992. "_lpos": {
  993. "__type__": "cc.Vec3",
  994. "x": 0,
  995. "y": 0,
  996. "z": 0
  997. },
  998. "_lrot": {
  999. "__type__": "cc.Quat",
  1000. "x": 0,
  1001. "y": 0,
  1002. "z": 0,
  1003. "w": 1
  1004. },
  1005. "_lscale": {
  1006. "__type__": "cc.Vec3",
  1007. "x": 1,
  1008. "y": 1,
  1009. "z": 1
  1010. },
  1011. "_mobility": 0,
  1012. "_layer": 33554432,
  1013. "_euler": {
  1014. "__type__": "cc.Vec3",
  1015. "x": 0,
  1016. "y": 0,
  1017. "z": 0
  1018. },
  1019. "_id": ""
  1020. },
  1021. {
  1022. "__type__": "cc.UITransform",
  1023. "_name": "",
  1024. "_objFlags": 0,
  1025. "__editorExtras__": {},
  1026. "node": {
  1027. "__id__": 39
  1028. },
  1029. "_enabled": true,
  1030. "__prefab": {
  1031. "__id__": 41
  1032. },
  1033. "_contentSize": {
  1034. "__type__": "cc.Size",
  1035. "width": 97,
  1036. "height": 68
  1037. },
  1038. "_anchorPoint": {
  1039. "__type__": "cc.Vec2",
  1040. "x": 0.5,
  1041. "y": 0.5
  1042. },
  1043. "_id": ""
  1044. },
  1045. {
  1046. "__type__": "cc.CompPrefabInfo",
  1047. "fileId": "97q3kIt/1HEIKJoDjgIoXb"
  1048. },
  1049. {
  1050. "__type__": "cc.Sprite",
  1051. "_name": "",
  1052. "_objFlags": 0,
  1053. "__editorExtras__": {},
  1054. "node": {
  1055. "__id__": 39
  1056. },
  1057. "_enabled": true,
  1058. "__prefab": {
  1059. "__id__": 43
  1060. },
  1061. "_customMaterial": null,
  1062. "_srcBlendFactor": 2,
  1063. "_dstBlendFactor": 4,
  1064. "_color": {
  1065. "__type__": "cc.Color",
  1066. "r": 255,
  1067. "g": 255,
  1068. "b": 255,
  1069. "a": 255
  1070. },
  1071. "_spriteFrame": {
  1072. "__uuid__": "1a1cc4ba-d19b-42a0-a830-924a95ce86b1@f9941",
  1073. "__expectedType__": "cc.SpriteFrame"
  1074. },
  1075. "_type": 0,
  1076. "_fillType": 0,
  1077. "_sizeMode": 1,
  1078. "_fillCenter": {
  1079. "__type__": "cc.Vec2",
  1080. "x": 0,
  1081. "y": 0
  1082. },
  1083. "_fillStart": 0,
  1084. "_fillRange": 0,
  1085. "_isTrimmedMode": true,
  1086. "_useGrayscale": false,
  1087. "_atlas": null,
  1088. "_id": ""
  1089. },
  1090. {
  1091. "__type__": "cc.CompPrefabInfo",
  1092. "fileId": "ccUpIXhXhL9YIZcxHqsFi9"
  1093. },
  1094. {
  1095. "__type__": "cc.PrefabInfo",
  1096. "root": {
  1097. "__id__": 1
  1098. },
  1099. "asset": {
  1100. "__id__": 0
  1101. },
  1102. "fileId": "e3K/KMPm5KPaJKR7CoV11w",
  1103. "instance": null,
  1104. "targetOverrides": null,
  1105. "nestedPrefabInstanceRoots": null
  1106. },
  1107. {
  1108. "__type__": "cc.Node",
  1109. "_name": "Mask",
  1110. "_objFlags": 0,
  1111. "__editorExtras__": {},
  1112. "_parent": {
  1113. "__id__": 32
  1114. },
  1115. "_children": [],
  1116. "_active": true,
  1117. "_components": [
  1118. {
  1119. "__id__": 46
  1120. },
  1121. {
  1122. "__id__": 48
  1123. }
  1124. ],
  1125. "_prefab": {
  1126. "__id__": 50
  1127. },
  1128. "_lpos": {
  1129. "__type__": "cc.Vec3",
  1130. "x": 2.8859999999999957,
  1131. "y": 2.88799999999992,
  1132. "z": 0
  1133. },
  1134. "_lrot": {
  1135. "__type__": "cc.Quat",
  1136. "x": 0,
  1137. "y": 0,
  1138. "z": 0,
  1139. "w": 1
  1140. },
  1141. "_lscale": {
  1142. "__type__": "cc.Vec3",
  1143. "x": 1,
  1144. "y": 1,
  1145. "z": 1
  1146. },
  1147. "_mobility": 0,
  1148. "_layer": 33554432,
  1149. "_euler": {
  1150. "__type__": "cc.Vec3",
  1151. "x": 0,
  1152. "y": 0,
  1153. "z": 0
  1154. },
  1155. "_id": ""
  1156. },
  1157. {
  1158. "__type__": "cc.UITransform",
  1159. "_name": "",
  1160. "_objFlags": 0,
  1161. "__editorExtras__": {},
  1162. "node": {
  1163. "__id__": 45
  1164. },
  1165. "_enabled": true,
  1166. "__prefab": {
  1167. "__id__": 47
  1168. },
  1169. "_contentSize": {
  1170. "__type__": "cc.Size",
  1171. "width": 187.9,
  1172. "height": 240
  1173. },
  1174. "_anchorPoint": {
  1175. "__type__": "cc.Vec2",
  1176. "x": 0.5,
  1177. "y": 0.5
  1178. },
  1179. "_id": ""
  1180. },
  1181. {
  1182. "__type__": "cc.CompPrefabInfo",
  1183. "fileId": "47EJR7ONFJe6I41/fw7+wy"
  1184. },
  1185. {
  1186. "__type__": "cc.Sprite",
  1187. "_name": "",
  1188. "_objFlags": 0,
  1189. "__editorExtras__": {},
  1190. "node": {
  1191. "__id__": 45
  1192. },
  1193. "_enabled": true,
  1194. "__prefab": {
  1195. "__id__": 49
  1196. },
  1197. "_customMaterial": null,
  1198. "_srcBlendFactor": 2,
  1199. "_dstBlendFactor": 4,
  1200. "_color": {
  1201. "__type__": "cc.Color",
  1202. "r": 255,
  1203. "g": 255,
  1204. "b": 255,
  1205. "a": 255
  1206. },
  1207. "_spriteFrame": {
  1208. "__uuid__": "3c728b28-864a-49ac-8dc7-ca95763a771c@f9941",
  1209. "__expectedType__": "cc.SpriteFrame"
  1210. },
  1211. "_type": 0,
  1212. "_fillType": 0,
  1213. "_sizeMode": 0,
  1214. "_fillCenter": {
  1215. "__type__": "cc.Vec2",
  1216. "x": 0,
  1217. "y": 0
  1218. },
  1219. "_fillStart": 0,
  1220. "_fillRange": 0,
  1221. "_isTrimmedMode": true,
  1222. "_useGrayscale": false,
  1223. "_atlas": null,
  1224. "_id": ""
  1225. },
  1226. {
  1227. "__type__": "cc.CompPrefabInfo",
  1228. "fileId": "078WitjldNIIw3qM2v4/PT"
  1229. },
  1230. {
  1231. "__type__": "cc.PrefabInfo",
  1232. "root": {
  1233. "__id__": 1
  1234. },
  1235. "asset": {
  1236. "__id__": 0
  1237. },
  1238. "fileId": "2eSd+d1WxAK71/AybDEXl6",
  1239. "instance": null,
  1240. "targetOverrides": null,
  1241. "nestedPrefabInstanceRoots": null
  1242. },
  1243. {
  1244. "__type__": "cc.UITransform",
  1245. "_name": "",
  1246. "_objFlags": 0,
  1247. "__editorExtras__": {},
  1248. "node": {
  1249. "__id__": 32
  1250. },
  1251. "_enabled": true,
  1252. "__prefab": {
  1253. "__id__": 52
  1254. },
  1255. "_contentSize": {
  1256. "__type__": "cc.Size",
  1257. "width": 210,
  1258. "height": 260
  1259. },
  1260. "_anchorPoint": {
  1261. "__type__": "cc.Vec2",
  1262. "x": 0.5,
  1263. "y": 0.5
  1264. },
  1265. "_id": ""
  1266. },
  1267. {
  1268. "__type__": "cc.CompPrefabInfo",
  1269. "fileId": "3cCdQDPpVDboq8HtyThL2k"
  1270. },
  1271. {
  1272. "__type__": "cc.Sprite",
  1273. "_name": "",
  1274. "_objFlags": 0,
  1275. "__editorExtras__": {},
  1276. "node": {
  1277. "__id__": 32
  1278. },
  1279. "_enabled": true,
  1280. "__prefab": {
  1281. "__id__": 54
  1282. },
  1283. "_customMaterial": null,
  1284. "_srcBlendFactor": 2,
  1285. "_dstBlendFactor": 4,
  1286. "_color": {
  1287. "__type__": "cc.Color",
  1288. "r": 255,
  1289. "g": 255,
  1290. "b": 255,
  1291. "a": 255
  1292. },
  1293. "_spriteFrame": {
  1294. "__uuid__": "b508855d-da36-40b2-ab43-6d961bc95c18@f9941",
  1295. "__expectedType__": "cc.SpriteFrame"
  1296. },
  1297. "_type": 1,
  1298. "_fillType": 0,
  1299. "_sizeMode": 0,
  1300. "_fillCenter": {
  1301. "__type__": "cc.Vec2",
  1302. "x": 0,
  1303. "y": 0
  1304. },
  1305. "_fillStart": 0,
  1306. "_fillRange": 0,
  1307. "_isTrimmedMode": true,
  1308. "_useGrayscale": false,
  1309. "_atlas": null,
  1310. "_id": ""
  1311. },
  1312. {
  1313. "__type__": "cc.CompPrefabInfo",
  1314. "fileId": "2cs0Dl3mNPDpSEAuDxoqXX"
  1315. },
  1316. {
  1317. "__type__": "cc.Button",
  1318. "_name": "",
  1319. "_objFlags": 0,
  1320. "__editorExtras__": {},
  1321. "node": {
  1322. "__id__": 32
  1323. },
  1324. "_enabled": true,
  1325. "__prefab": {
  1326. "__id__": 56
  1327. },
  1328. "clickEvents": [],
  1329. "_interactable": true,
  1330. "_transition": 2,
  1331. "_normalColor": {
  1332. "__type__": "cc.Color",
  1333. "r": 214,
  1334. "g": 214,
  1335. "b": 214,
  1336. "a": 255
  1337. },
  1338. "_hoverColor": {
  1339. "__type__": "cc.Color",
  1340. "r": 211,
  1341. "g": 211,
  1342. "b": 211,
  1343. "a": 255
  1344. },
  1345. "_pressedColor": {
  1346. "__type__": "cc.Color",
  1347. "r": 255,
  1348. "g": 255,
  1349. "b": 255,
  1350. "a": 255
  1351. },
  1352. "_disabledColor": {
  1353. "__type__": "cc.Color",
  1354. "r": 124,
  1355. "g": 124,
  1356. "b": 124,
  1357. "a": 255
  1358. },
  1359. "_normalSprite": {
  1360. "__uuid__": "b508855d-da36-40b2-ab43-6d961bc95c18@f9941",
  1361. "__expectedType__": "cc.SpriteFrame"
  1362. },
  1363. "_hoverSprite": {
  1364. "__uuid__": "b508855d-da36-40b2-ab43-6d961bc95c18@f9941",
  1365. "__expectedType__": "cc.SpriteFrame"
  1366. },
  1367. "_pressedSprite": {
  1368. "__uuid__": "b508855d-da36-40b2-ab43-6d961bc95c18@f9941",
  1369. "__expectedType__": "cc.SpriteFrame"
  1370. },
  1371. "_disabledSprite": {
  1372. "__uuid__": "b508855d-da36-40b2-ab43-6d961bc95c18@f9941",
  1373. "__expectedType__": "cc.SpriteFrame"
  1374. },
  1375. "_duration": 0.1,
  1376. "_zoomScale": 1.2,
  1377. "_target": {
  1378. "__id__": 32
  1379. },
  1380. "_id": ""
  1381. },
  1382. {
  1383. "__type__": "cc.CompPrefabInfo",
  1384. "fileId": "4eNXmlyvFCOKIbmWfpEgHz"
  1385. },
  1386. {
  1387. "__type__": "279cfqjGjNDm6ukdVfGELoL",
  1388. "_name": "",
  1389. "_objFlags": 0,
  1390. "__editorExtras__": {},
  1391. "node": {
  1392. "__id__": 32
  1393. },
  1394. "_enabled": true,
  1395. "__prefab": {
  1396. "__id__": 58
  1397. },
  1398. "mask": null,
  1399. "gift": null,
  1400. "hadSign": null,
  1401. "sign_btn": null,
  1402. "_id": ""
  1403. },
  1404. {
  1405. "__type__": "cc.CompPrefabInfo",
  1406. "fileId": "e9N9ed3atBo6VAM58RdF9t"
  1407. },
  1408. {
  1409. "__type__": "cc.PrefabInfo",
  1410. "root": {
  1411. "__id__": 1
  1412. },
  1413. "asset": {
  1414. "__id__": 0
  1415. },
  1416. "fileId": "aaSqA5YphPdZ983WcG79gU",
  1417. "instance": null,
  1418. "targetOverrides": null,
  1419. "nestedPrefabInstanceRoots": null
  1420. },
  1421. {
  1422. "__type__": "cc.Node",
  1423. "_name": "Day_2",
  1424. "_objFlags": 0,
  1425. "__editorExtras__": {},
  1426. "_parent": {
  1427. "__id__": 1
  1428. },
  1429. "_children": [
  1430. {
  1431. "__id__": 61
  1432. },
  1433. {
  1434. "__id__": 67
  1435. },
  1436. {
  1437. "__id__": 73
  1438. }
  1439. ],
  1440. "_active": true,
  1441. "_components": [
  1442. {
  1443. "__id__": 79
  1444. },
  1445. {
  1446. "__id__": 81
  1447. },
  1448. {
  1449. "__id__": 83
  1450. },
  1451. {
  1452. "__id__": 85
  1453. }
  1454. ],
  1455. "_prefab": {
  1456. "__id__": 87
  1457. },
  1458. "_lpos": {
  1459. "__type__": "cc.Vec3",
  1460. "x": 0,
  1461. "y": 316.71000000000004,
  1462. "z": 0
  1463. },
  1464. "_lrot": {
  1465. "__type__": "cc.Quat",
  1466. "x": 0,
  1467. "y": 0,
  1468. "z": 0,
  1469. "w": 1
  1470. },
  1471. "_lscale": {
  1472. "__type__": "cc.Vec3",
  1473. "x": 1,
  1474. "y": 1,
  1475. "z": 1
  1476. },
  1477. "_mobility": 0,
  1478. "_layer": 33554432,
  1479. "_euler": {
  1480. "__type__": "cc.Vec3",
  1481. "x": 0,
  1482. "y": 0,
  1483. "z": 0
  1484. },
  1485. "_id": ""
  1486. },
  1487. {
  1488. "__type__": "cc.Node",
  1489. "_name": "Gift",
  1490. "_objFlags": 0,
  1491. "__editorExtras__": {},
  1492. "_parent": {
  1493. "__id__": 60
  1494. },
  1495. "_children": [],
  1496. "_active": true,
  1497. "_components": [
  1498. {
  1499. "__id__": 62
  1500. },
  1501. {
  1502. "__id__": 64
  1503. }
  1504. ],
  1505. "_prefab": {
  1506. "__id__": 66
  1507. },
  1508. "_lpos": {
  1509. "__type__": "cc.Vec3",
  1510. "x": 0,
  1511. "y": 0,
  1512. "z": 0
  1513. },
  1514. "_lrot": {
  1515. "__type__": "cc.Quat",
  1516. "x": 0,
  1517. "y": 0,
  1518. "z": 0,
  1519. "w": 1
  1520. },
  1521. "_lscale": {
  1522. "__type__": "cc.Vec3",
  1523. "x": 1,
  1524. "y": 1,
  1525. "z": 1
  1526. },
  1527. "_mobility": 0,
  1528. "_layer": 33554432,
  1529. "_euler": {
  1530. "__type__": "cc.Vec3",
  1531. "x": 0,
  1532. "y": 0,
  1533. "z": 0
  1534. },
  1535. "_id": ""
  1536. },
  1537. {
  1538. "__type__": "cc.UITransform",
  1539. "_name": "",
  1540. "_objFlags": 0,
  1541. "__editorExtras__": {},
  1542. "node": {
  1543. "__id__": 61
  1544. },
  1545. "_enabled": true,
  1546. "__prefab": {
  1547. "__id__": 63
  1548. },
  1549. "_contentSize": {
  1550. "__type__": "cc.Size",
  1551. "width": 116,
  1552. "height": 112
  1553. },
  1554. "_anchorPoint": {
  1555. "__type__": "cc.Vec2",
  1556. "x": 0.5,
  1557. "y": 0.5
  1558. },
  1559. "_id": ""
  1560. },
  1561. {
  1562. "__type__": "cc.CompPrefabInfo",
  1563. "fileId": "4bR3vbUslHHqATGSlF1ELW"
  1564. },
  1565. {
  1566. "__type__": "cc.Sprite",
  1567. "_name": "",
  1568. "_objFlags": 0,
  1569. "__editorExtras__": {},
  1570. "node": {
  1571. "__id__": 61
  1572. },
  1573. "_enabled": true,
  1574. "__prefab": {
  1575. "__id__": 65
  1576. },
  1577. "_customMaterial": null,
  1578. "_srcBlendFactor": 2,
  1579. "_dstBlendFactor": 4,
  1580. "_color": {
  1581. "__type__": "cc.Color",
  1582. "r": 255,
  1583. "g": 255,
  1584. "b": 255,
  1585. "a": 255
  1586. },
  1587. "_spriteFrame": {
  1588. "__uuid__": "31c647db-302c-4f26-9afb-36980393c203@f9941",
  1589. "__expectedType__": "cc.SpriteFrame"
  1590. },
  1591. "_type": 0,
  1592. "_fillType": 0,
  1593. "_sizeMode": 1,
  1594. "_fillCenter": {
  1595. "__type__": "cc.Vec2",
  1596. "x": 0,
  1597. "y": 0
  1598. },
  1599. "_fillStart": 0,
  1600. "_fillRange": 0,
  1601. "_isTrimmedMode": true,
  1602. "_useGrayscale": false,
  1603. "_atlas": null,
  1604. "_id": ""
  1605. },
  1606. {
  1607. "__type__": "cc.CompPrefabInfo",
  1608. "fileId": "1c8gRWaJZBMpmzRVdULdGr"
  1609. },
  1610. {
  1611. "__type__": "cc.PrefabInfo",
  1612. "root": {
  1613. "__id__": 1
  1614. },
  1615. "asset": {
  1616. "__id__": 0
  1617. },
  1618. "fileId": "41cu0qOt9G2ZjY1JtTrvjF",
  1619. "instance": null,
  1620. "targetOverrides": null,
  1621. "nestedPrefabInstanceRoots": null
  1622. },
  1623. {
  1624. "__type__": "cc.Node",
  1625. "_name": "HadSign",
  1626. "_objFlags": 0,
  1627. "__editorExtras__": {},
  1628. "_parent": {
  1629. "__id__": 60
  1630. },
  1631. "_children": [],
  1632. "_active": true,
  1633. "_components": [
  1634. {
  1635. "__id__": 68
  1636. },
  1637. {
  1638. "__id__": 70
  1639. }
  1640. ],
  1641. "_prefab": {
  1642. "__id__": 72
  1643. },
  1644. "_lpos": {
  1645. "__type__": "cc.Vec3",
  1646. "x": 0,
  1647. "y": 0,
  1648. "z": 0
  1649. },
  1650. "_lrot": {
  1651. "__type__": "cc.Quat",
  1652. "x": 0,
  1653. "y": 0,
  1654. "z": 0,
  1655. "w": 1
  1656. },
  1657. "_lscale": {
  1658. "__type__": "cc.Vec3",
  1659. "x": 1,
  1660. "y": 1,
  1661. "z": 1
  1662. },
  1663. "_mobility": 0,
  1664. "_layer": 33554432,
  1665. "_euler": {
  1666. "__type__": "cc.Vec3",
  1667. "x": 0,
  1668. "y": 0,
  1669. "z": 0
  1670. },
  1671. "_id": ""
  1672. },
  1673. {
  1674. "__type__": "cc.UITransform",
  1675. "_name": "",
  1676. "_objFlags": 0,
  1677. "__editorExtras__": {},
  1678. "node": {
  1679. "__id__": 67
  1680. },
  1681. "_enabled": true,
  1682. "__prefab": {
  1683. "__id__": 69
  1684. },
  1685. "_contentSize": {
  1686. "__type__": "cc.Size",
  1687. "width": 97,
  1688. "height": 68
  1689. },
  1690. "_anchorPoint": {
  1691. "__type__": "cc.Vec2",
  1692. "x": 0.5,
  1693. "y": 0.5
  1694. },
  1695. "_id": ""
  1696. },
  1697. {
  1698. "__type__": "cc.CompPrefabInfo",
  1699. "fileId": "6fbCElSIhBb4+r7Y+Jg6Mq"
  1700. },
  1701. {
  1702. "__type__": "cc.Sprite",
  1703. "_name": "",
  1704. "_objFlags": 0,
  1705. "__editorExtras__": {},
  1706. "node": {
  1707. "__id__": 67
  1708. },
  1709. "_enabled": true,
  1710. "__prefab": {
  1711. "__id__": 71
  1712. },
  1713. "_customMaterial": null,
  1714. "_srcBlendFactor": 2,
  1715. "_dstBlendFactor": 4,
  1716. "_color": {
  1717. "__type__": "cc.Color",
  1718. "r": 255,
  1719. "g": 255,
  1720. "b": 255,
  1721. "a": 255
  1722. },
  1723. "_spriteFrame": {
  1724. "__uuid__": "1a1cc4ba-d19b-42a0-a830-924a95ce86b1@f9941",
  1725. "__expectedType__": "cc.SpriteFrame"
  1726. },
  1727. "_type": 0,
  1728. "_fillType": 0,
  1729. "_sizeMode": 1,
  1730. "_fillCenter": {
  1731. "__type__": "cc.Vec2",
  1732. "x": 0,
  1733. "y": 0
  1734. },
  1735. "_fillStart": 0,
  1736. "_fillRange": 0,
  1737. "_isTrimmedMode": true,
  1738. "_useGrayscale": false,
  1739. "_atlas": null,
  1740. "_id": ""
  1741. },
  1742. {
  1743. "__type__": "cc.CompPrefabInfo",
  1744. "fileId": "e27VGWJ5BGMbx9VeyLlFvH"
  1745. },
  1746. {
  1747. "__type__": "cc.PrefabInfo",
  1748. "root": {
  1749. "__id__": 1
  1750. },
  1751. "asset": {
  1752. "__id__": 0
  1753. },
  1754. "fileId": "cctf30HX1GTbP+zaTbqqvQ",
  1755. "instance": null,
  1756. "targetOverrides": null,
  1757. "nestedPrefabInstanceRoots": null
  1758. },
  1759. {
  1760. "__type__": "cc.Node",
  1761. "_name": "Mask",
  1762. "_objFlags": 0,
  1763. "__editorExtras__": {},
  1764. "_parent": {
  1765. "__id__": 60
  1766. },
  1767. "_children": [],
  1768. "_active": true,
  1769. "_components": [
  1770. {
  1771. "__id__": 74
  1772. },
  1773. {
  1774. "__id__": 76
  1775. }
  1776. ],
  1777. "_prefab": {
  1778. "__id__": 78
  1779. },
  1780. "_lpos": {
  1781. "__type__": "cc.Vec3",
  1782. "x": 2.1549999999999727,
  1783. "y": -3.2480000000000473,
  1784. "z": 0
  1785. },
  1786. "_lrot": {
  1787. "__type__": "cc.Quat",
  1788. "x": 0,
  1789. "y": 0,
  1790. "z": 0,
  1791. "w": 1
  1792. },
  1793. "_lscale": {
  1794. "__type__": "cc.Vec3",
  1795. "x": 1,
  1796. "y": 1,
  1797. "z": 1
  1798. },
  1799. "_mobility": 0,
  1800. "_layer": 33554432,
  1801. "_euler": {
  1802. "__type__": "cc.Vec3",
  1803. "x": 0,
  1804. "y": 0,
  1805. "z": 0
  1806. },
  1807. "_id": ""
  1808. },
  1809. {
  1810. "__type__": "cc.UITransform",
  1811. "_name": "",
  1812. "_objFlags": 0,
  1813. "__editorExtras__": {},
  1814. "node": {
  1815. "__id__": 73
  1816. },
  1817. "_enabled": true,
  1818. "__prefab": {
  1819. "__id__": 75
  1820. },
  1821. "_contentSize": {
  1822. "__type__": "cc.Size",
  1823. "width": 188,
  1824. "height": 232
  1825. },
  1826. "_anchorPoint": {
  1827. "__type__": "cc.Vec2",
  1828. "x": 0.5,
  1829. "y": 0.5
  1830. },
  1831. "_id": ""
  1832. },
  1833. {
  1834. "__type__": "cc.CompPrefabInfo",
  1835. "fileId": "fa1fkXrXhIao/zdNH8bXXd"
  1836. },
  1837. {
  1838. "__type__": "cc.Sprite",
  1839. "_name": "",
  1840. "_objFlags": 0,
  1841. "__editorExtras__": {},
  1842. "node": {
  1843. "__id__": 73
  1844. },
  1845. "_enabled": true,
  1846. "__prefab": {
  1847. "__id__": 77
  1848. },
  1849. "_customMaterial": null,
  1850. "_srcBlendFactor": 2,
  1851. "_dstBlendFactor": 4,
  1852. "_color": {
  1853. "__type__": "cc.Color",
  1854. "r": 255,
  1855. "g": 255,
  1856. "b": 255,
  1857. "a": 255
  1858. },
  1859. "_spriteFrame": {
  1860. "__uuid__": "9c085b9f-b2c5-4e04-9afe-d184d291e9f6@f9941",
  1861. "__expectedType__": "cc.SpriteFrame"
  1862. },
  1863. "_type": 0,
  1864. "_fillType": 0,
  1865. "_sizeMode": 0,
  1866. "_fillCenter": {
  1867. "__type__": "cc.Vec2",
  1868. "x": 0,
  1869. "y": 0
  1870. },
  1871. "_fillStart": 0,
  1872. "_fillRange": 0,
  1873. "_isTrimmedMode": true,
  1874. "_useGrayscale": false,
  1875. "_atlas": null,
  1876. "_id": ""
  1877. },
  1878. {
  1879. "__type__": "cc.CompPrefabInfo",
  1880. "fileId": "56R9N5GUZCYqRvbHew8Cu0"
  1881. },
  1882. {
  1883. "__type__": "cc.PrefabInfo",
  1884. "root": {
  1885. "__id__": 1
  1886. },
  1887. "asset": {
  1888. "__id__": 0
  1889. },
  1890. "fileId": "e6xBvilvVMoYllu4qsjPIs",
  1891. "instance": null,
  1892. "targetOverrides": null,
  1893. "nestedPrefabInstanceRoots": null
  1894. },
  1895. {
  1896. "__type__": "cc.UITransform",
  1897. "_name": "",
  1898. "_objFlags": 0,
  1899. "__editorExtras__": {},
  1900. "node": {
  1901. "__id__": 60
  1902. },
  1903. "_enabled": true,
  1904. "__prefab": {
  1905. "__id__": 80
  1906. },
  1907. "_contentSize": {
  1908. "__type__": "cc.Size",
  1909. "width": 210,
  1910. "height": 260
  1911. },
  1912. "_anchorPoint": {
  1913. "__type__": "cc.Vec2",
  1914. "x": 0.5,
  1915. "y": 0.5
  1916. },
  1917. "_id": ""
  1918. },
  1919. {
  1920. "__type__": "cc.CompPrefabInfo",
  1921. "fileId": "13rscUqApFNbbJcYqLgerv"
  1922. },
  1923. {
  1924. "__type__": "cc.Sprite",
  1925. "_name": "",
  1926. "_objFlags": 0,
  1927. "__editorExtras__": {},
  1928. "node": {
  1929. "__id__": 60
  1930. },
  1931. "_enabled": true,
  1932. "__prefab": {
  1933. "__id__": 82
  1934. },
  1935. "_customMaterial": null,
  1936. "_srcBlendFactor": 2,
  1937. "_dstBlendFactor": 4,
  1938. "_color": {
  1939. "__type__": "cc.Color",
  1940. "r": 255,
  1941. "g": 255,
  1942. "b": 255,
  1943. "a": 255
  1944. },
  1945. "_spriteFrame": {
  1946. "__uuid__": "f5e91635-0c2d-4788-ad49-6fe74db5b174@f9941",
  1947. "__expectedType__": "cc.SpriteFrame"
  1948. },
  1949. "_type": 1,
  1950. "_fillType": 0,
  1951. "_sizeMode": 0,
  1952. "_fillCenter": {
  1953. "__type__": "cc.Vec2",
  1954. "x": 0,
  1955. "y": 0
  1956. },
  1957. "_fillStart": 0,
  1958. "_fillRange": 0,
  1959. "_isTrimmedMode": true,
  1960. "_useGrayscale": false,
  1961. "_atlas": null,
  1962. "_id": ""
  1963. },
  1964. {
  1965. "__type__": "cc.CompPrefabInfo",
  1966. "fileId": "2dSw8E+BxNQ4avynpY0XDC"
  1967. },
  1968. {
  1969. "__type__": "cc.Button",
  1970. "_name": "",
  1971. "_objFlags": 0,
  1972. "__editorExtras__": {},
  1973. "node": {
  1974. "__id__": 60
  1975. },
  1976. "_enabled": true,
  1977. "__prefab": {
  1978. "__id__": 84
  1979. },
  1980. "clickEvents": [],
  1981. "_interactable": true,
  1982. "_transition": 2,
  1983. "_normalColor": {
  1984. "__type__": "cc.Color",
  1985. "r": 214,
  1986. "g": 214,
  1987. "b": 214,
  1988. "a": 255
  1989. },
  1990. "_hoverColor": {
  1991. "__type__": "cc.Color",
  1992. "r": 211,
  1993. "g": 211,
  1994. "b": 211,
  1995. "a": 255
  1996. },
  1997. "_pressedColor": {
  1998. "__type__": "cc.Color",
  1999. "r": 255,
  2000. "g": 255,
  2001. "b": 255,
  2002. "a": 255
  2003. },
  2004. "_disabledColor": {
  2005. "__type__": "cc.Color",
  2006. "r": 124,
  2007. "g": 124,
  2008. "b": 124,
  2009. "a": 255
  2010. },
  2011. "_normalSprite": {
  2012. "__uuid__": "f5e91635-0c2d-4788-ad49-6fe74db5b174@f9941",
  2013. "__expectedType__": "cc.SpriteFrame"
  2014. },
  2015. "_hoverSprite": {
  2016. "__uuid__": "f5e91635-0c2d-4788-ad49-6fe74db5b174@f9941",
  2017. "__expectedType__": "cc.SpriteFrame"
  2018. },
  2019. "_pressedSprite": {
  2020. "__uuid__": "f5e91635-0c2d-4788-ad49-6fe74db5b174@f9941",
  2021. "__expectedType__": "cc.SpriteFrame"
  2022. },
  2023. "_disabledSprite": {
  2024. "__uuid__": "f5e91635-0c2d-4788-ad49-6fe74db5b174@f9941",
  2025. "__expectedType__": "cc.SpriteFrame"
  2026. },
  2027. "_duration": 0.1,
  2028. "_zoomScale": 1.2,
  2029. "_target": {
  2030. "__id__": 60
  2031. },
  2032. "_id": ""
  2033. },
  2034. {
  2035. "__type__": "cc.CompPrefabInfo",
  2036. "fileId": "3f7ytI3CRMvIeLS9IDKq5W"
  2037. },
  2038. {
  2039. "__type__": "279cfqjGjNDm6ukdVfGELoL",
  2040. "_name": "",
  2041. "_objFlags": 0,
  2042. "__editorExtras__": {},
  2043. "node": {
  2044. "__id__": 60
  2045. },
  2046. "_enabled": true,
  2047. "__prefab": {
  2048. "__id__": 86
  2049. },
  2050. "mask": null,
  2051. "gift": null,
  2052. "hadSign": null,
  2053. "sign_btn": null,
  2054. "_id": ""
  2055. },
  2056. {
  2057. "__type__": "cc.CompPrefabInfo",
  2058. "fileId": "5eBZdIskpBJJiU2kgAyvN5"
  2059. },
  2060. {
  2061. "__type__": "cc.PrefabInfo",
  2062. "root": {
  2063. "__id__": 1
  2064. },
  2065. "asset": {
  2066. "__id__": 0
  2067. },
  2068. "fileId": "b31N3h3sJA7rmjk2jLmOKp",
  2069. "instance": null,
  2070. "targetOverrides": null,
  2071. "nestedPrefabInstanceRoots": null
  2072. },
  2073. {
  2074. "__type__": "cc.Node",
  2075. "_name": "Day_3",
  2076. "_objFlags": 0,
  2077. "__editorExtras__": {},
  2078. "_parent": {
  2079. "__id__": 1
  2080. },
  2081. "_children": [
  2082. {
  2083. "__id__": 89
  2084. },
  2085. {
  2086. "__id__": 95
  2087. },
  2088. {
  2089. "__id__": 101
  2090. }
  2091. ],
  2092. "_active": true,
  2093. "_components": [
  2094. {
  2095. "__id__": 107
  2096. },
  2097. {
  2098. "__id__": 109
  2099. },
  2100. {
  2101. "__id__": 111
  2102. },
  2103. {
  2104. "__id__": 113
  2105. }
  2106. ],
  2107. "_prefab": {
  2108. "__id__": 115
  2109. },
  2110. "_lpos": {
  2111. "__type__": "cc.Vec3",
  2112. "x": 214.88599999999997,
  2113. "y": 313.76,
  2114. "z": 0
  2115. },
  2116. "_lrot": {
  2117. "__type__": "cc.Quat",
  2118. "x": 0,
  2119. "y": 0,
  2120. "z": 0,
  2121. "w": 1
  2122. },
  2123. "_lscale": {
  2124. "__type__": "cc.Vec3",
  2125. "x": 1,
  2126. "y": 1,
  2127. "z": 1
  2128. },
  2129. "_mobility": 0,
  2130. "_layer": 33554432,
  2131. "_euler": {
  2132. "__type__": "cc.Vec3",
  2133. "x": 0,
  2134. "y": 0,
  2135. "z": 0
  2136. },
  2137. "_id": ""
  2138. },
  2139. {
  2140. "__type__": "cc.Node",
  2141. "_name": "Gift",
  2142. "_objFlags": 0,
  2143. "__editorExtras__": {},
  2144. "_parent": {
  2145. "__id__": 88
  2146. },
  2147. "_children": [],
  2148. "_active": true,
  2149. "_components": [
  2150. {
  2151. "__id__": 90
  2152. },
  2153. {
  2154. "__id__": 92
  2155. }
  2156. ],
  2157. "_prefab": {
  2158. "__id__": 94
  2159. },
  2160. "_lpos": {
  2161. "__type__": "cc.Vec3",
  2162. "x": 0,
  2163. "y": 0,
  2164. "z": 0
  2165. },
  2166. "_lrot": {
  2167. "__type__": "cc.Quat",
  2168. "x": 0,
  2169. "y": 0,
  2170. "z": 0,
  2171. "w": 1
  2172. },
  2173. "_lscale": {
  2174. "__type__": "cc.Vec3",
  2175. "x": 1,
  2176. "y": 1,
  2177. "z": 1
  2178. },
  2179. "_mobility": 0,
  2180. "_layer": 33554432,
  2181. "_euler": {
  2182. "__type__": "cc.Vec3",
  2183. "x": 0,
  2184. "y": 0,
  2185. "z": 0
  2186. },
  2187. "_id": ""
  2188. },
  2189. {
  2190. "__type__": "cc.UITransform",
  2191. "_name": "",
  2192. "_objFlags": 0,
  2193. "__editorExtras__": {},
  2194. "node": {
  2195. "__id__": 89
  2196. },
  2197. "_enabled": true,
  2198. "__prefab": {
  2199. "__id__": 91
  2200. },
  2201. "_contentSize": {
  2202. "__type__": "cc.Size",
  2203. "width": 116,
  2204. "height": 112
  2205. },
  2206. "_anchorPoint": {
  2207. "__type__": "cc.Vec2",
  2208. "x": 0.5,
  2209. "y": 0.5
  2210. },
  2211. "_id": ""
  2212. },
  2213. {
  2214. "__type__": "cc.CompPrefabInfo",
  2215. "fileId": "e0muN/MMtOJpKFyzK48SG7"
  2216. },
  2217. {
  2218. "__type__": "cc.Sprite",
  2219. "_name": "",
  2220. "_objFlags": 0,
  2221. "__editorExtras__": {},
  2222. "node": {
  2223. "__id__": 89
  2224. },
  2225. "_enabled": true,
  2226. "__prefab": {
  2227. "__id__": 93
  2228. },
  2229. "_customMaterial": null,
  2230. "_srcBlendFactor": 2,
  2231. "_dstBlendFactor": 4,
  2232. "_color": {
  2233. "__type__": "cc.Color",
  2234. "r": 255,
  2235. "g": 255,
  2236. "b": 255,
  2237. "a": 255
  2238. },
  2239. "_spriteFrame": {
  2240. "__uuid__": "31c647db-302c-4f26-9afb-36980393c203@f9941",
  2241. "__expectedType__": "cc.SpriteFrame"
  2242. },
  2243. "_type": 0,
  2244. "_fillType": 0,
  2245. "_sizeMode": 1,
  2246. "_fillCenter": {
  2247. "__type__": "cc.Vec2",
  2248. "x": 0,
  2249. "y": 0
  2250. },
  2251. "_fillStart": 0,
  2252. "_fillRange": 0,
  2253. "_isTrimmedMode": true,
  2254. "_useGrayscale": false,
  2255. "_atlas": null,
  2256. "_id": ""
  2257. },
  2258. {
  2259. "__type__": "cc.CompPrefabInfo",
  2260. "fileId": "57/bP0mctJOak35ax0FVK8"
  2261. },
  2262. {
  2263. "__type__": "cc.PrefabInfo",
  2264. "root": {
  2265. "__id__": 1
  2266. },
  2267. "asset": {
  2268. "__id__": 0
  2269. },
  2270. "fileId": "1bbpPJ2qVEtJw3OnSkUMDQ",
  2271. "instance": null,
  2272. "targetOverrides": null,
  2273. "nestedPrefabInstanceRoots": null
  2274. },
  2275. {
  2276. "__type__": "cc.Node",
  2277. "_name": "HadSign",
  2278. "_objFlags": 0,
  2279. "__editorExtras__": {},
  2280. "_parent": {
  2281. "__id__": 88
  2282. },
  2283. "_children": [],
  2284. "_active": true,
  2285. "_components": [
  2286. {
  2287. "__id__": 96
  2288. },
  2289. {
  2290. "__id__": 98
  2291. }
  2292. ],
  2293. "_prefab": {
  2294. "__id__": 100
  2295. },
  2296. "_lpos": {
  2297. "__type__": "cc.Vec3",
  2298. "x": 0,
  2299. "y": 0,
  2300. "z": 0
  2301. },
  2302. "_lrot": {
  2303. "__type__": "cc.Quat",
  2304. "x": 0,
  2305. "y": 0,
  2306. "z": 0,
  2307. "w": 1
  2308. },
  2309. "_lscale": {
  2310. "__type__": "cc.Vec3",
  2311. "x": 1,
  2312. "y": 1,
  2313. "z": 1
  2314. },
  2315. "_mobility": 0,
  2316. "_layer": 33554432,
  2317. "_euler": {
  2318. "__type__": "cc.Vec3",
  2319. "x": 0,
  2320. "y": 0,
  2321. "z": 0
  2322. },
  2323. "_id": ""
  2324. },
  2325. {
  2326. "__type__": "cc.UITransform",
  2327. "_name": "",
  2328. "_objFlags": 0,
  2329. "__editorExtras__": {},
  2330. "node": {
  2331. "__id__": 95
  2332. },
  2333. "_enabled": true,
  2334. "__prefab": {
  2335. "__id__": 97
  2336. },
  2337. "_contentSize": {
  2338. "__type__": "cc.Size",
  2339. "width": 97,
  2340. "height": 68
  2341. },
  2342. "_anchorPoint": {
  2343. "__type__": "cc.Vec2",
  2344. "x": 0.5,
  2345. "y": 0.5
  2346. },
  2347. "_id": ""
  2348. },
  2349. {
  2350. "__type__": "cc.CompPrefabInfo",
  2351. "fileId": "8ciMA+uCZNJKBFa15tO6Mj"
  2352. },
  2353. {
  2354. "__type__": "cc.Sprite",
  2355. "_name": "",
  2356. "_objFlags": 0,
  2357. "__editorExtras__": {},
  2358. "node": {
  2359. "__id__": 95
  2360. },
  2361. "_enabled": true,
  2362. "__prefab": {
  2363. "__id__": 99
  2364. },
  2365. "_customMaterial": null,
  2366. "_srcBlendFactor": 2,
  2367. "_dstBlendFactor": 4,
  2368. "_color": {
  2369. "__type__": "cc.Color",
  2370. "r": 255,
  2371. "g": 255,
  2372. "b": 255,
  2373. "a": 255
  2374. },
  2375. "_spriteFrame": {
  2376. "__uuid__": "1a1cc4ba-d19b-42a0-a830-924a95ce86b1@f9941",
  2377. "__expectedType__": "cc.SpriteFrame"
  2378. },
  2379. "_type": 0,
  2380. "_fillType": 0,
  2381. "_sizeMode": 1,
  2382. "_fillCenter": {
  2383. "__type__": "cc.Vec2",
  2384. "x": 0,
  2385. "y": 0
  2386. },
  2387. "_fillStart": 0,
  2388. "_fillRange": 0,
  2389. "_isTrimmedMode": true,
  2390. "_useGrayscale": false,
  2391. "_atlas": null,
  2392. "_id": ""
  2393. },
  2394. {
  2395. "__type__": "cc.CompPrefabInfo",
  2396. "fileId": "084ebXnUxBbKclVS7Umva5"
  2397. },
  2398. {
  2399. "__type__": "cc.PrefabInfo",
  2400. "root": {
  2401. "__id__": 1
  2402. },
  2403. "asset": {
  2404. "__id__": 0
  2405. },
  2406. "fileId": "e1kqYBhPhI36JYOKOOksVL",
  2407. "instance": null,
  2408. "targetOverrides": null,
  2409. "nestedPrefabInstanceRoots": null
  2410. },
  2411. {
  2412. "__type__": "cc.Node",
  2413. "_name": "Mask",
  2414. "_objFlags": 0,
  2415. "__editorExtras__": {},
  2416. "_parent": {
  2417. "__id__": 88
  2418. },
  2419. "_children": [],
  2420. "_active": true,
  2421. "_components": [
  2422. {
  2423. "__id__": 102
  2424. },
  2425. {
  2426. "__id__": 104
  2427. }
  2428. ],
  2429. "_prefab": {
  2430. "__id__": 106
  2431. },
  2432. "_lpos": {
  2433. "__type__": "cc.Vec3",
  2434. "x": 0.5080000000000382,
  2435. "y": 0,
  2436. "z": 0
  2437. },
  2438. "_lrot": {
  2439. "__type__": "cc.Quat",
  2440. "x": 0,
  2441. "y": 0,
  2442. "z": 0,
  2443. "w": 1
  2444. },
  2445. "_lscale": {
  2446. "__type__": "cc.Vec3",
  2447. "x": 1,
  2448. "y": 1,
  2449. "z": 1
  2450. },
  2451. "_mobility": 0,
  2452. "_layer": 33554432,
  2453. "_euler": {
  2454. "__type__": "cc.Vec3",
  2455. "x": 0,
  2456. "y": 0,
  2457. "z": 0
  2458. },
  2459. "_id": ""
  2460. },
  2461. {
  2462. "__type__": "cc.UITransform",
  2463. "_name": "",
  2464. "_objFlags": 0,
  2465. "__editorExtras__": {},
  2466. "node": {
  2467. "__id__": 101
  2468. },
  2469. "_enabled": true,
  2470. "__prefab": {
  2471. "__id__": 103
  2472. },
  2473. "_contentSize": {
  2474. "__type__": "cc.Size",
  2475. "width": 194,
  2476. "height": 233
  2477. },
  2478. "_anchorPoint": {
  2479. "__type__": "cc.Vec2",
  2480. "x": 0.5,
  2481. "y": 0.5
  2482. },
  2483. "_id": ""
  2484. },
  2485. {
  2486. "__type__": "cc.CompPrefabInfo",
  2487. "fileId": "a47QiXkmBBWauu1BFz9wrF"
  2488. },
  2489. {
  2490. "__type__": "cc.Sprite",
  2491. "_name": "",
  2492. "_objFlags": 0,
  2493. "__editorExtras__": {},
  2494. "node": {
  2495. "__id__": 101
  2496. },
  2497. "_enabled": true,
  2498. "__prefab": {
  2499. "__id__": 105
  2500. },
  2501. "_customMaterial": null,
  2502. "_srcBlendFactor": 2,
  2503. "_dstBlendFactor": 4,
  2504. "_color": {
  2505. "__type__": "cc.Color",
  2506. "r": 255,
  2507. "g": 255,
  2508. "b": 255,
  2509. "a": 255
  2510. },
  2511. "_spriteFrame": {
  2512. "__uuid__": "7090aa72-1314-4e98-98d9-1ba249cd88e9@f9941",
  2513. "__expectedType__": "cc.SpriteFrame"
  2514. },
  2515. "_type": 0,
  2516. "_fillType": 0,
  2517. "_sizeMode": 0,
  2518. "_fillCenter": {
  2519. "__type__": "cc.Vec2",
  2520. "x": 0,
  2521. "y": 0
  2522. },
  2523. "_fillStart": 0,
  2524. "_fillRange": 0,
  2525. "_isTrimmedMode": true,
  2526. "_useGrayscale": false,
  2527. "_atlas": null,
  2528. "_id": ""
  2529. },
  2530. {
  2531. "__type__": "cc.CompPrefabInfo",
  2532. "fileId": "b2+Zdbsa9DBZXuFp4P2kLm"
  2533. },
  2534. {
  2535. "__type__": "cc.PrefabInfo",
  2536. "root": {
  2537. "__id__": 1
  2538. },
  2539. "asset": {
  2540. "__id__": 0
  2541. },
  2542. "fileId": "30hlcE9AZAAK0wV9oc9SNZ",
  2543. "instance": null,
  2544. "targetOverrides": null,
  2545. "nestedPrefabInstanceRoots": null
  2546. },
  2547. {
  2548. "__type__": "cc.UITransform",
  2549. "_name": "",
  2550. "_objFlags": 0,
  2551. "__editorExtras__": {},
  2552. "node": {
  2553. "__id__": 88
  2554. },
  2555. "_enabled": true,
  2556. "__prefab": {
  2557. "__id__": 108
  2558. },
  2559. "_contentSize": {
  2560. "__type__": "cc.Size",
  2561. "width": 210,
  2562. "height": 260
  2563. },
  2564. "_anchorPoint": {
  2565. "__type__": "cc.Vec2",
  2566. "x": 0.5,
  2567. "y": 0.5
  2568. },
  2569. "_id": ""
  2570. },
  2571. {
  2572. "__type__": "cc.CompPrefabInfo",
  2573. "fileId": "324CIpHxhGpaJFmoMdq+Ob"
  2574. },
  2575. {
  2576. "__type__": "cc.Sprite",
  2577. "_name": "",
  2578. "_objFlags": 0,
  2579. "__editorExtras__": {},
  2580. "node": {
  2581. "__id__": 88
  2582. },
  2583. "_enabled": true,
  2584. "__prefab": {
  2585. "__id__": 110
  2586. },
  2587. "_customMaterial": null,
  2588. "_srcBlendFactor": 2,
  2589. "_dstBlendFactor": 4,
  2590. "_color": {
  2591. "__type__": "cc.Color",
  2592. "r": 255,
  2593. "g": 255,
  2594. "b": 255,
  2595. "a": 255
  2596. },
  2597. "_spriteFrame": {
  2598. "__uuid__": "9edbbfa0-3f0e-4c2a-9698-96fd7693c0af@f9941",
  2599. "__expectedType__": "cc.SpriteFrame"
  2600. },
  2601. "_type": 1,
  2602. "_fillType": 0,
  2603. "_sizeMode": 0,
  2604. "_fillCenter": {
  2605. "__type__": "cc.Vec2",
  2606. "x": 0,
  2607. "y": 0
  2608. },
  2609. "_fillStart": 0,
  2610. "_fillRange": 0,
  2611. "_isTrimmedMode": true,
  2612. "_useGrayscale": false,
  2613. "_atlas": null,
  2614. "_id": ""
  2615. },
  2616. {
  2617. "__type__": "cc.CompPrefabInfo",
  2618. "fileId": "19Ku/FZtNGCLAthu2YkZax"
  2619. },
  2620. {
  2621. "__type__": "cc.Button",
  2622. "_name": "",
  2623. "_objFlags": 0,
  2624. "__editorExtras__": {},
  2625. "node": {
  2626. "__id__": 88
  2627. },
  2628. "_enabled": true,
  2629. "__prefab": {
  2630. "__id__": 112
  2631. },
  2632. "clickEvents": [],
  2633. "_interactable": true,
  2634. "_transition": 2,
  2635. "_normalColor": {
  2636. "__type__": "cc.Color",
  2637. "r": 214,
  2638. "g": 214,
  2639. "b": 214,
  2640. "a": 255
  2641. },
  2642. "_hoverColor": {
  2643. "__type__": "cc.Color",
  2644. "r": 211,
  2645. "g": 211,
  2646. "b": 211,
  2647. "a": 255
  2648. },
  2649. "_pressedColor": {
  2650. "__type__": "cc.Color",
  2651. "r": 255,
  2652. "g": 255,
  2653. "b": 255,
  2654. "a": 255
  2655. },
  2656. "_disabledColor": {
  2657. "__type__": "cc.Color",
  2658. "r": 124,
  2659. "g": 124,
  2660. "b": 124,
  2661. "a": 255
  2662. },
  2663. "_normalSprite": {
  2664. "__uuid__": "9edbbfa0-3f0e-4c2a-9698-96fd7693c0af@f9941",
  2665. "__expectedType__": "cc.SpriteFrame"
  2666. },
  2667. "_hoverSprite": {
  2668. "__uuid__": "9edbbfa0-3f0e-4c2a-9698-96fd7693c0af@f9941",
  2669. "__expectedType__": "cc.SpriteFrame"
  2670. },
  2671. "_pressedSprite": {
  2672. "__uuid__": "9edbbfa0-3f0e-4c2a-9698-96fd7693c0af@f9941",
  2673. "__expectedType__": "cc.SpriteFrame"
  2674. },
  2675. "_disabledSprite": {
  2676. "__uuid__": "9edbbfa0-3f0e-4c2a-9698-96fd7693c0af@f9941",
  2677. "__expectedType__": "cc.SpriteFrame"
  2678. },
  2679. "_duration": 0.1,
  2680. "_zoomScale": 1.2,
  2681. "_target": {
  2682. "__id__": 88
  2683. },
  2684. "_id": ""
  2685. },
  2686. {
  2687. "__type__": "cc.CompPrefabInfo",
  2688. "fileId": "b7udhqu0FG+oZxvGAcn5Di"
  2689. },
  2690. {
  2691. "__type__": "279cfqjGjNDm6ukdVfGELoL",
  2692. "_name": "",
  2693. "_objFlags": 0,
  2694. "__editorExtras__": {},
  2695. "node": {
  2696. "__id__": 88
  2697. },
  2698. "_enabled": true,
  2699. "__prefab": {
  2700. "__id__": 114
  2701. },
  2702. "mask": null,
  2703. "gift": null,
  2704. "hadSign": null,
  2705. "sign_btn": null,
  2706. "_id": ""
  2707. },
  2708. {
  2709. "__type__": "cc.CompPrefabInfo",
  2710. "fileId": "58O3sndHpE04X6e4f3tUAY"
  2711. },
  2712. {
  2713. "__type__": "cc.PrefabInfo",
  2714. "root": {
  2715. "__id__": 1
  2716. },
  2717. "asset": {
  2718. "__id__": 0
  2719. },
  2720. "fileId": "12K4buVTRAn599CyLKvZSH",
  2721. "instance": null,
  2722. "targetOverrides": null,
  2723. "nestedPrefabInstanceRoots": null
  2724. },
  2725. {
  2726. "__type__": "cc.Node",
  2727. "_name": "Day_4",
  2728. "_objFlags": 0,
  2729. "__editorExtras__": {},
  2730. "_parent": {
  2731. "__id__": 1
  2732. },
  2733. "_children": [
  2734. {
  2735. "__id__": 117
  2736. },
  2737. {
  2738. "__id__": 123
  2739. },
  2740. {
  2741. "__id__": 129
  2742. }
  2743. ],
  2744. "_active": true,
  2745. "_components": [
  2746. {
  2747. "__id__": 135
  2748. },
  2749. {
  2750. "__id__": 137
  2751. },
  2752. {
  2753. "__id__": 139
  2754. },
  2755. {
  2756. "__id__": 141
  2757. }
  2758. ],
  2759. "_prefab": {
  2760. "__id__": 143
  2761. },
  2762. "_lpos": {
  2763. "__type__": "cc.Vec3",
  2764. "x": -213.507,
  2765. "y": 49.697,
  2766. "z": 0
  2767. },
  2768. "_lrot": {
  2769. "__type__": "cc.Quat",
  2770. "x": 0,
  2771. "y": 0,
  2772. "z": 0,
  2773. "w": 1
  2774. },
  2775. "_lscale": {
  2776. "__type__": "cc.Vec3",
  2777. "x": 1,
  2778. "y": 1,
  2779. "z": 1
  2780. },
  2781. "_mobility": 0,
  2782. "_layer": 33554432,
  2783. "_euler": {
  2784. "__type__": "cc.Vec3",
  2785. "x": 0,
  2786. "y": 0,
  2787. "z": 0
  2788. },
  2789. "_id": ""
  2790. },
  2791. {
  2792. "__type__": "cc.Node",
  2793. "_name": "Gift",
  2794. "_objFlags": 0,
  2795. "__editorExtras__": {},
  2796. "_parent": {
  2797. "__id__": 116
  2798. },
  2799. "_children": [],
  2800. "_active": true,
  2801. "_components": [
  2802. {
  2803. "__id__": 118
  2804. },
  2805. {
  2806. "__id__": 120
  2807. }
  2808. ],
  2809. "_prefab": {
  2810. "__id__": 122
  2811. },
  2812. "_lpos": {
  2813. "__type__": "cc.Vec3",
  2814. "x": 0,
  2815. "y": 0,
  2816. "z": 0
  2817. },
  2818. "_lrot": {
  2819. "__type__": "cc.Quat",
  2820. "x": 0,
  2821. "y": 0,
  2822. "z": 0,
  2823. "w": 1
  2824. },
  2825. "_lscale": {
  2826. "__type__": "cc.Vec3",
  2827. "x": 1,
  2828. "y": 1,
  2829. "z": 1
  2830. },
  2831. "_mobility": 0,
  2832. "_layer": 33554432,
  2833. "_euler": {
  2834. "__type__": "cc.Vec3",
  2835. "x": 0,
  2836. "y": 0,
  2837. "z": 0
  2838. },
  2839. "_id": ""
  2840. },
  2841. {
  2842. "__type__": "cc.UITransform",
  2843. "_name": "",
  2844. "_objFlags": 0,
  2845. "__editorExtras__": {},
  2846. "node": {
  2847. "__id__": 117
  2848. },
  2849. "_enabled": true,
  2850. "__prefab": {
  2851. "__id__": 119
  2852. },
  2853. "_contentSize": {
  2854. "__type__": "cc.Size",
  2855. "width": 116,
  2856. "height": 112
  2857. },
  2858. "_anchorPoint": {
  2859. "__type__": "cc.Vec2",
  2860. "x": 0.5,
  2861. "y": 0.5
  2862. },
  2863. "_id": ""
  2864. },
  2865. {
  2866. "__type__": "cc.CompPrefabInfo",
  2867. "fileId": "859Fho5SFEX4xJOu57XoQ3"
  2868. },
  2869. {
  2870. "__type__": "cc.Sprite",
  2871. "_name": "",
  2872. "_objFlags": 0,
  2873. "__editorExtras__": {},
  2874. "node": {
  2875. "__id__": 117
  2876. },
  2877. "_enabled": true,
  2878. "__prefab": {
  2879. "__id__": 121
  2880. },
  2881. "_customMaterial": null,
  2882. "_srcBlendFactor": 2,
  2883. "_dstBlendFactor": 4,
  2884. "_color": {
  2885. "__type__": "cc.Color",
  2886. "r": 255,
  2887. "g": 255,
  2888. "b": 255,
  2889. "a": 255
  2890. },
  2891. "_spriteFrame": {
  2892. "__uuid__": "31c647db-302c-4f26-9afb-36980393c203@f9941",
  2893. "__expectedType__": "cc.SpriteFrame"
  2894. },
  2895. "_type": 0,
  2896. "_fillType": 0,
  2897. "_sizeMode": 1,
  2898. "_fillCenter": {
  2899. "__type__": "cc.Vec2",
  2900. "x": 0,
  2901. "y": 0
  2902. },
  2903. "_fillStart": 0,
  2904. "_fillRange": 0,
  2905. "_isTrimmedMode": true,
  2906. "_useGrayscale": false,
  2907. "_atlas": null,
  2908. "_id": ""
  2909. },
  2910. {
  2911. "__type__": "cc.CompPrefabInfo",
  2912. "fileId": "ddWTh4eFxED62hIDZJ/t3M"
  2913. },
  2914. {
  2915. "__type__": "cc.PrefabInfo",
  2916. "root": {
  2917. "__id__": 1
  2918. },
  2919. "asset": {
  2920. "__id__": 0
  2921. },
  2922. "fileId": "e8oS8KjINL/KOdosw3Z3+C",
  2923. "instance": null,
  2924. "targetOverrides": null,
  2925. "nestedPrefabInstanceRoots": null
  2926. },
  2927. {
  2928. "__type__": "cc.Node",
  2929. "_name": "HadSign",
  2930. "_objFlags": 0,
  2931. "__editorExtras__": {},
  2932. "_parent": {
  2933. "__id__": 116
  2934. },
  2935. "_children": [],
  2936. "_active": true,
  2937. "_components": [
  2938. {
  2939. "__id__": 124
  2940. },
  2941. {
  2942. "__id__": 126
  2943. }
  2944. ],
  2945. "_prefab": {
  2946. "__id__": 128
  2947. },
  2948. "_lpos": {
  2949. "__type__": "cc.Vec3",
  2950. "x": 0,
  2951. "y": 0,
  2952. "z": 0
  2953. },
  2954. "_lrot": {
  2955. "__type__": "cc.Quat",
  2956. "x": 0,
  2957. "y": 0,
  2958. "z": 0,
  2959. "w": 1
  2960. },
  2961. "_lscale": {
  2962. "__type__": "cc.Vec3",
  2963. "x": 1,
  2964. "y": 1,
  2965. "z": 1
  2966. },
  2967. "_mobility": 0,
  2968. "_layer": 33554432,
  2969. "_euler": {
  2970. "__type__": "cc.Vec3",
  2971. "x": 0,
  2972. "y": 0,
  2973. "z": 0
  2974. },
  2975. "_id": ""
  2976. },
  2977. {
  2978. "__type__": "cc.UITransform",
  2979. "_name": "",
  2980. "_objFlags": 0,
  2981. "__editorExtras__": {},
  2982. "node": {
  2983. "__id__": 123
  2984. },
  2985. "_enabled": true,
  2986. "__prefab": {
  2987. "__id__": 125
  2988. },
  2989. "_contentSize": {
  2990. "__type__": "cc.Size",
  2991. "width": 97,
  2992. "height": 68
  2993. },
  2994. "_anchorPoint": {
  2995. "__type__": "cc.Vec2",
  2996. "x": 0.5,
  2997. "y": 0.5
  2998. },
  2999. "_id": ""
  3000. },
  3001. {
  3002. "__type__": "cc.CompPrefabInfo",
  3003. "fileId": "ffL4bPUYJOAoP+/k0ZEyvm"
  3004. },
  3005. {
  3006. "__type__": "cc.Sprite",
  3007. "_name": "",
  3008. "_objFlags": 0,
  3009. "__editorExtras__": {},
  3010. "node": {
  3011. "__id__": 123
  3012. },
  3013. "_enabled": true,
  3014. "__prefab": {
  3015. "__id__": 127
  3016. },
  3017. "_customMaterial": null,
  3018. "_srcBlendFactor": 2,
  3019. "_dstBlendFactor": 4,
  3020. "_color": {
  3021. "__type__": "cc.Color",
  3022. "r": 255,
  3023. "g": 255,
  3024. "b": 255,
  3025. "a": 255
  3026. },
  3027. "_spriteFrame": {
  3028. "__uuid__": "1a1cc4ba-d19b-42a0-a830-924a95ce86b1@f9941",
  3029. "__expectedType__": "cc.SpriteFrame"
  3030. },
  3031. "_type": 0,
  3032. "_fillType": 0,
  3033. "_sizeMode": 1,
  3034. "_fillCenter": {
  3035. "__type__": "cc.Vec2",
  3036. "x": 0,
  3037. "y": 0
  3038. },
  3039. "_fillStart": 0,
  3040. "_fillRange": 0,
  3041. "_isTrimmedMode": true,
  3042. "_useGrayscale": false,
  3043. "_atlas": null,
  3044. "_id": ""
  3045. },
  3046. {
  3047. "__type__": "cc.CompPrefabInfo",
  3048. "fileId": "9e0+SGNOFJBqSSvXjPFQcw"
  3049. },
  3050. {
  3051. "__type__": "cc.PrefabInfo",
  3052. "root": {
  3053. "__id__": 1
  3054. },
  3055. "asset": {
  3056. "__id__": 0
  3057. },
  3058. "fileId": "72NJCRaZBOJ5sd9q9IMO1S",
  3059. "instance": null,
  3060. "targetOverrides": null,
  3061. "nestedPrefabInstanceRoots": null
  3062. },
  3063. {
  3064. "__type__": "cc.Node",
  3065. "_name": "Mask",
  3066. "_objFlags": 0,
  3067. "__editorExtras__": {},
  3068. "_parent": {
  3069. "__id__": 116
  3070. },
  3071. "_children": [],
  3072. "_active": true,
  3073. "_components": [
  3074. {
  3075. "__id__": 130
  3076. },
  3077. {
  3078. "__id__": 132
  3079. }
  3080. ],
  3081. "_prefab": {
  3082. "__id__": 134
  3083. },
  3084. "_lpos": {
  3085. "__type__": "cc.Vec3",
  3086. "x": 1.6539999999999964,
  3087. "y": 0,
  3088. "z": 0
  3089. },
  3090. "_lrot": {
  3091. "__type__": "cc.Quat",
  3092. "x": 0,
  3093. "y": 0,
  3094. "z": 0,
  3095. "w": 1
  3096. },
  3097. "_lscale": {
  3098. "__type__": "cc.Vec3",
  3099. "x": 1,
  3100. "y": 1,
  3101. "z": 1
  3102. },
  3103. "_mobility": 0,
  3104. "_layer": 33554432,
  3105. "_euler": {
  3106. "__type__": "cc.Vec3",
  3107. "x": 0,
  3108. "y": 0,
  3109. "z": 0
  3110. },
  3111. "_id": ""
  3112. },
  3113. {
  3114. "__type__": "cc.UITransform",
  3115. "_name": "",
  3116. "_objFlags": 0,
  3117. "__editorExtras__": {},
  3118. "node": {
  3119. "__id__": 129
  3120. },
  3121. "_enabled": true,
  3122. "__prefab": {
  3123. "__id__": 131
  3124. },
  3125. "_contentSize": {
  3126. "__type__": "cc.Size",
  3127. "width": 194,
  3128. "height": 232
  3129. },
  3130. "_anchorPoint": {
  3131. "__type__": "cc.Vec2",
  3132. "x": 0.5,
  3133. "y": 0.5
  3134. },
  3135. "_id": ""
  3136. },
  3137. {
  3138. "__type__": "cc.CompPrefabInfo",
  3139. "fileId": "9cp7Fj1WNLg6cwQ6jY9DIj"
  3140. },
  3141. {
  3142. "__type__": "cc.Sprite",
  3143. "_name": "",
  3144. "_objFlags": 0,
  3145. "__editorExtras__": {},
  3146. "node": {
  3147. "__id__": 129
  3148. },
  3149. "_enabled": true,
  3150. "__prefab": {
  3151. "__id__": 133
  3152. },
  3153. "_customMaterial": null,
  3154. "_srcBlendFactor": 2,
  3155. "_dstBlendFactor": 4,
  3156. "_color": {
  3157. "__type__": "cc.Color",
  3158. "r": 255,
  3159. "g": 255,
  3160. "b": 255,
  3161. "a": 255
  3162. },
  3163. "_spriteFrame": {
  3164. "__uuid__": "09b05880-b2a0-43a5-ab41-af78871d321e@f9941",
  3165. "__expectedType__": "cc.SpriteFrame"
  3166. },
  3167. "_type": 0,
  3168. "_fillType": 0,
  3169. "_sizeMode": 0,
  3170. "_fillCenter": {
  3171. "__type__": "cc.Vec2",
  3172. "x": 0,
  3173. "y": 0
  3174. },
  3175. "_fillStart": 0,
  3176. "_fillRange": 0,
  3177. "_isTrimmedMode": true,
  3178. "_useGrayscale": false,
  3179. "_atlas": null,
  3180. "_id": ""
  3181. },
  3182. {
  3183. "__type__": "cc.CompPrefabInfo",
  3184. "fileId": "965eMUVi1EsphdfZE8f49w"
  3185. },
  3186. {
  3187. "__type__": "cc.PrefabInfo",
  3188. "root": {
  3189. "__id__": 1
  3190. },
  3191. "asset": {
  3192. "__id__": 0
  3193. },
  3194. "fileId": "4erQ9ws/NB8amQNZJLxOpu",
  3195. "instance": null,
  3196. "targetOverrides": null,
  3197. "nestedPrefabInstanceRoots": null
  3198. },
  3199. {
  3200. "__type__": "cc.UITransform",
  3201. "_name": "",
  3202. "_objFlags": 0,
  3203. "__editorExtras__": {},
  3204. "node": {
  3205. "__id__": 116
  3206. },
  3207. "_enabled": true,
  3208. "__prefab": {
  3209. "__id__": 136
  3210. },
  3211. "_contentSize": {
  3212. "__type__": "cc.Size",
  3213. "width": 210,
  3214. "height": 260
  3215. },
  3216. "_anchorPoint": {
  3217. "__type__": "cc.Vec2",
  3218. "x": 0.5,
  3219. "y": 0.5
  3220. },
  3221. "_id": ""
  3222. },
  3223. {
  3224. "__type__": "cc.CompPrefabInfo",
  3225. "fileId": "78BC20PttKoJZhGlypKMfR"
  3226. },
  3227. {
  3228. "__type__": "cc.Sprite",
  3229. "_name": "",
  3230. "_objFlags": 0,
  3231. "__editorExtras__": {},
  3232. "node": {
  3233. "__id__": 116
  3234. },
  3235. "_enabled": true,
  3236. "__prefab": {
  3237. "__id__": 138
  3238. },
  3239. "_customMaterial": null,
  3240. "_srcBlendFactor": 2,
  3241. "_dstBlendFactor": 4,
  3242. "_color": {
  3243. "__type__": "cc.Color",
  3244. "r": 255,
  3245. "g": 255,
  3246. "b": 255,
  3247. "a": 255
  3248. },
  3249. "_spriteFrame": {
  3250. "__uuid__": "eb8b7514-82b2-4792-a74c-ec7273c752ee@f9941",
  3251. "__expectedType__": "cc.SpriteFrame"
  3252. },
  3253. "_type": 1,
  3254. "_fillType": 0,
  3255. "_sizeMode": 0,
  3256. "_fillCenter": {
  3257. "__type__": "cc.Vec2",
  3258. "x": 0,
  3259. "y": 0
  3260. },
  3261. "_fillStart": 0,
  3262. "_fillRange": 0,
  3263. "_isTrimmedMode": true,
  3264. "_useGrayscale": false,
  3265. "_atlas": null,
  3266. "_id": ""
  3267. },
  3268. {
  3269. "__type__": "cc.CompPrefabInfo",
  3270. "fileId": "0f89omvgpEuZsoK8fmDvb9"
  3271. },
  3272. {
  3273. "__type__": "cc.Button",
  3274. "_name": "",
  3275. "_objFlags": 0,
  3276. "__editorExtras__": {},
  3277. "node": {
  3278. "__id__": 116
  3279. },
  3280. "_enabled": true,
  3281. "__prefab": {
  3282. "__id__": 140
  3283. },
  3284. "clickEvents": [],
  3285. "_interactable": true,
  3286. "_transition": 2,
  3287. "_normalColor": {
  3288. "__type__": "cc.Color",
  3289. "r": 214,
  3290. "g": 214,
  3291. "b": 214,
  3292. "a": 255
  3293. },
  3294. "_hoverColor": {
  3295. "__type__": "cc.Color",
  3296. "r": 211,
  3297. "g": 211,
  3298. "b": 211,
  3299. "a": 255
  3300. },
  3301. "_pressedColor": {
  3302. "__type__": "cc.Color",
  3303. "r": 255,
  3304. "g": 255,
  3305. "b": 255,
  3306. "a": 255
  3307. },
  3308. "_disabledColor": {
  3309. "__type__": "cc.Color",
  3310. "r": 124,
  3311. "g": 124,
  3312. "b": 124,
  3313. "a": 255
  3314. },
  3315. "_normalSprite": {
  3316. "__uuid__": "eb8b7514-82b2-4792-a74c-ec7273c752ee@f9941",
  3317. "__expectedType__": "cc.SpriteFrame"
  3318. },
  3319. "_hoverSprite": {
  3320. "__uuid__": "eb8b7514-82b2-4792-a74c-ec7273c752ee@f9941",
  3321. "__expectedType__": "cc.SpriteFrame"
  3322. },
  3323. "_pressedSprite": {
  3324. "__uuid__": "eb8b7514-82b2-4792-a74c-ec7273c752ee@f9941",
  3325. "__expectedType__": "cc.SpriteFrame"
  3326. },
  3327. "_disabledSprite": {
  3328. "__uuid__": "eb8b7514-82b2-4792-a74c-ec7273c752ee@f9941",
  3329. "__expectedType__": "cc.SpriteFrame"
  3330. },
  3331. "_duration": 0.1,
  3332. "_zoomScale": 1.2,
  3333. "_target": {
  3334. "__id__": 116
  3335. },
  3336. "_id": ""
  3337. },
  3338. {
  3339. "__type__": "cc.CompPrefabInfo",
  3340. "fileId": "11f/vvjrFCqqvcPDX/e9o8"
  3341. },
  3342. {
  3343. "__type__": "279cfqjGjNDm6ukdVfGELoL",
  3344. "_name": "",
  3345. "_objFlags": 0,
  3346. "__editorExtras__": {},
  3347. "node": {
  3348. "__id__": 116
  3349. },
  3350. "_enabled": true,
  3351. "__prefab": {
  3352. "__id__": 142
  3353. },
  3354. "mask": null,
  3355. "gift": null,
  3356. "hadSign": null,
  3357. "sign_btn": null,
  3358. "_id": ""
  3359. },
  3360. {
  3361. "__type__": "cc.CompPrefabInfo",
  3362. "fileId": "793i3IuBxP5aEkKy+Sh35G"
  3363. },
  3364. {
  3365. "__type__": "cc.PrefabInfo",
  3366. "root": {
  3367. "__id__": 1
  3368. },
  3369. "asset": {
  3370. "__id__": 0
  3371. },
  3372. "fileId": "e4SKMliyZNlaYldu6AHvkW",
  3373. "instance": null,
  3374. "targetOverrides": null,
  3375. "nestedPrefabInstanceRoots": null
  3376. },
  3377. {
  3378. "__type__": "cc.Node",
  3379. "_name": "Day_5",
  3380. "_objFlags": 0,
  3381. "__editorExtras__": {},
  3382. "_parent": {
  3383. "__id__": 1
  3384. },
  3385. "_children": [
  3386. {
  3387. "__id__": 145
  3388. },
  3389. {
  3390. "__id__": 151
  3391. },
  3392. {
  3393. "__id__": 157
  3394. }
  3395. ],
  3396. "_active": true,
  3397. "_components": [
  3398. {
  3399. "__id__": 163
  3400. },
  3401. {
  3402. "__id__": 165
  3403. },
  3404. {
  3405. "__id__": 167
  3406. },
  3407. {
  3408. "__id__": 169
  3409. }
  3410. ],
  3411. "_prefab": {
  3412. "__id__": 171
  3413. },
  3414. "_lpos": {
  3415. "__type__": "cc.Vec3",
  3416. "x": 1.2789999999999964,
  3417. "y": 52.22000000000003,
  3418. "z": 0
  3419. },
  3420. "_lrot": {
  3421. "__type__": "cc.Quat",
  3422. "x": 0,
  3423. "y": 0,
  3424. "z": 0,
  3425. "w": 1
  3426. },
  3427. "_lscale": {
  3428. "__type__": "cc.Vec3",
  3429. "x": 1,
  3430. "y": 1,
  3431. "z": 1
  3432. },
  3433. "_mobility": 0,
  3434. "_layer": 33554432,
  3435. "_euler": {
  3436. "__type__": "cc.Vec3",
  3437. "x": 0,
  3438. "y": 0,
  3439. "z": 0
  3440. },
  3441. "_id": ""
  3442. },
  3443. {
  3444. "__type__": "cc.Node",
  3445. "_name": "Gift",
  3446. "_objFlags": 0,
  3447. "__editorExtras__": {},
  3448. "_parent": {
  3449. "__id__": 144
  3450. },
  3451. "_children": [],
  3452. "_active": true,
  3453. "_components": [
  3454. {
  3455. "__id__": 146
  3456. },
  3457. {
  3458. "__id__": 148
  3459. }
  3460. ],
  3461. "_prefab": {
  3462. "__id__": 150
  3463. },
  3464. "_lpos": {
  3465. "__type__": "cc.Vec3",
  3466. "x": 0,
  3467. "y": 0,
  3468. "z": 0
  3469. },
  3470. "_lrot": {
  3471. "__type__": "cc.Quat",
  3472. "x": 0,
  3473. "y": 0,
  3474. "z": 0,
  3475. "w": 1
  3476. },
  3477. "_lscale": {
  3478. "__type__": "cc.Vec3",
  3479. "x": 1,
  3480. "y": 1,
  3481. "z": 1
  3482. },
  3483. "_mobility": 0,
  3484. "_layer": 33554432,
  3485. "_euler": {
  3486. "__type__": "cc.Vec3",
  3487. "x": 0,
  3488. "y": 0,
  3489. "z": 0
  3490. },
  3491. "_id": ""
  3492. },
  3493. {
  3494. "__type__": "cc.UITransform",
  3495. "_name": "",
  3496. "_objFlags": 0,
  3497. "__editorExtras__": {},
  3498. "node": {
  3499. "__id__": 145
  3500. },
  3501. "_enabled": true,
  3502. "__prefab": {
  3503. "__id__": 147
  3504. },
  3505. "_contentSize": {
  3506. "__type__": "cc.Size",
  3507. "width": 116,
  3508. "height": 112
  3509. },
  3510. "_anchorPoint": {
  3511. "__type__": "cc.Vec2",
  3512. "x": 0.5,
  3513. "y": 0.5
  3514. },
  3515. "_id": ""
  3516. },
  3517. {
  3518. "__type__": "cc.CompPrefabInfo",
  3519. "fileId": "95O2SfYR9JE4szBgC/xWx4"
  3520. },
  3521. {
  3522. "__type__": "cc.Sprite",
  3523. "_name": "",
  3524. "_objFlags": 0,
  3525. "__editorExtras__": {},
  3526. "node": {
  3527. "__id__": 145
  3528. },
  3529. "_enabled": true,
  3530. "__prefab": {
  3531. "__id__": 149
  3532. },
  3533. "_customMaterial": null,
  3534. "_srcBlendFactor": 2,
  3535. "_dstBlendFactor": 4,
  3536. "_color": {
  3537. "__type__": "cc.Color",
  3538. "r": 255,
  3539. "g": 255,
  3540. "b": 255,
  3541. "a": 255
  3542. },
  3543. "_spriteFrame": {
  3544. "__uuid__": "31c647db-302c-4f26-9afb-36980393c203@f9941",
  3545. "__expectedType__": "cc.SpriteFrame"
  3546. },
  3547. "_type": 0,
  3548. "_fillType": 0,
  3549. "_sizeMode": 1,
  3550. "_fillCenter": {
  3551. "__type__": "cc.Vec2",
  3552. "x": 0,
  3553. "y": 0
  3554. },
  3555. "_fillStart": 0,
  3556. "_fillRange": 0,
  3557. "_isTrimmedMode": true,
  3558. "_useGrayscale": false,
  3559. "_atlas": null,
  3560. "_id": ""
  3561. },
  3562. {
  3563. "__type__": "cc.CompPrefabInfo",
  3564. "fileId": "58zPnWqyxIHpKSlX3qXX13"
  3565. },
  3566. {
  3567. "__type__": "cc.PrefabInfo",
  3568. "root": {
  3569. "__id__": 1
  3570. },
  3571. "asset": {
  3572. "__id__": 0
  3573. },
  3574. "fileId": "0fSPUMEidLNYJNAElU3PPb",
  3575. "instance": null,
  3576. "targetOverrides": null,
  3577. "nestedPrefabInstanceRoots": null
  3578. },
  3579. {
  3580. "__type__": "cc.Node",
  3581. "_name": "HadSign",
  3582. "_objFlags": 0,
  3583. "__editorExtras__": {},
  3584. "_parent": {
  3585. "__id__": 144
  3586. },
  3587. "_children": [],
  3588. "_active": true,
  3589. "_components": [
  3590. {
  3591. "__id__": 152
  3592. },
  3593. {
  3594. "__id__": 154
  3595. }
  3596. ],
  3597. "_prefab": {
  3598. "__id__": 156
  3599. },
  3600. "_lpos": {
  3601. "__type__": "cc.Vec3",
  3602. "x": 0,
  3603. "y": 0,
  3604. "z": 0
  3605. },
  3606. "_lrot": {
  3607. "__type__": "cc.Quat",
  3608. "x": 0,
  3609. "y": 0,
  3610. "z": 0,
  3611. "w": 1
  3612. },
  3613. "_lscale": {
  3614. "__type__": "cc.Vec3",
  3615. "x": 1,
  3616. "y": 1,
  3617. "z": 1
  3618. },
  3619. "_mobility": 0,
  3620. "_layer": 33554432,
  3621. "_euler": {
  3622. "__type__": "cc.Vec3",
  3623. "x": 0,
  3624. "y": 0,
  3625. "z": 0
  3626. },
  3627. "_id": ""
  3628. },
  3629. {
  3630. "__type__": "cc.UITransform",
  3631. "_name": "",
  3632. "_objFlags": 0,
  3633. "__editorExtras__": {},
  3634. "node": {
  3635. "__id__": 151
  3636. },
  3637. "_enabled": true,
  3638. "__prefab": {
  3639. "__id__": 153
  3640. },
  3641. "_contentSize": {
  3642. "__type__": "cc.Size",
  3643. "width": 97,
  3644. "height": 68
  3645. },
  3646. "_anchorPoint": {
  3647. "__type__": "cc.Vec2",
  3648. "x": 0.5,
  3649. "y": 0.5
  3650. },
  3651. "_id": ""
  3652. },
  3653. {
  3654. "__type__": "cc.CompPrefabInfo",
  3655. "fileId": "1c793XQM5JaqVGqY4THQqx"
  3656. },
  3657. {
  3658. "__type__": "cc.Sprite",
  3659. "_name": "",
  3660. "_objFlags": 0,
  3661. "__editorExtras__": {},
  3662. "node": {
  3663. "__id__": 151
  3664. },
  3665. "_enabled": true,
  3666. "__prefab": {
  3667. "__id__": 155
  3668. },
  3669. "_customMaterial": null,
  3670. "_srcBlendFactor": 2,
  3671. "_dstBlendFactor": 4,
  3672. "_color": {
  3673. "__type__": "cc.Color",
  3674. "r": 255,
  3675. "g": 255,
  3676. "b": 255,
  3677. "a": 255
  3678. },
  3679. "_spriteFrame": {
  3680. "__uuid__": "1a1cc4ba-d19b-42a0-a830-924a95ce86b1@f9941",
  3681. "__expectedType__": "cc.SpriteFrame"
  3682. },
  3683. "_type": 0,
  3684. "_fillType": 0,
  3685. "_sizeMode": 1,
  3686. "_fillCenter": {
  3687. "__type__": "cc.Vec2",
  3688. "x": 0,
  3689. "y": 0
  3690. },
  3691. "_fillStart": 0,
  3692. "_fillRange": 0,
  3693. "_isTrimmedMode": true,
  3694. "_useGrayscale": false,
  3695. "_atlas": null,
  3696. "_id": ""
  3697. },
  3698. {
  3699. "__type__": "cc.CompPrefabInfo",
  3700. "fileId": "7bSBE5+pRDXaiHiYPTUJcO"
  3701. },
  3702. {
  3703. "__type__": "cc.PrefabInfo",
  3704. "root": {
  3705. "__id__": 1
  3706. },
  3707. "asset": {
  3708. "__id__": 0
  3709. },
  3710. "fileId": "8epWuvuolOL6oW4bMTYcqH",
  3711. "instance": null,
  3712. "targetOverrides": null,
  3713. "nestedPrefabInstanceRoots": null
  3714. },
  3715. {
  3716. "__type__": "cc.Node",
  3717. "_name": "Mask",
  3718. "_objFlags": 0,
  3719. "__editorExtras__": {},
  3720. "_parent": {
  3721. "__id__": 144
  3722. },
  3723. "_children": [],
  3724. "_active": true,
  3725. "_components": [
  3726. {
  3727. "__id__": 158
  3728. },
  3729. {
  3730. "__id__": 160
  3731. }
  3732. ],
  3733. "_prefab": {
  3734. "__id__": 162
  3735. },
  3736. "_lpos": {
  3737. "__type__": "cc.Vec3",
  3738. "x": 4.363999999999976,
  3739. "y": 4.940999999999917,
  3740. "z": 0
  3741. },
  3742. "_lrot": {
  3743. "__type__": "cc.Quat",
  3744. "x": 0,
  3745. "y": 0,
  3746. "z": 0,
  3747. "w": 1
  3748. },
  3749. "_lscale": {
  3750. "__type__": "cc.Vec3",
  3751. "x": 1,
  3752. "y": 1,
  3753. "z": 1
  3754. },
  3755. "_mobility": 0,
  3756. "_layer": 33554432,
  3757. "_euler": {
  3758. "__type__": "cc.Vec3",
  3759. "x": 0,
  3760. "y": 0,
  3761. "z": 0
  3762. },
  3763. "_id": ""
  3764. },
  3765. {
  3766. "__type__": "cc.UITransform",
  3767. "_name": "",
  3768. "_objFlags": 0,
  3769. "__editorExtras__": {},
  3770. "node": {
  3771. "__id__": 157
  3772. },
  3773. "_enabled": true,
  3774. "__prefab": {
  3775. "__id__": 159
  3776. },
  3777. "_contentSize": {
  3778. "__type__": "cc.Size",
  3779. "width": 190,
  3780. "height": 240
  3781. },
  3782. "_anchorPoint": {
  3783. "__type__": "cc.Vec2",
  3784. "x": 0.5,
  3785. "y": 0.5
  3786. },
  3787. "_id": ""
  3788. },
  3789. {
  3790. "__type__": "cc.CompPrefabInfo",
  3791. "fileId": "d0tTUypqxMnpDUfEVsx/wN"
  3792. },
  3793. {
  3794. "__type__": "cc.Sprite",
  3795. "_name": "",
  3796. "_objFlags": 0,
  3797. "__editorExtras__": {},
  3798. "node": {
  3799. "__id__": 157
  3800. },
  3801. "_enabled": true,
  3802. "__prefab": {
  3803. "__id__": 161
  3804. },
  3805. "_customMaterial": null,
  3806. "_srcBlendFactor": 2,
  3807. "_dstBlendFactor": 4,
  3808. "_color": {
  3809. "__type__": "cc.Color",
  3810. "r": 255,
  3811. "g": 255,
  3812. "b": 255,
  3813. "a": 255
  3814. },
  3815. "_spriteFrame": {
  3816. "__uuid__": "dcc6c640-8693-4a30-b03c-bd269f23bbf6@f9941",
  3817. "__expectedType__": "cc.SpriteFrame"
  3818. },
  3819. "_type": 0,
  3820. "_fillType": 0,
  3821. "_sizeMode": 0,
  3822. "_fillCenter": {
  3823. "__type__": "cc.Vec2",
  3824. "x": 0,
  3825. "y": 0
  3826. },
  3827. "_fillStart": 0,
  3828. "_fillRange": 0,
  3829. "_isTrimmedMode": true,
  3830. "_useGrayscale": false,
  3831. "_atlas": null,
  3832. "_id": ""
  3833. },
  3834. {
  3835. "__type__": "cc.CompPrefabInfo",
  3836. "fileId": "1dqEHQa/RPpZxzfRCQ4bJp"
  3837. },
  3838. {
  3839. "__type__": "cc.PrefabInfo",
  3840. "root": {
  3841. "__id__": 1
  3842. },
  3843. "asset": {
  3844. "__id__": 0
  3845. },
  3846. "fileId": "5f1/E4X0RGeb9jrW4K9Hlu",
  3847. "instance": null,
  3848. "targetOverrides": null,
  3849. "nestedPrefabInstanceRoots": null
  3850. },
  3851. {
  3852. "__type__": "cc.UITransform",
  3853. "_name": "",
  3854. "_objFlags": 0,
  3855. "__editorExtras__": {},
  3856. "node": {
  3857. "__id__": 144
  3858. },
  3859. "_enabled": true,
  3860. "__prefab": {
  3861. "__id__": 164
  3862. },
  3863. "_contentSize": {
  3864. "__type__": "cc.Size",
  3865. "width": 210,
  3866. "height": 260
  3867. },
  3868. "_anchorPoint": {
  3869. "__type__": "cc.Vec2",
  3870. "x": 0.5,
  3871. "y": 0.5
  3872. },
  3873. "_id": ""
  3874. },
  3875. {
  3876. "__type__": "cc.CompPrefabInfo",
  3877. "fileId": "dd0Tpkg+dFH6H0nezltS7y"
  3878. },
  3879. {
  3880. "__type__": "cc.Sprite",
  3881. "_name": "",
  3882. "_objFlags": 0,
  3883. "__editorExtras__": {},
  3884. "node": {
  3885. "__id__": 144
  3886. },
  3887. "_enabled": true,
  3888. "__prefab": {
  3889. "__id__": 166
  3890. },
  3891. "_customMaterial": null,
  3892. "_srcBlendFactor": 2,
  3893. "_dstBlendFactor": 4,
  3894. "_color": {
  3895. "__type__": "cc.Color",
  3896. "r": 255,
  3897. "g": 255,
  3898. "b": 255,
  3899. "a": 255
  3900. },
  3901. "_spriteFrame": {
  3902. "__uuid__": "f30f1fdd-fd2e-46fe-861c-d4f75609eddf@f9941",
  3903. "__expectedType__": "cc.SpriteFrame"
  3904. },
  3905. "_type": 1,
  3906. "_fillType": 0,
  3907. "_sizeMode": 0,
  3908. "_fillCenter": {
  3909. "__type__": "cc.Vec2",
  3910. "x": 0,
  3911. "y": 0
  3912. },
  3913. "_fillStart": 0,
  3914. "_fillRange": 0,
  3915. "_isTrimmedMode": true,
  3916. "_useGrayscale": false,
  3917. "_atlas": null,
  3918. "_id": ""
  3919. },
  3920. {
  3921. "__type__": "cc.CompPrefabInfo",
  3922. "fileId": "5d5fUJOjBJaLHOqZWb54JL"
  3923. },
  3924. {
  3925. "__type__": "cc.Button",
  3926. "_name": "",
  3927. "_objFlags": 0,
  3928. "__editorExtras__": {},
  3929. "node": {
  3930. "__id__": 144
  3931. },
  3932. "_enabled": true,
  3933. "__prefab": {
  3934. "__id__": 168
  3935. },
  3936. "clickEvents": [],
  3937. "_interactable": true,
  3938. "_transition": 2,
  3939. "_normalColor": {
  3940. "__type__": "cc.Color",
  3941. "r": 214,
  3942. "g": 214,
  3943. "b": 214,
  3944. "a": 255
  3945. },
  3946. "_hoverColor": {
  3947. "__type__": "cc.Color",
  3948. "r": 211,
  3949. "g": 211,
  3950. "b": 211,
  3951. "a": 255
  3952. },
  3953. "_pressedColor": {
  3954. "__type__": "cc.Color",
  3955. "r": 255,
  3956. "g": 255,
  3957. "b": 255,
  3958. "a": 255
  3959. },
  3960. "_disabledColor": {
  3961. "__type__": "cc.Color",
  3962. "r": 124,
  3963. "g": 124,
  3964. "b": 124,
  3965. "a": 255
  3966. },
  3967. "_normalSprite": {
  3968. "__uuid__": "f30f1fdd-fd2e-46fe-861c-d4f75609eddf@f9941",
  3969. "__expectedType__": "cc.SpriteFrame"
  3970. },
  3971. "_hoverSprite": {
  3972. "__uuid__": "f30f1fdd-fd2e-46fe-861c-d4f75609eddf@f9941",
  3973. "__expectedType__": "cc.SpriteFrame"
  3974. },
  3975. "_pressedSprite": {
  3976. "__uuid__": "f30f1fdd-fd2e-46fe-861c-d4f75609eddf@f9941",
  3977. "__expectedType__": "cc.SpriteFrame"
  3978. },
  3979. "_disabledSprite": {
  3980. "__uuid__": "f30f1fdd-fd2e-46fe-861c-d4f75609eddf@f9941",
  3981. "__expectedType__": "cc.SpriteFrame"
  3982. },
  3983. "_duration": 0.1,
  3984. "_zoomScale": 1.2,
  3985. "_target": {
  3986. "__id__": 144
  3987. },
  3988. "_id": ""
  3989. },
  3990. {
  3991. "__type__": "cc.CompPrefabInfo",
  3992. "fileId": "aeyW0mbrhJ858h2nRdcA/a"
  3993. },
  3994. {
  3995. "__type__": "279cfqjGjNDm6ukdVfGELoL",
  3996. "_name": "",
  3997. "_objFlags": 0,
  3998. "__editorExtras__": {},
  3999. "node": {
  4000. "__id__": 144
  4001. },
  4002. "_enabled": true,
  4003. "__prefab": {
  4004. "__id__": 170
  4005. },
  4006. "mask": null,
  4007. "gift": null,
  4008. "hadSign": null,
  4009. "sign_btn": null,
  4010. "_id": ""
  4011. },
  4012. {
  4013. "__type__": "cc.CompPrefabInfo",
  4014. "fileId": "aecRDwVndIeb9Uy5AydCM0"
  4015. },
  4016. {
  4017. "__type__": "cc.PrefabInfo",
  4018. "root": {
  4019. "__id__": 1
  4020. },
  4021. "asset": {
  4022. "__id__": 0
  4023. },
  4024. "fileId": "abzJi5wd1DBrx8HuQPjMgx",
  4025. "instance": null,
  4026. "targetOverrides": null,
  4027. "nestedPrefabInstanceRoots": null
  4028. },
  4029. {
  4030. "__type__": "cc.Node",
  4031. "_name": "Day_6",
  4032. "_objFlags": 0,
  4033. "__editorExtras__": {},
  4034. "_parent": {
  4035. "__id__": 1
  4036. },
  4037. "_children": [
  4038. {
  4039. "__id__": 173
  4040. },
  4041. {
  4042. "__id__": 179
  4043. },
  4044. {
  4045. "__id__": 185
  4046. }
  4047. ],
  4048. "_active": true,
  4049. "_components": [
  4050. {
  4051. "__id__": 191
  4052. },
  4053. {
  4054. "__id__": 193
  4055. },
  4056. {
  4057. "__id__": 195
  4058. },
  4059. {
  4060. "__id__": 197
  4061. }
  4062. ],
  4063. "_prefab": {
  4064. "__id__": 199
  4065. },
  4066. "_lpos": {
  4067. "__type__": "cc.Vec3",
  4068. "x": 210.20299999999997,
  4069. "y": 61.25400000000002,
  4070. "z": 0
  4071. },
  4072. "_lrot": {
  4073. "__type__": "cc.Quat",
  4074. "x": 0,
  4075. "y": 0,
  4076. "z": 0,
  4077. "w": 1
  4078. },
  4079. "_lscale": {
  4080. "__type__": "cc.Vec3",
  4081. "x": 1,
  4082. "y": 1,
  4083. "z": 1
  4084. },
  4085. "_mobility": 0,
  4086. "_layer": 33554432,
  4087. "_euler": {
  4088. "__type__": "cc.Vec3",
  4089. "x": 0,
  4090. "y": 0,
  4091. "z": 0
  4092. },
  4093. "_id": ""
  4094. },
  4095. {
  4096. "__type__": "cc.Node",
  4097. "_name": "Gift",
  4098. "_objFlags": 0,
  4099. "__editorExtras__": {},
  4100. "_parent": {
  4101. "__id__": 172
  4102. },
  4103. "_children": [],
  4104. "_active": true,
  4105. "_components": [
  4106. {
  4107. "__id__": 174
  4108. },
  4109. {
  4110. "__id__": 176
  4111. }
  4112. ],
  4113. "_prefab": {
  4114. "__id__": 178
  4115. },
  4116. "_lpos": {
  4117. "__type__": "cc.Vec3",
  4118. "x": 0,
  4119. "y": 0,
  4120. "z": 0
  4121. },
  4122. "_lrot": {
  4123. "__type__": "cc.Quat",
  4124. "x": 0,
  4125. "y": 0,
  4126. "z": 0,
  4127. "w": 1
  4128. },
  4129. "_lscale": {
  4130. "__type__": "cc.Vec3",
  4131. "x": 1,
  4132. "y": 1,
  4133. "z": 1
  4134. },
  4135. "_mobility": 0,
  4136. "_layer": 33554432,
  4137. "_euler": {
  4138. "__type__": "cc.Vec3",
  4139. "x": 0,
  4140. "y": 0,
  4141. "z": 0
  4142. },
  4143. "_id": ""
  4144. },
  4145. {
  4146. "__type__": "cc.UITransform",
  4147. "_name": "",
  4148. "_objFlags": 0,
  4149. "__editorExtras__": {},
  4150. "node": {
  4151. "__id__": 173
  4152. },
  4153. "_enabled": true,
  4154. "__prefab": {
  4155. "__id__": 175
  4156. },
  4157. "_contentSize": {
  4158. "__type__": "cc.Size",
  4159. "width": 116,
  4160. "height": 112
  4161. },
  4162. "_anchorPoint": {
  4163. "__type__": "cc.Vec2",
  4164. "x": 0.5,
  4165. "y": 0.5
  4166. },
  4167. "_id": ""
  4168. },
  4169. {
  4170. "__type__": "cc.CompPrefabInfo",
  4171. "fileId": "0d2r0+l2NPXZQ/8dnjizBo"
  4172. },
  4173. {
  4174. "__type__": "cc.Sprite",
  4175. "_name": "",
  4176. "_objFlags": 0,
  4177. "__editorExtras__": {},
  4178. "node": {
  4179. "__id__": 173
  4180. },
  4181. "_enabled": true,
  4182. "__prefab": {
  4183. "__id__": 177
  4184. },
  4185. "_customMaterial": null,
  4186. "_srcBlendFactor": 2,
  4187. "_dstBlendFactor": 4,
  4188. "_color": {
  4189. "__type__": "cc.Color",
  4190. "r": 255,
  4191. "g": 255,
  4192. "b": 255,
  4193. "a": 255
  4194. },
  4195. "_spriteFrame": {
  4196. "__uuid__": "31c647db-302c-4f26-9afb-36980393c203@f9941",
  4197. "__expectedType__": "cc.SpriteFrame"
  4198. },
  4199. "_type": 0,
  4200. "_fillType": 0,
  4201. "_sizeMode": 1,
  4202. "_fillCenter": {
  4203. "__type__": "cc.Vec2",
  4204. "x": 0,
  4205. "y": 0
  4206. },
  4207. "_fillStart": 0,
  4208. "_fillRange": 0,
  4209. "_isTrimmedMode": true,
  4210. "_useGrayscale": false,
  4211. "_atlas": null,
  4212. "_id": ""
  4213. },
  4214. {
  4215. "__type__": "cc.CompPrefabInfo",
  4216. "fileId": "761jNb+phHtYV1Fa2zKCP3"
  4217. },
  4218. {
  4219. "__type__": "cc.PrefabInfo",
  4220. "root": {
  4221. "__id__": 1
  4222. },
  4223. "asset": {
  4224. "__id__": 0
  4225. },
  4226. "fileId": "d2q2tPtvBHDKD+Ib0BXD3a",
  4227. "instance": null,
  4228. "targetOverrides": null,
  4229. "nestedPrefabInstanceRoots": null
  4230. },
  4231. {
  4232. "__type__": "cc.Node",
  4233. "_name": "HadSign",
  4234. "_objFlags": 0,
  4235. "__editorExtras__": {},
  4236. "_parent": {
  4237. "__id__": 172
  4238. },
  4239. "_children": [],
  4240. "_active": true,
  4241. "_components": [
  4242. {
  4243. "__id__": 180
  4244. },
  4245. {
  4246. "__id__": 182
  4247. }
  4248. ],
  4249. "_prefab": {
  4250. "__id__": 184
  4251. },
  4252. "_lpos": {
  4253. "__type__": "cc.Vec3",
  4254. "x": 0,
  4255. "y": 0,
  4256. "z": 0
  4257. },
  4258. "_lrot": {
  4259. "__type__": "cc.Quat",
  4260. "x": 0,
  4261. "y": 0,
  4262. "z": 0,
  4263. "w": 1
  4264. },
  4265. "_lscale": {
  4266. "__type__": "cc.Vec3",
  4267. "x": 1,
  4268. "y": 1,
  4269. "z": 1
  4270. },
  4271. "_mobility": 0,
  4272. "_layer": 33554432,
  4273. "_euler": {
  4274. "__type__": "cc.Vec3",
  4275. "x": 0,
  4276. "y": 0,
  4277. "z": 0
  4278. },
  4279. "_id": ""
  4280. },
  4281. {
  4282. "__type__": "cc.UITransform",
  4283. "_name": "",
  4284. "_objFlags": 0,
  4285. "__editorExtras__": {},
  4286. "node": {
  4287. "__id__": 179
  4288. },
  4289. "_enabled": true,
  4290. "__prefab": {
  4291. "__id__": 181
  4292. },
  4293. "_contentSize": {
  4294. "__type__": "cc.Size",
  4295. "width": 97,
  4296. "height": 68
  4297. },
  4298. "_anchorPoint": {
  4299. "__type__": "cc.Vec2",
  4300. "x": 0.5,
  4301. "y": 0.5
  4302. },
  4303. "_id": ""
  4304. },
  4305. {
  4306. "__type__": "cc.CompPrefabInfo",
  4307. "fileId": "85jAo9IpBNA7LiEXn+trmm"
  4308. },
  4309. {
  4310. "__type__": "cc.Sprite",
  4311. "_name": "",
  4312. "_objFlags": 0,
  4313. "__editorExtras__": {},
  4314. "node": {
  4315. "__id__": 179
  4316. },
  4317. "_enabled": true,
  4318. "__prefab": {
  4319. "__id__": 183
  4320. },
  4321. "_customMaterial": null,
  4322. "_srcBlendFactor": 2,
  4323. "_dstBlendFactor": 4,
  4324. "_color": {
  4325. "__type__": "cc.Color",
  4326. "r": 255,
  4327. "g": 255,
  4328. "b": 255,
  4329. "a": 255
  4330. },
  4331. "_spriteFrame": {
  4332. "__uuid__": "1a1cc4ba-d19b-42a0-a830-924a95ce86b1@f9941",
  4333. "__expectedType__": "cc.SpriteFrame"
  4334. },
  4335. "_type": 0,
  4336. "_fillType": 0,
  4337. "_sizeMode": 1,
  4338. "_fillCenter": {
  4339. "__type__": "cc.Vec2",
  4340. "x": 0,
  4341. "y": 0
  4342. },
  4343. "_fillStart": 0,
  4344. "_fillRange": 0,
  4345. "_isTrimmedMode": true,
  4346. "_useGrayscale": false,
  4347. "_atlas": null,
  4348. "_id": ""
  4349. },
  4350. {
  4351. "__type__": "cc.CompPrefabInfo",
  4352. "fileId": "f5mgCw0D9IYrAP0T2bXy+F"
  4353. },
  4354. {
  4355. "__type__": "cc.PrefabInfo",
  4356. "root": {
  4357. "__id__": 1
  4358. },
  4359. "asset": {
  4360. "__id__": 0
  4361. },
  4362. "fileId": "d3D+hRwBhFT5o31/aeM8nH",
  4363. "instance": null,
  4364. "targetOverrides": null,
  4365. "nestedPrefabInstanceRoots": null
  4366. },
  4367. {
  4368. "__type__": "cc.Node",
  4369. "_name": "Mask",
  4370. "_objFlags": 0,
  4371. "__editorExtras__": {},
  4372. "_parent": {
  4373. "__id__": 172
  4374. },
  4375. "_children": [],
  4376. "_active": true,
  4377. "_components": [
  4378. {
  4379. "__id__": 186
  4380. },
  4381. {
  4382. "__id__": 188
  4383. }
  4384. ],
  4385. "_prefab": {
  4386. "__id__": 190
  4387. },
  4388. "_lpos": {
  4389. "__type__": "cc.Vec3",
  4390. "x": 4.316000000000031,
  4391. "y": 4.949999999999932,
  4392. "z": 0
  4393. },
  4394. "_lrot": {
  4395. "__type__": "cc.Quat",
  4396. "x": 0,
  4397. "y": 0,
  4398. "z": 0,
  4399. "w": 1
  4400. },
  4401. "_lscale": {
  4402. "__type__": "cc.Vec3",
  4403. "x": 1,
  4404. "y": 1,
  4405. "z": 1
  4406. },
  4407. "_mobility": 0,
  4408. "_layer": 33554432,
  4409. "_euler": {
  4410. "__type__": "cc.Vec3",
  4411. "x": 0,
  4412. "y": 0,
  4413. "z": 0
  4414. },
  4415. "_id": ""
  4416. },
  4417. {
  4418. "__type__": "cc.UITransform",
  4419. "_name": "",
  4420. "_objFlags": 0,
  4421. "__editorExtras__": {},
  4422. "node": {
  4423. "__id__": 185
  4424. },
  4425. "_enabled": true,
  4426. "__prefab": {
  4427. "__id__": 187
  4428. },
  4429. "_contentSize": {
  4430. "__type__": "cc.Size",
  4431. "width": 186,
  4432. "height": 244
  4433. },
  4434. "_anchorPoint": {
  4435. "__type__": "cc.Vec2",
  4436. "x": 0.5,
  4437. "y": 0.5
  4438. },
  4439. "_id": ""
  4440. },
  4441. {
  4442. "__type__": "cc.CompPrefabInfo",
  4443. "fileId": "a6FonpvE1BEItKHKNvV63O"
  4444. },
  4445. {
  4446. "__type__": "cc.Sprite",
  4447. "_name": "",
  4448. "_objFlags": 0,
  4449. "__editorExtras__": {},
  4450. "node": {
  4451. "__id__": 185
  4452. },
  4453. "_enabled": true,
  4454. "__prefab": {
  4455. "__id__": 189
  4456. },
  4457. "_customMaterial": null,
  4458. "_srcBlendFactor": 2,
  4459. "_dstBlendFactor": 4,
  4460. "_color": {
  4461. "__type__": "cc.Color",
  4462. "r": 255,
  4463. "g": 255,
  4464. "b": 255,
  4465. "a": 255
  4466. },
  4467. "_spriteFrame": {
  4468. "__uuid__": "930d5975-cd35-4694-85d7-2e7af322b54f@f9941",
  4469. "__expectedType__": "cc.SpriteFrame"
  4470. },
  4471. "_type": 0,
  4472. "_fillType": 0,
  4473. "_sizeMode": 0,
  4474. "_fillCenter": {
  4475. "__type__": "cc.Vec2",
  4476. "x": 0,
  4477. "y": 0
  4478. },
  4479. "_fillStart": 0,
  4480. "_fillRange": 0,
  4481. "_isTrimmedMode": true,
  4482. "_useGrayscale": false,
  4483. "_atlas": null,
  4484. "_id": ""
  4485. },
  4486. {
  4487. "__type__": "cc.CompPrefabInfo",
  4488. "fileId": "47JOns6flOuZT3JpiVAgTC"
  4489. },
  4490. {
  4491. "__type__": "cc.PrefabInfo",
  4492. "root": {
  4493. "__id__": 1
  4494. },
  4495. "asset": {
  4496. "__id__": 0
  4497. },
  4498. "fileId": "64M+Sej/tPlIGVsInJxfUF",
  4499. "instance": null,
  4500. "targetOverrides": null,
  4501. "nestedPrefabInstanceRoots": null
  4502. },
  4503. {
  4504. "__type__": "cc.UITransform",
  4505. "_name": "",
  4506. "_objFlags": 0,
  4507. "__editorExtras__": {},
  4508. "node": {
  4509. "__id__": 172
  4510. },
  4511. "_enabled": true,
  4512. "__prefab": {
  4513. "__id__": 192
  4514. },
  4515. "_contentSize": {
  4516. "__type__": "cc.Size",
  4517. "width": 210,
  4518. "height": 260
  4519. },
  4520. "_anchorPoint": {
  4521. "__type__": "cc.Vec2",
  4522. "x": 0.5,
  4523. "y": 0.5
  4524. },
  4525. "_id": ""
  4526. },
  4527. {
  4528. "__type__": "cc.CompPrefabInfo",
  4529. "fileId": "ddd5DLrrpP5LPk857U4wKz"
  4530. },
  4531. {
  4532. "__type__": "cc.Sprite",
  4533. "_name": "",
  4534. "_objFlags": 0,
  4535. "__editorExtras__": {},
  4536. "node": {
  4537. "__id__": 172
  4538. },
  4539. "_enabled": true,
  4540. "__prefab": {
  4541. "__id__": 194
  4542. },
  4543. "_customMaterial": null,
  4544. "_srcBlendFactor": 2,
  4545. "_dstBlendFactor": 4,
  4546. "_color": {
  4547. "__type__": "cc.Color",
  4548. "r": 255,
  4549. "g": 255,
  4550. "b": 255,
  4551. "a": 255
  4552. },
  4553. "_spriteFrame": {
  4554. "__uuid__": "4dbd814d-77a1-43a1-b019-03c6155fe529@f9941",
  4555. "__expectedType__": "cc.SpriteFrame"
  4556. },
  4557. "_type": 1,
  4558. "_fillType": 0,
  4559. "_sizeMode": 0,
  4560. "_fillCenter": {
  4561. "__type__": "cc.Vec2",
  4562. "x": 0,
  4563. "y": 0
  4564. },
  4565. "_fillStart": 0,
  4566. "_fillRange": 0,
  4567. "_isTrimmedMode": true,
  4568. "_useGrayscale": false,
  4569. "_atlas": null,
  4570. "_id": ""
  4571. },
  4572. {
  4573. "__type__": "cc.CompPrefabInfo",
  4574. "fileId": "09El1IHAFNY4f/La+Iz0Xd"
  4575. },
  4576. {
  4577. "__type__": "cc.Button",
  4578. "_name": "",
  4579. "_objFlags": 0,
  4580. "__editorExtras__": {},
  4581. "node": {
  4582. "__id__": 172
  4583. },
  4584. "_enabled": true,
  4585. "__prefab": {
  4586. "__id__": 196
  4587. },
  4588. "clickEvents": [],
  4589. "_interactable": true,
  4590. "_transition": 2,
  4591. "_normalColor": {
  4592. "__type__": "cc.Color",
  4593. "r": 214,
  4594. "g": 214,
  4595. "b": 214,
  4596. "a": 255
  4597. },
  4598. "_hoverColor": {
  4599. "__type__": "cc.Color",
  4600. "r": 211,
  4601. "g": 211,
  4602. "b": 211,
  4603. "a": 255
  4604. },
  4605. "_pressedColor": {
  4606. "__type__": "cc.Color",
  4607. "r": 255,
  4608. "g": 255,
  4609. "b": 255,
  4610. "a": 255
  4611. },
  4612. "_disabledColor": {
  4613. "__type__": "cc.Color",
  4614. "r": 124,
  4615. "g": 124,
  4616. "b": 124,
  4617. "a": 255
  4618. },
  4619. "_normalSprite": {
  4620. "__uuid__": "4dbd814d-77a1-43a1-b019-03c6155fe529@f9941",
  4621. "__expectedType__": "cc.SpriteFrame"
  4622. },
  4623. "_hoverSprite": {
  4624. "__uuid__": "4dbd814d-77a1-43a1-b019-03c6155fe529@f9941",
  4625. "__expectedType__": "cc.SpriteFrame"
  4626. },
  4627. "_pressedSprite": {
  4628. "__uuid__": "4dbd814d-77a1-43a1-b019-03c6155fe529@f9941",
  4629. "__expectedType__": "cc.SpriteFrame"
  4630. },
  4631. "_disabledSprite": {
  4632. "__uuid__": "4dbd814d-77a1-43a1-b019-03c6155fe529@f9941",
  4633. "__expectedType__": "cc.SpriteFrame"
  4634. },
  4635. "_duration": 0.1,
  4636. "_zoomScale": 1.2,
  4637. "_target": {
  4638. "__id__": 172
  4639. },
  4640. "_id": ""
  4641. },
  4642. {
  4643. "__type__": "cc.CompPrefabInfo",
  4644. "fileId": "fby9TrNEtJZYh1hX1wa0qH"
  4645. },
  4646. {
  4647. "__type__": "279cfqjGjNDm6ukdVfGELoL",
  4648. "_name": "",
  4649. "_objFlags": 0,
  4650. "__editorExtras__": {},
  4651. "node": {
  4652. "__id__": 172
  4653. },
  4654. "_enabled": true,
  4655. "__prefab": {
  4656. "__id__": 198
  4657. },
  4658. "mask": null,
  4659. "gift": null,
  4660. "hadSign": null,
  4661. "sign_btn": null,
  4662. "_id": ""
  4663. },
  4664. {
  4665. "__type__": "cc.CompPrefabInfo",
  4666. "fileId": "4dh8Dzf7lNhaEW4Z1o923P"
  4667. },
  4668. {
  4669. "__type__": "cc.PrefabInfo",
  4670. "root": {
  4671. "__id__": 1
  4672. },
  4673. "asset": {
  4674. "__id__": 0
  4675. },
  4676. "fileId": "adOERJ0j1Gn5zmKXBroLtE",
  4677. "instance": null,
  4678. "targetOverrides": null,
  4679. "nestedPrefabInstanceRoots": null
  4680. },
  4681. {
  4682. "__type__": "cc.Node",
  4683. "_name": "Day_7",
  4684. "_objFlags": 0,
  4685. "__editorExtras__": {},
  4686. "_parent": {
  4687. "__id__": 1
  4688. },
  4689. "_children": [
  4690. {
  4691. "__id__": 201
  4692. },
  4693. {
  4694. "__id__": 207
  4695. },
  4696. {
  4697. "__id__": 213
  4698. }
  4699. ],
  4700. "_active": true,
  4701. "_components": [
  4702. {
  4703. "__id__": 219
  4704. },
  4705. {
  4706. "__id__": 221
  4707. },
  4708. {
  4709. "__id__": 223
  4710. },
  4711. {
  4712. "__id__": 225
  4713. }
  4714. ],
  4715. "_prefab": {
  4716. "__id__": 227
  4717. },
  4718. "_lpos": {
  4719. "__type__": "cc.Vec3",
  4720. "x": 0,
  4721. "y": -209.92600000000004,
  4722. "z": 0
  4723. },
  4724. "_lrot": {
  4725. "__type__": "cc.Quat",
  4726. "x": 0,
  4727. "y": 0,
  4728. "z": 0,
  4729. "w": 1
  4730. },
  4731. "_lscale": {
  4732. "__type__": "cc.Vec3",
  4733. "x": 1,
  4734. "y": 1,
  4735. "z": 1
  4736. },
  4737. "_mobility": 0,
  4738. "_layer": 33554432,
  4739. "_euler": {
  4740. "__type__": "cc.Vec3",
  4741. "x": 0,
  4742. "y": 0,
  4743. "z": 0
  4744. },
  4745. "_id": ""
  4746. },
  4747. {
  4748. "__type__": "cc.Node",
  4749. "_name": "Gift",
  4750. "_objFlags": 0,
  4751. "__editorExtras__": {},
  4752. "_parent": {
  4753. "__id__": 200
  4754. },
  4755. "_children": [],
  4756. "_active": true,
  4757. "_components": [
  4758. {
  4759. "__id__": 202
  4760. },
  4761. {
  4762. "__id__": 204
  4763. }
  4764. ],
  4765. "_prefab": {
  4766. "__id__": 206
  4767. },
  4768. "_lpos": {
  4769. "__type__": "cc.Vec3",
  4770. "x": 0,
  4771. "y": 0,
  4772. "z": 0
  4773. },
  4774. "_lrot": {
  4775. "__type__": "cc.Quat",
  4776. "x": 0,
  4777. "y": 0,
  4778. "z": 0,
  4779. "w": 1
  4780. },
  4781. "_lscale": {
  4782. "__type__": "cc.Vec3",
  4783. "x": 1,
  4784. "y": 1,
  4785. "z": 1
  4786. },
  4787. "_mobility": 0,
  4788. "_layer": 33554432,
  4789. "_euler": {
  4790. "__type__": "cc.Vec3",
  4791. "x": 0,
  4792. "y": 0,
  4793. "z": 0
  4794. },
  4795. "_id": ""
  4796. },
  4797. {
  4798. "__type__": "cc.UITransform",
  4799. "_name": "",
  4800. "_objFlags": 0,
  4801. "__editorExtras__": {},
  4802. "node": {
  4803. "__id__": 201
  4804. },
  4805. "_enabled": true,
  4806. "__prefab": {
  4807. "__id__": 203
  4808. },
  4809. "_contentSize": {
  4810. "__type__": "cc.Size",
  4811. "width": 116,
  4812. "height": 112
  4813. },
  4814. "_anchorPoint": {
  4815. "__type__": "cc.Vec2",
  4816. "x": 0.5,
  4817. "y": 0.5
  4818. },
  4819. "_id": ""
  4820. },
  4821. {
  4822. "__type__": "cc.CompPrefabInfo",
  4823. "fileId": "47+ONZrX1GB5j3yzHNVz5d"
  4824. },
  4825. {
  4826. "__type__": "cc.Sprite",
  4827. "_name": "",
  4828. "_objFlags": 0,
  4829. "__editorExtras__": {},
  4830. "node": {
  4831. "__id__": 201
  4832. },
  4833. "_enabled": true,
  4834. "__prefab": {
  4835. "__id__": 205
  4836. },
  4837. "_customMaterial": null,
  4838. "_srcBlendFactor": 2,
  4839. "_dstBlendFactor": 4,
  4840. "_color": {
  4841. "__type__": "cc.Color",
  4842. "r": 255,
  4843. "g": 255,
  4844. "b": 255,
  4845. "a": 255
  4846. },
  4847. "_spriteFrame": {
  4848. "__uuid__": "31c647db-302c-4f26-9afb-36980393c203@f9941",
  4849. "__expectedType__": "cc.SpriteFrame"
  4850. },
  4851. "_type": 0,
  4852. "_fillType": 0,
  4853. "_sizeMode": 1,
  4854. "_fillCenter": {
  4855. "__type__": "cc.Vec2",
  4856. "x": 0,
  4857. "y": 0
  4858. },
  4859. "_fillStart": 0,
  4860. "_fillRange": 0,
  4861. "_isTrimmedMode": true,
  4862. "_useGrayscale": false,
  4863. "_atlas": null,
  4864. "_id": ""
  4865. },
  4866. {
  4867. "__type__": "cc.CompPrefabInfo",
  4868. "fileId": "6avuBCFSxE5qhGb21auhx8"
  4869. },
  4870. {
  4871. "__type__": "cc.PrefabInfo",
  4872. "root": {
  4873. "__id__": 1
  4874. },
  4875. "asset": {
  4876. "__id__": 0
  4877. },
  4878. "fileId": "75xs3aRwdPi61Osk4Me2uN",
  4879. "instance": null,
  4880. "targetOverrides": null,
  4881. "nestedPrefabInstanceRoots": null
  4882. },
  4883. {
  4884. "__type__": "cc.Node",
  4885. "_name": "HadSign",
  4886. "_objFlags": 0,
  4887. "__editorExtras__": {},
  4888. "_parent": {
  4889. "__id__": 200
  4890. },
  4891. "_children": [],
  4892. "_active": true,
  4893. "_components": [
  4894. {
  4895. "__id__": 208
  4896. },
  4897. {
  4898. "__id__": 210
  4899. }
  4900. ],
  4901. "_prefab": {
  4902. "__id__": 212
  4903. },
  4904. "_lpos": {
  4905. "__type__": "cc.Vec3",
  4906. "x": 0,
  4907. "y": 0,
  4908. "z": 0
  4909. },
  4910. "_lrot": {
  4911. "__type__": "cc.Quat",
  4912. "x": 0,
  4913. "y": 0,
  4914. "z": 0,
  4915. "w": 1
  4916. },
  4917. "_lscale": {
  4918. "__type__": "cc.Vec3",
  4919. "x": 1,
  4920. "y": 1,
  4921. "z": 1
  4922. },
  4923. "_mobility": 0,
  4924. "_layer": 33554432,
  4925. "_euler": {
  4926. "__type__": "cc.Vec3",
  4927. "x": 0,
  4928. "y": 0,
  4929. "z": 0
  4930. },
  4931. "_id": ""
  4932. },
  4933. {
  4934. "__type__": "cc.UITransform",
  4935. "_name": "",
  4936. "_objFlags": 0,
  4937. "__editorExtras__": {},
  4938. "node": {
  4939. "__id__": 207
  4940. },
  4941. "_enabled": true,
  4942. "__prefab": {
  4943. "__id__": 209
  4944. },
  4945. "_contentSize": {
  4946. "__type__": "cc.Size",
  4947. "width": 97,
  4948. "height": 68
  4949. },
  4950. "_anchorPoint": {
  4951. "__type__": "cc.Vec2",
  4952. "x": 0.5,
  4953. "y": 0.5
  4954. },
  4955. "_id": ""
  4956. },
  4957. {
  4958. "__type__": "cc.CompPrefabInfo",
  4959. "fileId": "5djdpGNV9DP6aeuXYF/KCR"
  4960. },
  4961. {
  4962. "__type__": "cc.Sprite",
  4963. "_name": "",
  4964. "_objFlags": 0,
  4965. "__editorExtras__": {},
  4966. "node": {
  4967. "__id__": 207
  4968. },
  4969. "_enabled": true,
  4970. "__prefab": {
  4971. "__id__": 211
  4972. },
  4973. "_customMaterial": null,
  4974. "_srcBlendFactor": 2,
  4975. "_dstBlendFactor": 4,
  4976. "_color": {
  4977. "__type__": "cc.Color",
  4978. "r": 255,
  4979. "g": 255,
  4980. "b": 255,
  4981. "a": 255
  4982. },
  4983. "_spriteFrame": {
  4984. "__uuid__": "1a1cc4ba-d19b-42a0-a830-924a95ce86b1@f9941",
  4985. "__expectedType__": "cc.SpriteFrame"
  4986. },
  4987. "_type": 0,
  4988. "_fillType": 0,
  4989. "_sizeMode": 1,
  4990. "_fillCenter": {
  4991. "__type__": "cc.Vec2",
  4992. "x": 0,
  4993. "y": 0
  4994. },
  4995. "_fillStart": 0,
  4996. "_fillRange": 0,
  4997. "_isTrimmedMode": true,
  4998. "_useGrayscale": false,
  4999. "_atlas": null,
  5000. "_id": ""
  5001. },
  5002. {
  5003. "__type__": "cc.CompPrefabInfo",
  5004. "fileId": "92SrLRi5pA4KWDgJ4aemtL"
  5005. },
  5006. {
  5007. "__type__": "cc.PrefabInfo",
  5008. "root": {
  5009. "__id__": 1
  5010. },
  5011. "asset": {
  5012. "__id__": 0
  5013. },
  5014. "fileId": "77eea6T81JAKzuzG/9NCfu",
  5015. "instance": null,
  5016. "targetOverrides": null,
  5017. "nestedPrefabInstanceRoots": null
  5018. },
  5019. {
  5020. "__type__": "cc.Node",
  5021. "_name": "Mask",
  5022. "_objFlags": 0,
  5023. "__editorExtras__": {},
  5024. "_parent": {
  5025. "__id__": 200
  5026. },
  5027. "_children": [],
  5028. "_active": true,
  5029. "_components": [
  5030. {
  5031. "__id__": 214
  5032. },
  5033. {
  5034. "__id__": 216
  5035. }
  5036. ],
  5037. "_prefab": {
  5038. "__id__": 218
  5039. },
  5040. "_lpos": {
  5041. "__type__": "cc.Vec3",
  5042. "x": 0,
  5043. "y": -1.4589999999999463,
  5044. "z": 0
  5045. },
  5046. "_lrot": {
  5047. "__type__": "cc.Quat",
  5048. "x": 0,
  5049. "y": 0,
  5050. "z": 0,
  5051. "w": 1
  5052. },
  5053. "_lscale": {
  5054. "__type__": "cc.Vec3",
  5055. "x": 1,
  5056. "y": 1,
  5057. "z": 1
  5058. },
  5059. "_mobility": 0,
  5060. "_layer": 33554432,
  5061. "_euler": {
  5062. "__type__": "cc.Vec3",
  5063. "x": 0,
  5064. "y": 0,
  5065. "z": 0
  5066. },
  5067. "_id": ""
  5068. },
  5069. {
  5070. "__type__": "cc.UITransform",
  5071. "_name": "",
  5072. "_objFlags": 0,
  5073. "__editorExtras__": {},
  5074. "node": {
  5075. "__id__": 213
  5076. },
  5077. "_enabled": true,
  5078. "__prefab": {
  5079. "__id__": 215
  5080. },
  5081. "_contentSize": {
  5082. "__type__": "cc.Size",
  5083. "width": 601,
  5084. "height": 225
  5085. },
  5086. "_anchorPoint": {
  5087. "__type__": "cc.Vec2",
  5088. "x": 0.5,
  5089. "y": 0.5
  5090. },
  5091. "_id": ""
  5092. },
  5093. {
  5094. "__type__": "cc.CompPrefabInfo",
  5095. "fileId": "dbJ7FdG/JJsrks8OE6ECiN"
  5096. },
  5097. {
  5098. "__type__": "cc.Sprite",
  5099. "_name": "",
  5100. "_objFlags": 0,
  5101. "__editorExtras__": {},
  5102. "node": {
  5103. "__id__": 213
  5104. },
  5105. "_enabled": true,
  5106. "__prefab": {
  5107. "__id__": 217
  5108. },
  5109. "_customMaterial": null,
  5110. "_srcBlendFactor": 2,
  5111. "_dstBlendFactor": 4,
  5112. "_color": {
  5113. "__type__": "cc.Color",
  5114. "r": 255,
  5115. "g": 255,
  5116. "b": 255,
  5117. "a": 255
  5118. },
  5119. "_spriteFrame": {
  5120. "__uuid__": "a2e66167-2355-48a6-abb3-152993d621ad@f9941",
  5121. "__expectedType__": "cc.SpriteFrame"
  5122. },
  5123. "_type": 0,
  5124. "_fillType": 0,
  5125. "_sizeMode": 0,
  5126. "_fillCenter": {
  5127. "__type__": "cc.Vec2",
  5128. "x": 0,
  5129. "y": 0
  5130. },
  5131. "_fillStart": 0,
  5132. "_fillRange": 0,
  5133. "_isTrimmedMode": true,
  5134. "_useGrayscale": false,
  5135. "_atlas": null,
  5136. "_id": ""
  5137. },
  5138. {
  5139. "__type__": "cc.CompPrefabInfo",
  5140. "fileId": "9f0V7y3NJPi7Q+0mNpibO0"
  5141. },
  5142. {
  5143. "__type__": "cc.PrefabInfo",
  5144. "root": {
  5145. "__id__": 1
  5146. },
  5147. "asset": {
  5148. "__id__": 0
  5149. },
  5150. "fileId": "69pSZxUOxJ1IyNYTj4JnWx",
  5151. "instance": null,
  5152. "targetOverrides": null,
  5153. "nestedPrefabInstanceRoots": null
  5154. },
  5155. {
  5156. "__type__": "cc.UITransform",
  5157. "_name": "",
  5158. "_objFlags": 0,
  5159. "__editorExtras__": {},
  5160. "node": {
  5161. "__id__": 200
  5162. },
  5163. "_enabled": true,
  5164. "__prefab": {
  5165. "__id__": 220
  5166. },
  5167. "_contentSize": {
  5168. "__type__": "cc.Size",
  5169. "width": 630,
  5170. "height": 260
  5171. },
  5172. "_anchorPoint": {
  5173. "__type__": "cc.Vec2",
  5174. "x": 0.5,
  5175. "y": 0.5
  5176. },
  5177. "_id": ""
  5178. },
  5179. {
  5180. "__type__": "cc.CompPrefabInfo",
  5181. "fileId": "6dVIblL3NPpJq8+mXrO9zq"
  5182. },
  5183. {
  5184. "__type__": "cc.Sprite",
  5185. "_name": "",
  5186. "_objFlags": 0,
  5187. "__editorExtras__": {},
  5188. "node": {
  5189. "__id__": 200
  5190. },
  5191. "_enabled": true,
  5192. "__prefab": {
  5193. "__id__": 222
  5194. },
  5195. "_customMaterial": null,
  5196. "_srcBlendFactor": 2,
  5197. "_dstBlendFactor": 4,
  5198. "_color": {
  5199. "__type__": "cc.Color",
  5200. "r": 255,
  5201. "g": 255,
  5202. "b": 255,
  5203. "a": 255
  5204. },
  5205. "_spriteFrame": {
  5206. "__uuid__": "daa34f0a-ac39-41f9-8f11-7e03e4768a5d@f9941",
  5207. "__expectedType__": "cc.SpriteFrame"
  5208. },
  5209. "_type": 1,
  5210. "_fillType": 0,
  5211. "_sizeMode": 0,
  5212. "_fillCenter": {
  5213. "__type__": "cc.Vec2",
  5214. "x": 0,
  5215. "y": 0
  5216. },
  5217. "_fillStart": 0,
  5218. "_fillRange": 0,
  5219. "_isTrimmedMode": true,
  5220. "_useGrayscale": false,
  5221. "_atlas": null,
  5222. "_id": ""
  5223. },
  5224. {
  5225. "__type__": "cc.CompPrefabInfo",
  5226. "fileId": "45ytILAwJBTYOdpBH7gLJQ"
  5227. },
  5228. {
  5229. "__type__": "cc.Button",
  5230. "_name": "",
  5231. "_objFlags": 0,
  5232. "__editorExtras__": {},
  5233. "node": {
  5234. "__id__": 200
  5235. },
  5236. "_enabled": true,
  5237. "__prefab": {
  5238. "__id__": 224
  5239. },
  5240. "clickEvents": [],
  5241. "_interactable": true,
  5242. "_transition": 2,
  5243. "_normalColor": {
  5244. "__type__": "cc.Color",
  5245. "r": 214,
  5246. "g": 214,
  5247. "b": 214,
  5248. "a": 255
  5249. },
  5250. "_hoverColor": {
  5251. "__type__": "cc.Color",
  5252. "r": 211,
  5253. "g": 211,
  5254. "b": 211,
  5255. "a": 255
  5256. },
  5257. "_pressedColor": {
  5258. "__type__": "cc.Color",
  5259. "r": 255,
  5260. "g": 255,
  5261. "b": 255,
  5262. "a": 255
  5263. },
  5264. "_disabledColor": {
  5265. "__type__": "cc.Color",
  5266. "r": 124,
  5267. "g": 124,
  5268. "b": 124,
  5269. "a": 255
  5270. },
  5271. "_normalSprite": {
  5272. "__uuid__": "daa34f0a-ac39-41f9-8f11-7e03e4768a5d@f9941",
  5273. "__expectedType__": "cc.SpriteFrame"
  5274. },
  5275. "_hoverSprite": {
  5276. "__uuid__": "daa34f0a-ac39-41f9-8f11-7e03e4768a5d@f9941",
  5277. "__expectedType__": "cc.SpriteFrame"
  5278. },
  5279. "_pressedSprite": {
  5280. "__uuid__": "daa34f0a-ac39-41f9-8f11-7e03e4768a5d@f9941",
  5281. "__expectedType__": "cc.SpriteFrame"
  5282. },
  5283. "_disabledSprite": {
  5284. "__uuid__": "daa34f0a-ac39-41f9-8f11-7e03e4768a5d@f9941",
  5285. "__expectedType__": "cc.SpriteFrame"
  5286. },
  5287. "_duration": 0.1,
  5288. "_zoomScale": 1.2,
  5289. "_target": {
  5290. "__id__": 200
  5291. },
  5292. "_id": ""
  5293. },
  5294. {
  5295. "__type__": "cc.CompPrefabInfo",
  5296. "fileId": "a3aH7DrlRIj6SEbTLgpVDN"
  5297. },
  5298. {
  5299. "__type__": "279cfqjGjNDm6ukdVfGELoL",
  5300. "_name": "",
  5301. "_objFlags": 0,
  5302. "__editorExtras__": {},
  5303. "node": {
  5304. "__id__": 200
  5305. },
  5306. "_enabled": true,
  5307. "__prefab": {
  5308. "__id__": 226
  5309. },
  5310. "mask": null,
  5311. "gift": null,
  5312. "hadSign": null,
  5313. "sign_btn": null,
  5314. "_id": ""
  5315. },
  5316. {
  5317. "__type__": "cc.CompPrefabInfo",
  5318. "fileId": "admGmz1ehBjItcP1O6rGRB"
  5319. },
  5320. {
  5321. "__type__": "cc.PrefabInfo",
  5322. "root": {
  5323. "__id__": 1
  5324. },
  5325. "asset": {
  5326. "__id__": 0
  5327. },
  5328. "fileId": "f8YaxTxotIdby3Op9XDvKd",
  5329. "instance": null,
  5330. "targetOverrides": null,
  5331. "nestedPrefabInstanceRoots": null
  5332. },
  5333. {
  5334. "__type__": "cc.Node",
  5335. "_name": "Sign_Btn",
  5336. "_objFlags": 0,
  5337. "__editorExtras__": {},
  5338. "_parent": {
  5339. "__id__": 1
  5340. },
  5341. "_children": [],
  5342. "_active": true,
  5343. "_components": [
  5344. {
  5345. "__id__": 229
  5346. },
  5347. {
  5348. "__id__": 231
  5349. },
  5350. {
  5351. "__id__": 233
  5352. }
  5353. ],
  5354. "_prefab": {
  5355. "__id__": 235
  5356. },
  5357. "_lpos": {
  5358. "__type__": "cc.Vec3",
  5359. "x": -151.407,
  5360. "y": -434.838,
  5361. "z": 0
  5362. },
  5363. "_lrot": {
  5364. "__type__": "cc.Quat",
  5365. "x": 0,
  5366. "y": 0,
  5367. "z": 0,
  5368. "w": 1
  5369. },
  5370. "_lscale": {
  5371. "__type__": "cc.Vec3",
  5372. "x": 1,
  5373. "y": 1,
  5374. "z": 1
  5375. },
  5376. "_mobility": 0,
  5377. "_layer": 33554432,
  5378. "_euler": {
  5379. "__type__": "cc.Vec3",
  5380. "x": 0,
  5381. "y": 0,
  5382. "z": 0
  5383. },
  5384. "_id": ""
  5385. },
  5386. {
  5387. "__type__": "cc.UITransform",
  5388. "_name": "",
  5389. "_objFlags": 0,
  5390. "__editorExtras__": {},
  5391. "node": {
  5392. "__id__": 228
  5393. },
  5394. "_enabled": true,
  5395. "__prefab": {
  5396. "__id__": 230
  5397. },
  5398. "_contentSize": {
  5399. "__type__": "cc.Size",
  5400. "width": 280,
  5401. "height": 120
  5402. },
  5403. "_anchorPoint": {
  5404. "__type__": "cc.Vec2",
  5405. "x": 0.5,
  5406. "y": 0.5
  5407. },
  5408. "_id": ""
  5409. },
  5410. {
  5411. "__type__": "cc.CompPrefabInfo",
  5412. "fileId": "74OL1FkoND2Iaa5Lc0aX0R"
  5413. },
  5414. {
  5415. "__type__": "cc.Sprite",
  5416. "_name": "",
  5417. "_objFlags": 0,
  5418. "__editorExtras__": {},
  5419. "node": {
  5420. "__id__": 228
  5421. },
  5422. "_enabled": true,
  5423. "__prefab": {
  5424. "__id__": 232
  5425. },
  5426. "_customMaterial": null,
  5427. "_srcBlendFactor": 2,
  5428. "_dstBlendFactor": 4,
  5429. "_color": {
  5430. "__type__": "cc.Color",
  5431. "r": 255,
  5432. "g": 255,
  5433. "b": 255,
  5434. "a": 255
  5435. },
  5436. "_spriteFrame": {
  5437. "__uuid__": "9dae3bc9-8d99-4be0-ad87-20a4e35d1408@f9941",
  5438. "__expectedType__": "cc.SpriteFrame"
  5439. },
  5440. "_type": 1,
  5441. "_fillType": 0,
  5442. "_sizeMode": 0,
  5443. "_fillCenter": {
  5444. "__type__": "cc.Vec2",
  5445. "x": 0,
  5446. "y": 0
  5447. },
  5448. "_fillStart": 0,
  5449. "_fillRange": 0,
  5450. "_isTrimmedMode": true,
  5451. "_useGrayscale": false,
  5452. "_atlas": null,
  5453. "_id": ""
  5454. },
  5455. {
  5456. "__type__": "cc.CompPrefabInfo",
  5457. "fileId": "5c6MVApIpEH6kMaTBYb10w"
  5458. },
  5459. {
  5460. "__type__": "cc.Button",
  5461. "_name": "",
  5462. "_objFlags": 0,
  5463. "__editorExtras__": {},
  5464. "node": {
  5465. "__id__": 228
  5466. },
  5467. "_enabled": true,
  5468. "__prefab": {
  5469. "__id__": 234
  5470. },
  5471. "clickEvents": [],
  5472. "_interactable": true,
  5473. "_transition": 2,
  5474. "_normalColor": {
  5475. "__type__": "cc.Color",
  5476. "r": 214,
  5477. "g": 214,
  5478. "b": 214,
  5479. "a": 255
  5480. },
  5481. "_hoverColor": {
  5482. "__type__": "cc.Color",
  5483. "r": 211,
  5484. "g": 211,
  5485. "b": 211,
  5486. "a": 255
  5487. },
  5488. "_pressedColor": {
  5489. "__type__": "cc.Color",
  5490. "r": 255,
  5491. "g": 255,
  5492. "b": 255,
  5493. "a": 255
  5494. },
  5495. "_disabledColor": {
  5496. "__type__": "cc.Color",
  5497. "r": 124,
  5498. "g": 124,
  5499. "b": 124,
  5500. "a": 255
  5501. },
  5502. "_normalSprite": {
  5503. "__uuid__": "9dae3bc9-8d99-4be0-ad87-20a4e35d1408@f9941",
  5504. "__expectedType__": "cc.SpriteFrame"
  5505. },
  5506. "_hoverSprite": {
  5507. "__uuid__": "9dae3bc9-8d99-4be0-ad87-20a4e35d1408@f9941",
  5508. "__expectedType__": "cc.SpriteFrame"
  5509. },
  5510. "_pressedSprite": {
  5511. "__uuid__": "9dae3bc9-8d99-4be0-ad87-20a4e35d1408@f9941",
  5512. "__expectedType__": "cc.SpriteFrame"
  5513. },
  5514. "_disabledSprite": {
  5515. "__uuid__": "9dae3bc9-8d99-4be0-ad87-20a4e35d1408@f9941",
  5516. "__expectedType__": "cc.SpriteFrame"
  5517. },
  5518. "_duration": 0.1,
  5519. "_zoomScale": 1.2,
  5520. "_target": {
  5521. "__id__": 228
  5522. },
  5523. "_id": ""
  5524. },
  5525. {
  5526. "__type__": "cc.CompPrefabInfo",
  5527. "fileId": "7fH+PPXv9LEKcdVQGVYiuN"
  5528. },
  5529. {
  5530. "__type__": "cc.PrefabInfo",
  5531. "root": {
  5532. "__id__": 1
  5533. },
  5534. "asset": {
  5535. "__id__": 0
  5536. },
  5537. "fileId": "17pCMiO0lEpLIbgo7Oz08f",
  5538. "instance": null,
  5539. "targetOverrides": null,
  5540. "nestedPrefabInstanceRoots": null
  5541. },
  5542. {
  5543. "__type__": "cc.Node",
  5544. "_name": "Double_Get_Btn",
  5545. "_objFlags": 0,
  5546. "__editorExtras__": {},
  5547. "_parent": {
  5548. "__id__": 1
  5549. },
  5550. "_children": [],
  5551. "_active": true,
  5552. "_components": [
  5553. {
  5554. "__id__": 237
  5555. },
  5556. {
  5557. "__id__": 239
  5558. },
  5559. {
  5560. "__id__": 241
  5561. }
  5562. ],
  5563. "_prefab": {
  5564. "__id__": 243
  5565. },
  5566. "_lpos": {
  5567. "__type__": "cc.Vec3",
  5568. "x": 151.962,
  5569. "y": -436.418,
  5570. "z": 0
  5571. },
  5572. "_lrot": {
  5573. "__type__": "cc.Quat",
  5574. "x": 0,
  5575. "y": 0,
  5576. "z": 0,
  5577. "w": 1
  5578. },
  5579. "_lscale": {
  5580. "__type__": "cc.Vec3",
  5581. "x": 1,
  5582. "y": 1,
  5583. "z": 1
  5584. },
  5585. "_mobility": 0,
  5586. "_layer": 33554432,
  5587. "_euler": {
  5588. "__type__": "cc.Vec3",
  5589. "x": 0,
  5590. "y": 0,
  5591. "z": 0
  5592. },
  5593. "_id": ""
  5594. },
  5595. {
  5596. "__type__": "cc.UITransform",
  5597. "_name": "",
  5598. "_objFlags": 0,
  5599. "__editorExtras__": {},
  5600. "node": {
  5601. "__id__": 236
  5602. },
  5603. "_enabled": true,
  5604. "__prefab": {
  5605. "__id__": 238
  5606. },
  5607. "_contentSize": {
  5608. "__type__": "cc.Size",
  5609. "width": 280,
  5610. "height": 120
  5611. },
  5612. "_anchorPoint": {
  5613. "__type__": "cc.Vec2",
  5614. "x": 0.5,
  5615. "y": 0.5
  5616. },
  5617. "_id": ""
  5618. },
  5619. {
  5620. "__type__": "cc.CompPrefabInfo",
  5621. "fileId": "49e26cf9JIbrD9EVDtAfvK"
  5622. },
  5623. {
  5624. "__type__": "cc.Sprite",
  5625. "_name": "",
  5626. "_objFlags": 0,
  5627. "__editorExtras__": {},
  5628. "node": {
  5629. "__id__": 236
  5630. },
  5631. "_enabled": true,
  5632. "__prefab": {
  5633. "__id__": 240
  5634. },
  5635. "_customMaterial": null,
  5636. "_srcBlendFactor": 2,
  5637. "_dstBlendFactor": 4,
  5638. "_color": {
  5639. "__type__": "cc.Color",
  5640. "r": 255,
  5641. "g": 255,
  5642. "b": 255,
  5643. "a": 255
  5644. },
  5645. "_spriteFrame": {
  5646. "__uuid__": "34f1e653-580c-4af6-9fed-961a49235bf1@f9941",
  5647. "__expectedType__": "cc.SpriteFrame"
  5648. },
  5649. "_type": 1,
  5650. "_fillType": 0,
  5651. "_sizeMode": 0,
  5652. "_fillCenter": {
  5653. "__type__": "cc.Vec2",
  5654. "x": 0,
  5655. "y": 0
  5656. },
  5657. "_fillStart": 0,
  5658. "_fillRange": 0,
  5659. "_isTrimmedMode": true,
  5660. "_useGrayscale": false,
  5661. "_atlas": null,
  5662. "_id": ""
  5663. },
  5664. {
  5665. "__type__": "cc.CompPrefabInfo",
  5666. "fileId": "b95yaa3lZDC5U9ogppoZAR"
  5667. },
  5668. {
  5669. "__type__": "cc.Button",
  5670. "_name": "",
  5671. "_objFlags": 0,
  5672. "__editorExtras__": {},
  5673. "node": {
  5674. "__id__": 236
  5675. },
  5676. "_enabled": true,
  5677. "__prefab": {
  5678. "__id__": 242
  5679. },
  5680. "clickEvents": [],
  5681. "_interactable": true,
  5682. "_transition": 2,
  5683. "_normalColor": {
  5684. "__type__": "cc.Color",
  5685. "r": 214,
  5686. "g": 214,
  5687. "b": 214,
  5688. "a": 255
  5689. },
  5690. "_hoverColor": {
  5691. "__type__": "cc.Color",
  5692. "r": 211,
  5693. "g": 211,
  5694. "b": 211,
  5695. "a": 255
  5696. },
  5697. "_pressedColor": {
  5698. "__type__": "cc.Color",
  5699. "r": 255,
  5700. "g": 255,
  5701. "b": 255,
  5702. "a": 255
  5703. },
  5704. "_disabledColor": {
  5705. "__type__": "cc.Color",
  5706. "r": 124,
  5707. "g": 124,
  5708. "b": 124,
  5709. "a": 255
  5710. },
  5711. "_normalSprite": {
  5712. "__uuid__": "34f1e653-580c-4af6-9fed-961a49235bf1@f9941",
  5713. "__expectedType__": "cc.SpriteFrame"
  5714. },
  5715. "_hoverSprite": {
  5716. "__uuid__": "34f1e653-580c-4af6-9fed-961a49235bf1@f9941",
  5717. "__expectedType__": "cc.SpriteFrame"
  5718. },
  5719. "_pressedSprite": {
  5720. "__uuid__": "34f1e653-580c-4af6-9fed-961a49235bf1@f9941",
  5721. "__expectedType__": "cc.SpriteFrame"
  5722. },
  5723. "_disabledSprite": {
  5724. "__uuid__": "34f1e653-580c-4af6-9fed-961a49235bf1@f9941",
  5725. "__expectedType__": "cc.SpriteFrame"
  5726. },
  5727. "_duration": 0.1,
  5728. "_zoomScale": 1.2,
  5729. "_target": {
  5730. "__id__": 236
  5731. },
  5732. "_id": ""
  5733. },
  5734. {
  5735. "__type__": "cc.CompPrefabInfo",
  5736. "fileId": "7eJctU9+JDc6YxIxk5nIyu"
  5737. },
  5738. {
  5739. "__type__": "cc.PrefabInfo",
  5740. "root": {
  5741. "__id__": 1
  5742. },
  5743. "asset": {
  5744. "__id__": 0
  5745. },
  5746. "fileId": "881mAZcRRKL7kfMzSx+m2X",
  5747. "instance": null,
  5748. "targetOverrides": null,
  5749. "nestedPrefabInstanceRoots": null
  5750. },
  5751. {
  5752. "__type__": "cc.UITransform",
  5753. "_name": "",
  5754. "_objFlags": 0,
  5755. "__editorExtras__": {},
  5756. "node": {
  5757. "__id__": 1
  5758. },
  5759. "_enabled": true,
  5760. "__prefab": {
  5761. "__id__": 245
  5762. },
  5763. "_contentSize": {
  5764. "__type__": "cc.Size",
  5765. "width": 750,
  5766. "height": 1634
  5767. },
  5768. "_anchorPoint": {
  5769. "__type__": "cc.Vec2",
  5770. "x": 0.5,
  5771. "y": 0.5
  5772. },
  5773. "_id": ""
  5774. },
  5775. {
  5776. "__type__": "cc.CompPrefabInfo",
  5777. "fileId": "2ebaSvyqtEfIrYLApAz3IG"
  5778. },
  5779. {
  5780. "__type__": "2431d0oHdZK846J0egg/00B",
  5781. "_name": "",
  5782. "_objFlags": 0,
  5783. "__editorExtras__": {},
  5784. "node": {
  5785. "__id__": 1
  5786. },
  5787. "_enabled": true,
  5788. "__prefab": {
  5789. "__id__": 247
  5790. },
  5791. "Sign_Btn": null,
  5792. "Double_Get_Btn": null,
  5793. "sigin_rewards": [
  5794. {
  5795. "__id__": 57
  5796. },
  5797. {
  5798. "__id__": 85
  5799. },
  5800. {
  5801. "__id__": 113
  5802. },
  5803. {
  5804. "__id__": 141
  5805. },
  5806. {
  5807. "__id__": 169
  5808. },
  5809. {
  5810. "__id__": 197
  5811. },
  5812. {
  5813. "__id__": 225
  5814. }
  5815. ],
  5816. "_id": ""
  5817. },
  5818. {
  5819. "__type__": "cc.CompPrefabInfo",
  5820. "fileId": "69wYlGKS9GSIMdGd/WAJ79"
  5821. },
  5822. {
  5823. "__type__": "cc.UIOpacity",
  5824. "_name": "",
  5825. "_objFlags": 0,
  5826. "__editorExtras__": {},
  5827. "node": {
  5828. "__id__": 1
  5829. },
  5830. "_enabled": true,
  5831. "__prefab": {
  5832. "__id__": 249
  5833. },
  5834. "_opacity": 255,
  5835. "_id": ""
  5836. },
  5837. {
  5838. "__type__": "cc.CompPrefabInfo",
  5839. "fileId": "e5PLeJmXBDTKIsyq9ghYRv"
  5840. },
  5841. {
  5842. "__type__": "cc.PrefabInfo",
  5843. "root": {
  5844. "__id__": 1
  5845. },
  5846. "asset": {
  5847. "__id__": 0
  5848. },
  5849. "fileId": "6dJi+xkwxIbr66sVVrmv69",
  5850. "instance": null,
  5851. "targetOverrides": null
  5852. }
  5853. ]