game.scene 127 KB

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