game.scene 106 KB

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