game.scene 123 KB

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