game.scene 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180
  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__": 186
  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__": 187
  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__": 181
  75. },
  76. {
  77. "__id__": 184
  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": true,
  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__": 145
  182. },
  183. "scoreLabel2": {
  184. "__id__": 150
  185. },
  186. "timeLabel2": {
  187. "__id__": 160
  188. },
  189. "levelLabel2": {
  190. "__id__": 170
  191. },
  192. "gameEndTip": {
  193. "__id__": 93
  194. },
  195. "GameMain": {
  196. "__id__": 83
  197. },
  198. "_id": "70XLo86IdHrI5/VwBEXHwY"
  199. },
  200. {
  201. "__type__": "cc.Node",
  202. "_name": "GameMainPanel",
  203. "_objFlags": 0,
  204. "_parent": {
  205. "__id__": 7
  206. },
  207. "_children": [
  208. {
  209. "__id__": 14
  210. },
  211. {
  212. "__id__": 93
  213. },
  214. {
  215. "__id__": 133
  216. },
  217. {
  218. "__id__": 145
  219. }
  220. ],
  221. "_active": true,
  222. "_components": [
  223. {
  224. "__id__": 178
  225. },
  226. {
  227. "__id__": 179
  228. },
  229. {
  230. "__id__": 5
  231. },
  232. {
  233. "__id__": 180
  234. }
  235. ],
  236. "_prefab": null,
  237. "_lpos": {
  238. "__type__": "cc.Vec3",
  239. "x": 0,
  240. "y": 0,
  241. "z": 0
  242. },
  243. "_lrot": {
  244. "__type__": "cc.Quat",
  245. "x": 0,
  246. "y": 0,
  247. "z": 0,
  248. "w": 1
  249. },
  250. "_lscale": {
  251. "__type__": "cc.Vec3",
  252. "x": 1,
  253. "y": 1,
  254. "z": 1
  255. },
  256. "_mobility": 0,
  257. "_layer": 33554432,
  258. "_euler": {
  259. "__type__": "cc.Vec3",
  260. "x": 0,
  261. "y": 0,
  262. "z": 0
  263. },
  264. "_id": "1bez9Ign9FoKv1lpVS5Rjb"
  265. },
  266. {
  267. "__type__": "cc.Node",
  268. "_name": "Canvas",
  269. "_objFlags": 0,
  270. "_parent": {
  271. "__id__": 1
  272. },
  273. "_children": [
  274. {
  275. "__id__": 8
  276. },
  277. {
  278. "__id__": 6
  279. }
  280. ],
  281. "_active": true,
  282. "_components": [
  283. {
  284. "__id__": 10
  285. },
  286. {
  287. "__id__": 11
  288. },
  289. {
  290. "__id__": 12
  291. },
  292. {
  293. "__id__": 13
  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__": "cc.Node",
  495. "_name": "GameRoot",
  496. "_objFlags": 0,
  497. "_parent": {
  498. "__id__": 6
  499. },
  500. "_children": [
  501. {
  502. "__id__": 15
  503. }
  504. ],
  505. "_active": true,
  506. "_components": [
  507. {
  508. "__id__": 91
  509. },
  510. {
  511. "__id__": 92
  512. }
  513. ],
  514. "_prefab": null,
  515. "_lpos": {
  516. "__type__": "cc.Vec3",
  517. "x": 0,
  518. "y": 0,
  519. "z": 0
  520. },
  521. "_lrot": {
  522. "__type__": "cc.Quat",
  523. "x": 0,
  524. "y": 0,
  525. "z": 0,
  526. "w": 1
  527. },
  528. "_lscale": {
  529. "__type__": "cc.Vec3",
  530. "x": 1,
  531. "y": 1,
  532. "z": 1
  533. },
  534. "_mobility": 0,
  535. "_layer": 33554432,
  536. "_euler": {
  537. "__type__": "cc.Vec3",
  538. "x": 0,
  539. "y": 0,
  540. "z": 0
  541. },
  542. "_id": "f2FXLyK6xODqM9j6JFtAfH"
  543. },
  544. {
  545. "__type__": "cc.Node",
  546. "_name": "GameMask",
  547. "_objFlags": 0,
  548. "_parent": {
  549. "__id__": 14
  550. },
  551. "_children": [
  552. {
  553. "__id__": 16
  554. }
  555. ],
  556. "_active": true,
  557. "_components": [
  558. {
  559. "__id__": 87
  560. },
  561. {
  562. "__id__": 88
  563. },
  564. {
  565. "__id__": 89
  566. },
  567. {
  568. "__id__": 90
  569. }
  570. ],
  571. "_prefab": null,
  572. "_lpos": {
  573. "__type__": "cc.Vec3",
  574. "x": 0,
  575. "y": 0,
  576. "z": 0
  577. },
  578. "_lrot": {
  579. "__type__": "cc.Quat",
  580. "x": 0,
  581. "y": 0,
  582. "z": 0,
  583. "w": 1
  584. },
  585. "_lscale": {
  586. "__type__": "cc.Vec3",
  587. "x": 1,
  588. "y": 1,
  589. "z": 1
  590. },
  591. "_mobility": 0,
  592. "_layer": 33554432,
  593. "_euler": {
  594. "__type__": "cc.Vec3",
  595. "x": 0,
  596. "y": 0,
  597. "z": 0
  598. },
  599. "_id": "44/0d3Z7JMwZJiB2DpX1lc"
  600. },
  601. {
  602. "__type__": "cc.Node",
  603. "_name": "GameBg",
  604. "_objFlags": 0,
  605. "_parent": {
  606. "__id__": 15
  607. },
  608. "_children": [
  609. {
  610. "__id__": 17
  611. }
  612. ],
  613. "_active": true,
  614. "_components": [
  615. {
  616. "__id__": 84
  617. },
  618. {
  619. "__id__": 85
  620. },
  621. {
  622. "__id__": 86
  623. }
  624. ],
  625. "_prefab": null,
  626. "_lpos": {
  627. "__type__": "cc.Vec3",
  628. "x": 0,
  629. "y": 0,
  630. "z": 0
  631. },
  632. "_lrot": {
  633. "__type__": "cc.Quat",
  634. "x": 0,
  635. "y": 0,
  636. "z": 0,
  637. "w": 1
  638. },
  639. "_lscale": {
  640. "__type__": "cc.Vec3",
  641. "x": 1,
  642. "y": 1,
  643. "z": 1
  644. },
  645. "_mobility": 0,
  646. "_layer": 33554432,
  647. "_euler": {
  648. "__type__": "cc.Vec3",
  649. "x": 0,
  650. "y": 0,
  651. "z": 0
  652. },
  653. "_id": "8ed6xtU5NMGbVL2f5cu1pT"
  654. },
  655. {
  656. "__type__": "cc.Node",
  657. "_name": "GameMain",
  658. "_objFlags": 0,
  659. "__editorExtras__": {},
  660. "_parent": {
  661. "__id__": 16
  662. },
  663. "_children": [
  664. {
  665. "__id__": 18
  666. }
  667. ],
  668. "_active": true,
  669. "_components": [
  670. {
  671. "__id__": 81
  672. },
  673. {
  674. "__id__": 82
  675. },
  676. {
  677. "__id__": 83
  678. }
  679. ],
  680. "_prefab": null,
  681. "_lpos": {
  682. "__type__": "cc.Vec3",
  683. "x": 0,
  684. "y": 0,
  685. "z": 0
  686. },
  687. "_lrot": {
  688. "__type__": "cc.Quat",
  689. "x": 0,
  690. "y": 0,
  691. "z": 0,
  692. "w": 1
  693. },
  694. "_lscale": {
  695. "__type__": "cc.Vec3",
  696. "x": 1,
  697. "y": 1,
  698. "z": 1
  699. },
  700. "_mobility": 0,
  701. "_layer": 33554432,
  702. "_euler": {
  703. "__type__": "cc.Vec3",
  704. "x": 0,
  705. "y": 0,
  706. "z": 0
  707. },
  708. "_id": "eeo8esd8VGAYLnLu37ne4B"
  709. },
  710. {
  711. "__type__": "cc.Node",
  712. "_name": "Bg",
  713. "_objFlags": 0,
  714. "_parent": {
  715. "__id__": 17
  716. },
  717. "_children": [
  718. {
  719. "__id__": 19
  720. },
  721. {
  722. "__id__": 22
  723. },
  724. {
  725. "__id__": 39
  726. },
  727. {
  728. "__id__": 45
  729. },
  730. {
  731. "__id__": 50
  732. },
  733. {
  734. "__id__": 62
  735. },
  736. {
  737. "__id__": 74
  738. }
  739. ],
  740. "_active": true,
  741. "_components": [
  742. {
  743. "__id__": 78
  744. },
  745. {
  746. "__id__": 79
  747. },
  748. {
  749. "__id__": 80
  750. }
  751. ],
  752. "_prefab": null,
  753. "_lpos": {
  754. "__type__": "cc.Vec3",
  755. "x": 0,
  756. "y": 0,
  757. "z": 0
  758. },
  759. "_lrot": {
  760. "__type__": "cc.Quat",
  761. "x": 0,
  762. "y": 0,
  763. "z": 0,
  764. "w": 1
  765. },
  766. "_lscale": {
  767. "__type__": "cc.Vec3",
  768. "x": 1,
  769. "y": 1,
  770. "z": 1
  771. },
  772. "_mobility": 0,
  773. "_layer": 33554432,
  774. "_euler": {
  775. "__type__": "cc.Vec3",
  776. "x": 0,
  777. "y": 0,
  778. "z": 0
  779. },
  780. "_id": "77D2ztXrNKyatfc8WkdcSy"
  781. },
  782. {
  783. "__type__": "cc.Node",
  784. "_name": "xuehua",
  785. "_objFlags": 0,
  786. "_parent": {
  787. "__id__": 18
  788. },
  789. "_children": [],
  790. "_active": true,
  791. "_components": [
  792. {
  793. "__id__": 20
  794. },
  795. {
  796. "__id__": 21
  797. }
  798. ],
  799. "_prefab": null,
  800. "_lpos": {
  801. "__type__": "cc.Vec3",
  802. "x": 0,
  803. "y": 1.945,
  804. "z": 0
  805. },
  806. "_lrot": {
  807. "__type__": "cc.Quat",
  808. "x": 0,
  809. "y": 0,
  810. "z": 0,
  811. "w": 1
  812. },
  813. "_lscale": {
  814. "__type__": "cc.Vec3",
  815. "x": 1.5,
  816. "y": 1.5,
  817. "z": 1
  818. },
  819. "_mobility": 0,
  820. "_layer": 33554432,
  821. "_euler": {
  822. "__type__": "cc.Vec3",
  823. "x": 0,
  824. "y": 0,
  825. "z": 0
  826. },
  827. "_id": "09bAwTU+5JPJeAwc0QTNZO"
  828. },
  829. {
  830. "__type__": "cc.UITransform",
  831. "_name": "",
  832. "_objFlags": 0,
  833. "node": {
  834. "__id__": 19
  835. },
  836. "_enabled": true,
  837. "__prefab": null,
  838. "_contentSize": {
  839. "__type__": "cc.Size",
  840. "width": 1493.82,
  841. "height": 340.37
  842. },
  843. "_anchorPoint": {
  844. "__type__": "cc.Vec2",
  845. "x": 0.33870211939858885,
  846. "y": 2.073361342068925
  847. },
  848. "_id": "667fxVCatM74oiByB99d2o"
  849. },
  850. {
  851. "__type__": "sp.Skeleton",
  852. "_name": "",
  853. "_objFlags": 0,
  854. "node": {
  855. "__id__": 19
  856. },
  857. "_enabled": true,
  858. "__prefab": null,
  859. "_customMaterial": null,
  860. "_srcBlendFactor": 2,
  861. "_dstBlendFactor": 4,
  862. "_color": {
  863. "__type__": "cc.Color",
  864. "r": 255,
  865. "g": 255,
  866. "b": 255,
  867. "a": 255
  868. },
  869. "loop": true,
  870. "_timeScale": 1,
  871. "_useTint": false,
  872. "_preCacheMode": 0,
  873. "_cacheMode": 0,
  874. "_defaultCacheMode": 0,
  875. "_debugBones": false,
  876. "_debugSlots": false,
  877. "_skeletonData": {
  878. "__uuid__": "dc92d60d-f36c-4833-b507-faf4689c2dde",
  879. "__expectedType__": "sp.SkeletonData"
  880. },
  881. "_premultipliedAlpha": true,
  882. "defaultSkin": "pifu",
  883. "defaultAnimation": "xue_loop151f",
  884. "_enableBatch": false,
  885. "_sockets": [],
  886. "_debugMesh": false,
  887. "_id": "d2aI1cj8BNcan3sRCw9Njp"
  888. },
  889. {
  890. "__type__": "cc.Node",
  891. "_name": "UpNode",
  892. "_objFlags": 0,
  893. "_parent": {
  894. "__id__": 18
  895. },
  896. "_children": [
  897. {
  898. "__id__": 23
  899. },
  900. {
  901. "__id__": 27
  902. },
  903. {
  904. "__id__": 31
  905. }
  906. ],
  907. "_active": true,
  908. "_components": [
  909. {
  910. "__id__": 35
  911. },
  912. {
  913. "__id__": 36
  914. },
  915. {
  916. "__id__": 37
  917. },
  918. {
  919. "__id__": 38
  920. }
  921. ],
  922. "_prefab": null,
  923. "_lpos": {
  924. "__type__": "cc.Vec3",
  925. "x": 0,
  926. "y": 160,
  927. "z": 0
  928. },
  929. "_lrot": {
  930. "__type__": "cc.Quat",
  931. "x": 0,
  932. "y": 0,
  933. "z": 0,
  934. "w": 1
  935. },
  936. "_lscale": {
  937. "__type__": "cc.Vec3",
  938. "x": 0.9,
  939. "y": 0.9,
  940. "z": 1
  941. },
  942. "_mobility": 0,
  943. "_layer": 33554432,
  944. "_euler": {
  945. "__type__": "cc.Vec3",
  946. "x": 0,
  947. "y": 0,
  948. "z": 0
  949. },
  950. "_id": "9bTj6c4TpCD68jJx6aB8OI"
  951. },
  952. {
  953. "__type__": "cc.Node",
  954. "_name": "Item",
  955. "_objFlags": 0,
  956. "_parent": {
  957. "__id__": 22
  958. },
  959. "_children": [],
  960. "_active": true,
  961. "_components": [
  962. {
  963. "__id__": 24
  964. },
  965. {
  966. "__id__": 25
  967. },
  968. {
  969. "__id__": 26
  970. }
  971. ],
  972. "_prefab": null,
  973. "_lpos": {
  974. "__type__": "cc.Vec3",
  975. "x": 2.2737367544323206e-13,
  976. "y": 0,
  977. "z": 0
  978. },
  979. "_lrot": {
  980. "__type__": "cc.Quat",
  981. "x": 0,
  982. "y": 0,
  983. "z": 0,
  984. "w": 1
  985. },
  986. "_lscale": {
  987. "__type__": "cc.Vec3",
  988. "x": 3,
  989. "y": 3,
  990. "z": 3
  991. },
  992. "_mobility": 0,
  993. "_layer": 33554432,
  994. "_euler": {
  995. "__type__": "cc.Vec3",
  996. "x": 0,
  997. "y": 0,
  998. "z": 0
  999. },
  1000. "_id": "9cEGYXNN9AL5U7V4lyFs6u"
  1001. },
  1002. {
  1003. "__type__": "cc.UITransform",
  1004. "_name": "",
  1005. "_objFlags": 0,
  1006. "node": {
  1007. "__id__": 23
  1008. },
  1009. "_enabled": true,
  1010. "__prefab": null,
  1011. "_contentSize": {
  1012. "__type__": "cc.Size",
  1013. "width": 72,
  1014. "height": 189
  1015. },
  1016. "_anchorPoint": {
  1017. "__type__": "cc.Vec2",
  1018. "x": 0.5,
  1019. "y": 0.5
  1020. },
  1021. "_id": "a2vowHnKxOU7CSD62XGgz1"
  1022. },
  1023. {
  1024. "__type__": "cc.Sprite",
  1025. "_name": "",
  1026. "_objFlags": 0,
  1027. "node": {
  1028. "__id__": 23
  1029. },
  1030. "_enabled": true,
  1031. "__prefab": null,
  1032. "_customMaterial": null,
  1033. "_srcBlendFactor": 2,
  1034. "_dstBlendFactor": 4,
  1035. "_color": {
  1036. "__type__": "cc.Color",
  1037. "r": 255,
  1038. "g": 255,
  1039. "b": 255,
  1040. "a": 255
  1041. },
  1042. "_spriteFrame": {
  1043. "__uuid__": "4321ebe9-8fbf-4b16-baf5-285d15d8250d@0bd1b",
  1044. "__expectedType__": "cc.SpriteFrame"
  1045. },
  1046. "_type": 0,
  1047. "_fillType": 0,
  1048. "_sizeMode": 1,
  1049. "_fillCenter": {
  1050. "__type__": "cc.Vec2",
  1051. "x": 0,
  1052. "y": 0
  1053. },
  1054. "_fillStart": 0,
  1055. "_fillRange": 0,
  1056. "_isTrimmedMode": true,
  1057. "_useGrayscale": false,
  1058. "_atlas": null,
  1059. "_id": "67hTuK+jRPM7pfNQmajb3e"
  1060. },
  1061. {
  1062. "__type__": "cc.UIOpacity",
  1063. "_name": "",
  1064. "_objFlags": 0,
  1065. "node": {
  1066. "__id__": 23
  1067. },
  1068. "_enabled": true,
  1069. "__prefab": null,
  1070. "_opacity": 255,
  1071. "_id": "03tN5IMoVIf40wgwpe/lfW"
  1072. },
  1073. {
  1074. "__type__": "cc.Node",
  1075. "_name": "Item",
  1076. "_objFlags": 0,
  1077. "_parent": {
  1078. "__id__": 22
  1079. },
  1080. "_children": [],
  1081. "_active": true,
  1082. "_components": [
  1083. {
  1084. "__id__": 28
  1085. },
  1086. {
  1087. "__id__": 29
  1088. },
  1089. {
  1090. "__id__": 30
  1091. }
  1092. ],
  1093. "_prefab": null,
  1094. "_lpos": {
  1095. "__type__": "cc.Vec3",
  1096. "x": 2.2737367544323206e-13,
  1097. "y": 0,
  1098. "z": 0
  1099. },
  1100. "_lrot": {
  1101. "__type__": "cc.Quat",
  1102. "x": 0,
  1103. "y": 0,
  1104. "z": 0,
  1105. "w": 1
  1106. },
  1107. "_lscale": {
  1108. "__type__": "cc.Vec3",
  1109. "x": 2,
  1110. "y": 2,
  1111. "z": 2
  1112. },
  1113. "_mobility": 0,
  1114. "_layer": 33554432,
  1115. "_euler": {
  1116. "__type__": "cc.Vec3",
  1117. "x": 0,
  1118. "y": 0,
  1119. "z": 0
  1120. },
  1121. "_id": "55ATEhrWVM17bqjbk+98kl"
  1122. },
  1123. {
  1124. "__type__": "cc.UITransform",
  1125. "_name": "",
  1126. "_objFlags": 0,
  1127. "node": {
  1128. "__id__": 27
  1129. },
  1130. "_enabled": true,
  1131. "__prefab": null,
  1132. "_contentSize": {
  1133. "__type__": "cc.Size",
  1134. "width": 115,
  1135. "height": 110
  1136. },
  1137. "_anchorPoint": {
  1138. "__type__": "cc.Vec2",
  1139. "x": 0.5,
  1140. "y": 0.5
  1141. },
  1142. "_id": "91F8JRpVNPnYjvSTlxvbzp"
  1143. },
  1144. {
  1145. "__type__": "cc.Sprite",
  1146. "_name": "",
  1147. "_objFlags": 0,
  1148. "node": {
  1149. "__id__": 27
  1150. },
  1151. "_enabled": true,
  1152. "__prefab": null,
  1153. "_customMaterial": null,
  1154. "_srcBlendFactor": 2,
  1155. "_dstBlendFactor": 4,
  1156. "_color": {
  1157. "__type__": "cc.Color",
  1158. "r": 255,
  1159. "g": 255,
  1160. "b": 255,
  1161. "a": 255
  1162. },
  1163. "_spriteFrame": {
  1164. "__uuid__": "4321ebe9-8fbf-4b16-baf5-285d15d8250d@22557",
  1165. "__expectedType__": "cc.SpriteFrame"
  1166. },
  1167. "_type": 0,
  1168. "_fillType": 0,
  1169. "_sizeMode": 1,
  1170. "_fillCenter": {
  1171. "__type__": "cc.Vec2",
  1172. "x": 0,
  1173. "y": 0
  1174. },
  1175. "_fillStart": 0,
  1176. "_fillRange": 0,
  1177. "_isTrimmedMode": true,
  1178. "_useGrayscale": false,
  1179. "_atlas": null,
  1180. "_id": "5dxojUIcdATbg5FM7ZxIdd"
  1181. },
  1182. {
  1183. "__type__": "cc.UIOpacity",
  1184. "_name": "",
  1185. "_objFlags": 0,
  1186. "node": {
  1187. "__id__": 27
  1188. },
  1189. "_enabled": true,
  1190. "__prefab": null,
  1191. "_opacity": 255,
  1192. "_id": "7brc6c/PRNNqbokGlve3gm"
  1193. },
  1194. {
  1195. "__type__": "cc.Node",
  1196. "_name": "Item",
  1197. "_objFlags": 0,
  1198. "_parent": {
  1199. "__id__": 22
  1200. },
  1201. "_children": [],
  1202. "_active": true,
  1203. "_components": [
  1204. {
  1205. "__id__": 32
  1206. },
  1207. {
  1208. "__id__": 33
  1209. },
  1210. {
  1211. "__id__": 34
  1212. }
  1213. ],
  1214. "_prefab": null,
  1215. "_lpos": {
  1216. "__type__": "cc.Vec3",
  1217. "x": 2.2737367544323206e-13,
  1218. "y": 0,
  1219. "z": 0
  1220. },
  1221. "_lrot": {
  1222. "__type__": "cc.Quat",
  1223. "x": 0,
  1224. "y": 0,
  1225. "z": 0,
  1226. "w": 1
  1227. },
  1228. "_lscale": {
  1229. "__type__": "cc.Vec3",
  1230. "x": 1,
  1231. "y": 1,
  1232. "z": 1
  1233. },
  1234. "_mobility": 0,
  1235. "_layer": 33554432,
  1236. "_euler": {
  1237. "__type__": "cc.Vec3",
  1238. "x": 0,
  1239. "y": 0,
  1240. "z": 0
  1241. },
  1242. "_id": "53aWAt8JFI8I8wmwzp4Vxj"
  1243. },
  1244. {
  1245. "__type__": "cc.UITransform",
  1246. "_name": "",
  1247. "_objFlags": 0,
  1248. "node": {
  1249. "__id__": 31
  1250. },
  1251. "_enabled": true,
  1252. "__prefab": null,
  1253. "_contentSize": {
  1254. "__type__": "cc.Size",
  1255. "width": 115,
  1256. "height": 110
  1257. },
  1258. "_anchorPoint": {
  1259. "__type__": "cc.Vec2",
  1260. "x": 0.5,
  1261. "y": 0.5
  1262. },
  1263. "_id": "26XZbAs+VICa/xX5h1JgEI"
  1264. },
  1265. {
  1266. "__type__": "cc.Sprite",
  1267. "_name": "",
  1268. "_objFlags": 0,
  1269. "node": {
  1270. "__id__": 31
  1271. },
  1272. "_enabled": true,
  1273. "__prefab": null,
  1274. "_customMaterial": null,
  1275. "_srcBlendFactor": 2,
  1276. "_dstBlendFactor": 4,
  1277. "_color": {
  1278. "__type__": "cc.Color",
  1279. "r": 255,
  1280. "g": 255,
  1281. "b": 255,
  1282. "a": 255
  1283. },
  1284. "_spriteFrame": {
  1285. "__uuid__": "4321ebe9-8fbf-4b16-baf5-285d15d8250d@22557",
  1286. "__expectedType__": "cc.SpriteFrame"
  1287. },
  1288. "_type": 0,
  1289. "_fillType": 0,
  1290. "_sizeMode": 1,
  1291. "_fillCenter": {
  1292. "__type__": "cc.Vec2",
  1293. "x": 0,
  1294. "y": 0
  1295. },
  1296. "_fillStart": 0,
  1297. "_fillRange": 0,
  1298. "_isTrimmedMode": true,
  1299. "_useGrayscale": false,
  1300. "_atlas": null,
  1301. "_id": "deCAoL45NEiKk/rspE/6yZ"
  1302. },
  1303. {
  1304. "__type__": "cc.UIOpacity",
  1305. "_name": "",
  1306. "_objFlags": 0,
  1307. "node": {
  1308. "__id__": 31
  1309. },
  1310. "_enabled": true,
  1311. "__prefab": null,
  1312. "_opacity": 255,
  1313. "_id": "5biF76+RlL05Hwyts9BYYf"
  1314. },
  1315. {
  1316. "__type__": "cc.UITransform",
  1317. "_name": "",
  1318. "_objFlags": 0,
  1319. "node": {
  1320. "__id__": 22
  1321. },
  1322. "_enabled": true,
  1323. "__prefab": null,
  1324. "_contentSize": {
  1325. "__type__": "cc.Size",
  1326. "width": 600,
  1327. "height": 600
  1328. },
  1329. "_anchorPoint": {
  1330. "__type__": "cc.Vec2",
  1331. "x": 0.5,
  1332. "y": 0.5
  1333. },
  1334. "_id": "6bV/uTyr9JHJTfCIg6tk7x"
  1335. },
  1336. {
  1337. "__type__": "cc.Widget",
  1338. "_name": "",
  1339. "_objFlags": 0,
  1340. "node": {
  1341. "__id__": 22
  1342. },
  1343. "_enabled": true,
  1344. "__prefab": null,
  1345. "_alignFlags": 18,
  1346. "_target": null,
  1347. "_left": 0,
  1348. "_right": 0,
  1349. "_top": 200,
  1350. "_bottom": 0,
  1351. "_horizontalCenter": 0,
  1352. "_verticalCenter": 160,
  1353. "_isAbsLeft": true,
  1354. "_isAbsRight": true,
  1355. "_isAbsTop": true,
  1356. "_isAbsBottom": true,
  1357. "_isAbsHorizontalCenter": true,
  1358. "_isAbsVerticalCenter": true,
  1359. "_originalWidth": 0,
  1360. "_originalHeight": 0,
  1361. "_alignMode": 2,
  1362. "_lockFlags": 0,
  1363. "_id": "34kk0Ai0xNVYt0ynyD/jxi"
  1364. },
  1365. {
  1366. "__type__": "cc.Sprite",
  1367. "_name": "",
  1368. "_objFlags": 0,
  1369. "node": {
  1370. "__id__": 22
  1371. },
  1372. "_enabled": true,
  1373. "__prefab": null,
  1374. "_customMaterial": null,
  1375. "_srcBlendFactor": 2,
  1376. "_dstBlendFactor": 4,
  1377. "_color": {
  1378. "__type__": "cc.Color",
  1379. "r": 255,
  1380. "g": 255,
  1381. "b": 255,
  1382. "a": 255
  1383. },
  1384. "_spriteFrame": {
  1385. "__uuid__": "a5028d7a-e91b-4e47-b6e0-be905eba9efc@f9941",
  1386. "__expectedType__": "cc.SpriteFrame"
  1387. },
  1388. "_type": 0,
  1389. "_fillType": 0,
  1390. "_sizeMode": 0,
  1391. "_fillCenter": {
  1392. "__type__": "cc.Vec2",
  1393. "x": 0,
  1394. "y": 0
  1395. },
  1396. "_fillStart": 0,
  1397. "_fillRange": 0,
  1398. "_isTrimmedMode": true,
  1399. "_useGrayscale": false,
  1400. "_atlas": null,
  1401. "_id": "beyExhRk5PRYeDD3Zv53qD"
  1402. },
  1403. {
  1404. "__type__": "cc.UIOpacity",
  1405. "_name": "",
  1406. "_objFlags": 0,
  1407. "node": {
  1408. "__id__": 22
  1409. },
  1410. "_enabled": true,
  1411. "__prefab": null,
  1412. "_opacity": 255,
  1413. "_id": "deyocDDQVBBatXwczLMwko"
  1414. },
  1415. {
  1416. "__type__": "cc.Node",
  1417. "_name": "QStr",
  1418. "_objFlags": 0,
  1419. "_parent": {
  1420. "__id__": 18
  1421. },
  1422. "_children": [],
  1423. "_active": true,
  1424. "_components": [
  1425. {
  1426. "__id__": 40
  1427. },
  1428. {
  1429. "__id__": 41
  1430. },
  1431. {
  1432. "__id__": 42
  1433. },
  1434. {
  1435. "__id__": 43
  1436. },
  1437. {
  1438. "__id__": 44
  1439. }
  1440. ],
  1441. "_prefab": null,
  1442. "_lpos": {
  1443. "__type__": "cc.Vec3",
  1444. "x": 0,
  1445. "y": -180,
  1446. "z": 0
  1447. },
  1448. "_lrot": {
  1449. "__type__": "cc.Quat",
  1450. "x": 0,
  1451. "y": 0,
  1452. "z": 0,
  1453. "w": 1
  1454. },
  1455. "_lscale": {
  1456. "__type__": "cc.Vec3",
  1457. "x": 1,
  1458. "y": 1,
  1459. "z": 1
  1460. },
  1461. "_mobility": 0,
  1462. "_layer": 33554432,
  1463. "_euler": {
  1464. "__type__": "cc.Vec3",
  1465. "x": 0,
  1466. "y": 0,
  1467. "z": 0
  1468. },
  1469. "_id": "8aOXGlsCdOqpuy5wKeD1Fy"
  1470. },
  1471. {
  1472. "__type__": "cc.UITransform",
  1473. "_name": "",
  1474. "_objFlags": 0,
  1475. "node": {
  1476. "__id__": 39
  1477. },
  1478. "_enabled": true,
  1479. "__prefab": null,
  1480. "_contentSize": {
  1481. "__type__": "cc.Size",
  1482. "width": 710,
  1483. "height": 85.6
  1484. },
  1485. "_anchorPoint": {
  1486. "__type__": "cc.Vec2",
  1487. "x": 0.5,
  1488. "y": 0.5
  1489. },
  1490. "_id": "77xCRUTGdA+o3q+5kOw0Zz"
  1491. },
  1492. {
  1493. "__type__": "cc.Label",
  1494. "_name": "",
  1495. "_objFlags": 0,
  1496. "node": {
  1497. "__id__": 39
  1498. },
  1499. "_enabled": true,
  1500. "__prefab": null,
  1501. "_customMaterial": null,
  1502. "_srcBlendFactor": 2,
  1503. "_dstBlendFactor": 4,
  1504. "_color": {
  1505. "__type__": "cc.Color",
  1506. "r": 255,
  1507. "g": 255,
  1508. "b": 255,
  1509. "a": 255
  1510. },
  1511. "_string": "请选择可以组成上边图形的选项",
  1512. "_horizontalAlign": 1,
  1513. "_verticalAlign": 1,
  1514. "_actualFontSize": 50,
  1515. "_fontSize": 50,
  1516. "_fontFamily": "Arial",
  1517. "_lineHeight": 60,
  1518. "_overflow": 0,
  1519. "_enableWrapText": false,
  1520. "_font": {
  1521. "__uuid__": "b58ac682-7156-41da-84e5-31efce1f2b8e",
  1522. "__expectedType__": "cc.TTFFont"
  1523. },
  1524. "_isSystemFontUsed": false,
  1525. "_spacingX": 0,
  1526. "_isItalic": false,
  1527. "_isBold": true,
  1528. "_isUnderline": false,
  1529. "_underlineHeight": 2,
  1530. "_cacheMode": 0,
  1531. "_id": "19C+Oo0WBKGqclp2M3Ygdu"
  1532. },
  1533. {
  1534. "__type__": "cc.UIOpacity",
  1535. "_name": "",
  1536. "_objFlags": 0,
  1537. "node": {
  1538. "__id__": 39
  1539. },
  1540. "_enabled": true,
  1541. "__prefab": null,
  1542. "_opacity": 255,
  1543. "_id": "34icfZRuFAWYHCeb5WfpN3"
  1544. },
  1545. {
  1546. "__type__": "cc.LabelOutline",
  1547. "_name": "",
  1548. "_objFlags": 0,
  1549. "node": {
  1550. "__id__": 39
  1551. },
  1552. "_enabled": true,
  1553. "__prefab": null,
  1554. "_color": {
  1555. "__type__": "cc.Color",
  1556. "r": 173,
  1557. "g": 88,
  1558. "b": 40,
  1559. "a": 255
  1560. },
  1561. "_width": 5,
  1562. "_id": "524l/qSshNm45RMlG4ExCs"
  1563. },
  1564. {
  1565. "__type__": "cc.Widget",
  1566. "_name": "",
  1567. "_objFlags": 0,
  1568. "node": {
  1569. "__id__": 39
  1570. },
  1571. "_enabled": true,
  1572. "__prefab": null,
  1573. "_alignFlags": 18,
  1574. "_target": null,
  1575. "_left": 0,
  1576. "_right": 0,
  1577. "_top": 0,
  1578. "_bottom": 355,
  1579. "_horizontalCenter": 0,
  1580. "_verticalCenter": -180,
  1581. "_isAbsLeft": true,
  1582. "_isAbsRight": true,
  1583. "_isAbsTop": true,
  1584. "_isAbsBottom": true,
  1585. "_isAbsHorizontalCenter": true,
  1586. "_isAbsVerticalCenter": true,
  1587. "_originalWidth": 0,
  1588. "_originalHeight": 0,
  1589. "_alignMode": 2,
  1590. "_lockFlags": 0,
  1591. "_id": "13R0uK/iNMDacBLoa+Q+K6"
  1592. },
  1593. {
  1594. "__type__": "cc.Node",
  1595. "_name": "Down",
  1596. "_objFlags": 0,
  1597. "_parent": {
  1598. "__id__": 18
  1599. },
  1600. "_children": [],
  1601. "_active": true,
  1602. "_components": [
  1603. {
  1604. "__id__": 46
  1605. },
  1606. {
  1607. "__id__": 47
  1608. },
  1609. {
  1610. "__id__": 48
  1611. },
  1612. {
  1613. "__id__": 49
  1614. }
  1615. ],
  1616. "_prefab": null,
  1617. "_lpos": {
  1618. "__type__": "cc.Vec3",
  1619. "x": 0,
  1620. "y": -450,
  1621. "z": 0
  1622. },
  1623. "_lrot": {
  1624. "__type__": "cc.Quat",
  1625. "x": 0,
  1626. "y": 0,
  1627. "z": 0,
  1628. "w": 1
  1629. },
  1630. "_lscale": {
  1631. "__type__": "cc.Vec3",
  1632. "x": 0.8,
  1633. "y": 0.8,
  1634. "z": 0.8
  1635. },
  1636. "_mobility": 0,
  1637. "_layer": 33554432,
  1638. "_euler": {
  1639. "__type__": "cc.Vec3",
  1640. "x": 0,
  1641. "y": 0,
  1642. "z": 0
  1643. },
  1644. "_id": "b6vOVmvKJJEonWlAw1eywa"
  1645. },
  1646. {
  1647. "__type__": "cc.UITransform",
  1648. "_name": "",
  1649. "_objFlags": 0,
  1650. "node": {
  1651. "__id__": 45
  1652. },
  1653. "_enabled": true,
  1654. "__prefab": null,
  1655. "_contentSize": {
  1656. "__type__": "cc.Size",
  1657. "width": -50,
  1658. "height": 390
  1659. },
  1660. "_anchorPoint": {
  1661. "__type__": "cc.Vec2",
  1662. "x": 0.5,
  1663. "y": 0.5
  1664. },
  1665. "_id": "64BEKAVb1HK6nM3/gqYDZe"
  1666. },
  1667. {
  1668. "__type__": "cc.Layout",
  1669. "_name": "",
  1670. "_objFlags": 0,
  1671. "node": {
  1672. "__id__": 45
  1673. },
  1674. "_enabled": true,
  1675. "__prefab": null,
  1676. "_resizeMode": 1,
  1677. "_layoutType": 1,
  1678. "_cellSize": {
  1679. "__type__": "cc.Size",
  1680. "width": 40,
  1681. "height": 40
  1682. },
  1683. "_startAxis": 0,
  1684. "_paddingLeft": 0,
  1685. "_paddingRight": 0,
  1686. "_paddingTop": 0,
  1687. "_paddingBottom": 0,
  1688. "_spacingX": 50,
  1689. "_spacingY": 0,
  1690. "_verticalDirection": 1,
  1691. "_horizontalDirection": 0,
  1692. "_constraint": 0,
  1693. "_constraintNum": 2,
  1694. "_affectedByScale": false,
  1695. "_isAlign": false,
  1696. "_id": "43c4F8CbpGIpd14b0MI38v"
  1697. },
  1698. {
  1699. "__type__": "cc.UIOpacity",
  1700. "_name": "",
  1701. "_objFlags": 0,
  1702. "node": {
  1703. "__id__": 45
  1704. },
  1705. "_enabled": true,
  1706. "__prefab": null,
  1707. "_opacity": 255,
  1708. "_id": "bdO5jCeB1Fo6sFT3SWyUri"
  1709. },
  1710. {
  1711. "__type__": "cc.Widget",
  1712. "_name": "",
  1713. "_objFlags": 0,
  1714. "node": {
  1715. "__id__": 45
  1716. },
  1717. "_enabled": true,
  1718. "__prefab": null,
  1719. "_alignFlags": 18,
  1720. "_target": null,
  1721. "_left": 0,
  1722. "_right": 0,
  1723. "_top": 0,
  1724. "_bottom": 100,
  1725. "_horizontalCenter": 0,
  1726. "_verticalCenter": -450,
  1727. "_isAbsLeft": true,
  1728. "_isAbsRight": true,
  1729. "_isAbsTop": true,
  1730. "_isAbsBottom": true,
  1731. "_isAbsHorizontalCenter": true,
  1732. "_isAbsVerticalCenter": true,
  1733. "_originalWidth": 0,
  1734. "_originalHeight": 0,
  1735. "_alignMode": 2,
  1736. "_lockFlags": 0,
  1737. "_id": "28y3b9T6xPh6GCRTUf45ZQ"
  1738. },
  1739. {
  1740. "__type__": "cc.Node",
  1741. "_name": "GameWin",
  1742. "_objFlags": 0,
  1743. "_parent": {
  1744. "__id__": 18
  1745. },
  1746. "_children": [
  1747. {
  1748. "__id__": 51
  1749. },
  1750. {
  1751. "__id__": 55
  1752. }
  1753. ],
  1754. "_active": true,
  1755. "_components": [
  1756. {
  1757. "__id__": 58
  1758. },
  1759. {
  1760. "__id__": 59
  1761. },
  1762. {
  1763. "__id__": 60
  1764. },
  1765. {
  1766. "__id__": 61
  1767. }
  1768. ],
  1769. "_prefab": null,
  1770. "_lpos": {
  1771. "__type__": "cc.Vec3",
  1772. "x": 0,
  1773. "y": 0,
  1774. "z": 0
  1775. },
  1776. "_lrot": {
  1777. "__type__": "cc.Quat",
  1778. "x": 0,
  1779. "y": 0,
  1780. "z": 0,
  1781. "w": 1
  1782. },
  1783. "_lscale": {
  1784. "__type__": "cc.Vec3",
  1785. "x": 1,
  1786. "y": 1,
  1787. "z": 1
  1788. },
  1789. "_mobility": 0,
  1790. "_layer": 33554432,
  1791. "_euler": {
  1792. "__type__": "cc.Vec3",
  1793. "x": 0,
  1794. "y": 0,
  1795. "z": 0
  1796. },
  1797. "_id": "a9fdVn9t5G9adDpPbUXpEe"
  1798. },
  1799. {
  1800. "__type__": "cc.Node",
  1801. "_name": "Bg",
  1802. "_objFlags": 0,
  1803. "_parent": {
  1804. "__id__": 50
  1805. },
  1806. "_children": [],
  1807. "_active": false,
  1808. "_components": [
  1809. {
  1810. "__id__": 52
  1811. },
  1812. {
  1813. "__id__": 53
  1814. },
  1815. {
  1816. "__id__": 54
  1817. }
  1818. ],
  1819. "_prefab": null,
  1820. "_lpos": {
  1821. "__type__": "cc.Vec3",
  1822. "x": 0,
  1823. "y": 0,
  1824. "z": 0
  1825. },
  1826. "_lrot": {
  1827. "__type__": "cc.Quat",
  1828. "x": 0,
  1829. "y": 0,
  1830. "z": 0,
  1831. "w": 1
  1832. },
  1833. "_lscale": {
  1834. "__type__": "cc.Vec3",
  1835. "x": 1,
  1836. "y": 1,
  1837. "z": 1
  1838. },
  1839. "_mobility": 0,
  1840. "_layer": 33554432,
  1841. "_euler": {
  1842. "__type__": "cc.Vec3",
  1843. "x": 0,
  1844. "y": 0,
  1845. "z": 0
  1846. },
  1847. "_id": "60179KsUBMiIsGUPoi57zl"
  1848. },
  1849. {
  1850. "__type__": "cc.UITransform",
  1851. "_name": "",
  1852. "_objFlags": 0,
  1853. "node": {
  1854. "__id__": 51
  1855. },
  1856. "_enabled": true,
  1857. "__prefab": null,
  1858. "_contentSize": {
  1859. "__type__": "cc.Size",
  1860. "width": 2000,
  1861. "height": 1397
  1862. },
  1863. "_anchorPoint": {
  1864. "__type__": "cc.Vec2",
  1865. "x": 0.5,
  1866. "y": 0.5
  1867. },
  1868. "_id": "2dLG1RmKZENKUymRxK0Wu+"
  1869. },
  1870. {
  1871. "__type__": "cc.Sprite",
  1872. "_name": "",
  1873. "_objFlags": 0,
  1874. "node": {
  1875. "__id__": 51
  1876. },
  1877. "_enabled": true,
  1878. "__prefab": null,
  1879. "_customMaterial": null,
  1880. "_srcBlendFactor": 2,
  1881. "_dstBlendFactor": 4,
  1882. "_color": {
  1883. "__type__": "cc.Color",
  1884. "r": 0,
  1885. "g": 0,
  1886. "b": 0,
  1887. "a": 100
  1888. },
  1889. "_spriteFrame": {
  1890. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  1891. "__expectedType__": "cc.SpriteFrame"
  1892. },
  1893. "_type": 0,
  1894. "_fillType": 0,
  1895. "_sizeMode": 0,
  1896. "_fillCenter": {
  1897. "__type__": "cc.Vec2",
  1898. "x": 0,
  1899. "y": 0
  1900. },
  1901. "_fillStart": 0,
  1902. "_fillRange": 0,
  1903. "_isTrimmedMode": true,
  1904. "_useGrayscale": false,
  1905. "_atlas": null,
  1906. "_id": "f94uCWBYJH3oeRHnV2oWGB"
  1907. },
  1908. {
  1909. "__type__": "cc.Widget",
  1910. "_name": "",
  1911. "_objFlags": 0,
  1912. "node": {
  1913. "__id__": 51
  1914. },
  1915. "_enabled": true,
  1916. "__prefab": null,
  1917. "_alignFlags": 45,
  1918. "_target": null,
  1919. "_left": 0,
  1920. "_right": 0,
  1921. "_top": 0,
  1922. "_bottom": 0,
  1923. "_horizontalCenter": 0,
  1924. "_verticalCenter": 0,
  1925. "_isAbsLeft": true,
  1926. "_isAbsRight": true,
  1927. "_isAbsTop": true,
  1928. "_isAbsBottom": true,
  1929. "_isAbsHorizontalCenter": true,
  1930. "_isAbsVerticalCenter": true,
  1931. "_originalWidth": 100,
  1932. "_originalHeight": 100,
  1933. "_alignMode": 2,
  1934. "_lockFlags": 0,
  1935. "_id": "dcvjGAtTtC6YvJ97n/UVIM"
  1936. },
  1937. {
  1938. "__type__": "cc.Node",
  1939. "_name": "对",
  1940. "_objFlags": 0,
  1941. "_parent": {
  1942. "__id__": 50
  1943. },
  1944. "_children": [],
  1945. "_active": true,
  1946. "_components": [
  1947. {
  1948. "__id__": 56
  1949. },
  1950. {
  1951. "__id__": 57
  1952. }
  1953. ],
  1954. "_prefab": null,
  1955. "_lpos": {
  1956. "__type__": "cc.Vec3",
  1957. "x": 0,
  1958. "y": 0,
  1959. "z": 0
  1960. },
  1961. "_lrot": {
  1962. "__type__": "cc.Quat",
  1963. "x": 0,
  1964. "y": 0,
  1965. "z": 0,
  1966. "w": 1
  1967. },
  1968. "_lscale": {
  1969. "__type__": "cc.Vec3",
  1970. "x": 3,
  1971. "y": 3,
  1972. "z": 3
  1973. },
  1974. "_mobility": 0,
  1975. "_layer": 33554432,
  1976. "_euler": {
  1977. "__type__": "cc.Vec3",
  1978. "x": 0,
  1979. "y": 0,
  1980. "z": 0
  1981. },
  1982. "_id": "329qTdAMRJtJA1xMdlTYDP"
  1983. },
  1984. {
  1985. "__type__": "cc.UITransform",
  1986. "_name": "",
  1987. "_objFlags": 0,
  1988. "node": {
  1989. "__id__": 55
  1990. },
  1991. "_enabled": true,
  1992. "__prefab": null,
  1993. "_contentSize": {
  1994. "__type__": "cc.Size",
  1995. "width": 180,
  1996. "height": 152
  1997. },
  1998. "_anchorPoint": {
  1999. "__type__": "cc.Vec2",
  2000. "x": 0.5,
  2001. "y": 0.5
  2002. },
  2003. "_id": "f4edljgZlEQZr4i1k1WRwF"
  2004. },
  2005. {
  2006. "__type__": "cc.Sprite",
  2007. "_name": "",
  2008. "_objFlags": 0,
  2009. "node": {
  2010. "__id__": 55
  2011. },
  2012. "_enabled": true,
  2013. "__prefab": null,
  2014. "_customMaterial": null,
  2015. "_srcBlendFactor": 2,
  2016. "_dstBlendFactor": 4,
  2017. "_color": {
  2018. "__type__": "cc.Color",
  2019. "r": 255,
  2020. "g": 255,
  2021. "b": 255,
  2022. "a": 255
  2023. },
  2024. "_spriteFrame": {
  2025. "__uuid__": "e522f0c0-ffae-4567-9bcd-b9d3a8fe20f5@f9941",
  2026. "__expectedType__": "cc.SpriteFrame"
  2027. },
  2028. "_type": 0,
  2029. "_fillType": 0,
  2030. "_sizeMode": 0,
  2031. "_fillCenter": {
  2032. "__type__": "cc.Vec2",
  2033. "x": 0,
  2034. "y": 0
  2035. },
  2036. "_fillStart": 0,
  2037. "_fillRange": 0,
  2038. "_isTrimmedMode": true,
  2039. "_useGrayscale": false,
  2040. "_atlas": null,
  2041. "_id": "d0ghOrMbJKb5feu3g1FdT4"
  2042. },
  2043. {
  2044. "__type__": "cc.UITransform",
  2045. "_name": "",
  2046. "_objFlags": 0,
  2047. "node": {
  2048. "__id__": 50
  2049. },
  2050. "_enabled": true,
  2051. "__prefab": null,
  2052. "_contentSize": {
  2053. "__type__": "cc.Size",
  2054. "width": 2000,
  2055. "height": 1397
  2056. },
  2057. "_anchorPoint": {
  2058. "__type__": "cc.Vec2",
  2059. "x": 0.5,
  2060. "y": 0.5
  2061. },
  2062. "_id": "a3xodrb9JOw4Rq94ap89EA"
  2063. },
  2064. {
  2065. "__type__": "cc.UIOpacity",
  2066. "_name": "",
  2067. "_objFlags": 0,
  2068. "node": {
  2069. "__id__": 50
  2070. },
  2071. "_enabled": true,
  2072. "__prefab": null,
  2073. "_opacity": 255,
  2074. "_id": "3cK45Z1JdCqJShR5jyuhAQ"
  2075. },
  2076. {
  2077. "__type__": "cc.Widget",
  2078. "_name": "",
  2079. "_objFlags": 0,
  2080. "node": {
  2081. "__id__": 50
  2082. },
  2083. "_enabled": true,
  2084. "__prefab": null,
  2085. "_alignFlags": 45,
  2086. "_target": null,
  2087. "_left": 0,
  2088. "_right": 0,
  2089. "_top": 0,
  2090. "_bottom": 0,
  2091. "_horizontalCenter": 0,
  2092. "_verticalCenter": 0,
  2093. "_isAbsLeft": true,
  2094. "_isAbsRight": true,
  2095. "_isAbsTop": true,
  2096. "_isAbsBottom": true,
  2097. "_isAbsHorizontalCenter": true,
  2098. "_isAbsVerticalCenter": true,
  2099. "_originalWidth": 223,
  2100. "_originalHeight": 185,
  2101. "_alignMode": 2,
  2102. "_lockFlags": 0,
  2103. "_id": "62lZNRNn1Kh5vEz+3zHguO"
  2104. },
  2105. {
  2106. "__type__": "cc.BlockInputEvents",
  2107. "_name": "",
  2108. "_objFlags": 0,
  2109. "node": {
  2110. "__id__": 50
  2111. },
  2112. "_enabled": true,
  2113. "__prefab": null,
  2114. "_id": "7eEAh7dN1PvZVePGWOFhBK"
  2115. },
  2116. {
  2117. "__type__": "cc.Node",
  2118. "_name": "GameFail",
  2119. "_objFlags": 0,
  2120. "_parent": {
  2121. "__id__": 18
  2122. },
  2123. "_children": [
  2124. {
  2125. "__id__": 63
  2126. },
  2127. {
  2128. "__id__": 67
  2129. }
  2130. ],
  2131. "_active": false,
  2132. "_components": [
  2133. {
  2134. "__id__": 70
  2135. },
  2136. {
  2137. "__id__": 71
  2138. },
  2139. {
  2140. "__id__": 72
  2141. },
  2142. {
  2143. "__id__": 73
  2144. }
  2145. ],
  2146. "_prefab": null,
  2147. "_lpos": {
  2148. "__type__": "cc.Vec3",
  2149. "x": 0,
  2150. "y": 0,
  2151. "z": 0
  2152. },
  2153. "_lrot": {
  2154. "__type__": "cc.Quat",
  2155. "x": 0,
  2156. "y": 0,
  2157. "z": 0,
  2158. "w": 1
  2159. },
  2160. "_lscale": {
  2161. "__type__": "cc.Vec3",
  2162. "x": 1,
  2163. "y": 1,
  2164. "z": 1
  2165. },
  2166. "_mobility": 0,
  2167. "_layer": 33554432,
  2168. "_euler": {
  2169. "__type__": "cc.Vec3",
  2170. "x": 0,
  2171. "y": 0,
  2172. "z": 0
  2173. },
  2174. "_id": "c37FmQ719GAr9b9ThqSYII"
  2175. },
  2176. {
  2177. "__type__": "cc.Node",
  2178. "_name": "Bg",
  2179. "_objFlags": 0,
  2180. "_parent": {
  2181. "__id__": 62
  2182. },
  2183. "_children": [],
  2184. "_active": false,
  2185. "_components": [
  2186. {
  2187. "__id__": 64
  2188. },
  2189. {
  2190. "__id__": 65
  2191. },
  2192. {
  2193. "__id__": 66
  2194. }
  2195. ],
  2196. "_prefab": null,
  2197. "_lpos": {
  2198. "__type__": "cc.Vec3",
  2199. "x": 0,
  2200. "y": 0,
  2201. "z": 0
  2202. },
  2203. "_lrot": {
  2204. "__type__": "cc.Quat",
  2205. "x": 0,
  2206. "y": 0,
  2207. "z": 0,
  2208. "w": 1
  2209. },
  2210. "_lscale": {
  2211. "__type__": "cc.Vec3",
  2212. "x": 1,
  2213. "y": 1,
  2214. "z": 1
  2215. },
  2216. "_mobility": 0,
  2217. "_layer": 33554432,
  2218. "_euler": {
  2219. "__type__": "cc.Vec3",
  2220. "x": 0,
  2221. "y": 0,
  2222. "z": 0
  2223. },
  2224. "_id": "325Qaev/RPX6oZ/9J4HtFf"
  2225. },
  2226. {
  2227. "__type__": "cc.UITransform",
  2228. "_name": "",
  2229. "_objFlags": 0,
  2230. "node": {
  2231. "__id__": 63
  2232. },
  2233. "_enabled": true,
  2234. "__prefab": null,
  2235. "_contentSize": {
  2236. "__type__": "cc.Size",
  2237. "width": 2000,
  2238. "height": 1397
  2239. },
  2240. "_anchorPoint": {
  2241. "__type__": "cc.Vec2",
  2242. "x": 0.5,
  2243. "y": 0.5
  2244. },
  2245. "_id": "efQ1nOvSNPH5aQSQTOUe6M"
  2246. },
  2247. {
  2248. "__type__": "cc.Sprite",
  2249. "_name": "",
  2250. "_objFlags": 0,
  2251. "node": {
  2252. "__id__": 63
  2253. },
  2254. "_enabled": true,
  2255. "__prefab": null,
  2256. "_customMaterial": null,
  2257. "_srcBlendFactor": 2,
  2258. "_dstBlendFactor": 4,
  2259. "_color": {
  2260. "__type__": "cc.Color",
  2261. "r": 0,
  2262. "g": 0,
  2263. "b": 0,
  2264. "a": 100
  2265. },
  2266. "_spriteFrame": {
  2267. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  2268. "__expectedType__": "cc.SpriteFrame"
  2269. },
  2270. "_type": 0,
  2271. "_fillType": 0,
  2272. "_sizeMode": 0,
  2273. "_fillCenter": {
  2274. "__type__": "cc.Vec2",
  2275. "x": 0,
  2276. "y": 0
  2277. },
  2278. "_fillStart": 0,
  2279. "_fillRange": 0,
  2280. "_isTrimmedMode": true,
  2281. "_useGrayscale": false,
  2282. "_atlas": null,
  2283. "_id": "34FgrMSudOnpi3WIvAwFoe"
  2284. },
  2285. {
  2286. "__type__": "cc.Widget",
  2287. "_name": "",
  2288. "_objFlags": 0,
  2289. "node": {
  2290. "__id__": 63
  2291. },
  2292. "_enabled": true,
  2293. "__prefab": null,
  2294. "_alignFlags": 45,
  2295. "_target": null,
  2296. "_left": 0,
  2297. "_right": 0,
  2298. "_top": 0,
  2299. "_bottom": 0,
  2300. "_horizontalCenter": 0,
  2301. "_verticalCenter": 0,
  2302. "_isAbsLeft": true,
  2303. "_isAbsRight": true,
  2304. "_isAbsTop": true,
  2305. "_isAbsBottom": true,
  2306. "_isAbsHorizontalCenter": true,
  2307. "_isAbsVerticalCenter": true,
  2308. "_originalWidth": 100,
  2309. "_originalHeight": 100,
  2310. "_alignMode": 2,
  2311. "_lockFlags": 0,
  2312. "_id": "f55HcDS0JHNZKJqiy47qi1"
  2313. },
  2314. {
  2315. "__type__": "cc.Node",
  2316. "_name": "对",
  2317. "_objFlags": 0,
  2318. "_parent": {
  2319. "__id__": 62
  2320. },
  2321. "_children": [],
  2322. "_active": true,
  2323. "_components": [
  2324. {
  2325. "__id__": 68
  2326. },
  2327. {
  2328. "__id__": 69
  2329. }
  2330. ],
  2331. "_prefab": null,
  2332. "_lpos": {
  2333. "__type__": "cc.Vec3",
  2334. "x": 0,
  2335. "y": 0,
  2336. "z": 0
  2337. },
  2338. "_lrot": {
  2339. "__type__": "cc.Quat",
  2340. "x": 0,
  2341. "y": 0,
  2342. "z": 0,
  2343. "w": 1
  2344. },
  2345. "_lscale": {
  2346. "__type__": "cc.Vec3",
  2347. "x": 3,
  2348. "y": 3,
  2349. "z": 3
  2350. },
  2351. "_mobility": 0,
  2352. "_layer": 33554432,
  2353. "_euler": {
  2354. "__type__": "cc.Vec3",
  2355. "x": 0,
  2356. "y": 0,
  2357. "z": 0
  2358. },
  2359. "_id": "2fSvuGCB5DcpQGv3zwUUg2"
  2360. },
  2361. {
  2362. "__type__": "cc.UITransform",
  2363. "_name": "",
  2364. "_objFlags": 0,
  2365. "node": {
  2366. "__id__": 67
  2367. },
  2368. "_enabled": true,
  2369. "__prefab": null,
  2370. "_contentSize": {
  2371. "__type__": "cc.Size",
  2372. "width": 127,
  2373. "height": 134
  2374. },
  2375. "_anchorPoint": {
  2376. "__type__": "cc.Vec2",
  2377. "x": 0.5,
  2378. "y": 0.5
  2379. },
  2380. "_id": "cefOQb8ZROD7A5i0UBxskd"
  2381. },
  2382. {
  2383. "__type__": "cc.Sprite",
  2384. "_name": "",
  2385. "_objFlags": 0,
  2386. "node": {
  2387. "__id__": 67
  2388. },
  2389. "_enabled": true,
  2390. "__prefab": null,
  2391. "_customMaterial": null,
  2392. "_srcBlendFactor": 2,
  2393. "_dstBlendFactor": 4,
  2394. "_color": {
  2395. "__type__": "cc.Color",
  2396. "r": 255,
  2397. "g": 255,
  2398. "b": 255,
  2399. "a": 255
  2400. },
  2401. "_spriteFrame": {
  2402. "__uuid__": "6de46e11-c2fe-4ede-acce-7033efa41848@f9941",
  2403. "__expectedType__": "cc.SpriteFrame"
  2404. },
  2405. "_type": 0,
  2406. "_fillType": 0,
  2407. "_sizeMode": 0,
  2408. "_fillCenter": {
  2409. "__type__": "cc.Vec2",
  2410. "x": 0,
  2411. "y": 0
  2412. },
  2413. "_fillStart": 0,
  2414. "_fillRange": 0,
  2415. "_isTrimmedMode": true,
  2416. "_useGrayscale": false,
  2417. "_atlas": null,
  2418. "_id": "a1gaXxscNMpbpbW1WnQZci"
  2419. },
  2420. {
  2421. "__type__": "cc.UITransform",
  2422. "_name": "",
  2423. "_objFlags": 0,
  2424. "node": {
  2425. "__id__": 62
  2426. },
  2427. "_enabled": true,
  2428. "__prefab": null,
  2429. "_contentSize": {
  2430. "__type__": "cc.Size",
  2431. "width": 2000,
  2432. "height": 1397
  2433. },
  2434. "_anchorPoint": {
  2435. "__type__": "cc.Vec2",
  2436. "x": 0.5,
  2437. "y": 0.5
  2438. },
  2439. "_id": "12iZ9lldNHZogwimRFcBMM"
  2440. },
  2441. {
  2442. "__type__": "cc.UIOpacity",
  2443. "_name": "",
  2444. "_objFlags": 0,
  2445. "node": {
  2446. "__id__": 62
  2447. },
  2448. "_enabled": true,
  2449. "__prefab": null,
  2450. "_opacity": 255,
  2451. "_id": "0eT7p6LgROwpakfdtgHX6x"
  2452. },
  2453. {
  2454. "__type__": "cc.Widget",
  2455. "_name": "",
  2456. "_objFlags": 0,
  2457. "node": {
  2458. "__id__": 62
  2459. },
  2460. "_enabled": true,
  2461. "__prefab": null,
  2462. "_alignFlags": 45,
  2463. "_target": null,
  2464. "_left": 0,
  2465. "_right": 0,
  2466. "_top": 0,
  2467. "_bottom": 0,
  2468. "_horizontalCenter": 0,
  2469. "_verticalCenter": 0,
  2470. "_isAbsLeft": true,
  2471. "_isAbsRight": true,
  2472. "_isAbsTop": true,
  2473. "_isAbsBottom": true,
  2474. "_isAbsHorizontalCenter": true,
  2475. "_isAbsVerticalCenter": true,
  2476. "_originalWidth": 223,
  2477. "_originalHeight": 185,
  2478. "_alignMode": 2,
  2479. "_lockFlags": 0,
  2480. "_id": "8eAVYrkdJLg6KDiNnBarFE"
  2481. },
  2482. {
  2483. "__type__": "cc.BlockInputEvents",
  2484. "_name": "",
  2485. "_objFlags": 0,
  2486. "node": {
  2487. "__id__": 62
  2488. },
  2489. "_enabled": true,
  2490. "__prefab": null,
  2491. "_id": "eeSHbjbRVKWrEu+qynttrn"
  2492. },
  2493. {
  2494. "__type__": "cc.Node",
  2495. "_name": "Mesh",
  2496. "_objFlags": 0,
  2497. "_parent": {
  2498. "__id__": 18
  2499. },
  2500. "_children": [],
  2501. "_active": true,
  2502. "_components": [
  2503. {
  2504. "__id__": 75
  2505. },
  2506. {
  2507. "__id__": 76
  2508. },
  2509. {
  2510. "__id__": 77
  2511. }
  2512. ],
  2513. "_prefab": null,
  2514. "_lpos": {
  2515. "__type__": "cc.Vec3",
  2516. "x": 0,
  2517. "y": 0,
  2518. "z": 0
  2519. },
  2520. "_lrot": {
  2521. "__type__": "cc.Quat",
  2522. "x": 0,
  2523. "y": 0,
  2524. "z": 0,
  2525. "w": 1
  2526. },
  2527. "_lscale": {
  2528. "__type__": "cc.Vec3",
  2529. "x": 1,
  2530. "y": 1,
  2531. "z": 1
  2532. },
  2533. "_mobility": 0,
  2534. "_layer": 33554432,
  2535. "_euler": {
  2536. "__type__": "cc.Vec3",
  2537. "x": 0,
  2538. "y": 0,
  2539. "z": 0
  2540. },
  2541. "_id": "a1ZsN9TYBANrkBlE7+6sIt"
  2542. },
  2543. {
  2544. "__type__": "cc.UITransform",
  2545. "_name": "",
  2546. "_objFlags": 0,
  2547. "node": {
  2548. "__id__": 74
  2549. },
  2550. "_enabled": true,
  2551. "__prefab": null,
  2552. "_contentSize": {
  2553. "__type__": "cc.Size",
  2554. "width": 2000,
  2555. "height": 1397
  2556. },
  2557. "_anchorPoint": {
  2558. "__type__": "cc.Vec2",
  2559. "x": 0.5,
  2560. "y": 0.5
  2561. },
  2562. "_id": "21ZL7BrvBB7rxgixQ50sjr"
  2563. },
  2564. {
  2565. "__type__": "cc.Widget",
  2566. "_name": "",
  2567. "_objFlags": 0,
  2568. "node": {
  2569. "__id__": 74
  2570. },
  2571. "_enabled": true,
  2572. "__prefab": null,
  2573. "_alignFlags": 45,
  2574. "_target": null,
  2575. "_left": 0,
  2576. "_right": 0,
  2577. "_top": 0,
  2578. "_bottom": 0,
  2579. "_horizontalCenter": 0,
  2580. "_verticalCenter": 0,
  2581. "_isAbsLeft": true,
  2582. "_isAbsRight": true,
  2583. "_isAbsTop": true,
  2584. "_isAbsBottom": true,
  2585. "_isAbsHorizontalCenter": true,
  2586. "_isAbsVerticalCenter": true,
  2587. "_originalWidth": 100,
  2588. "_originalHeight": 100,
  2589. "_alignMode": 2,
  2590. "_lockFlags": 0,
  2591. "_id": "0eX1c9ciNCbJbL+oSmXNXr"
  2592. },
  2593. {
  2594. "__type__": "cc.BlockInputEvents",
  2595. "_name": "",
  2596. "_objFlags": 0,
  2597. "node": {
  2598. "__id__": 74
  2599. },
  2600. "_enabled": true,
  2601. "__prefab": null,
  2602. "_id": "6ca8tqhjtIRaon0nGbF8z/"
  2603. },
  2604. {
  2605. "__type__": "cc.UITransform",
  2606. "_name": "",
  2607. "_objFlags": 0,
  2608. "node": {
  2609. "__id__": 18
  2610. },
  2611. "_enabled": true,
  2612. "__prefab": null,
  2613. "_contentSize": {
  2614. "__type__": "cc.Size",
  2615. "width": 2000,
  2616. "height": 1397
  2617. },
  2618. "_anchorPoint": {
  2619. "__type__": "cc.Vec2",
  2620. "x": 0.5,
  2621. "y": 0.5
  2622. },
  2623. "_id": "e5N0o18ABDSKOicKZV7qaP"
  2624. },
  2625. {
  2626. "__type__": "cc.Sprite",
  2627. "_name": "",
  2628. "_objFlags": 0,
  2629. "node": {
  2630. "__id__": 18
  2631. },
  2632. "_enabled": true,
  2633. "__prefab": null,
  2634. "_customMaterial": null,
  2635. "_srcBlendFactor": 2,
  2636. "_dstBlendFactor": 4,
  2637. "_color": {
  2638. "__type__": "cc.Color",
  2639. "r": 255,
  2640. "g": 255,
  2641. "b": 255,
  2642. "a": 255
  2643. },
  2644. "_spriteFrame": {
  2645. "__uuid__": "c54247e3-b3db-438c-ae8c-d728f94dd768@f9941",
  2646. "__expectedType__": "cc.SpriteFrame"
  2647. },
  2648. "_type": 0,
  2649. "_fillType": 0,
  2650. "_sizeMode": 0,
  2651. "_fillCenter": {
  2652. "__type__": "cc.Vec2",
  2653. "x": 0,
  2654. "y": 0
  2655. },
  2656. "_fillStart": 0,
  2657. "_fillRange": 0,
  2658. "_isTrimmedMode": true,
  2659. "_useGrayscale": false,
  2660. "_atlas": null,
  2661. "_id": "5eBNzCzltA5r5CJbS+WuJk"
  2662. },
  2663. {
  2664. "__type__": "cc.Widget",
  2665. "_name": "",
  2666. "_objFlags": 0,
  2667. "node": {
  2668. "__id__": 18
  2669. },
  2670. "_enabled": true,
  2671. "__prefab": null,
  2672. "_alignFlags": 45,
  2673. "_target": null,
  2674. "_left": 0,
  2675. "_right": 0,
  2676. "_top": 0,
  2677. "_bottom": 0,
  2678. "_horizontalCenter": 0,
  2679. "_verticalCenter": 0,
  2680. "_isAbsLeft": true,
  2681. "_isAbsRight": true,
  2682. "_isAbsTop": true,
  2683. "_isAbsBottom": true,
  2684. "_isAbsHorizontalCenter": true,
  2685. "_isAbsVerticalCenter": true,
  2686. "_originalWidth": 1422,
  2687. "_originalHeight": 1230,
  2688. "_alignMode": 2,
  2689. "_lockFlags": 0,
  2690. "_id": "8eDwN9BsVE/I0U64cXr/QG"
  2691. },
  2692. {
  2693. "__type__": "cc.UITransform",
  2694. "_name": "",
  2695. "_objFlags": 0,
  2696. "node": {
  2697. "__id__": 17
  2698. },
  2699. "_enabled": true,
  2700. "__prefab": null,
  2701. "_contentSize": {
  2702. "__type__": "cc.Size",
  2703. "width": 2000,
  2704. "height": 1397
  2705. },
  2706. "_anchorPoint": {
  2707. "__type__": "cc.Vec2",
  2708. "x": 0.5,
  2709. "y": 0.5
  2710. },
  2711. "_id": "5bQ3iqwo9NNoxeCvRbwxo2"
  2712. },
  2713. {
  2714. "__type__": "cc.Widget",
  2715. "_name": "",
  2716. "_objFlags": 0,
  2717. "node": {
  2718. "__id__": 17
  2719. },
  2720. "_enabled": true,
  2721. "__prefab": null,
  2722. "_alignFlags": 45,
  2723. "_target": null,
  2724. "_left": 0,
  2725. "_right": 0,
  2726. "_top": 0,
  2727. "_bottom": 0,
  2728. "_horizontalCenter": 0,
  2729. "_verticalCenter": 0,
  2730. "_isAbsLeft": true,
  2731. "_isAbsRight": true,
  2732. "_isAbsTop": true,
  2733. "_isAbsBottom": true,
  2734. "_isAbsHorizontalCenter": true,
  2735. "_isAbsVerticalCenter": true,
  2736. "_originalWidth": 100,
  2737. "_originalHeight": 100,
  2738. "_alignMode": 2,
  2739. "_lockFlags": 0,
  2740. "_id": "56BGFKN6RJhoNlZsfhqgC1"
  2741. },
  2742. {
  2743. "__type__": "bd5a10IebZALozd4PTC922s",
  2744. "_name": "",
  2745. "_objFlags": 0,
  2746. "node": {
  2747. "__id__": 17
  2748. },
  2749. "_enabled": true,
  2750. "__prefab": null,
  2751. "Up": {
  2752. "__id__": 22
  2753. },
  2754. "Down": {
  2755. "__id__": 45
  2756. },
  2757. "QstrLab": {
  2758. "__id__": 41
  2759. },
  2760. "Mesh": {
  2761. "__id__": 74
  2762. },
  2763. "GameWin": {
  2764. "__id__": 50
  2765. },
  2766. "GameFail": {
  2767. "__id__": 62
  2768. },
  2769. "DownItem": {
  2770. "__uuid__": "1733b427-5bca-4aab-aeb0-1e3c74afc660",
  2771. "__expectedType__": "cc.Prefab"
  2772. },
  2773. "ItemAtlas": {
  2774. "__uuid__": "4321ebe9-8fbf-4b16-baf5-285d15d8250d",
  2775. "__expectedType__": "cc.SpriteAtlas"
  2776. },
  2777. "_id": "e2s0s55XtDgYZwNGXfh8lm"
  2778. },
  2779. {
  2780. "__type__": "cc.UITransform",
  2781. "_name": "",
  2782. "_objFlags": 0,
  2783. "node": {
  2784. "__id__": 16
  2785. },
  2786. "_enabled": true,
  2787. "__prefab": null,
  2788. "_contentSize": {
  2789. "__type__": "cc.Size",
  2790. "width": 2000,
  2791. "height": 1397
  2792. },
  2793. "_anchorPoint": {
  2794. "__type__": "cc.Vec2",
  2795. "x": 0.5,
  2796. "y": 0.5
  2797. },
  2798. "_id": "71Tqt8z/xEfJYCLhKbPFsb"
  2799. },
  2800. {
  2801. "__type__": "cc.Widget",
  2802. "_name": "",
  2803. "_objFlags": 0,
  2804. "node": {
  2805. "__id__": 16
  2806. },
  2807. "_enabled": true,
  2808. "__prefab": null,
  2809. "_alignFlags": 45,
  2810. "_target": null,
  2811. "_left": 0,
  2812. "_right": 0,
  2813. "_top": 0,
  2814. "_bottom": 0,
  2815. "_horizontalCenter": 0,
  2816. "_verticalCenter": 0,
  2817. "_isAbsLeft": true,
  2818. "_isAbsRight": true,
  2819. "_isAbsTop": true,
  2820. "_isAbsBottom": true,
  2821. "_isAbsHorizontalCenter": true,
  2822. "_isAbsVerticalCenter": true,
  2823. "_originalWidth": 2388,
  2824. "_originalHeight": 1431,
  2825. "_alignMode": 2,
  2826. "_lockFlags": 0,
  2827. "_id": "6fMoTXz3VLCpbaZRGONph8"
  2828. },
  2829. {
  2830. "__type__": "cc.Sprite",
  2831. "_name": "",
  2832. "_objFlags": 0,
  2833. "node": {
  2834. "__id__": 16
  2835. },
  2836. "_enabled": false,
  2837. "__prefab": null,
  2838. "_customMaterial": null,
  2839. "_srcBlendFactor": 2,
  2840. "_dstBlendFactor": 4,
  2841. "_color": {
  2842. "__type__": "cc.Color",
  2843. "r": 255,
  2844. "g": 255,
  2845. "b": 255,
  2846. "a": 255
  2847. },
  2848. "_spriteFrame": null,
  2849. "_type": 0,
  2850. "_fillType": 0,
  2851. "_sizeMode": 0,
  2852. "_fillCenter": {
  2853. "__type__": "cc.Vec2",
  2854. "x": 0,
  2855. "y": 0
  2856. },
  2857. "_fillStart": 0,
  2858. "_fillRange": 0,
  2859. "_isTrimmedMode": true,
  2860. "_useGrayscale": false,
  2861. "_atlas": null,
  2862. "_id": "2fH+aRpdxGtY3Ki3IlRRSK"
  2863. },
  2864. {
  2865. "__type__": "cc.UITransform",
  2866. "_name": "",
  2867. "_objFlags": 0,
  2868. "node": {
  2869. "__id__": 15
  2870. },
  2871. "_enabled": true,
  2872. "__prefab": null,
  2873. "_contentSize": {
  2874. "__type__": "cc.Size",
  2875. "width": 2000,
  2876. "height": 1397
  2877. },
  2878. "_anchorPoint": {
  2879. "__type__": "cc.Vec2",
  2880. "x": 0.5,
  2881. "y": 0.5
  2882. },
  2883. "_id": "a4pA9lnhVBM6Yy9vRFW474"
  2884. },
  2885. {
  2886. "__type__": "cc.Mask",
  2887. "_name": "",
  2888. "_objFlags": 0,
  2889. "node": {
  2890. "__id__": 15
  2891. },
  2892. "_enabled": true,
  2893. "__prefab": null,
  2894. "_type": 0,
  2895. "_inverted": false,
  2896. "_segments": 64,
  2897. "_alphaThreshold": 0.1,
  2898. "_id": "4f21nYdI1AprMaZ0UIAu44"
  2899. },
  2900. {
  2901. "__type__": "cc.Graphics",
  2902. "_name": "",
  2903. "_objFlags": 0,
  2904. "node": {
  2905. "__id__": 15
  2906. },
  2907. "_enabled": true,
  2908. "__prefab": null,
  2909. "_customMaterial": null,
  2910. "_srcBlendFactor": 2,
  2911. "_dstBlendFactor": 4,
  2912. "_color": {
  2913. "__type__": "cc.Color",
  2914. "r": 255,
  2915. "g": 255,
  2916. "b": 255,
  2917. "a": 255
  2918. },
  2919. "_lineWidth": 1,
  2920. "_strokeColor": {
  2921. "__type__": "cc.Color",
  2922. "r": 0,
  2923. "g": 0,
  2924. "b": 0,
  2925. "a": 255
  2926. },
  2927. "_lineJoin": 2,
  2928. "_lineCap": 0,
  2929. "_fillColor": {
  2930. "__type__": "cc.Color",
  2931. "r": 255,
  2932. "g": 255,
  2933. "b": 255,
  2934. "a": 0
  2935. },
  2936. "_miterLimit": 10,
  2937. "_id": "65oMu5ehlA5J/n/t1q1kUm"
  2938. },
  2939. {
  2940. "__type__": "cc.Widget",
  2941. "_name": "",
  2942. "_objFlags": 0,
  2943. "node": {
  2944. "__id__": 15
  2945. },
  2946. "_enabled": true,
  2947. "__prefab": null,
  2948. "_alignFlags": 45,
  2949. "_target": null,
  2950. "_left": 0,
  2951. "_right": 0,
  2952. "_top": 0,
  2953. "_bottom": 0,
  2954. "_horizontalCenter": 0,
  2955. "_verticalCenter": 0,
  2956. "_isAbsLeft": true,
  2957. "_isAbsRight": true,
  2958. "_isAbsTop": true,
  2959. "_isAbsBottom": true,
  2960. "_isAbsHorizontalCenter": true,
  2961. "_isAbsVerticalCenter": true,
  2962. "_originalWidth": 2388,
  2963. "_originalHeight": 1431,
  2964. "_alignMode": 2,
  2965. "_lockFlags": 0,
  2966. "_id": "6coxkRDfRHSZW8XM4hxuna"
  2967. },
  2968. {
  2969. "__type__": "cc.UITransform",
  2970. "_name": "",
  2971. "_objFlags": 0,
  2972. "node": {
  2973. "__id__": 14
  2974. },
  2975. "_enabled": true,
  2976. "__prefab": null,
  2977. "_contentSize": {
  2978. "__type__": "cc.Size",
  2979. "width": 2000,
  2980. "height": 1397
  2981. },
  2982. "_anchorPoint": {
  2983. "__type__": "cc.Vec2",
  2984. "x": 0.5,
  2985. "y": 0.5
  2986. },
  2987. "_id": "2cVVHjDb1OK5Urf580PS6M"
  2988. },
  2989. {
  2990. "__type__": "cc.Widget",
  2991. "_name": "",
  2992. "_objFlags": 0,
  2993. "node": {
  2994. "__id__": 14
  2995. },
  2996. "_enabled": true,
  2997. "__prefab": null,
  2998. "_alignFlags": 45,
  2999. "_target": null,
  3000. "_left": 0,
  3001. "_right": 0,
  3002. "_top": 0,
  3003. "_bottom": 0,
  3004. "_horizontalCenter": 0,
  3005. "_verticalCenter": 0,
  3006. "_isAbsLeft": true,
  3007. "_isAbsRight": true,
  3008. "_isAbsTop": true,
  3009. "_isAbsBottom": true,
  3010. "_isAbsHorizontalCenter": true,
  3011. "_isAbsVerticalCenter": true,
  3012. "_originalWidth": 1532,
  3013. "_originalHeight": 1336,
  3014. "_alignMode": 2,
  3015. "_lockFlags": 0,
  3016. "_id": "9aFbAReTlG26QQjumwVtfz"
  3017. },
  3018. {
  3019. "__type__": "cc.Node",
  3020. "_name": "GameEndTip",
  3021. "_objFlags": 0,
  3022. "_parent": {
  3023. "__id__": 6
  3024. },
  3025. "_children": [
  3026. {
  3027. "__id__": 94
  3028. },
  3029. {
  3030. "__id__": 98
  3031. },
  3032. {
  3033. "__id__": 101
  3034. },
  3035. {
  3036. "__id__": 104
  3037. },
  3038. {
  3039. "__id__": 112
  3040. },
  3041. {
  3042. "__id__": 120
  3043. },
  3044. {
  3045. "__id__": 123
  3046. },
  3047. {
  3048. "__id__": 126
  3049. }
  3050. ],
  3051. "_active": false,
  3052. "_components": [
  3053. {
  3054. "__id__": 129
  3055. },
  3056. {
  3057. "__id__": 130
  3058. },
  3059. {
  3060. "__id__": 131
  3061. },
  3062. {
  3063. "__id__": 132
  3064. }
  3065. ],
  3066. "_prefab": null,
  3067. "_lpos": {
  3068. "__type__": "cc.Vec3",
  3069. "x": 0,
  3070. "y": 0,
  3071. "z": 0
  3072. },
  3073. "_lrot": {
  3074. "__type__": "cc.Quat",
  3075. "x": 0,
  3076. "y": 0,
  3077. "z": 0,
  3078. "w": 1
  3079. },
  3080. "_lscale": {
  3081. "__type__": "cc.Vec3",
  3082. "x": 0.976,
  3083. "y": 0.976,
  3084. "z": 0.976
  3085. },
  3086. "_mobility": 0,
  3087. "_layer": 33554432,
  3088. "_euler": {
  3089. "__type__": "cc.Vec3",
  3090. "x": 0,
  3091. "y": 0,
  3092. "z": 0
  3093. },
  3094. "_id": "93JjkViVVAV7PtAJqtBMLi"
  3095. },
  3096. {
  3097. "__type__": "cc.Node",
  3098. "_name": "bg",
  3099. "_objFlags": 0,
  3100. "_parent": {
  3101. "__id__": 93
  3102. },
  3103. "_children": [],
  3104. "_active": true,
  3105. "_components": [
  3106. {
  3107. "__id__": 95
  3108. },
  3109. {
  3110. "__id__": 96
  3111. },
  3112. {
  3113. "__id__": 97
  3114. }
  3115. ],
  3116. "_prefab": null,
  3117. "_lpos": {
  3118. "__type__": "cc.Vec3",
  3119. "x": 0,
  3120. "y": 0,
  3121. "z": 0
  3122. },
  3123. "_lrot": {
  3124. "__type__": "cc.Quat",
  3125. "x": 0,
  3126. "y": 0,
  3127. "z": 0,
  3128. "w": 1
  3129. },
  3130. "_lscale": {
  3131. "__type__": "cc.Vec3",
  3132. "x": 1,
  3133. "y": 1,
  3134. "z": 1
  3135. },
  3136. "_mobility": 0,
  3137. "_layer": 33554432,
  3138. "_euler": {
  3139. "__type__": "cc.Vec3",
  3140. "x": 0,
  3141. "y": 0,
  3142. "z": 0
  3143. },
  3144. "_id": "31XHDuimdJEI1t+6/L7yHe"
  3145. },
  3146. {
  3147. "__type__": "cc.UITransform",
  3148. "_name": "",
  3149. "_objFlags": 0,
  3150. "node": {
  3151. "__id__": 94
  3152. },
  3153. "_enabled": true,
  3154. "__prefab": null,
  3155. "_contentSize": {
  3156. "__type__": "cc.Size",
  3157. "width": 2461.8,
  3158. "height": 1733.3
  3159. },
  3160. "_anchorPoint": {
  3161. "__type__": "cc.Vec2",
  3162. "x": 0.5,
  3163. "y": 0.5
  3164. },
  3165. "_id": "acNFpC5ydPZKWEsOyMPdXO"
  3166. },
  3167. {
  3168. "__type__": "cc.Sprite",
  3169. "_name": "",
  3170. "_objFlags": 0,
  3171. "node": {
  3172. "__id__": 94
  3173. },
  3174. "_enabled": true,
  3175. "__prefab": null,
  3176. "_customMaterial": null,
  3177. "_srcBlendFactor": 2,
  3178. "_dstBlendFactor": 4,
  3179. "_color": {
  3180. "__type__": "cc.Color",
  3181. "r": 3,
  3182. "g": 0,
  3183. "b": 0,
  3184. "a": 176
  3185. },
  3186. "_spriteFrame": {
  3187. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  3188. "__expectedType__": "cc.SpriteFrame"
  3189. },
  3190. "_type": 1,
  3191. "_fillType": 0,
  3192. "_sizeMode": 0,
  3193. "_fillCenter": {
  3194. "__type__": "cc.Vec2",
  3195. "x": 0,
  3196. "y": 0
  3197. },
  3198. "_fillStart": 0,
  3199. "_fillRange": 0,
  3200. "_isTrimmedMode": true,
  3201. "_useGrayscale": false,
  3202. "_atlas": null,
  3203. "_id": "77V4tKsVJEX7s2w4moSgIh"
  3204. },
  3205. {
  3206. "__type__": "cc.BlockInputEvents",
  3207. "_name": "",
  3208. "_objFlags": 0,
  3209. "node": {
  3210. "__id__": 94
  3211. },
  3212. "_enabled": true,
  3213. "__prefab": null,
  3214. "_id": "96mc2BGyFA77T4zTAlZavg"
  3215. },
  3216. {
  3217. "__type__": "cc.Node",
  3218. "_name": "Sprite",
  3219. "_objFlags": 0,
  3220. "_parent": {
  3221. "__id__": 93
  3222. },
  3223. "_children": [],
  3224. "_active": true,
  3225. "_components": [
  3226. {
  3227. "__id__": 99
  3228. },
  3229. {
  3230. "__id__": 100
  3231. }
  3232. ],
  3233. "_prefab": null,
  3234. "_lpos": {
  3235. "__type__": "cc.Vec3",
  3236. "x": 0,
  3237. "y": -18.761,
  3238. "z": 0
  3239. },
  3240. "_lrot": {
  3241. "__type__": "cc.Quat",
  3242. "x": 0,
  3243. "y": 0,
  3244. "z": 0,
  3245. "w": 1
  3246. },
  3247. "_lscale": {
  3248. "__type__": "cc.Vec3",
  3249. "x": 1,
  3250. "y": 1,
  3251. "z": 1
  3252. },
  3253. "_mobility": 0,
  3254. "_layer": 33554432,
  3255. "_euler": {
  3256. "__type__": "cc.Vec3",
  3257. "x": 0,
  3258. "y": 0,
  3259. "z": 0
  3260. },
  3261. "_id": "9fs+apmJpJroKm3/UD+5uF"
  3262. },
  3263. {
  3264. "__type__": "cc.UITransform",
  3265. "_name": "",
  3266. "_objFlags": 0,
  3267. "node": {
  3268. "__id__": 98
  3269. },
  3270. "_enabled": true,
  3271. "__prefab": null,
  3272. "_contentSize": {
  3273. "__type__": "cc.Size",
  3274. "width": 1311,
  3275. "height": 806
  3276. },
  3277. "_anchorPoint": {
  3278. "__type__": "cc.Vec2",
  3279. "x": 0.5,
  3280. "y": 0.5
  3281. },
  3282. "_id": "6frXPnxxJArJzX27dh8uck"
  3283. },
  3284. {
  3285. "__type__": "cc.Sprite",
  3286. "_name": "",
  3287. "_objFlags": 0,
  3288. "node": {
  3289. "__id__": 98
  3290. },
  3291. "_enabled": true,
  3292. "__prefab": null,
  3293. "_customMaterial": null,
  3294. "_srcBlendFactor": 2,
  3295. "_dstBlendFactor": 4,
  3296. "_color": {
  3297. "__type__": "cc.Color",
  3298. "r": 255,
  3299. "g": 255,
  3300. "b": 255,
  3301. "a": 255
  3302. },
  3303. "_spriteFrame": {
  3304. "__uuid__": "a372d40f-413b-48e1-ab83-223f279a207d@f9941",
  3305. "__expectedType__": "cc.SpriteFrame"
  3306. },
  3307. "_type": 0,
  3308. "_fillType": 0,
  3309. "_sizeMode": 1,
  3310. "_fillCenter": {
  3311. "__type__": "cc.Vec2",
  3312. "x": 0,
  3313. "y": 0
  3314. },
  3315. "_fillStart": 0,
  3316. "_fillRange": 0,
  3317. "_isTrimmedMode": true,
  3318. "_useGrayscale": false,
  3319. "_atlas": null,
  3320. "_id": "42+SJdTHJHfaszGgbXO9S7"
  3321. },
  3322. {
  3323. "__type__": "cc.Node",
  3324. "_name": "Label",
  3325. "_objFlags": 0,
  3326. "_parent": {
  3327. "__id__": 93
  3328. },
  3329. "_children": [],
  3330. "_active": true,
  3331. "_components": [
  3332. {
  3333. "__id__": 102
  3334. },
  3335. {
  3336. "__id__": 103
  3337. }
  3338. ],
  3339. "_prefab": null,
  3340. "_lpos": {
  3341. "__type__": "cc.Vec3",
  3342. "x": -27.538,
  3343. "y": 127.951,
  3344. "z": 0
  3345. },
  3346. "_lrot": {
  3347. "__type__": "cc.Quat",
  3348. "x": 0,
  3349. "y": 0,
  3350. "z": 0,
  3351. "w": 1
  3352. },
  3353. "_lscale": {
  3354. "__type__": "cc.Vec3",
  3355. "x": 1,
  3356. "y": 1,
  3357. "z": 1
  3358. },
  3359. "_mobility": 0,
  3360. "_layer": 33554432,
  3361. "_euler": {
  3362. "__type__": "cc.Vec3",
  3363. "x": 0,
  3364. "y": 0,
  3365. "z": 0
  3366. },
  3367. "_id": "683vYYXVNMG4zDSZ2ZL/2x"
  3368. },
  3369. {
  3370. "__type__": "cc.UITransform",
  3371. "_name": "",
  3372. "_objFlags": 0,
  3373. "node": {
  3374. "__id__": 101
  3375. },
  3376. "_enabled": true,
  3377. "__prefab": null,
  3378. "_contentSize": {
  3379. "__type__": "cc.Size",
  3380. "width": 560.454,
  3381. "height": 214.07999999999998
  3382. },
  3383. "_anchorPoint": {
  3384. "__type__": "cc.Vec2",
  3385. "x": 0.5,
  3386. "y": 0.5
  3387. },
  3388. "_id": "4bvdCXN2BJy4+tYUB808Ck"
  3389. },
  3390. {
  3391. "__type__": "cc.Label",
  3392. "_name": "",
  3393. "_objFlags": 0,
  3394. "node": {
  3395. "__id__": 101
  3396. },
  3397. "_enabled": true,
  3398. "__prefab": null,
  3399. "_customMaterial": null,
  3400. "_srcBlendFactor": 2,
  3401. "_dstBlendFactor": 4,
  3402. "_color": {
  3403. "__type__": "cc.Color",
  3404. "r": 169,
  3405. "g": 79,
  3406. "b": 9,
  3407. "a": 255
  3408. },
  3409. "_string": "当前关卡:第1关",
  3410. "_horizontalAlign": 1,
  3411. "_verticalAlign": 1,
  3412. "_actualFontSize": 65,
  3413. "_fontSize": 65,
  3414. "_fontFamily": "Arial",
  3415. "_lineHeight": 100,
  3416. "_overflow": 1,
  3417. "_enableWrapText": true,
  3418. "_font": null,
  3419. "_isSystemFontUsed": true,
  3420. "_spacingX": 0,
  3421. "_isItalic": false,
  3422. "_isBold": true,
  3423. "_isUnderline": false,
  3424. "_underlineHeight": 2,
  3425. "_cacheMode": 0,
  3426. "_id": "f9AYjkkhBO3LqvM/euMVoh"
  3427. },
  3428. {
  3429. "__type__": "cc.Node",
  3430. "_name": "BackHome",
  3431. "_objFlags": 0,
  3432. "_parent": {
  3433. "__id__": 93
  3434. },
  3435. "_children": [
  3436. {
  3437. "__id__": 105
  3438. }
  3439. ],
  3440. "_active": true,
  3441. "_components": [
  3442. {
  3443. "__id__": 108
  3444. },
  3445. {
  3446. "__id__": 109
  3447. },
  3448. {
  3449. "__id__": 110
  3450. }
  3451. ],
  3452. "_prefab": null,
  3453. "_lpos": {
  3454. "__type__": "cc.Vec3",
  3455. "x": -291.21,
  3456. "y": -267.351,
  3457. "z": 0
  3458. },
  3459. "_lrot": {
  3460. "__type__": "cc.Quat",
  3461. "x": 0,
  3462. "y": 0,
  3463. "z": 0,
  3464. "w": 1
  3465. },
  3466. "_lscale": {
  3467. "__type__": "cc.Vec3",
  3468. "x": 1,
  3469. "y": 1,
  3470. "z": 1
  3471. },
  3472. "_mobility": 0,
  3473. "_layer": 33554432,
  3474. "_euler": {
  3475. "__type__": "cc.Vec3",
  3476. "x": 0,
  3477. "y": 0,
  3478. "z": 0
  3479. },
  3480. "_id": "adrsQJwhpLvKCA0edRC9ep"
  3481. },
  3482. {
  3483. "__type__": "cc.Node",
  3484. "_name": "Label",
  3485. "_objFlags": 512,
  3486. "_parent": {
  3487. "__id__": 104
  3488. },
  3489. "_children": [],
  3490. "_active": true,
  3491. "_components": [
  3492. {
  3493. "__id__": 106
  3494. },
  3495. {
  3496. "__id__": 107
  3497. }
  3498. ],
  3499. "_prefab": null,
  3500. "_lpos": {
  3501. "__type__": "cc.Vec3",
  3502. "x": 1.5368852459016438,
  3503. "y": 6.147540983606557,
  3504. "z": 0
  3505. },
  3506. "_lrot": {
  3507. "__type__": "cc.Quat",
  3508. "x": 0,
  3509. "y": 0,
  3510. "z": 0,
  3511. "w": 1
  3512. },
  3513. "_lscale": {
  3514. "__type__": "cc.Vec3",
  3515. "x": 1,
  3516. "y": 1,
  3517. "z": 1
  3518. },
  3519. "_mobility": 0,
  3520. "_layer": 33554432,
  3521. "_euler": {
  3522. "__type__": "cc.Vec3",
  3523. "x": 0,
  3524. "y": 0,
  3525. "z": 0
  3526. },
  3527. "_id": "3fEW57U69K040Vzc1siZdR"
  3528. },
  3529. {
  3530. "__type__": "cc.UITransform",
  3531. "_name": "",
  3532. "_objFlags": 0,
  3533. "node": {
  3534. "__id__": 105
  3535. },
  3536. "_enabled": true,
  3537. "__prefab": null,
  3538. "_contentSize": {
  3539. "__type__": "cc.Size",
  3540. "width": 312.09016393442624,
  3541. "height": 70.73770491803279
  3542. },
  3543. "_anchorPoint": {
  3544. "__type__": "cc.Vec2",
  3545. "x": 0.5,
  3546. "y": 0.5
  3547. },
  3548. "_id": "35RGH0cq1In4hdFQ96Zn3b"
  3549. },
  3550. {
  3551. "__type__": "cc.Label",
  3552. "_name": "",
  3553. "_objFlags": 0,
  3554. "node": {
  3555. "__id__": 105
  3556. },
  3557. "_enabled": true,
  3558. "__prefab": null,
  3559. "_customMaterial": null,
  3560. "_srcBlendFactor": 2,
  3561. "_dstBlendFactor": 4,
  3562. "_color": {
  3563. "__type__": "cc.Color",
  3564. "r": 255,
  3565. "g": 255,
  3566. "b": 255,
  3567. "a": 255
  3568. },
  3569. "_string": "返回首页",
  3570. "_horizontalAlign": 1,
  3571. "_verticalAlign": 1,
  3572. "_actualFontSize": 55,
  3573. "_fontSize": 55,
  3574. "_fontFamily": "Arial",
  3575. "_lineHeight": 70,
  3576. "_overflow": 1,
  3577. "_enableWrapText": false,
  3578. "_font": null,
  3579. "_isSystemFontUsed": true,
  3580. "_spacingX": 0,
  3581. "_isItalic": false,
  3582. "_isBold": false,
  3583. "_isUnderline": false,
  3584. "_underlineHeight": 2,
  3585. "_cacheMode": 0,
  3586. "_id": "feqqaW3iJPF7vftQ39pQEC"
  3587. },
  3588. {
  3589. "__type__": "cc.UITransform",
  3590. "_name": "",
  3591. "_objFlags": 0,
  3592. "node": {
  3593. "__id__": 104
  3594. },
  3595. "_enabled": true,
  3596. "__prefab": null,
  3597. "_contentSize": {
  3598. "__type__": "cc.Size",
  3599. "width": 411,
  3600. "height": 144
  3601. },
  3602. "_anchorPoint": {
  3603. "__type__": "cc.Vec2",
  3604. "x": 0.5,
  3605. "y": 0.5
  3606. },
  3607. "_id": "0d3afojiRHfIoSM5LDTv3k"
  3608. },
  3609. {
  3610. "__type__": "cc.Sprite",
  3611. "_name": "",
  3612. "_objFlags": 0,
  3613. "node": {
  3614. "__id__": 104
  3615. },
  3616. "_enabled": true,
  3617. "__prefab": null,
  3618. "_customMaterial": null,
  3619. "_srcBlendFactor": 2,
  3620. "_dstBlendFactor": 4,
  3621. "_color": {
  3622. "__type__": "cc.Color",
  3623. "r": 255,
  3624. "g": 255,
  3625. "b": 255,
  3626. "a": 255
  3627. },
  3628. "_spriteFrame": {
  3629. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  3630. "__expectedType__": "cc.SpriteFrame"
  3631. },
  3632. "_type": 1,
  3633. "_fillType": 0,
  3634. "_sizeMode": 0,
  3635. "_fillCenter": {
  3636. "__type__": "cc.Vec2",
  3637. "x": 0,
  3638. "y": 0
  3639. },
  3640. "_fillStart": 0,
  3641. "_fillRange": 0,
  3642. "_isTrimmedMode": true,
  3643. "_useGrayscale": false,
  3644. "_atlas": null,
  3645. "_id": "b5ibidQGZOda4qgn015afs"
  3646. },
  3647. {
  3648. "__type__": "cc.Button",
  3649. "_name": "",
  3650. "_objFlags": 0,
  3651. "node": {
  3652. "__id__": 104
  3653. },
  3654. "_enabled": true,
  3655. "__prefab": null,
  3656. "clickEvents": [
  3657. {
  3658. "__id__": 111
  3659. }
  3660. ],
  3661. "_interactable": true,
  3662. "_transition": 2,
  3663. "_normalColor": {
  3664. "__type__": "cc.Color",
  3665. "r": 214,
  3666. "g": 214,
  3667. "b": 214,
  3668. "a": 255
  3669. },
  3670. "_hoverColor": {
  3671. "__type__": "cc.Color",
  3672. "r": 211,
  3673. "g": 211,
  3674. "b": 211,
  3675. "a": 255
  3676. },
  3677. "_pressedColor": {
  3678. "__type__": "cc.Color",
  3679. "r": 255,
  3680. "g": 255,
  3681. "b": 255,
  3682. "a": 255
  3683. },
  3684. "_disabledColor": {
  3685. "__type__": "cc.Color",
  3686. "r": 124,
  3687. "g": 124,
  3688. "b": 124,
  3689. "a": 255
  3690. },
  3691. "_normalSprite": {
  3692. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  3693. "__expectedType__": "cc.SpriteFrame"
  3694. },
  3695. "_hoverSprite": {
  3696. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  3697. "__expectedType__": "cc.SpriteFrame"
  3698. },
  3699. "_pressedSprite": {
  3700. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  3701. "__expectedType__": "cc.SpriteFrame"
  3702. },
  3703. "_disabledSprite": {
  3704. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  3705. "__expectedType__": "cc.SpriteFrame"
  3706. },
  3707. "_duration": 0.1,
  3708. "_zoomScale": 1.2,
  3709. "_target": {
  3710. "__id__": 104
  3711. },
  3712. "_id": "2ewEGO+npD5Yi774ZON+O8"
  3713. },
  3714. {
  3715. "__type__": "cc.ClickEvent",
  3716. "target": {
  3717. "__id__": 93
  3718. },
  3719. "component": "",
  3720. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  3721. "handler": "backHomeBtn",
  3722. "customEventData": ""
  3723. },
  3724. {
  3725. "__type__": "cc.Node",
  3726. "_name": "EnterGameBtn",
  3727. "_objFlags": 0,
  3728. "_parent": {
  3729. "__id__": 93
  3730. },
  3731. "_children": [
  3732. {
  3733. "__id__": 113
  3734. }
  3735. ],
  3736. "_active": true,
  3737. "_components": [
  3738. {
  3739. "__id__": 116
  3740. },
  3741. {
  3742. "__id__": 117
  3743. },
  3744. {
  3745. "__id__": 118
  3746. }
  3747. ],
  3748. "_prefab": null,
  3749. "_lpos": {
  3750. "__type__": "cc.Vec3",
  3751. "x": 274.528,
  3752. "y": -267.351,
  3753. "z": 0
  3754. },
  3755. "_lrot": {
  3756. "__type__": "cc.Quat",
  3757. "x": 0,
  3758. "y": 0,
  3759. "z": 0,
  3760. "w": 1
  3761. },
  3762. "_lscale": {
  3763. "__type__": "cc.Vec3",
  3764. "x": 1,
  3765. "y": 1,
  3766. "z": 1
  3767. },
  3768. "_mobility": 0,
  3769. "_layer": 33554432,
  3770. "_euler": {
  3771. "__type__": "cc.Vec3",
  3772. "x": 0,
  3773. "y": 0,
  3774. "z": 0
  3775. },
  3776. "_id": "d96f/sKyhH8pWYrtD2NvpM"
  3777. },
  3778. {
  3779. "__type__": "cc.Node",
  3780. "_name": "Label",
  3781. "_objFlags": 512,
  3782. "_parent": {
  3783. "__id__": 112
  3784. },
  3785. "_children": [],
  3786. "_active": true,
  3787. "_components": [
  3788. {
  3789. "__id__": 114
  3790. },
  3791. {
  3792. "__id__": 115
  3793. }
  3794. ],
  3795. "_prefab": null,
  3796. "_lpos": {
  3797. "__type__": "cc.Vec3",
  3798. "x": 1.5368852459016438,
  3799. "y": 6.147540983606557,
  3800. "z": 0
  3801. },
  3802. "_lrot": {
  3803. "__type__": "cc.Quat",
  3804. "x": 0,
  3805. "y": 0,
  3806. "z": 0,
  3807. "w": 1
  3808. },
  3809. "_lscale": {
  3810. "__type__": "cc.Vec3",
  3811. "x": 1,
  3812. "y": 1,
  3813. "z": 1
  3814. },
  3815. "_mobility": 0,
  3816. "_layer": 33554432,
  3817. "_euler": {
  3818. "__type__": "cc.Vec3",
  3819. "x": 0,
  3820. "y": 0,
  3821. "z": 0
  3822. },
  3823. "_id": "1foVSXWopEjbWb7Y58M752"
  3824. },
  3825. {
  3826. "__type__": "cc.UITransform",
  3827. "_name": "",
  3828. "_objFlags": 0,
  3829. "node": {
  3830. "__id__": 113
  3831. },
  3832. "_enabled": true,
  3833. "__prefab": null,
  3834. "_contentSize": {
  3835. "__type__": "cc.Size",
  3836. "width": 312.09016393442624,
  3837. "height": 70.73770491803279
  3838. },
  3839. "_anchorPoint": {
  3840. "__type__": "cc.Vec2",
  3841. "x": 0.5,
  3842. "y": 0.5
  3843. },
  3844. "_id": "bbGJuCyZNC/Z6g8wMi8fTg"
  3845. },
  3846. {
  3847. "__type__": "cc.Label",
  3848. "_name": "",
  3849. "_objFlags": 0,
  3850. "node": {
  3851. "__id__": 113
  3852. },
  3853. "_enabled": true,
  3854. "__prefab": null,
  3855. "_customMaterial": null,
  3856. "_srcBlendFactor": 2,
  3857. "_dstBlendFactor": 4,
  3858. "_color": {
  3859. "__type__": "cc.Color",
  3860. "r": 255,
  3861. "g": 255,
  3862. "b": 255,
  3863. "a": 255
  3864. },
  3865. "_string": "下一关",
  3866. "_horizontalAlign": 1,
  3867. "_verticalAlign": 1,
  3868. "_actualFontSize": 55,
  3869. "_fontSize": 55,
  3870. "_fontFamily": "Arial",
  3871. "_lineHeight": 70,
  3872. "_overflow": 1,
  3873. "_enableWrapText": false,
  3874. "_font": null,
  3875. "_isSystemFontUsed": true,
  3876. "_spacingX": 0,
  3877. "_isItalic": false,
  3878. "_isBold": false,
  3879. "_isUnderline": false,
  3880. "_underlineHeight": 2,
  3881. "_cacheMode": 0,
  3882. "_id": "66MvUFQAZAgoxN7VIo9CQx"
  3883. },
  3884. {
  3885. "__type__": "cc.UITransform",
  3886. "_name": "",
  3887. "_objFlags": 0,
  3888. "node": {
  3889. "__id__": 112
  3890. },
  3891. "_enabled": true,
  3892. "__prefab": null,
  3893. "_contentSize": {
  3894. "__type__": "cc.Size",
  3895. "width": 411,
  3896. "height": 144
  3897. },
  3898. "_anchorPoint": {
  3899. "__type__": "cc.Vec2",
  3900. "x": 0.5,
  3901. "y": 0.5
  3902. },
  3903. "_id": "3e6wJfzD1G+LRjhvK36HjE"
  3904. },
  3905. {
  3906. "__type__": "cc.Sprite",
  3907. "_name": "",
  3908. "_objFlags": 0,
  3909. "node": {
  3910. "__id__": 112
  3911. },
  3912. "_enabled": true,
  3913. "__prefab": null,
  3914. "_customMaterial": null,
  3915. "_srcBlendFactor": 2,
  3916. "_dstBlendFactor": 4,
  3917. "_color": {
  3918. "__type__": "cc.Color",
  3919. "r": 255,
  3920. "g": 255,
  3921. "b": 255,
  3922. "a": 255
  3923. },
  3924. "_spriteFrame": {
  3925. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  3926. "__expectedType__": "cc.SpriteFrame"
  3927. },
  3928. "_type": 1,
  3929. "_fillType": 0,
  3930. "_sizeMode": 0,
  3931. "_fillCenter": {
  3932. "__type__": "cc.Vec2",
  3933. "x": 0,
  3934. "y": 0
  3935. },
  3936. "_fillStart": 0,
  3937. "_fillRange": 0,
  3938. "_isTrimmedMode": true,
  3939. "_useGrayscale": false,
  3940. "_atlas": null,
  3941. "_id": "49stwRG7xGy6/NfKKXONkv"
  3942. },
  3943. {
  3944. "__type__": "cc.Button",
  3945. "_name": "",
  3946. "_objFlags": 0,
  3947. "node": {
  3948. "__id__": 112
  3949. },
  3950. "_enabled": true,
  3951. "__prefab": null,
  3952. "clickEvents": [
  3953. {
  3954. "__id__": 119
  3955. }
  3956. ],
  3957. "_interactable": true,
  3958. "_transition": 2,
  3959. "_normalColor": {
  3960. "__type__": "cc.Color",
  3961. "r": 214,
  3962. "g": 214,
  3963. "b": 214,
  3964. "a": 255
  3965. },
  3966. "_hoverColor": {
  3967. "__type__": "cc.Color",
  3968. "r": 211,
  3969. "g": 211,
  3970. "b": 211,
  3971. "a": 255
  3972. },
  3973. "_pressedColor": {
  3974. "__type__": "cc.Color",
  3975. "r": 255,
  3976. "g": 255,
  3977. "b": 255,
  3978. "a": 255
  3979. },
  3980. "_disabledColor": {
  3981. "__type__": "cc.Color",
  3982. "r": 124,
  3983. "g": 124,
  3984. "b": 124,
  3985. "a": 255
  3986. },
  3987. "_normalSprite": {
  3988. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  3989. "__expectedType__": "cc.SpriteFrame"
  3990. },
  3991. "_hoverSprite": {
  3992. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  3993. "__expectedType__": "cc.SpriteFrame"
  3994. },
  3995. "_pressedSprite": {
  3996. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  3997. "__expectedType__": "cc.SpriteFrame"
  3998. },
  3999. "_disabledSprite": {
  4000. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  4001. "__expectedType__": "cc.SpriteFrame"
  4002. },
  4003. "_duration": 0.1,
  4004. "_zoomScale": 1.2,
  4005. "_target": {
  4006. "__id__": 112
  4007. },
  4008. "_id": "47RANVaJlKX53eA7d96CEb"
  4009. },
  4010. {
  4011. "__type__": "cc.ClickEvent",
  4012. "target": {
  4013. "__id__": 93
  4014. },
  4015. "component": "",
  4016. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  4017. "handler": "levelBtn",
  4018. "customEventData": ""
  4019. },
  4020. {
  4021. "__type__": "cc.Node",
  4022. "_name": "curLevelScore",
  4023. "_objFlags": 0,
  4024. "_parent": {
  4025. "__id__": 93
  4026. },
  4027. "_children": [],
  4028. "_active": true,
  4029. "_components": [
  4030. {
  4031. "__id__": 121
  4032. },
  4033. {
  4034. "__id__": 122
  4035. }
  4036. ],
  4037. "_prefab": null,
  4038. "_lpos": {
  4039. "__type__": "cc.Vec3",
  4040. "x": 360.28,
  4041. "y": -41.767,
  4042. "z": 0
  4043. },
  4044. "_lrot": {
  4045. "__type__": "cc.Quat",
  4046. "x": 0,
  4047. "y": 0,
  4048. "z": 0,
  4049. "w": 1
  4050. },
  4051. "_lscale": {
  4052. "__type__": "cc.Vec3",
  4053. "x": 1,
  4054. "y": 1,
  4055. "z": 1
  4056. },
  4057. "_mobility": 0,
  4058. "_layer": 33554432,
  4059. "_euler": {
  4060. "__type__": "cc.Vec3",
  4061. "x": 0,
  4062. "y": 0,
  4063. "z": 0
  4064. },
  4065. "_id": "c2t2qam5FJSa7f+VRY4xwL"
  4066. },
  4067. {
  4068. "__type__": "cc.UITransform",
  4069. "_name": "",
  4070. "_objFlags": 0,
  4071. "node": {
  4072. "__id__": 120
  4073. },
  4074. "_enabled": true,
  4075. "__prefab": null,
  4076. "_contentSize": {
  4077. "__type__": "cc.Size",
  4078. "width": 560.454,
  4079. "height": 214.07999999999998
  4080. },
  4081. "_anchorPoint": {
  4082. "__type__": "cc.Vec2",
  4083. "x": 0.5,
  4084. "y": 0.5
  4085. },
  4086. "_id": "54iE2ohRhF4ovuxzUVzZli"
  4087. },
  4088. {
  4089. "__type__": "cc.Label",
  4090. "_name": "",
  4091. "_objFlags": 0,
  4092. "node": {
  4093. "__id__": 120
  4094. },
  4095. "_enabled": true,
  4096. "__prefab": null,
  4097. "_customMaterial": null,
  4098. "_srcBlendFactor": 2,
  4099. "_dstBlendFactor": 4,
  4100. "_color": {
  4101. "__type__": "cc.Color",
  4102. "r": 169,
  4103. "g": 79,
  4104. "b": 9,
  4105. "a": 255
  4106. },
  4107. "_string": "本关得分:1",
  4108. "_horizontalAlign": 0,
  4109. "_verticalAlign": 1,
  4110. "_actualFontSize": 60,
  4111. "_fontSize": 60,
  4112. "_fontFamily": "Arial",
  4113. "_lineHeight": 100,
  4114. "_overflow": 1,
  4115. "_enableWrapText": true,
  4116. "_font": null,
  4117. "_isSystemFontUsed": true,
  4118. "_spacingX": 0,
  4119. "_isItalic": false,
  4120. "_isBold": true,
  4121. "_isUnderline": false,
  4122. "_underlineHeight": 2,
  4123. "_cacheMode": 0,
  4124. "_id": "d1pwclNt1CxLkmmf34GWOc"
  4125. },
  4126. {
  4127. "__type__": "cc.Node",
  4128. "_name": "TotalScore",
  4129. "_objFlags": 0,
  4130. "_parent": {
  4131. "__id__": 93
  4132. },
  4133. "_children": [],
  4134. "_active": true,
  4135. "_components": [
  4136. {
  4137. "__id__": 124
  4138. },
  4139. {
  4140. "__id__": 125
  4141. }
  4142. ],
  4143. "_prefab": null,
  4144. "_lpos": {
  4145. "__type__": "cc.Vec3",
  4146. "x": -186.859,
  4147. "y": -41.767,
  4148. "z": 0
  4149. },
  4150. "_lrot": {
  4151. "__type__": "cc.Quat",
  4152. "x": 0,
  4153. "y": 0,
  4154. "z": 0,
  4155. "w": 1
  4156. },
  4157. "_lscale": {
  4158. "__type__": "cc.Vec3",
  4159. "x": 1,
  4160. "y": 1,
  4161. "z": 1
  4162. },
  4163. "_mobility": 0,
  4164. "_layer": 33554432,
  4165. "_euler": {
  4166. "__type__": "cc.Vec3",
  4167. "x": 0,
  4168. "y": 0,
  4169. "z": 0
  4170. },
  4171. "_id": "56X7kQMiFNj5CA75HojXOp"
  4172. },
  4173. {
  4174. "__type__": "cc.UITransform",
  4175. "_name": "",
  4176. "_objFlags": 0,
  4177. "node": {
  4178. "__id__": 123
  4179. },
  4180. "_enabled": true,
  4181. "__prefab": null,
  4182. "_contentSize": {
  4183. "__type__": "cc.Size",
  4184. "width": 560.454,
  4185. "height": 214.07999999999998
  4186. },
  4187. "_anchorPoint": {
  4188. "__type__": "cc.Vec2",
  4189. "x": 0.5,
  4190. "y": 0.5
  4191. },
  4192. "_id": "91F5VNHjNIgqN03rfwh4Xc"
  4193. },
  4194. {
  4195. "__type__": "cc.Label",
  4196. "_name": "",
  4197. "_objFlags": 0,
  4198. "node": {
  4199. "__id__": 123
  4200. },
  4201. "_enabled": true,
  4202. "__prefab": null,
  4203. "_customMaterial": null,
  4204. "_srcBlendFactor": 2,
  4205. "_dstBlendFactor": 4,
  4206. "_color": {
  4207. "__type__": "cc.Color",
  4208. "r": 169,
  4209. "g": 79,
  4210. "b": 9,
  4211. "a": 255
  4212. },
  4213. "_string": "总得分:",
  4214. "_horizontalAlign": 0,
  4215. "_verticalAlign": 1,
  4216. "_actualFontSize": 60,
  4217. "_fontSize": 60,
  4218. "_fontFamily": "Arial",
  4219. "_lineHeight": 100,
  4220. "_overflow": 1,
  4221. "_enableWrapText": true,
  4222. "_font": null,
  4223. "_isSystemFontUsed": true,
  4224. "_spacingX": 0,
  4225. "_isItalic": false,
  4226. "_isBold": true,
  4227. "_isUnderline": false,
  4228. "_underlineHeight": 2,
  4229. "_cacheMode": 0,
  4230. "_id": "a8y+G4xQpEz7aAHiOFYm5L"
  4231. },
  4232. {
  4233. "__type__": "cc.Node",
  4234. "_name": "resultIcon",
  4235. "_objFlags": 0,
  4236. "_parent": {
  4237. "__id__": 93
  4238. },
  4239. "_children": [],
  4240. "_active": true,
  4241. "_components": [
  4242. {
  4243. "__id__": 127
  4244. },
  4245. {
  4246. "__id__": 128
  4247. }
  4248. ],
  4249. "_prefab": null,
  4250. "_lpos": {
  4251. "__type__": "cc.Vec3",
  4252. "x": 0,
  4253. "y": 350.842,
  4254. "z": 0
  4255. },
  4256. "_lrot": {
  4257. "__type__": "cc.Quat",
  4258. "x": 0,
  4259. "y": 0,
  4260. "z": 0,
  4261. "w": 1
  4262. },
  4263. "_lscale": {
  4264. "__type__": "cc.Vec3",
  4265. "x": 1,
  4266. "y": 1,
  4267. "z": 1
  4268. },
  4269. "_mobility": 0,
  4270. "_layer": 33554432,
  4271. "_euler": {
  4272. "__type__": "cc.Vec3",
  4273. "x": 0,
  4274. "y": 0,
  4275. "z": 0
  4276. },
  4277. "_id": "3bMre/6AhI84Sm9BsZ6isN"
  4278. },
  4279. {
  4280. "__type__": "cc.UITransform",
  4281. "_name": "",
  4282. "_objFlags": 0,
  4283. "node": {
  4284. "__id__": 126
  4285. },
  4286. "_enabled": true,
  4287. "__prefab": null,
  4288. "_contentSize": {
  4289. "__type__": "cc.Size",
  4290. "width": 276,
  4291. "height": 276
  4292. },
  4293. "_anchorPoint": {
  4294. "__type__": "cc.Vec2",
  4295. "x": 0.5,
  4296. "y": 0.5
  4297. },
  4298. "_id": "48m3xY/NRLfYMgrO6vypef"
  4299. },
  4300. {
  4301. "__type__": "cc.Sprite",
  4302. "_name": "",
  4303. "_objFlags": 0,
  4304. "node": {
  4305. "__id__": 126
  4306. },
  4307. "_enabled": true,
  4308. "__prefab": null,
  4309. "_customMaterial": null,
  4310. "_srcBlendFactor": 2,
  4311. "_dstBlendFactor": 4,
  4312. "_color": {
  4313. "__type__": "cc.Color",
  4314. "r": 255,
  4315. "g": 255,
  4316. "b": 255,
  4317. "a": 255
  4318. },
  4319. "_spriteFrame": {
  4320. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  4321. "__expectedType__": "cc.SpriteFrame"
  4322. },
  4323. "_type": 0,
  4324. "_fillType": 0,
  4325. "_sizeMode": 1,
  4326. "_fillCenter": {
  4327. "__type__": "cc.Vec2",
  4328. "x": 0,
  4329. "y": 0
  4330. },
  4331. "_fillStart": 0,
  4332. "_fillRange": 0,
  4333. "_isTrimmedMode": true,
  4334. "_useGrayscale": false,
  4335. "_atlas": null,
  4336. "_id": "c99zq9dbVI9LheJj/7p9g9"
  4337. },
  4338. {
  4339. "__type__": "cc.UITransform",
  4340. "_name": "",
  4341. "_objFlags": 0,
  4342. "node": {
  4343. "__id__": 93
  4344. },
  4345. "_enabled": true,
  4346. "__prefab": null,
  4347. "_contentSize": {
  4348. "__type__": "cc.Size",
  4349. "width": 1311,
  4350. "height": 806
  4351. },
  4352. "_anchorPoint": {
  4353. "__type__": "cc.Vec2",
  4354. "x": 0.5,
  4355. "y": 0.5
  4356. },
  4357. "_id": "e2M9hKVbJOpLEfbwyRzof+"
  4358. },
  4359. {
  4360. "__type__": "cc.Sprite",
  4361. "_name": "",
  4362. "_objFlags": 0,
  4363. "node": {
  4364. "__id__": 93
  4365. },
  4366. "_enabled": false,
  4367. "__prefab": null,
  4368. "_customMaterial": null,
  4369. "_srcBlendFactor": 2,
  4370. "_dstBlendFactor": 4,
  4371. "_color": {
  4372. "__type__": "cc.Color",
  4373. "r": 255,
  4374. "g": 255,
  4375. "b": 255,
  4376. "a": 255
  4377. },
  4378. "_spriteFrame": {
  4379. "__uuid__": "28765e2f-040a-4c65-8e8c-f9d0bb79d863@f9941",
  4380. "__expectedType__": "cc.SpriteFrame"
  4381. },
  4382. "_type": 1,
  4383. "_fillType": 0,
  4384. "_sizeMode": 0,
  4385. "_fillCenter": {
  4386. "__type__": "cc.Vec2",
  4387. "x": 0,
  4388. "y": 0
  4389. },
  4390. "_fillStart": 0,
  4391. "_fillRange": 0,
  4392. "_isTrimmedMode": true,
  4393. "_useGrayscale": false,
  4394. "_atlas": null,
  4395. "_id": "ebtJxL2z5Ko5BssboLF8rv"
  4396. },
  4397. {
  4398. "__type__": "95501FTS+FP8aW52qXh/kCV",
  4399. "_name": "",
  4400. "_objFlags": 0,
  4401. "node": {
  4402. "__id__": 93
  4403. },
  4404. "_enabled": true,
  4405. "__prefab": null,
  4406. "successBg": {
  4407. "__uuid__": "52fd76ba-30bd-4cda-965e-0427d6c30cc1@f9941",
  4408. "__expectedType__": "cc.SpriteFrame"
  4409. },
  4410. "failBg": {
  4411. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  4412. "__expectedType__": "cc.SpriteFrame"
  4413. },
  4414. "curLevelLabel": {
  4415. "__id__": 103
  4416. },
  4417. "curScoreLabel": {
  4418. "__id__": 122
  4419. },
  4420. "totalScoreLabel": {
  4421. "__id__": 125
  4422. },
  4423. "btnLabel": {
  4424. "__id__": 115
  4425. },
  4426. "reusltIcon": {
  4427. "__id__": 126
  4428. },
  4429. "_id": "50PulxgL1JQqf0g2NOZtHI"
  4430. },
  4431. {
  4432. "__type__": "cc.BlockInputEvents",
  4433. "_name": "",
  4434. "_objFlags": 0,
  4435. "node": {
  4436. "__id__": 93
  4437. },
  4438. "_enabled": true,
  4439. "__prefab": null,
  4440. "_id": "5aS/Nz0NxM6q+Rzl7lrbJs"
  4441. },
  4442. {
  4443. "__type__": "cc.Node",
  4444. "_objFlags": 512,
  4445. "_parent": {
  4446. "__id__": 6
  4447. },
  4448. "_prefab": {
  4449. "__id__": 134
  4450. },
  4451. "__editorExtras__": {}
  4452. },
  4453. {
  4454. "__type__": "cc.PrefabInfo",
  4455. "root": {
  4456. "__id__": 133
  4457. },
  4458. "asset": {
  4459. "__uuid__": "7d17bef9-8f82-415e-8928-f2c7da3decf4",
  4460. "__expectedType__": "cc.Prefab"
  4461. },
  4462. "fileId": "f5VirVdr1A/q1iUlQGtO+X",
  4463. "instance": {
  4464. "__id__": 135
  4465. },
  4466. "targetOverrides": null,
  4467. "nestedPrefabInstanceRoots": null
  4468. },
  4469. {
  4470. "__type__": "cc.PrefabInstance",
  4471. "fileId": "f0jZuVJ7REqZ0+6Qh6IxiK",
  4472. "prefabRootNode": null,
  4473. "mountedChildren": [],
  4474. "mountedComponents": [
  4475. {
  4476. "__id__": 136
  4477. }
  4478. ],
  4479. "propertyOverrides": [
  4480. {
  4481. "__id__": 139
  4482. },
  4483. {
  4484. "__id__": 141
  4485. },
  4486. {
  4487. "__id__": 142
  4488. },
  4489. {
  4490. "__id__": 143
  4491. },
  4492. {
  4493. "__id__": 144
  4494. }
  4495. ],
  4496. "removedComponents": []
  4497. },
  4498. {
  4499. "__type__": "cc.MountedComponentsInfo",
  4500. "targetInfo": {
  4501. "__id__": 137
  4502. },
  4503. "components": [
  4504. {
  4505. "__id__": 138
  4506. }
  4507. ]
  4508. },
  4509. {
  4510. "__type__": "cc.TargetInfo",
  4511. "localID": [
  4512. "f5VirVdr1A/q1iUlQGtO+X"
  4513. ]
  4514. },
  4515. {
  4516. "__type__": "cc.BlockInputEvents",
  4517. "_name": "",
  4518. "_objFlags": 0,
  4519. "__editorExtras__": {
  4520. "mountedRoot": {
  4521. "__id__": 133
  4522. }
  4523. },
  4524. "node": {
  4525. "__id__": 133
  4526. },
  4527. "_enabled": true,
  4528. "__prefab": null,
  4529. "_id": "07r8anbvNG/6BWBGGtLhOU"
  4530. },
  4531. {
  4532. "__type__": "CCPropertyOverrideInfo",
  4533. "targetInfo": {
  4534. "__id__": 140
  4535. },
  4536. "propertyPath": [
  4537. "_name"
  4538. ],
  4539. "value": "PlayAEndTip"
  4540. },
  4541. {
  4542. "__type__": "cc.TargetInfo",
  4543. "localID": [
  4544. "f5VirVdr1A/q1iUlQGtO+X"
  4545. ]
  4546. },
  4547. {
  4548. "__type__": "CCPropertyOverrideInfo",
  4549. "targetInfo": {
  4550. "__id__": 140
  4551. },
  4552. "propertyPath": [
  4553. "_lpos"
  4554. ],
  4555. "value": {
  4556. "__type__": "cc.Vec3",
  4557. "x": 0,
  4558. "y": 0,
  4559. "z": 0
  4560. }
  4561. },
  4562. {
  4563. "__type__": "CCPropertyOverrideInfo",
  4564. "targetInfo": {
  4565. "__id__": 140
  4566. },
  4567. "propertyPath": [
  4568. "_lrot"
  4569. ],
  4570. "value": {
  4571. "__type__": "cc.Quat",
  4572. "x": 0,
  4573. "y": 0,
  4574. "z": 0,
  4575. "w": 1
  4576. }
  4577. },
  4578. {
  4579. "__type__": "CCPropertyOverrideInfo",
  4580. "targetInfo": {
  4581. "__id__": 140
  4582. },
  4583. "propertyPath": [
  4584. "_euler"
  4585. ],
  4586. "value": {
  4587. "__type__": "cc.Vec3",
  4588. "x": 0,
  4589. "y": 0,
  4590. "z": 0
  4591. }
  4592. },
  4593. {
  4594. "__type__": "CCPropertyOverrideInfo",
  4595. "targetInfo": {
  4596. "__id__": 140
  4597. },
  4598. "propertyPath": [
  4599. "_active"
  4600. ],
  4601. "value": false
  4602. },
  4603. {
  4604. "__type__": "cc.Node",
  4605. "_name": "Full",
  4606. "_objFlags": 0,
  4607. "_parent": {
  4608. "__id__": 6
  4609. },
  4610. "_children": [
  4611. {
  4612. "__id__": 146
  4613. },
  4614. {
  4615. "__id__": 156
  4616. },
  4617. {
  4618. "__id__": 166
  4619. }
  4620. ],
  4621. "_active": true,
  4622. "_components": [
  4623. {
  4624. "__id__": 176
  4625. },
  4626. {
  4627. "__id__": 177
  4628. }
  4629. ],
  4630. "_prefab": null,
  4631. "_lpos": {
  4632. "__type__": "cc.Vec3",
  4633. "x": 0,
  4634. "y": 0,
  4635. "z": 0
  4636. },
  4637. "_lrot": {
  4638. "__type__": "cc.Quat",
  4639. "x": 0,
  4640. "y": 0,
  4641. "z": 0,
  4642. "w": 1
  4643. },
  4644. "_lscale": {
  4645. "__type__": "cc.Vec3",
  4646. "x": 1,
  4647. "y": 1,
  4648. "z": 1
  4649. },
  4650. "_mobility": 0,
  4651. "_layer": 33554432,
  4652. "_euler": {
  4653. "__type__": "cc.Vec3",
  4654. "x": 0,
  4655. "y": 0,
  4656. "z": 0
  4657. },
  4658. "_id": "66bcmRoDVJr7mAO/zWrM6a"
  4659. },
  4660. {
  4661. "__type__": "cc.Node",
  4662. "_name": "GetScoreBg-001",
  4663. "_objFlags": 0,
  4664. "_parent": {
  4665. "__id__": 145
  4666. },
  4667. "_children": [
  4668. {
  4669. "__id__": 147
  4670. }
  4671. ],
  4672. "_active": true,
  4673. "_components": [
  4674. {
  4675. "__id__": 153
  4676. },
  4677. {
  4678. "__id__": 154
  4679. },
  4680. {
  4681. "__id__": 155
  4682. }
  4683. ],
  4684. "_prefab": null,
  4685. "_lpos": {
  4686. "__type__": "cc.Vec3",
  4687. "x": -400,
  4688. "y": 593.5,
  4689. "z": 0
  4690. },
  4691. "_lrot": {
  4692. "__type__": "cc.Quat",
  4693. "x": 0,
  4694. "y": 0,
  4695. "z": 0,
  4696. "w": 1
  4697. },
  4698. "_lscale": {
  4699. "__type__": "cc.Vec3",
  4700. "x": 1,
  4701. "y": 1,
  4702. "z": 1
  4703. },
  4704. "_mobility": 0,
  4705. "_layer": 33554432,
  4706. "_euler": {
  4707. "__type__": "cc.Vec3",
  4708. "x": 0,
  4709. "y": 0,
  4710. "z": 0
  4711. },
  4712. "_id": "7aBXCm+khLUqjKxwb+R/m7"
  4713. },
  4714. {
  4715. "__type__": "cc.Node",
  4716. "_name": "GetScore",
  4717. "_objFlags": 0,
  4718. "_parent": {
  4719. "__id__": 146
  4720. },
  4721. "_children": [
  4722. {
  4723. "__id__": 148
  4724. }
  4725. ],
  4726. "_active": true,
  4727. "_components": [
  4728. {
  4729. "__id__": 151
  4730. },
  4731. {
  4732. "__id__": 152
  4733. }
  4734. ],
  4735. "_prefab": null,
  4736. "_lpos": {
  4737. "__type__": "cc.Vec3",
  4738. "x": -100.368,
  4739. "y": 0.904,
  4740. "z": 0
  4741. },
  4742. "_lrot": {
  4743. "__type__": "cc.Quat",
  4744. "x": 0,
  4745. "y": 0,
  4746. "z": 0,
  4747. "w": 1
  4748. },
  4749. "_lscale": {
  4750. "__type__": "cc.Vec3",
  4751. "x": 1,
  4752. "y": 1,
  4753. "z": 1
  4754. },
  4755. "_mobility": 0,
  4756. "_layer": 33554432,
  4757. "_euler": {
  4758. "__type__": "cc.Vec3",
  4759. "x": 0,
  4760. "y": 0,
  4761. "z": 0
  4762. },
  4763. "_id": "2dlFpBou9N4qEx8zh/au+0"
  4764. },
  4765. {
  4766. "__type__": "cc.Node",
  4767. "_name": "Score",
  4768. "_objFlags": 0,
  4769. "_parent": {
  4770. "__id__": 147
  4771. },
  4772. "_children": [],
  4773. "_active": true,
  4774. "_components": [
  4775. {
  4776. "__id__": 149
  4777. },
  4778. {
  4779. "__id__": 150
  4780. }
  4781. ],
  4782. "_prefab": null,
  4783. "_lpos": {
  4784. "__type__": "cc.Vec3",
  4785. "x": 139.812,
  4786. "y": 0.043,
  4787. "z": 0
  4788. },
  4789. "_lrot": {
  4790. "__type__": "cc.Quat",
  4791. "x": 0,
  4792. "y": 0,
  4793. "z": 0,
  4794. "w": 1
  4795. },
  4796. "_lscale": {
  4797. "__type__": "cc.Vec3",
  4798. "x": 1,
  4799. "y": 1,
  4800. "z": 1
  4801. },
  4802. "_mobility": 0,
  4803. "_layer": 33554432,
  4804. "_euler": {
  4805. "__type__": "cc.Vec3",
  4806. "x": 0,
  4807. "y": 0,
  4808. "z": 0
  4809. },
  4810. "_id": "44dEVnyUdGJ4oVkWzLyKm0"
  4811. },
  4812. {
  4813. "__type__": "cc.UITransform",
  4814. "_name": "",
  4815. "_objFlags": 0,
  4816. "node": {
  4817. "__id__": 148
  4818. },
  4819. "_enabled": true,
  4820. "__prefab": null,
  4821. "_contentSize": {
  4822. "__type__": "cc.Size",
  4823. "width": 139.04,
  4824. "height": 50.4
  4825. },
  4826. "_anchorPoint": {
  4827. "__type__": "cc.Vec2",
  4828. "x": 0.5,
  4829. "y": 0.5
  4830. },
  4831. "_id": "aeatAHONRFdq/5YremdGg5"
  4832. },
  4833. {
  4834. "__type__": "cc.Label",
  4835. "_name": "",
  4836. "_objFlags": 0,
  4837. "node": {
  4838. "__id__": 148
  4839. },
  4840. "_enabled": true,
  4841. "__prefab": null,
  4842. "_customMaterial": null,
  4843. "_srcBlendFactor": 2,
  4844. "_dstBlendFactor": 4,
  4845. "_color": {
  4846. "__type__": "cc.Color",
  4847. "r": 255,
  4848. "g": 255,
  4849. "b": 255,
  4850. "a": 255
  4851. },
  4852. "_string": "10000",
  4853. "_horizontalAlign": 0,
  4854. "_verticalAlign": 1,
  4855. "_actualFontSize": 50,
  4856. "_fontSize": 50,
  4857. "_fontFamily": "Arial",
  4858. "_lineHeight": 40,
  4859. "_overflow": 1,
  4860. "_enableWrapText": true,
  4861. "_font": null,
  4862. "_isSystemFontUsed": true,
  4863. "_spacingX": 0,
  4864. "_isItalic": false,
  4865. "_isBold": false,
  4866. "_isUnderline": false,
  4867. "_underlineHeight": 2,
  4868. "_cacheMode": 0,
  4869. "_id": "95xTzz/ptP9bi+VwziUVOX"
  4870. },
  4871. {
  4872. "__type__": "cc.UITransform",
  4873. "_name": "",
  4874. "_objFlags": 0,
  4875. "node": {
  4876. "__id__": 147
  4877. },
  4878. "_enabled": true,
  4879. "__prefab": null,
  4880. "_contentSize": {
  4881. "__type__": "cc.Size",
  4882. "width": 100,
  4883. "height": 88.2
  4884. },
  4885. "_anchorPoint": {
  4886. "__type__": "cc.Vec2",
  4887. "x": 0.5,
  4888. "y": 0.5
  4889. },
  4890. "_id": "c7XkN7nSxP7qcj/G58zTJq"
  4891. },
  4892. {
  4893. "__type__": "cc.Label",
  4894. "_name": "",
  4895. "_objFlags": 0,
  4896. "node": {
  4897. "__id__": 147
  4898. },
  4899. "_enabled": true,
  4900. "__prefab": null,
  4901. "_customMaterial": null,
  4902. "_srcBlendFactor": 2,
  4903. "_dstBlendFactor": 4,
  4904. "_color": {
  4905. "__type__": "cc.Color",
  4906. "r": 255,
  4907. "g": 255,
  4908. "b": 255,
  4909. "a": 255
  4910. },
  4911. "_string": "得分",
  4912. "_horizontalAlign": 1,
  4913. "_verticalAlign": 1,
  4914. "_actualFontSize": 50,
  4915. "_fontSize": 50,
  4916. "_fontFamily": "Arial",
  4917. "_lineHeight": 70,
  4918. "_overflow": 0,
  4919. "_enableWrapText": true,
  4920. "_font": null,
  4921. "_isSystemFontUsed": true,
  4922. "_spacingX": 0,
  4923. "_isItalic": false,
  4924. "_isBold": false,
  4925. "_isUnderline": false,
  4926. "_underlineHeight": 2,
  4927. "_cacheMode": 0,
  4928. "_id": "936102nIBEb6lfaFTWnF76"
  4929. },
  4930. {
  4931. "__type__": "cc.UITransform",
  4932. "_name": "",
  4933. "_objFlags": 0,
  4934. "node": {
  4935. "__id__": 146
  4936. },
  4937. "_enabled": true,
  4938. "__prefab": null,
  4939. "_contentSize": {
  4940. "__type__": "cc.Size",
  4941. "width": 339.88994082840236,
  4942. "height": 110
  4943. },
  4944. "_anchorPoint": {
  4945. "__type__": "cc.Vec2",
  4946. "x": 0.5,
  4947. "y": 0.5
  4948. },
  4949. "_id": "c1I0u8AgtKVYew7N+QBLGy"
  4950. },
  4951. {
  4952. "__type__": "cc.Sprite",
  4953. "_name": "",
  4954. "_objFlags": 0,
  4955. "node": {
  4956. "__id__": 146
  4957. },
  4958. "_enabled": true,
  4959. "__prefab": null,
  4960. "_customMaterial": null,
  4961. "_srcBlendFactor": 2,
  4962. "_dstBlendFactor": 4,
  4963. "_color": {
  4964. "__type__": "cc.Color",
  4965. "r": 255,
  4966. "g": 255,
  4967. "b": 255,
  4968. "a": 255
  4969. },
  4970. "_spriteFrame": {
  4971. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  4972. "__expectedType__": "cc.SpriteFrame"
  4973. },
  4974. "_type": 0,
  4975. "_fillType": 0,
  4976. "_sizeMode": 0,
  4977. "_fillCenter": {
  4978. "__type__": "cc.Vec2",
  4979. "x": 0,
  4980. "y": 0
  4981. },
  4982. "_fillStart": 0,
  4983. "_fillRange": 0,
  4984. "_isTrimmedMode": true,
  4985. "_useGrayscale": false,
  4986. "_atlas": null,
  4987. "_id": "103k0ntThJELcV3+IfPrvW"
  4988. },
  4989. {
  4990. "__type__": "cc.Widget",
  4991. "_name": "",
  4992. "_objFlags": 0,
  4993. "node": {
  4994. "__id__": 146
  4995. },
  4996. "_enabled": true,
  4997. "__prefab": null,
  4998. "_alignFlags": 17,
  4999. "_target": null,
  5000. "_left": 0,
  5001. "_right": 0,
  5002. "_top": 50,
  5003. "_bottom": 0,
  5004. "_horizontalCenter": -400,
  5005. "_verticalCenter": 0,
  5006. "_isAbsLeft": true,
  5007. "_isAbsRight": true,
  5008. "_isAbsTop": true,
  5009. "_isAbsBottom": true,
  5010. "_isAbsHorizontalCenter": true,
  5011. "_isAbsVerticalCenter": true,
  5012. "_originalWidth": 0,
  5013. "_originalHeight": 0,
  5014. "_alignMode": 2,
  5015. "_lockFlags": 0,
  5016. "_id": "82S9HjzjlAJ7ekcTz465sF"
  5017. },
  5018. {
  5019. "__type__": "cc.Node",
  5020. "_name": "TimeBg-001",
  5021. "_objFlags": 0,
  5022. "_parent": {
  5023. "__id__": 145
  5024. },
  5025. "_children": [
  5026. {
  5027. "__id__": 157
  5028. }
  5029. ],
  5030. "_active": true,
  5031. "_components": [
  5032. {
  5033. "__id__": 163
  5034. },
  5035. {
  5036. "__id__": 164
  5037. },
  5038. {
  5039. "__id__": 165
  5040. }
  5041. ],
  5042. "_prefab": null,
  5043. "_lpos": {
  5044. "__type__": "cc.Vec3",
  5045. "x": 0,
  5046. "y": 593.5,
  5047. "z": 0
  5048. },
  5049. "_lrot": {
  5050. "__type__": "cc.Quat",
  5051. "x": 0,
  5052. "y": 0,
  5053. "z": 0,
  5054. "w": 1
  5055. },
  5056. "_lscale": {
  5057. "__type__": "cc.Vec3",
  5058. "x": 1,
  5059. "y": 1,
  5060. "z": 1
  5061. },
  5062. "_mobility": 0,
  5063. "_layer": 33554432,
  5064. "_euler": {
  5065. "__type__": "cc.Vec3",
  5066. "x": 0,
  5067. "y": 0,
  5068. "z": 0
  5069. },
  5070. "_id": "72E4endaFA9ZzhffwONnhR"
  5071. },
  5072. {
  5073. "__type__": "cc.Node",
  5074. "_name": "GameTime",
  5075. "_objFlags": 0,
  5076. "_parent": {
  5077. "__id__": 156
  5078. },
  5079. "_children": [
  5080. {
  5081. "__id__": 158
  5082. }
  5083. ],
  5084. "_active": true,
  5085. "_components": [
  5086. {
  5087. "__id__": 161
  5088. },
  5089. {
  5090. "__id__": 162
  5091. }
  5092. ],
  5093. "_prefab": null,
  5094. "_lpos": {
  5095. "__type__": "cc.Vec3",
  5096. "x": 5.195,
  5097. "y": 60.444,
  5098. "z": 0
  5099. },
  5100. "_lrot": {
  5101. "__type__": "cc.Quat",
  5102. "x": 0,
  5103. "y": 0,
  5104. "z": 0,
  5105. "w": 1
  5106. },
  5107. "_lscale": {
  5108. "__type__": "cc.Vec3",
  5109. "x": 1,
  5110. "y": 1,
  5111. "z": 1
  5112. },
  5113. "_mobility": 0,
  5114. "_layer": 33554432,
  5115. "_euler": {
  5116. "__type__": "cc.Vec3",
  5117. "x": 0,
  5118. "y": 0,
  5119. "z": 0
  5120. },
  5121. "_id": "e6x0Gc+TlDGIZXI33TEJb6"
  5122. },
  5123. {
  5124. "__type__": "cc.Node",
  5125. "_name": "TimeLabel",
  5126. "_objFlags": 0,
  5127. "_parent": {
  5128. "__id__": 157
  5129. },
  5130. "_children": [],
  5131. "_active": true,
  5132. "_components": [
  5133. {
  5134. "__id__": 159
  5135. },
  5136. {
  5137. "__id__": 160
  5138. }
  5139. ],
  5140. "_prefab": null,
  5141. "_lpos": {
  5142. "__type__": "cc.Vec3",
  5143. "x": 1.505,
  5144. "y": -57.186,
  5145. "z": 0
  5146. },
  5147. "_lrot": {
  5148. "__type__": "cc.Quat",
  5149. "x": 0,
  5150. "y": 0,
  5151. "z": 0,
  5152. "w": 1
  5153. },
  5154. "_lscale": {
  5155. "__type__": "cc.Vec3",
  5156. "x": 1,
  5157. "y": 1,
  5158. "z": 1
  5159. },
  5160. "_mobility": 0,
  5161. "_layer": 33554432,
  5162. "_euler": {
  5163. "__type__": "cc.Vec3",
  5164. "x": 0,
  5165. "y": 0,
  5166. "z": 0
  5167. },
  5168. "_id": "62RcJSw15H6JpsHUHKtNaH"
  5169. },
  5170. {
  5171. "__type__": "cc.UITransform",
  5172. "_name": "",
  5173. "_objFlags": 0,
  5174. "node": {
  5175. "__id__": 158
  5176. },
  5177. "_enabled": true,
  5178. "__prefab": null,
  5179. "_contentSize": {
  5180. "__type__": "cc.Size",
  5181. "width": 170,
  5182. "height": 50.4
  5183. },
  5184. "_anchorPoint": {
  5185. "__type__": "cc.Vec2",
  5186. "x": 0.5,
  5187. "y": 0.5
  5188. },
  5189. "_id": "7cZarCy31EtKl7ASpygJEo"
  5190. },
  5191. {
  5192. "__type__": "cc.Label",
  5193. "_name": "",
  5194. "_objFlags": 0,
  5195. "node": {
  5196. "__id__": 158
  5197. },
  5198. "_enabled": true,
  5199. "__prefab": null,
  5200. "_customMaterial": null,
  5201. "_srcBlendFactor": 2,
  5202. "_dstBlendFactor": 4,
  5203. "_color": {
  5204. "__type__": "cc.Color",
  5205. "r": 255,
  5206. "g": 255,
  5207. "b": 255,
  5208. "a": 255
  5209. },
  5210. "_string": "2:00",
  5211. "_horizontalAlign": 1,
  5212. "_verticalAlign": 1,
  5213. "_actualFontSize": 55,
  5214. "_fontSize": 55,
  5215. "_fontFamily": "Arial",
  5216. "_lineHeight": 60,
  5217. "_overflow": 1,
  5218. "_enableWrapText": true,
  5219. "_font": null,
  5220. "_isSystemFontUsed": true,
  5221. "_spacingX": 0,
  5222. "_isItalic": false,
  5223. "_isBold": false,
  5224. "_isUnderline": false,
  5225. "_underlineHeight": 2,
  5226. "_cacheMode": 0,
  5227. "_id": "dcVz2Ao/lCG60RTah3WKwS"
  5228. },
  5229. {
  5230. "__type__": "cc.UITransform",
  5231. "_name": "",
  5232. "_objFlags": 0,
  5233. "node": {
  5234. "__id__": 157
  5235. },
  5236. "_enabled": true,
  5237. "__prefab": null,
  5238. "_contentSize": {
  5239. "__type__": "cc.Size",
  5240. "width": 170,
  5241. "height": 50.4
  5242. },
  5243. "_anchorPoint": {
  5244. "__type__": "cc.Vec2",
  5245. "x": 0.5,
  5246. "y": 0.5
  5247. },
  5248. "_id": "d3XSdYtyBCjr130tilMp31"
  5249. },
  5250. {
  5251. "__type__": "cc.Label",
  5252. "_name": "",
  5253. "_objFlags": 0,
  5254. "node": {
  5255. "__id__": 157
  5256. },
  5257. "_enabled": false,
  5258. "__prefab": null,
  5259. "_customMaterial": null,
  5260. "_srcBlendFactor": 2,
  5261. "_dstBlendFactor": 4,
  5262. "_color": {
  5263. "__type__": "cc.Color",
  5264. "r": 169,
  5265. "g": 74,
  5266. "b": 9,
  5267. "a": 255
  5268. },
  5269. "_string": "时间",
  5270. "_horizontalAlign": 1,
  5271. "_verticalAlign": 1,
  5272. "_actualFontSize": 50,
  5273. "_fontSize": 50,
  5274. "_fontFamily": "Arial",
  5275. "_lineHeight": 60,
  5276. "_overflow": 1,
  5277. "_enableWrapText": true,
  5278. "_font": null,
  5279. "_isSystemFontUsed": true,
  5280. "_spacingX": 0,
  5281. "_isItalic": false,
  5282. "_isBold": true,
  5283. "_isUnderline": false,
  5284. "_underlineHeight": 2,
  5285. "_cacheMode": 0,
  5286. "_id": "f2akcURRFEcq0N0Nl8yDJr"
  5287. },
  5288. {
  5289. "__type__": "cc.UITransform",
  5290. "_name": "",
  5291. "_objFlags": 0,
  5292. "node": {
  5293. "__id__": 156
  5294. },
  5295. "_enabled": true,
  5296. "__prefab": null,
  5297. "_contentSize": {
  5298. "__type__": "cc.Size",
  5299. "width": 271.13372781065095,
  5300. "height": 110
  5301. },
  5302. "_anchorPoint": {
  5303. "__type__": "cc.Vec2",
  5304. "x": 0.5,
  5305. "y": 0.5
  5306. },
  5307. "_id": "c3lf7M7k9KmZ+nSNUWgAWg"
  5308. },
  5309. {
  5310. "__type__": "cc.Sprite",
  5311. "_name": "",
  5312. "_objFlags": 0,
  5313. "node": {
  5314. "__id__": 156
  5315. },
  5316. "_enabled": true,
  5317. "__prefab": null,
  5318. "_customMaterial": null,
  5319. "_srcBlendFactor": 2,
  5320. "_dstBlendFactor": 4,
  5321. "_color": {
  5322. "__type__": "cc.Color",
  5323. "r": 255,
  5324. "g": 255,
  5325. "b": 255,
  5326. "a": 255
  5327. },
  5328. "_spriteFrame": {
  5329. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  5330. "__expectedType__": "cc.SpriteFrame"
  5331. },
  5332. "_type": 0,
  5333. "_fillType": 0,
  5334. "_sizeMode": 0,
  5335. "_fillCenter": {
  5336. "__type__": "cc.Vec2",
  5337. "x": 0,
  5338. "y": 0
  5339. },
  5340. "_fillStart": 0,
  5341. "_fillRange": 0,
  5342. "_isTrimmedMode": true,
  5343. "_useGrayscale": false,
  5344. "_atlas": null,
  5345. "_id": "00So5QoPJNbqg38R3GIz53"
  5346. },
  5347. {
  5348. "__type__": "cc.Widget",
  5349. "_name": "",
  5350. "_objFlags": 0,
  5351. "node": {
  5352. "__id__": 156
  5353. },
  5354. "_enabled": true,
  5355. "__prefab": null,
  5356. "_alignFlags": 17,
  5357. "_target": null,
  5358. "_left": 0,
  5359. "_right": 0,
  5360. "_top": 50,
  5361. "_bottom": 0,
  5362. "_horizontalCenter": 0,
  5363. "_verticalCenter": 0,
  5364. "_isAbsLeft": true,
  5365. "_isAbsRight": true,
  5366. "_isAbsTop": true,
  5367. "_isAbsBottom": true,
  5368. "_isAbsHorizontalCenter": true,
  5369. "_isAbsVerticalCenter": true,
  5370. "_originalWidth": 0,
  5371. "_originalHeight": 0,
  5372. "_alignMode": 2,
  5373. "_lockFlags": 0,
  5374. "_id": "eczF6GYpFEorT4KZPVuMMJ"
  5375. },
  5376. {
  5377. "__type__": "cc.Node",
  5378. "_name": "LevelBg-001",
  5379. "_objFlags": 0,
  5380. "_parent": {
  5381. "__id__": 145
  5382. },
  5383. "_children": [
  5384. {
  5385. "__id__": 167
  5386. }
  5387. ],
  5388. "_active": true,
  5389. "_components": [
  5390. {
  5391. "__id__": 173
  5392. },
  5393. {
  5394. "__id__": 174
  5395. },
  5396. {
  5397. "__id__": 175
  5398. }
  5399. ],
  5400. "_prefab": null,
  5401. "_lpos": {
  5402. "__type__": "cc.Vec3",
  5403. "x": 400,
  5404. "y": 593.5,
  5405. "z": 0
  5406. },
  5407. "_lrot": {
  5408. "__type__": "cc.Quat",
  5409. "x": 0,
  5410. "y": 0,
  5411. "z": 0,
  5412. "w": 1
  5413. },
  5414. "_lscale": {
  5415. "__type__": "cc.Vec3",
  5416. "x": 1,
  5417. "y": 1,
  5418. "z": 1
  5419. },
  5420. "_mobility": 0,
  5421. "_layer": 33554432,
  5422. "_euler": {
  5423. "__type__": "cc.Vec3",
  5424. "x": 0,
  5425. "y": 0,
  5426. "z": 0
  5427. },
  5428. "_id": "76NmQjlTVIjYB7iIXcw271"
  5429. },
  5430. {
  5431. "__type__": "cc.Node",
  5432. "_name": "level",
  5433. "_objFlags": 0,
  5434. "_parent": {
  5435. "__id__": 166
  5436. },
  5437. "_children": [
  5438. {
  5439. "__id__": 168
  5440. }
  5441. ],
  5442. "_active": true,
  5443. "_components": [
  5444. {
  5445. "__id__": 171
  5446. },
  5447. {
  5448. "__id__": 172
  5449. }
  5450. ],
  5451. "_prefab": null,
  5452. "_lpos": {
  5453. "__type__": "cc.Vec3",
  5454. "x": -31.36299999999983,
  5455. "y": -2.5679999999999836,
  5456. "z": 0
  5457. },
  5458. "_lrot": {
  5459. "__type__": "cc.Quat",
  5460. "x": 0,
  5461. "y": 0,
  5462. "z": 0,
  5463. "w": 1
  5464. },
  5465. "_lscale": {
  5466. "__type__": "cc.Vec3",
  5467. "x": 1,
  5468. "y": 1,
  5469. "z": 1
  5470. },
  5471. "_mobility": 0,
  5472. "_layer": 33554432,
  5473. "_euler": {
  5474. "__type__": "cc.Vec3",
  5475. "x": 0,
  5476. "y": 0,
  5477. "z": 0
  5478. },
  5479. "_id": "eaH/7VoTNMX6EQSZY5GHiA"
  5480. },
  5481. {
  5482. "__type__": "cc.Node",
  5483. "_name": "levlLabel",
  5484. "_objFlags": 0,
  5485. "_parent": {
  5486. "__id__": 167
  5487. },
  5488. "_children": [],
  5489. "_active": true,
  5490. "_components": [
  5491. {
  5492. "__id__": 169
  5493. },
  5494. {
  5495. "__id__": 170
  5496. }
  5497. ],
  5498. "_prefab": null,
  5499. "_lpos": {
  5500. "__type__": "cc.Vec3",
  5501. "x": 29.897499999999997,
  5502. "y": 0,
  5503. "z": 0
  5504. },
  5505. "_lrot": {
  5506. "__type__": "cc.Quat",
  5507. "x": 0,
  5508. "y": 0,
  5509. "z": 0,
  5510. "w": 1
  5511. },
  5512. "_lscale": {
  5513. "__type__": "cc.Vec3",
  5514. "x": 1,
  5515. "y": 1,
  5516. "z": 1
  5517. },
  5518. "_mobility": 0,
  5519. "_layer": 33554432,
  5520. "_euler": {
  5521. "__type__": "cc.Vec3",
  5522. "x": 0,
  5523. "y": 0,
  5524. "z": 0
  5525. },
  5526. "_id": "b7kyQaqnFPtoUwJ/CfFPdI"
  5527. },
  5528. {
  5529. "__type__": "cc.UITransform",
  5530. "_name": "",
  5531. "_objFlags": 0,
  5532. "node": {
  5533. "__id__": 168
  5534. },
  5535. "_enabled": true,
  5536. "__prefab": null,
  5537. "_contentSize": {
  5538. "__type__": "cc.Size",
  5539. "width": 264.409,
  5540. "height": 50.4
  5541. },
  5542. "_anchorPoint": {
  5543. "__type__": "cc.Vec2",
  5544. "x": 0.5,
  5545. "y": 0.5
  5546. },
  5547. "_id": "0aujCo8/pPgZo35FlpMbkz"
  5548. },
  5549. {
  5550. "__type__": "cc.Label",
  5551. "_name": "",
  5552. "_objFlags": 0,
  5553. "node": {
  5554. "__id__": 168
  5555. },
  5556. "_enabled": true,
  5557. "__prefab": null,
  5558. "_customMaterial": null,
  5559. "_srcBlendFactor": 2,
  5560. "_dstBlendFactor": 4,
  5561. "_color": {
  5562. "__type__": "cc.Color",
  5563. "r": 255,
  5564. "g": 255,
  5565. "b": 255,
  5566. "a": 255
  5567. },
  5568. "_string": "第1关",
  5569. "_horizontalAlign": 1,
  5570. "_verticalAlign": 1,
  5571. "_actualFontSize": 55,
  5572. "_fontSize": 55,
  5573. "_fontFamily": "Arial",
  5574. "_lineHeight": 60,
  5575. "_overflow": 1,
  5576. "_enableWrapText": true,
  5577. "_font": null,
  5578. "_isSystemFontUsed": true,
  5579. "_spacingX": 0,
  5580. "_isItalic": false,
  5581. "_isBold": false,
  5582. "_isUnderline": false,
  5583. "_underlineHeight": 2,
  5584. "_cacheMode": 0,
  5585. "_id": "f2HCMp0+VB9bgTrUQGTaQN"
  5586. },
  5587. {
  5588. "__type__": "cc.UITransform",
  5589. "_name": "",
  5590. "_objFlags": 0,
  5591. "node": {
  5592. "__id__": 167
  5593. },
  5594. "_enabled": true,
  5595. "__prefab": null,
  5596. "_contentSize": {
  5597. "__type__": "cc.Size",
  5598. "width": 170,
  5599. "height": 50.4
  5600. },
  5601. "_anchorPoint": {
  5602. "__type__": "cc.Vec2",
  5603. "x": 0.5,
  5604. "y": 0.5
  5605. },
  5606. "_id": "749njg1oZE7KXTB5Awl4KI"
  5607. },
  5608. {
  5609. "__type__": "cc.Label",
  5610. "_name": "",
  5611. "_objFlags": 0,
  5612. "node": {
  5613. "__id__": 167
  5614. },
  5615. "_enabled": true,
  5616. "__prefab": null,
  5617. "_customMaterial": null,
  5618. "_srcBlendFactor": 2,
  5619. "_dstBlendFactor": 4,
  5620. "_color": {
  5621. "__type__": "cc.Color",
  5622. "r": 169,
  5623. "g": 74,
  5624. "b": 9,
  5625. "a": 255
  5626. },
  5627. "_string": "",
  5628. "_horizontalAlign": 1,
  5629. "_verticalAlign": 1,
  5630. "_actualFontSize": 50,
  5631. "_fontSize": 50,
  5632. "_fontFamily": "Arial",
  5633. "_lineHeight": 60,
  5634. "_overflow": 1,
  5635. "_enableWrapText": true,
  5636. "_font": null,
  5637. "_isSystemFontUsed": true,
  5638. "_spacingX": 0,
  5639. "_isItalic": false,
  5640. "_isBold": false,
  5641. "_isUnderline": false,
  5642. "_underlineHeight": 2,
  5643. "_cacheMode": 0,
  5644. "_id": "a7O87PTw9LOrHXoGKYQXEs"
  5645. },
  5646. {
  5647. "__type__": "cc.UITransform",
  5648. "_name": "",
  5649. "_objFlags": 0,
  5650. "node": {
  5651. "__id__": 166
  5652. },
  5653. "_enabled": true,
  5654. "__prefab": null,
  5655. "_contentSize": {
  5656. "__type__": "cc.Size",
  5657. "width": 308.7455621301775,
  5658. "height": 110
  5659. },
  5660. "_anchorPoint": {
  5661. "__type__": "cc.Vec2",
  5662. "x": 0.5,
  5663. "y": 0.5
  5664. },
  5665. "_id": "59hMJgSaJCu6QjN2y6Wkiu"
  5666. },
  5667. {
  5668. "__type__": "cc.Sprite",
  5669. "_name": "",
  5670. "_objFlags": 0,
  5671. "node": {
  5672. "__id__": 166
  5673. },
  5674. "_enabled": true,
  5675. "__prefab": null,
  5676. "_customMaterial": null,
  5677. "_srcBlendFactor": 2,
  5678. "_dstBlendFactor": 4,
  5679. "_color": {
  5680. "__type__": "cc.Color",
  5681. "r": 255,
  5682. "g": 255,
  5683. "b": 255,
  5684. "a": 255
  5685. },
  5686. "_spriteFrame": {
  5687. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  5688. "__expectedType__": "cc.SpriteFrame"
  5689. },
  5690. "_type": 0,
  5691. "_fillType": 0,
  5692. "_sizeMode": 0,
  5693. "_fillCenter": {
  5694. "__type__": "cc.Vec2",
  5695. "x": 0,
  5696. "y": 0
  5697. },
  5698. "_fillStart": 0,
  5699. "_fillRange": 0,
  5700. "_isTrimmedMode": true,
  5701. "_useGrayscale": false,
  5702. "_atlas": null,
  5703. "_id": "86rVTpbNlC77rQsFx4OBJl"
  5704. },
  5705. {
  5706. "__type__": "cc.Widget",
  5707. "_name": "",
  5708. "_objFlags": 0,
  5709. "node": {
  5710. "__id__": 166
  5711. },
  5712. "_enabled": true,
  5713. "__prefab": null,
  5714. "_alignFlags": 17,
  5715. "_target": null,
  5716. "_left": 0,
  5717. "_right": 0,
  5718. "_top": 50,
  5719. "_bottom": 0,
  5720. "_horizontalCenter": 400,
  5721. "_verticalCenter": 0,
  5722. "_isAbsLeft": true,
  5723. "_isAbsRight": true,
  5724. "_isAbsTop": true,
  5725. "_isAbsBottom": true,
  5726. "_isAbsHorizontalCenter": true,
  5727. "_isAbsVerticalCenter": true,
  5728. "_originalWidth": 0,
  5729. "_originalHeight": 0,
  5730. "_alignMode": 2,
  5731. "_lockFlags": 0,
  5732. "_id": "71/b5xVk1DTZRwmqUNPgoJ"
  5733. },
  5734. {
  5735. "__type__": "cc.UITransform",
  5736. "_name": "",
  5737. "_objFlags": 0,
  5738. "node": {
  5739. "__id__": 145
  5740. },
  5741. "_enabled": true,
  5742. "__prefab": null,
  5743. "_contentSize": {
  5744. "__type__": "cc.Size",
  5745. "width": 2000,
  5746. "height": 1397
  5747. },
  5748. "_anchorPoint": {
  5749. "__type__": "cc.Vec2",
  5750. "x": 0.5,
  5751. "y": 0.5
  5752. },
  5753. "_id": "83x9pd7hlLH7vvDTBc5FsC"
  5754. },
  5755. {
  5756. "__type__": "cc.Widget",
  5757. "_name": "",
  5758. "_objFlags": 0,
  5759. "node": {
  5760. "__id__": 145
  5761. },
  5762. "_enabled": true,
  5763. "__prefab": null,
  5764. "_alignFlags": 45,
  5765. "_target": null,
  5766. "_left": 0,
  5767. "_right": 0,
  5768. "_top": 0,
  5769. "_bottom": 0,
  5770. "_horizontalCenter": 0,
  5771. "_verticalCenter": 0,
  5772. "_isAbsLeft": true,
  5773. "_isAbsRight": true,
  5774. "_isAbsTop": true,
  5775. "_isAbsBottom": true,
  5776. "_isAbsHorizontalCenter": true,
  5777. "_isAbsVerticalCenter": true,
  5778. "_originalWidth": 100,
  5779. "_originalHeight": 100,
  5780. "_alignMode": 2,
  5781. "_lockFlags": 0,
  5782. "_id": "26/iZWKgNPZrMOO9C/x9Si"
  5783. },
  5784. {
  5785. "__type__": "cc.UITransform",
  5786. "_name": "",
  5787. "_objFlags": 0,
  5788. "node": {
  5789. "__id__": 6
  5790. },
  5791. "_enabled": true,
  5792. "__prefab": null,
  5793. "_contentSize": {
  5794. "__type__": "cc.Size",
  5795. "width": 2000,
  5796. "height": 1397
  5797. },
  5798. "_anchorPoint": {
  5799. "__type__": "cc.Vec2",
  5800. "x": 0.5,
  5801. "y": 0.5
  5802. },
  5803. "_id": "6991+O4+ZKkruBhDfLTiNc"
  5804. },
  5805. {
  5806. "__type__": "cc.Sprite",
  5807. "_name": "",
  5808. "_objFlags": 0,
  5809. "node": {
  5810. "__id__": 6
  5811. },
  5812. "_enabled": false,
  5813. "__prefab": null,
  5814. "_customMaterial": null,
  5815. "_srcBlendFactor": 2,
  5816. "_dstBlendFactor": 4,
  5817. "_color": {
  5818. "__type__": "cc.Color",
  5819. "r": 255,
  5820. "g": 255,
  5821. "b": 255,
  5822. "a": 255
  5823. },
  5824. "_spriteFrame": {
  5825. "__uuid__": "eaacad0b-56df-456e-9f47-a6e593993e0f@f9941",
  5826. "__expectedType__": "cc.SpriteFrame"
  5827. },
  5828. "_type": 0,
  5829. "_fillType": 0,
  5830. "_sizeMode": 0,
  5831. "_fillCenter": {
  5832. "__type__": "cc.Vec2",
  5833. "x": 0,
  5834. "y": 0
  5835. },
  5836. "_fillStart": 0,
  5837. "_fillRange": 0,
  5838. "_isTrimmedMode": true,
  5839. "_useGrayscale": false,
  5840. "_atlas": null,
  5841. "_id": "2dSpfW0JpErJgEIBvDB/oC"
  5842. },
  5843. {
  5844. "__type__": "cc.Widget",
  5845. "_name": "",
  5846. "_objFlags": 0,
  5847. "node": {
  5848. "__id__": 6
  5849. },
  5850. "_enabled": true,
  5851. "__prefab": null,
  5852. "_alignFlags": 45,
  5853. "_target": {
  5854. "__id__": 7
  5855. },
  5856. "_left": 0,
  5857. "_right": 0,
  5858. "_top": 0,
  5859. "_bottom": 0,
  5860. "_horizontalCenter": 0,
  5861. "_verticalCenter": 0,
  5862. "_isAbsLeft": true,
  5863. "_isAbsRight": true,
  5864. "_isAbsTop": true,
  5865. "_isAbsBottom": true,
  5866. "_isAbsHorizontalCenter": true,
  5867. "_isAbsVerticalCenter": true,
  5868. "_originalWidth": 2388,
  5869. "_originalHeight": 1431,
  5870. "_alignMode": 2,
  5871. "_lockFlags": 0,
  5872. "_id": "16YCS9atpO8L8ChEWZIG3K"
  5873. },
  5874. {
  5875. "__type__": "cc.Node",
  5876. "_name": "AudioManager",
  5877. "_objFlags": 0,
  5878. "_parent": {
  5879. "__id__": 2
  5880. },
  5881. "_children": [],
  5882. "_active": true,
  5883. "_components": [
  5884. {
  5885. "__id__": 182
  5886. },
  5887. {
  5888. "__id__": 183
  5889. }
  5890. ],
  5891. "_prefab": null,
  5892. "_lpos": {
  5893. "__type__": "cc.Vec3",
  5894. "x": 0,
  5895. "y": 0,
  5896. "z": 0
  5897. },
  5898. "_lrot": {
  5899. "__type__": "cc.Quat",
  5900. "x": 0,
  5901. "y": 0,
  5902. "z": 0,
  5903. "w": 1
  5904. },
  5905. "_lscale": {
  5906. "__type__": "cc.Vec3",
  5907. "x": 1,
  5908. "y": 1,
  5909. "z": 1
  5910. },
  5911. "_mobility": 0,
  5912. "_layer": 1073741824,
  5913. "_euler": {
  5914. "__type__": "cc.Vec3",
  5915. "x": 0,
  5916. "y": 0,
  5917. "z": 0
  5918. },
  5919. "_id": "60FjbG8qtFfZ539qEMd+1/"
  5920. },
  5921. {
  5922. "__type__": "cc.AudioSource",
  5923. "_name": "",
  5924. "_objFlags": 0,
  5925. "node": {
  5926. "__id__": 181
  5927. },
  5928. "_enabled": true,
  5929. "__prefab": null,
  5930. "_clip": {
  5931. "__uuid__": "a7ca1c15-8e05-4729-a931-6ec17254e8e7",
  5932. "__expectedType__": "cc.AudioClip"
  5933. },
  5934. "_loop": true,
  5935. "_playOnAwake": false,
  5936. "_volume": 0.5,
  5937. "_id": "eeGhp23mxGxpqwDPT1CJun"
  5938. },
  5939. {
  5940. "__type__": "ddb2bQZ+Y1HFKtzdgtAjjWR",
  5941. "_name": "",
  5942. "_objFlags": 0,
  5943. "node": {
  5944. "__id__": 181
  5945. },
  5946. "_enabled": true,
  5947. "__prefab": null,
  5948. "_id": "49WPaAsadKsKoMmKQLQhN1"
  5949. },
  5950. {
  5951. "__type__": "cc.Node",
  5952. "_name": "LevelManager",
  5953. "_objFlags": 0,
  5954. "_parent": {
  5955. "__id__": 2
  5956. },
  5957. "_children": [],
  5958. "_active": true,
  5959. "_components": [
  5960. {
  5961. "__id__": 185
  5962. }
  5963. ],
  5964. "_prefab": null,
  5965. "_lpos": {
  5966. "__type__": "cc.Vec3",
  5967. "x": 0,
  5968. "y": 0,
  5969. "z": 0
  5970. },
  5971. "_lrot": {
  5972. "__type__": "cc.Quat",
  5973. "x": 0,
  5974. "y": 0,
  5975. "z": 0,
  5976. "w": 1
  5977. },
  5978. "_lscale": {
  5979. "__type__": "cc.Vec3",
  5980. "x": 1,
  5981. "y": 1,
  5982. "z": 1
  5983. },
  5984. "_mobility": 0,
  5985. "_layer": 1073741824,
  5986. "_euler": {
  5987. "__type__": "cc.Vec3",
  5988. "x": 0,
  5989. "y": 0,
  5990. "z": 0
  5991. },
  5992. "_id": "ae7Hx27zVByrbunwO5wAeH"
  5993. },
  5994. {
  5995. "__type__": "47e67Z+VixO4pNkH3a12P3G",
  5996. "_name": "",
  5997. "_objFlags": 0,
  5998. "node": {
  5999. "__id__": 184
  6000. },
  6001. "_enabled": true,
  6002. "__prefab": null,
  6003. "levelDataJson": {
  6004. "__uuid__": "e418ad72-966e-4c18-aeb5-6ac1ea28ec2d",
  6005. "__expectedType__": "cc.JsonAsset"
  6006. },
  6007. "_id": "84G/NCnS1DbLBWBkNkhAf3"
  6008. },
  6009. {
  6010. "__type__": "cc.PrefabInfo",
  6011. "root": null,
  6012. "asset": null,
  6013. "fileId": "80697901-e8f5-4759-b18f-a95692ce9cd2",
  6014. "instance": null,
  6015. "targetOverrides": null,
  6016. "nestedPrefabInstanceRoots": [
  6017. {
  6018. "__id__": 133
  6019. }
  6020. ]
  6021. },
  6022. {
  6023. "__type__": "cc.SceneGlobals",
  6024. "ambient": {
  6025. "__id__": 188
  6026. },
  6027. "shadows": {
  6028. "__id__": 189
  6029. },
  6030. "_skybox": {
  6031. "__id__": 190
  6032. },
  6033. "fog": {
  6034. "__id__": 191
  6035. },
  6036. "octree": {
  6037. "__id__": 192
  6038. },
  6039. "lightProbeInfo": {
  6040. "__id__": 193
  6041. },
  6042. "bakedWithStationaryMainLight": false,
  6043. "bakedWithHighpLightmap": false
  6044. },
  6045. {
  6046. "__type__": "cc.AmbientInfo",
  6047. "_skyColorHDR": {
  6048. "__type__": "cc.Vec4",
  6049. "x": 0,
  6050. "y": 0,
  6051. "z": 0,
  6052. "w": 0.520833125
  6053. },
  6054. "_skyColor": {
  6055. "__type__": "cc.Vec4",
  6056. "x": 0,
  6057. "y": 0,
  6058. "z": 0,
  6059. "w": 0.520833125
  6060. },
  6061. "_skyIllumHDR": 20000,
  6062. "_skyIllum": 20000,
  6063. "_groundAlbedoHDR": {
  6064. "__type__": "cc.Vec4",
  6065. "x": 0,
  6066. "y": 0,
  6067. "z": 0,
  6068. "w": 0
  6069. },
  6070. "_groundAlbedo": {
  6071. "__type__": "cc.Vec4",
  6072. "x": 0,
  6073. "y": 0,
  6074. "z": 0,
  6075. "w": 0
  6076. },
  6077. "_skyColorLDR": {
  6078. "__type__": "cc.Vec4",
  6079. "x": 0.2,
  6080. "y": 0.5,
  6081. "z": 0.8,
  6082. "w": 1
  6083. },
  6084. "_skyIllumLDR": 20000,
  6085. "_groundAlbedoLDR": {
  6086. "__type__": "cc.Vec4",
  6087. "x": 0.2,
  6088. "y": 0.2,
  6089. "z": 0.2,
  6090. "w": 1
  6091. }
  6092. },
  6093. {
  6094. "__type__": "cc.ShadowsInfo",
  6095. "_enabled": false,
  6096. "_type": 0,
  6097. "_normal": {
  6098. "__type__": "cc.Vec3",
  6099. "x": 0,
  6100. "y": 1,
  6101. "z": 0
  6102. },
  6103. "_distance": 0,
  6104. "_shadowColor": {
  6105. "__type__": "cc.Color",
  6106. "r": 76,
  6107. "g": 76,
  6108. "b": 76,
  6109. "a": 255
  6110. },
  6111. "_maxReceived": 4,
  6112. "_size": {
  6113. "__type__": "cc.Vec2",
  6114. "x": 512,
  6115. "y": 512
  6116. }
  6117. },
  6118. {
  6119. "__type__": "cc.SkyboxInfo",
  6120. "_envLightingType": 0,
  6121. "_envmapHDR": null,
  6122. "_envmap": null,
  6123. "_envmapLDR": null,
  6124. "_diffuseMapHDR": null,
  6125. "_diffuseMapLDR": null,
  6126. "_enabled": false,
  6127. "_useHDR": true,
  6128. "_editableMaterial": null,
  6129. "_reflectionHDR": null,
  6130. "_reflectionLDR": null,
  6131. "_rotationAngle": 0
  6132. },
  6133. {
  6134. "__type__": "cc.FogInfo",
  6135. "_type": 0,
  6136. "_fogColor": {
  6137. "__type__": "cc.Color",
  6138. "r": 200,
  6139. "g": 200,
  6140. "b": 200,
  6141. "a": 255
  6142. },
  6143. "_enabled": false,
  6144. "_fogDensity": 0.3,
  6145. "_fogStart": 0.5,
  6146. "_fogEnd": 300,
  6147. "_fogAtten": 5,
  6148. "_fogTop": 1.5,
  6149. "_fogRange": 1.2,
  6150. "_accurate": false
  6151. },
  6152. {
  6153. "__type__": "cc.OctreeInfo",
  6154. "_enabled": false,
  6155. "_minPos": {
  6156. "__type__": "cc.Vec3",
  6157. "x": -1024,
  6158. "y": -1024,
  6159. "z": -1024
  6160. },
  6161. "_maxPos": {
  6162. "__type__": "cc.Vec3",
  6163. "x": 1024,
  6164. "y": 1024,
  6165. "z": 1024
  6166. },
  6167. "_depth": 8
  6168. },
  6169. {
  6170. "__type__": "cc.LightProbeInfo",
  6171. "_giScale": 1,
  6172. "_giSamples": 1024,
  6173. "_bounces": 2,
  6174. "_reduceRinging": 0,
  6175. "_showProbe": true,
  6176. "_showWireframe": true,
  6177. "_showConvex": false,
  6178. "_data": null
  6179. }
  6180. ]