game.scene 125 KB

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