BobbleGamePanel.prefab 196 KB

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