game.scene 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "game",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_name": "game",
  14. "_objFlags": 0,
  15. "_parent": null,
  16. "_children": [
  17. {
  18. "__id__": 2
  19. },
  20. {
  21. "__id__": 7
  22. }
  23. ],
  24. "_active": true,
  25. "_components": [],
  26. "_prefab": {
  27. "__id__": 222
  28. },
  29. "_lpos": {
  30. "__type__": "cc.Vec3",
  31. "x": 0,
  32. "y": 0,
  33. "z": 0
  34. },
  35. "_lrot": {
  36. "__type__": "cc.Quat",
  37. "x": 0,
  38. "y": 0,
  39. "z": 0,
  40. "w": 1
  41. },
  42. "_lscale": {
  43. "__type__": "cc.Vec3",
  44. "x": 1,
  45. "y": 1,
  46. "z": 1
  47. },
  48. "_mobility": 0,
  49. "_layer": 1073741824,
  50. "_euler": {
  51. "__type__": "cc.Vec3",
  52. "x": 0,
  53. "y": 0,
  54. "z": 0
  55. },
  56. "autoReleaseAssets": false,
  57. "_globals": {
  58. "__id__": 223
  59. },
  60. "_id": "b85f2e13-0b50-4576-a653-0cc6429970e5"
  61. },
  62. {
  63. "__type__": "cc.Node",
  64. "_name": "Manager",
  65. "_objFlags": 0,
  66. "_parent": {
  67. "__id__": 1
  68. },
  69. "_children": [
  70. {
  71. "__id__": 3
  72. },
  73. {
  74. "__id__": 217
  75. },
  76. {
  77. "__id__": 220
  78. }
  79. ],
  80. "_active": true,
  81. "_components": [],
  82. "_prefab": null,
  83. "_lpos": {
  84. "__type__": "cc.Vec3",
  85. "x": 0,
  86. "y": 0,
  87. "z": 0
  88. },
  89. "_lrot": {
  90. "__type__": "cc.Quat",
  91. "x": 0,
  92. "y": 0,
  93. "z": 0,
  94. "w": 1
  95. },
  96. "_lscale": {
  97. "__type__": "cc.Vec3",
  98. "x": 1,
  99. "y": 1,
  100. "z": 1
  101. },
  102. "_mobility": 0,
  103. "_layer": 1073741824,
  104. "_euler": {
  105. "__type__": "cc.Vec3",
  106. "x": 0,
  107. "y": 0,
  108. "z": 0
  109. },
  110. "_id": "74KcTb5n9FUrAaCdD5JaBY"
  111. },
  112. {
  113. "__type__": "cc.Node",
  114. "_name": "GameManager",
  115. "_objFlags": 0,
  116. "_parent": {
  117. "__id__": 2
  118. },
  119. "_children": [],
  120. "_active": true,
  121. "_components": [
  122. {
  123. "__id__": 4
  124. }
  125. ],
  126. "_prefab": null,
  127. "_lpos": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_lrot": {
  134. "__type__": "cc.Quat",
  135. "x": 0,
  136. "y": 0,
  137. "z": 0,
  138. "w": 1
  139. },
  140. "_lscale": {
  141. "__type__": "cc.Vec3",
  142. "x": 1,
  143. "y": 1,
  144. "z": 1
  145. },
  146. "_mobility": 0,
  147. "_layer": 1073741824,
  148. "_euler": {
  149. "__type__": "cc.Vec3",
  150. "x": 0,
  151. "y": 0,
  152. "z": 0
  153. },
  154. "_id": "8cAyJzNAZHJbkH4XEbOI37"
  155. },
  156. {
  157. "__type__": "608ccBwdPhH27YwkGx6eB4W",
  158. "_name": "",
  159. "_objFlags": 0,
  160. "node": {
  161. "__id__": 3
  162. },
  163. "_enabled": true,
  164. "__prefab": null,
  165. "uiManager": {
  166. "__id__": 5
  167. },
  168. "IsDevelop": false,
  169. "_id": "eaee6n+WZIjL6CnUDoGtS2"
  170. },
  171. {
  172. "__type__": "00928M5DoFC+JGefNfQ7Xvc",
  173. "_name": "",
  174. "_objFlags": 0,
  175. "node": {
  176. "__id__": 6
  177. },
  178. "_enabled": true,
  179. "__prefab": null,
  180. "fullRoot": {
  181. "__id__": 186
  182. },
  183. "scoreLabel2": {
  184. "__id__": 191
  185. },
  186. "timeLabel2": {
  187. "__id__": 200
  188. },
  189. "levelLabel2": {
  190. "__id__": 209
  191. },
  192. "gameEndTip": {
  193. "__id__": 134
  194. },
  195. "GameMain": {
  196. "__id__": 17
  197. },
  198. "_id": "70XLo86IdHrI5/VwBEXHwY"
  199. },
  200. {
  201. "__type__": "cc.Node",
  202. "_name": "GameMainPanel",
  203. "_objFlags": 0,
  204. "_parent": {
  205. "__id__": 7
  206. },
  207. "_children": [
  208. {
  209. "__id__": 14
  210. },
  211. {
  212. "__id__": 134
  213. },
  214. {
  215. "__id__": 174
  216. },
  217. {
  218. "__id__": 186
  219. }
  220. ],
  221. "_active": true,
  222. "_components": [
  223. {
  224. "__id__": 215
  225. },
  226. {
  227. "__id__": 216
  228. },
  229. {
  230. "__id__": 5
  231. }
  232. ],
  233. "_prefab": null,
  234. "_lpos": {
  235. "__type__": "cc.Vec3",
  236. "x": 0,
  237. "y": 0,
  238. "z": 0
  239. },
  240. "_lrot": {
  241. "__type__": "cc.Quat",
  242. "x": 0,
  243. "y": 0,
  244. "z": 0,
  245. "w": 1
  246. },
  247. "_lscale": {
  248. "__type__": "cc.Vec3",
  249. "x": 0.845,
  250. "y": 0.845,
  251. "z": 1
  252. },
  253. "_mobility": 0,
  254. "_layer": 33554432,
  255. "_euler": {
  256. "__type__": "cc.Vec3",
  257. "x": 0,
  258. "y": 0,
  259. "z": 0
  260. },
  261. "_id": "1bez9Ign9FoKv1lpVS5Rjb"
  262. },
  263. {
  264. "__type__": "cc.Node",
  265. "_name": "Canvas",
  266. "_objFlags": 0,
  267. "_parent": {
  268. "__id__": 1
  269. },
  270. "_children": [
  271. {
  272. "__id__": 8
  273. },
  274. {
  275. "__id__": 6
  276. }
  277. ],
  278. "_active": true,
  279. "_components": [
  280. {
  281. "__id__": 10
  282. },
  283. {
  284. "__id__": 11
  285. },
  286. {
  287. "__id__": 12
  288. },
  289. {
  290. "__id__": 13
  291. }
  292. ],
  293. "_prefab": null,
  294. "_lpos": {
  295. "__type__": "cc.Vec3",
  296. "x": 1000,
  297. "y": 599.9999999999998,
  298. "z": 0
  299. },
  300. "_lrot": {
  301. "__type__": "cc.Quat",
  302. "x": 0,
  303. "y": 0,
  304. "z": 0,
  305. "w": 1
  306. },
  307. "_lscale": {
  308. "__type__": "cc.Vec3",
  309. "x": 1,
  310. "y": 1,
  311. "z": 1
  312. },
  313. "_mobility": 0,
  314. "_layer": 33554432,
  315. "_euler": {
  316. "__type__": "cc.Vec3",
  317. "x": 0,
  318. "y": 0,
  319. "z": 0
  320. },
  321. "_id": "beI88Z2HpFELqR4T5EMHpg"
  322. },
  323. {
  324. "__type__": "cc.Node",
  325. "_name": "Camera",
  326. "_objFlags": 0,
  327. "_parent": {
  328. "__id__": 7
  329. },
  330. "_children": [],
  331. "_active": true,
  332. "_components": [
  333. {
  334. "__id__": 9
  335. }
  336. ],
  337. "_prefab": null,
  338. "_lpos": {
  339. "__type__": "cc.Vec3",
  340. "x": 0,
  341. "y": 0,
  342. "z": 1000
  343. },
  344. "_lrot": {
  345. "__type__": "cc.Quat",
  346. "x": 0,
  347. "y": 0,
  348. "z": 0,
  349. "w": 1
  350. },
  351. "_lscale": {
  352. "__type__": "cc.Vec3",
  353. "x": 1,
  354. "y": 1,
  355. "z": 1
  356. },
  357. "_mobility": 0,
  358. "_layer": 1073741824,
  359. "_euler": {
  360. "__type__": "cc.Vec3",
  361. "x": 0,
  362. "y": 0,
  363. "z": 0
  364. },
  365. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  366. },
  367. {
  368. "__type__": "cc.Camera",
  369. "_name": "",
  370. "_objFlags": 0,
  371. "node": {
  372. "__id__": 8
  373. },
  374. "_enabled": true,
  375. "__prefab": null,
  376. "_projection": 0,
  377. "_priority": 1073741824,
  378. "_fov": 45,
  379. "_fovAxis": 0,
  380. "_orthoHeight": 600,
  381. "_near": 0,
  382. "_far": 2000,
  383. "_color": {
  384. "__type__": "cc.Color",
  385. "r": 0,
  386. "g": 0,
  387. "b": 0,
  388. "a": 255
  389. },
  390. "_depth": 1,
  391. "_stencil": 0,
  392. "_clearFlags": 6,
  393. "_rect": {
  394. "__type__": "cc.Rect",
  395. "x": 0,
  396. "y": 0,
  397. "width": 1,
  398. "height": 1
  399. },
  400. "_aperture": 19,
  401. "_shutter": 7,
  402. "_iso": 0,
  403. "_screenScale": 1,
  404. "_visibility": 41943040,
  405. "_targetTexture": null,
  406. "_cameraType": -1,
  407. "_trackingType": 0,
  408. "_id": "63WIch3o5BEYRlXzTT0oWc"
  409. },
  410. {
  411. "__type__": "cc.UITransform",
  412. "_name": "",
  413. "_objFlags": 0,
  414. "node": {
  415. "__id__": 7
  416. },
  417. "_enabled": true,
  418. "__prefab": null,
  419. "_contentSize": {
  420. "__type__": "cc.Size",
  421. "width": 2000,
  422. "height": 1200
  423. },
  424. "_anchorPoint": {
  425. "__type__": "cc.Vec2",
  426. "x": 0.5,
  427. "y": 0.5
  428. },
  429. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  430. },
  431. {
  432. "__type__": "cc.Canvas",
  433. "_name": "",
  434. "_objFlags": 0,
  435. "node": {
  436. "__id__": 7
  437. },
  438. "_enabled": true,
  439. "__prefab": null,
  440. "_cameraComponent": {
  441. "__id__": 9
  442. },
  443. "_alignCanvasWithScreen": true,
  444. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  445. },
  446. {
  447. "__type__": "cc.Widget",
  448. "_name": "",
  449. "_objFlags": 0,
  450. "node": {
  451. "__id__": 7
  452. },
  453. "_enabled": true,
  454. "__prefab": null,
  455. "_alignFlags": 45,
  456. "_target": null,
  457. "_left": -5.684341886080802e-14,
  458. "_right": -5.684341886080802e-14,
  459. "_top": 1.7053025658242404e-13,
  460. "_bottom": -2.8421709430404007e-13,
  461. "_horizontalCenter": 0,
  462. "_verticalCenter": 0,
  463. "_isAbsLeft": true,
  464. "_isAbsRight": true,
  465. "_isAbsTop": true,
  466. "_isAbsBottom": true,
  467. "_isAbsHorizontalCenter": true,
  468. "_isAbsVerticalCenter": true,
  469. "_originalWidth": 0,
  470. "_originalHeight": 0,
  471. "_alignMode": 2,
  472. "_lockFlags": 0,
  473. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  474. },
  475. {
  476. "__type__": "cc.AudioSource",
  477. "_name": "",
  478. "_objFlags": 0,
  479. "node": {
  480. "__id__": 7
  481. },
  482. "_enabled": true,
  483. "__prefab": null,
  484. "_clip": null,
  485. "_loop": false,
  486. "_playOnAwake": true,
  487. "_volume": 1,
  488. "_id": "94YYj+uIpDSqBYRX/Jt7HQ"
  489. },
  490. {
  491. "__type__": "cc.Node",
  492. "_name": "GameRoot",
  493. "_objFlags": 0,
  494. "_parent": {
  495. "__id__": 6
  496. },
  497. "_children": [
  498. {
  499. "__id__": 15
  500. }
  501. ],
  502. "_active": true,
  503. "_components": [
  504. {
  505. "__id__": 132
  506. },
  507. {
  508. "__id__": 133
  509. }
  510. ],
  511. "_prefab": null,
  512. "_lpos": {
  513. "__type__": "cc.Vec3",
  514. "x": 0,
  515. "y": 0,
  516. "z": 0
  517. },
  518. "_lrot": {
  519. "__type__": "cc.Quat",
  520. "x": 0,
  521. "y": 0,
  522. "z": 0,
  523. "w": 1
  524. },
  525. "_lscale": {
  526. "__type__": "cc.Vec3",
  527. "x": 1,
  528. "y": 1,
  529. "z": 1
  530. },
  531. "_mobility": 0,
  532. "_layer": 33554432,
  533. "_euler": {
  534. "__type__": "cc.Vec3",
  535. "x": 0,
  536. "y": 0,
  537. "z": 0
  538. },
  539. "_id": "f2FXLyK6xODqM9j6JFtAfH"
  540. },
  541. {
  542. "__type__": "cc.Node",
  543. "_name": "Game",
  544. "_objFlags": 0,
  545. "_parent": {
  546. "__id__": 14
  547. },
  548. "_children": [
  549. {
  550. "__id__": 16
  551. }
  552. ],
  553. "_active": true,
  554. "_components": [
  555. {
  556. "__id__": 129
  557. },
  558. {
  559. "__id__": 130
  560. },
  561. {
  562. "__id__": 131
  563. }
  564. ],
  565. "_prefab": null,
  566. "_lpos": {
  567. "__type__": "cc.Vec3",
  568. "x": 0,
  569. "y": 0,
  570. "z": 0
  571. },
  572. "_lrot": {
  573. "__type__": "cc.Quat",
  574. "x": 0,
  575. "y": 0,
  576. "z": 0,
  577. "w": 1
  578. },
  579. "_lscale": {
  580. "__type__": "cc.Vec3",
  581. "x": 1,
  582. "y": 1,
  583. "z": -0.442
  584. },
  585. "_mobility": 0,
  586. "_layer": 33554432,
  587. "_euler": {
  588. "__type__": "cc.Vec3",
  589. "x": 0,
  590. "y": 0,
  591. "z": 0
  592. },
  593. "_id": "5bG8f/QC9FJ6xJvEz7SzxC"
  594. },
  595. {
  596. "__type__": "cc.Node",
  597. "_name": "GameBg",
  598. "_objFlags": 0,
  599. "_parent": {
  600. "__id__": 15
  601. },
  602. "_children": [
  603. {
  604. "__id__": 17
  605. }
  606. ],
  607. "_active": true,
  608. "_components": [
  609. {
  610. "__id__": 126
  611. },
  612. {
  613. "__id__": 127
  614. },
  615. {
  616. "__id__": 128
  617. }
  618. ],
  619. "_prefab": null,
  620. "_lpos": {
  621. "__type__": "cc.Vec3",
  622. "x": 0,
  623. "y": 0,
  624. "z": 0
  625. },
  626. "_lrot": {
  627. "__type__": "cc.Quat",
  628. "x": 0,
  629. "y": 0,
  630. "z": 0,
  631. "w": 1
  632. },
  633. "_lscale": {
  634. "__type__": "cc.Vec3",
  635. "x": 1,
  636. "y": 1,
  637. "z": 1
  638. },
  639. "_mobility": 0,
  640. "_layer": 33554432,
  641. "_euler": {
  642. "__type__": "cc.Vec3",
  643. "x": 0,
  644. "y": 0,
  645. "z": 0
  646. },
  647. "_id": "52hO988fRBiodPLougtdHh"
  648. },
  649. {
  650. "__type__": "cc.Node",
  651. "_name": "GameMain",
  652. "_objFlags": 0,
  653. "__editorExtras__": {},
  654. "_parent": {
  655. "__id__": 16
  656. },
  657. "_children": [
  658. {
  659. "__id__": 18
  660. },
  661. {
  662. "__id__": 21
  663. },
  664. {
  665. "__id__": 30
  666. },
  667. {
  668. "__id__": 95
  669. },
  670. {
  671. "__id__": 102
  672. },
  673. {
  674. "__id__": 109
  675. },
  676. {
  677. "__id__": 116
  678. }
  679. ],
  680. "_active": true,
  681. "_components": [
  682. {
  683. "__id__": 125
  684. },
  685. {
  686. "__id__": 75
  687. }
  688. ],
  689. "_prefab": null,
  690. "_lpos": {
  691. "__type__": "cc.Vec3",
  692. "x": 20.15000000000009,
  693. "y": 2.841000000000008,
  694. "z": 0
  695. },
  696. "_lrot": {
  697. "__type__": "cc.Quat",
  698. "x": 0,
  699. "y": 0,
  700. "z": 0,
  701. "w": 1
  702. },
  703. "_lscale": {
  704. "__type__": "cc.Vec3",
  705. "x": 2.1,
  706. "y": 2.1,
  707. "z": 1
  708. },
  709. "_mobility": 0,
  710. "_layer": 33554432,
  711. "_euler": {
  712. "__type__": "cc.Vec3",
  713. "x": 0,
  714. "y": 0,
  715. "z": 0
  716. },
  717. "_id": "c55weXU8BFspHcy1HhpSvk"
  718. },
  719. {
  720. "__type__": "cc.Node",
  721. "_name": "Sprite",
  722. "_objFlags": 0,
  723. "_parent": {
  724. "__id__": 17
  725. },
  726. "_children": [],
  727. "_active": false,
  728. "_components": [
  729. {
  730. "__id__": 19
  731. },
  732. {
  733. "__id__": 20
  734. }
  735. ],
  736. "_prefab": null,
  737. "_lpos": {
  738. "__type__": "cc.Vec3",
  739. "x": 0,
  740. "y": 0,
  741. "z": 0
  742. },
  743. "_lrot": {
  744. "__type__": "cc.Quat",
  745. "x": 0,
  746. "y": 0,
  747. "z": 0,
  748. "w": 1
  749. },
  750. "_lscale": {
  751. "__type__": "cc.Vec3",
  752. "x": 1,
  753. "y": 1,
  754. "z": 1
  755. },
  756. "_mobility": 0,
  757. "_layer": 33554432,
  758. "_euler": {
  759. "__type__": "cc.Vec3",
  760. "x": 0,
  761. "y": 0,
  762. "z": 0
  763. },
  764. "_id": "2dhKUjI8RAsKozkSGEIk5C"
  765. },
  766. {
  767. "__type__": "cc.UITransform",
  768. "_name": "",
  769. "_objFlags": 0,
  770. "node": {
  771. "__id__": 18
  772. },
  773. "_enabled": true,
  774. "__prefab": null,
  775. "_contentSize": {
  776. "__type__": "cc.Size",
  777. "width": 1194,
  778. "height": 834
  779. },
  780. "_anchorPoint": {
  781. "__type__": "cc.Vec2",
  782. "x": 0.5,
  783. "y": 0.5
  784. },
  785. "_id": "70SDIQR0tA8obn7n0fXsEW"
  786. },
  787. {
  788. "__type__": "cc.Sprite",
  789. "_name": "",
  790. "_objFlags": 0,
  791. "node": {
  792. "__id__": 18
  793. },
  794. "_enabled": true,
  795. "__prefab": null,
  796. "_customMaterial": null,
  797. "_srcBlendFactor": 2,
  798. "_dstBlendFactor": 4,
  799. "_color": {
  800. "__type__": "cc.Color",
  801. "r": 255,
  802. "g": 255,
  803. "b": 255,
  804. "a": 255
  805. },
  806. "_spriteFrame": {
  807. "__uuid__": "bd3fe0af-5d91-41d7-8389-721992986d7e@f9941",
  808. "__expectedType__": "cc.SpriteFrame"
  809. },
  810. "_type": 0,
  811. "_fillType": 0,
  812. "_sizeMode": 0,
  813. "_fillCenter": {
  814. "__type__": "cc.Vec2",
  815. "x": 0,
  816. "y": 0
  817. },
  818. "_fillStart": 0,
  819. "_fillRange": 0,
  820. "_isTrimmedMode": true,
  821. "_useGrayscale": false,
  822. "_atlas": null,
  823. "_id": "f5Ibt1eiZBFLMXvdBVmjht"
  824. },
  825. {
  826. "__type__": "cc.Node",
  827. "_name": "Sprite-001",
  828. "_objFlags": 0,
  829. "_parent": {
  830. "__id__": 17
  831. },
  832. "_children": [
  833. {
  834. "__id__": 22
  835. },
  836. {
  837. "__id__": 25
  838. }
  839. ],
  840. "_active": false,
  841. "_components": [
  842. {
  843. "__id__": 28
  844. },
  845. {
  846. "__id__": 29
  847. }
  848. ],
  849. "_prefab": null,
  850. "_lpos": {
  851. "__type__": "cc.Vec3",
  852. "x": 0,
  853. "y": 49.62166666666666,
  854. "z": 0
  855. },
  856. "_lrot": {
  857. "__type__": "cc.Quat",
  858. "x": 0,
  859. "y": 0,
  860. "z": 0,
  861. "w": 1
  862. },
  863. "_lscale": {
  864. "__type__": "cc.Vec3",
  865. "x": 1,
  866. "y": 1,
  867. "z": 1
  868. },
  869. "_mobility": 0,
  870. "_layer": 33554432,
  871. "_euler": {
  872. "__type__": "cc.Vec3",
  873. "x": 0,
  874. "y": 0,
  875. "z": 0
  876. },
  877. "_id": "cdX1NiSY1CfbpHVT0U8BVy"
  878. },
  879. {
  880. "__type__": "cc.Node",
  881. "_name": "Sprite",
  882. "_objFlags": 0,
  883. "_parent": {
  884. "__id__": 21
  885. },
  886. "_children": [],
  887. "_active": false,
  888. "_components": [
  889. {
  890. "__id__": 23
  891. },
  892. {
  893. "__id__": 24
  894. }
  895. ],
  896. "_prefab": null,
  897. "_lpos": {
  898. "__type__": "cc.Vec3",
  899. "x": 0,
  900. "y": -145.58,
  901. "z": 0
  902. },
  903. "_lrot": {
  904. "__type__": "cc.Quat",
  905. "x": 0,
  906. "y": 0,
  907. "z": 0,
  908. "w": 1
  909. },
  910. "_lscale": {
  911. "__type__": "cc.Vec3",
  912. "x": 1,
  913. "y": 1,
  914. "z": 1
  915. },
  916. "_mobility": 0,
  917. "_layer": 33554432,
  918. "_euler": {
  919. "__type__": "cc.Vec3",
  920. "x": 0,
  921. "y": 0,
  922. "z": 0
  923. },
  924. "_id": "9cN/f1HCZG5aPaP0LsXSpc"
  925. },
  926. {
  927. "__type__": "cc.UITransform",
  928. "_name": "",
  929. "_objFlags": 0,
  930. "node": {
  931. "__id__": 22
  932. },
  933. "_enabled": true,
  934. "__prefab": null,
  935. "_contentSize": {
  936. "__type__": "cc.Size",
  937. "width": 417,
  938. "height": 56
  939. },
  940. "_anchorPoint": {
  941. "__type__": "cc.Vec2",
  942. "x": 0.5,
  943. "y": 0.5
  944. },
  945. "_id": "0cCJL/hM1A8Jn1VreqtIiS"
  946. },
  947. {
  948. "__type__": "cc.Sprite",
  949. "_name": "",
  950. "_objFlags": 0,
  951. "node": {
  952. "__id__": 22
  953. },
  954. "_enabled": true,
  955. "__prefab": null,
  956. "_customMaterial": null,
  957. "_srcBlendFactor": 2,
  958. "_dstBlendFactor": 4,
  959. "_color": {
  960. "__type__": "cc.Color",
  961. "r": 255,
  962. "g": 255,
  963. "b": 255,
  964. "a": 255
  965. },
  966. "_spriteFrame": {
  967. "__uuid__": "a42ab36d-802b-43d2-b648-1a2650853eef@f9941",
  968. "__expectedType__": "cc.SpriteFrame"
  969. },
  970. "_type": 0,
  971. "_fillType": 0,
  972. "_sizeMode": 1,
  973. "_fillCenter": {
  974. "__type__": "cc.Vec2",
  975. "x": 0,
  976. "y": 0
  977. },
  978. "_fillStart": 0,
  979. "_fillRange": 0,
  980. "_isTrimmedMode": true,
  981. "_useGrayscale": false,
  982. "_atlas": null,
  983. "_id": "21kDOIe2hNlKWXrROubKEk"
  984. },
  985. {
  986. "__type__": "cc.Node",
  987. "_name": "Sprite-001",
  988. "_objFlags": 0,
  989. "_parent": {
  990. "__id__": 21
  991. },
  992. "_children": [],
  993. "_active": false,
  994. "_components": [
  995. {
  996. "__id__": 26
  997. },
  998. {
  999. "__id__": 27
  1000. }
  1001. ],
  1002. "_prefab": null,
  1003. "_lpos": {
  1004. "__type__": "cc.Vec3",
  1005. "x": -471.766,
  1006. "y": -178.014,
  1007. "z": 0
  1008. },
  1009. "_lrot": {
  1010. "__type__": "cc.Quat",
  1011. "x": 0,
  1012. "y": 0,
  1013. "z": 0,
  1014. "w": 1
  1015. },
  1016. "_lscale": {
  1017. "__type__": "cc.Vec3",
  1018. "x": 0.5,
  1019. "y": 0.5,
  1020. "z": 1
  1021. },
  1022. "_mobility": 0,
  1023. "_layer": 33554432,
  1024. "_euler": {
  1025. "__type__": "cc.Vec3",
  1026. "x": 0,
  1027. "y": 0,
  1028. "z": 0
  1029. },
  1030. "_id": "539AUyyaxKL7/0m8B3VwC+"
  1031. },
  1032. {
  1033. "__type__": "cc.UITransform",
  1034. "_name": "",
  1035. "_objFlags": 0,
  1036. "node": {
  1037. "__id__": 25
  1038. },
  1039. "_enabled": true,
  1040. "__prefab": null,
  1041. "_contentSize": {
  1042. "__type__": "cc.Size",
  1043. "width": 351,
  1044. "height": 578
  1045. },
  1046. "_anchorPoint": {
  1047. "__type__": "cc.Vec2",
  1048. "x": 0.5,
  1049. "y": 0.5
  1050. },
  1051. "_id": "9aTOkS5uhIUKibJtadv1Ry"
  1052. },
  1053. {
  1054. "__type__": "cc.Sprite",
  1055. "_name": "",
  1056. "_objFlags": 0,
  1057. "node": {
  1058. "__id__": 25
  1059. },
  1060. "_enabled": true,
  1061. "__prefab": null,
  1062. "_customMaterial": null,
  1063. "_srcBlendFactor": 2,
  1064. "_dstBlendFactor": 4,
  1065. "_color": {
  1066. "__type__": "cc.Color",
  1067. "r": 255,
  1068. "g": 255,
  1069. "b": 255,
  1070. "a": 255
  1071. },
  1072. "_spriteFrame": {
  1073. "__uuid__": "61246584-a8a9-4604-9da1-e03c9026bacc@f9941",
  1074. "__expectedType__": "cc.SpriteFrame"
  1075. },
  1076. "_type": 0,
  1077. "_fillType": 0,
  1078. "_sizeMode": 1,
  1079. "_fillCenter": {
  1080. "__type__": "cc.Vec2",
  1081. "x": 0,
  1082. "y": 0
  1083. },
  1084. "_fillStart": 0,
  1085. "_fillRange": 0,
  1086. "_isTrimmedMode": true,
  1087. "_useGrayscale": false,
  1088. "_atlas": null,
  1089. "_id": "fcFqJNJd1MGqY4D5iXW6vu"
  1090. },
  1091. {
  1092. "__type__": "cc.UITransform",
  1093. "_name": "",
  1094. "_objFlags": 0,
  1095. "node": {
  1096. "__id__": 21
  1097. },
  1098. "_enabled": true,
  1099. "__prefab": null,
  1100. "_contentSize": {
  1101. "__type__": "cc.Size",
  1102. "width": 745,
  1103. "height": 546.7566666666667
  1104. },
  1105. "_anchorPoint": {
  1106. "__type__": "cc.Vec2",
  1107. "x": 0.5,
  1108. "y": 0.5
  1109. },
  1110. "_id": "a7/W1p9BhGuZPemHnzxOGy"
  1111. },
  1112. {
  1113. "__type__": "cc.Sprite",
  1114. "_name": "",
  1115. "_objFlags": 0,
  1116. "node": {
  1117. "__id__": 21
  1118. },
  1119. "_enabled": true,
  1120. "__prefab": null,
  1121. "_customMaterial": null,
  1122. "_srcBlendFactor": 2,
  1123. "_dstBlendFactor": 4,
  1124. "_color": {
  1125. "__type__": "cc.Color",
  1126. "r": 255,
  1127. "g": 255,
  1128. "b": 255,
  1129. "a": 255
  1130. },
  1131. "_spriteFrame": {
  1132. "__uuid__": "6ef8eee5-1154-4b28-b2e8-0dc0e87d1ebf@f9941",
  1133. "__expectedType__": "cc.SpriteFrame"
  1134. },
  1135. "_type": 0,
  1136. "_fillType": 0,
  1137. "_sizeMode": 0,
  1138. "_fillCenter": {
  1139. "__type__": "cc.Vec2",
  1140. "x": 0,
  1141. "y": 0
  1142. },
  1143. "_fillStart": 0,
  1144. "_fillRange": 0,
  1145. "_isTrimmedMode": true,
  1146. "_useGrayscale": false,
  1147. "_atlas": null,
  1148. "_id": "28h0eEAoVNbKSW1By2jrVr"
  1149. },
  1150. {
  1151. "__type__": "cc.Node",
  1152. "_name": "Mask",
  1153. "_objFlags": 0,
  1154. "_parent": {
  1155. "__id__": 17
  1156. },
  1157. "_children": [
  1158. {
  1159. "__id__": 31
  1160. },
  1161. {
  1162. "__id__": 38
  1163. },
  1164. {
  1165. "__id__": 45
  1166. },
  1167. {
  1168. "__id__": 52
  1169. },
  1170. {
  1171. "__id__": 59
  1172. },
  1173. {
  1174. "__id__": 64
  1175. },
  1176. {
  1177. "__id__": 69
  1178. },
  1179. {
  1180. "__id__": 76
  1181. },
  1182. {
  1183. "__id__": 82
  1184. },
  1185. {
  1186. "__id__": 88
  1187. }
  1188. ],
  1189. "_active": true,
  1190. "_components": [
  1191. {
  1192. "__id__": 122
  1193. },
  1194. {
  1195. "__id__": 123
  1196. },
  1197. {
  1198. "__id__": 124
  1199. }
  1200. ],
  1201. "_prefab": null,
  1202. "_lpos": {
  1203. "__type__": "cc.Vec3",
  1204. "x": 0,
  1205. "y": 0,
  1206. "z": 0
  1207. },
  1208. "_lrot": {
  1209. "__type__": "cc.Quat",
  1210. "x": 0,
  1211. "y": 0,
  1212. "z": 0,
  1213. "w": 1
  1214. },
  1215. "_lscale": {
  1216. "__type__": "cc.Vec3",
  1217. "x": 1,
  1218. "y": 1,
  1219. "z": 1
  1220. },
  1221. "_mobility": 0,
  1222. "_layer": 33554432,
  1223. "_euler": {
  1224. "__type__": "cc.Vec3",
  1225. "x": 0,
  1226. "y": 0,
  1227. "z": 0
  1228. },
  1229. "_id": "b2wiWE0dJI9oyCEiciNl2C"
  1230. },
  1231. {
  1232. "__type__": "cc.Node",
  1233. "_name": "pipe_parent",
  1234. "_objFlags": 0,
  1235. "_parent": {
  1236. "__id__": 30
  1237. },
  1238. "_children": [
  1239. {
  1240. "__id__": 32
  1241. }
  1242. ],
  1243. "_active": true,
  1244. "_components": [
  1245. {
  1246. "__id__": 37
  1247. }
  1248. ],
  1249. "_prefab": null,
  1250. "_lpos": {
  1251. "__type__": "cc.Vec3",
  1252. "x": 0,
  1253. "y": 0,
  1254. "z": 0
  1255. },
  1256. "_lrot": {
  1257. "__type__": "cc.Quat",
  1258. "x": 0,
  1259. "y": 0,
  1260. "z": 0,
  1261. "w": 1
  1262. },
  1263. "_lscale": {
  1264. "__type__": "cc.Vec3",
  1265. "x": 1,
  1266. "y": 1,
  1267. "z": 1
  1268. },
  1269. "_mobility": 0,
  1270. "_layer": 33554432,
  1271. "_euler": {
  1272. "__type__": "cc.Vec3",
  1273. "x": 0,
  1274. "y": 0,
  1275. "z": 0
  1276. },
  1277. "_id": "f4GZ0I1zVBz4ogG9wnbtO4"
  1278. },
  1279. {
  1280. "__type__": "cc.Node",
  1281. "_name": "pipeUp",
  1282. "_objFlags": 0,
  1283. "_parent": {
  1284. "__id__": 31
  1285. },
  1286. "_children": [],
  1287. "_active": true,
  1288. "_components": [
  1289. {
  1290. "__id__": 33
  1291. },
  1292. {
  1293. "__id__": 34
  1294. },
  1295. {
  1296. "__id__": 35
  1297. },
  1298. {
  1299. "__id__": 36
  1300. }
  1301. ],
  1302. "_prefab": null,
  1303. "_lpos": {
  1304. "__type__": "cc.Vec3",
  1305. "x": 175.573,
  1306. "y": 210,
  1307. "z": 0
  1308. },
  1309. "_lrot": {
  1310. "__type__": "cc.Quat",
  1311. "x": 0,
  1312. "y": 0,
  1313. "z": 0,
  1314. "w": 1
  1315. },
  1316. "_lscale": {
  1317. "__type__": "cc.Vec3",
  1318. "x": 0.5,
  1319. "y": 0.5,
  1320. "z": 1
  1321. },
  1322. "_mobility": 0,
  1323. "_layer": 33554432,
  1324. "_euler": {
  1325. "__type__": "cc.Vec3",
  1326. "x": 0,
  1327. "y": 0,
  1328. "z": 0
  1329. },
  1330. "_id": "7f3lerKuVO27/qnoz72j+v"
  1331. },
  1332. {
  1333. "__type__": "cc.UITransform",
  1334. "_name": "",
  1335. "_objFlags": 0,
  1336. "node": {
  1337. "__id__": 32
  1338. },
  1339. "_enabled": true,
  1340. "__prefab": null,
  1341. "_contentSize": {
  1342. "__type__": "cc.Size",
  1343. "width": 43,
  1344. "height": 231
  1345. },
  1346. "_anchorPoint": {
  1347. "__type__": "cc.Vec2",
  1348. "x": 0.5,
  1349. "y": 0.5
  1350. },
  1351. "_id": "b5ePnwZfhJ0JUh1NIhpbTK"
  1352. },
  1353. {
  1354. "__type__": "cc.Sprite",
  1355. "_name": "",
  1356. "_objFlags": 0,
  1357. "node": {
  1358. "__id__": 32
  1359. },
  1360. "_enabled": true,
  1361. "__prefab": null,
  1362. "_customMaterial": null,
  1363. "_srcBlendFactor": 2,
  1364. "_dstBlendFactor": 4,
  1365. "_color": {
  1366. "__type__": "cc.Color",
  1367. "r": 255,
  1368. "g": 255,
  1369. "b": 255,
  1370. "a": 255
  1371. },
  1372. "_spriteFrame": {
  1373. "__uuid__": "37a57cec-d1fe-4064-8113-b68280bb0f15@f9941",
  1374. "__expectedType__": "cc.SpriteFrame"
  1375. },
  1376. "_type": 0,
  1377. "_fillType": 0,
  1378. "_sizeMode": 0,
  1379. "_fillCenter": {
  1380. "__type__": "cc.Vec2",
  1381. "x": 0,
  1382. "y": 0
  1383. },
  1384. "_fillStart": 0,
  1385. "_fillRange": 0,
  1386. "_isTrimmedMode": true,
  1387. "_useGrayscale": false,
  1388. "_atlas": null,
  1389. "_id": "c7cX5T6tZBnpS3DOVd6KOT"
  1390. },
  1391. {
  1392. "__type__": "cc.BoxCollider2D",
  1393. "_name": "",
  1394. "_objFlags": 0,
  1395. "node": {
  1396. "__id__": 32
  1397. },
  1398. "_enabled": true,
  1399. "__prefab": null,
  1400. "tag": 0,
  1401. "_group": 1,
  1402. "_density": 1,
  1403. "_sensor": false,
  1404. "_friction": 0.2,
  1405. "_restitution": 0,
  1406. "_offset": {
  1407. "__type__": "cc.Vec2",
  1408. "x": -3.3,
  1409. "y": -3.3
  1410. },
  1411. "_size": {
  1412. "__type__": "cc.Size",
  1413. "width": 39,
  1414. "height": 127.5
  1415. },
  1416. "_id": "4fm/9bKj1KBpO2LCeq1O01"
  1417. },
  1418. {
  1419. "__type__": "cc.RigidBody2D",
  1420. "_name": "",
  1421. "_objFlags": 0,
  1422. "node": {
  1423. "__id__": 32
  1424. },
  1425. "_enabled": true,
  1426. "__prefab": null,
  1427. "enabledContactListener": true,
  1428. "bullet": false,
  1429. "awakeOnLoad": true,
  1430. "_group": 1,
  1431. "_type": 0,
  1432. "_allowSleep": true,
  1433. "_gravityScale": 1,
  1434. "_linearDamping": 0,
  1435. "_angularDamping": 0,
  1436. "_linearVelocity": {
  1437. "__type__": "cc.Vec2",
  1438. "x": 0,
  1439. "y": 0
  1440. },
  1441. "_angularVelocity": 0,
  1442. "_fixedRotation": false,
  1443. "_id": "c47vZ2XCRJlL2+EQI8GE8/"
  1444. },
  1445. {
  1446. "__type__": "cc.UITransform",
  1447. "_name": "",
  1448. "_objFlags": 0,
  1449. "node": {
  1450. "__id__": 31
  1451. },
  1452. "_enabled": true,
  1453. "__prefab": null,
  1454. "_contentSize": {
  1455. "__type__": "cc.Size",
  1456. "width": 100,
  1457. "height": 100
  1458. },
  1459. "_anchorPoint": {
  1460. "__type__": "cc.Vec2",
  1461. "x": 0.5,
  1462. "y": 0.5
  1463. },
  1464. "_id": "25witPMDhNtaXoRcweEFoK"
  1465. },
  1466. {
  1467. "__type__": "cc.Node",
  1468. "_name": "pipe_parent",
  1469. "_objFlags": 0,
  1470. "_parent": {
  1471. "__id__": 30
  1472. },
  1473. "_children": [
  1474. {
  1475. "__id__": 39
  1476. }
  1477. ],
  1478. "_active": true,
  1479. "_components": [
  1480. {
  1481. "__id__": 44
  1482. }
  1483. ],
  1484. "_prefab": null,
  1485. "_lpos": {
  1486. "__type__": "cc.Vec3",
  1487. "x": 0,
  1488. "y": 0,
  1489. "z": 0
  1490. },
  1491. "_lrot": {
  1492. "__type__": "cc.Quat",
  1493. "x": 0,
  1494. "y": 0,
  1495. "z": 0,
  1496. "w": 1
  1497. },
  1498. "_lscale": {
  1499. "__type__": "cc.Vec3",
  1500. "x": 1,
  1501. "y": 1,
  1502. "z": 1
  1503. },
  1504. "_mobility": 0,
  1505. "_layer": 33554432,
  1506. "_euler": {
  1507. "__type__": "cc.Vec3",
  1508. "x": 0,
  1509. "y": 0,
  1510. "z": 0
  1511. },
  1512. "_id": "9cD2EXBhdFvZhrbiWFu8KN"
  1513. },
  1514. {
  1515. "__type__": "cc.Node",
  1516. "_name": "pipeUp",
  1517. "_objFlags": 0,
  1518. "_parent": {
  1519. "__id__": 38
  1520. },
  1521. "_children": [],
  1522. "_active": true,
  1523. "_components": [
  1524. {
  1525. "__id__": 40
  1526. },
  1527. {
  1528. "__id__": 41
  1529. },
  1530. {
  1531. "__id__": 42
  1532. },
  1533. {
  1534. "__id__": 43
  1535. }
  1536. ],
  1537. "_prefab": null,
  1538. "_lpos": {
  1539. "__type__": "cc.Vec3",
  1540. "x": 175,
  1541. "y": 91.656,
  1542. "z": 0
  1543. },
  1544. "_lrot": {
  1545. "__type__": "cc.Quat",
  1546. "x": 0,
  1547. "y": 0,
  1548. "z": 0,
  1549. "w": 1
  1550. },
  1551. "_lscale": {
  1552. "__type__": "cc.Vec3",
  1553. "x": 0.5,
  1554. "y": 0.5,
  1555. "z": 1
  1556. },
  1557. "_mobility": 0,
  1558. "_layer": 33554432,
  1559. "_euler": {
  1560. "__type__": "cc.Vec3",
  1561. "x": 0,
  1562. "y": 0,
  1563. "z": 0
  1564. },
  1565. "_id": "763A+QrxZKdJZ97atRn9Xe"
  1566. },
  1567. {
  1568. "__type__": "cc.UITransform",
  1569. "_name": "",
  1570. "_objFlags": 0,
  1571. "node": {
  1572. "__id__": 39
  1573. },
  1574. "_enabled": true,
  1575. "__prefab": null,
  1576. "_contentSize": {
  1577. "__type__": "cc.Size",
  1578. "width": 43,
  1579. "height": 231
  1580. },
  1581. "_anchorPoint": {
  1582. "__type__": "cc.Vec2",
  1583. "x": 0.5,
  1584. "y": 0.5
  1585. },
  1586. "_id": "29q6gHD31Cb6kEy+0FJ/0g"
  1587. },
  1588. {
  1589. "__type__": "cc.Sprite",
  1590. "_name": "",
  1591. "_objFlags": 0,
  1592. "node": {
  1593. "__id__": 39
  1594. },
  1595. "_enabled": true,
  1596. "__prefab": null,
  1597. "_customMaterial": null,
  1598. "_srcBlendFactor": 2,
  1599. "_dstBlendFactor": 4,
  1600. "_color": {
  1601. "__type__": "cc.Color",
  1602. "r": 255,
  1603. "g": 255,
  1604. "b": 255,
  1605. "a": 255
  1606. },
  1607. "_spriteFrame": {
  1608. "__uuid__": "445e0d9e-38d6-48ba-808a-0b6134920518@f9941",
  1609. "__expectedType__": "cc.SpriteFrame"
  1610. },
  1611. "_type": 0,
  1612. "_fillType": 0,
  1613. "_sizeMode": 0,
  1614. "_fillCenter": {
  1615. "__type__": "cc.Vec2",
  1616. "x": 0,
  1617. "y": 0
  1618. },
  1619. "_fillStart": 0,
  1620. "_fillRange": 0,
  1621. "_isTrimmedMode": true,
  1622. "_useGrayscale": false,
  1623. "_atlas": null,
  1624. "_id": "2e8usNo9FFv52xofHIGS6E"
  1625. },
  1626. {
  1627. "__type__": "cc.BoxCollider2D",
  1628. "_name": "",
  1629. "_objFlags": 0,
  1630. "node": {
  1631. "__id__": 39
  1632. },
  1633. "_enabled": true,
  1634. "__prefab": null,
  1635. "tag": 0,
  1636. "_group": 1,
  1637. "_density": 1,
  1638. "_sensor": false,
  1639. "_friction": 0.2,
  1640. "_restitution": 0,
  1641. "_offset": {
  1642. "__type__": "cc.Vec2",
  1643. "x": -3.3,
  1644. "y": -3.3
  1645. },
  1646. "_size": {
  1647. "__type__": "cc.Size",
  1648. "width": 68.6,
  1649. "height": 63
  1650. },
  1651. "_id": "23ugbD0xtHB7B59pSgI3Fw"
  1652. },
  1653. {
  1654. "__type__": "cc.RigidBody2D",
  1655. "_name": "",
  1656. "_objFlags": 0,
  1657. "node": {
  1658. "__id__": 39
  1659. },
  1660. "_enabled": true,
  1661. "__prefab": null,
  1662. "enabledContactListener": true,
  1663. "bullet": false,
  1664. "awakeOnLoad": true,
  1665. "_group": 1,
  1666. "_type": 0,
  1667. "_allowSleep": true,
  1668. "_gravityScale": 1,
  1669. "_linearDamping": 0,
  1670. "_angularDamping": 0,
  1671. "_linearVelocity": {
  1672. "__type__": "cc.Vec2",
  1673. "x": 0,
  1674. "y": 0
  1675. },
  1676. "_angularVelocity": 0,
  1677. "_fixedRotation": false,
  1678. "_id": "3aLKxGOypOS41LgAhOOb9O"
  1679. },
  1680. {
  1681. "__type__": "cc.UITransform",
  1682. "_name": "",
  1683. "_objFlags": 0,
  1684. "node": {
  1685. "__id__": 38
  1686. },
  1687. "_enabled": true,
  1688. "__prefab": null,
  1689. "_contentSize": {
  1690. "__type__": "cc.Size",
  1691. "width": 100,
  1692. "height": 100
  1693. },
  1694. "_anchorPoint": {
  1695. "__type__": "cc.Vec2",
  1696. "x": 0.5,
  1697. "y": 0.5
  1698. },
  1699. "_id": "b1FA9k7KROWZE8BrDqFHwY"
  1700. },
  1701. {
  1702. "__type__": "cc.Node",
  1703. "_name": "pipe_parent",
  1704. "_objFlags": 0,
  1705. "_parent": {
  1706. "__id__": 30
  1707. },
  1708. "_children": [
  1709. {
  1710. "__id__": 46
  1711. }
  1712. ],
  1713. "_active": true,
  1714. "_components": [
  1715. {
  1716. "__id__": 51
  1717. }
  1718. ],
  1719. "_prefab": null,
  1720. "_lpos": {
  1721. "__type__": "cc.Vec3",
  1722. "x": 0,
  1723. "y": 0,
  1724. "z": 0
  1725. },
  1726. "_lrot": {
  1727. "__type__": "cc.Quat",
  1728. "x": 0,
  1729. "y": 0,
  1730. "z": 0,
  1731. "w": 1
  1732. },
  1733. "_lscale": {
  1734. "__type__": "cc.Vec3",
  1735. "x": 1,
  1736. "y": 1,
  1737. "z": 1
  1738. },
  1739. "_mobility": 0,
  1740. "_layer": 33554432,
  1741. "_euler": {
  1742. "__type__": "cc.Vec3",
  1743. "x": 0,
  1744. "y": 0,
  1745. "z": 0
  1746. },
  1747. "_id": "11fZkiuftHJLYctq8qvLfl"
  1748. },
  1749. {
  1750. "__type__": "cc.Node",
  1751. "_name": "pipeUp",
  1752. "_objFlags": 0,
  1753. "_parent": {
  1754. "__id__": 45
  1755. },
  1756. "_children": [],
  1757. "_active": true,
  1758. "_components": [
  1759. {
  1760. "__id__": 47
  1761. },
  1762. {
  1763. "__id__": 48
  1764. },
  1765. {
  1766. "__id__": 49
  1767. },
  1768. {
  1769. "__id__": 50
  1770. }
  1771. ],
  1772. "_prefab": null,
  1773. "_lpos": {
  1774. "__type__": "cc.Vec3",
  1775. "x": 176.689,
  1776. "y": -18.931,
  1777. "z": 0
  1778. },
  1779. "_lrot": {
  1780. "__type__": "cc.Quat",
  1781. "x": 0,
  1782. "y": 0,
  1783. "z": 0,
  1784. "w": 1
  1785. },
  1786. "_lscale": {
  1787. "__type__": "cc.Vec3",
  1788. "x": 0.5,
  1789. "y": 0.5,
  1790. "z": 1
  1791. },
  1792. "_mobility": 0,
  1793. "_layer": 33554432,
  1794. "_euler": {
  1795. "__type__": "cc.Vec3",
  1796. "x": 0,
  1797. "y": 0,
  1798. "z": 0
  1799. },
  1800. "_id": "58GgODV45JrZ94c+SmjBVB"
  1801. },
  1802. {
  1803. "__type__": "cc.UITransform",
  1804. "_name": "",
  1805. "_objFlags": 0,
  1806. "node": {
  1807. "__id__": 46
  1808. },
  1809. "_enabled": true,
  1810. "__prefab": null,
  1811. "_contentSize": {
  1812. "__type__": "cc.Size",
  1813. "width": 43,
  1814. "height": 231
  1815. },
  1816. "_anchorPoint": {
  1817. "__type__": "cc.Vec2",
  1818. "x": 0.5,
  1819. "y": 0.5
  1820. },
  1821. "_id": "ba88DF8AtHjqylggecirSM"
  1822. },
  1823. {
  1824. "__type__": "cc.Sprite",
  1825. "_name": "",
  1826. "_objFlags": 0,
  1827. "node": {
  1828. "__id__": 46
  1829. },
  1830. "_enabled": true,
  1831. "__prefab": null,
  1832. "_customMaterial": null,
  1833. "_srcBlendFactor": 2,
  1834. "_dstBlendFactor": 4,
  1835. "_color": {
  1836. "__type__": "cc.Color",
  1837. "r": 255,
  1838. "g": 255,
  1839. "b": 255,
  1840. "a": 255
  1841. },
  1842. "_spriteFrame": {
  1843. "__uuid__": "1eece037-3361-4a32-a940-9141bcab5d09@f9941",
  1844. "__expectedType__": "cc.SpriteFrame"
  1845. },
  1846. "_type": 0,
  1847. "_fillType": 0,
  1848. "_sizeMode": 0,
  1849. "_fillCenter": {
  1850. "__type__": "cc.Vec2",
  1851. "x": 0,
  1852. "y": 0
  1853. },
  1854. "_fillStart": 0,
  1855. "_fillRange": 0,
  1856. "_isTrimmedMode": true,
  1857. "_useGrayscale": false,
  1858. "_atlas": null,
  1859. "_id": "ee3QyVD9xHD75SfSiYEqMx"
  1860. },
  1861. {
  1862. "__type__": "cc.BoxCollider2D",
  1863. "_name": "",
  1864. "_objFlags": 0,
  1865. "node": {
  1866. "__id__": 46
  1867. },
  1868. "_enabled": true,
  1869. "__prefab": null,
  1870. "tag": 0,
  1871. "_group": 1,
  1872. "_density": 1,
  1873. "_sensor": false,
  1874. "_friction": 0.2,
  1875. "_restitution": 0,
  1876. "_offset": {
  1877. "__type__": "cc.Vec2",
  1878. "x": -3.3,
  1879. "y": -3.3
  1880. },
  1881. "_size": {
  1882. "__type__": "cc.Size",
  1883. "width": 43.5,
  1884. "height": 148.9
  1885. },
  1886. "_id": "58Kn3wccBOwLCJlg4FJNjQ"
  1887. },
  1888. {
  1889. "__type__": "cc.RigidBody2D",
  1890. "_name": "",
  1891. "_objFlags": 0,
  1892. "node": {
  1893. "__id__": 46
  1894. },
  1895. "_enabled": true,
  1896. "__prefab": null,
  1897. "enabledContactListener": true,
  1898. "bullet": false,
  1899. "awakeOnLoad": true,
  1900. "_group": 1,
  1901. "_type": 0,
  1902. "_allowSleep": true,
  1903. "_gravityScale": 1,
  1904. "_linearDamping": 0,
  1905. "_angularDamping": 0,
  1906. "_linearVelocity": {
  1907. "__type__": "cc.Vec2",
  1908. "x": 0,
  1909. "y": 0
  1910. },
  1911. "_angularVelocity": 0,
  1912. "_fixedRotation": false,
  1913. "_id": "40H7YqNz1BQaMlpTA0/5DM"
  1914. },
  1915. {
  1916. "__type__": "cc.UITransform",
  1917. "_name": "",
  1918. "_objFlags": 0,
  1919. "node": {
  1920. "__id__": 45
  1921. },
  1922. "_enabled": true,
  1923. "__prefab": null,
  1924. "_contentSize": {
  1925. "__type__": "cc.Size",
  1926. "width": 100,
  1927. "height": 100
  1928. },
  1929. "_anchorPoint": {
  1930. "__type__": "cc.Vec2",
  1931. "x": 0.5,
  1932. "y": 0.5
  1933. },
  1934. "_id": "9dsu4wydZDUbdAJeu06xn7"
  1935. },
  1936. {
  1937. "__type__": "cc.Node",
  1938. "_name": "pipe_parent",
  1939. "_objFlags": 0,
  1940. "_parent": {
  1941. "__id__": 30
  1942. },
  1943. "_children": [
  1944. {
  1945. "__id__": 53
  1946. }
  1947. ],
  1948. "_active": true,
  1949. "_components": [
  1950. {
  1951. "__id__": 58
  1952. }
  1953. ],
  1954. "_prefab": null,
  1955. "_lpos": {
  1956. "__type__": "cc.Vec3",
  1957. "x": 0,
  1958. "y": 0,
  1959. "z": 0
  1960. },
  1961. "_lrot": {
  1962. "__type__": "cc.Quat",
  1963. "x": 0,
  1964. "y": 0,
  1965. "z": 0,
  1966. "w": 1
  1967. },
  1968. "_lscale": {
  1969. "__type__": "cc.Vec3",
  1970. "x": 1,
  1971. "y": 1,
  1972. "z": 1
  1973. },
  1974. "_mobility": 0,
  1975. "_layer": 33554432,
  1976. "_euler": {
  1977. "__type__": "cc.Vec3",
  1978. "x": 0,
  1979. "y": 0,
  1980. "z": 0
  1981. },
  1982. "_id": "35uJbSTRZKILV/V2aRmcp8"
  1983. },
  1984. {
  1985. "__type__": "cc.Node",
  1986. "_name": "pipeUp",
  1987. "_objFlags": 0,
  1988. "_parent": {
  1989. "__id__": 52
  1990. },
  1991. "_children": [],
  1992. "_active": true,
  1993. "_components": [
  1994. {
  1995. "__id__": 54
  1996. },
  1997. {
  1998. "__id__": 55
  1999. },
  2000. {
  2001. "__id__": 56
  2002. },
  2003. {
  2004. "__id__": 57
  2005. }
  2006. ],
  2007. "_prefab": null,
  2008. "_lpos": {
  2009. "__type__": "cc.Vec3",
  2010. "x": 176.689,
  2011. "y": -123.051,
  2012. "z": 0
  2013. },
  2014. "_lrot": {
  2015. "__type__": "cc.Quat",
  2016. "x": 0,
  2017. "y": 0,
  2018. "z": 0,
  2019. "w": 1
  2020. },
  2021. "_lscale": {
  2022. "__type__": "cc.Vec3",
  2023. "x": 0.5,
  2024. "y": 0.5,
  2025. "z": 1
  2026. },
  2027. "_mobility": 0,
  2028. "_layer": 33554432,
  2029. "_euler": {
  2030. "__type__": "cc.Vec3",
  2031. "x": 0,
  2032. "y": 0,
  2033. "z": 0
  2034. },
  2035. "_id": "70G7Ch9ltMnKKBvvsqOf9k"
  2036. },
  2037. {
  2038. "__type__": "cc.UITransform",
  2039. "_name": "",
  2040. "_objFlags": 0,
  2041. "node": {
  2042. "__id__": 53
  2043. },
  2044. "_enabled": true,
  2045. "__prefab": null,
  2046. "_contentSize": {
  2047. "__type__": "cc.Size",
  2048. "width": 43,
  2049. "height": 231
  2050. },
  2051. "_anchorPoint": {
  2052. "__type__": "cc.Vec2",
  2053. "x": 0.5,
  2054. "y": 0.5
  2055. },
  2056. "_id": "38t2x6giRECZSzaRvwbdmH"
  2057. },
  2058. {
  2059. "__type__": "cc.Sprite",
  2060. "_name": "",
  2061. "_objFlags": 0,
  2062. "node": {
  2063. "__id__": 53
  2064. },
  2065. "_enabled": true,
  2066. "__prefab": null,
  2067. "_customMaterial": null,
  2068. "_srcBlendFactor": 2,
  2069. "_dstBlendFactor": 4,
  2070. "_color": {
  2071. "__type__": "cc.Color",
  2072. "r": 255,
  2073. "g": 255,
  2074. "b": 255,
  2075. "a": 255
  2076. },
  2077. "_spriteFrame": {
  2078. "__uuid__": "f49c0f4f-c9e8-413f-bce1-3e2baf795b85@f9941",
  2079. "__expectedType__": "cc.SpriteFrame"
  2080. },
  2081. "_type": 0,
  2082. "_fillType": 0,
  2083. "_sizeMode": 0,
  2084. "_fillCenter": {
  2085. "__type__": "cc.Vec2",
  2086. "x": 0,
  2087. "y": 0
  2088. },
  2089. "_fillStart": 0,
  2090. "_fillRange": 0,
  2091. "_isTrimmedMode": true,
  2092. "_useGrayscale": false,
  2093. "_atlas": null,
  2094. "_id": "acxZEF6H9FPrax0nnqKEaT"
  2095. },
  2096. {
  2097. "__type__": "cc.BoxCollider2D",
  2098. "_name": "",
  2099. "_objFlags": 0,
  2100. "node": {
  2101. "__id__": 53
  2102. },
  2103. "_enabled": true,
  2104. "__prefab": null,
  2105. "tag": 0,
  2106. "_group": 1,
  2107. "_density": 1,
  2108. "_sensor": false,
  2109. "_friction": 0.2,
  2110. "_restitution": 0,
  2111. "_offset": {
  2112. "__type__": "cc.Vec2",
  2113. "x": -3.3,
  2114. "y": -3.3
  2115. },
  2116. "_size": {
  2117. "__type__": "cc.Size",
  2118. "width": 59.1,
  2119. "height": 73.5
  2120. },
  2121. "_id": "52BG5RCh5AfbP1v1pwupef"
  2122. },
  2123. {
  2124. "__type__": "cc.RigidBody2D",
  2125. "_name": "",
  2126. "_objFlags": 0,
  2127. "node": {
  2128. "__id__": 53
  2129. },
  2130. "_enabled": true,
  2131. "__prefab": null,
  2132. "enabledContactListener": true,
  2133. "bullet": false,
  2134. "awakeOnLoad": true,
  2135. "_group": 1,
  2136. "_type": 0,
  2137. "_allowSleep": true,
  2138. "_gravityScale": 1,
  2139. "_linearDamping": 0,
  2140. "_angularDamping": 0,
  2141. "_linearVelocity": {
  2142. "__type__": "cc.Vec2",
  2143. "x": 0,
  2144. "y": 0
  2145. },
  2146. "_angularVelocity": 0,
  2147. "_fixedRotation": false,
  2148. "_id": "6aGFzQ06pJm4Vwf37IlmZm"
  2149. },
  2150. {
  2151. "__type__": "cc.UITransform",
  2152. "_name": "",
  2153. "_objFlags": 0,
  2154. "node": {
  2155. "__id__": 52
  2156. },
  2157. "_enabled": true,
  2158. "__prefab": null,
  2159. "_contentSize": {
  2160. "__type__": "cc.Size",
  2161. "width": 100,
  2162. "height": 100
  2163. },
  2164. "_anchorPoint": {
  2165. "__type__": "cc.Vec2",
  2166. "x": 0.5,
  2167. "y": 0.5
  2168. },
  2169. "_id": "09gEASQMxGrrzS4YrLkU3d"
  2170. },
  2171. {
  2172. "__type__": "cc.Node",
  2173. "_name": "Ground",
  2174. "_objFlags": 0,
  2175. "_parent": {
  2176. "__id__": 30
  2177. },
  2178. "_children": [],
  2179. "_active": true,
  2180. "_components": [
  2181. {
  2182. "__id__": 60
  2183. },
  2184. {
  2185. "__id__": 61
  2186. },
  2187. {
  2188. "__id__": 62
  2189. },
  2190. {
  2191. "__id__": 63
  2192. }
  2193. ],
  2194. "_prefab": null,
  2195. "_lpos": {
  2196. "__type__": "cc.Vec3",
  2197. "x": 464.88,
  2198. "y": -198.92,
  2199. "z": 0
  2200. },
  2201. "_lrot": {
  2202. "__type__": "cc.Quat",
  2203. "x": 0,
  2204. "y": 0,
  2205. "z": -0.7095707365365209,
  2206. "w": 0.7046342099635946
  2207. },
  2208. "_lscale": {
  2209. "__type__": "cc.Vec3",
  2210. "x": 1,
  2211. "y": 1,
  2212. "z": 1
  2213. },
  2214. "_mobility": 0,
  2215. "_layer": 33554432,
  2216. "_euler": {
  2217. "__type__": "cc.Vec3",
  2218. "x": 0,
  2219. "y": 0,
  2220. "z": -90.4
  2221. },
  2222. "_id": "1ewnjuM+BCTJXjR0KYVz58"
  2223. },
  2224. {
  2225. "__type__": "cc.UITransform",
  2226. "_name": "",
  2227. "_objFlags": 0,
  2228. "node": {
  2229. "__id__": 59
  2230. },
  2231. "_enabled": true,
  2232. "__prefab": null,
  2233. "_contentSize": {
  2234. "__type__": "cc.Size",
  2235. "width": 1000,
  2236. "height": 10
  2237. },
  2238. "_anchorPoint": {
  2239. "__type__": "cc.Vec2",
  2240. "x": 0.5,
  2241. "y": 0.5
  2242. },
  2243. "_id": "61pNoH9e9E5KEY9siaGQSU"
  2244. },
  2245. {
  2246. "__type__": "cc.RigidBody2D",
  2247. "_name": "",
  2248. "_objFlags": 0,
  2249. "node": {
  2250. "__id__": 59
  2251. },
  2252. "_enabled": true,
  2253. "__prefab": null,
  2254. "enabledContactListener": true,
  2255. "bullet": false,
  2256. "awakeOnLoad": true,
  2257. "_group": 1,
  2258. "_type": 0,
  2259. "_allowSleep": true,
  2260. "_gravityScale": 1,
  2261. "_linearDamping": 0,
  2262. "_angularDamping": 0,
  2263. "_linearVelocity": {
  2264. "__type__": "cc.Vec2",
  2265. "x": 0,
  2266. "y": 0
  2267. },
  2268. "_angularVelocity": 0,
  2269. "_fixedRotation": true,
  2270. "_id": "7cZ/PN+j5JR7gFEzHBoHK/"
  2271. },
  2272. {
  2273. "__type__": "cc.BoxCollider2D",
  2274. "_name": "",
  2275. "_objFlags": 0,
  2276. "node": {
  2277. "__id__": 59
  2278. },
  2279. "_enabled": true,
  2280. "__prefab": null,
  2281. "tag": 1,
  2282. "_group": 1,
  2283. "_density": 1,
  2284. "_sensor": false,
  2285. "_friction": 0,
  2286. "_restitution": 0,
  2287. "_offset": {
  2288. "__type__": "cc.Vec2",
  2289. "x": 0,
  2290. "y": 0
  2291. },
  2292. "_size": {
  2293. "__type__": "cc.Size",
  2294. "width": 1000,
  2295. "height": 10
  2296. },
  2297. "_id": "ae5yKAnHNBHaosYtj76YvF"
  2298. },
  2299. {
  2300. "__type__": "cc.Sprite",
  2301. "_name": "",
  2302. "_objFlags": 0,
  2303. "node": {
  2304. "__id__": 59
  2305. },
  2306. "_enabled": true,
  2307. "__prefab": null,
  2308. "_customMaterial": null,
  2309. "_srcBlendFactor": 2,
  2310. "_dstBlendFactor": 4,
  2311. "_color": {
  2312. "__type__": "cc.Color",
  2313. "r": 255,
  2314. "g": 255,
  2315. "b": 255,
  2316. "a": 255
  2317. },
  2318. "_spriteFrame": null,
  2319. "_type": 0,
  2320. "_fillType": 0,
  2321. "_sizeMode": 1,
  2322. "_fillCenter": {
  2323. "__type__": "cc.Vec2",
  2324. "x": 0,
  2325. "y": 0
  2326. },
  2327. "_fillStart": 0,
  2328. "_fillRange": 0,
  2329. "_isTrimmedMode": true,
  2330. "_useGrayscale": false,
  2331. "_atlas": null,
  2332. "_id": "ecJjgF2G5EiLhSF5F7sQ++"
  2333. },
  2334. {
  2335. "__type__": "cc.Node",
  2336. "_name": "BianJie",
  2337. "_objFlags": 0,
  2338. "_parent": {
  2339. "__id__": 30
  2340. },
  2341. "_children": [],
  2342. "_active": true,
  2343. "_components": [
  2344. {
  2345. "__id__": 65
  2346. },
  2347. {
  2348. "__id__": 66
  2349. },
  2350. {
  2351. "__id__": 67
  2352. },
  2353. {
  2354. "__id__": 68
  2355. }
  2356. ],
  2357. "_prefab": null,
  2358. "_lpos": {
  2359. "__type__": "cc.Vec3",
  2360. "x": 281.334,
  2361. "y": -9.043,
  2362. "z": 0
  2363. },
  2364. "_lrot": {
  2365. "__type__": "cc.Quat",
  2366. "x": 0,
  2367. "y": 0,
  2368. "z": 0,
  2369. "w": 1
  2370. },
  2371. "_lscale": {
  2372. "__type__": "cc.Vec3",
  2373. "x": 0.49999999999999994,
  2374. "y": 0.49999999999999994,
  2375. "z": 1
  2376. },
  2377. "_mobility": 0,
  2378. "_layer": 33554432,
  2379. "_euler": {
  2380. "__type__": "cc.Vec3",
  2381. "x": 0,
  2382. "y": 0,
  2383. "z": 0
  2384. },
  2385. "_id": "0f0zHc3MxApb0vcUEGLXMK"
  2386. },
  2387. {
  2388. "__type__": "cc.UITransform",
  2389. "_name": "",
  2390. "_objFlags": 0,
  2391. "node": {
  2392. "__id__": 64
  2393. },
  2394. "_enabled": true,
  2395. "__prefab": null,
  2396. "_contentSize": {
  2397. "__type__": "cc.Size",
  2398. "width": 43,
  2399. "height": 1200
  2400. },
  2401. "_anchorPoint": {
  2402. "__type__": "cc.Vec2",
  2403. "x": 0.5,
  2404. "y": 0.5
  2405. },
  2406. "_id": "c7NO2HmcJFSr/xwxvxADLD"
  2407. },
  2408. {
  2409. "__type__": "cc.Sprite",
  2410. "_name": "",
  2411. "_objFlags": 0,
  2412. "node": {
  2413. "__id__": 64
  2414. },
  2415. "_enabled": false,
  2416. "__prefab": null,
  2417. "_customMaterial": null,
  2418. "_srcBlendFactor": 2,
  2419. "_dstBlendFactor": 4,
  2420. "_color": {
  2421. "__type__": "cc.Color",
  2422. "r": 255,
  2423. "g": 255,
  2424. "b": 255,
  2425. "a": 255
  2426. },
  2427. "_spriteFrame": {
  2428. "__uuid__": "37a57cec-d1fe-4064-8113-b68280bb0f15@f9941",
  2429. "__expectedType__": "cc.SpriteFrame"
  2430. },
  2431. "_type": 0,
  2432. "_fillType": 0,
  2433. "_sizeMode": 0,
  2434. "_fillCenter": {
  2435. "__type__": "cc.Vec2",
  2436. "x": 0,
  2437. "y": 0
  2438. },
  2439. "_fillStart": 0,
  2440. "_fillRange": 0,
  2441. "_isTrimmedMode": true,
  2442. "_useGrayscale": false,
  2443. "_atlas": null,
  2444. "_id": "6fZwgHOKtN04VNj3eJY4q7"
  2445. },
  2446. {
  2447. "__type__": "cc.BoxCollider2D",
  2448. "_name": "",
  2449. "_objFlags": 0,
  2450. "node": {
  2451. "__id__": 64
  2452. },
  2453. "_enabled": true,
  2454. "__prefab": null,
  2455. "tag": 3,
  2456. "_group": 1,
  2457. "_density": 1,
  2458. "_sensor": false,
  2459. "_friction": 0.2,
  2460. "_restitution": 0,
  2461. "_offset": {
  2462. "__type__": "cc.Vec2",
  2463. "x": -3.3,
  2464. "y": -3.3
  2465. },
  2466. "_size": {
  2467. "__type__": "cc.Size",
  2468. "width": 39,
  2469. "height": 1200
  2470. },
  2471. "_id": "90GU/buE9HaKer56HfUzTF"
  2472. },
  2473. {
  2474. "__type__": "cc.RigidBody2D",
  2475. "_name": "",
  2476. "_objFlags": 0,
  2477. "node": {
  2478. "__id__": 64
  2479. },
  2480. "_enabled": true,
  2481. "__prefab": null,
  2482. "enabledContactListener": true,
  2483. "bullet": false,
  2484. "awakeOnLoad": true,
  2485. "_group": 1,
  2486. "_type": 0,
  2487. "_allowSleep": true,
  2488. "_gravityScale": 1,
  2489. "_linearDamping": 0,
  2490. "_angularDamping": 0,
  2491. "_linearVelocity": {
  2492. "__type__": "cc.Vec2",
  2493. "x": 0,
  2494. "y": 0
  2495. },
  2496. "_angularVelocity": 0,
  2497. "_fixedRotation": false,
  2498. "_id": "4c1cDgDWhBZpqOFZ6dvsIz"
  2499. },
  2500. {
  2501. "__type__": "cc.Node",
  2502. "_name": "Role1",
  2503. "_objFlags": 0,
  2504. "_parent": {
  2505. "__id__": 30
  2506. },
  2507. "_children": [],
  2508. "_active": false,
  2509. "_components": [
  2510. {
  2511. "__id__": 70
  2512. },
  2513. {
  2514. "__id__": 71
  2515. },
  2516. {
  2517. "__id__": 72
  2518. },
  2519. {
  2520. "__id__": 73
  2521. },
  2522. {
  2523. "__id__": 74
  2524. }
  2525. ],
  2526. "_prefab": null,
  2527. "_lpos": {
  2528. "__type__": "cc.Vec3",
  2529. "x": -497.792,
  2530. "y": 221.377,
  2531. "z": 0
  2532. },
  2533. "_lrot": {
  2534. "__type__": "cc.Quat",
  2535. "x": 0,
  2536. "y": 0,
  2537. "z": 0,
  2538. "w": 1
  2539. },
  2540. "_lscale": {
  2541. "__type__": "cc.Vec3",
  2542. "x": 0.5,
  2543. "y": 0.5,
  2544. "z": 1
  2545. },
  2546. "_mobility": 0,
  2547. "_layer": 33554432,
  2548. "_euler": {
  2549. "__type__": "cc.Vec3",
  2550. "x": 0,
  2551. "y": 0,
  2552. "z": 0
  2553. },
  2554. "_id": "fcayB4YL9CRoSUqbeD1Ocf"
  2555. },
  2556. {
  2557. "__type__": "cc.UITransform",
  2558. "_name": "",
  2559. "_objFlags": 0,
  2560. "node": {
  2561. "__id__": 69
  2562. },
  2563. "_enabled": true,
  2564. "__prefab": null,
  2565. "_contentSize": {
  2566. "__type__": "cc.Size",
  2567. "width": 265,
  2568. "height": 140
  2569. },
  2570. "_anchorPoint": {
  2571. "__type__": "cc.Vec2",
  2572. "x": 0.5,
  2573. "y": 0.5
  2574. },
  2575. "_id": "a7j+lZBpBH/bEHWLfXTdoX"
  2576. },
  2577. {
  2578. "__type__": "cc.Sprite",
  2579. "_name": "",
  2580. "_objFlags": 0,
  2581. "node": {
  2582. "__id__": 69
  2583. },
  2584. "_enabled": true,
  2585. "__prefab": null,
  2586. "_customMaterial": null,
  2587. "_srcBlendFactor": 2,
  2588. "_dstBlendFactor": 4,
  2589. "_color": {
  2590. "__type__": "cc.Color",
  2591. "r": 255,
  2592. "g": 255,
  2593. "b": 255,
  2594. "a": 255
  2595. },
  2596. "_spriteFrame": {
  2597. "__uuid__": "4ee1eafa-19bf-4ab1-b925-c2be7ed869b0@f9941",
  2598. "__expectedType__": "cc.SpriteFrame"
  2599. },
  2600. "_type": 0,
  2601. "_fillType": 0,
  2602. "_sizeMode": 0,
  2603. "_fillCenter": {
  2604. "__type__": "cc.Vec2",
  2605. "x": 0,
  2606. "y": 0
  2607. },
  2608. "_fillStart": 0,
  2609. "_fillRange": 0,
  2610. "_isTrimmedMode": true,
  2611. "_useGrayscale": false,
  2612. "_atlas": null,
  2613. "_id": "4fAkARfkVPt4KgXOme6K5z"
  2614. },
  2615. {
  2616. "__type__": "cc.RigidBody2D",
  2617. "_name": "",
  2618. "_objFlags": 0,
  2619. "node": {
  2620. "__id__": 69
  2621. },
  2622. "_enabled": true,
  2623. "__prefab": null,
  2624. "enabledContactListener": true,
  2625. "bullet": false,
  2626. "awakeOnLoad": true,
  2627. "_group": 1,
  2628. "_type": 1,
  2629. "_allowSleep": true,
  2630. "_gravityScale": 0,
  2631. "_linearDamping": 0,
  2632. "_angularDamping": 0,
  2633. "_linearVelocity": {
  2634. "__type__": "cc.Vec2",
  2635. "x": 0,
  2636. "y": 0
  2637. },
  2638. "_angularVelocity": 0,
  2639. "_fixedRotation": false,
  2640. "_id": "acYppTfmdEBrlSlgnswZIH"
  2641. },
  2642. {
  2643. "__type__": "cc.BoxCollider2D",
  2644. "_name": "",
  2645. "_objFlags": 0,
  2646. "node": {
  2647. "__id__": 69
  2648. },
  2649. "_enabled": true,
  2650. "__prefab": null,
  2651. "tag": 0,
  2652. "_group": 1,
  2653. "_density": 1,
  2654. "_sensor": false,
  2655. "_friction": 0,
  2656. "_restitution": 0,
  2657. "_offset": {
  2658. "__type__": "cc.Vec2",
  2659. "x": 0,
  2660. "y": 0
  2661. },
  2662. "_size": {
  2663. "__type__": "cc.Size",
  2664. "width": 94,
  2665. "height": 84
  2666. },
  2667. "_id": "a4Z22d0qVC3Jk414gOz07a"
  2668. },
  2669. {
  2670. "__type__": "e73b7ahp2lGhrjbxX6jqP5m",
  2671. "_name": "",
  2672. "_objFlags": 0,
  2673. "node": {
  2674. "__id__": 69
  2675. },
  2676. "_enabled": true,
  2677. "__prefab": null,
  2678. "main": {
  2679. "__id__": 75
  2680. },
  2681. "_id": "6aMsq3Sj9ORZd07tRNd8bC"
  2682. },
  2683. {
  2684. "__type__": "84c55ZvhFdDaYvEefm8MlZ1",
  2685. "_name": "",
  2686. "_objFlags": 0,
  2687. "node": {
  2688. "__id__": 17
  2689. },
  2690. "_enabled": true,
  2691. "__prefab": null,
  2692. "nodeList": [
  2693. {
  2694. "__id__": 69
  2695. },
  2696. {
  2697. "__id__": 76
  2698. },
  2699. {
  2700. "__id__": 82
  2701. },
  2702. {
  2703. "__id__": 88
  2704. }
  2705. ],
  2706. "FloatSpriteList": [
  2707. {
  2708. "__id__": 34
  2709. },
  2710. {
  2711. "__id__": 41
  2712. },
  2713. {
  2714. "__id__": 48
  2715. },
  2716. {
  2717. "__id__": 55
  2718. }
  2719. ],
  2720. "FloatCloseFrimeList": [
  2721. {
  2722. "__uuid__": "37a57cec-d1fe-4064-8113-b68280bb0f15@f9941",
  2723. "__expectedType__": "cc.SpriteFrame"
  2724. },
  2725. {
  2726. "__uuid__": "445e0d9e-38d6-48ba-808a-0b6134920518@f9941",
  2727. "__expectedType__": "cc.SpriteFrame"
  2728. },
  2729. {
  2730. "__uuid__": "1eece037-3361-4a32-a940-9141bcab5d09@f9941",
  2731. "__expectedType__": "cc.SpriteFrame"
  2732. },
  2733. {
  2734. "__uuid__": "f49c0f4f-c9e8-413f-bce1-3e2baf795b85@f9941",
  2735. "__expectedType__": "cc.SpriteFrame"
  2736. }
  2737. ],
  2738. "FloatOpenFrimeList": [
  2739. {
  2740. "__uuid__": "621efa13-a72f-49de-8163-72d8c80a0989@f9941",
  2741. "__expectedType__": "cc.SpriteFrame"
  2742. },
  2743. {
  2744. "__uuid__": "d6d0aca2-3a5e-4fb9-88c9-a084f9beb670@f9941",
  2745. "__expectedType__": "cc.SpriteFrame"
  2746. },
  2747. {
  2748. "__uuid__": "8e5ae7ac-d0e8-46ad-932b-5acec37d22a0@f9941",
  2749. "__expectedType__": "cc.SpriteFrame"
  2750. },
  2751. {
  2752. "__uuid__": "a344c2ce-fdbd-4c81-a279-07fe05b3e087@f9941",
  2753. "__expectedType__": "cc.SpriteFrame"
  2754. }
  2755. ],
  2756. "buttonList": [
  2757. {
  2758. "__id__": 94
  2759. },
  2760. {
  2761. "__id__": 101
  2762. },
  2763. {
  2764. "__id__": 108
  2765. },
  2766. {
  2767. "__id__": 115
  2768. }
  2769. ],
  2770. "_id": "2czHStCQNPh7SLuazcjbpp"
  2771. },
  2772. {
  2773. "__type__": "cc.Node",
  2774. "_name": "Role2",
  2775. "_objFlags": 0,
  2776. "_parent": {
  2777. "__id__": 30
  2778. },
  2779. "_children": [],
  2780. "_active": false,
  2781. "_components": [
  2782. {
  2783. "__id__": 77
  2784. },
  2785. {
  2786. "__id__": 78
  2787. },
  2788. {
  2789. "__id__": 79
  2790. },
  2791. {
  2792. "__id__": 80
  2793. },
  2794. {
  2795. "__id__": 81
  2796. }
  2797. ],
  2798. "_prefab": null,
  2799. "_lpos": {
  2800. "__type__": "cc.Vec3",
  2801. "x": -506.282,
  2802. "y": 100.521,
  2803. "z": 0
  2804. },
  2805. "_lrot": {
  2806. "__type__": "cc.Quat",
  2807. "x": 0,
  2808. "y": 0,
  2809. "z": 0,
  2810. "w": 1
  2811. },
  2812. "_lscale": {
  2813. "__type__": "cc.Vec3",
  2814. "x": 0.5,
  2815. "y": 0.5,
  2816. "z": 1
  2817. },
  2818. "_mobility": 0,
  2819. "_layer": 33554432,
  2820. "_euler": {
  2821. "__type__": "cc.Vec3",
  2822. "x": 0,
  2823. "y": 0,
  2824. "z": 0
  2825. },
  2826. "_id": "73hqIhEJRFV5YTZZQEkK5q"
  2827. },
  2828. {
  2829. "__type__": "cc.UITransform",
  2830. "_name": "",
  2831. "_objFlags": 0,
  2832. "node": {
  2833. "__id__": 76
  2834. },
  2835. "_enabled": true,
  2836. "__prefab": null,
  2837. "_contentSize": {
  2838. "__type__": "cc.Size",
  2839. "width": 265,
  2840. "height": 140
  2841. },
  2842. "_anchorPoint": {
  2843. "__type__": "cc.Vec2",
  2844. "x": 0.5,
  2845. "y": 0.5
  2846. },
  2847. "_id": "16X4pwbcxLqqqGXghYcX+u"
  2848. },
  2849. {
  2850. "__type__": "cc.Sprite",
  2851. "_name": "",
  2852. "_objFlags": 0,
  2853. "node": {
  2854. "__id__": 76
  2855. },
  2856. "_enabled": true,
  2857. "__prefab": null,
  2858. "_customMaterial": null,
  2859. "_srcBlendFactor": 2,
  2860. "_dstBlendFactor": 4,
  2861. "_color": {
  2862. "__type__": "cc.Color",
  2863. "r": 255,
  2864. "g": 255,
  2865. "b": 255,
  2866. "a": 255
  2867. },
  2868. "_spriteFrame": {
  2869. "__uuid__": "4ee1eafa-19bf-4ab1-b925-c2be7ed869b0@f9941",
  2870. "__expectedType__": "cc.SpriteFrame"
  2871. },
  2872. "_type": 0,
  2873. "_fillType": 0,
  2874. "_sizeMode": 0,
  2875. "_fillCenter": {
  2876. "__type__": "cc.Vec2",
  2877. "x": 0,
  2878. "y": 0
  2879. },
  2880. "_fillStart": 0,
  2881. "_fillRange": 0,
  2882. "_isTrimmedMode": true,
  2883. "_useGrayscale": false,
  2884. "_atlas": null,
  2885. "_id": "f8hm/NRFJEEpf0BUr5iMdK"
  2886. },
  2887. {
  2888. "__type__": "cc.RigidBody2D",
  2889. "_name": "",
  2890. "_objFlags": 0,
  2891. "node": {
  2892. "__id__": 76
  2893. },
  2894. "_enabled": true,
  2895. "__prefab": null,
  2896. "enabledContactListener": true,
  2897. "bullet": false,
  2898. "awakeOnLoad": true,
  2899. "_group": 1,
  2900. "_type": 1,
  2901. "_allowSleep": true,
  2902. "_gravityScale": 0,
  2903. "_linearDamping": 0,
  2904. "_angularDamping": 0,
  2905. "_linearVelocity": {
  2906. "__type__": "cc.Vec2",
  2907. "x": 0,
  2908. "y": 0
  2909. },
  2910. "_angularVelocity": 0,
  2911. "_fixedRotation": false,
  2912. "_id": "dfX3eUfnNNoJyxCF4roJrn"
  2913. },
  2914. {
  2915. "__type__": "cc.BoxCollider2D",
  2916. "_name": "",
  2917. "_objFlags": 0,
  2918. "node": {
  2919. "__id__": 76
  2920. },
  2921. "_enabled": true,
  2922. "__prefab": null,
  2923. "tag": 0,
  2924. "_group": 1,
  2925. "_density": 1,
  2926. "_sensor": false,
  2927. "_friction": 0,
  2928. "_restitution": 0,
  2929. "_offset": {
  2930. "__type__": "cc.Vec2",
  2931. "x": 0,
  2932. "y": 0
  2933. },
  2934. "_size": {
  2935. "__type__": "cc.Size",
  2936. "width": 94,
  2937. "height": 84
  2938. },
  2939. "_id": "61aMCnuDJN7JxGZgYxPmg0"
  2940. },
  2941. {
  2942. "__type__": "e73b7ahp2lGhrjbxX6jqP5m",
  2943. "_name": "",
  2944. "_objFlags": 0,
  2945. "node": {
  2946. "__id__": 76
  2947. },
  2948. "_enabled": true,
  2949. "__prefab": null,
  2950. "main": {
  2951. "__id__": 75
  2952. },
  2953. "_id": "a0blpznV1PeqUB7qjOGbQk"
  2954. },
  2955. {
  2956. "__type__": "cc.Node",
  2957. "_name": "Role3",
  2958. "_objFlags": 0,
  2959. "_parent": {
  2960. "__id__": 30
  2961. },
  2962. "_children": [],
  2963. "_active": false,
  2964. "_components": [
  2965. {
  2966. "__id__": 83
  2967. },
  2968. {
  2969. "__id__": 84
  2970. },
  2971. {
  2972. "__id__": 85
  2973. },
  2974. {
  2975. "__id__": 86
  2976. },
  2977. {
  2978. "__id__": 87
  2979. }
  2980. ],
  2981. "_prefab": null,
  2982. "_lpos": {
  2983. "__type__": "cc.Vec3",
  2984. "x": -506.282,
  2985. "y": 0,
  2986. "z": 0
  2987. },
  2988. "_lrot": {
  2989. "__type__": "cc.Quat",
  2990. "x": 0,
  2991. "y": 0,
  2992. "z": 0,
  2993. "w": 1
  2994. },
  2995. "_lscale": {
  2996. "__type__": "cc.Vec3",
  2997. "x": 0.5,
  2998. "y": 0.5,
  2999. "z": 1
  3000. },
  3001. "_mobility": 0,
  3002. "_layer": 33554432,
  3003. "_euler": {
  3004. "__type__": "cc.Vec3",
  3005. "x": 0,
  3006. "y": 0,
  3007. "z": 0
  3008. },
  3009. "_id": "2ekCfYGptGLIQqEbhEMobt"
  3010. },
  3011. {
  3012. "__type__": "cc.UITransform",
  3013. "_name": "",
  3014. "_objFlags": 0,
  3015. "node": {
  3016. "__id__": 82
  3017. },
  3018. "_enabled": true,
  3019. "__prefab": null,
  3020. "_contentSize": {
  3021. "__type__": "cc.Size",
  3022. "width": 265,
  3023. "height": 140
  3024. },
  3025. "_anchorPoint": {
  3026. "__type__": "cc.Vec2",
  3027. "x": 0.5,
  3028. "y": 0.5
  3029. },
  3030. "_id": "61Yd566kVDzY/Y8cQwlUji"
  3031. },
  3032. {
  3033. "__type__": "cc.Sprite",
  3034. "_name": "",
  3035. "_objFlags": 0,
  3036. "node": {
  3037. "__id__": 82
  3038. },
  3039. "_enabled": true,
  3040. "__prefab": null,
  3041. "_customMaterial": null,
  3042. "_srcBlendFactor": 2,
  3043. "_dstBlendFactor": 4,
  3044. "_color": {
  3045. "__type__": "cc.Color",
  3046. "r": 255,
  3047. "g": 255,
  3048. "b": 255,
  3049. "a": 255
  3050. },
  3051. "_spriteFrame": {
  3052. "__uuid__": "4ee1eafa-19bf-4ab1-b925-c2be7ed869b0@f9941",
  3053. "__expectedType__": "cc.SpriteFrame"
  3054. },
  3055. "_type": 0,
  3056. "_fillType": 0,
  3057. "_sizeMode": 0,
  3058. "_fillCenter": {
  3059. "__type__": "cc.Vec2",
  3060. "x": 0,
  3061. "y": 0
  3062. },
  3063. "_fillStart": 0,
  3064. "_fillRange": 0,
  3065. "_isTrimmedMode": true,
  3066. "_useGrayscale": false,
  3067. "_atlas": null,
  3068. "_id": "15dkt19B5L34DzpuUTdcaj"
  3069. },
  3070. {
  3071. "__type__": "cc.RigidBody2D",
  3072. "_name": "",
  3073. "_objFlags": 0,
  3074. "node": {
  3075. "__id__": 82
  3076. },
  3077. "_enabled": true,
  3078. "__prefab": null,
  3079. "enabledContactListener": true,
  3080. "bullet": false,
  3081. "awakeOnLoad": true,
  3082. "_group": 1,
  3083. "_type": 1,
  3084. "_allowSleep": true,
  3085. "_gravityScale": 0,
  3086. "_linearDamping": 0,
  3087. "_angularDamping": 0,
  3088. "_linearVelocity": {
  3089. "__type__": "cc.Vec2",
  3090. "x": 0,
  3091. "y": 0
  3092. },
  3093. "_angularVelocity": 0,
  3094. "_fixedRotation": false,
  3095. "_id": "5cPhVlOldIypgnendkH5+U"
  3096. },
  3097. {
  3098. "__type__": "cc.BoxCollider2D",
  3099. "_name": "",
  3100. "_objFlags": 0,
  3101. "node": {
  3102. "__id__": 82
  3103. },
  3104. "_enabled": true,
  3105. "__prefab": null,
  3106. "tag": 0,
  3107. "_group": 1,
  3108. "_density": 1,
  3109. "_sensor": false,
  3110. "_friction": 0,
  3111. "_restitution": 0,
  3112. "_offset": {
  3113. "__type__": "cc.Vec2",
  3114. "x": 0,
  3115. "y": 0
  3116. },
  3117. "_size": {
  3118. "__type__": "cc.Size",
  3119. "width": 94,
  3120. "height": 84
  3121. },
  3122. "_id": "a6elMFT0ZKW6nWGg3gbrhC"
  3123. },
  3124. {
  3125. "__type__": "e73b7ahp2lGhrjbxX6jqP5m",
  3126. "_name": "",
  3127. "_objFlags": 0,
  3128. "node": {
  3129. "__id__": 82
  3130. },
  3131. "_enabled": true,
  3132. "__prefab": null,
  3133. "main": {
  3134. "__id__": 75
  3135. },
  3136. "_id": "50nSBHsbVPwruDzES2S3zY"
  3137. },
  3138. {
  3139. "__type__": "cc.Node",
  3140. "_name": "Role4",
  3141. "_objFlags": 0,
  3142. "_parent": {
  3143. "__id__": 30
  3144. },
  3145. "_children": [],
  3146. "_active": false,
  3147. "_components": [
  3148. {
  3149. "__id__": 89
  3150. },
  3151. {
  3152. "__id__": 90
  3153. },
  3154. {
  3155. "__id__": 91
  3156. },
  3157. {
  3158. "__id__": 92
  3159. },
  3160. {
  3161. "__id__": 93
  3162. }
  3163. ],
  3164. "_prefab": null,
  3165. "_lpos": {
  3166. "__type__": "cc.Vec3",
  3167. "x": -506.282,
  3168. "y": -141.19,
  3169. "z": 0
  3170. },
  3171. "_lrot": {
  3172. "__type__": "cc.Quat",
  3173. "x": 0,
  3174. "y": 0,
  3175. "z": 0,
  3176. "w": 1
  3177. },
  3178. "_lscale": {
  3179. "__type__": "cc.Vec3",
  3180. "x": 0.5,
  3181. "y": 0.5,
  3182. "z": 1
  3183. },
  3184. "_mobility": 0,
  3185. "_layer": 33554432,
  3186. "_euler": {
  3187. "__type__": "cc.Vec3",
  3188. "x": 0,
  3189. "y": 0,
  3190. "z": 0
  3191. },
  3192. "_id": "4cCJ0m+EBMDJ07rPokxhOq"
  3193. },
  3194. {
  3195. "__type__": "cc.UITransform",
  3196. "_name": "",
  3197. "_objFlags": 0,
  3198. "node": {
  3199. "__id__": 88
  3200. },
  3201. "_enabled": true,
  3202. "__prefab": null,
  3203. "_contentSize": {
  3204. "__type__": "cc.Size",
  3205. "width": 265,
  3206. "height": 140
  3207. },
  3208. "_anchorPoint": {
  3209. "__type__": "cc.Vec2",
  3210. "x": 0.5,
  3211. "y": 0.5
  3212. },
  3213. "_id": "a2Fevd6OJGjZkAimURx0Db"
  3214. },
  3215. {
  3216. "__type__": "cc.Sprite",
  3217. "_name": "",
  3218. "_objFlags": 0,
  3219. "node": {
  3220. "__id__": 88
  3221. },
  3222. "_enabled": true,
  3223. "__prefab": null,
  3224. "_customMaterial": null,
  3225. "_srcBlendFactor": 2,
  3226. "_dstBlendFactor": 4,
  3227. "_color": {
  3228. "__type__": "cc.Color",
  3229. "r": 255,
  3230. "g": 255,
  3231. "b": 255,
  3232. "a": 255
  3233. },
  3234. "_spriteFrame": {
  3235. "__uuid__": "4ee1eafa-19bf-4ab1-b925-c2be7ed869b0@f9941",
  3236. "__expectedType__": "cc.SpriteFrame"
  3237. },
  3238. "_type": 0,
  3239. "_fillType": 0,
  3240. "_sizeMode": 0,
  3241. "_fillCenter": {
  3242. "__type__": "cc.Vec2",
  3243. "x": 0,
  3244. "y": 0
  3245. },
  3246. "_fillStart": 0,
  3247. "_fillRange": 0,
  3248. "_isTrimmedMode": true,
  3249. "_useGrayscale": false,
  3250. "_atlas": null,
  3251. "_id": "5f4RmZvxNE46ItjssYsrJ+"
  3252. },
  3253. {
  3254. "__type__": "cc.RigidBody2D",
  3255. "_name": "",
  3256. "_objFlags": 0,
  3257. "node": {
  3258. "__id__": 88
  3259. },
  3260. "_enabled": true,
  3261. "__prefab": null,
  3262. "enabledContactListener": true,
  3263. "bullet": false,
  3264. "awakeOnLoad": true,
  3265. "_group": 1,
  3266. "_type": 1,
  3267. "_allowSleep": true,
  3268. "_gravityScale": 0,
  3269. "_linearDamping": 0,
  3270. "_angularDamping": 0,
  3271. "_linearVelocity": {
  3272. "__type__": "cc.Vec2",
  3273. "x": 0,
  3274. "y": 0
  3275. },
  3276. "_angularVelocity": 0,
  3277. "_fixedRotation": false,
  3278. "_id": "08hJBDb71KLK6vCTkMJUyO"
  3279. },
  3280. {
  3281. "__type__": "cc.BoxCollider2D",
  3282. "_name": "",
  3283. "_objFlags": 0,
  3284. "node": {
  3285. "__id__": 88
  3286. },
  3287. "_enabled": true,
  3288. "__prefab": null,
  3289. "tag": 0,
  3290. "_group": 1,
  3291. "_density": 1,
  3292. "_sensor": false,
  3293. "_friction": 0,
  3294. "_restitution": 0,
  3295. "_offset": {
  3296. "__type__": "cc.Vec2",
  3297. "x": 0,
  3298. "y": 0
  3299. },
  3300. "_size": {
  3301. "__type__": "cc.Size",
  3302. "width": 94,
  3303. "height": 84
  3304. },
  3305. "_id": "d5+X+VyoNPG7ebAkyjJspt"
  3306. },
  3307. {
  3308. "__type__": "e73b7ahp2lGhrjbxX6jqP5m",
  3309. "_name": "",
  3310. "_objFlags": 0,
  3311. "node": {
  3312. "__id__": 88
  3313. },
  3314. "_enabled": true,
  3315. "__prefab": null,
  3316. "main": {
  3317. "__id__": 75
  3318. },
  3319. "_id": "04CWBnG+BEarYJX35Pzwxe"
  3320. },
  3321. {
  3322. "__type__": "cc.Button",
  3323. "_name": "",
  3324. "_objFlags": 0,
  3325. "node": {
  3326. "__id__": 95
  3327. },
  3328. "_enabled": true,
  3329. "__prefab": null,
  3330. "clickEvents": [],
  3331. "_interactable": true,
  3332. "_transition": 0,
  3333. "_normalColor": {
  3334. "__type__": "cc.Color",
  3335. "r": 214,
  3336. "g": 214,
  3337. "b": 214,
  3338. "a": 255
  3339. },
  3340. "_hoverColor": {
  3341. "__type__": "cc.Color",
  3342. "r": 211,
  3343. "g": 211,
  3344. "b": 211,
  3345. "a": 255
  3346. },
  3347. "_pressedColor": {
  3348. "__type__": "cc.Color",
  3349. "r": 255,
  3350. "g": 255,
  3351. "b": 255,
  3352. "a": 255
  3353. },
  3354. "_disabledColor": {
  3355. "__type__": "cc.Color",
  3356. "r": 124,
  3357. "g": 124,
  3358. "b": 124,
  3359. "a": 255
  3360. },
  3361. "_normalSprite": {
  3362. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3363. "__expectedType__": "cc.SpriteFrame"
  3364. },
  3365. "_hoverSprite": {
  3366. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3367. "__expectedType__": "cc.SpriteFrame"
  3368. },
  3369. "_pressedSprite": {
  3370. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3371. "__expectedType__": "cc.SpriteFrame"
  3372. },
  3373. "_disabledSprite": {
  3374. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3375. "__expectedType__": "cc.SpriteFrame"
  3376. },
  3377. "_duration": 0.1,
  3378. "_zoomScale": 1.2,
  3379. "_target": {
  3380. "__id__": 95
  3381. },
  3382. "_id": "24CBO1ykBESJfbISRYz0s1"
  3383. },
  3384. {
  3385. "__type__": "cc.Node",
  3386. "_name": "Button1",
  3387. "_objFlags": 0,
  3388. "_parent": {
  3389. "__id__": 17
  3390. },
  3391. "_children": [
  3392. {
  3393. "__id__": 96
  3394. }
  3395. ],
  3396. "_active": true,
  3397. "_components": [
  3398. {
  3399. "__id__": 99
  3400. },
  3401. {
  3402. "__id__": 100
  3403. },
  3404. {
  3405. "__id__": 94
  3406. }
  3407. ],
  3408. "_prefab": null,
  3409. "_lpos": {
  3410. "__type__": "cc.Vec3",
  3411. "x": -260,
  3412. "y": -235,
  3413. "z": 0
  3414. },
  3415. "_lrot": {
  3416. "__type__": "cc.Quat",
  3417. "x": 0,
  3418. "y": 0,
  3419. "z": 0,
  3420. "w": 1
  3421. },
  3422. "_lscale": {
  3423. "__type__": "cc.Vec3",
  3424. "x": 1,
  3425. "y": 1,
  3426. "z": 1
  3427. },
  3428. "_mobility": 0,
  3429. "_layer": 33554432,
  3430. "_euler": {
  3431. "__type__": "cc.Vec3",
  3432. "x": 0,
  3433. "y": 0,
  3434. "z": 0
  3435. },
  3436. "_id": "9exKU+84hIiKEm9ncm2/aY"
  3437. },
  3438. {
  3439. "__type__": "cc.Node",
  3440. "_name": "Label",
  3441. "_objFlags": 0,
  3442. "_parent": {
  3443. "__id__": 95
  3444. },
  3445. "_children": [],
  3446. "_active": true,
  3447. "_components": [
  3448. {
  3449. "__id__": 97
  3450. },
  3451. {
  3452. "__id__": 98
  3453. }
  3454. ],
  3455. "_prefab": null,
  3456. "_lpos": {
  3457. "__type__": "cc.Vec3",
  3458. "x": 0,
  3459. "y": 0,
  3460. "z": 0
  3461. },
  3462. "_lrot": {
  3463. "__type__": "cc.Quat",
  3464. "x": 0,
  3465. "y": 0,
  3466. "z": 0,
  3467. "w": 1
  3468. },
  3469. "_lscale": {
  3470. "__type__": "cc.Vec3",
  3471. "x": 1,
  3472. "y": 1,
  3473. "z": 1
  3474. },
  3475. "_mobility": 0,
  3476. "_layer": 33554432,
  3477. "_euler": {
  3478. "__type__": "cc.Vec3",
  3479. "x": 0,
  3480. "y": 0,
  3481. "z": 0
  3482. },
  3483. "_id": "3fYVRBlthADYKQRLa3QudW"
  3484. },
  3485. {
  3486. "__type__": "cc.UITransform",
  3487. "_name": "",
  3488. "_objFlags": 0,
  3489. "node": {
  3490. "__id__": 96
  3491. },
  3492. "_enabled": true,
  3493. "__prefab": null,
  3494. "_contentSize": {
  3495. "__type__": "cc.Size",
  3496. "width": 100,
  3497. "height": 40
  3498. },
  3499. "_anchorPoint": {
  3500. "__type__": "cc.Vec2",
  3501. "x": 0.5,
  3502. "y": 0.5
  3503. },
  3504. "_id": "6dKEvPV7lHQo8JcWlZ9WQE"
  3505. },
  3506. {
  3507. "__type__": "cc.Label",
  3508. "_name": "",
  3509. "_objFlags": 0,
  3510. "node": {
  3511. "__id__": 96
  3512. },
  3513. "_enabled": true,
  3514. "__prefab": null,
  3515. "_customMaterial": null,
  3516. "_srcBlendFactor": 2,
  3517. "_dstBlendFactor": 4,
  3518. "_color": {
  3519. "__type__": "cc.Color",
  3520. "r": 0,
  3521. "g": 0,
  3522. "b": 0,
  3523. "a": 255
  3524. },
  3525. "_string": "",
  3526. "_horizontalAlign": 1,
  3527. "_verticalAlign": 1,
  3528. "_actualFontSize": 20,
  3529. "_fontSize": 20,
  3530. "_fontFamily": "Arial",
  3531. "_lineHeight": 40,
  3532. "_overflow": 1,
  3533. "_enableWrapText": false,
  3534. "_font": null,
  3535. "_isSystemFontUsed": true,
  3536. "_spacingX": 0,
  3537. "_isItalic": false,
  3538. "_isBold": false,
  3539. "_isUnderline": false,
  3540. "_underlineHeight": 2,
  3541. "_cacheMode": 0,
  3542. "_id": "35zNnN+whB4pHBF65iCCRB"
  3543. },
  3544. {
  3545. "__type__": "cc.UITransform",
  3546. "_name": "",
  3547. "_objFlags": 0,
  3548. "node": {
  3549. "__id__": 95
  3550. },
  3551. "_enabled": true,
  3552. "__prefab": null,
  3553. "_contentSize": {
  3554. "__type__": "cc.Size",
  3555. "width": 150,
  3556. "height": 100
  3557. },
  3558. "_anchorPoint": {
  3559. "__type__": "cc.Vec2",
  3560. "x": 0.5,
  3561. "y": 0.5
  3562. },
  3563. "_id": "5bhgR4jsBCUZ8smvP5XRTH"
  3564. },
  3565. {
  3566. "__type__": "cc.Sprite",
  3567. "_name": "",
  3568. "_objFlags": 0,
  3569. "node": {
  3570. "__id__": 95
  3571. },
  3572. "_enabled": true,
  3573. "__prefab": null,
  3574. "_customMaterial": null,
  3575. "_srcBlendFactor": 2,
  3576. "_dstBlendFactor": 4,
  3577. "_color": {
  3578. "__type__": "cc.Color",
  3579. "r": 255,
  3580. "g": 190,
  3581. "b": 128,
  3582. "a": 255
  3583. },
  3584. "_spriteFrame": {
  3585. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3586. "__expectedType__": "cc.SpriteFrame"
  3587. },
  3588. "_type": 1,
  3589. "_fillType": 0,
  3590. "_sizeMode": 0,
  3591. "_fillCenter": {
  3592. "__type__": "cc.Vec2",
  3593. "x": 0,
  3594. "y": 0
  3595. },
  3596. "_fillStart": 0,
  3597. "_fillRange": 0,
  3598. "_isTrimmedMode": true,
  3599. "_useGrayscale": false,
  3600. "_atlas": null,
  3601. "_id": "0aJVNlhRJO05HP0bam51CC"
  3602. },
  3603. {
  3604. "__type__": "cc.Button",
  3605. "_name": "",
  3606. "_objFlags": 0,
  3607. "node": {
  3608. "__id__": 102
  3609. },
  3610. "_enabled": true,
  3611. "__prefab": null,
  3612. "clickEvents": [],
  3613. "_interactable": true,
  3614. "_transition": 0,
  3615. "_normalColor": {
  3616. "__type__": "cc.Color",
  3617. "r": 214,
  3618. "g": 214,
  3619. "b": 214,
  3620. "a": 255
  3621. },
  3622. "_hoverColor": {
  3623. "__type__": "cc.Color",
  3624. "r": 211,
  3625. "g": 211,
  3626. "b": 211,
  3627. "a": 255
  3628. },
  3629. "_pressedColor": {
  3630. "__type__": "cc.Color",
  3631. "r": 255,
  3632. "g": 255,
  3633. "b": 255,
  3634. "a": 255
  3635. },
  3636. "_disabledColor": {
  3637. "__type__": "cc.Color",
  3638. "r": 124,
  3639. "g": 124,
  3640. "b": 124,
  3641. "a": 255
  3642. },
  3643. "_normalSprite": {
  3644. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3645. "__expectedType__": "cc.SpriteFrame"
  3646. },
  3647. "_hoverSprite": {
  3648. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3649. "__expectedType__": "cc.SpriteFrame"
  3650. },
  3651. "_pressedSprite": {
  3652. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3653. "__expectedType__": "cc.SpriteFrame"
  3654. },
  3655. "_disabledSprite": {
  3656. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3657. "__expectedType__": "cc.SpriteFrame"
  3658. },
  3659. "_duration": 0.1,
  3660. "_zoomScale": 1.2,
  3661. "_target": {
  3662. "__id__": 102
  3663. },
  3664. "_id": "d4rq6yXwVBUbLDgy+bPG2i"
  3665. },
  3666. {
  3667. "__type__": "cc.Node",
  3668. "_name": "Button2",
  3669. "_objFlags": 0,
  3670. "_parent": {
  3671. "__id__": 17
  3672. },
  3673. "_children": [
  3674. {
  3675. "__id__": 103
  3676. }
  3677. ],
  3678. "_active": true,
  3679. "_components": [
  3680. {
  3681. "__id__": 106
  3682. },
  3683. {
  3684. "__id__": 107
  3685. },
  3686. {
  3687. "__id__": 101
  3688. }
  3689. ],
  3690. "_prefab": null,
  3691. "_lpos": {
  3692. "__type__": "cc.Vec3",
  3693. "x": -90,
  3694. "y": -235,
  3695. "z": 0
  3696. },
  3697. "_lrot": {
  3698. "__type__": "cc.Quat",
  3699. "x": 0,
  3700. "y": 0,
  3701. "z": 0,
  3702. "w": 1
  3703. },
  3704. "_lscale": {
  3705. "__type__": "cc.Vec3",
  3706. "x": 1,
  3707. "y": 1,
  3708. "z": 1
  3709. },
  3710. "_mobility": 0,
  3711. "_layer": 33554432,
  3712. "_euler": {
  3713. "__type__": "cc.Vec3",
  3714. "x": 0,
  3715. "y": 0,
  3716. "z": 0
  3717. },
  3718. "_id": "e3WnmQUDpMNoqgtXIwkDt2"
  3719. },
  3720. {
  3721. "__type__": "cc.Node",
  3722. "_name": "Label",
  3723. "_objFlags": 0,
  3724. "_parent": {
  3725. "__id__": 102
  3726. },
  3727. "_children": [],
  3728. "_active": true,
  3729. "_components": [
  3730. {
  3731. "__id__": 104
  3732. },
  3733. {
  3734. "__id__": 105
  3735. }
  3736. ],
  3737. "_prefab": null,
  3738. "_lpos": {
  3739. "__type__": "cc.Vec3",
  3740. "x": 0,
  3741. "y": 0,
  3742. "z": 0
  3743. },
  3744. "_lrot": {
  3745. "__type__": "cc.Quat",
  3746. "x": 0,
  3747. "y": 0,
  3748. "z": 0,
  3749. "w": 1
  3750. },
  3751. "_lscale": {
  3752. "__type__": "cc.Vec3",
  3753. "x": 1,
  3754. "y": 1,
  3755. "z": 1
  3756. },
  3757. "_mobility": 0,
  3758. "_layer": 33554432,
  3759. "_euler": {
  3760. "__type__": "cc.Vec3",
  3761. "x": 0,
  3762. "y": 0,
  3763. "z": 0
  3764. },
  3765. "_id": "44iIm6nrJMSJLhQvt4FbL6"
  3766. },
  3767. {
  3768. "__type__": "cc.UITransform",
  3769. "_name": "",
  3770. "_objFlags": 0,
  3771. "node": {
  3772. "__id__": 103
  3773. },
  3774. "_enabled": true,
  3775. "__prefab": null,
  3776. "_contentSize": {
  3777. "__type__": "cc.Size",
  3778. "width": 100,
  3779. "height": 40
  3780. },
  3781. "_anchorPoint": {
  3782. "__type__": "cc.Vec2",
  3783. "x": 0.5,
  3784. "y": 0.5
  3785. },
  3786. "_id": "0avFKtLYZJIL5ZCBCCLqTM"
  3787. },
  3788. {
  3789. "__type__": "cc.Label",
  3790. "_name": "",
  3791. "_objFlags": 0,
  3792. "node": {
  3793. "__id__": 103
  3794. },
  3795. "_enabled": true,
  3796. "__prefab": null,
  3797. "_customMaterial": null,
  3798. "_srcBlendFactor": 2,
  3799. "_dstBlendFactor": 4,
  3800. "_color": {
  3801. "__type__": "cc.Color",
  3802. "r": 0,
  3803. "g": 0,
  3804. "b": 0,
  3805. "a": 255
  3806. },
  3807. "_string": "",
  3808. "_horizontalAlign": 1,
  3809. "_verticalAlign": 1,
  3810. "_actualFontSize": 20,
  3811. "_fontSize": 20,
  3812. "_fontFamily": "Arial",
  3813. "_lineHeight": 40,
  3814. "_overflow": 1,
  3815. "_enableWrapText": false,
  3816. "_font": null,
  3817. "_isSystemFontUsed": true,
  3818. "_spacingX": 0,
  3819. "_isItalic": false,
  3820. "_isBold": false,
  3821. "_isUnderline": false,
  3822. "_underlineHeight": 2,
  3823. "_cacheMode": 0,
  3824. "_id": "feGu+UqgxIfZBMGw2mnrXU"
  3825. },
  3826. {
  3827. "__type__": "cc.UITransform",
  3828. "_name": "",
  3829. "_objFlags": 0,
  3830. "node": {
  3831. "__id__": 102
  3832. },
  3833. "_enabled": true,
  3834. "__prefab": null,
  3835. "_contentSize": {
  3836. "__type__": "cc.Size",
  3837. "width": 150,
  3838. "height": 100
  3839. },
  3840. "_anchorPoint": {
  3841. "__type__": "cc.Vec2",
  3842. "x": 0.5,
  3843. "y": 0.5
  3844. },
  3845. "_id": "adoXDY7s5O3ab61cljHSK0"
  3846. },
  3847. {
  3848. "__type__": "cc.Sprite",
  3849. "_name": "",
  3850. "_objFlags": 0,
  3851. "node": {
  3852. "__id__": 102
  3853. },
  3854. "_enabled": true,
  3855. "__prefab": null,
  3856. "_customMaterial": null,
  3857. "_srcBlendFactor": 2,
  3858. "_dstBlendFactor": 4,
  3859. "_color": {
  3860. "__type__": "cc.Color",
  3861. "r": 137,
  3862. "g": 240,
  3863. "b": 69,
  3864. "a": 255
  3865. },
  3866. "_spriteFrame": {
  3867. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3868. "__expectedType__": "cc.SpriteFrame"
  3869. },
  3870. "_type": 1,
  3871. "_fillType": 0,
  3872. "_sizeMode": 0,
  3873. "_fillCenter": {
  3874. "__type__": "cc.Vec2",
  3875. "x": 0,
  3876. "y": 0
  3877. },
  3878. "_fillStart": 0,
  3879. "_fillRange": 0,
  3880. "_isTrimmedMode": true,
  3881. "_useGrayscale": false,
  3882. "_atlas": null,
  3883. "_id": "b0oNOH4fJB8r7g27S9d5z/"
  3884. },
  3885. {
  3886. "__type__": "cc.Button",
  3887. "_name": "",
  3888. "_objFlags": 0,
  3889. "node": {
  3890. "__id__": 109
  3891. },
  3892. "_enabled": true,
  3893. "__prefab": null,
  3894. "clickEvents": [],
  3895. "_interactable": true,
  3896. "_transition": 0,
  3897. "_normalColor": {
  3898. "__type__": "cc.Color",
  3899. "r": 214,
  3900. "g": 214,
  3901. "b": 214,
  3902. "a": 255
  3903. },
  3904. "_hoverColor": {
  3905. "__type__": "cc.Color",
  3906. "r": 211,
  3907. "g": 211,
  3908. "b": 211,
  3909. "a": 255
  3910. },
  3911. "_pressedColor": {
  3912. "__type__": "cc.Color",
  3913. "r": 255,
  3914. "g": 255,
  3915. "b": 255,
  3916. "a": 255
  3917. },
  3918. "_disabledColor": {
  3919. "__type__": "cc.Color",
  3920. "r": 124,
  3921. "g": 124,
  3922. "b": 124,
  3923. "a": 255
  3924. },
  3925. "_normalSprite": {
  3926. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3927. "__expectedType__": "cc.SpriteFrame"
  3928. },
  3929. "_hoverSprite": {
  3930. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3931. "__expectedType__": "cc.SpriteFrame"
  3932. },
  3933. "_pressedSprite": {
  3934. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3935. "__expectedType__": "cc.SpriteFrame"
  3936. },
  3937. "_disabledSprite": {
  3938. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3939. "__expectedType__": "cc.SpriteFrame"
  3940. },
  3941. "_duration": 0.1,
  3942. "_zoomScale": 1.2,
  3943. "_target": {
  3944. "__id__": 109
  3945. },
  3946. "_id": "a9ZhHhDF5N+bmNVb+c4JMv"
  3947. },
  3948. {
  3949. "__type__": "cc.Node",
  3950. "_name": "Button3",
  3951. "_objFlags": 0,
  3952. "_parent": {
  3953. "__id__": 17
  3954. },
  3955. "_children": [
  3956. {
  3957. "__id__": 110
  3958. }
  3959. ],
  3960. "_active": true,
  3961. "_components": [
  3962. {
  3963. "__id__": 113
  3964. },
  3965. {
  3966. "__id__": 114
  3967. },
  3968. {
  3969. "__id__": 108
  3970. }
  3971. ],
  3972. "_prefab": null,
  3973. "_lpos": {
  3974. "__type__": "cc.Vec3",
  3975. "x": 80,
  3976. "y": -235,
  3977. "z": 0
  3978. },
  3979. "_lrot": {
  3980. "__type__": "cc.Quat",
  3981. "x": 0,
  3982. "y": 0,
  3983. "z": 0,
  3984. "w": 1
  3985. },
  3986. "_lscale": {
  3987. "__type__": "cc.Vec3",
  3988. "x": 1,
  3989. "y": 1,
  3990. "z": 1
  3991. },
  3992. "_mobility": 0,
  3993. "_layer": 33554432,
  3994. "_euler": {
  3995. "__type__": "cc.Vec3",
  3996. "x": 0,
  3997. "y": 0,
  3998. "z": 0
  3999. },
  4000. "_id": "41YuwwXitDvLEGSBsmBtRc"
  4001. },
  4002. {
  4003. "__type__": "cc.Node",
  4004. "_name": "Label",
  4005. "_objFlags": 0,
  4006. "_parent": {
  4007. "__id__": 109
  4008. },
  4009. "_children": [],
  4010. "_active": true,
  4011. "_components": [
  4012. {
  4013. "__id__": 111
  4014. },
  4015. {
  4016. "__id__": 112
  4017. }
  4018. ],
  4019. "_prefab": null,
  4020. "_lpos": {
  4021. "__type__": "cc.Vec3",
  4022. "x": 0,
  4023. "y": 0,
  4024. "z": 0
  4025. },
  4026. "_lrot": {
  4027. "__type__": "cc.Quat",
  4028. "x": 0,
  4029. "y": 0,
  4030. "z": 0,
  4031. "w": 1
  4032. },
  4033. "_lscale": {
  4034. "__type__": "cc.Vec3",
  4035. "x": 1,
  4036. "y": 1,
  4037. "z": 1
  4038. },
  4039. "_mobility": 0,
  4040. "_layer": 33554432,
  4041. "_euler": {
  4042. "__type__": "cc.Vec3",
  4043. "x": 0,
  4044. "y": 0,
  4045. "z": 0
  4046. },
  4047. "_id": "3bHGm9O2dKfYP1zvzkbcCD"
  4048. },
  4049. {
  4050. "__type__": "cc.UITransform",
  4051. "_name": "",
  4052. "_objFlags": 0,
  4053. "node": {
  4054. "__id__": 110
  4055. },
  4056. "_enabled": true,
  4057. "__prefab": null,
  4058. "_contentSize": {
  4059. "__type__": "cc.Size",
  4060. "width": 100,
  4061. "height": 40
  4062. },
  4063. "_anchorPoint": {
  4064. "__type__": "cc.Vec2",
  4065. "x": 0.5,
  4066. "y": 0.5
  4067. },
  4068. "_id": "b0+WxalyhGgrJHQ82MQ29D"
  4069. },
  4070. {
  4071. "__type__": "cc.Label",
  4072. "_name": "",
  4073. "_objFlags": 0,
  4074. "node": {
  4075. "__id__": 110
  4076. },
  4077. "_enabled": true,
  4078. "__prefab": null,
  4079. "_customMaterial": null,
  4080. "_srcBlendFactor": 2,
  4081. "_dstBlendFactor": 4,
  4082. "_color": {
  4083. "__type__": "cc.Color",
  4084. "r": 0,
  4085. "g": 0,
  4086. "b": 0,
  4087. "a": 255
  4088. },
  4089. "_string": "",
  4090. "_horizontalAlign": 1,
  4091. "_verticalAlign": 1,
  4092. "_actualFontSize": 20,
  4093. "_fontSize": 20,
  4094. "_fontFamily": "Arial",
  4095. "_lineHeight": 40,
  4096. "_overflow": 1,
  4097. "_enableWrapText": false,
  4098. "_font": null,
  4099. "_isSystemFontUsed": true,
  4100. "_spacingX": 0,
  4101. "_isItalic": false,
  4102. "_isBold": false,
  4103. "_isUnderline": false,
  4104. "_underlineHeight": 2,
  4105. "_cacheMode": 0,
  4106. "_id": "2eDG6tF8dF+JJyeB4yzc/e"
  4107. },
  4108. {
  4109. "__type__": "cc.UITransform",
  4110. "_name": "",
  4111. "_objFlags": 0,
  4112. "node": {
  4113. "__id__": 109
  4114. },
  4115. "_enabled": true,
  4116. "__prefab": null,
  4117. "_contentSize": {
  4118. "__type__": "cc.Size",
  4119. "width": 150,
  4120. "height": 100
  4121. },
  4122. "_anchorPoint": {
  4123. "__type__": "cc.Vec2",
  4124. "x": 0.5,
  4125. "y": 0.5
  4126. },
  4127. "_id": "24VjSl0oJGMaSOrlgv+9VG"
  4128. },
  4129. {
  4130. "__type__": "cc.Sprite",
  4131. "_name": "",
  4132. "_objFlags": 0,
  4133. "node": {
  4134. "__id__": 109
  4135. },
  4136. "_enabled": true,
  4137. "__prefab": null,
  4138. "_customMaterial": null,
  4139. "_srcBlendFactor": 2,
  4140. "_dstBlendFactor": 4,
  4141. "_color": {
  4142. "__type__": "cc.Color",
  4143. "r": 232,
  4144. "g": 100,
  4145. "b": 150,
  4146. "a": 255
  4147. },
  4148. "_spriteFrame": {
  4149. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4150. "__expectedType__": "cc.SpriteFrame"
  4151. },
  4152. "_type": 1,
  4153. "_fillType": 0,
  4154. "_sizeMode": 0,
  4155. "_fillCenter": {
  4156. "__type__": "cc.Vec2",
  4157. "x": 0,
  4158. "y": 0
  4159. },
  4160. "_fillStart": 0,
  4161. "_fillRange": 0,
  4162. "_isTrimmedMode": true,
  4163. "_useGrayscale": false,
  4164. "_atlas": null,
  4165. "_id": "c7trC1nadOKK87k31PKnJb"
  4166. },
  4167. {
  4168. "__type__": "cc.Button",
  4169. "_name": "",
  4170. "_objFlags": 0,
  4171. "node": {
  4172. "__id__": 116
  4173. },
  4174. "_enabled": true,
  4175. "__prefab": null,
  4176. "clickEvents": [],
  4177. "_interactable": true,
  4178. "_transition": 0,
  4179. "_normalColor": {
  4180. "__type__": "cc.Color",
  4181. "r": 214,
  4182. "g": 214,
  4183. "b": 214,
  4184. "a": 255
  4185. },
  4186. "_hoverColor": {
  4187. "__type__": "cc.Color",
  4188. "r": 211,
  4189. "g": 211,
  4190. "b": 211,
  4191. "a": 255
  4192. },
  4193. "_pressedColor": {
  4194. "__type__": "cc.Color",
  4195. "r": 255,
  4196. "g": 255,
  4197. "b": 255,
  4198. "a": 255
  4199. },
  4200. "_disabledColor": {
  4201. "__type__": "cc.Color",
  4202. "r": 124,
  4203. "g": 124,
  4204. "b": 124,
  4205. "a": 255
  4206. },
  4207. "_normalSprite": {
  4208. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4209. "__expectedType__": "cc.SpriteFrame"
  4210. },
  4211. "_hoverSprite": {
  4212. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4213. "__expectedType__": "cc.SpriteFrame"
  4214. },
  4215. "_pressedSprite": {
  4216. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  4217. "__expectedType__": "cc.SpriteFrame"
  4218. },
  4219. "_disabledSprite": {
  4220. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  4221. "__expectedType__": "cc.SpriteFrame"
  4222. },
  4223. "_duration": 0.1,
  4224. "_zoomScale": 1.2,
  4225. "_target": {
  4226. "__id__": 116
  4227. },
  4228. "_id": "15de3RKzVEa7m3bTcVHeMX"
  4229. },
  4230. {
  4231. "__type__": "cc.Node",
  4232. "_name": "Button4",
  4233. "_objFlags": 0,
  4234. "_parent": {
  4235. "__id__": 17
  4236. },
  4237. "_children": [
  4238. {
  4239. "__id__": 117
  4240. }
  4241. ],
  4242. "_active": true,
  4243. "_components": [
  4244. {
  4245. "__id__": 120
  4246. },
  4247. {
  4248. "__id__": 121
  4249. },
  4250. {
  4251. "__id__": 115
  4252. }
  4253. ],
  4254. "_prefab": null,
  4255. "_lpos": {
  4256. "__type__": "cc.Vec3",
  4257. "x": 250,
  4258. "y": -235,
  4259. "z": 0
  4260. },
  4261. "_lrot": {
  4262. "__type__": "cc.Quat",
  4263. "x": 0,
  4264. "y": 0,
  4265. "z": 0,
  4266. "w": 1
  4267. },
  4268. "_lscale": {
  4269. "__type__": "cc.Vec3",
  4270. "x": 1,
  4271. "y": 1,
  4272. "z": 1
  4273. },
  4274. "_mobility": 0,
  4275. "_layer": 33554432,
  4276. "_euler": {
  4277. "__type__": "cc.Vec3",
  4278. "x": 0,
  4279. "y": 0,
  4280. "z": 0
  4281. },
  4282. "_id": "3bSoWnSztGTZSzPgBiu1rc"
  4283. },
  4284. {
  4285. "__type__": "cc.Node",
  4286. "_name": "Label",
  4287. "_objFlags": 0,
  4288. "_parent": {
  4289. "__id__": 116
  4290. },
  4291. "_children": [],
  4292. "_active": true,
  4293. "_components": [
  4294. {
  4295. "__id__": 118
  4296. },
  4297. {
  4298. "__id__": 119
  4299. }
  4300. ],
  4301. "_prefab": null,
  4302. "_lpos": {
  4303. "__type__": "cc.Vec3",
  4304. "x": 0,
  4305. "y": 0,
  4306. "z": 0
  4307. },
  4308. "_lrot": {
  4309. "__type__": "cc.Quat",
  4310. "x": 0,
  4311. "y": 0,
  4312. "z": 0,
  4313. "w": 1
  4314. },
  4315. "_lscale": {
  4316. "__type__": "cc.Vec3",
  4317. "x": 1,
  4318. "y": 1,
  4319. "z": 1
  4320. },
  4321. "_mobility": 0,
  4322. "_layer": 33554432,
  4323. "_euler": {
  4324. "__type__": "cc.Vec3",
  4325. "x": 0,
  4326. "y": 0,
  4327. "z": 0
  4328. },
  4329. "_id": "6dFVKwxmJIAZe+IX/e7OVY"
  4330. },
  4331. {
  4332. "__type__": "cc.UITransform",
  4333. "_name": "",
  4334. "_objFlags": 0,
  4335. "node": {
  4336. "__id__": 117
  4337. },
  4338. "_enabled": true,
  4339. "__prefab": null,
  4340. "_contentSize": {
  4341. "__type__": "cc.Size",
  4342. "width": 100,
  4343. "height": 40
  4344. },
  4345. "_anchorPoint": {
  4346. "__type__": "cc.Vec2",
  4347. "x": 0.5,
  4348. "y": 0.5
  4349. },
  4350. "_id": "1eSU5/wk5Owb23Seg4t1/q"
  4351. },
  4352. {
  4353. "__type__": "cc.Label",
  4354. "_name": "",
  4355. "_objFlags": 0,
  4356. "node": {
  4357. "__id__": 117
  4358. },
  4359. "_enabled": true,
  4360. "__prefab": null,
  4361. "_customMaterial": null,
  4362. "_srcBlendFactor": 2,
  4363. "_dstBlendFactor": 4,
  4364. "_color": {
  4365. "__type__": "cc.Color",
  4366. "r": 0,
  4367. "g": 0,
  4368. "b": 0,
  4369. "a": 255
  4370. },
  4371. "_string": "",
  4372. "_horizontalAlign": 1,
  4373. "_verticalAlign": 1,
  4374. "_actualFontSize": 20,
  4375. "_fontSize": 20,
  4376. "_fontFamily": "Arial",
  4377. "_lineHeight": 40,
  4378. "_overflow": 1,
  4379. "_enableWrapText": false,
  4380. "_font": null,
  4381. "_isSystemFontUsed": true,
  4382. "_spacingX": 0,
  4383. "_isItalic": false,
  4384. "_isBold": false,
  4385. "_isUnderline": false,
  4386. "_underlineHeight": 2,
  4387. "_cacheMode": 0,
  4388. "_id": "cb9S2mveJMJraMFgJ8djby"
  4389. },
  4390. {
  4391. "__type__": "cc.UITransform",
  4392. "_name": "",
  4393. "_objFlags": 0,
  4394. "node": {
  4395. "__id__": 116
  4396. },
  4397. "_enabled": true,
  4398. "__prefab": null,
  4399. "_contentSize": {
  4400. "__type__": "cc.Size",
  4401. "width": 150,
  4402. "height": 100
  4403. },
  4404. "_anchorPoint": {
  4405. "__type__": "cc.Vec2",
  4406. "x": 0.5,
  4407. "y": 0.5
  4408. },
  4409. "_id": "39pt1UTnZH0qzZmV7jyt0k"
  4410. },
  4411. {
  4412. "__type__": "cc.Sprite",
  4413. "_name": "",
  4414. "_objFlags": 0,
  4415. "node": {
  4416. "__id__": 116
  4417. },
  4418. "_enabled": true,
  4419. "__prefab": null,
  4420. "_customMaterial": null,
  4421. "_srcBlendFactor": 2,
  4422. "_dstBlendFactor": 4,
  4423. "_color": {
  4424. "__type__": "cc.Color",
  4425. "r": 92,
  4426. "g": 168,
  4427. "b": 240,
  4428. "a": 255
  4429. },
  4430. "_spriteFrame": {
  4431. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  4432. "__expectedType__": "cc.SpriteFrame"
  4433. },
  4434. "_type": 1,
  4435. "_fillType": 0,
  4436. "_sizeMode": 0,
  4437. "_fillCenter": {
  4438. "__type__": "cc.Vec2",
  4439. "x": 0,
  4440. "y": 0
  4441. },
  4442. "_fillStart": 0,
  4443. "_fillRange": 0,
  4444. "_isTrimmedMode": true,
  4445. "_useGrayscale": false,
  4446. "_atlas": null,
  4447. "_id": "49KcWLXlVFmLcGhUgOAXu/"
  4448. },
  4449. {
  4450. "__type__": "cc.UITransform",
  4451. "_name": "",
  4452. "_objFlags": 0,
  4453. "node": {
  4454. "__id__": 30
  4455. },
  4456. "_enabled": true,
  4457. "__prefab": null,
  4458. "_contentSize": {
  4459. "__type__": "cc.Size",
  4460. "width": 1127.163708086785,
  4461. "height": 610
  4462. },
  4463. "_anchorPoint": {
  4464. "__type__": "cc.Vec2",
  4465. "x": 0.5,
  4466. "y": 0.5
  4467. },
  4468. "_id": "3ffXK5FMZNfq8jVf6aPzex"
  4469. },
  4470. {
  4471. "__type__": "cc.Mask",
  4472. "_name": "",
  4473. "_objFlags": 0,
  4474. "node": {
  4475. "__id__": 30
  4476. },
  4477. "_enabled": false,
  4478. "__prefab": null,
  4479. "_type": 0,
  4480. "_inverted": false,
  4481. "_segments": 64,
  4482. "_alphaThreshold": 0.1,
  4483. "_id": "39QzymKgBI37ssT8pNr1l5"
  4484. },
  4485. {
  4486. "__type__": "cc.Graphics",
  4487. "_name": "",
  4488. "_objFlags": 0,
  4489. "node": {
  4490. "__id__": 30
  4491. },
  4492. "_enabled": false,
  4493. "__prefab": null,
  4494. "_customMaterial": null,
  4495. "_srcBlendFactor": 2,
  4496. "_dstBlendFactor": 4,
  4497. "_color": {
  4498. "__type__": "cc.Color",
  4499. "r": 255,
  4500. "g": 255,
  4501. "b": 255,
  4502. "a": 255
  4503. },
  4504. "_lineWidth": 1,
  4505. "_strokeColor": {
  4506. "__type__": "cc.Color",
  4507. "r": 0,
  4508. "g": 0,
  4509. "b": 0,
  4510. "a": 255
  4511. },
  4512. "_lineJoin": 2,
  4513. "_lineCap": 0,
  4514. "_fillColor": {
  4515. "__type__": "cc.Color",
  4516. "r": 255,
  4517. "g": 255,
  4518. "b": 255,
  4519. "a": 0
  4520. },
  4521. "_miterLimit": 10,
  4522. "_id": "64YVTLscNJHJQEvldaiCDb"
  4523. },
  4524. {
  4525. "__type__": "cc.UITransform",
  4526. "_name": "",
  4527. "_objFlags": 0,
  4528. "node": {
  4529. "__id__": 17
  4530. },
  4531. "_enabled": true,
  4532. "__prefab": null,
  4533. "_contentSize": {
  4534. "__type__": "cc.Size",
  4535. "width": 1969.1871428571428,
  4536. "height": 1335.8895238095238
  4537. },
  4538. "_anchorPoint": {
  4539. "__type__": "cc.Vec2",
  4540. "x": 0.5,
  4541. "y": 0.5
  4542. },
  4543. "_id": "2bOPdRb71ELYsYlNQzBA8V"
  4544. },
  4545. {
  4546. "__type__": "cc.UITransform",
  4547. "_name": "",
  4548. "_objFlags": 0,
  4549. "node": {
  4550. "__id__": 16
  4551. },
  4552. "_enabled": true,
  4553. "__prefab": null,
  4554. "_contentSize": {
  4555. "__type__": "cc.Size",
  4556. "width": 2388,
  4557. "height": 1431
  4558. },
  4559. "_anchorPoint": {
  4560. "__type__": "cc.Vec2",
  4561. "x": 0.5,
  4562. "y": 0.5
  4563. },
  4564. "_id": "71S6gvp4pLt5q8H5Iso76v"
  4565. },
  4566. {
  4567. "__type__": "cc.Sprite",
  4568. "_name": "",
  4569. "_objFlags": 0,
  4570. "node": {
  4571. "__id__": 16
  4572. },
  4573. "_enabled": false,
  4574. "__prefab": null,
  4575. "_customMaterial": null,
  4576. "_srcBlendFactor": 2,
  4577. "_dstBlendFactor": 4,
  4578. "_color": {
  4579. "__type__": "cc.Color",
  4580. "r": 255,
  4581. "g": 255,
  4582. "b": 255,
  4583. "a": 255
  4584. },
  4585. "_spriteFrame": {
  4586. "__uuid__": "6ef8eee5-1154-4b28-b2e8-0dc0e87d1ebf@f9941",
  4587. "__expectedType__": "cc.SpriteFrame"
  4588. },
  4589. "_type": 0,
  4590. "_fillType": 0,
  4591. "_sizeMode": 0,
  4592. "_fillCenter": {
  4593. "__type__": "cc.Vec2",
  4594. "x": 0,
  4595. "y": 0
  4596. },
  4597. "_fillStart": 0,
  4598. "_fillRange": 0,
  4599. "_isTrimmedMode": true,
  4600. "_useGrayscale": false,
  4601. "_atlas": null,
  4602. "_id": "04GOZKOQJPDpD/mXW1gLOd"
  4603. },
  4604. {
  4605. "__type__": "cc.Widget",
  4606. "_name": "",
  4607. "_objFlags": 0,
  4608. "node": {
  4609. "__id__": 16
  4610. },
  4611. "_enabled": true,
  4612. "__prefab": null,
  4613. "_alignFlags": 45,
  4614. "_target": null,
  4615. "_left": 0,
  4616. "_right": 0,
  4617. "_top": 0,
  4618. "_bottom": 0,
  4619. "_horizontalCenter": 0,
  4620. "_verticalCenter": 0,
  4621. "_isAbsLeft": true,
  4622. "_isAbsRight": true,
  4623. "_isAbsTop": true,
  4624. "_isAbsBottom": true,
  4625. "_isAbsHorizontalCenter": true,
  4626. "_isAbsVerticalCenter": true,
  4627. "_originalWidth": 40,
  4628. "_originalHeight": 36,
  4629. "_alignMode": 2,
  4630. "_lockFlags": 0,
  4631. "_id": "74ChrXdk1DQJntaVX+sWg9"
  4632. },
  4633. {
  4634. "__type__": "cc.UITransform",
  4635. "_name": "",
  4636. "_objFlags": 0,
  4637. "node": {
  4638. "__id__": 15
  4639. },
  4640. "_enabled": true,
  4641. "__prefab": null,
  4642. "_contentSize": {
  4643. "__type__": "cc.Size",
  4644. "width": 2388,
  4645. "height": 1431
  4646. },
  4647. "_anchorPoint": {
  4648. "__type__": "cc.Vec2",
  4649. "x": 0.5,
  4650. "y": 0.5
  4651. },
  4652. "_id": "b6dpqfeGtPZKl2feyj0l48"
  4653. },
  4654. {
  4655. "__type__": "cc.Mask",
  4656. "_name": "",
  4657. "_objFlags": 0,
  4658. "node": {
  4659. "__id__": 15
  4660. },
  4661. "_enabled": true,
  4662. "__prefab": null,
  4663. "_type": 0,
  4664. "_inverted": false,
  4665. "_segments": 64,
  4666. "_alphaThreshold": 0.1,
  4667. "_id": "96O96xUe5GEZ4NPvgfyU0f"
  4668. },
  4669. {
  4670. "__type__": "cc.Graphics",
  4671. "_name": "",
  4672. "_objFlags": 0,
  4673. "node": {
  4674. "__id__": 15
  4675. },
  4676. "_enabled": true,
  4677. "__prefab": null,
  4678. "_customMaterial": null,
  4679. "_srcBlendFactor": 2,
  4680. "_dstBlendFactor": 4,
  4681. "_color": {
  4682. "__type__": "cc.Color",
  4683. "r": 255,
  4684. "g": 255,
  4685. "b": 255,
  4686. "a": 255
  4687. },
  4688. "_lineWidth": 1,
  4689. "_strokeColor": {
  4690. "__type__": "cc.Color",
  4691. "r": 0,
  4692. "g": 0,
  4693. "b": 0,
  4694. "a": 255
  4695. },
  4696. "_lineJoin": 2,
  4697. "_lineCap": 0,
  4698. "_fillColor": {
  4699. "__type__": "cc.Color",
  4700. "r": 255,
  4701. "g": 255,
  4702. "b": 255,
  4703. "a": 0
  4704. },
  4705. "_miterLimit": 10,
  4706. "_id": "50k+r1bC5HIq2kD2LGhXnG"
  4707. },
  4708. {
  4709. "__type__": "cc.UITransform",
  4710. "_name": "",
  4711. "_objFlags": 0,
  4712. "node": {
  4713. "__id__": 14
  4714. },
  4715. "_enabled": true,
  4716. "__prefab": null,
  4717. "_contentSize": {
  4718. "__type__": "cc.Size",
  4719. "width": 2388,
  4720. "height": 1431
  4721. },
  4722. "_anchorPoint": {
  4723. "__type__": "cc.Vec2",
  4724. "x": 0.5,
  4725. "y": 0.5
  4726. },
  4727. "_id": "2cVVHjDb1OK5Urf580PS6M"
  4728. },
  4729. {
  4730. "__type__": "cc.Widget",
  4731. "_name": "",
  4732. "_objFlags": 0,
  4733. "node": {
  4734. "__id__": 14
  4735. },
  4736. "_enabled": true,
  4737. "__prefab": null,
  4738. "_alignFlags": 45,
  4739. "_target": null,
  4740. "_left": 0,
  4741. "_right": 0,
  4742. "_top": 0,
  4743. "_bottom": 0,
  4744. "_horizontalCenter": 0,
  4745. "_verticalCenter": 0,
  4746. "_isAbsLeft": true,
  4747. "_isAbsRight": true,
  4748. "_isAbsTop": true,
  4749. "_isAbsBottom": true,
  4750. "_isAbsHorizontalCenter": true,
  4751. "_isAbsVerticalCenter": true,
  4752. "_originalWidth": 1532,
  4753. "_originalHeight": 1336,
  4754. "_alignMode": 2,
  4755. "_lockFlags": 0,
  4756. "_id": "9aFbAReTlG26QQjumwVtfz"
  4757. },
  4758. {
  4759. "__type__": "cc.Node",
  4760. "_name": "GameEndTip",
  4761. "_objFlags": 0,
  4762. "_parent": {
  4763. "__id__": 6
  4764. },
  4765. "_children": [
  4766. {
  4767. "__id__": 135
  4768. },
  4769. {
  4770. "__id__": 139
  4771. },
  4772. {
  4773. "__id__": 142
  4774. },
  4775. {
  4776. "__id__": 145
  4777. },
  4778. {
  4779. "__id__": 153
  4780. },
  4781. {
  4782. "__id__": 161
  4783. },
  4784. {
  4785. "__id__": 164
  4786. },
  4787. {
  4788. "__id__": 167
  4789. }
  4790. ],
  4791. "_active": false,
  4792. "_components": [
  4793. {
  4794. "__id__": 170
  4795. },
  4796. {
  4797. "__id__": 171
  4798. },
  4799. {
  4800. "__id__": 172
  4801. },
  4802. {
  4803. "__id__": 173
  4804. }
  4805. ],
  4806. "_prefab": null,
  4807. "_lpos": {
  4808. "__type__": "cc.Vec3",
  4809. "x": 0,
  4810. "y": 0,
  4811. "z": 0
  4812. },
  4813. "_lrot": {
  4814. "__type__": "cc.Quat",
  4815. "x": 0,
  4816. "y": 0,
  4817. "z": 0,
  4818. "w": 1
  4819. },
  4820. "_lscale": {
  4821. "__type__": "cc.Vec3",
  4822. "x": 0.976,
  4823. "y": 0.976,
  4824. "z": 0.976
  4825. },
  4826. "_mobility": 0,
  4827. "_layer": 33554432,
  4828. "_euler": {
  4829. "__type__": "cc.Vec3",
  4830. "x": 0,
  4831. "y": 0,
  4832. "z": 0
  4833. },
  4834. "_id": "93JjkViVVAV7PtAJqtBMLi"
  4835. },
  4836. {
  4837. "__type__": "cc.Node",
  4838. "_name": "bg",
  4839. "_objFlags": 0,
  4840. "_parent": {
  4841. "__id__": 134
  4842. },
  4843. "_children": [],
  4844. "_active": true,
  4845. "_components": [
  4846. {
  4847. "__id__": 136
  4848. },
  4849. {
  4850. "__id__": 137
  4851. },
  4852. {
  4853. "__id__": 138
  4854. }
  4855. ],
  4856. "_prefab": null,
  4857. "_lpos": {
  4858. "__type__": "cc.Vec3",
  4859. "x": 0,
  4860. "y": 0,
  4861. "z": 0
  4862. },
  4863. "_lrot": {
  4864. "__type__": "cc.Quat",
  4865. "x": 0,
  4866. "y": 0,
  4867. "z": 0,
  4868. "w": 1
  4869. },
  4870. "_lscale": {
  4871. "__type__": "cc.Vec3",
  4872. "x": 1,
  4873. "y": 1,
  4874. "z": 1
  4875. },
  4876. "_mobility": 0,
  4877. "_layer": 33554432,
  4878. "_euler": {
  4879. "__type__": "cc.Vec3",
  4880. "x": 0,
  4881. "y": 0,
  4882. "z": 0
  4883. },
  4884. "_id": "31XHDuimdJEI1t+6/L7yHe"
  4885. },
  4886. {
  4887. "__type__": "cc.UITransform",
  4888. "_name": "",
  4889. "_objFlags": 0,
  4890. "node": {
  4891. "__id__": 135
  4892. },
  4893. "_enabled": true,
  4894. "__prefab": null,
  4895. "_contentSize": {
  4896. "__type__": "cc.Size",
  4897. "width": 2461.8,
  4898. "height": 1733.3
  4899. },
  4900. "_anchorPoint": {
  4901. "__type__": "cc.Vec2",
  4902. "x": 0.5,
  4903. "y": 0.5
  4904. },
  4905. "_id": "acNFpC5ydPZKWEsOyMPdXO"
  4906. },
  4907. {
  4908. "__type__": "cc.Sprite",
  4909. "_name": "",
  4910. "_objFlags": 0,
  4911. "node": {
  4912. "__id__": 135
  4913. },
  4914. "_enabled": true,
  4915. "__prefab": null,
  4916. "_customMaterial": null,
  4917. "_srcBlendFactor": 2,
  4918. "_dstBlendFactor": 4,
  4919. "_color": {
  4920. "__type__": "cc.Color",
  4921. "r": 3,
  4922. "g": 0,
  4923. "b": 0,
  4924. "a": 176
  4925. },
  4926. "_spriteFrame": {
  4927. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  4928. "__expectedType__": "cc.SpriteFrame"
  4929. },
  4930. "_type": 1,
  4931. "_fillType": 0,
  4932. "_sizeMode": 0,
  4933. "_fillCenter": {
  4934. "__type__": "cc.Vec2",
  4935. "x": 0,
  4936. "y": 0
  4937. },
  4938. "_fillStart": 0,
  4939. "_fillRange": 0,
  4940. "_isTrimmedMode": true,
  4941. "_useGrayscale": false,
  4942. "_atlas": null,
  4943. "_id": "77V4tKsVJEX7s2w4moSgIh"
  4944. },
  4945. {
  4946. "__type__": "cc.BlockInputEvents",
  4947. "_name": "",
  4948. "_objFlags": 0,
  4949. "node": {
  4950. "__id__": 135
  4951. },
  4952. "_enabled": true,
  4953. "__prefab": null,
  4954. "_id": "96mc2BGyFA77T4zTAlZavg"
  4955. },
  4956. {
  4957. "__type__": "cc.Node",
  4958. "_name": "Sprite",
  4959. "_objFlags": 0,
  4960. "_parent": {
  4961. "__id__": 134
  4962. },
  4963. "_children": [],
  4964. "_active": true,
  4965. "_components": [
  4966. {
  4967. "__id__": 140
  4968. },
  4969. {
  4970. "__id__": 141
  4971. }
  4972. ],
  4973. "_prefab": null,
  4974. "_lpos": {
  4975. "__type__": "cc.Vec3",
  4976. "x": 0,
  4977. "y": -18.761,
  4978. "z": 0
  4979. },
  4980. "_lrot": {
  4981. "__type__": "cc.Quat",
  4982. "x": 0,
  4983. "y": 0,
  4984. "z": 0,
  4985. "w": 1
  4986. },
  4987. "_lscale": {
  4988. "__type__": "cc.Vec3",
  4989. "x": 1,
  4990. "y": 1,
  4991. "z": 1
  4992. },
  4993. "_mobility": 0,
  4994. "_layer": 33554432,
  4995. "_euler": {
  4996. "__type__": "cc.Vec3",
  4997. "x": 0,
  4998. "y": 0,
  4999. "z": 0
  5000. },
  5001. "_id": "9fs+apmJpJroKm3/UD+5uF"
  5002. },
  5003. {
  5004. "__type__": "cc.UITransform",
  5005. "_name": "",
  5006. "_objFlags": 0,
  5007. "node": {
  5008. "__id__": 139
  5009. },
  5010. "_enabled": true,
  5011. "__prefab": null,
  5012. "_contentSize": {
  5013. "__type__": "cc.Size",
  5014. "width": 1311,
  5015. "height": 806
  5016. },
  5017. "_anchorPoint": {
  5018. "__type__": "cc.Vec2",
  5019. "x": 0.5,
  5020. "y": 0.5
  5021. },
  5022. "_id": "6frXPnxxJArJzX27dh8uck"
  5023. },
  5024. {
  5025. "__type__": "cc.Sprite",
  5026. "_name": "",
  5027. "_objFlags": 0,
  5028. "node": {
  5029. "__id__": 139
  5030. },
  5031. "_enabled": true,
  5032. "__prefab": null,
  5033. "_customMaterial": null,
  5034. "_srcBlendFactor": 2,
  5035. "_dstBlendFactor": 4,
  5036. "_color": {
  5037. "__type__": "cc.Color",
  5038. "r": 255,
  5039. "g": 255,
  5040. "b": 255,
  5041. "a": 255
  5042. },
  5043. "_spriteFrame": {
  5044. "__uuid__": "a372d40f-413b-48e1-ab83-223f279a207d@f9941",
  5045. "__expectedType__": "cc.SpriteFrame"
  5046. },
  5047. "_type": 0,
  5048. "_fillType": 0,
  5049. "_sizeMode": 1,
  5050. "_fillCenter": {
  5051. "__type__": "cc.Vec2",
  5052. "x": 0,
  5053. "y": 0
  5054. },
  5055. "_fillStart": 0,
  5056. "_fillRange": 0,
  5057. "_isTrimmedMode": true,
  5058. "_useGrayscale": false,
  5059. "_atlas": null,
  5060. "_id": "42+SJdTHJHfaszGgbXO9S7"
  5061. },
  5062. {
  5063. "__type__": "cc.Node",
  5064. "_name": "Label",
  5065. "_objFlags": 0,
  5066. "_parent": {
  5067. "__id__": 134
  5068. },
  5069. "_children": [],
  5070. "_active": true,
  5071. "_components": [
  5072. {
  5073. "__id__": 143
  5074. },
  5075. {
  5076. "__id__": 144
  5077. }
  5078. ],
  5079. "_prefab": null,
  5080. "_lpos": {
  5081. "__type__": "cc.Vec3",
  5082. "x": -27.538,
  5083. "y": 127.951,
  5084. "z": 0
  5085. },
  5086. "_lrot": {
  5087. "__type__": "cc.Quat",
  5088. "x": 0,
  5089. "y": 0,
  5090. "z": 0,
  5091. "w": 1
  5092. },
  5093. "_lscale": {
  5094. "__type__": "cc.Vec3",
  5095. "x": 1,
  5096. "y": 1,
  5097. "z": 1
  5098. },
  5099. "_mobility": 0,
  5100. "_layer": 33554432,
  5101. "_euler": {
  5102. "__type__": "cc.Vec3",
  5103. "x": 0,
  5104. "y": 0,
  5105. "z": 0
  5106. },
  5107. "_id": "683vYYXVNMG4zDSZ2ZL/2x"
  5108. },
  5109. {
  5110. "__type__": "cc.UITransform",
  5111. "_name": "",
  5112. "_objFlags": 0,
  5113. "node": {
  5114. "__id__": 142
  5115. },
  5116. "_enabled": true,
  5117. "__prefab": null,
  5118. "_contentSize": {
  5119. "__type__": "cc.Size",
  5120. "width": 560.454,
  5121. "height": 214.07999999999998
  5122. },
  5123. "_anchorPoint": {
  5124. "__type__": "cc.Vec2",
  5125. "x": 0.5,
  5126. "y": 0.5
  5127. },
  5128. "_id": "4bvdCXN2BJy4+tYUB808Ck"
  5129. },
  5130. {
  5131. "__type__": "cc.Label",
  5132. "_name": "",
  5133. "_objFlags": 0,
  5134. "node": {
  5135. "__id__": 142
  5136. },
  5137. "_enabled": true,
  5138. "__prefab": null,
  5139. "_customMaterial": null,
  5140. "_srcBlendFactor": 2,
  5141. "_dstBlendFactor": 4,
  5142. "_color": {
  5143. "__type__": "cc.Color",
  5144. "r": 169,
  5145. "g": 79,
  5146. "b": 9,
  5147. "a": 255
  5148. },
  5149. "_string": "当前关卡:第1关",
  5150. "_horizontalAlign": 1,
  5151. "_verticalAlign": 1,
  5152. "_actualFontSize": 65,
  5153. "_fontSize": 65,
  5154. "_fontFamily": "Arial",
  5155. "_lineHeight": 100,
  5156. "_overflow": 1,
  5157. "_enableWrapText": true,
  5158. "_font": null,
  5159. "_isSystemFontUsed": true,
  5160. "_spacingX": 0,
  5161. "_isItalic": false,
  5162. "_isBold": true,
  5163. "_isUnderline": false,
  5164. "_underlineHeight": 2,
  5165. "_cacheMode": 0,
  5166. "_id": "f9AYjkkhBO3LqvM/euMVoh"
  5167. },
  5168. {
  5169. "__type__": "cc.Node",
  5170. "_name": "BackHome",
  5171. "_objFlags": 0,
  5172. "_parent": {
  5173. "__id__": 134
  5174. },
  5175. "_children": [
  5176. {
  5177. "__id__": 146
  5178. }
  5179. ],
  5180. "_active": true,
  5181. "_components": [
  5182. {
  5183. "__id__": 149
  5184. },
  5185. {
  5186. "__id__": 150
  5187. },
  5188. {
  5189. "__id__": 151
  5190. }
  5191. ],
  5192. "_prefab": null,
  5193. "_lpos": {
  5194. "__type__": "cc.Vec3",
  5195. "x": -291.21,
  5196. "y": -267.351,
  5197. "z": 0
  5198. },
  5199. "_lrot": {
  5200. "__type__": "cc.Quat",
  5201. "x": 0,
  5202. "y": 0,
  5203. "z": 0,
  5204. "w": 1
  5205. },
  5206. "_lscale": {
  5207. "__type__": "cc.Vec3",
  5208. "x": 1,
  5209. "y": 1,
  5210. "z": 1
  5211. },
  5212. "_mobility": 0,
  5213. "_layer": 33554432,
  5214. "_euler": {
  5215. "__type__": "cc.Vec3",
  5216. "x": 0,
  5217. "y": 0,
  5218. "z": 0
  5219. },
  5220. "_id": "adrsQJwhpLvKCA0edRC9ep"
  5221. },
  5222. {
  5223. "__type__": "cc.Node",
  5224. "_name": "Label",
  5225. "_objFlags": 512,
  5226. "_parent": {
  5227. "__id__": 145
  5228. },
  5229. "_children": [],
  5230. "_active": true,
  5231. "_components": [
  5232. {
  5233. "__id__": 147
  5234. },
  5235. {
  5236. "__id__": 148
  5237. }
  5238. ],
  5239. "_prefab": null,
  5240. "_lpos": {
  5241. "__type__": "cc.Vec3",
  5242. "x": 1.5368852459016438,
  5243. "y": 6.147540983606557,
  5244. "z": 0
  5245. },
  5246. "_lrot": {
  5247. "__type__": "cc.Quat",
  5248. "x": 0,
  5249. "y": 0,
  5250. "z": 0,
  5251. "w": 1
  5252. },
  5253. "_lscale": {
  5254. "__type__": "cc.Vec3",
  5255. "x": 1,
  5256. "y": 1,
  5257. "z": 1
  5258. },
  5259. "_mobility": 0,
  5260. "_layer": 33554432,
  5261. "_euler": {
  5262. "__type__": "cc.Vec3",
  5263. "x": 0,
  5264. "y": 0,
  5265. "z": 0
  5266. },
  5267. "_id": "3fEW57U69K040Vzc1siZdR"
  5268. },
  5269. {
  5270. "__type__": "cc.UITransform",
  5271. "_name": "",
  5272. "_objFlags": 0,
  5273. "node": {
  5274. "__id__": 146
  5275. },
  5276. "_enabled": true,
  5277. "__prefab": null,
  5278. "_contentSize": {
  5279. "__type__": "cc.Size",
  5280. "width": 312.09016393442624,
  5281. "height": 70.73770491803279
  5282. },
  5283. "_anchorPoint": {
  5284. "__type__": "cc.Vec2",
  5285. "x": 0.5,
  5286. "y": 0.5
  5287. },
  5288. "_id": "35RGH0cq1In4hdFQ96Zn3b"
  5289. },
  5290. {
  5291. "__type__": "cc.Label",
  5292. "_name": "",
  5293. "_objFlags": 0,
  5294. "node": {
  5295. "__id__": 146
  5296. },
  5297. "_enabled": true,
  5298. "__prefab": null,
  5299. "_customMaterial": null,
  5300. "_srcBlendFactor": 2,
  5301. "_dstBlendFactor": 4,
  5302. "_color": {
  5303. "__type__": "cc.Color",
  5304. "r": 255,
  5305. "g": 255,
  5306. "b": 255,
  5307. "a": 255
  5308. },
  5309. "_string": "返回首页",
  5310. "_horizontalAlign": 1,
  5311. "_verticalAlign": 1,
  5312. "_actualFontSize": 55,
  5313. "_fontSize": 55,
  5314. "_fontFamily": "Arial",
  5315. "_lineHeight": 70,
  5316. "_overflow": 1,
  5317. "_enableWrapText": false,
  5318. "_font": null,
  5319. "_isSystemFontUsed": true,
  5320. "_spacingX": 0,
  5321. "_isItalic": false,
  5322. "_isBold": false,
  5323. "_isUnderline": false,
  5324. "_underlineHeight": 2,
  5325. "_cacheMode": 0,
  5326. "_id": "feqqaW3iJPF7vftQ39pQEC"
  5327. },
  5328. {
  5329. "__type__": "cc.UITransform",
  5330. "_name": "",
  5331. "_objFlags": 0,
  5332. "node": {
  5333. "__id__": 145
  5334. },
  5335. "_enabled": true,
  5336. "__prefab": null,
  5337. "_contentSize": {
  5338. "__type__": "cc.Size",
  5339. "width": 411,
  5340. "height": 144
  5341. },
  5342. "_anchorPoint": {
  5343. "__type__": "cc.Vec2",
  5344. "x": 0.5,
  5345. "y": 0.5
  5346. },
  5347. "_id": "0d3afojiRHfIoSM5LDTv3k"
  5348. },
  5349. {
  5350. "__type__": "cc.Sprite",
  5351. "_name": "",
  5352. "_objFlags": 0,
  5353. "node": {
  5354. "__id__": 145
  5355. },
  5356. "_enabled": true,
  5357. "__prefab": null,
  5358. "_customMaterial": null,
  5359. "_srcBlendFactor": 2,
  5360. "_dstBlendFactor": 4,
  5361. "_color": {
  5362. "__type__": "cc.Color",
  5363. "r": 255,
  5364. "g": 255,
  5365. "b": 255,
  5366. "a": 255
  5367. },
  5368. "_spriteFrame": {
  5369. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5370. "__expectedType__": "cc.SpriteFrame"
  5371. },
  5372. "_type": 1,
  5373. "_fillType": 0,
  5374. "_sizeMode": 0,
  5375. "_fillCenter": {
  5376. "__type__": "cc.Vec2",
  5377. "x": 0,
  5378. "y": 0
  5379. },
  5380. "_fillStart": 0,
  5381. "_fillRange": 0,
  5382. "_isTrimmedMode": true,
  5383. "_useGrayscale": false,
  5384. "_atlas": null,
  5385. "_id": "b5ibidQGZOda4qgn015afs"
  5386. },
  5387. {
  5388. "__type__": "cc.Button",
  5389. "_name": "",
  5390. "_objFlags": 0,
  5391. "node": {
  5392. "__id__": 145
  5393. },
  5394. "_enabled": true,
  5395. "__prefab": null,
  5396. "clickEvents": [
  5397. {
  5398. "__id__": 152
  5399. }
  5400. ],
  5401. "_interactable": true,
  5402. "_transition": 2,
  5403. "_normalColor": {
  5404. "__type__": "cc.Color",
  5405. "r": 214,
  5406. "g": 214,
  5407. "b": 214,
  5408. "a": 255
  5409. },
  5410. "_hoverColor": {
  5411. "__type__": "cc.Color",
  5412. "r": 211,
  5413. "g": 211,
  5414. "b": 211,
  5415. "a": 255
  5416. },
  5417. "_pressedColor": {
  5418. "__type__": "cc.Color",
  5419. "r": 255,
  5420. "g": 255,
  5421. "b": 255,
  5422. "a": 255
  5423. },
  5424. "_disabledColor": {
  5425. "__type__": "cc.Color",
  5426. "r": 124,
  5427. "g": 124,
  5428. "b": 124,
  5429. "a": 255
  5430. },
  5431. "_normalSprite": {
  5432. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5433. "__expectedType__": "cc.SpriteFrame"
  5434. },
  5435. "_hoverSprite": {
  5436. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5437. "__expectedType__": "cc.SpriteFrame"
  5438. },
  5439. "_pressedSprite": {
  5440. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5441. "__expectedType__": "cc.SpriteFrame"
  5442. },
  5443. "_disabledSprite": {
  5444. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5445. "__expectedType__": "cc.SpriteFrame"
  5446. },
  5447. "_duration": 0.1,
  5448. "_zoomScale": 1.2,
  5449. "_target": {
  5450. "__id__": 145
  5451. },
  5452. "_id": "2ewEGO+npD5Yi774ZON+O8"
  5453. },
  5454. {
  5455. "__type__": "cc.ClickEvent",
  5456. "target": {
  5457. "__id__": 134
  5458. },
  5459. "component": "",
  5460. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  5461. "handler": "backHomeBtn",
  5462. "customEventData": ""
  5463. },
  5464. {
  5465. "__type__": "cc.Node",
  5466. "_name": "EnterGameBtn",
  5467. "_objFlags": 0,
  5468. "_parent": {
  5469. "__id__": 134
  5470. },
  5471. "_children": [
  5472. {
  5473. "__id__": 154
  5474. }
  5475. ],
  5476. "_active": true,
  5477. "_components": [
  5478. {
  5479. "__id__": 157
  5480. },
  5481. {
  5482. "__id__": 158
  5483. },
  5484. {
  5485. "__id__": 159
  5486. }
  5487. ],
  5488. "_prefab": null,
  5489. "_lpos": {
  5490. "__type__": "cc.Vec3",
  5491. "x": 274.528,
  5492. "y": -267.351,
  5493. "z": 0
  5494. },
  5495. "_lrot": {
  5496. "__type__": "cc.Quat",
  5497. "x": 0,
  5498. "y": 0,
  5499. "z": 0,
  5500. "w": 1
  5501. },
  5502. "_lscale": {
  5503. "__type__": "cc.Vec3",
  5504. "x": 1,
  5505. "y": 1,
  5506. "z": 1
  5507. },
  5508. "_mobility": 0,
  5509. "_layer": 33554432,
  5510. "_euler": {
  5511. "__type__": "cc.Vec3",
  5512. "x": 0,
  5513. "y": 0,
  5514. "z": 0
  5515. },
  5516. "_id": "d96f/sKyhH8pWYrtD2NvpM"
  5517. },
  5518. {
  5519. "__type__": "cc.Node",
  5520. "_name": "Label",
  5521. "_objFlags": 512,
  5522. "_parent": {
  5523. "__id__": 153
  5524. },
  5525. "_children": [],
  5526. "_active": true,
  5527. "_components": [
  5528. {
  5529. "__id__": 155
  5530. },
  5531. {
  5532. "__id__": 156
  5533. }
  5534. ],
  5535. "_prefab": null,
  5536. "_lpos": {
  5537. "__type__": "cc.Vec3",
  5538. "x": 1.5368852459016438,
  5539. "y": 6.147540983606557,
  5540. "z": 0
  5541. },
  5542. "_lrot": {
  5543. "__type__": "cc.Quat",
  5544. "x": 0,
  5545. "y": 0,
  5546. "z": 0,
  5547. "w": 1
  5548. },
  5549. "_lscale": {
  5550. "__type__": "cc.Vec3",
  5551. "x": 1,
  5552. "y": 1,
  5553. "z": 1
  5554. },
  5555. "_mobility": 0,
  5556. "_layer": 33554432,
  5557. "_euler": {
  5558. "__type__": "cc.Vec3",
  5559. "x": 0,
  5560. "y": 0,
  5561. "z": 0
  5562. },
  5563. "_id": "1foVSXWopEjbWb7Y58M752"
  5564. },
  5565. {
  5566. "__type__": "cc.UITransform",
  5567. "_name": "",
  5568. "_objFlags": 0,
  5569. "node": {
  5570. "__id__": 154
  5571. },
  5572. "_enabled": true,
  5573. "__prefab": null,
  5574. "_contentSize": {
  5575. "__type__": "cc.Size",
  5576. "width": 312.09016393442624,
  5577. "height": 70.73770491803279
  5578. },
  5579. "_anchorPoint": {
  5580. "__type__": "cc.Vec2",
  5581. "x": 0.5,
  5582. "y": 0.5
  5583. },
  5584. "_id": "bbGJuCyZNC/Z6g8wMi8fTg"
  5585. },
  5586. {
  5587. "__type__": "cc.Label",
  5588. "_name": "",
  5589. "_objFlags": 0,
  5590. "node": {
  5591. "__id__": 154
  5592. },
  5593. "_enabled": true,
  5594. "__prefab": null,
  5595. "_customMaterial": null,
  5596. "_srcBlendFactor": 2,
  5597. "_dstBlendFactor": 4,
  5598. "_color": {
  5599. "__type__": "cc.Color",
  5600. "r": 255,
  5601. "g": 255,
  5602. "b": 255,
  5603. "a": 255
  5604. },
  5605. "_string": "下一关",
  5606. "_horizontalAlign": 1,
  5607. "_verticalAlign": 1,
  5608. "_actualFontSize": 55,
  5609. "_fontSize": 55,
  5610. "_fontFamily": "Arial",
  5611. "_lineHeight": 70,
  5612. "_overflow": 1,
  5613. "_enableWrapText": false,
  5614. "_font": null,
  5615. "_isSystemFontUsed": true,
  5616. "_spacingX": 0,
  5617. "_isItalic": false,
  5618. "_isBold": false,
  5619. "_isUnderline": false,
  5620. "_underlineHeight": 2,
  5621. "_cacheMode": 0,
  5622. "_id": "66MvUFQAZAgoxN7VIo9CQx"
  5623. },
  5624. {
  5625. "__type__": "cc.UITransform",
  5626. "_name": "",
  5627. "_objFlags": 0,
  5628. "node": {
  5629. "__id__": 153
  5630. },
  5631. "_enabled": true,
  5632. "__prefab": null,
  5633. "_contentSize": {
  5634. "__type__": "cc.Size",
  5635. "width": 411,
  5636. "height": 144
  5637. },
  5638. "_anchorPoint": {
  5639. "__type__": "cc.Vec2",
  5640. "x": 0.5,
  5641. "y": 0.5
  5642. },
  5643. "_id": "3e6wJfzD1G+LRjhvK36HjE"
  5644. },
  5645. {
  5646. "__type__": "cc.Sprite",
  5647. "_name": "",
  5648. "_objFlags": 0,
  5649. "node": {
  5650. "__id__": 153
  5651. },
  5652. "_enabled": true,
  5653. "__prefab": null,
  5654. "_customMaterial": null,
  5655. "_srcBlendFactor": 2,
  5656. "_dstBlendFactor": 4,
  5657. "_color": {
  5658. "__type__": "cc.Color",
  5659. "r": 255,
  5660. "g": 255,
  5661. "b": 255,
  5662. "a": 255
  5663. },
  5664. "_spriteFrame": {
  5665. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  5666. "__expectedType__": "cc.SpriteFrame"
  5667. },
  5668. "_type": 1,
  5669. "_fillType": 0,
  5670. "_sizeMode": 0,
  5671. "_fillCenter": {
  5672. "__type__": "cc.Vec2",
  5673. "x": 0,
  5674. "y": 0
  5675. },
  5676. "_fillStart": 0,
  5677. "_fillRange": 0,
  5678. "_isTrimmedMode": true,
  5679. "_useGrayscale": false,
  5680. "_atlas": null,
  5681. "_id": "49stwRG7xGy6/NfKKXONkv"
  5682. },
  5683. {
  5684. "__type__": "cc.Button",
  5685. "_name": "",
  5686. "_objFlags": 0,
  5687. "node": {
  5688. "__id__": 153
  5689. },
  5690. "_enabled": true,
  5691. "__prefab": null,
  5692. "clickEvents": [
  5693. {
  5694. "__id__": 160
  5695. }
  5696. ],
  5697. "_interactable": true,
  5698. "_transition": 2,
  5699. "_normalColor": {
  5700. "__type__": "cc.Color",
  5701. "r": 214,
  5702. "g": 214,
  5703. "b": 214,
  5704. "a": 255
  5705. },
  5706. "_hoverColor": {
  5707. "__type__": "cc.Color",
  5708. "r": 211,
  5709. "g": 211,
  5710. "b": 211,
  5711. "a": 255
  5712. },
  5713. "_pressedColor": {
  5714. "__type__": "cc.Color",
  5715. "r": 255,
  5716. "g": 255,
  5717. "b": 255,
  5718. "a": 255
  5719. },
  5720. "_disabledColor": {
  5721. "__type__": "cc.Color",
  5722. "r": 124,
  5723. "g": 124,
  5724. "b": 124,
  5725. "a": 255
  5726. },
  5727. "_normalSprite": {
  5728. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  5729. "__expectedType__": "cc.SpriteFrame"
  5730. },
  5731. "_hoverSprite": {
  5732. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  5733. "__expectedType__": "cc.SpriteFrame"
  5734. },
  5735. "_pressedSprite": {
  5736. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  5737. "__expectedType__": "cc.SpriteFrame"
  5738. },
  5739. "_disabledSprite": {
  5740. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  5741. "__expectedType__": "cc.SpriteFrame"
  5742. },
  5743. "_duration": 0.1,
  5744. "_zoomScale": 1.2,
  5745. "_target": {
  5746. "__id__": 153
  5747. },
  5748. "_id": "47RANVaJlKX53eA7d96CEb"
  5749. },
  5750. {
  5751. "__type__": "cc.ClickEvent",
  5752. "target": {
  5753. "__id__": 134
  5754. },
  5755. "component": "",
  5756. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  5757. "handler": "levelBtn",
  5758. "customEventData": ""
  5759. },
  5760. {
  5761. "__type__": "cc.Node",
  5762. "_name": "curLevelScore",
  5763. "_objFlags": 0,
  5764. "_parent": {
  5765. "__id__": 134
  5766. },
  5767. "_children": [],
  5768. "_active": true,
  5769. "_components": [
  5770. {
  5771. "__id__": 162
  5772. },
  5773. {
  5774. "__id__": 163
  5775. }
  5776. ],
  5777. "_prefab": null,
  5778. "_lpos": {
  5779. "__type__": "cc.Vec3",
  5780. "x": 360.28,
  5781. "y": -41.767,
  5782. "z": 0
  5783. },
  5784. "_lrot": {
  5785. "__type__": "cc.Quat",
  5786. "x": 0,
  5787. "y": 0,
  5788. "z": 0,
  5789. "w": 1
  5790. },
  5791. "_lscale": {
  5792. "__type__": "cc.Vec3",
  5793. "x": 1,
  5794. "y": 1,
  5795. "z": 1
  5796. },
  5797. "_mobility": 0,
  5798. "_layer": 33554432,
  5799. "_euler": {
  5800. "__type__": "cc.Vec3",
  5801. "x": 0,
  5802. "y": 0,
  5803. "z": 0
  5804. },
  5805. "_id": "c2t2qam5FJSa7f+VRY4xwL"
  5806. },
  5807. {
  5808. "__type__": "cc.UITransform",
  5809. "_name": "",
  5810. "_objFlags": 0,
  5811. "node": {
  5812. "__id__": 161
  5813. },
  5814. "_enabled": true,
  5815. "__prefab": null,
  5816. "_contentSize": {
  5817. "__type__": "cc.Size",
  5818. "width": 560.454,
  5819. "height": 214.07999999999998
  5820. },
  5821. "_anchorPoint": {
  5822. "__type__": "cc.Vec2",
  5823. "x": 0.5,
  5824. "y": 0.5
  5825. },
  5826. "_id": "54iE2ohRhF4ovuxzUVzZli"
  5827. },
  5828. {
  5829. "__type__": "cc.Label",
  5830. "_name": "",
  5831. "_objFlags": 0,
  5832. "node": {
  5833. "__id__": 161
  5834. },
  5835. "_enabled": true,
  5836. "__prefab": null,
  5837. "_customMaterial": null,
  5838. "_srcBlendFactor": 2,
  5839. "_dstBlendFactor": 4,
  5840. "_color": {
  5841. "__type__": "cc.Color",
  5842. "r": 169,
  5843. "g": 79,
  5844. "b": 9,
  5845. "a": 255
  5846. },
  5847. "_string": "本关得分:1",
  5848. "_horizontalAlign": 0,
  5849. "_verticalAlign": 1,
  5850. "_actualFontSize": 60,
  5851. "_fontSize": 60,
  5852. "_fontFamily": "Arial",
  5853. "_lineHeight": 100,
  5854. "_overflow": 1,
  5855. "_enableWrapText": true,
  5856. "_font": null,
  5857. "_isSystemFontUsed": true,
  5858. "_spacingX": 0,
  5859. "_isItalic": false,
  5860. "_isBold": true,
  5861. "_isUnderline": false,
  5862. "_underlineHeight": 2,
  5863. "_cacheMode": 0,
  5864. "_id": "d1pwclNt1CxLkmmf34GWOc"
  5865. },
  5866. {
  5867. "__type__": "cc.Node",
  5868. "_name": "TotalScore",
  5869. "_objFlags": 0,
  5870. "_parent": {
  5871. "__id__": 134
  5872. },
  5873. "_children": [],
  5874. "_active": true,
  5875. "_components": [
  5876. {
  5877. "__id__": 165
  5878. },
  5879. {
  5880. "__id__": 166
  5881. }
  5882. ],
  5883. "_prefab": null,
  5884. "_lpos": {
  5885. "__type__": "cc.Vec3",
  5886. "x": -186.859,
  5887. "y": -41.767,
  5888. "z": 0
  5889. },
  5890. "_lrot": {
  5891. "__type__": "cc.Quat",
  5892. "x": 0,
  5893. "y": 0,
  5894. "z": 0,
  5895. "w": 1
  5896. },
  5897. "_lscale": {
  5898. "__type__": "cc.Vec3",
  5899. "x": 1,
  5900. "y": 1,
  5901. "z": 1
  5902. },
  5903. "_mobility": 0,
  5904. "_layer": 33554432,
  5905. "_euler": {
  5906. "__type__": "cc.Vec3",
  5907. "x": 0,
  5908. "y": 0,
  5909. "z": 0
  5910. },
  5911. "_id": "56X7kQMiFNj5CA75HojXOp"
  5912. },
  5913. {
  5914. "__type__": "cc.UITransform",
  5915. "_name": "",
  5916. "_objFlags": 0,
  5917. "node": {
  5918. "__id__": 164
  5919. },
  5920. "_enabled": true,
  5921. "__prefab": null,
  5922. "_contentSize": {
  5923. "__type__": "cc.Size",
  5924. "width": 560.454,
  5925. "height": 214.07999999999998
  5926. },
  5927. "_anchorPoint": {
  5928. "__type__": "cc.Vec2",
  5929. "x": 0.5,
  5930. "y": 0.5
  5931. },
  5932. "_id": "91F5VNHjNIgqN03rfwh4Xc"
  5933. },
  5934. {
  5935. "__type__": "cc.Label",
  5936. "_name": "",
  5937. "_objFlags": 0,
  5938. "node": {
  5939. "__id__": 164
  5940. },
  5941. "_enabled": true,
  5942. "__prefab": null,
  5943. "_customMaterial": null,
  5944. "_srcBlendFactor": 2,
  5945. "_dstBlendFactor": 4,
  5946. "_color": {
  5947. "__type__": "cc.Color",
  5948. "r": 169,
  5949. "g": 79,
  5950. "b": 9,
  5951. "a": 255
  5952. },
  5953. "_string": "总得分:",
  5954. "_horizontalAlign": 0,
  5955. "_verticalAlign": 1,
  5956. "_actualFontSize": 60,
  5957. "_fontSize": 60,
  5958. "_fontFamily": "Arial",
  5959. "_lineHeight": 100,
  5960. "_overflow": 1,
  5961. "_enableWrapText": true,
  5962. "_font": null,
  5963. "_isSystemFontUsed": true,
  5964. "_spacingX": 0,
  5965. "_isItalic": false,
  5966. "_isBold": true,
  5967. "_isUnderline": false,
  5968. "_underlineHeight": 2,
  5969. "_cacheMode": 0,
  5970. "_id": "a8y+G4xQpEz7aAHiOFYm5L"
  5971. },
  5972. {
  5973. "__type__": "cc.Node",
  5974. "_name": "resultIcon",
  5975. "_objFlags": 0,
  5976. "_parent": {
  5977. "__id__": 134
  5978. },
  5979. "_children": [],
  5980. "_active": true,
  5981. "_components": [
  5982. {
  5983. "__id__": 168
  5984. },
  5985. {
  5986. "__id__": 169
  5987. }
  5988. ],
  5989. "_prefab": null,
  5990. "_lpos": {
  5991. "__type__": "cc.Vec3",
  5992. "x": 0,
  5993. "y": 350.842,
  5994. "z": 0
  5995. },
  5996. "_lrot": {
  5997. "__type__": "cc.Quat",
  5998. "x": 0,
  5999. "y": 0,
  6000. "z": 0,
  6001. "w": 1
  6002. },
  6003. "_lscale": {
  6004. "__type__": "cc.Vec3",
  6005. "x": 1,
  6006. "y": 1,
  6007. "z": 1
  6008. },
  6009. "_mobility": 0,
  6010. "_layer": 33554432,
  6011. "_euler": {
  6012. "__type__": "cc.Vec3",
  6013. "x": 0,
  6014. "y": 0,
  6015. "z": 0
  6016. },
  6017. "_id": "3bMre/6AhI84Sm9BsZ6isN"
  6018. },
  6019. {
  6020. "__type__": "cc.UITransform",
  6021. "_name": "",
  6022. "_objFlags": 0,
  6023. "node": {
  6024. "__id__": 167
  6025. },
  6026. "_enabled": true,
  6027. "__prefab": null,
  6028. "_contentSize": {
  6029. "__type__": "cc.Size",
  6030. "width": 276,
  6031. "height": 276
  6032. },
  6033. "_anchorPoint": {
  6034. "__type__": "cc.Vec2",
  6035. "x": 0.5,
  6036. "y": 0.5
  6037. },
  6038. "_id": "48m3xY/NRLfYMgrO6vypef"
  6039. },
  6040. {
  6041. "__type__": "cc.Sprite",
  6042. "_name": "",
  6043. "_objFlags": 0,
  6044. "node": {
  6045. "__id__": 167
  6046. },
  6047. "_enabled": true,
  6048. "__prefab": null,
  6049. "_customMaterial": null,
  6050. "_srcBlendFactor": 2,
  6051. "_dstBlendFactor": 4,
  6052. "_color": {
  6053. "__type__": "cc.Color",
  6054. "r": 255,
  6055. "g": 255,
  6056. "b": 255,
  6057. "a": 255
  6058. },
  6059. "_spriteFrame": {
  6060. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  6061. "__expectedType__": "cc.SpriteFrame"
  6062. },
  6063. "_type": 0,
  6064. "_fillType": 0,
  6065. "_sizeMode": 1,
  6066. "_fillCenter": {
  6067. "__type__": "cc.Vec2",
  6068. "x": 0,
  6069. "y": 0
  6070. },
  6071. "_fillStart": 0,
  6072. "_fillRange": 0,
  6073. "_isTrimmedMode": true,
  6074. "_useGrayscale": false,
  6075. "_atlas": null,
  6076. "_id": "c99zq9dbVI9LheJj/7p9g9"
  6077. },
  6078. {
  6079. "__type__": "cc.UITransform",
  6080. "_name": "",
  6081. "_objFlags": 0,
  6082. "node": {
  6083. "__id__": 134
  6084. },
  6085. "_enabled": true,
  6086. "__prefab": null,
  6087. "_contentSize": {
  6088. "__type__": "cc.Size",
  6089. "width": 1311,
  6090. "height": 806
  6091. },
  6092. "_anchorPoint": {
  6093. "__type__": "cc.Vec2",
  6094. "x": 0.5,
  6095. "y": 0.5
  6096. },
  6097. "_id": "e2M9hKVbJOpLEfbwyRzof+"
  6098. },
  6099. {
  6100. "__type__": "cc.Sprite",
  6101. "_name": "",
  6102. "_objFlags": 0,
  6103. "node": {
  6104. "__id__": 134
  6105. },
  6106. "_enabled": false,
  6107. "__prefab": null,
  6108. "_customMaterial": null,
  6109. "_srcBlendFactor": 2,
  6110. "_dstBlendFactor": 4,
  6111. "_color": {
  6112. "__type__": "cc.Color",
  6113. "r": 255,
  6114. "g": 255,
  6115. "b": 255,
  6116. "a": 255
  6117. },
  6118. "_spriteFrame": {
  6119. "__uuid__": "28765e2f-040a-4c65-8e8c-f9d0bb79d863@f9941",
  6120. "__expectedType__": "cc.SpriteFrame"
  6121. },
  6122. "_type": 1,
  6123. "_fillType": 0,
  6124. "_sizeMode": 0,
  6125. "_fillCenter": {
  6126. "__type__": "cc.Vec2",
  6127. "x": 0,
  6128. "y": 0
  6129. },
  6130. "_fillStart": 0,
  6131. "_fillRange": 0,
  6132. "_isTrimmedMode": true,
  6133. "_useGrayscale": false,
  6134. "_atlas": null,
  6135. "_id": "ebtJxL2z5Ko5BssboLF8rv"
  6136. },
  6137. {
  6138. "__type__": "95501FTS+FP8aW52qXh/kCV",
  6139. "_name": "",
  6140. "_objFlags": 0,
  6141. "node": {
  6142. "__id__": 134
  6143. },
  6144. "_enabled": true,
  6145. "__prefab": null,
  6146. "successBg": {
  6147. "__uuid__": "52fd76ba-30bd-4cda-965e-0427d6c30cc1@f9941",
  6148. "__expectedType__": "cc.SpriteFrame"
  6149. },
  6150. "failBg": {
  6151. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  6152. "__expectedType__": "cc.SpriteFrame"
  6153. },
  6154. "curLevelLabel": {
  6155. "__id__": 144
  6156. },
  6157. "curScoreLabel": {
  6158. "__id__": 163
  6159. },
  6160. "totalScoreLabel": {
  6161. "__id__": 166
  6162. },
  6163. "btnLabel": {
  6164. "__id__": 156
  6165. },
  6166. "reusltIcon": {
  6167. "__id__": 167
  6168. },
  6169. "_id": "50PulxgL1JQqf0g2NOZtHI"
  6170. },
  6171. {
  6172. "__type__": "cc.BlockInputEvents",
  6173. "_name": "",
  6174. "_objFlags": 0,
  6175. "node": {
  6176. "__id__": 134
  6177. },
  6178. "_enabled": true,
  6179. "__prefab": null,
  6180. "_id": "5aS/Nz0NxM6q+Rzl7lrbJs"
  6181. },
  6182. {
  6183. "__type__": "cc.Node",
  6184. "_objFlags": 512,
  6185. "_parent": {
  6186. "__id__": 6
  6187. },
  6188. "_prefab": {
  6189. "__id__": 175
  6190. },
  6191. "__editorExtras__": {}
  6192. },
  6193. {
  6194. "__type__": "cc.PrefabInfo",
  6195. "root": {
  6196. "__id__": 174
  6197. },
  6198. "asset": {
  6199. "__uuid__": "7d17bef9-8f82-415e-8928-f2c7da3decf4",
  6200. "__expectedType__": "cc.Prefab"
  6201. },
  6202. "fileId": "f5VirVdr1A/q1iUlQGtO+X",
  6203. "instance": {
  6204. "__id__": 176
  6205. },
  6206. "targetOverrides": null,
  6207. "nestedPrefabInstanceRoots": null
  6208. },
  6209. {
  6210. "__type__": "cc.PrefabInstance",
  6211. "fileId": "f0jZuVJ7REqZ0+6Qh6IxiK",
  6212. "prefabRootNode": null,
  6213. "mountedChildren": [],
  6214. "mountedComponents": [
  6215. {
  6216. "__id__": 177
  6217. }
  6218. ],
  6219. "propertyOverrides": [
  6220. {
  6221. "__id__": 180
  6222. },
  6223. {
  6224. "__id__": 182
  6225. },
  6226. {
  6227. "__id__": 183
  6228. },
  6229. {
  6230. "__id__": 184
  6231. },
  6232. {
  6233. "__id__": 185
  6234. }
  6235. ],
  6236. "removedComponents": []
  6237. },
  6238. {
  6239. "__type__": "cc.MountedComponentsInfo",
  6240. "targetInfo": {
  6241. "__id__": 178
  6242. },
  6243. "components": [
  6244. {
  6245. "__id__": 179
  6246. }
  6247. ]
  6248. },
  6249. {
  6250. "__type__": "cc.TargetInfo",
  6251. "localID": [
  6252. "f5VirVdr1A/q1iUlQGtO+X"
  6253. ]
  6254. },
  6255. {
  6256. "__type__": "cc.BlockInputEvents",
  6257. "_name": "",
  6258. "_objFlags": 0,
  6259. "__editorExtras__": {
  6260. "mountedRoot": {
  6261. "__id__": 174
  6262. }
  6263. },
  6264. "node": {
  6265. "__id__": 174
  6266. },
  6267. "_enabled": true,
  6268. "__prefab": null,
  6269. "_id": "07r8anbvNG/6BWBGGtLhOU"
  6270. },
  6271. {
  6272. "__type__": "CCPropertyOverrideInfo",
  6273. "targetInfo": {
  6274. "__id__": 181
  6275. },
  6276. "propertyPath": [
  6277. "_name"
  6278. ],
  6279. "value": "PlayAEndTip"
  6280. },
  6281. {
  6282. "__type__": "cc.TargetInfo",
  6283. "localID": [
  6284. "f5VirVdr1A/q1iUlQGtO+X"
  6285. ]
  6286. },
  6287. {
  6288. "__type__": "CCPropertyOverrideInfo",
  6289. "targetInfo": {
  6290. "__id__": 181
  6291. },
  6292. "propertyPath": [
  6293. "_lpos"
  6294. ],
  6295. "value": {
  6296. "__type__": "cc.Vec3",
  6297. "x": 0,
  6298. "y": 0,
  6299. "z": 0
  6300. }
  6301. },
  6302. {
  6303. "__type__": "CCPropertyOverrideInfo",
  6304. "targetInfo": {
  6305. "__id__": 181
  6306. },
  6307. "propertyPath": [
  6308. "_lrot"
  6309. ],
  6310. "value": {
  6311. "__type__": "cc.Quat",
  6312. "x": 0,
  6313. "y": 0,
  6314. "z": 0,
  6315. "w": 1
  6316. }
  6317. },
  6318. {
  6319. "__type__": "CCPropertyOverrideInfo",
  6320. "targetInfo": {
  6321. "__id__": 181
  6322. },
  6323. "propertyPath": [
  6324. "_euler"
  6325. ],
  6326. "value": {
  6327. "__type__": "cc.Vec3",
  6328. "x": 0,
  6329. "y": 0,
  6330. "z": 0
  6331. }
  6332. },
  6333. {
  6334. "__type__": "CCPropertyOverrideInfo",
  6335. "targetInfo": {
  6336. "__id__": 181
  6337. },
  6338. "propertyPath": [
  6339. "_active"
  6340. ],
  6341. "value": false
  6342. },
  6343. {
  6344. "__type__": "cc.Node",
  6345. "_name": "Full",
  6346. "_objFlags": 0,
  6347. "_parent": {
  6348. "__id__": 6
  6349. },
  6350. "_children": [
  6351. {
  6352. "__id__": 187
  6353. },
  6354. {
  6355. "__id__": 196
  6356. },
  6357. {
  6358. "__id__": 205
  6359. }
  6360. ],
  6361. "_active": true,
  6362. "_components": [
  6363. {
  6364. "__id__": 214
  6365. }
  6366. ],
  6367. "_prefab": null,
  6368. "_lpos": {
  6369. "__type__": "cc.Vec3",
  6370. "x": 309.46,
  6371. "y": 42.849,
  6372. "z": 0
  6373. },
  6374. "_lrot": {
  6375. "__type__": "cc.Quat",
  6376. "x": 0,
  6377. "y": 0,
  6378. "z": 0,
  6379. "w": 1
  6380. },
  6381. "_lscale": {
  6382. "__type__": "cc.Vec3",
  6383. "x": 1,
  6384. "y": 1,
  6385. "z": 1
  6386. },
  6387. "_mobility": 0,
  6388. "_layer": 33554432,
  6389. "_euler": {
  6390. "__type__": "cc.Vec3",
  6391. "x": 0,
  6392. "y": 0,
  6393. "z": 0
  6394. },
  6395. "_id": "66bcmRoDVJr7mAO/zWrM6a"
  6396. },
  6397. {
  6398. "__type__": "cc.Node",
  6399. "_name": "GetScoreBg-001",
  6400. "_objFlags": 0,
  6401. "_parent": {
  6402. "__id__": 186
  6403. },
  6404. "_children": [
  6405. {
  6406. "__id__": 188
  6407. }
  6408. ],
  6409. "_active": true,
  6410. "_components": [
  6411. {
  6412. "__id__": 194
  6413. },
  6414. {
  6415. "__id__": 195
  6416. }
  6417. ],
  6418. "_prefab": null,
  6419. "_lpos": {
  6420. "__type__": "cc.Vec3",
  6421. "x": -626.6950295857988,
  6422. "y": 584.791,
  6423. "z": 0
  6424. },
  6425. "_lrot": {
  6426. "__type__": "cc.Quat",
  6427. "x": 0,
  6428. "y": 0,
  6429. "z": 0,
  6430. "w": 1
  6431. },
  6432. "_lscale": {
  6433. "__type__": "cc.Vec3",
  6434. "x": 1,
  6435. "y": 1,
  6436. "z": 1
  6437. },
  6438. "_mobility": 0,
  6439. "_layer": 33554432,
  6440. "_euler": {
  6441. "__type__": "cc.Vec3",
  6442. "x": 0,
  6443. "y": 0,
  6444. "z": 0
  6445. },
  6446. "_id": "7aBXCm+khLUqjKxwb+R/m7"
  6447. },
  6448. {
  6449. "__type__": "cc.Node",
  6450. "_name": "GetScore",
  6451. "_objFlags": 0,
  6452. "_parent": {
  6453. "__id__": 187
  6454. },
  6455. "_children": [
  6456. {
  6457. "__id__": 189
  6458. }
  6459. ],
  6460. "_active": true,
  6461. "_components": [
  6462. {
  6463. "__id__": 192
  6464. },
  6465. {
  6466. "__id__": 193
  6467. }
  6468. ],
  6469. "_prefab": null,
  6470. "_lpos": {
  6471. "__type__": "cc.Vec3",
  6472. "x": -100.368,
  6473. "y": 0.904,
  6474. "z": 0
  6475. },
  6476. "_lrot": {
  6477. "__type__": "cc.Quat",
  6478. "x": 0,
  6479. "y": 0,
  6480. "z": 0,
  6481. "w": 1
  6482. },
  6483. "_lscale": {
  6484. "__type__": "cc.Vec3",
  6485. "x": 1,
  6486. "y": 1,
  6487. "z": 1
  6488. },
  6489. "_mobility": 0,
  6490. "_layer": 33554432,
  6491. "_euler": {
  6492. "__type__": "cc.Vec3",
  6493. "x": 0,
  6494. "y": 0,
  6495. "z": 0
  6496. },
  6497. "_id": "2dlFpBou9N4qEx8zh/au+0"
  6498. },
  6499. {
  6500. "__type__": "cc.Node",
  6501. "_name": "Score",
  6502. "_objFlags": 0,
  6503. "_parent": {
  6504. "__id__": 188
  6505. },
  6506. "_children": [],
  6507. "_active": true,
  6508. "_components": [
  6509. {
  6510. "__id__": 190
  6511. },
  6512. {
  6513. "__id__": 191
  6514. }
  6515. ],
  6516. "_prefab": null,
  6517. "_lpos": {
  6518. "__type__": "cc.Vec3",
  6519. "x": 139.812,
  6520. "y": 0.043,
  6521. "z": 0
  6522. },
  6523. "_lrot": {
  6524. "__type__": "cc.Quat",
  6525. "x": 0,
  6526. "y": 0,
  6527. "z": 0,
  6528. "w": 1
  6529. },
  6530. "_lscale": {
  6531. "__type__": "cc.Vec3",
  6532. "x": 1,
  6533. "y": 1,
  6534. "z": 1
  6535. },
  6536. "_mobility": 0,
  6537. "_layer": 33554432,
  6538. "_euler": {
  6539. "__type__": "cc.Vec3",
  6540. "x": 0,
  6541. "y": 0,
  6542. "z": 0
  6543. },
  6544. "_id": "44dEVnyUdGJ4oVkWzLyKm0"
  6545. },
  6546. {
  6547. "__type__": "cc.UITransform",
  6548. "_name": "",
  6549. "_objFlags": 0,
  6550. "node": {
  6551. "__id__": 189
  6552. },
  6553. "_enabled": true,
  6554. "__prefab": null,
  6555. "_contentSize": {
  6556. "__type__": "cc.Size",
  6557. "width": 139.04,
  6558. "height": 50.4
  6559. },
  6560. "_anchorPoint": {
  6561. "__type__": "cc.Vec2",
  6562. "x": 0.5,
  6563. "y": 0.5
  6564. },
  6565. "_id": "aeatAHONRFdq/5YremdGg5"
  6566. },
  6567. {
  6568. "__type__": "cc.Label",
  6569. "_name": "",
  6570. "_objFlags": 0,
  6571. "node": {
  6572. "__id__": 189
  6573. },
  6574. "_enabled": true,
  6575. "__prefab": null,
  6576. "_customMaterial": null,
  6577. "_srcBlendFactor": 2,
  6578. "_dstBlendFactor": 4,
  6579. "_color": {
  6580. "__type__": "cc.Color",
  6581. "r": 255,
  6582. "g": 255,
  6583. "b": 255,
  6584. "a": 255
  6585. },
  6586. "_string": "0",
  6587. "_horizontalAlign": 0,
  6588. "_verticalAlign": 1,
  6589. "_actualFontSize": 50,
  6590. "_fontSize": 50,
  6591. "_fontFamily": "Arial",
  6592. "_lineHeight": 40,
  6593. "_overflow": 1,
  6594. "_enableWrapText": true,
  6595. "_font": null,
  6596. "_isSystemFontUsed": true,
  6597. "_spacingX": 0,
  6598. "_isItalic": false,
  6599. "_isBold": false,
  6600. "_isUnderline": false,
  6601. "_underlineHeight": 2,
  6602. "_cacheMode": 0,
  6603. "_id": "95xTzz/ptP9bi+VwziUVOX"
  6604. },
  6605. {
  6606. "__type__": "cc.UITransform",
  6607. "_name": "",
  6608. "_objFlags": 0,
  6609. "node": {
  6610. "__id__": 188
  6611. },
  6612. "_enabled": true,
  6613. "__prefab": null,
  6614. "_contentSize": {
  6615. "__type__": "cc.Size",
  6616. "width": 100,
  6617. "height": 88.2
  6618. },
  6619. "_anchorPoint": {
  6620. "__type__": "cc.Vec2",
  6621. "x": 0.5,
  6622. "y": 0.5
  6623. },
  6624. "_id": "c7XkN7nSxP7qcj/G58zTJq"
  6625. },
  6626. {
  6627. "__type__": "cc.Label",
  6628. "_name": "",
  6629. "_objFlags": 0,
  6630. "node": {
  6631. "__id__": 188
  6632. },
  6633. "_enabled": true,
  6634. "__prefab": null,
  6635. "_customMaterial": null,
  6636. "_srcBlendFactor": 2,
  6637. "_dstBlendFactor": 4,
  6638. "_color": {
  6639. "__type__": "cc.Color",
  6640. "r": 255,
  6641. "g": 255,
  6642. "b": 255,
  6643. "a": 255
  6644. },
  6645. "_string": "得分",
  6646. "_horizontalAlign": 1,
  6647. "_verticalAlign": 1,
  6648. "_actualFontSize": 50,
  6649. "_fontSize": 50,
  6650. "_fontFamily": "Arial",
  6651. "_lineHeight": 70,
  6652. "_overflow": 0,
  6653. "_enableWrapText": true,
  6654. "_font": null,
  6655. "_isSystemFontUsed": true,
  6656. "_spacingX": 0,
  6657. "_isItalic": false,
  6658. "_isBold": false,
  6659. "_isUnderline": false,
  6660. "_underlineHeight": 2,
  6661. "_cacheMode": 0,
  6662. "_id": "936102nIBEb6lfaFTWnF76"
  6663. },
  6664. {
  6665. "__type__": "cc.UITransform",
  6666. "_name": "",
  6667. "_objFlags": 0,
  6668. "node": {
  6669. "__id__": 187
  6670. },
  6671. "_enabled": true,
  6672. "__prefab": null,
  6673. "_contentSize": {
  6674. "__type__": "cc.Size",
  6675. "width": 339.88994082840236,
  6676. "height": 110
  6677. },
  6678. "_anchorPoint": {
  6679. "__type__": "cc.Vec2",
  6680. "x": 0.5,
  6681. "y": 0.5
  6682. },
  6683. "_id": "c1I0u8AgtKVYew7N+QBLGy"
  6684. },
  6685. {
  6686. "__type__": "cc.Sprite",
  6687. "_name": "",
  6688. "_objFlags": 0,
  6689. "node": {
  6690. "__id__": 187
  6691. },
  6692. "_enabled": true,
  6693. "__prefab": null,
  6694. "_customMaterial": null,
  6695. "_srcBlendFactor": 2,
  6696. "_dstBlendFactor": 4,
  6697. "_color": {
  6698. "__type__": "cc.Color",
  6699. "r": 255,
  6700. "g": 255,
  6701. "b": 255,
  6702. "a": 255
  6703. },
  6704. "_spriteFrame": {
  6705. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  6706. "__expectedType__": "cc.SpriteFrame"
  6707. },
  6708. "_type": 0,
  6709. "_fillType": 0,
  6710. "_sizeMode": 0,
  6711. "_fillCenter": {
  6712. "__type__": "cc.Vec2",
  6713. "x": 0,
  6714. "y": 0
  6715. },
  6716. "_fillStart": 0,
  6717. "_fillRange": 0,
  6718. "_isTrimmedMode": true,
  6719. "_useGrayscale": false,
  6720. "_atlas": null,
  6721. "_id": "103k0ntThJELcV3+IfPrvW"
  6722. },
  6723. {
  6724. "__type__": "cc.Node",
  6725. "_name": "TimeBg-001",
  6726. "_objFlags": 0,
  6727. "_parent": {
  6728. "__id__": 186
  6729. },
  6730. "_children": [
  6731. {
  6732. "__id__": 197
  6733. }
  6734. ],
  6735. "_active": true,
  6736. "_components": [
  6737. {
  6738. "__id__": 203
  6739. },
  6740. {
  6741. "__id__": 204
  6742. }
  6743. ],
  6744. "_prefab": null,
  6745. "_lpos": {
  6746. "__type__": "cc.Vec3",
  6747. "x": -245.961,
  6748. "y": 584.791,
  6749. "z": 0
  6750. },
  6751. "_lrot": {
  6752. "__type__": "cc.Quat",
  6753. "x": 0,
  6754. "y": 0,
  6755. "z": 0,
  6756. "w": 1
  6757. },
  6758. "_lscale": {
  6759. "__type__": "cc.Vec3",
  6760. "x": 1,
  6761. "y": 1,
  6762. "z": 1
  6763. },
  6764. "_mobility": 0,
  6765. "_layer": 33554432,
  6766. "_euler": {
  6767. "__type__": "cc.Vec3",
  6768. "x": 0,
  6769. "y": 0,
  6770. "z": 0
  6771. },
  6772. "_id": "72E4endaFA9ZzhffwONnhR"
  6773. },
  6774. {
  6775. "__type__": "cc.Node",
  6776. "_name": "GameTime",
  6777. "_objFlags": 0,
  6778. "_parent": {
  6779. "__id__": 196
  6780. },
  6781. "_children": [
  6782. {
  6783. "__id__": 198
  6784. }
  6785. ],
  6786. "_active": true,
  6787. "_components": [
  6788. {
  6789. "__id__": 201
  6790. },
  6791. {
  6792. "__id__": 202
  6793. }
  6794. ],
  6795. "_prefab": null,
  6796. "_lpos": {
  6797. "__type__": "cc.Vec3",
  6798. "x": 5.195,
  6799. "y": 60.444,
  6800. "z": 0
  6801. },
  6802. "_lrot": {
  6803. "__type__": "cc.Quat",
  6804. "x": 0,
  6805. "y": 0,
  6806. "z": 0,
  6807. "w": 1
  6808. },
  6809. "_lscale": {
  6810. "__type__": "cc.Vec3",
  6811. "x": 1,
  6812. "y": 1,
  6813. "z": 1
  6814. },
  6815. "_mobility": 0,
  6816. "_layer": 33554432,
  6817. "_euler": {
  6818. "__type__": "cc.Vec3",
  6819. "x": 0,
  6820. "y": 0,
  6821. "z": 0
  6822. },
  6823. "_id": "e6x0Gc+TlDGIZXI33TEJb6"
  6824. },
  6825. {
  6826. "__type__": "cc.Node",
  6827. "_name": "TimeLabel",
  6828. "_objFlags": 0,
  6829. "_parent": {
  6830. "__id__": 197
  6831. },
  6832. "_children": [],
  6833. "_active": true,
  6834. "_components": [
  6835. {
  6836. "__id__": 199
  6837. },
  6838. {
  6839. "__id__": 200
  6840. }
  6841. ],
  6842. "_prefab": null,
  6843. "_lpos": {
  6844. "__type__": "cc.Vec3",
  6845. "x": 1.505,
  6846. "y": -57.186,
  6847. "z": 0
  6848. },
  6849. "_lrot": {
  6850. "__type__": "cc.Quat",
  6851. "x": 0,
  6852. "y": 0,
  6853. "z": 0,
  6854. "w": 1
  6855. },
  6856. "_lscale": {
  6857. "__type__": "cc.Vec3",
  6858. "x": 1,
  6859. "y": 1,
  6860. "z": 1
  6861. },
  6862. "_mobility": 0,
  6863. "_layer": 33554432,
  6864. "_euler": {
  6865. "__type__": "cc.Vec3",
  6866. "x": 0,
  6867. "y": 0,
  6868. "z": 0
  6869. },
  6870. "_id": "62RcJSw15H6JpsHUHKtNaH"
  6871. },
  6872. {
  6873. "__type__": "cc.UITransform",
  6874. "_name": "",
  6875. "_objFlags": 0,
  6876. "node": {
  6877. "__id__": 198
  6878. },
  6879. "_enabled": true,
  6880. "__prefab": null,
  6881. "_contentSize": {
  6882. "__type__": "cc.Size",
  6883. "width": 170,
  6884. "height": 50.4
  6885. },
  6886. "_anchorPoint": {
  6887. "__type__": "cc.Vec2",
  6888. "x": 0.5,
  6889. "y": 0.5
  6890. },
  6891. "_id": "7cZarCy31EtKl7ASpygJEo"
  6892. },
  6893. {
  6894. "__type__": "cc.Label",
  6895. "_name": "",
  6896. "_objFlags": 0,
  6897. "node": {
  6898. "__id__": 198
  6899. },
  6900. "_enabled": true,
  6901. "__prefab": null,
  6902. "_customMaterial": null,
  6903. "_srcBlendFactor": 2,
  6904. "_dstBlendFactor": 4,
  6905. "_color": {
  6906. "__type__": "cc.Color",
  6907. "r": 255,
  6908. "g": 255,
  6909. "b": 255,
  6910. "a": 255
  6911. },
  6912. "_string": "2:00",
  6913. "_horizontalAlign": 1,
  6914. "_verticalAlign": 1,
  6915. "_actualFontSize": 55,
  6916. "_fontSize": 55,
  6917. "_fontFamily": "Arial",
  6918. "_lineHeight": 60,
  6919. "_overflow": 1,
  6920. "_enableWrapText": true,
  6921. "_font": null,
  6922. "_isSystemFontUsed": true,
  6923. "_spacingX": 0,
  6924. "_isItalic": false,
  6925. "_isBold": false,
  6926. "_isUnderline": false,
  6927. "_underlineHeight": 2,
  6928. "_cacheMode": 0,
  6929. "_id": "dcVz2Ao/lCG60RTah3WKwS"
  6930. },
  6931. {
  6932. "__type__": "cc.UITransform",
  6933. "_name": "",
  6934. "_objFlags": 0,
  6935. "node": {
  6936. "__id__": 197
  6937. },
  6938. "_enabled": true,
  6939. "__prefab": null,
  6940. "_contentSize": {
  6941. "__type__": "cc.Size",
  6942. "width": 170,
  6943. "height": 50.4
  6944. },
  6945. "_anchorPoint": {
  6946. "__type__": "cc.Vec2",
  6947. "x": 0.5,
  6948. "y": 0.5
  6949. },
  6950. "_id": "d3XSdYtyBCjr130tilMp31"
  6951. },
  6952. {
  6953. "__type__": "cc.Label",
  6954. "_name": "",
  6955. "_objFlags": 0,
  6956. "node": {
  6957. "__id__": 197
  6958. },
  6959. "_enabled": false,
  6960. "__prefab": null,
  6961. "_customMaterial": null,
  6962. "_srcBlendFactor": 2,
  6963. "_dstBlendFactor": 4,
  6964. "_color": {
  6965. "__type__": "cc.Color",
  6966. "r": 169,
  6967. "g": 74,
  6968. "b": 9,
  6969. "a": 255
  6970. },
  6971. "_string": "时间",
  6972. "_horizontalAlign": 1,
  6973. "_verticalAlign": 1,
  6974. "_actualFontSize": 50,
  6975. "_fontSize": 50,
  6976. "_fontFamily": "Arial",
  6977. "_lineHeight": 60,
  6978. "_overflow": 1,
  6979. "_enableWrapText": true,
  6980. "_font": null,
  6981. "_isSystemFontUsed": true,
  6982. "_spacingX": 0,
  6983. "_isItalic": false,
  6984. "_isBold": true,
  6985. "_isUnderline": false,
  6986. "_underlineHeight": 2,
  6987. "_cacheMode": 0,
  6988. "_id": "f2akcURRFEcq0N0Nl8yDJr"
  6989. },
  6990. {
  6991. "__type__": "cc.UITransform",
  6992. "_name": "",
  6993. "_objFlags": 0,
  6994. "node": {
  6995. "__id__": 196
  6996. },
  6997. "_enabled": true,
  6998. "__prefab": null,
  6999. "_contentSize": {
  7000. "__type__": "cc.Size",
  7001. "width": 271.13372781065095,
  7002. "height": 110
  7003. },
  7004. "_anchorPoint": {
  7005. "__type__": "cc.Vec2",
  7006. "x": 0.5,
  7007. "y": 0.5
  7008. },
  7009. "_id": "c3lf7M7k9KmZ+nSNUWgAWg"
  7010. },
  7011. {
  7012. "__type__": "cc.Sprite",
  7013. "_name": "",
  7014. "_objFlags": 0,
  7015. "node": {
  7016. "__id__": 196
  7017. },
  7018. "_enabled": true,
  7019. "__prefab": null,
  7020. "_customMaterial": null,
  7021. "_srcBlendFactor": 2,
  7022. "_dstBlendFactor": 4,
  7023. "_color": {
  7024. "__type__": "cc.Color",
  7025. "r": 255,
  7026. "g": 255,
  7027. "b": 255,
  7028. "a": 255
  7029. },
  7030. "_spriteFrame": {
  7031. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  7032. "__expectedType__": "cc.SpriteFrame"
  7033. },
  7034. "_type": 0,
  7035. "_fillType": 0,
  7036. "_sizeMode": 0,
  7037. "_fillCenter": {
  7038. "__type__": "cc.Vec2",
  7039. "x": 0,
  7040. "y": 0
  7041. },
  7042. "_fillStart": 0,
  7043. "_fillRange": 0,
  7044. "_isTrimmedMode": true,
  7045. "_useGrayscale": false,
  7046. "_atlas": null,
  7047. "_id": "00So5QoPJNbqg38R3GIz53"
  7048. },
  7049. {
  7050. "__type__": "cc.Node",
  7051. "_name": "LevelBg-001",
  7052. "_objFlags": 0,
  7053. "_parent": {
  7054. "__id__": 186
  7055. },
  7056. "_children": [
  7057. {
  7058. "__id__": 206
  7059. }
  7060. ],
  7061. "_active": true,
  7062. "_components": [
  7063. {
  7064. "__id__": 212
  7065. },
  7066. {
  7067. "__id__": 213
  7068. }
  7069. ],
  7070. "_prefab": null,
  7071. "_lpos": {
  7072. "__type__": "cc.Vec3",
  7073. "x": 103.843,
  7074. "y": 584.691,
  7075. "z": 0
  7076. },
  7077. "_lrot": {
  7078. "__type__": "cc.Quat",
  7079. "x": 0,
  7080. "y": 0,
  7081. "z": 0,
  7082. "w": 1
  7083. },
  7084. "_lscale": {
  7085. "__type__": "cc.Vec3",
  7086. "x": 1,
  7087. "y": 1,
  7088. "z": 1
  7089. },
  7090. "_mobility": 0,
  7091. "_layer": 33554432,
  7092. "_euler": {
  7093. "__type__": "cc.Vec3",
  7094. "x": 0,
  7095. "y": 0,
  7096. "z": 0
  7097. },
  7098. "_id": "76NmQjlTVIjYB7iIXcw271"
  7099. },
  7100. {
  7101. "__type__": "cc.Node",
  7102. "_name": "level",
  7103. "_objFlags": 0,
  7104. "_parent": {
  7105. "__id__": 205
  7106. },
  7107. "_children": [
  7108. {
  7109. "__id__": 207
  7110. }
  7111. ],
  7112. "_active": true,
  7113. "_components": [
  7114. {
  7115. "__id__": 210
  7116. },
  7117. {
  7118. "__id__": 211
  7119. }
  7120. ],
  7121. "_prefab": null,
  7122. "_lpos": {
  7123. "__type__": "cc.Vec3",
  7124. "x": -31.36299999999983,
  7125. "y": -2.5679999999999836,
  7126. "z": 0
  7127. },
  7128. "_lrot": {
  7129. "__type__": "cc.Quat",
  7130. "x": 0,
  7131. "y": 0,
  7132. "z": 0,
  7133. "w": 1
  7134. },
  7135. "_lscale": {
  7136. "__type__": "cc.Vec3",
  7137. "x": 1,
  7138. "y": 1,
  7139. "z": 1
  7140. },
  7141. "_mobility": 0,
  7142. "_layer": 33554432,
  7143. "_euler": {
  7144. "__type__": "cc.Vec3",
  7145. "x": 0,
  7146. "y": 0,
  7147. "z": 0
  7148. },
  7149. "_id": "eaH/7VoTNMX6EQSZY5GHiA"
  7150. },
  7151. {
  7152. "__type__": "cc.Node",
  7153. "_name": "levlLabel",
  7154. "_objFlags": 0,
  7155. "_parent": {
  7156. "__id__": 206
  7157. },
  7158. "_children": [],
  7159. "_active": true,
  7160. "_components": [
  7161. {
  7162. "__id__": 208
  7163. },
  7164. {
  7165. "__id__": 209
  7166. }
  7167. ],
  7168. "_prefab": null,
  7169. "_lpos": {
  7170. "__type__": "cc.Vec3",
  7171. "x": 29.897499999999997,
  7172. "y": 0,
  7173. "z": 0
  7174. },
  7175. "_lrot": {
  7176. "__type__": "cc.Quat",
  7177. "x": 0,
  7178. "y": 0,
  7179. "z": 0,
  7180. "w": 1
  7181. },
  7182. "_lscale": {
  7183. "__type__": "cc.Vec3",
  7184. "x": 1,
  7185. "y": 1,
  7186. "z": 1
  7187. },
  7188. "_mobility": 0,
  7189. "_layer": 33554432,
  7190. "_euler": {
  7191. "__type__": "cc.Vec3",
  7192. "x": 0,
  7193. "y": 0,
  7194. "z": 0
  7195. },
  7196. "_id": "b7kyQaqnFPtoUwJ/CfFPdI"
  7197. },
  7198. {
  7199. "__type__": "cc.UITransform",
  7200. "_name": "",
  7201. "_objFlags": 0,
  7202. "node": {
  7203. "__id__": 207
  7204. },
  7205. "_enabled": true,
  7206. "__prefab": null,
  7207. "_contentSize": {
  7208. "__type__": "cc.Size",
  7209. "width": 264.409,
  7210. "height": 50.4
  7211. },
  7212. "_anchorPoint": {
  7213. "__type__": "cc.Vec2",
  7214. "x": 0.5,
  7215. "y": 0.5
  7216. },
  7217. "_id": "0aujCo8/pPgZo35FlpMbkz"
  7218. },
  7219. {
  7220. "__type__": "cc.Label",
  7221. "_name": "",
  7222. "_objFlags": 0,
  7223. "node": {
  7224. "__id__": 207
  7225. },
  7226. "_enabled": true,
  7227. "__prefab": null,
  7228. "_customMaterial": null,
  7229. "_srcBlendFactor": 2,
  7230. "_dstBlendFactor": 4,
  7231. "_color": {
  7232. "__type__": "cc.Color",
  7233. "r": 255,
  7234. "g": 255,
  7235. "b": 255,
  7236. "a": 255
  7237. },
  7238. "_string": "第1关",
  7239. "_horizontalAlign": 1,
  7240. "_verticalAlign": 1,
  7241. "_actualFontSize": 55,
  7242. "_fontSize": 55,
  7243. "_fontFamily": "Arial",
  7244. "_lineHeight": 60,
  7245. "_overflow": 1,
  7246. "_enableWrapText": true,
  7247. "_font": null,
  7248. "_isSystemFontUsed": true,
  7249. "_spacingX": 0,
  7250. "_isItalic": false,
  7251. "_isBold": false,
  7252. "_isUnderline": false,
  7253. "_underlineHeight": 2,
  7254. "_cacheMode": 0,
  7255. "_id": "f2HCMp0+VB9bgTrUQGTaQN"
  7256. },
  7257. {
  7258. "__type__": "cc.UITransform",
  7259. "_name": "",
  7260. "_objFlags": 0,
  7261. "node": {
  7262. "__id__": 206
  7263. },
  7264. "_enabled": true,
  7265. "__prefab": null,
  7266. "_contentSize": {
  7267. "__type__": "cc.Size",
  7268. "width": 170,
  7269. "height": 50.4
  7270. },
  7271. "_anchorPoint": {
  7272. "__type__": "cc.Vec2",
  7273. "x": 0.5,
  7274. "y": 0.5
  7275. },
  7276. "_id": "749njg1oZE7KXTB5Awl4KI"
  7277. },
  7278. {
  7279. "__type__": "cc.Label",
  7280. "_name": "",
  7281. "_objFlags": 0,
  7282. "node": {
  7283. "__id__": 206
  7284. },
  7285. "_enabled": true,
  7286. "__prefab": null,
  7287. "_customMaterial": null,
  7288. "_srcBlendFactor": 2,
  7289. "_dstBlendFactor": 4,
  7290. "_color": {
  7291. "__type__": "cc.Color",
  7292. "r": 169,
  7293. "g": 74,
  7294. "b": 9,
  7295. "a": 255
  7296. },
  7297. "_string": "",
  7298. "_horizontalAlign": 1,
  7299. "_verticalAlign": 1,
  7300. "_actualFontSize": 50,
  7301. "_fontSize": 50,
  7302. "_fontFamily": "Arial",
  7303. "_lineHeight": 60,
  7304. "_overflow": 1,
  7305. "_enableWrapText": true,
  7306. "_font": null,
  7307. "_isSystemFontUsed": true,
  7308. "_spacingX": 0,
  7309. "_isItalic": false,
  7310. "_isBold": false,
  7311. "_isUnderline": false,
  7312. "_underlineHeight": 2,
  7313. "_cacheMode": 0,
  7314. "_id": "a7O87PTw9LOrHXoGKYQXEs"
  7315. },
  7316. {
  7317. "__type__": "cc.UITransform",
  7318. "_name": "",
  7319. "_objFlags": 0,
  7320. "node": {
  7321. "__id__": 205
  7322. },
  7323. "_enabled": true,
  7324. "__prefab": null,
  7325. "_contentSize": {
  7326. "__type__": "cc.Size",
  7327. "width": 308.7455621301775,
  7328. "height": 110
  7329. },
  7330. "_anchorPoint": {
  7331. "__type__": "cc.Vec2",
  7332. "x": 0.5,
  7333. "y": 0.5
  7334. },
  7335. "_id": "59hMJgSaJCu6QjN2y6Wkiu"
  7336. },
  7337. {
  7338. "__type__": "cc.Sprite",
  7339. "_name": "",
  7340. "_objFlags": 0,
  7341. "node": {
  7342. "__id__": 205
  7343. },
  7344. "_enabled": true,
  7345. "__prefab": null,
  7346. "_customMaterial": null,
  7347. "_srcBlendFactor": 2,
  7348. "_dstBlendFactor": 4,
  7349. "_color": {
  7350. "__type__": "cc.Color",
  7351. "r": 255,
  7352. "g": 255,
  7353. "b": 255,
  7354. "a": 255
  7355. },
  7356. "_spriteFrame": {
  7357. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  7358. "__expectedType__": "cc.SpriteFrame"
  7359. },
  7360. "_type": 0,
  7361. "_fillType": 0,
  7362. "_sizeMode": 0,
  7363. "_fillCenter": {
  7364. "__type__": "cc.Vec2",
  7365. "x": 0,
  7366. "y": 0
  7367. },
  7368. "_fillStart": 0,
  7369. "_fillRange": 0,
  7370. "_isTrimmedMode": true,
  7371. "_useGrayscale": false,
  7372. "_atlas": null,
  7373. "_id": "86rVTpbNlC77rQsFx4OBJl"
  7374. },
  7375. {
  7376. "__type__": "cc.UITransform",
  7377. "_name": "",
  7378. "_objFlags": 0,
  7379. "node": {
  7380. "__id__": 186
  7381. },
  7382. "_enabled": true,
  7383. "__prefab": null,
  7384. "_contentSize": {
  7385. "__type__": "cc.Size",
  7386. "width": 100,
  7387. "height": 100
  7388. },
  7389. "_anchorPoint": {
  7390. "__type__": "cc.Vec2",
  7391. "x": 0.5,
  7392. "y": 0.5
  7393. },
  7394. "_id": "83x9pd7hlLH7vvDTBc5FsC"
  7395. },
  7396. {
  7397. "__type__": "cc.UITransform",
  7398. "_name": "",
  7399. "_objFlags": 0,
  7400. "node": {
  7401. "__id__": 6
  7402. },
  7403. "_enabled": true,
  7404. "__prefab": null,
  7405. "_contentSize": {
  7406. "__type__": "cc.Size",
  7407. "width": 2388,
  7408. "height": 1431
  7409. },
  7410. "_anchorPoint": {
  7411. "__type__": "cc.Vec2",
  7412. "x": 0.5,
  7413. "y": 0.5
  7414. },
  7415. "_id": "6991+O4+ZKkruBhDfLTiNc"
  7416. },
  7417. {
  7418. "__type__": "cc.Sprite",
  7419. "_name": "",
  7420. "_objFlags": 0,
  7421. "node": {
  7422. "__id__": 6
  7423. },
  7424. "_enabled": false,
  7425. "__prefab": null,
  7426. "_customMaterial": null,
  7427. "_srcBlendFactor": 2,
  7428. "_dstBlendFactor": 4,
  7429. "_color": {
  7430. "__type__": "cc.Color",
  7431. "r": 255,
  7432. "g": 255,
  7433. "b": 255,
  7434. "a": 255
  7435. },
  7436. "_spriteFrame": {
  7437. "__uuid__": "eaacad0b-56df-456e-9f47-a6e593993e0f@f9941",
  7438. "__expectedType__": "cc.SpriteFrame"
  7439. },
  7440. "_type": 0,
  7441. "_fillType": 0,
  7442. "_sizeMode": 0,
  7443. "_fillCenter": {
  7444. "__type__": "cc.Vec2",
  7445. "x": 0,
  7446. "y": 0
  7447. },
  7448. "_fillStart": 0,
  7449. "_fillRange": 0,
  7450. "_isTrimmedMode": true,
  7451. "_useGrayscale": false,
  7452. "_atlas": null,
  7453. "_id": "2dSpfW0JpErJgEIBvDB/oC"
  7454. },
  7455. {
  7456. "__type__": "cc.Node",
  7457. "_name": "AudioManager",
  7458. "_objFlags": 0,
  7459. "_parent": {
  7460. "__id__": 2
  7461. },
  7462. "_children": [],
  7463. "_active": true,
  7464. "_components": [
  7465. {
  7466. "__id__": 218
  7467. },
  7468. {
  7469. "__id__": 219
  7470. }
  7471. ],
  7472. "_prefab": null,
  7473. "_lpos": {
  7474. "__type__": "cc.Vec3",
  7475. "x": 0,
  7476. "y": 0,
  7477. "z": 0
  7478. },
  7479. "_lrot": {
  7480. "__type__": "cc.Quat",
  7481. "x": 0,
  7482. "y": 0,
  7483. "z": 0,
  7484. "w": 1
  7485. },
  7486. "_lscale": {
  7487. "__type__": "cc.Vec3",
  7488. "x": 1,
  7489. "y": 1,
  7490. "z": 1
  7491. },
  7492. "_mobility": 0,
  7493. "_layer": 1073741824,
  7494. "_euler": {
  7495. "__type__": "cc.Vec3",
  7496. "x": 0,
  7497. "y": 0,
  7498. "z": 0
  7499. },
  7500. "_id": "60FjbG8qtFfZ539qEMd+1/"
  7501. },
  7502. {
  7503. "__type__": "cc.AudioSource",
  7504. "_name": "",
  7505. "_objFlags": 0,
  7506. "node": {
  7507. "__id__": 217
  7508. },
  7509. "_enabled": true,
  7510. "__prefab": null,
  7511. "_clip": {
  7512. "__uuid__": "fa328517-f2b2-4385-ac73-177c99ed964c",
  7513. "__expectedType__": "cc.AudioClip"
  7514. },
  7515. "_loop": true,
  7516. "_playOnAwake": false,
  7517. "_volume": 1,
  7518. "_id": "eeGhp23mxGxpqwDPT1CJun"
  7519. },
  7520. {
  7521. "__type__": "ddb2bQZ+Y1HFKtzdgtAjjWR",
  7522. "_name": "",
  7523. "_objFlags": 0,
  7524. "node": {
  7525. "__id__": 217
  7526. },
  7527. "_enabled": true,
  7528. "__prefab": null,
  7529. "_id": "49WPaAsadKsKoMmKQLQhN1"
  7530. },
  7531. {
  7532. "__type__": "cc.Node",
  7533. "_name": "LevelManager",
  7534. "_objFlags": 0,
  7535. "_parent": {
  7536. "__id__": 2
  7537. },
  7538. "_children": [],
  7539. "_active": true,
  7540. "_components": [
  7541. {
  7542. "__id__": 221
  7543. }
  7544. ],
  7545. "_prefab": null,
  7546. "_lpos": {
  7547. "__type__": "cc.Vec3",
  7548. "x": 0,
  7549. "y": 0,
  7550. "z": 0
  7551. },
  7552. "_lrot": {
  7553. "__type__": "cc.Quat",
  7554. "x": 0,
  7555. "y": 0,
  7556. "z": 0,
  7557. "w": 1
  7558. },
  7559. "_lscale": {
  7560. "__type__": "cc.Vec3",
  7561. "x": 1,
  7562. "y": 1,
  7563. "z": 1
  7564. },
  7565. "_mobility": 0,
  7566. "_layer": 1073741824,
  7567. "_euler": {
  7568. "__type__": "cc.Vec3",
  7569. "x": 0,
  7570. "y": 0,
  7571. "z": 0
  7572. },
  7573. "_id": "ae7Hx27zVByrbunwO5wAeH"
  7574. },
  7575. {
  7576. "__type__": "47e67Z+VixO4pNkH3a12P3G",
  7577. "_name": "",
  7578. "_objFlags": 0,
  7579. "node": {
  7580. "__id__": 220
  7581. },
  7582. "_enabled": true,
  7583. "__prefab": null,
  7584. "levelDataJson": {
  7585. "__uuid__": "e418ad72-966e-4c18-aeb5-6ac1ea28ec2d",
  7586. "__expectedType__": "cc.JsonAsset"
  7587. },
  7588. "_id": "84G/NCnS1DbLBWBkNkhAf3"
  7589. },
  7590. {
  7591. "__type__": "cc.PrefabInfo",
  7592. "root": null,
  7593. "asset": null,
  7594. "fileId": "80697901-e8f5-4759-b18f-a95692ce9cd2",
  7595. "instance": null,
  7596. "targetOverrides": null,
  7597. "nestedPrefabInstanceRoots": [
  7598. {
  7599. "__id__": 174
  7600. }
  7601. ]
  7602. },
  7603. {
  7604. "__type__": "cc.SceneGlobals",
  7605. "ambient": {
  7606. "__id__": 224
  7607. },
  7608. "shadows": {
  7609. "__id__": 225
  7610. },
  7611. "_skybox": {
  7612. "__id__": 226
  7613. },
  7614. "fog": {
  7615. "__id__": 227
  7616. },
  7617. "octree": {
  7618. "__id__": 228
  7619. },
  7620. "lightProbeInfo": {
  7621. "__id__": 229
  7622. },
  7623. "bakedWithStationaryMainLight": false,
  7624. "bakedWithHighpLightmap": false
  7625. },
  7626. {
  7627. "__type__": "cc.AmbientInfo",
  7628. "_skyColorHDR": {
  7629. "__type__": "cc.Vec4",
  7630. "x": 0,
  7631. "y": 0,
  7632. "z": 0,
  7633. "w": 0.520833125
  7634. },
  7635. "_skyColor": {
  7636. "__type__": "cc.Vec4",
  7637. "x": 0,
  7638. "y": 0,
  7639. "z": 0,
  7640. "w": 0.520833125
  7641. },
  7642. "_skyIllumHDR": 20000,
  7643. "_skyIllum": 20000,
  7644. "_groundAlbedoHDR": {
  7645. "__type__": "cc.Vec4",
  7646. "x": 0,
  7647. "y": 0,
  7648. "z": 0,
  7649. "w": 0
  7650. },
  7651. "_groundAlbedo": {
  7652. "__type__": "cc.Vec4",
  7653. "x": 0,
  7654. "y": 0,
  7655. "z": 0,
  7656. "w": 0
  7657. },
  7658. "_skyColorLDR": {
  7659. "__type__": "cc.Vec4",
  7660. "x": 0.2,
  7661. "y": 0.5,
  7662. "z": 0.8,
  7663. "w": 1
  7664. },
  7665. "_skyIllumLDR": 20000,
  7666. "_groundAlbedoLDR": {
  7667. "__type__": "cc.Vec4",
  7668. "x": 0.2,
  7669. "y": 0.2,
  7670. "z": 0.2,
  7671. "w": 1
  7672. }
  7673. },
  7674. {
  7675. "__type__": "cc.ShadowsInfo",
  7676. "_enabled": false,
  7677. "_type": 0,
  7678. "_normal": {
  7679. "__type__": "cc.Vec3",
  7680. "x": 0,
  7681. "y": 1,
  7682. "z": 0
  7683. },
  7684. "_distance": 0,
  7685. "_shadowColor": {
  7686. "__type__": "cc.Color",
  7687. "r": 76,
  7688. "g": 76,
  7689. "b": 76,
  7690. "a": 255
  7691. },
  7692. "_maxReceived": 4,
  7693. "_size": {
  7694. "__type__": "cc.Vec2",
  7695. "x": 512,
  7696. "y": 512
  7697. }
  7698. },
  7699. {
  7700. "__type__": "cc.SkyboxInfo",
  7701. "_envLightingType": 0,
  7702. "_envmapHDR": null,
  7703. "_envmap": null,
  7704. "_envmapLDR": null,
  7705. "_diffuseMapHDR": null,
  7706. "_diffuseMapLDR": null,
  7707. "_enabled": false,
  7708. "_useHDR": true,
  7709. "_editableMaterial": null,
  7710. "_reflectionHDR": null,
  7711. "_reflectionLDR": null,
  7712. "_rotationAngle": 0
  7713. },
  7714. {
  7715. "__type__": "cc.FogInfo",
  7716. "_type": 0,
  7717. "_fogColor": {
  7718. "__type__": "cc.Color",
  7719. "r": 200,
  7720. "g": 200,
  7721. "b": 200,
  7722. "a": 255
  7723. },
  7724. "_enabled": false,
  7725. "_fogDensity": 0.3,
  7726. "_fogStart": 0.5,
  7727. "_fogEnd": 300,
  7728. "_fogAtten": 5,
  7729. "_fogTop": 1.5,
  7730. "_fogRange": 1.2,
  7731. "_accurate": false
  7732. },
  7733. {
  7734. "__type__": "cc.OctreeInfo",
  7735. "_enabled": false,
  7736. "_minPos": {
  7737. "__type__": "cc.Vec3",
  7738. "x": -1024,
  7739. "y": -1024,
  7740. "z": -1024
  7741. },
  7742. "_maxPos": {
  7743. "__type__": "cc.Vec3",
  7744. "x": 1024,
  7745. "y": 1024,
  7746. "z": 1024
  7747. },
  7748. "_depth": 8
  7749. },
  7750. {
  7751. "__type__": "cc.LightProbeInfo",
  7752. "_giScale": 1,
  7753. "_giSamples": 1024,
  7754. "_bounces": 2,
  7755. "_reduceRinging": 0,
  7756. "_showProbe": true,
  7757. "_showWireframe": true,
  7758. "_showConvex": false,
  7759. "_data": null
  7760. }
  7761. ]