DailyNode.prefab 176 KB

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