game.scene 145 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225
  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__": 213
  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__": 214
  59. },
  60. "_id": "80697901-e8f5-4759-b18f-a95692ce9cd2"
  61. },
  62. {
  63. "__type__": "cc.Node",
  64. "_name": "Manager",
  65. "_objFlags": 0,
  66. "_parent": {
  67. "__id__": 1
  68. },
  69. "_children": [
  70. {
  71. "__id__": 3
  72. },
  73. {
  74. "__id__": 208
  75. },
  76. {
  77. "__id__": 211
  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__": 177
  182. },
  183. "scoreLabel2": {
  184. "__id__": 182
  185. },
  186. "timeLabel2": {
  187. "__id__": 191
  188. },
  189. "levelLabel2": {
  190. "__id__": 200
  191. },
  192. "gameEndTip": {
  193. "__id__": 125
  194. },
  195. "GameMain": {
  196. "__id__": 116
  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__": 125
  213. },
  214. {
  215. "__id__": 165
  216. },
  217. {
  218. "__id__": 177
  219. }
  220. ],
  221. "_active": true,
  222. "_components": [
  223. {
  224. "__id__": 206
  225. },
  226. {
  227. "__id__": 207
  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": 696.5034965034964,
  381. "_near": 0,
  382. "_far": 2000,
  383. "_color": {
  384. "__type__": "cc.Color",
  385. "r": 0,
  386. "g": 0,
  387. "b": 0,
  388. "a": 255
  389. },
  390. "_depth": 1,
  391. "_stencil": 0,
  392. "_clearFlags": 6,
  393. "_rect": {
  394. "__type__": "cc.Rect",
  395. "x": 0,
  396. "y": 0,
  397. "width": 1,
  398. "height": 1
  399. },
  400. "_aperture": 19,
  401. "_shutter": 7,
  402. "_iso": 0,
  403. "_screenScale": 1,
  404. "_visibility": 41943040,
  405. "_targetTexture": null,
  406. "_cameraType": -1,
  407. "_trackingType": 0,
  408. "_id": "63WIch3o5BEYRlXzTT0oWc"
  409. },
  410. {
  411. "__type__": "cc.UITransform",
  412. "_name": "",
  413. "_objFlags": 0,
  414. "node": {
  415. "__id__": 7
  416. },
  417. "_enabled": true,
  418. "__prefab": null,
  419. "_contentSize": {
  420. "__type__": "cc.Size",
  421. "width": 2000,
  422. "height": 1200
  423. },
  424. "_anchorPoint": {
  425. "__type__": "cc.Vec2",
  426. "x": 0.5,
  427. "y": 0.5
  428. },
  429. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  430. },
  431. {
  432. "__type__": "cc.Canvas",
  433. "_name": "",
  434. "_objFlags": 0,
  435. "node": {
  436. "__id__": 7
  437. },
  438. "_enabled": true,
  439. "__prefab": null,
  440. "_cameraComponent": {
  441. "__id__": 9
  442. },
  443. "_alignCanvasWithScreen": true,
  444. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  445. },
  446. {
  447. "__type__": "cc.Widget",
  448. "_name": "",
  449. "_objFlags": 0,
  450. "node": {
  451. "__id__": 7
  452. },
  453. "_enabled": true,
  454. "__prefab": null,
  455. "_alignFlags": 45,
  456. "_target": null,
  457. "_left": -5.684341886080802e-14,
  458. "_right": -5.684341886080802e-14,
  459. "_top": 1.7053025658242404e-13,
  460. "_bottom": -2.8421709430404007e-13,
  461. "_horizontalCenter": 0,
  462. "_verticalCenter": 0,
  463. "_isAbsLeft": true,
  464. "_isAbsRight": true,
  465. "_isAbsTop": true,
  466. "_isAbsBottom": true,
  467. "_isAbsHorizontalCenter": true,
  468. "_isAbsVerticalCenter": true,
  469. "_originalWidth": 0,
  470. "_originalHeight": 0,
  471. "_alignMode": 2,
  472. "_lockFlags": 0,
  473. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  474. },
  475. {
  476. "__type__": "cc.AudioSource",
  477. "_name": "",
  478. "_objFlags": 0,
  479. "node": {
  480. "__id__": 7
  481. },
  482. "_enabled": true,
  483. "__prefab": null,
  484. "_clip": null,
  485. "_loop": false,
  486. "_playOnAwake": true,
  487. "_volume": 1,
  488. "_id": "94YYj+uIpDSqBYRX/Jt7HQ"
  489. },
  490. {
  491. "__type__": "cc.Node",
  492. "_name": "GameRoot",
  493. "_objFlags": 0,
  494. "_parent": {
  495. "__id__": 6
  496. },
  497. "_children": [
  498. {
  499. "__id__": 15
  500. }
  501. ],
  502. "_active": true,
  503. "_components": [
  504. {
  505. "__id__": 123
  506. },
  507. {
  508. "__id__": 124
  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__": 120
  557. },
  558. {
  559. "__id__": 121
  560. },
  561. {
  562. "__id__": 122
  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__": 117
  611. },
  612. {
  613. "__id__": 118
  614. },
  615. {
  616. "__id__": 119
  617. }
  618. ],
  619. "_prefab": null,
  620. "_lpos": {
  621. "__type__": "cc.Vec3",
  622. "x": -2.2737367544323206e-13,
  623. "y": 0,
  624. "z": 0
  625. },
  626. "_lrot": {
  627. "__type__": "cc.Quat",
  628. "x": 0,
  629. "y": 0,
  630. "z": 0,
  631. "w": 1
  632. },
  633. "_lscale": {
  634. "__type__": "cc.Vec3",
  635. "x": 1,
  636. "y": 1,
  637. "z": 1
  638. },
  639. "_mobility": 0,
  640. "_layer": 33554432,
  641. "_euler": {
  642. "__type__": "cc.Vec3",
  643. "x": 0,
  644. "y": 0,
  645. "z": 0
  646. },
  647. "_id": "8ed6xtU5NMGbVL2f5cu1pT"
  648. },
  649. {
  650. "__type__": "cc.Node",
  651. "_name": "GameMain",
  652. "_objFlags": 0,
  653. "_parent": {
  654. "__id__": 16
  655. },
  656. "_children": [
  657. {
  658. "__id__": 18
  659. },
  660. {
  661. "__id__": 21
  662. }
  663. ],
  664. "_active": true,
  665. "_components": [
  666. {
  667. "__id__": 115
  668. },
  669. {
  670. "__id__": 116
  671. }
  672. ],
  673. "_prefab": null,
  674. "_lpos": {
  675. "__type__": "cc.Vec3",
  676. "x": 4.547473508864641e-13,
  677. "y": -2.2737367544323206e-13,
  678. "z": 0
  679. },
  680. "_lrot": {
  681. "__type__": "cc.Quat",
  682. "x": 0,
  683. "y": 0,
  684. "z": 0,
  685. "w": 1
  686. },
  687. "_lscale": {
  688. "__type__": "cc.Vec3",
  689. "x": 1,
  690. "y": 1,
  691. "z": 1
  692. },
  693. "_mobility": 0,
  694. "_layer": 33554432,
  695. "_euler": {
  696. "__type__": "cc.Vec3",
  697. "x": 0,
  698. "y": 0,
  699. "z": 0
  700. },
  701. "_id": "59qLH8vcBCEIa65ZYu41/W"
  702. },
  703. {
  704. "__type__": "cc.Node",
  705. "_name": "bg",
  706. "_objFlags": 0,
  707. "_parent": {
  708. "__id__": 17
  709. },
  710. "_children": [],
  711. "_active": true,
  712. "_components": [
  713. {
  714. "__id__": 19
  715. },
  716. {
  717. "__id__": 20
  718. }
  719. ],
  720. "_prefab": null,
  721. "_lpos": {
  722. "__type__": "cc.Vec3",
  723. "x": 0,
  724. "y": -95,
  725. "z": 0
  726. },
  727. "_lrot": {
  728. "__type__": "cc.Quat",
  729. "x": 0,
  730. "y": 0,
  731. "z": 0,
  732. "w": 1
  733. },
  734. "_lscale": {
  735. "__type__": "cc.Vec3",
  736. "x": 1,
  737. "y": 1,
  738. "z": 1
  739. },
  740. "_mobility": 0,
  741. "_layer": 33554432,
  742. "_euler": {
  743. "__type__": "cc.Vec3",
  744. "x": 0,
  745. "y": 0,
  746. "z": 0
  747. },
  748. "_id": "63p/jUucBAFYM/G7nUDEnQ"
  749. },
  750. {
  751. "__type__": "cc.UITransform",
  752. "_name": "",
  753. "_objFlags": 0,
  754. "node": {
  755. "__id__": 18
  756. },
  757. "_enabled": true,
  758. "__prefab": null,
  759. "_contentSize": {
  760. "__type__": "cc.Size",
  761. "width": 1408,
  762. "height": 1220
  763. },
  764. "_anchorPoint": {
  765. "__type__": "cc.Vec2",
  766. "x": 0.5,
  767. "y": 0.5
  768. },
  769. "_id": "a2Xhmwup9C6bTT8Nyd5tEl"
  770. },
  771. {
  772. "__type__": "cc.Sprite",
  773. "_name": "",
  774. "_objFlags": 0,
  775. "node": {
  776. "__id__": 18
  777. },
  778. "_enabled": true,
  779. "__prefab": null,
  780. "_customMaterial": null,
  781. "_srcBlendFactor": 2,
  782. "_dstBlendFactor": 4,
  783. "_color": {
  784. "__type__": "cc.Color",
  785. "r": 255,
  786. "g": 255,
  787. "b": 255,
  788. "a": 255
  789. },
  790. "_spriteFrame": {
  791. "__uuid__": "d9738313-cc09-40a0-bce8-11eab9403192@f9941",
  792. "__expectedType__": "cc.SpriteFrame"
  793. },
  794. "_type": 0,
  795. "_fillType": 0,
  796. "_sizeMode": 1,
  797. "_fillCenter": {
  798. "__type__": "cc.Vec2",
  799. "x": 0,
  800. "y": 0
  801. },
  802. "_fillStart": 0,
  803. "_fillRange": 0,
  804. "_isTrimmedMode": true,
  805. "_useGrayscale": false,
  806. "_atlas": null,
  807. "_id": "02uSxvmPFFVKq9KzXUs0Ve"
  808. },
  809. {
  810. "__type__": "cc.Node",
  811. "_name": "mainNode",
  812. "_objFlags": 0,
  813. "_parent": {
  814. "__id__": 17
  815. },
  816. "_children": [
  817. {
  818. "__id__": 22
  819. },
  820. {
  821. "__id__": 90
  822. },
  823. {
  824. "__id__": 92
  825. },
  826. {
  827. "__id__": 95
  828. }
  829. ],
  830. "_active": true,
  831. "_components": [
  832. {
  833. "__id__": 114
  834. }
  835. ],
  836. "_prefab": null,
  837. "_lpos": {
  838. "__type__": "cc.Vec3",
  839. "x": 0,
  840. "y": -95,
  841. "z": 0
  842. },
  843. "_lrot": {
  844. "__type__": "cc.Quat",
  845. "x": 0,
  846. "y": 0,
  847. "z": 0,
  848. "w": 1
  849. },
  850. "_lscale": {
  851. "__type__": "cc.Vec3",
  852. "x": 1,
  853. "y": 1,
  854. "z": 1
  855. },
  856. "_mobility": 0,
  857. "_layer": 33554432,
  858. "_euler": {
  859. "__type__": "cc.Vec3",
  860. "x": 0,
  861. "y": 0,
  862. "z": 0
  863. },
  864. "_id": "75K3I4qYVD+a4wilBmgzbR"
  865. },
  866. {
  867. "__type__": "cc.Node",
  868. "_name": "huochaiheNode",
  869. "_objFlags": 0,
  870. "_parent": {
  871. "__id__": 21
  872. },
  873. "_children": [
  874. {
  875. "__id__": 23
  876. },
  877. {
  878. "__id__": 86
  879. }
  880. ],
  881. "_active": true,
  882. "_components": [
  883. {
  884. "__id__": 89
  885. }
  886. ],
  887. "_prefab": null,
  888. "_lpos": {
  889. "__type__": "cc.Vec3",
  890. "x": 0,
  891. "y": 0,
  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": "91gkp/Vh9GPa4sITae/6oF"
  916. },
  917. {
  918. "__type__": "cc.Node",
  919. "_name": "huochaihe2",
  920. "_objFlags": 0,
  921. "_parent": {
  922. "__id__": 22
  923. },
  924. "_children": [
  925. {
  926. "__id__": 24
  927. },
  928. {
  929. "__id__": 30
  930. },
  931. {
  932. "__id__": 36
  933. },
  934. {
  935. "__id__": 42
  936. },
  937. {
  938. "__id__": 48
  939. },
  940. {
  941. "__id__": 54
  942. },
  943. {
  944. "__id__": 60
  945. },
  946. {
  947. "__id__": 66
  948. },
  949. {
  950. "__id__": 72
  951. },
  952. {
  953. "__id__": 78
  954. }
  955. ],
  956. "_active": true,
  957. "_components": [
  958. {
  959. "__id__": 84
  960. },
  961. {
  962. "__id__": 85
  963. }
  964. ],
  965. "_prefab": null,
  966. "_lpos": {
  967. "__type__": "cc.Vec3",
  968. "x": -530,
  969. "y": -430,
  970. "z": 0
  971. },
  972. "_lrot": {
  973. "__type__": "cc.Quat",
  974. "x": 0,
  975. "y": 0,
  976. "z": 0,
  977. "w": 1
  978. },
  979. "_lscale": {
  980. "__type__": "cc.Vec3",
  981. "x": 1,
  982. "y": 1,
  983. "z": 1
  984. },
  985. "_mobility": 0,
  986. "_layer": 33554432,
  987. "_euler": {
  988. "__type__": "cc.Vec3",
  989. "x": 0,
  990. "y": 0,
  991. "z": 0
  992. },
  993. "_id": "e5l/HvNSFHt6gDV7Ev3nXU"
  994. },
  995. {
  996. "__type__": "cc.Node",
  997. "_name": "huochai",
  998. "_objFlags": 0,
  999. "_parent": {
  1000. "__id__": 23
  1001. },
  1002. "_children": [],
  1003. "_active": true,
  1004. "_components": [
  1005. {
  1006. "__id__": 25
  1007. },
  1008. {
  1009. "__id__": 26
  1010. },
  1011. {
  1012. "__id__": 27
  1013. },
  1014. {
  1015. "__id__": 28
  1016. },
  1017. {
  1018. "__id__": 29
  1019. }
  1020. ],
  1021. "_prefab": null,
  1022. "_lpos": {
  1023. "__type__": "cc.Vec3",
  1024. "x": -115.5,
  1025. "y": 9,
  1026. "z": 0
  1027. },
  1028. "_lrot": {
  1029. "__type__": "cc.Quat",
  1030. "x": 0,
  1031. "y": 0,
  1032. "z": 0,
  1033. "w": 1
  1034. },
  1035. "_lscale": {
  1036. "__type__": "cc.Vec3",
  1037. "x": 1,
  1038. "y": 1,
  1039. "z": 1
  1040. },
  1041. "_mobility": 0,
  1042. "_layer": 33554432,
  1043. "_euler": {
  1044. "__type__": "cc.Vec3",
  1045. "x": 0,
  1046. "y": 0,
  1047. "z": 0
  1048. },
  1049. "_id": "07eLn75ddB0JSpB15SJMmX"
  1050. },
  1051. {
  1052. "__type__": "cc.UITransform",
  1053. "_name": "",
  1054. "_objFlags": 0,
  1055. "node": {
  1056. "__id__": 24
  1057. },
  1058. "_enabled": true,
  1059. "__prefab": null,
  1060. "_contentSize": {
  1061. "__type__": "cc.Size",
  1062. "width": 55,
  1063. "height": 332
  1064. },
  1065. "_anchorPoint": {
  1066. "__type__": "cc.Vec2",
  1067. "x": 0.5,
  1068. "y": 0.5
  1069. },
  1070. "_id": "bagmEWeNFFa6zrkxjObYfX"
  1071. },
  1072. {
  1073. "__type__": "cc.Sprite",
  1074. "_name": "",
  1075. "_objFlags": 0,
  1076. "node": {
  1077. "__id__": 24
  1078. },
  1079. "_enabled": true,
  1080. "__prefab": null,
  1081. "_customMaterial": null,
  1082. "_srcBlendFactor": 2,
  1083. "_dstBlendFactor": 4,
  1084. "_color": {
  1085. "__type__": "cc.Color",
  1086. "r": 255,
  1087. "g": 255,
  1088. "b": 255,
  1089. "a": 255
  1090. },
  1091. "_spriteFrame": {
  1092. "__uuid__": "8e999b18-fdb8-4b31-943f-cd9d689588c9@f9941",
  1093. "__expectedType__": "cc.SpriteFrame"
  1094. },
  1095. "_type": 0,
  1096. "_fillType": 0,
  1097. "_sizeMode": 1,
  1098. "_fillCenter": {
  1099. "__type__": "cc.Vec2",
  1100. "x": 0,
  1101. "y": 0
  1102. },
  1103. "_fillStart": 0,
  1104. "_fillRange": 0,
  1105. "_isTrimmedMode": true,
  1106. "_useGrayscale": false,
  1107. "_atlas": null,
  1108. "_id": "8c7HbrPZxMM5ZZIdPtlI9p"
  1109. },
  1110. {
  1111. "__type__": "cc.RigidBody2D",
  1112. "_name": "",
  1113. "_objFlags": 0,
  1114. "node": {
  1115. "__id__": 24
  1116. },
  1117. "_enabled": true,
  1118. "__prefab": null,
  1119. "enabledContactListener": false,
  1120. "bullet": false,
  1121. "awakeOnLoad": true,
  1122. "_group": 1,
  1123. "_type": 2,
  1124. "_allowSleep": true,
  1125. "_gravityScale": 0,
  1126. "_linearDamping": 0,
  1127. "_angularDamping": 0,
  1128. "_linearVelocity": {
  1129. "__type__": "cc.Vec2",
  1130. "x": 0,
  1131. "y": 0
  1132. },
  1133. "_angularVelocity": 0,
  1134. "_fixedRotation": false,
  1135. "_id": "053wA+c5lGIYtI+Y50qJZC"
  1136. },
  1137. {
  1138. "__type__": "cc.PolygonCollider2D",
  1139. "_name": "",
  1140. "_objFlags": 0,
  1141. "node": {
  1142. "__id__": 24
  1143. },
  1144. "_enabled": true,
  1145. "__prefab": null,
  1146. "tag": 0,
  1147. "_group": 1,
  1148. "_density": 1,
  1149. "_sensor": true,
  1150. "_friction": 0.2,
  1151. "_restitution": 0,
  1152. "_offset": {
  1153. "__type__": "cc.Vec2",
  1154. "x": 0,
  1155. "y": 0
  1156. },
  1157. "_points": [
  1158. {
  1159. "__type__": "cc.Vec2",
  1160. "x": -7.5,
  1161. "y": 166
  1162. },
  1163. {
  1164. "__type__": "cc.Vec2",
  1165. "x": -17.5,
  1166. "y": 161
  1167. },
  1168. {
  1169. "__type__": "cc.Vec2",
  1170. "x": -23.5,
  1171. "y": 155
  1172. },
  1173. {
  1174. "__type__": "cc.Vec2",
  1175. "x": -27.5,
  1176. "y": 147
  1177. },
  1178. {
  1179. "__type__": "cc.Vec2",
  1180. "x": -27.5,
  1181. "y": 122
  1182. },
  1183. {
  1184. "__type__": "cc.Vec2",
  1185. "x": -23.5,
  1186. "y": 115
  1187. },
  1188. {
  1189. "__type__": "cc.Vec2",
  1190. "x": -23.5,
  1191. "y": 111
  1192. },
  1193. {
  1194. "__type__": "cc.Vec2",
  1195. "x": -21.5,
  1196. "y": 109
  1197. },
  1198. {
  1199. "__type__": "cc.Vec2",
  1200. "x": -17.5,
  1201. "y": 93
  1202. },
  1203. {
  1204. "__type__": "cc.Vec2",
  1205. "x": -15.5,
  1206. "y": 89
  1207. },
  1208. {
  1209. "__type__": "cc.Vec2",
  1210. "x": -12.5,
  1211. "y": 88
  1212. },
  1213. {
  1214. "__type__": "cc.Vec2",
  1215. "x": -12.5,
  1216. "y": -161
  1217. },
  1218. {
  1219. "__type__": "cc.Vec2",
  1220. "x": -7.5,
  1221. "y": -166
  1222. },
  1223. {
  1224. "__type__": "cc.Vec2",
  1225. "x": 7.5,
  1226. "y": -166
  1227. },
  1228. {
  1229. "__type__": "cc.Vec2",
  1230. "x": 12.5,
  1231. "y": -161
  1232. },
  1233. {
  1234. "__type__": "cc.Vec2",
  1235. "x": 12.5,
  1236. "y": 88
  1237. },
  1238. {
  1239. "__type__": "cc.Vec2",
  1240. "x": 16.5,
  1241. "y": 92
  1242. },
  1243. {
  1244. "__type__": "cc.Vec2",
  1245. "x": 24.5,
  1246. "y": 117
  1247. },
  1248. {
  1249. "__type__": "cc.Vec2",
  1250. "x": 27.5,
  1251. "y": 122
  1252. },
  1253. {
  1254. "__type__": "cc.Vec2",
  1255. "x": 27.5,
  1256. "y": 147
  1257. },
  1258. {
  1259. "__type__": "cc.Vec2",
  1260. "x": 21.5,
  1261. "y": 158
  1262. },
  1263. {
  1264. "__type__": "cc.Vec2",
  1265. "x": 8.5,
  1266. "y": 166
  1267. }
  1268. ],
  1269. "_id": "127N5GiptPsIju+f5F7Kuf"
  1270. },
  1271. {
  1272. "__type__": "307feDtKo5PL6cSMgSx01+a",
  1273. "_name": "",
  1274. "_objFlags": 0,
  1275. "node": {
  1276. "__id__": 24
  1277. },
  1278. "_enabled": true,
  1279. "__prefab": null,
  1280. "_id": "acaOtBHkBJ2bZGT4qGGNeK"
  1281. },
  1282. {
  1283. "__type__": "cc.Node",
  1284. "_name": "huochai-001",
  1285. "_objFlags": 0,
  1286. "_parent": {
  1287. "__id__": 23
  1288. },
  1289. "_children": [],
  1290. "_active": true,
  1291. "_components": [
  1292. {
  1293. "__id__": 31
  1294. },
  1295. {
  1296. "__id__": 32
  1297. },
  1298. {
  1299. "__id__": 33
  1300. },
  1301. {
  1302. "__id__": 34
  1303. },
  1304. {
  1305. "__id__": 35
  1306. }
  1307. ],
  1308. "_prefab": null,
  1309. "_lpos": {
  1310. "__type__": "cc.Vec3",
  1311. "x": -90.5,
  1312. "y": 9,
  1313. "z": 0
  1314. },
  1315. "_lrot": {
  1316. "__type__": "cc.Quat",
  1317. "x": 0,
  1318. "y": 0,
  1319. "z": 0,
  1320. "w": 1
  1321. },
  1322. "_lscale": {
  1323. "__type__": "cc.Vec3",
  1324. "x": 1,
  1325. "y": 1,
  1326. "z": 1
  1327. },
  1328. "_mobility": 0,
  1329. "_layer": 33554432,
  1330. "_euler": {
  1331. "__type__": "cc.Vec3",
  1332. "x": 0,
  1333. "y": 0,
  1334. "z": 0
  1335. },
  1336. "_id": "19PhUPdYRFdKMduio5/9YM"
  1337. },
  1338. {
  1339. "__type__": "cc.UITransform",
  1340. "_name": "",
  1341. "_objFlags": 0,
  1342. "node": {
  1343. "__id__": 30
  1344. },
  1345. "_enabled": true,
  1346. "__prefab": null,
  1347. "_contentSize": {
  1348. "__type__": "cc.Size",
  1349. "width": 55,
  1350. "height": 332
  1351. },
  1352. "_anchorPoint": {
  1353. "__type__": "cc.Vec2",
  1354. "x": 0.5,
  1355. "y": 0.5
  1356. },
  1357. "_id": "5626Drw/BJMYJheHkMZHnb"
  1358. },
  1359. {
  1360. "__type__": "cc.Sprite",
  1361. "_name": "",
  1362. "_objFlags": 0,
  1363. "node": {
  1364. "__id__": 30
  1365. },
  1366. "_enabled": true,
  1367. "__prefab": null,
  1368. "_customMaterial": null,
  1369. "_srcBlendFactor": 2,
  1370. "_dstBlendFactor": 4,
  1371. "_color": {
  1372. "__type__": "cc.Color",
  1373. "r": 255,
  1374. "g": 255,
  1375. "b": 255,
  1376. "a": 255
  1377. },
  1378. "_spriteFrame": {
  1379. "__uuid__": "8e999b18-fdb8-4b31-943f-cd9d689588c9@f9941",
  1380. "__expectedType__": "cc.SpriteFrame"
  1381. },
  1382. "_type": 0,
  1383. "_fillType": 0,
  1384. "_sizeMode": 1,
  1385. "_fillCenter": {
  1386. "__type__": "cc.Vec2",
  1387. "x": 0,
  1388. "y": 0
  1389. },
  1390. "_fillStart": 0,
  1391. "_fillRange": 0,
  1392. "_isTrimmedMode": true,
  1393. "_useGrayscale": false,
  1394. "_atlas": null,
  1395. "_id": "a0Esbxp5VOkIb1BKL3k9ow"
  1396. },
  1397. {
  1398. "__type__": "cc.RigidBody2D",
  1399. "_name": "",
  1400. "_objFlags": 0,
  1401. "node": {
  1402. "__id__": 30
  1403. },
  1404. "_enabled": true,
  1405. "__prefab": null,
  1406. "enabledContactListener": false,
  1407. "bullet": false,
  1408. "awakeOnLoad": true,
  1409. "_group": 1,
  1410. "_type": 2,
  1411. "_allowSleep": true,
  1412. "_gravityScale": 0,
  1413. "_linearDamping": 0,
  1414. "_angularDamping": 0,
  1415. "_linearVelocity": {
  1416. "__type__": "cc.Vec2",
  1417. "x": 0,
  1418. "y": 0
  1419. },
  1420. "_angularVelocity": 0,
  1421. "_fixedRotation": false,
  1422. "_id": "51FlU40KxOjY5VVa7ANFFJ"
  1423. },
  1424. {
  1425. "__type__": "cc.PolygonCollider2D",
  1426. "_name": "",
  1427. "_objFlags": 0,
  1428. "node": {
  1429. "__id__": 30
  1430. },
  1431. "_enabled": true,
  1432. "__prefab": null,
  1433. "tag": 0,
  1434. "_group": 1,
  1435. "_density": 1,
  1436. "_sensor": true,
  1437. "_friction": 0.2,
  1438. "_restitution": 0,
  1439. "_offset": {
  1440. "__type__": "cc.Vec2",
  1441. "x": 0,
  1442. "y": 0
  1443. },
  1444. "_points": [
  1445. {
  1446. "__type__": "cc.Vec2",
  1447. "x": -7.5,
  1448. "y": 166
  1449. },
  1450. {
  1451. "__type__": "cc.Vec2",
  1452. "x": -17.5,
  1453. "y": 161
  1454. },
  1455. {
  1456. "__type__": "cc.Vec2",
  1457. "x": -23.5,
  1458. "y": 155
  1459. },
  1460. {
  1461. "__type__": "cc.Vec2",
  1462. "x": -27.5,
  1463. "y": 147
  1464. },
  1465. {
  1466. "__type__": "cc.Vec2",
  1467. "x": -27.5,
  1468. "y": 122
  1469. },
  1470. {
  1471. "__type__": "cc.Vec2",
  1472. "x": -23.5,
  1473. "y": 115
  1474. },
  1475. {
  1476. "__type__": "cc.Vec2",
  1477. "x": -23.5,
  1478. "y": 111
  1479. },
  1480. {
  1481. "__type__": "cc.Vec2",
  1482. "x": -21.5,
  1483. "y": 109
  1484. },
  1485. {
  1486. "__type__": "cc.Vec2",
  1487. "x": -17.5,
  1488. "y": 93
  1489. },
  1490. {
  1491. "__type__": "cc.Vec2",
  1492. "x": -15.5,
  1493. "y": 89
  1494. },
  1495. {
  1496. "__type__": "cc.Vec2",
  1497. "x": -12.5,
  1498. "y": 88
  1499. },
  1500. {
  1501. "__type__": "cc.Vec2",
  1502. "x": -12.5,
  1503. "y": -161
  1504. },
  1505. {
  1506. "__type__": "cc.Vec2",
  1507. "x": -7.5,
  1508. "y": -166
  1509. },
  1510. {
  1511. "__type__": "cc.Vec2",
  1512. "x": 7.5,
  1513. "y": -166
  1514. },
  1515. {
  1516. "__type__": "cc.Vec2",
  1517. "x": 12.5,
  1518. "y": -161
  1519. },
  1520. {
  1521. "__type__": "cc.Vec2",
  1522. "x": 12.5,
  1523. "y": 88
  1524. },
  1525. {
  1526. "__type__": "cc.Vec2",
  1527. "x": 16.5,
  1528. "y": 92
  1529. },
  1530. {
  1531. "__type__": "cc.Vec2",
  1532. "x": 24.5,
  1533. "y": 117
  1534. },
  1535. {
  1536. "__type__": "cc.Vec2",
  1537. "x": 27.5,
  1538. "y": 122
  1539. },
  1540. {
  1541. "__type__": "cc.Vec2",
  1542. "x": 27.5,
  1543. "y": 147
  1544. },
  1545. {
  1546. "__type__": "cc.Vec2",
  1547. "x": 21.5,
  1548. "y": 158
  1549. },
  1550. {
  1551. "__type__": "cc.Vec2",
  1552. "x": 8.5,
  1553. "y": 166
  1554. }
  1555. ],
  1556. "_id": "4269D0a+JDrpXOu/kblZmw"
  1557. },
  1558. {
  1559. "__type__": "307feDtKo5PL6cSMgSx01+a",
  1560. "_name": "",
  1561. "_objFlags": 0,
  1562. "node": {
  1563. "__id__": 30
  1564. },
  1565. "_enabled": true,
  1566. "__prefab": null,
  1567. "_id": "f4onB/CkdNd4W+/1olHfzN"
  1568. },
  1569. {
  1570. "__type__": "cc.Node",
  1571. "_name": "huochai-002",
  1572. "_objFlags": 0,
  1573. "_parent": {
  1574. "__id__": 23
  1575. },
  1576. "_children": [],
  1577. "_active": true,
  1578. "_components": [
  1579. {
  1580. "__id__": 37
  1581. },
  1582. {
  1583. "__id__": 38
  1584. },
  1585. {
  1586. "__id__": 39
  1587. },
  1588. {
  1589. "__id__": 40
  1590. },
  1591. {
  1592. "__id__": 41
  1593. }
  1594. ],
  1595. "_prefab": null,
  1596. "_lpos": {
  1597. "__type__": "cc.Vec3",
  1598. "x": -65.5,
  1599. "y": 9,
  1600. "z": 0
  1601. },
  1602. "_lrot": {
  1603. "__type__": "cc.Quat",
  1604. "x": 0,
  1605. "y": 0,
  1606. "z": 0,
  1607. "w": 1
  1608. },
  1609. "_lscale": {
  1610. "__type__": "cc.Vec3",
  1611. "x": 1,
  1612. "y": 1,
  1613. "z": 1
  1614. },
  1615. "_mobility": 0,
  1616. "_layer": 33554432,
  1617. "_euler": {
  1618. "__type__": "cc.Vec3",
  1619. "x": 0,
  1620. "y": 0,
  1621. "z": 0
  1622. },
  1623. "_id": "305HsENYRPgp2u7mKssC7X"
  1624. },
  1625. {
  1626. "__type__": "cc.UITransform",
  1627. "_name": "",
  1628. "_objFlags": 0,
  1629. "node": {
  1630. "__id__": 36
  1631. },
  1632. "_enabled": true,
  1633. "__prefab": null,
  1634. "_contentSize": {
  1635. "__type__": "cc.Size",
  1636. "width": 55,
  1637. "height": 332
  1638. },
  1639. "_anchorPoint": {
  1640. "__type__": "cc.Vec2",
  1641. "x": 0.5,
  1642. "y": 0.5
  1643. },
  1644. "_id": "97lavwLNZOmblb6C6sahM7"
  1645. },
  1646. {
  1647. "__type__": "cc.Sprite",
  1648. "_name": "",
  1649. "_objFlags": 0,
  1650. "node": {
  1651. "__id__": 36
  1652. },
  1653. "_enabled": true,
  1654. "__prefab": null,
  1655. "_customMaterial": null,
  1656. "_srcBlendFactor": 2,
  1657. "_dstBlendFactor": 4,
  1658. "_color": {
  1659. "__type__": "cc.Color",
  1660. "r": 255,
  1661. "g": 255,
  1662. "b": 255,
  1663. "a": 255
  1664. },
  1665. "_spriteFrame": {
  1666. "__uuid__": "8e999b18-fdb8-4b31-943f-cd9d689588c9@f9941",
  1667. "__expectedType__": "cc.SpriteFrame"
  1668. },
  1669. "_type": 0,
  1670. "_fillType": 0,
  1671. "_sizeMode": 1,
  1672. "_fillCenter": {
  1673. "__type__": "cc.Vec2",
  1674. "x": 0,
  1675. "y": 0
  1676. },
  1677. "_fillStart": 0,
  1678. "_fillRange": 0,
  1679. "_isTrimmedMode": true,
  1680. "_useGrayscale": false,
  1681. "_atlas": null,
  1682. "_id": "b0317rVHtCuZkOKSiOf+0E"
  1683. },
  1684. {
  1685. "__type__": "cc.RigidBody2D",
  1686. "_name": "",
  1687. "_objFlags": 0,
  1688. "node": {
  1689. "__id__": 36
  1690. },
  1691. "_enabled": true,
  1692. "__prefab": null,
  1693. "enabledContactListener": false,
  1694. "bullet": false,
  1695. "awakeOnLoad": true,
  1696. "_group": 1,
  1697. "_type": 2,
  1698. "_allowSleep": true,
  1699. "_gravityScale": 0,
  1700. "_linearDamping": 0,
  1701. "_angularDamping": 0,
  1702. "_linearVelocity": {
  1703. "__type__": "cc.Vec2",
  1704. "x": 0,
  1705. "y": 0
  1706. },
  1707. "_angularVelocity": 0,
  1708. "_fixedRotation": false,
  1709. "_id": "18NeDSlF9KzIIy0U6BBRMZ"
  1710. },
  1711. {
  1712. "__type__": "cc.PolygonCollider2D",
  1713. "_name": "",
  1714. "_objFlags": 0,
  1715. "node": {
  1716. "__id__": 36
  1717. },
  1718. "_enabled": true,
  1719. "__prefab": null,
  1720. "tag": 0,
  1721. "_group": 1,
  1722. "_density": 1,
  1723. "_sensor": true,
  1724. "_friction": 0.2,
  1725. "_restitution": 0,
  1726. "_offset": {
  1727. "__type__": "cc.Vec2",
  1728. "x": 0,
  1729. "y": 0
  1730. },
  1731. "_points": [
  1732. {
  1733. "__type__": "cc.Vec2",
  1734. "x": -7.5,
  1735. "y": 166
  1736. },
  1737. {
  1738. "__type__": "cc.Vec2",
  1739. "x": -17.5,
  1740. "y": 161
  1741. },
  1742. {
  1743. "__type__": "cc.Vec2",
  1744. "x": -23.5,
  1745. "y": 155
  1746. },
  1747. {
  1748. "__type__": "cc.Vec2",
  1749. "x": -27.5,
  1750. "y": 147
  1751. },
  1752. {
  1753. "__type__": "cc.Vec2",
  1754. "x": -27.5,
  1755. "y": 122
  1756. },
  1757. {
  1758. "__type__": "cc.Vec2",
  1759. "x": -23.5,
  1760. "y": 115
  1761. },
  1762. {
  1763. "__type__": "cc.Vec2",
  1764. "x": -23.5,
  1765. "y": 111
  1766. },
  1767. {
  1768. "__type__": "cc.Vec2",
  1769. "x": -21.5,
  1770. "y": 109
  1771. },
  1772. {
  1773. "__type__": "cc.Vec2",
  1774. "x": -17.5,
  1775. "y": 93
  1776. },
  1777. {
  1778. "__type__": "cc.Vec2",
  1779. "x": -15.5,
  1780. "y": 89
  1781. },
  1782. {
  1783. "__type__": "cc.Vec2",
  1784. "x": -12.5,
  1785. "y": 88
  1786. },
  1787. {
  1788. "__type__": "cc.Vec2",
  1789. "x": -12.5,
  1790. "y": -161
  1791. },
  1792. {
  1793. "__type__": "cc.Vec2",
  1794. "x": -7.5,
  1795. "y": -166
  1796. },
  1797. {
  1798. "__type__": "cc.Vec2",
  1799. "x": 7.5,
  1800. "y": -166
  1801. },
  1802. {
  1803. "__type__": "cc.Vec2",
  1804. "x": 12.5,
  1805. "y": -161
  1806. },
  1807. {
  1808. "__type__": "cc.Vec2",
  1809. "x": 12.5,
  1810. "y": 88
  1811. },
  1812. {
  1813. "__type__": "cc.Vec2",
  1814. "x": 16.5,
  1815. "y": 92
  1816. },
  1817. {
  1818. "__type__": "cc.Vec2",
  1819. "x": 24.5,
  1820. "y": 117
  1821. },
  1822. {
  1823. "__type__": "cc.Vec2",
  1824. "x": 27.5,
  1825. "y": 122
  1826. },
  1827. {
  1828. "__type__": "cc.Vec2",
  1829. "x": 27.5,
  1830. "y": 147
  1831. },
  1832. {
  1833. "__type__": "cc.Vec2",
  1834. "x": 21.5,
  1835. "y": 158
  1836. },
  1837. {
  1838. "__type__": "cc.Vec2",
  1839. "x": 8.5,
  1840. "y": 166
  1841. }
  1842. ],
  1843. "_id": "b6PDD+MVdDsb8doJ2WFUH0"
  1844. },
  1845. {
  1846. "__type__": "307feDtKo5PL6cSMgSx01+a",
  1847. "_name": "",
  1848. "_objFlags": 0,
  1849. "node": {
  1850. "__id__": 36
  1851. },
  1852. "_enabled": true,
  1853. "__prefab": null,
  1854. "_id": "ebf+QPVg9JEo3quD6ZLSYY"
  1855. },
  1856. {
  1857. "__type__": "cc.Node",
  1858. "_name": "huochai-003",
  1859. "_objFlags": 0,
  1860. "_parent": {
  1861. "__id__": 23
  1862. },
  1863. "_children": [],
  1864. "_active": true,
  1865. "_components": [
  1866. {
  1867. "__id__": 43
  1868. },
  1869. {
  1870. "__id__": 44
  1871. },
  1872. {
  1873. "__id__": 45
  1874. },
  1875. {
  1876. "__id__": 46
  1877. },
  1878. {
  1879. "__id__": 47
  1880. }
  1881. ],
  1882. "_prefab": null,
  1883. "_lpos": {
  1884. "__type__": "cc.Vec3",
  1885. "x": -40.5,
  1886. "y": 9,
  1887. "z": 0
  1888. },
  1889. "_lrot": {
  1890. "__type__": "cc.Quat",
  1891. "x": 0,
  1892. "y": 0,
  1893. "z": 0,
  1894. "w": 1
  1895. },
  1896. "_lscale": {
  1897. "__type__": "cc.Vec3",
  1898. "x": 1,
  1899. "y": 1,
  1900. "z": 1
  1901. },
  1902. "_mobility": 0,
  1903. "_layer": 33554432,
  1904. "_euler": {
  1905. "__type__": "cc.Vec3",
  1906. "x": 0,
  1907. "y": 0,
  1908. "z": 0
  1909. },
  1910. "_id": "dcJ22Dy0pH07Bc5dLEtjCO"
  1911. },
  1912. {
  1913. "__type__": "cc.UITransform",
  1914. "_name": "",
  1915. "_objFlags": 0,
  1916. "node": {
  1917. "__id__": 42
  1918. },
  1919. "_enabled": true,
  1920. "__prefab": null,
  1921. "_contentSize": {
  1922. "__type__": "cc.Size",
  1923. "width": 55,
  1924. "height": 332
  1925. },
  1926. "_anchorPoint": {
  1927. "__type__": "cc.Vec2",
  1928. "x": 0.5,
  1929. "y": 0.5
  1930. },
  1931. "_id": "c9xeuZ0LlLa58/cMIfLfgM"
  1932. },
  1933. {
  1934. "__type__": "cc.Sprite",
  1935. "_name": "",
  1936. "_objFlags": 0,
  1937. "node": {
  1938. "__id__": 42
  1939. },
  1940. "_enabled": true,
  1941. "__prefab": null,
  1942. "_customMaterial": null,
  1943. "_srcBlendFactor": 2,
  1944. "_dstBlendFactor": 4,
  1945. "_color": {
  1946. "__type__": "cc.Color",
  1947. "r": 255,
  1948. "g": 255,
  1949. "b": 255,
  1950. "a": 255
  1951. },
  1952. "_spriteFrame": {
  1953. "__uuid__": "8e999b18-fdb8-4b31-943f-cd9d689588c9@f9941",
  1954. "__expectedType__": "cc.SpriteFrame"
  1955. },
  1956. "_type": 0,
  1957. "_fillType": 0,
  1958. "_sizeMode": 1,
  1959. "_fillCenter": {
  1960. "__type__": "cc.Vec2",
  1961. "x": 0,
  1962. "y": 0
  1963. },
  1964. "_fillStart": 0,
  1965. "_fillRange": 0,
  1966. "_isTrimmedMode": true,
  1967. "_useGrayscale": false,
  1968. "_atlas": null,
  1969. "_id": "4d8qJA3L5JUqGMECnf4d/D"
  1970. },
  1971. {
  1972. "__type__": "cc.RigidBody2D",
  1973. "_name": "",
  1974. "_objFlags": 0,
  1975. "node": {
  1976. "__id__": 42
  1977. },
  1978. "_enabled": true,
  1979. "__prefab": null,
  1980. "enabledContactListener": false,
  1981. "bullet": false,
  1982. "awakeOnLoad": true,
  1983. "_group": 1,
  1984. "_type": 2,
  1985. "_allowSleep": true,
  1986. "_gravityScale": 0,
  1987. "_linearDamping": 0,
  1988. "_angularDamping": 0,
  1989. "_linearVelocity": {
  1990. "__type__": "cc.Vec2",
  1991. "x": 0,
  1992. "y": 0
  1993. },
  1994. "_angularVelocity": 0,
  1995. "_fixedRotation": false,
  1996. "_id": "c5x56RRZtM5IREyaZYnw1o"
  1997. },
  1998. {
  1999. "__type__": "cc.PolygonCollider2D",
  2000. "_name": "",
  2001. "_objFlags": 0,
  2002. "node": {
  2003. "__id__": 42
  2004. },
  2005. "_enabled": true,
  2006. "__prefab": null,
  2007. "tag": 0,
  2008. "_group": 1,
  2009. "_density": 1,
  2010. "_sensor": true,
  2011. "_friction": 0.2,
  2012. "_restitution": 0,
  2013. "_offset": {
  2014. "__type__": "cc.Vec2",
  2015. "x": 0,
  2016. "y": 0
  2017. },
  2018. "_points": [
  2019. {
  2020. "__type__": "cc.Vec2",
  2021. "x": -7.5,
  2022. "y": 166
  2023. },
  2024. {
  2025. "__type__": "cc.Vec2",
  2026. "x": -17.5,
  2027. "y": 161
  2028. },
  2029. {
  2030. "__type__": "cc.Vec2",
  2031. "x": -23.5,
  2032. "y": 155
  2033. },
  2034. {
  2035. "__type__": "cc.Vec2",
  2036. "x": -27.5,
  2037. "y": 147
  2038. },
  2039. {
  2040. "__type__": "cc.Vec2",
  2041. "x": -27.5,
  2042. "y": 122
  2043. },
  2044. {
  2045. "__type__": "cc.Vec2",
  2046. "x": -23.5,
  2047. "y": 115
  2048. },
  2049. {
  2050. "__type__": "cc.Vec2",
  2051. "x": -23.5,
  2052. "y": 111
  2053. },
  2054. {
  2055. "__type__": "cc.Vec2",
  2056. "x": -21.5,
  2057. "y": 109
  2058. },
  2059. {
  2060. "__type__": "cc.Vec2",
  2061. "x": -17.5,
  2062. "y": 93
  2063. },
  2064. {
  2065. "__type__": "cc.Vec2",
  2066. "x": -15.5,
  2067. "y": 89
  2068. },
  2069. {
  2070. "__type__": "cc.Vec2",
  2071. "x": -12.5,
  2072. "y": 88
  2073. },
  2074. {
  2075. "__type__": "cc.Vec2",
  2076. "x": -12.5,
  2077. "y": -161
  2078. },
  2079. {
  2080. "__type__": "cc.Vec2",
  2081. "x": -7.5,
  2082. "y": -166
  2083. },
  2084. {
  2085. "__type__": "cc.Vec2",
  2086. "x": 7.5,
  2087. "y": -166
  2088. },
  2089. {
  2090. "__type__": "cc.Vec2",
  2091. "x": 12.5,
  2092. "y": -161
  2093. },
  2094. {
  2095. "__type__": "cc.Vec2",
  2096. "x": 12.5,
  2097. "y": 88
  2098. },
  2099. {
  2100. "__type__": "cc.Vec2",
  2101. "x": 16.5,
  2102. "y": 92
  2103. },
  2104. {
  2105. "__type__": "cc.Vec2",
  2106. "x": 24.5,
  2107. "y": 117
  2108. },
  2109. {
  2110. "__type__": "cc.Vec2",
  2111. "x": 27.5,
  2112. "y": 122
  2113. },
  2114. {
  2115. "__type__": "cc.Vec2",
  2116. "x": 27.5,
  2117. "y": 147
  2118. },
  2119. {
  2120. "__type__": "cc.Vec2",
  2121. "x": 21.5,
  2122. "y": 158
  2123. },
  2124. {
  2125. "__type__": "cc.Vec2",
  2126. "x": 8.5,
  2127. "y": 166
  2128. }
  2129. ],
  2130. "_id": "c6z8D/5eJI/ZnJh655KAlf"
  2131. },
  2132. {
  2133. "__type__": "307feDtKo5PL6cSMgSx01+a",
  2134. "_name": "",
  2135. "_objFlags": 0,
  2136. "node": {
  2137. "__id__": 42
  2138. },
  2139. "_enabled": true,
  2140. "__prefab": null,
  2141. "_id": "f2iHZnSlxOz475iACokYhJ"
  2142. },
  2143. {
  2144. "__type__": "cc.Node",
  2145. "_name": "huochai-004",
  2146. "_objFlags": 0,
  2147. "_parent": {
  2148. "__id__": 23
  2149. },
  2150. "_children": [],
  2151. "_active": true,
  2152. "_components": [
  2153. {
  2154. "__id__": 49
  2155. },
  2156. {
  2157. "__id__": 50
  2158. },
  2159. {
  2160. "__id__": 51
  2161. },
  2162. {
  2163. "__id__": 52
  2164. },
  2165. {
  2166. "__id__": 53
  2167. }
  2168. ],
  2169. "_prefab": null,
  2170. "_lpos": {
  2171. "__type__": "cc.Vec3",
  2172. "x": -15.5,
  2173. "y": 9,
  2174. "z": 0
  2175. },
  2176. "_lrot": {
  2177. "__type__": "cc.Quat",
  2178. "x": 0,
  2179. "y": 0,
  2180. "z": 0,
  2181. "w": 1
  2182. },
  2183. "_lscale": {
  2184. "__type__": "cc.Vec3",
  2185. "x": 1,
  2186. "y": 1,
  2187. "z": 1
  2188. },
  2189. "_mobility": 0,
  2190. "_layer": 33554432,
  2191. "_euler": {
  2192. "__type__": "cc.Vec3",
  2193. "x": 0,
  2194. "y": 0,
  2195. "z": 0
  2196. },
  2197. "_id": "7f32SM535JopsHss8/55CH"
  2198. },
  2199. {
  2200. "__type__": "cc.UITransform",
  2201. "_name": "",
  2202. "_objFlags": 0,
  2203. "node": {
  2204. "__id__": 48
  2205. },
  2206. "_enabled": true,
  2207. "__prefab": null,
  2208. "_contentSize": {
  2209. "__type__": "cc.Size",
  2210. "width": 55,
  2211. "height": 332
  2212. },
  2213. "_anchorPoint": {
  2214. "__type__": "cc.Vec2",
  2215. "x": 0.5,
  2216. "y": 0.5
  2217. },
  2218. "_id": "bcVkn0bNhCjZj0b24HzMvZ"
  2219. },
  2220. {
  2221. "__type__": "cc.Sprite",
  2222. "_name": "",
  2223. "_objFlags": 0,
  2224. "node": {
  2225. "__id__": 48
  2226. },
  2227. "_enabled": true,
  2228. "__prefab": null,
  2229. "_customMaterial": null,
  2230. "_srcBlendFactor": 2,
  2231. "_dstBlendFactor": 4,
  2232. "_color": {
  2233. "__type__": "cc.Color",
  2234. "r": 255,
  2235. "g": 255,
  2236. "b": 255,
  2237. "a": 255
  2238. },
  2239. "_spriteFrame": {
  2240. "__uuid__": "8e999b18-fdb8-4b31-943f-cd9d689588c9@f9941",
  2241. "__expectedType__": "cc.SpriteFrame"
  2242. },
  2243. "_type": 0,
  2244. "_fillType": 0,
  2245. "_sizeMode": 1,
  2246. "_fillCenter": {
  2247. "__type__": "cc.Vec2",
  2248. "x": 0,
  2249. "y": 0
  2250. },
  2251. "_fillStart": 0,
  2252. "_fillRange": 0,
  2253. "_isTrimmedMode": true,
  2254. "_useGrayscale": false,
  2255. "_atlas": null,
  2256. "_id": "90Le4q2kdHFKoQNzXZ5Cre"
  2257. },
  2258. {
  2259. "__type__": "cc.RigidBody2D",
  2260. "_name": "",
  2261. "_objFlags": 0,
  2262. "node": {
  2263. "__id__": 48
  2264. },
  2265. "_enabled": true,
  2266. "__prefab": null,
  2267. "enabledContactListener": false,
  2268. "bullet": false,
  2269. "awakeOnLoad": true,
  2270. "_group": 1,
  2271. "_type": 2,
  2272. "_allowSleep": true,
  2273. "_gravityScale": 0,
  2274. "_linearDamping": 0,
  2275. "_angularDamping": 0,
  2276. "_linearVelocity": {
  2277. "__type__": "cc.Vec2",
  2278. "x": 0,
  2279. "y": 0
  2280. },
  2281. "_angularVelocity": 0,
  2282. "_fixedRotation": false,
  2283. "_id": "4fWfj03vRLm7T/pKviCvvQ"
  2284. },
  2285. {
  2286. "__type__": "cc.PolygonCollider2D",
  2287. "_name": "",
  2288. "_objFlags": 0,
  2289. "node": {
  2290. "__id__": 48
  2291. },
  2292. "_enabled": true,
  2293. "__prefab": null,
  2294. "tag": 0,
  2295. "_group": 1,
  2296. "_density": 1,
  2297. "_sensor": true,
  2298. "_friction": 0.2,
  2299. "_restitution": 0,
  2300. "_offset": {
  2301. "__type__": "cc.Vec2",
  2302. "x": 0,
  2303. "y": 0
  2304. },
  2305. "_points": [
  2306. {
  2307. "__type__": "cc.Vec2",
  2308. "x": -7.5,
  2309. "y": 166
  2310. },
  2311. {
  2312. "__type__": "cc.Vec2",
  2313. "x": -17.5,
  2314. "y": 161
  2315. },
  2316. {
  2317. "__type__": "cc.Vec2",
  2318. "x": -23.5,
  2319. "y": 155
  2320. },
  2321. {
  2322. "__type__": "cc.Vec2",
  2323. "x": -27.5,
  2324. "y": 147
  2325. },
  2326. {
  2327. "__type__": "cc.Vec2",
  2328. "x": -27.5,
  2329. "y": 122
  2330. },
  2331. {
  2332. "__type__": "cc.Vec2",
  2333. "x": -23.5,
  2334. "y": 115
  2335. },
  2336. {
  2337. "__type__": "cc.Vec2",
  2338. "x": -23.5,
  2339. "y": 111
  2340. },
  2341. {
  2342. "__type__": "cc.Vec2",
  2343. "x": -21.5,
  2344. "y": 109
  2345. },
  2346. {
  2347. "__type__": "cc.Vec2",
  2348. "x": -17.5,
  2349. "y": 93
  2350. },
  2351. {
  2352. "__type__": "cc.Vec2",
  2353. "x": -15.5,
  2354. "y": 89
  2355. },
  2356. {
  2357. "__type__": "cc.Vec2",
  2358. "x": -12.5,
  2359. "y": 88
  2360. },
  2361. {
  2362. "__type__": "cc.Vec2",
  2363. "x": -12.5,
  2364. "y": -161
  2365. },
  2366. {
  2367. "__type__": "cc.Vec2",
  2368. "x": -7.5,
  2369. "y": -166
  2370. },
  2371. {
  2372. "__type__": "cc.Vec2",
  2373. "x": 7.5,
  2374. "y": -166
  2375. },
  2376. {
  2377. "__type__": "cc.Vec2",
  2378. "x": 12.5,
  2379. "y": -161
  2380. },
  2381. {
  2382. "__type__": "cc.Vec2",
  2383. "x": 12.5,
  2384. "y": 88
  2385. },
  2386. {
  2387. "__type__": "cc.Vec2",
  2388. "x": 16.5,
  2389. "y": 92
  2390. },
  2391. {
  2392. "__type__": "cc.Vec2",
  2393. "x": 24.5,
  2394. "y": 117
  2395. },
  2396. {
  2397. "__type__": "cc.Vec2",
  2398. "x": 27.5,
  2399. "y": 122
  2400. },
  2401. {
  2402. "__type__": "cc.Vec2",
  2403. "x": 27.5,
  2404. "y": 147
  2405. },
  2406. {
  2407. "__type__": "cc.Vec2",
  2408. "x": 21.5,
  2409. "y": 158
  2410. },
  2411. {
  2412. "__type__": "cc.Vec2",
  2413. "x": 8.5,
  2414. "y": 166
  2415. }
  2416. ],
  2417. "_id": "76KbbgDWZEuanhqqywzBRv"
  2418. },
  2419. {
  2420. "__type__": "307feDtKo5PL6cSMgSx01+a",
  2421. "_name": "",
  2422. "_objFlags": 0,
  2423. "node": {
  2424. "__id__": 48
  2425. },
  2426. "_enabled": true,
  2427. "__prefab": null,
  2428. "_id": "b9ULUnb/9BDZdGIxa0nYFW"
  2429. },
  2430. {
  2431. "__type__": "cc.Node",
  2432. "_name": "huochai-005",
  2433. "_objFlags": 0,
  2434. "_parent": {
  2435. "__id__": 23
  2436. },
  2437. "_children": [],
  2438. "_active": true,
  2439. "_components": [
  2440. {
  2441. "__id__": 55
  2442. },
  2443. {
  2444. "__id__": 56
  2445. },
  2446. {
  2447. "__id__": 57
  2448. },
  2449. {
  2450. "__id__": 58
  2451. },
  2452. {
  2453. "__id__": 59
  2454. }
  2455. ],
  2456. "_prefab": null,
  2457. "_lpos": {
  2458. "__type__": "cc.Vec3",
  2459. "x": 9.5,
  2460. "y": 9,
  2461. "z": 0
  2462. },
  2463. "_lrot": {
  2464. "__type__": "cc.Quat",
  2465. "x": 0,
  2466. "y": 0,
  2467. "z": 0,
  2468. "w": 1
  2469. },
  2470. "_lscale": {
  2471. "__type__": "cc.Vec3",
  2472. "x": 1,
  2473. "y": 1,
  2474. "z": 1
  2475. },
  2476. "_mobility": 0,
  2477. "_layer": 33554432,
  2478. "_euler": {
  2479. "__type__": "cc.Vec3",
  2480. "x": 0,
  2481. "y": 0,
  2482. "z": 0
  2483. },
  2484. "_id": "92lbeONTxBEYSPqmP1GE98"
  2485. },
  2486. {
  2487. "__type__": "cc.UITransform",
  2488. "_name": "",
  2489. "_objFlags": 0,
  2490. "node": {
  2491. "__id__": 54
  2492. },
  2493. "_enabled": true,
  2494. "__prefab": null,
  2495. "_contentSize": {
  2496. "__type__": "cc.Size",
  2497. "width": 55,
  2498. "height": 332
  2499. },
  2500. "_anchorPoint": {
  2501. "__type__": "cc.Vec2",
  2502. "x": 0.5,
  2503. "y": 0.5
  2504. },
  2505. "_id": "b7cGPleqhG4bakrEgpHSrg"
  2506. },
  2507. {
  2508. "__type__": "cc.Sprite",
  2509. "_name": "",
  2510. "_objFlags": 0,
  2511. "node": {
  2512. "__id__": 54
  2513. },
  2514. "_enabled": true,
  2515. "__prefab": null,
  2516. "_customMaterial": null,
  2517. "_srcBlendFactor": 2,
  2518. "_dstBlendFactor": 4,
  2519. "_color": {
  2520. "__type__": "cc.Color",
  2521. "r": 255,
  2522. "g": 255,
  2523. "b": 255,
  2524. "a": 255
  2525. },
  2526. "_spriteFrame": {
  2527. "__uuid__": "8e999b18-fdb8-4b31-943f-cd9d689588c9@f9941",
  2528. "__expectedType__": "cc.SpriteFrame"
  2529. },
  2530. "_type": 0,
  2531. "_fillType": 0,
  2532. "_sizeMode": 1,
  2533. "_fillCenter": {
  2534. "__type__": "cc.Vec2",
  2535. "x": 0,
  2536. "y": 0
  2537. },
  2538. "_fillStart": 0,
  2539. "_fillRange": 0,
  2540. "_isTrimmedMode": true,
  2541. "_useGrayscale": false,
  2542. "_atlas": null,
  2543. "_id": "65RG5i90VGip424JMy51cL"
  2544. },
  2545. {
  2546. "__type__": "cc.RigidBody2D",
  2547. "_name": "",
  2548. "_objFlags": 0,
  2549. "node": {
  2550. "__id__": 54
  2551. },
  2552. "_enabled": true,
  2553. "__prefab": null,
  2554. "enabledContactListener": false,
  2555. "bullet": false,
  2556. "awakeOnLoad": true,
  2557. "_group": 1,
  2558. "_type": 2,
  2559. "_allowSleep": true,
  2560. "_gravityScale": 0,
  2561. "_linearDamping": 0,
  2562. "_angularDamping": 0,
  2563. "_linearVelocity": {
  2564. "__type__": "cc.Vec2",
  2565. "x": 0,
  2566. "y": 0
  2567. },
  2568. "_angularVelocity": 0,
  2569. "_fixedRotation": false,
  2570. "_id": "15Ue++WxJKzLL6D6dwyjja"
  2571. },
  2572. {
  2573. "__type__": "cc.PolygonCollider2D",
  2574. "_name": "",
  2575. "_objFlags": 0,
  2576. "node": {
  2577. "__id__": 54
  2578. },
  2579. "_enabled": true,
  2580. "__prefab": null,
  2581. "tag": 0,
  2582. "_group": 1,
  2583. "_density": 1,
  2584. "_sensor": true,
  2585. "_friction": 0.2,
  2586. "_restitution": 0,
  2587. "_offset": {
  2588. "__type__": "cc.Vec2",
  2589. "x": 0,
  2590. "y": 0
  2591. },
  2592. "_points": [
  2593. {
  2594. "__type__": "cc.Vec2",
  2595. "x": -7.5,
  2596. "y": 166
  2597. },
  2598. {
  2599. "__type__": "cc.Vec2",
  2600. "x": -17.5,
  2601. "y": 161
  2602. },
  2603. {
  2604. "__type__": "cc.Vec2",
  2605. "x": -23.5,
  2606. "y": 155
  2607. },
  2608. {
  2609. "__type__": "cc.Vec2",
  2610. "x": -27.5,
  2611. "y": 147
  2612. },
  2613. {
  2614. "__type__": "cc.Vec2",
  2615. "x": -27.5,
  2616. "y": 122
  2617. },
  2618. {
  2619. "__type__": "cc.Vec2",
  2620. "x": -23.5,
  2621. "y": 115
  2622. },
  2623. {
  2624. "__type__": "cc.Vec2",
  2625. "x": -23.5,
  2626. "y": 111
  2627. },
  2628. {
  2629. "__type__": "cc.Vec2",
  2630. "x": -21.5,
  2631. "y": 109
  2632. },
  2633. {
  2634. "__type__": "cc.Vec2",
  2635. "x": -17.5,
  2636. "y": 93
  2637. },
  2638. {
  2639. "__type__": "cc.Vec2",
  2640. "x": -15.5,
  2641. "y": 89
  2642. },
  2643. {
  2644. "__type__": "cc.Vec2",
  2645. "x": -12.5,
  2646. "y": 88
  2647. },
  2648. {
  2649. "__type__": "cc.Vec2",
  2650. "x": -12.5,
  2651. "y": -161
  2652. },
  2653. {
  2654. "__type__": "cc.Vec2",
  2655. "x": -7.5,
  2656. "y": -166
  2657. },
  2658. {
  2659. "__type__": "cc.Vec2",
  2660. "x": 7.5,
  2661. "y": -166
  2662. },
  2663. {
  2664. "__type__": "cc.Vec2",
  2665. "x": 12.5,
  2666. "y": -161
  2667. },
  2668. {
  2669. "__type__": "cc.Vec2",
  2670. "x": 12.5,
  2671. "y": 88
  2672. },
  2673. {
  2674. "__type__": "cc.Vec2",
  2675. "x": 16.5,
  2676. "y": 92
  2677. },
  2678. {
  2679. "__type__": "cc.Vec2",
  2680. "x": 24.5,
  2681. "y": 117
  2682. },
  2683. {
  2684. "__type__": "cc.Vec2",
  2685. "x": 27.5,
  2686. "y": 122
  2687. },
  2688. {
  2689. "__type__": "cc.Vec2",
  2690. "x": 27.5,
  2691. "y": 147
  2692. },
  2693. {
  2694. "__type__": "cc.Vec2",
  2695. "x": 21.5,
  2696. "y": 158
  2697. },
  2698. {
  2699. "__type__": "cc.Vec2",
  2700. "x": 8.5,
  2701. "y": 166
  2702. }
  2703. ],
  2704. "_id": "90pk36VslM+63RChNHhfeB"
  2705. },
  2706. {
  2707. "__type__": "307feDtKo5PL6cSMgSx01+a",
  2708. "_name": "",
  2709. "_objFlags": 0,
  2710. "node": {
  2711. "__id__": 54
  2712. },
  2713. "_enabled": true,
  2714. "__prefab": null,
  2715. "_id": "39hyAyLkpHmaA3RmQa+vc9"
  2716. },
  2717. {
  2718. "__type__": "cc.Node",
  2719. "_name": "huochai-006",
  2720. "_objFlags": 0,
  2721. "_parent": {
  2722. "__id__": 23
  2723. },
  2724. "_children": [],
  2725. "_active": true,
  2726. "_components": [
  2727. {
  2728. "__id__": 61
  2729. },
  2730. {
  2731. "__id__": 62
  2732. },
  2733. {
  2734. "__id__": 63
  2735. },
  2736. {
  2737. "__id__": 64
  2738. },
  2739. {
  2740. "__id__": 65
  2741. }
  2742. ],
  2743. "_prefab": null,
  2744. "_lpos": {
  2745. "__type__": "cc.Vec3",
  2746. "x": 34.5,
  2747. "y": 9,
  2748. "z": 0
  2749. },
  2750. "_lrot": {
  2751. "__type__": "cc.Quat",
  2752. "x": 0,
  2753. "y": 0,
  2754. "z": 0,
  2755. "w": 1
  2756. },
  2757. "_lscale": {
  2758. "__type__": "cc.Vec3",
  2759. "x": 1,
  2760. "y": 1,
  2761. "z": 1
  2762. },
  2763. "_mobility": 0,
  2764. "_layer": 33554432,
  2765. "_euler": {
  2766. "__type__": "cc.Vec3",
  2767. "x": 0,
  2768. "y": 0,
  2769. "z": 0
  2770. },
  2771. "_id": "f0KRnms1xC5pYL3gimKdBQ"
  2772. },
  2773. {
  2774. "__type__": "cc.UITransform",
  2775. "_name": "",
  2776. "_objFlags": 0,
  2777. "node": {
  2778. "__id__": 60
  2779. },
  2780. "_enabled": true,
  2781. "__prefab": null,
  2782. "_contentSize": {
  2783. "__type__": "cc.Size",
  2784. "width": 55,
  2785. "height": 332
  2786. },
  2787. "_anchorPoint": {
  2788. "__type__": "cc.Vec2",
  2789. "x": 0.5,
  2790. "y": 0.5
  2791. },
  2792. "_id": "ebRmExLWpJZKQbqlBiCpLQ"
  2793. },
  2794. {
  2795. "__type__": "cc.Sprite",
  2796. "_name": "",
  2797. "_objFlags": 0,
  2798. "node": {
  2799. "__id__": 60
  2800. },
  2801. "_enabled": true,
  2802. "__prefab": null,
  2803. "_customMaterial": null,
  2804. "_srcBlendFactor": 2,
  2805. "_dstBlendFactor": 4,
  2806. "_color": {
  2807. "__type__": "cc.Color",
  2808. "r": 255,
  2809. "g": 255,
  2810. "b": 255,
  2811. "a": 255
  2812. },
  2813. "_spriteFrame": {
  2814. "__uuid__": "8e999b18-fdb8-4b31-943f-cd9d689588c9@f9941",
  2815. "__expectedType__": "cc.SpriteFrame"
  2816. },
  2817. "_type": 0,
  2818. "_fillType": 0,
  2819. "_sizeMode": 1,
  2820. "_fillCenter": {
  2821. "__type__": "cc.Vec2",
  2822. "x": 0,
  2823. "y": 0
  2824. },
  2825. "_fillStart": 0,
  2826. "_fillRange": 0,
  2827. "_isTrimmedMode": true,
  2828. "_useGrayscale": false,
  2829. "_atlas": null,
  2830. "_id": "0cx8XnBfNHp6EJI/OsrRFd"
  2831. },
  2832. {
  2833. "__type__": "cc.RigidBody2D",
  2834. "_name": "",
  2835. "_objFlags": 0,
  2836. "node": {
  2837. "__id__": 60
  2838. },
  2839. "_enabled": true,
  2840. "__prefab": null,
  2841. "enabledContactListener": false,
  2842. "bullet": false,
  2843. "awakeOnLoad": true,
  2844. "_group": 1,
  2845. "_type": 2,
  2846. "_allowSleep": true,
  2847. "_gravityScale": 0,
  2848. "_linearDamping": 0,
  2849. "_angularDamping": 0,
  2850. "_linearVelocity": {
  2851. "__type__": "cc.Vec2",
  2852. "x": 0,
  2853. "y": 0
  2854. },
  2855. "_angularVelocity": 0,
  2856. "_fixedRotation": false,
  2857. "_id": "9emc5O22xMjLpu8d1onaHE"
  2858. },
  2859. {
  2860. "__type__": "cc.PolygonCollider2D",
  2861. "_name": "",
  2862. "_objFlags": 0,
  2863. "node": {
  2864. "__id__": 60
  2865. },
  2866. "_enabled": true,
  2867. "__prefab": null,
  2868. "tag": 0,
  2869. "_group": 1,
  2870. "_density": 1,
  2871. "_sensor": true,
  2872. "_friction": 0.2,
  2873. "_restitution": 0,
  2874. "_offset": {
  2875. "__type__": "cc.Vec2",
  2876. "x": 0,
  2877. "y": 0
  2878. },
  2879. "_points": [
  2880. {
  2881. "__type__": "cc.Vec2",
  2882. "x": -7.5,
  2883. "y": 166
  2884. },
  2885. {
  2886. "__type__": "cc.Vec2",
  2887. "x": -17.5,
  2888. "y": 161
  2889. },
  2890. {
  2891. "__type__": "cc.Vec2",
  2892. "x": -23.5,
  2893. "y": 155
  2894. },
  2895. {
  2896. "__type__": "cc.Vec2",
  2897. "x": -27.5,
  2898. "y": 147
  2899. },
  2900. {
  2901. "__type__": "cc.Vec2",
  2902. "x": -27.5,
  2903. "y": 122
  2904. },
  2905. {
  2906. "__type__": "cc.Vec2",
  2907. "x": -23.5,
  2908. "y": 115
  2909. },
  2910. {
  2911. "__type__": "cc.Vec2",
  2912. "x": -23.5,
  2913. "y": 111
  2914. },
  2915. {
  2916. "__type__": "cc.Vec2",
  2917. "x": -21.5,
  2918. "y": 109
  2919. },
  2920. {
  2921. "__type__": "cc.Vec2",
  2922. "x": -17.5,
  2923. "y": 93
  2924. },
  2925. {
  2926. "__type__": "cc.Vec2",
  2927. "x": -15.5,
  2928. "y": 89
  2929. },
  2930. {
  2931. "__type__": "cc.Vec2",
  2932. "x": -12.5,
  2933. "y": 88
  2934. },
  2935. {
  2936. "__type__": "cc.Vec2",
  2937. "x": -12.5,
  2938. "y": -161
  2939. },
  2940. {
  2941. "__type__": "cc.Vec2",
  2942. "x": -7.5,
  2943. "y": -166
  2944. },
  2945. {
  2946. "__type__": "cc.Vec2",
  2947. "x": 7.5,
  2948. "y": -166
  2949. },
  2950. {
  2951. "__type__": "cc.Vec2",
  2952. "x": 12.5,
  2953. "y": -161
  2954. },
  2955. {
  2956. "__type__": "cc.Vec2",
  2957. "x": 12.5,
  2958. "y": 88
  2959. },
  2960. {
  2961. "__type__": "cc.Vec2",
  2962. "x": 16.5,
  2963. "y": 92
  2964. },
  2965. {
  2966. "__type__": "cc.Vec2",
  2967. "x": 24.5,
  2968. "y": 117
  2969. },
  2970. {
  2971. "__type__": "cc.Vec2",
  2972. "x": 27.5,
  2973. "y": 122
  2974. },
  2975. {
  2976. "__type__": "cc.Vec2",
  2977. "x": 27.5,
  2978. "y": 147
  2979. },
  2980. {
  2981. "__type__": "cc.Vec2",
  2982. "x": 21.5,
  2983. "y": 158
  2984. },
  2985. {
  2986. "__type__": "cc.Vec2",
  2987. "x": 8.5,
  2988. "y": 166
  2989. }
  2990. ],
  2991. "_id": "d1lvfGq3hHkpnsCHkLV2Iy"
  2992. },
  2993. {
  2994. "__type__": "307feDtKo5PL6cSMgSx01+a",
  2995. "_name": "",
  2996. "_objFlags": 0,
  2997. "node": {
  2998. "__id__": 60
  2999. },
  3000. "_enabled": true,
  3001. "__prefab": null,
  3002. "_id": "8841cTFPlJ7rtNH7VjEZc3"
  3003. },
  3004. {
  3005. "__type__": "cc.Node",
  3006. "_name": "huochai-007",
  3007. "_objFlags": 0,
  3008. "_parent": {
  3009. "__id__": 23
  3010. },
  3011. "_children": [],
  3012. "_active": true,
  3013. "_components": [
  3014. {
  3015. "__id__": 67
  3016. },
  3017. {
  3018. "__id__": 68
  3019. },
  3020. {
  3021. "__id__": 69
  3022. },
  3023. {
  3024. "__id__": 70
  3025. },
  3026. {
  3027. "__id__": 71
  3028. }
  3029. ],
  3030. "_prefab": null,
  3031. "_lpos": {
  3032. "__type__": "cc.Vec3",
  3033. "x": 59.5,
  3034. "y": 9,
  3035. "z": 0
  3036. },
  3037. "_lrot": {
  3038. "__type__": "cc.Quat",
  3039. "x": 0,
  3040. "y": 0,
  3041. "z": 0,
  3042. "w": 1
  3043. },
  3044. "_lscale": {
  3045. "__type__": "cc.Vec3",
  3046. "x": 1,
  3047. "y": 1,
  3048. "z": 1
  3049. },
  3050. "_mobility": 0,
  3051. "_layer": 33554432,
  3052. "_euler": {
  3053. "__type__": "cc.Vec3",
  3054. "x": 0,
  3055. "y": 0,
  3056. "z": 0
  3057. },
  3058. "_id": "26k+raTIhHULpZBQee+3iU"
  3059. },
  3060. {
  3061. "__type__": "cc.UITransform",
  3062. "_name": "",
  3063. "_objFlags": 0,
  3064. "node": {
  3065. "__id__": 66
  3066. },
  3067. "_enabled": true,
  3068. "__prefab": null,
  3069. "_contentSize": {
  3070. "__type__": "cc.Size",
  3071. "width": 55,
  3072. "height": 332
  3073. },
  3074. "_anchorPoint": {
  3075. "__type__": "cc.Vec2",
  3076. "x": 0.5,
  3077. "y": 0.5
  3078. },
  3079. "_id": "7e0namQdFAeqtf5nA8AO1D"
  3080. },
  3081. {
  3082. "__type__": "cc.Sprite",
  3083. "_name": "",
  3084. "_objFlags": 0,
  3085. "node": {
  3086. "__id__": 66
  3087. },
  3088. "_enabled": true,
  3089. "__prefab": null,
  3090. "_customMaterial": null,
  3091. "_srcBlendFactor": 2,
  3092. "_dstBlendFactor": 4,
  3093. "_color": {
  3094. "__type__": "cc.Color",
  3095. "r": 255,
  3096. "g": 255,
  3097. "b": 255,
  3098. "a": 255
  3099. },
  3100. "_spriteFrame": {
  3101. "__uuid__": "8e999b18-fdb8-4b31-943f-cd9d689588c9@f9941",
  3102. "__expectedType__": "cc.SpriteFrame"
  3103. },
  3104. "_type": 0,
  3105. "_fillType": 0,
  3106. "_sizeMode": 1,
  3107. "_fillCenter": {
  3108. "__type__": "cc.Vec2",
  3109. "x": 0,
  3110. "y": 0
  3111. },
  3112. "_fillStart": 0,
  3113. "_fillRange": 0,
  3114. "_isTrimmedMode": true,
  3115. "_useGrayscale": false,
  3116. "_atlas": null,
  3117. "_id": "278gyAM7ZJX73MN6rsI22s"
  3118. },
  3119. {
  3120. "__type__": "cc.RigidBody2D",
  3121. "_name": "",
  3122. "_objFlags": 0,
  3123. "node": {
  3124. "__id__": 66
  3125. },
  3126. "_enabled": true,
  3127. "__prefab": null,
  3128. "enabledContactListener": false,
  3129. "bullet": false,
  3130. "awakeOnLoad": true,
  3131. "_group": 1,
  3132. "_type": 2,
  3133. "_allowSleep": true,
  3134. "_gravityScale": 0,
  3135. "_linearDamping": 0,
  3136. "_angularDamping": 0,
  3137. "_linearVelocity": {
  3138. "__type__": "cc.Vec2",
  3139. "x": 0,
  3140. "y": 0
  3141. },
  3142. "_angularVelocity": 0,
  3143. "_fixedRotation": false,
  3144. "_id": "feU2X3lfxJub4HWUQqA6Oy"
  3145. },
  3146. {
  3147. "__type__": "cc.PolygonCollider2D",
  3148. "_name": "",
  3149. "_objFlags": 0,
  3150. "node": {
  3151. "__id__": 66
  3152. },
  3153. "_enabled": true,
  3154. "__prefab": null,
  3155. "tag": 0,
  3156. "_group": 1,
  3157. "_density": 1,
  3158. "_sensor": true,
  3159. "_friction": 0.2,
  3160. "_restitution": 0,
  3161. "_offset": {
  3162. "__type__": "cc.Vec2",
  3163. "x": 0,
  3164. "y": 0
  3165. },
  3166. "_points": [
  3167. {
  3168. "__type__": "cc.Vec2",
  3169. "x": -7.5,
  3170. "y": 166
  3171. },
  3172. {
  3173. "__type__": "cc.Vec2",
  3174. "x": -17.5,
  3175. "y": 161
  3176. },
  3177. {
  3178. "__type__": "cc.Vec2",
  3179. "x": -23.5,
  3180. "y": 155
  3181. },
  3182. {
  3183. "__type__": "cc.Vec2",
  3184. "x": -27.5,
  3185. "y": 147
  3186. },
  3187. {
  3188. "__type__": "cc.Vec2",
  3189. "x": -27.5,
  3190. "y": 122
  3191. },
  3192. {
  3193. "__type__": "cc.Vec2",
  3194. "x": -23.5,
  3195. "y": 115
  3196. },
  3197. {
  3198. "__type__": "cc.Vec2",
  3199. "x": -23.5,
  3200. "y": 111
  3201. },
  3202. {
  3203. "__type__": "cc.Vec2",
  3204. "x": -21.5,
  3205. "y": 109
  3206. },
  3207. {
  3208. "__type__": "cc.Vec2",
  3209. "x": -17.5,
  3210. "y": 93
  3211. },
  3212. {
  3213. "__type__": "cc.Vec2",
  3214. "x": -15.5,
  3215. "y": 89
  3216. },
  3217. {
  3218. "__type__": "cc.Vec2",
  3219. "x": -12.5,
  3220. "y": 88
  3221. },
  3222. {
  3223. "__type__": "cc.Vec2",
  3224. "x": -12.5,
  3225. "y": -161
  3226. },
  3227. {
  3228. "__type__": "cc.Vec2",
  3229. "x": -7.5,
  3230. "y": -166
  3231. },
  3232. {
  3233. "__type__": "cc.Vec2",
  3234. "x": 7.5,
  3235. "y": -166
  3236. },
  3237. {
  3238. "__type__": "cc.Vec2",
  3239. "x": 12.5,
  3240. "y": -161
  3241. },
  3242. {
  3243. "__type__": "cc.Vec2",
  3244. "x": 12.5,
  3245. "y": 88
  3246. },
  3247. {
  3248. "__type__": "cc.Vec2",
  3249. "x": 16.5,
  3250. "y": 92
  3251. },
  3252. {
  3253. "__type__": "cc.Vec2",
  3254. "x": 24.5,
  3255. "y": 117
  3256. },
  3257. {
  3258. "__type__": "cc.Vec2",
  3259. "x": 27.5,
  3260. "y": 122
  3261. },
  3262. {
  3263. "__type__": "cc.Vec2",
  3264. "x": 27.5,
  3265. "y": 147
  3266. },
  3267. {
  3268. "__type__": "cc.Vec2",
  3269. "x": 21.5,
  3270. "y": 158
  3271. },
  3272. {
  3273. "__type__": "cc.Vec2",
  3274. "x": 8.5,
  3275. "y": 166
  3276. }
  3277. ],
  3278. "_id": "0asrbxXYNIL4ddCBVyH55W"
  3279. },
  3280. {
  3281. "__type__": "307feDtKo5PL6cSMgSx01+a",
  3282. "_name": "",
  3283. "_objFlags": 0,
  3284. "node": {
  3285. "__id__": 66
  3286. },
  3287. "_enabled": true,
  3288. "__prefab": null,
  3289. "_id": "72LLfAsRRH4pUHkRNRGl0i"
  3290. },
  3291. {
  3292. "__type__": "cc.Node",
  3293. "_name": "huochai-008",
  3294. "_objFlags": 0,
  3295. "_parent": {
  3296. "__id__": 23
  3297. },
  3298. "_children": [],
  3299. "_active": true,
  3300. "_components": [
  3301. {
  3302. "__id__": 73
  3303. },
  3304. {
  3305. "__id__": 74
  3306. },
  3307. {
  3308. "__id__": 75
  3309. },
  3310. {
  3311. "__id__": 76
  3312. },
  3313. {
  3314. "__id__": 77
  3315. }
  3316. ],
  3317. "_prefab": null,
  3318. "_lpos": {
  3319. "__type__": "cc.Vec3",
  3320. "x": 84.5,
  3321. "y": 9,
  3322. "z": 0
  3323. },
  3324. "_lrot": {
  3325. "__type__": "cc.Quat",
  3326. "x": 0,
  3327. "y": 0,
  3328. "z": 0,
  3329. "w": 1
  3330. },
  3331. "_lscale": {
  3332. "__type__": "cc.Vec3",
  3333. "x": 1,
  3334. "y": 1,
  3335. "z": 1
  3336. },
  3337. "_mobility": 0,
  3338. "_layer": 33554432,
  3339. "_euler": {
  3340. "__type__": "cc.Vec3",
  3341. "x": 0,
  3342. "y": 0,
  3343. "z": 0
  3344. },
  3345. "_id": "aeEzNkxENHrL/H+ADW8zWO"
  3346. },
  3347. {
  3348. "__type__": "cc.UITransform",
  3349. "_name": "",
  3350. "_objFlags": 0,
  3351. "node": {
  3352. "__id__": 72
  3353. },
  3354. "_enabled": true,
  3355. "__prefab": null,
  3356. "_contentSize": {
  3357. "__type__": "cc.Size",
  3358. "width": 55,
  3359. "height": 332
  3360. },
  3361. "_anchorPoint": {
  3362. "__type__": "cc.Vec2",
  3363. "x": 0.5,
  3364. "y": 0.5
  3365. },
  3366. "_id": "cbcwK8zEBN9LeqyQSGWpYM"
  3367. },
  3368. {
  3369. "__type__": "cc.Sprite",
  3370. "_name": "",
  3371. "_objFlags": 0,
  3372. "node": {
  3373. "__id__": 72
  3374. },
  3375. "_enabled": true,
  3376. "__prefab": null,
  3377. "_customMaterial": null,
  3378. "_srcBlendFactor": 2,
  3379. "_dstBlendFactor": 4,
  3380. "_color": {
  3381. "__type__": "cc.Color",
  3382. "r": 255,
  3383. "g": 255,
  3384. "b": 255,
  3385. "a": 255
  3386. },
  3387. "_spriteFrame": {
  3388. "__uuid__": "8e999b18-fdb8-4b31-943f-cd9d689588c9@f9941",
  3389. "__expectedType__": "cc.SpriteFrame"
  3390. },
  3391. "_type": 0,
  3392. "_fillType": 0,
  3393. "_sizeMode": 1,
  3394. "_fillCenter": {
  3395. "__type__": "cc.Vec2",
  3396. "x": 0,
  3397. "y": 0
  3398. },
  3399. "_fillStart": 0,
  3400. "_fillRange": 0,
  3401. "_isTrimmedMode": true,
  3402. "_useGrayscale": false,
  3403. "_atlas": null,
  3404. "_id": "a4d6jWiIRFXbiGNr5GvjRs"
  3405. },
  3406. {
  3407. "__type__": "cc.RigidBody2D",
  3408. "_name": "",
  3409. "_objFlags": 0,
  3410. "node": {
  3411. "__id__": 72
  3412. },
  3413. "_enabled": true,
  3414. "__prefab": null,
  3415. "enabledContactListener": false,
  3416. "bullet": false,
  3417. "awakeOnLoad": true,
  3418. "_group": 1,
  3419. "_type": 2,
  3420. "_allowSleep": true,
  3421. "_gravityScale": 0,
  3422. "_linearDamping": 0,
  3423. "_angularDamping": 0,
  3424. "_linearVelocity": {
  3425. "__type__": "cc.Vec2",
  3426. "x": 0,
  3427. "y": 0
  3428. },
  3429. "_angularVelocity": 0,
  3430. "_fixedRotation": false,
  3431. "_id": "5ezwHjqjtKI66JLFrM/wNf"
  3432. },
  3433. {
  3434. "__type__": "cc.PolygonCollider2D",
  3435. "_name": "",
  3436. "_objFlags": 0,
  3437. "node": {
  3438. "__id__": 72
  3439. },
  3440. "_enabled": true,
  3441. "__prefab": null,
  3442. "tag": 0,
  3443. "_group": 1,
  3444. "_density": 1,
  3445. "_sensor": true,
  3446. "_friction": 0.2,
  3447. "_restitution": 0,
  3448. "_offset": {
  3449. "__type__": "cc.Vec2",
  3450. "x": 0,
  3451. "y": 0
  3452. },
  3453. "_points": [
  3454. {
  3455. "__type__": "cc.Vec2",
  3456. "x": -7.5,
  3457. "y": 166
  3458. },
  3459. {
  3460. "__type__": "cc.Vec2",
  3461. "x": -17.5,
  3462. "y": 161
  3463. },
  3464. {
  3465. "__type__": "cc.Vec2",
  3466. "x": -23.5,
  3467. "y": 155
  3468. },
  3469. {
  3470. "__type__": "cc.Vec2",
  3471. "x": -27.5,
  3472. "y": 147
  3473. },
  3474. {
  3475. "__type__": "cc.Vec2",
  3476. "x": -27.5,
  3477. "y": 122
  3478. },
  3479. {
  3480. "__type__": "cc.Vec2",
  3481. "x": -23.5,
  3482. "y": 115
  3483. },
  3484. {
  3485. "__type__": "cc.Vec2",
  3486. "x": -23.5,
  3487. "y": 111
  3488. },
  3489. {
  3490. "__type__": "cc.Vec2",
  3491. "x": -21.5,
  3492. "y": 109
  3493. },
  3494. {
  3495. "__type__": "cc.Vec2",
  3496. "x": -17.5,
  3497. "y": 93
  3498. },
  3499. {
  3500. "__type__": "cc.Vec2",
  3501. "x": -15.5,
  3502. "y": 89
  3503. },
  3504. {
  3505. "__type__": "cc.Vec2",
  3506. "x": -12.5,
  3507. "y": 88
  3508. },
  3509. {
  3510. "__type__": "cc.Vec2",
  3511. "x": -12.5,
  3512. "y": -161
  3513. },
  3514. {
  3515. "__type__": "cc.Vec2",
  3516. "x": -7.5,
  3517. "y": -166
  3518. },
  3519. {
  3520. "__type__": "cc.Vec2",
  3521. "x": 7.5,
  3522. "y": -166
  3523. },
  3524. {
  3525. "__type__": "cc.Vec2",
  3526. "x": 12.5,
  3527. "y": -161
  3528. },
  3529. {
  3530. "__type__": "cc.Vec2",
  3531. "x": 12.5,
  3532. "y": 88
  3533. },
  3534. {
  3535. "__type__": "cc.Vec2",
  3536. "x": 16.5,
  3537. "y": 92
  3538. },
  3539. {
  3540. "__type__": "cc.Vec2",
  3541. "x": 24.5,
  3542. "y": 117
  3543. },
  3544. {
  3545. "__type__": "cc.Vec2",
  3546. "x": 27.5,
  3547. "y": 122
  3548. },
  3549. {
  3550. "__type__": "cc.Vec2",
  3551. "x": 27.5,
  3552. "y": 147
  3553. },
  3554. {
  3555. "__type__": "cc.Vec2",
  3556. "x": 21.5,
  3557. "y": 158
  3558. },
  3559. {
  3560. "__type__": "cc.Vec2",
  3561. "x": 8.5,
  3562. "y": 166
  3563. }
  3564. ],
  3565. "_id": "bcZovtAEhFEbtqKytlSK+3"
  3566. },
  3567. {
  3568. "__type__": "307feDtKo5PL6cSMgSx01+a",
  3569. "_name": "",
  3570. "_objFlags": 0,
  3571. "node": {
  3572. "__id__": 72
  3573. },
  3574. "_enabled": true,
  3575. "__prefab": null,
  3576. "_id": "30eKKLWMFDaKseJctxQS8V"
  3577. },
  3578. {
  3579. "__type__": "cc.Node",
  3580. "_name": "huochai-009",
  3581. "_objFlags": 0,
  3582. "_parent": {
  3583. "__id__": 23
  3584. },
  3585. "_children": [],
  3586. "_active": true,
  3587. "_components": [
  3588. {
  3589. "__id__": 79
  3590. },
  3591. {
  3592. "__id__": 80
  3593. },
  3594. {
  3595. "__id__": 81
  3596. },
  3597. {
  3598. "__id__": 82
  3599. },
  3600. {
  3601. "__id__": 83
  3602. }
  3603. ],
  3604. "_prefab": null,
  3605. "_lpos": {
  3606. "__type__": "cc.Vec3",
  3607. "x": 109.5,
  3608. "y": 9,
  3609. "z": 0
  3610. },
  3611. "_lrot": {
  3612. "__type__": "cc.Quat",
  3613. "x": 0,
  3614. "y": 0,
  3615. "z": 0,
  3616. "w": 1
  3617. },
  3618. "_lscale": {
  3619. "__type__": "cc.Vec3",
  3620. "x": 1,
  3621. "y": 1,
  3622. "z": 1
  3623. },
  3624. "_mobility": 0,
  3625. "_layer": 33554432,
  3626. "_euler": {
  3627. "__type__": "cc.Vec3",
  3628. "x": 0,
  3629. "y": 0,
  3630. "z": 0
  3631. },
  3632. "_id": "433uP2XdZCL6oEKy+puT5D"
  3633. },
  3634. {
  3635. "__type__": "cc.UITransform",
  3636. "_name": "",
  3637. "_objFlags": 0,
  3638. "node": {
  3639. "__id__": 78
  3640. },
  3641. "_enabled": true,
  3642. "__prefab": null,
  3643. "_contentSize": {
  3644. "__type__": "cc.Size",
  3645. "width": 55,
  3646. "height": 332
  3647. },
  3648. "_anchorPoint": {
  3649. "__type__": "cc.Vec2",
  3650. "x": 0.5,
  3651. "y": 0.5
  3652. },
  3653. "_id": "bdPTa3p9dGRotQNYFs7YN+"
  3654. },
  3655. {
  3656. "__type__": "cc.Sprite",
  3657. "_name": "",
  3658. "_objFlags": 0,
  3659. "node": {
  3660. "__id__": 78
  3661. },
  3662. "_enabled": true,
  3663. "__prefab": null,
  3664. "_customMaterial": null,
  3665. "_srcBlendFactor": 2,
  3666. "_dstBlendFactor": 4,
  3667. "_color": {
  3668. "__type__": "cc.Color",
  3669. "r": 255,
  3670. "g": 255,
  3671. "b": 255,
  3672. "a": 255
  3673. },
  3674. "_spriteFrame": {
  3675. "__uuid__": "8e999b18-fdb8-4b31-943f-cd9d689588c9@f9941",
  3676. "__expectedType__": "cc.SpriteFrame"
  3677. },
  3678. "_type": 0,
  3679. "_fillType": 0,
  3680. "_sizeMode": 1,
  3681. "_fillCenter": {
  3682. "__type__": "cc.Vec2",
  3683. "x": 0,
  3684. "y": 0
  3685. },
  3686. "_fillStart": 0,
  3687. "_fillRange": 0,
  3688. "_isTrimmedMode": true,
  3689. "_useGrayscale": false,
  3690. "_atlas": null,
  3691. "_id": "fab+oXLJRGAJfeW9XULFnq"
  3692. },
  3693. {
  3694. "__type__": "cc.RigidBody2D",
  3695. "_name": "",
  3696. "_objFlags": 0,
  3697. "node": {
  3698. "__id__": 78
  3699. },
  3700. "_enabled": true,
  3701. "__prefab": null,
  3702. "enabledContactListener": false,
  3703. "bullet": false,
  3704. "awakeOnLoad": true,
  3705. "_group": 1,
  3706. "_type": 2,
  3707. "_allowSleep": true,
  3708. "_gravityScale": 0,
  3709. "_linearDamping": 0,
  3710. "_angularDamping": 0,
  3711. "_linearVelocity": {
  3712. "__type__": "cc.Vec2",
  3713. "x": 0,
  3714. "y": 0
  3715. },
  3716. "_angularVelocity": 0,
  3717. "_fixedRotation": false,
  3718. "_id": "9b5BjSF59Et4LXEFvfSvbD"
  3719. },
  3720. {
  3721. "__type__": "cc.PolygonCollider2D",
  3722. "_name": "",
  3723. "_objFlags": 0,
  3724. "node": {
  3725. "__id__": 78
  3726. },
  3727. "_enabled": true,
  3728. "__prefab": null,
  3729. "tag": 0,
  3730. "_group": 1,
  3731. "_density": 1,
  3732. "_sensor": true,
  3733. "_friction": 0.2,
  3734. "_restitution": 0,
  3735. "_offset": {
  3736. "__type__": "cc.Vec2",
  3737. "x": 0,
  3738. "y": 0
  3739. },
  3740. "_points": [
  3741. {
  3742. "__type__": "cc.Vec2",
  3743. "x": -7.5,
  3744. "y": 166
  3745. },
  3746. {
  3747. "__type__": "cc.Vec2",
  3748. "x": -17.5,
  3749. "y": 161
  3750. },
  3751. {
  3752. "__type__": "cc.Vec2",
  3753. "x": -23.5,
  3754. "y": 155
  3755. },
  3756. {
  3757. "__type__": "cc.Vec2",
  3758. "x": -27.5,
  3759. "y": 147
  3760. },
  3761. {
  3762. "__type__": "cc.Vec2",
  3763. "x": -27.5,
  3764. "y": 122
  3765. },
  3766. {
  3767. "__type__": "cc.Vec2",
  3768. "x": -23.5,
  3769. "y": 115
  3770. },
  3771. {
  3772. "__type__": "cc.Vec2",
  3773. "x": -23.5,
  3774. "y": 111
  3775. },
  3776. {
  3777. "__type__": "cc.Vec2",
  3778. "x": -21.5,
  3779. "y": 109
  3780. },
  3781. {
  3782. "__type__": "cc.Vec2",
  3783. "x": -17.5,
  3784. "y": 93
  3785. },
  3786. {
  3787. "__type__": "cc.Vec2",
  3788. "x": -15.5,
  3789. "y": 89
  3790. },
  3791. {
  3792. "__type__": "cc.Vec2",
  3793. "x": -12.5,
  3794. "y": 88
  3795. },
  3796. {
  3797. "__type__": "cc.Vec2",
  3798. "x": -12.5,
  3799. "y": -161
  3800. },
  3801. {
  3802. "__type__": "cc.Vec2",
  3803. "x": -7.5,
  3804. "y": -166
  3805. },
  3806. {
  3807. "__type__": "cc.Vec2",
  3808. "x": 7.5,
  3809. "y": -166
  3810. },
  3811. {
  3812. "__type__": "cc.Vec2",
  3813. "x": 12.5,
  3814. "y": -161
  3815. },
  3816. {
  3817. "__type__": "cc.Vec2",
  3818. "x": 12.5,
  3819. "y": 88
  3820. },
  3821. {
  3822. "__type__": "cc.Vec2",
  3823. "x": 16.5,
  3824. "y": 92
  3825. },
  3826. {
  3827. "__type__": "cc.Vec2",
  3828. "x": 24.5,
  3829. "y": 117
  3830. },
  3831. {
  3832. "__type__": "cc.Vec2",
  3833. "x": 27.5,
  3834. "y": 122
  3835. },
  3836. {
  3837. "__type__": "cc.Vec2",
  3838. "x": 27.5,
  3839. "y": 147
  3840. },
  3841. {
  3842. "__type__": "cc.Vec2",
  3843. "x": 21.5,
  3844. "y": 158
  3845. },
  3846. {
  3847. "__type__": "cc.Vec2",
  3848. "x": 8.5,
  3849. "y": 166
  3850. }
  3851. ],
  3852. "_id": "3cdVlEodJC27nmx0L+b/wJ"
  3853. },
  3854. {
  3855. "__type__": "307feDtKo5PL6cSMgSx01+a",
  3856. "_name": "",
  3857. "_objFlags": 0,
  3858. "node": {
  3859. "__id__": 78
  3860. },
  3861. "_enabled": true,
  3862. "__prefab": null,
  3863. "_id": "8fbfA77ZBJIKq+aMLdLIrj"
  3864. },
  3865. {
  3866. "__type__": "cc.UITransform",
  3867. "_name": "",
  3868. "_objFlags": 0,
  3869. "node": {
  3870. "__id__": 23
  3871. },
  3872. "_enabled": true,
  3873. "__prefab": null,
  3874. "_contentSize": {
  3875. "__type__": "cc.Size",
  3876. "width": 286,
  3877. "height": 363
  3878. },
  3879. "_anchorPoint": {
  3880. "__type__": "cc.Vec2",
  3881. "x": 0.5,
  3882. "y": 0.5
  3883. },
  3884. "_id": "34v0b5paZBuZcDIMK89yUa"
  3885. },
  3886. {
  3887. "__type__": "cc.Sprite",
  3888. "_name": "",
  3889. "_objFlags": 0,
  3890. "node": {
  3891. "__id__": 23
  3892. },
  3893. "_enabled": true,
  3894. "__prefab": null,
  3895. "_customMaterial": null,
  3896. "_srcBlendFactor": 2,
  3897. "_dstBlendFactor": 4,
  3898. "_color": {
  3899. "__type__": "cc.Color",
  3900. "r": 255,
  3901. "g": 255,
  3902. "b": 255,
  3903. "a": 255
  3904. },
  3905. "_spriteFrame": {
  3906. "__uuid__": "dd539c70-2e23-413c-9f62-f6ce3d469072@f9941",
  3907. "__expectedType__": "cc.SpriteFrame"
  3908. },
  3909. "_type": 0,
  3910. "_fillType": 0,
  3911. "_sizeMode": 0,
  3912. "_fillCenter": {
  3913. "__type__": "cc.Vec2",
  3914. "x": 0,
  3915. "y": 0
  3916. },
  3917. "_fillStart": 0,
  3918. "_fillRange": 0,
  3919. "_isTrimmedMode": true,
  3920. "_useGrayscale": false,
  3921. "_atlas": null,
  3922. "_id": "0398XvG7NM8I/7WjXdlVa5"
  3923. },
  3924. {
  3925. "__type__": "cc.Node",
  3926. "_name": "huochaihe1",
  3927. "_objFlags": 0,
  3928. "_parent": {
  3929. "__id__": 22
  3930. },
  3931. "_children": [],
  3932. "_active": true,
  3933. "_components": [
  3934. {
  3935. "__id__": 87
  3936. },
  3937. {
  3938. "__id__": 88
  3939. }
  3940. ],
  3941. "_prefab": null,
  3942. "_lpos": {
  3943. "__type__": "cc.Vec3",
  3944. "x": -529.5630000000002,
  3945. "y": -80.00000000000011,
  3946. "z": 0
  3947. },
  3948. "_lrot": {
  3949. "__type__": "cc.Quat",
  3950. "x": 0,
  3951. "y": 0,
  3952. "z": 0,
  3953. "w": 1
  3954. },
  3955. "_lscale": {
  3956. "__type__": "cc.Vec3",
  3957. "x": 1,
  3958. "y": 1,
  3959. "z": 1
  3960. },
  3961. "_mobility": 0,
  3962. "_layer": 33554432,
  3963. "_euler": {
  3964. "__type__": "cc.Vec3",
  3965. "x": 0,
  3966. "y": 0,
  3967. "z": 0
  3968. },
  3969. "_id": "23DB3WyTBHS4mAf9VhG62c"
  3970. },
  3971. {
  3972. "__type__": "cc.UITransform",
  3973. "_name": "",
  3974. "_objFlags": 0,
  3975. "node": {
  3976. "__id__": 86
  3977. },
  3978. "_enabled": true,
  3979. "__prefab": null,
  3980. "_contentSize": {
  3981. "__type__": "cc.Size",
  3982. "width": 330,
  3983. "height": 401
  3984. },
  3985. "_anchorPoint": {
  3986. "__type__": "cc.Vec2",
  3987. "x": 0.5,
  3988. "y": 0.5
  3989. },
  3990. "_id": "9duMTYR8BOF4X0stZ4ZdFa"
  3991. },
  3992. {
  3993. "__type__": "cc.Sprite",
  3994. "_name": "",
  3995. "_objFlags": 0,
  3996. "node": {
  3997. "__id__": 86
  3998. },
  3999. "_enabled": true,
  4000. "__prefab": null,
  4001. "_customMaterial": null,
  4002. "_srcBlendFactor": 2,
  4003. "_dstBlendFactor": 4,
  4004. "_color": {
  4005. "__type__": "cc.Color",
  4006. "r": 255,
  4007. "g": 255,
  4008. "b": 255,
  4009. "a": 255
  4010. },
  4011. "_spriteFrame": {
  4012. "__uuid__": "c5a396e6-acc6-4c34-9d8b-a119e6dbff47@f9941",
  4013. "__expectedType__": "cc.SpriteFrame"
  4014. },
  4015. "_type": 0,
  4016. "_fillType": 0,
  4017. "_sizeMode": 1,
  4018. "_fillCenter": {
  4019. "__type__": "cc.Vec2",
  4020. "x": 0,
  4021. "y": 0
  4022. },
  4023. "_fillStart": 0,
  4024. "_fillRange": 0,
  4025. "_isTrimmedMode": true,
  4026. "_useGrayscale": false,
  4027. "_atlas": null,
  4028. "_id": "eefm4+sllOJZbGtn8qf68W"
  4029. },
  4030. {
  4031. "__type__": "cc.UITransform",
  4032. "_name": "",
  4033. "_objFlags": 0,
  4034. "node": {
  4035. "__id__": 22
  4036. },
  4037. "_enabled": true,
  4038. "__prefab": null,
  4039. "_contentSize": {
  4040. "__type__": "cc.Size",
  4041. "width": 1408,
  4042. "height": 1220
  4043. },
  4044. "_anchorPoint": {
  4045. "__type__": "cc.Vec2",
  4046. "x": 0.5,
  4047. "y": 0.5
  4048. },
  4049. "_id": "08okfNUkNIp4SB5DxowgTk"
  4050. },
  4051. {
  4052. "__type__": "cc.Node",
  4053. "_name": "huochaiNode",
  4054. "_objFlags": 0,
  4055. "_parent": {
  4056. "__id__": 21
  4057. },
  4058. "_children": [],
  4059. "_active": true,
  4060. "_components": [
  4061. {
  4062. "__id__": 91
  4063. }
  4064. ],
  4065. "_prefab": null,
  4066. "_lpos": {
  4067. "__type__": "cc.Vec3",
  4068. "x": 0,
  4069. "y": 0,
  4070. "z": 0
  4071. },
  4072. "_lrot": {
  4073. "__type__": "cc.Quat",
  4074. "x": 0,
  4075. "y": 0,
  4076. "z": 0,
  4077. "w": 1
  4078. },
  4079. "_lscale": {
  4080. "__type__": "cc.Vec3",
  4081. "x": 1,
  4082. "y": 1,
  4083. "z": 1
  4084. },
  4085. "_mobility": 0,
  4086. "_layer": 33554432,
  4087. "_euler": {
  4088. "__type__": "cc.Vec3",
  4089. "x": 0,
  4090. "y": 0,
  4091. "z": 0
  4092. },
  4093. "_id": "f0bwqTiw1D74nhgBEe8Wev"
  4094. },
  4095. {
  4096. "__type__": "cc.UITransform",
  4097. "_name": "",
  4098. "_objFlags": 0,
  4099. "node": {
  4100. "__id__": 90
  4101. },
  4102. "_enabled": true,
  4103. "__prefab": null,
  4104. "_contentSize": {
  4105. "__type__": "cc.Size",
  4106. "width": 1408,
  4107. "height": 1220
  4108. },
  4109. "_anchorPoint": {
  4110. "__type__": "cc.Vec2",
  4111. "x": 0.5,
  4112. "y": 0.5
  4113. },
  4114. "_id": "06pB1Lu9VJ/bySo5SAIqxX"
  4115. },
  4116. {
  4117. "__type__": "cc.Node",
  4118. "_name": "imgNode",
  4119. "_objFlags": 0,
  4120. "_parent": {
  4121. "__id__": 21
  4122. },
  4123. "_children": [],
  4124. "_active": true,
  4125. "_components": [
  4126. {
  4127. "__id__": 93
  4128. },
  4129. {
  4130. "__id__": 94
  4131. }
  4132. ],
  4133. "_prefab": null,
  4134. "_lpos": {
  4135. "__type__": "cc.Vec3",
  4136. "x": 0,
  4137. "y": 0,
  4138. "z": 0
  4139. },
  4140. "_lrot": {
  4141. "__type__": "cc.Quat",
  4142. "x": 0,
  4143. "y": 0,
  4144. "z": 0,
  4145. "w": 1
  4146. },
  4147. "_lscale": {
  4148. "__type__": "cc.Vec3",
  4149. "x": 1,
  4150. "y": 1,
  4151. "z": 1
  4152. },
  4153. "_mobility": 0,
  4154. "_layer": 33554432,
  4155. "_euler": {
  4156. "__type__": "cc.Vec3",
  4157. "x": 0,
  4158. "y": 0,
  4159. "z": 0
  4160. },
  4161. "_id": "eevOK4oF1ARr5gAEeFZkJo"
  4162. },
  4163. {
  4164. "__type__": "cc.UITransform",
  4165. "_name": "",
  4166. "_objFlags": 0,
  4167. "node": {
  4168. "__id__": 92
  4169. },
  4170. "_enabled": true,
  4171. "__prefab": null,
  4172. "_contentSize": {
  4173. "__type__": "cc.Size",
  4174. "width": -80,
  4175. "height": 100
  4176. },
  4177. "_anchorPoint": {
  4178. "__type__": "cc.Vec2",
  4179. "x": 0.5,
  4180. "y": 0.5
  4181. },
  4182. "_id": "27MP4Mmw9DRrl8o0Dsd3dj"
  4183. },
  4184. {
  4185. "__type__": "cc.Layout",
  4186. "_name": "",
  4187. "_objFlags": 0,
  4188. "node": {
  4189. "__id__": 92
  4190. },
  4191. "_enabled": true,
  4192. "__prefab": null,
  4193. "_resizeMode": 1,
  4194. "_layoutType": 1,
  4195. "_cellSize": {
  4196. "__type__": "cc.Size",
  4197. "width": 40,
  4198. "height": 40
  4199. },
  4200. "_startAxis": 0,
  4201. "_paddingLeft": 0,
  4202. "_paddingRight": 0,
  4203. "_paddingTop": 0,
  4204. "_paddingBottom": 0,
  4205. "_spacingX": 80,
  4206. "_spacingY": 0,
  4207. "_verticalDirection": 1,
  4208. "_horizontalDirection": 0,
  4209. "_constraint": 0,
  4210. "_constraintNum": 2,
  4211. "_affectedByScale": true,
  4212. "_isAlign": false,
  4213. "_id": "69Z7O73k1F/6YuzsBJ5sCp"
  4214. },
  4215. {
  4216. "__type__": "cc.Node",
  4217. "_name": "img",
  4218. "_objFlags": 0,
  4219. "_parent": {
  4220. "__id__": 21
  4221. },
  4222. "_children": [
  4223. {
  4224. "__id__": 96
  4225. },
  4226. {
  4227. "__id__": 107
  4228. }
  4229. ],
  4230. "_active": false,
  4231. "_components": [
  4232. {
  4233. "__id__": 110
  4234. },
  4235. {
  4236. "__id__": 111
  4237. },
  4238. {
  4239. "__id__": 112
  4240. },
  4241. {
  4242. "__id__": 113
  4243. }
  4244. ],
  4245. "_prefab": null,
  4246. "_lpos": {
  4247. "__type__": "cc.Vec3",
  4248. "x": -4.547473508864641e-13,
  4249. "y": 75,
  4250. "z": 0
  4251. },
  4252. "_lrot": {
  4253. "__type__": "cc.Quat",
  4254. "x": 0,
  4255. "y": 0,
  4256. "z": 0,
  4257. "w": 1
  4258. },
  4259. "_lscale": {
  4260. "__type__": "cc.Vec3",
  4261. "x": 0.9,
  4262. "y": 0.9,
  4263. "z": 1
  4264. },
  4265. "_mobility": 0,
  4266. "_layer": 33554432,
  4267. "_euler": {
  4268. "__type__": "cc.Vec3",
  4269. "x": 0,
  4270. "y": 0,
  4271. "z": 0
  4272. },
  4273. "_id": "fchwQlnFBE+afcpMWU4vhL"
  4274. },
  4275. {
  4276. "__type__": "cc.Node",
  4277. "_name": "panduan",
  4278. "_objFlags": 0,
  4279. "_parent": {
  4280. "__id__": 95
  4281. },
  4282. "_children": [
  4283. {
  4284. "__id__": 97
  4285. },
  4286. {
  4287. "__id__": 100
  4288. },
  4289. {
  4290. "__id__": 103
  4291. }
  4292. ],
  4293. "_active": true,
  4294. "_components": [
  4295. {
  4296. "__id__": 106
  4297. }
  4298. ],
  4299. "_prefab": null,
  4300. "_lpos": {
  4301. "__type__": "cc.Vec3",
  4302. "x": 0,
  4303. "y": -262.691,
  4304. "z": 0
  4305. },
  4306. "_lrot": {
  4307. "__type__": "cc.Quat",
  4308. "x": 0,
  4309. "y": 0,
  4310. "z": 0,
  4311. "w": 1
  4312. },
  4313. "_lscale": {
  4314. "__type__": "cc.Vec3",
  4315. "x": 1,
  4316. "y": 1,
  4317. "z": 1
  4318. },
  4319. "_mobility": 0,
  4320. "_layer": 33554432,
  4321. "_euler": {
  4322. "__type__": "cc.Vec3",
  4323. "x": 0,
  4324. "y": 0,
  4325. "z": 0
  4326. },
  4327. "_id": "ff8pTqO/lP2bl8SFdmGUQa"
  4328. },
  4329. {
  4330. "__type__": "cc.Node",
  4331. "_name": "cuowu",
  4332. "_objFlags": 0,
  4333. "_parent": {
  4334. "__id__": 96
  4335. },
  4336. "_children": [],
  4337. "_active": true,
  4338. "_components": [
  4339. {
  4340. "__id__": 98
  4341. },
  4342. {
  4343. "__id__": 99
  4344. }
  4345. ],
  4346. "_prefab": null,
  4347. "_lpos": {
  4348. "__type__": "cc.Vec3",
  4349. "x": 0,
  4350. "y": -260,
  4351. "z": 0
  4352. },
  4353. "_lrot": {
  4354. "__type__": "cc.Quat",
  4355. "x": 0,
  4356. "y": 0,
  4357. "z": 0,
  4358. "w": 1
  4359. },
  4360. "_lscale": {
  4361. "__type__": "cc.Vec3",
  4362. "x": 1.5,
  4363. "y": 1.5,
  4364. "z": 1
  4365. },
  4366. "_mobility": 0,
  4367. "_layer": 33554432,
  4368. "_euler": {
  4369. "__type__": "cc.Vec3",
  4370. "x": 0,
  4371. "y": 0,
  4372. "z": 0
  4373. },
  4374. "_id": "4aDU1EGFZCWYDgteuxxfth"
  4375. },
  4376. {
  4377. "__type__": "cc.UITransform",
  4378. "_name": "",
  4379. "_objFlags": 0,
  4380. "node": {
  4381. "__id__": 97
  4382. },
  4383. "_enabled": true,
  4384. "__prefab": null,
  4385. "_contentSize": {
  4386. "__type__": "cc.Size",
  4387. "width": 127,
  4388. "height": 134
  4389. },
  4390. "_anchorPoint": {
  4391. "__type__": "cc.Vec2",
  4392. "x": 0.5,
  4393. "y": 0.5
  4394. },
  4395. "_id": "b0cXWroWZL3bNWdXe1dHlS"
  4396. },
  4397. {
  4398. "__type__": "cc.Sprite",
  4399. "_name": "",
  4400. "_objFlags": 0,
  4401. "node": {
  4402. "__id__": 97
  4403. },
  4404. "_enabled": true,
  4405. "__prefab": null,
  4406. "_customMaterial": null,
  4407. "_srcBlendFactor": 2,
  4408. "_dstBlendFactor": 4,
  4409. "_color": {
  4410. "__type__": "cc.Color",
  4411. "r": 255,
  4412. "g": 255,
  4413. "b": 255,
  4414. "a": 255
  4415. },
  4416. "_spriteFrame": {
  4417. "__uuid__": "fc67df85-bb1d-44e2-9fb5-abceff963cd3@f9941",
  4418. "__expectedType__": "cc.SpriteFrame"
  4419. },
  4420. "_type": 0,
  4421. "_fillType": 0,
  4422. "_sizeMode": 1,
  4423. "_fillCenter": {
  4424. "__type__": "cc.Vec2",
  4425. "x": 0,
  4426. "y": 0
  4427. },
  4428. "_fillStart": 0,
  4429. "_fillRange": 0,
  4430. "_isTrimmedMode": true,
  4431. "_useGrayscale": false,
  4432. "_atlas": null,
  4433. "_id": "d1TZaf+MRL6ozW7VenbYgK"
  4434. },
  4435. {
  4436. "__type__": "cc.Node",
  4437. "_name": "zhengque",
  4438. "_objFlags": 0,
  4439. "_parent": {
  4440. "__id__": 96
  4441. },
  4442. "_children": [],
  4443. "_active": true,
  4444. "_components": [
  4445. {
  4446. "__id__": 101
  4447. },
  4448. {
  4449. "__id__": 102
  4450. }
  4451. ],
  4452. "_prefab": null,
  4453. "_lpos": {
  4454. "__type__": "cc.Vec3",
  4455. "x": 0,
  4456. "y": -260,
  4457. "z": 0
  4458. },
  4459. "_lrot": {
  4460. "__type__": "cc.Quat",
  4461. "x": 0,
  4462. "y": 0,
  4463. "z": 0,
  4464. "w": 1
  4465. },
  4466. "_lscale": {
  4467. "__type__": "cc.Vec3",
  4468. "x": 1.5,
  4469. "y": 1.5,
  4470. "z": 1
  4471. },
  4472. "_mobility": 0,
  4473. "_layer": 33554432,
  4474. "_euler": {
  4475. "__type__": "cc.Vec3",
  4476. "x": 0,
  4477. "y": 0,
  4478. "z": 0
  4479. },
  4480. "_id": "f84HNOAQFHBKiOksi1GoP4"
  4481. },
  4482. {
  4483. "__type__": "cc.UITransform",
  4484. "_name": "",
  4485. "_objFlags": 0,
  4486. "node": {
  4487. "__id__": 100
  4488. },
  4489. "_enabled": true,
  4490. "__prefab": null,
  4491. "_contentSize": {
  4492. "__type__": "cc.Size",
  4493. "width": 180,
  4494. "height": 152
  4495. },
  4496. "_anchorPoint": {
  4497. "__type__": "cc.Vec2",
  4498. "x": 0.5,
  4499. "y": 0.5
  4500. },
  4501. "_id": "9c751O1fdIv7XZmKJS+nsU"
  4502. },
  4503. {
  4504. "__type__": "cc.Sprite",
  4505. "_name": "",
  4506. "_objFlags": 0,
  4507. "node": {
  4508. "__id__": 100
  4509. },
  4510. "_enabled": true,
  4511. "__prefab": null,
  4512. "_customMaterial": null,
  4513. "_srcBlendFactor": 2,
  4514. "_dstBlendFactor": 4,
  4515. "_color": {
  4516. "__type__": "cc.Color",
  4517. "r": 255,
  4518. "g": 255,
  4519. "b": 255,
  4520. "a": 255
  4521. },
  4522. "_spriteFrame": {
  4523. "__uuid__": "412cd389-47e5-4e91-8c1f-28bb6e773462@f9941",
  4524. "__expectedType__": "cc.SpriteFrame"
  4525. },
  4526. "_type": 0,
  4527. "_fillType": 0,
  4528. "_sizeMode": 1,
  4529. "_fillCenter": {
  4530. "__type__": "cc.Vec2",
  4531. "x": 0,
  4532. "y": 0
  4533. },
  4534. "_fillStart": 0,
  4535. "_fillRange": 0,
  4536. "_isTrimmedMode": true,
  4537. "_useGrayscale": false,
  4538. "_atlas": null,
  4539. "_id": "b8qfQmhCBFRKhn/NBOu8A4"
  4540. },
  4541. {
  4542. "__type__": "cc.Node",
  4543. "_name": "bgk",
  4544. "_objFlags": 0,
  4545. "_parent": {
  4546. "__id__": 96
  4547. },
  4548. "_children": [],
  4549. "_active": true,
  4550. "_components": [
  4551. {
  4552. "__id__": 104
  4553. },
  4554. {
  4555. "__id__": 105
  4556. }
  4557. ],
  4558. "_prefab": null,
  4559. "_lpos": {
  4560. "__type__": "cc.Vec3",
  4561. "x": 0,
  4562. "y": 235.809,
  4563. "z": 0
  4564. },
  4565. "_lrot": {
  4566. "__type__": "cc.Quat",
  4567. "x": 0,
  4568. "y": 0,
  4569. "z": 0,
  4570. "w": 1
  4571. },
  4572. "_lscale": {
  4573. "__type__": "cc.Vec3",
  4574. "x": 1,
  4575. "y": 1,
  4576. "z": 1
  4577. },
  4578. "_mobility": 0,
  4579. "_layer": 33554432,
  4580. "_euler": {
  4581. "__type__": "cc.Vec3",
  4582. "x": 0,
  4583. "y": 0,
  4584. "z": 0
  4585. },
  4586. "_id": "1aea4EUY5MEIHs4l4VIrzI"
  4587. },
  4588. {
  4589. "__type__": "cc.UITransform",
  4590. "_name": "",
  4591. "_objFlags": 0,
  4592. "node": {
  4593. "__id__": 103
  4594. },
  4595. "_enabled": true,
  4596. "__prefab": null,
  4597. "_contentSize": {
  4598. "__type__": "cc.Size",
  4599. "width": 462.8,
  4600. "height": 705
  4601. },
  4602. "_anchorPoint": {
  4603. "__type__": "cc.Vec2",
  4604. "x": 0.5,
  4605. "y": 0.5
  4606. },
  4607. "_id": "e4p1V7ssJF6IKQPaYCHojj"
  4608. },
  4609. {
  4610. "__type__": "cc.Sprite",
  4611. "_name": "",
  4612. "_objFlags": 0,
  4613. "node": {
  4614. "__id__": 103
  4615. },
  4616. "_enabled": true,
  4617. "__prefab": null,
  4618. "_customMaterial": null,
  4619. "_srcBlendFactor": 2,
  4620. "_dstBlendFactor": 4,
  4621. "_color": {
  4622. "__type__": "cc.Color",
  4623. "r": 255,
  4624. "g": 255,
  4625. "b": 255,
  4626. "a": 255
  4627. },
  4628. "_spriteFrame": {
  4629. "__uuid__": "4376934e-0c15-4a46-9d2d-5a24c8591e75@f9941",
  4630. "__expectedType__": "cc.SpriteFrame"
  4631. },
  4632. "_type": 1,
  4633. "_fillType": 0,
  4634. "_sizeMode": 0,
  4635. "_fillCenter": {
  4636. "__type__": "cc.Vec2",
  4637. "x": 0,
  4638. "y": 0
  4639. },
  4640. "_fillStart": 0,
  4641. "_fillRange": 0,
  4642. "_isTrimmedMode": true,
  4643. "_useGrayscale": false,
  4644. "_atlas": null,
  4645. "_id": "2bi0iIMsFHqYvweY7/XJJx"
  4646. },
  4647. {
  4648. "__type__": "cc.UITransform",
  4649. "_name": "",
  4650. "_objFlags": 0,
  4651. "node": {
  4652. "__id__": 96
  4653. },
  4654. "_enabled": true,
  4655. "__prefab": null,
  4656. "_contentSize": {
  4657. "__type__": "cc.Size",
  4658. "width": 100,
  4659. "height": 100
  4660. },
  4661. "_anchorPoint": {
  4662. "__type__": "cc.Vec2",
  4663. "x": 0.5,
  4664. "y": 0.5
  4665. },
  4666. "_id": "2fM36LV49Bhq5CZ9HageoL"
  4667. },
  4668. {
  4669. "__type__": "cc.Node",
  4670. "_name": "img1",
  4671. "_objFlags": 0,
  4672. "_parent": {
  4673. "__id__": 95
  4674. },
  4675. "_children": [],
  4676. "_active": true,
  4677. "_components": [
  4678. {
  4679. "__id__": 108
  4680. },
  4681. {
  4682. "__id__": 109
  4683. }
  4684. ],
  4685. "_prefab": null,
  4686. "_lpos": {
  4687. "__type__": "cc.Vec3",
  4688. "x": 0,
  4689. "y": 0,
  4690. "z": 0
  4691. },
  4692. "_lrot": {
  4693. "__type__": "cc.Quat",
  4694. "x": 0,
  4695. "y": 0,
  4696. "z": 0,
  4697. "w": 1
  4698. },
  4699. "_lscale": {
  4700. "__type__": "cc.Vec3",
  4701. "x": 1,
  4702. "y": 1,
  4703. "z": 1
  4704. },
  4705. "_mobility": 0,
  4706. "_layer": 33554432,
  4707. "_euler": {
  4708. "__type__": "cc.Vec3",
  4709. "x": 0,
  4710. "y": 0,
  4711. "z": 0
  4712. },
  4713. "_id": "4erdAyFt5Gh5ZLikKjH4gN"
  4714. },
  4715. {
  4716. "__type__": "cc.UITransform",
  4717. "_name": "",
  4718. "_objFlags": 0,
  4719. "node": {
  4720. "__id__": 107
  4721. },
  4722. "_enabled": true,
  4723. "__prefab": null,
  4724. "_contentSize": {
  4725. "__type__": "cc.Size",
  4726. "width": 393,
  4727. "height": 336
  4728. },
  4729. "_anchorPoint": {
  4730. "__type__": "cc.Vec2",
  4731. "x": 0.5,
  4732. "y": 0.5
  4733. },
  4734. "_id": "dbqbLhIeFFiLMNqqDhWKqr"
  4735. },
  4736. {
  4737. "__type__": "cc.Sprite",
  4738. "_name": "",
  4739. "_objFlags": 0,
  4740. "node": {
  4741. "__id__": 107
  4742. },
  4743. "_enabled": true,
  4744. "__prefab": null,
  4745. "_customMaterial": null,
  4746. "_srcBlendFactor": 2,
  4747. "_dstBlendFactor": 4,
  4748. "_color": {
  4749. "__type__": "cc.Color",
  4750. "r": 255,
  4751. "g": 255,
  4752. "b": 255,
  4753. "a": 255
  4754. },
  4755. "_spriteFrame": {
  4756. "__uuid__": "1dcb74f4-7c3a-46d6-9d61-fa79b944ccef@f9941",
  4757. "__expectedType__": "cc.SpriteFrame"
  4758. },
  4759. "_type": 0,
  4760. "_fillType": 0,
  4761. "_sizeMode": 1,
  4762. "_fillCenter": {
  4763. "__type__": "cc.Vec2",
  4764. "x": 0,
  4765. "y": 0
  4766. },
  4767. "_fillStart": 0,
  4768. "_fillRange": 0,
  4769. "_isTrimmedMode": true,
  4770. "_useGrayscale": false,
  4771. "_atlas": null,
  4772. "_id": "318aDivTRPSJ3JswwrU4+u"
  4773. },
  4774. {
  4775. "__type__": "cc.UITransform",
  4776. "_name": "",
  4777. "_objFlags": 0,
  4778. "node": {
  4779. "__id__": 95
  4780. },
  4781. "_enabled": true,
  4782. "__prefab": null,
  4783. "_contentSize": {
  4784. "__type__": "cc.Size",
  4785. "width": 424.6,
  4786. "height": 603.7
  4787. },
  4788. "_anchorPoint": {
  4789. "__type__": "cc.Vec2",
  4790. "x": 0.5,
  4791. "y": 0.5
  4792. },
  4793. "_id": "1d3uybu6xL1oxCrucpySMA"
  4794. },
  4795. {
  4796. "__type__": "cc.Sprite",
  4797. "_name": "",
  4798. "_objFlags": 0,
  4799. "node": {
  4800. "__id__": 95
  4801. },
  4802. "_enabled": true,
  4803. "__prefab": null,
  4804. "_customMaterial": null,
  4805. "_srcBlendFactor": 2,
  4806. "_dstBlendFactor": 4,
  4807. "_color": {
  4808. "__type__": "cc.Color",
  4809. "r": 255,
  4810. "g": 255,
  4811. "b": 255,
  4812. "a": 255
  4813. },
  4814. "_spriteFrame": null,
  4815. "_type": 0,
  4816. "_fillType": 0,
  4817. "_sizeMode": 1,
  4818. "_fillCenter": {
  4819. "__type__": "cc.Vec2",
  4820. "x": 0,
  4821. "y": 0
  4822. },
  4823. "_fillStart": 0,
  4824. "_fillRange": 0,
  4825. "_isTrimmedMode": true,
  4826. "_useGrayscale": false,
  4827. "_atlas": null,
  4828. "_id": "93Iypu5X1Po6LqRM5FubCu"
  4829. },
  4830. {
  4831. "__type__": "b821aRlFRJLCJAQYVXCmcaX",
  4832. "_name": "",
  4833. "_objFlags": 0,
  4834. "node": {
  4835. "__id__": 95
  4836. },
  4837. "_enabled": true,
  4838. "__prefab": null,
  4839. "zhengque": {
  4840. "__id__": 100
  4841. },
  4842. "cuowu": {
  4843. "__id__": 97
  4844. },
  4845. "img": {
  4846. "__id__": 107
  4847. },
  4848. "_id": "d6qQe6TC5BW5fGCWFWW5yf"
  4849. },
  4850. {
  4851. "__type__": "cc.Button",
  4852. "_name": "",
  4853. "_objFlags": 0,
  4854. "node": {
  4855. "__id__": 95
  4856. },
  4857. "_enabled": true,
  4858. "__prefab": null,
  4859. "clickEvents": [],
  4860. "_interactable": true,
  4861. "_transition": 3,
  4862. "_normalColor": {
  4863. "__type__": "cc.Color",
  4864. "r": 255,
  4865. "g": 255,
  4866. "b": 255,
  4867. "a": 255
  4868. },
  4869. "_hoverColor": {
  4870. "__type__": "cc.Color",
  4871. "r": 211,
  4872. "g": 211,
  4873. "b": 211,
  4874. "a": 255
  4875. },
  4876. "_pressedColor": {
  4877. "__type__": "cc.Color",
  4878. "r": 255,
  4879. "g": 255,
  4880. "b": 255,
  4881. "a": 255
  4882. },
  4883. "_disabledColor": {
  4884. "__type__": "cc.Color",
  4885. "r": 124,
  4886. "g": 124,
  4887. "b": 124,
  4888. "a": 255
  4889. },
  4890. "_normalSprite": null,
  4891. "_hoverSprite": null,
  4892. "_pressedSprite": null,
  4893. "_disabledSprite": null,
  4894. "_duration": 0.1,
  4895. "_zoomScale": 0.8,
  4896. "_target": null,
  4897. "_id": "57m4FLxg1CDbBP2cBz6iLt"
  4898. },
  4899. {
  4900. "__type__": "cc.UITransform",
  4901. "_name": "",
  4902. "_objFlags": 0,
  4903. "node": {
  4904. "__id__": 21
  4905. },
  4906. "_enabled": true,
  4907. "__prefab": null,
  4908. "_contentSize": {
  4909. "__type__": "cc.Size",
  4910. "width": 1408,
  4911. "height": 1220
  4912. },
  4913. "_anchorPoint": {
  4914. "__type__": "cc.Vec2",
  4915. "x": 0.5,
  4916. "y": 0.5
  4917. },
  4918. "_id": "43IOLWf89An506pMxE9by0"
  4919. },
  4920. {
  4921. "__type__": "cc.UITransform",
  4922. "_name": "",
  4923. "_objFlags": 0,
  4924. "node": {
  4925. "__id__": 17
  4926. },
  4927. "_enabled": true,
  4928. "__prefab": null,
  4929. "_contentSize": {
  4930. "__type__": "cc.Size",
  4931. "width": 2388,
  4932. "height": 1431
  4933. },
  4934. "_anchorPoint": {
  4935. "__type__": "cc.Vec2",
  4936. "x": 0.5,
  4937. "y": 0.5
  4938. },
  4939. "_id": "39yCOVgL5GOZ53wteu9knX"
  4940. },
  4941. {
  4942. "__type__": "bd5a10IebZALozd4PTC922s",
  4943. "_name": "",
  4944. "_objFlags": 0,
  4945. "node": {
  4946. "__id__": 17
  4947. },
  4948. "_enabled": true,
  4949. "__prefab": null,
  4950. "huochaiheNode": {
  4951. "__id__": 22
  4952. },
  4953. "huochaihe": {
  4954. "__id__": 23
  4955. },
  4956. "huochaiNode": {
  4957. "__id__": 90
  4958. },
  4959. "imgNode": {
  4960. "__id__": 92
  4961. },
  4962. "frameArr": [
  4963. {
  4964. "__uuid__": "1dcb74f4-7c3a-46d6-9d61-fa79b944ccef@f9941",
  4965. "__expectedType__": "cc.SpriteFrame"
  4966. },
  4967. {
  4968. "__uuid__": "b333d524-53de-456a-9a3f-989a91835e77@f9941",
  4969. "__expectedType__": "cc.SpriteFrame"
  4970. },
  4971. {
  4972. "__uuid__": "0ffecd7f-92df-4ed9-a077-fbb7bb9a7562@f9941",
  4973. "__expectedType__": "cc.SpriteFrame"
  4974. },
  4975. {
  4976. "__uuid__": "c98b6a0e-73f5-441f-86ed-3461ac361867@f9941",
  4977. "__expectedType__": "cc.SpriteFrame"
  4978. },
  4979. {
  4980. "__uuid__": "e2fa073c-fd4b-46e6-9cb5-86521e1d8bc6@f9941",
  4981. "__expectedType__": "cc.SpriteFrame"
  4982. },
  4983. {
  4984. "__uuid__": "2a56e274-1edc-44e3-9e8c-20f22ce346b1@f9941",
  4985. "__expectedType__": "cc.SpriteFrame"
  4986. },
  4987. {
  4988. "__uuid__": "906f4327-43b5-485d-a212-d2357f93e0c7@f9941",
  4989. "__expectedType__": "cc.SpriteFrame"
  4990. },
  4991. {
  4992. "__uuid__": "e54e9cf4-b61b-4ce6-8a74-8fb256009410@f9941",
  4993. "__expectedType__": "cc.SpriteFrame"
  4994. },
  4995. {
  4996. "__uuid__": "6a8b751f-0ce2-476e-83ba-17701308d3aa@f9941",
  4997. "__expectedType__": "cc.SpriteFrame"
  4998. },
  4999. {
  5000. "__uuid__": "6342f7a5-e167-48a1-9ef5-e015b13381cd@f9941",
  5001. "__expectedType__": "cc.SpriteFrame"
  5002. }
  5003. ],
  5004. "img": {
  5005. "__id__": 95
  5006. },
  5007. "_id": "5abXCLADtLAb89hiiuo7sh"
  5008. },
  5009. {
  5010. "__type__": "cc.UITransform",
  5011. "_name": "",
  5012. "_objFlags": 0,
  5013. "node": {
  5014. "__id__": 16
  5015. },
  5016. "_enabled": true,
  5017. "__prefab": null,
  5018. "_contentSize": {
  5019. "__type__": "cc.Size",
  5020. "width": 2388,
  5021. "height": 1431
  5022. },
  5023. "_anchorPoint": {
  5024. "__type__": "cc.Vec2",
  5025. "x": 0.5,
  5026. "y": 0.5
  5027. },
  5028. "_id": "71Tqt8z/xEfJYCLhKbPFsb"
  5029. },
  5030. {
  5031. "__type__": "cc.Widget",
  5032. "_name": "",
  5033. "_objFlags": 0,
  5034. "node": {
  5035. "__id__": 16
  5036. },
  5037. "_enabled": true,
  5038. "__prefab": null,
  5039. "_alignFlags": 0,
  5040. "_target": null,
  5041. "_left": 0,
  5042. "_right": 0,
  5043. "_top": 0,
  5044. "_bottom": 0,
  5045. "_horizontalCenter": 0,
  5046. "_verticalCenter": 0,
  5047. "_isAbsLeft": true,
  5048. "_isAbsRight": true,
  5049. "_isAbsTop": true,
  5050. "_isAbsBottom": true,
  5051. "_isAbsHorizontalCenter": true,
  5052. "_isAbsVerticalCenter": true,
  5053. "_originalWidth": 0,
  5054. "_originalHeight": 0,
  5055. "_alignMode": 2,
  5056. "_lockFlags": 0,
  5057. "_id": "6fMoTXz3VLCpbaZRGONph8"
  5058. },
  5059. {
  5060. "__type__": "cc.Sprite",
  5061. "_name": "",
  5062. "_objFlags": 0,
  5063. "node": {
  5064. "__id__": 16
  5065. },
  5066. "_enabled": false,
  5067. "__prefab": null,
  5068. "_customMaterial": null,
  5069. "_srcBlendFactor": 2,
  5070. "_dstBlendFactor": 4,
  5071. "_color": {
  5072. "__type__": "cc.Color",
  5073. "r": 255,
  5074. "g": 255,
  5075. "b": 255,
  5076. "a": 255
  5077. },
  5078. "_spriteFrame": {
  5079. "__uuid__": "35a7565c-706d-4926-a7bf-61cf250cebf9@f9941",
  5080. "__expectedType__": "cc.SpriteFrame"
  5081. },
  5082. "_type": 0,
  5083. "_fillType": 0,
  5084. "_sizeMode": 0,
  5085. "_fillCenter": {
  5086. "__type__": "cc.Vec2",
  5087. "x": 0,
  5088. "y": 0
  5089. },
  5090. "_fillStart": 0,
  5091. "_fillRange": 0,
  5092. "_isTrimmedMode": true,
  5093. "_useGrayscale": false,
  5094. "_atlas": null,
  5095. "_id": "2fH+aRpdxGtY3Ki3IlRRSK"
  5096. },
  5097. {
  5098. "__type__": "cc.UITransform",
  5099. "_name": "",
  5100. "_objFlags": 0,
  5101. "node": {
  5102. "__id__": 15
  5103. },
  5104. "_enabled": true,
  5105. "__prefab": null,
  5106. "_contentSize": {
  5107. "__type__": "cc.Size",
  5108. "width": 2388,
  5109. "height": 1431
  5110. },
  5111. "_anchorPoint": {
  5112. "__type__": "cc.Vec2",
  5113. "x": 0.5,
  5114. "y": 0.5
  5115. },
  5116. "_id": "a4pA9lnhVBM6Yy9vRFW474"
  5117. },
  5118. {
  5119. "__type__": "cc.Mask",
  5120. "_name": "",
  5121. "_objFlags": 0,
  5122. "node": {
  5123. "__id__": 15
  5124. },
  5125. "_enabled": true,
  5126. "__prefab": null,
  5127. "_type": 0,
  5128. "_inverted": false,
  5129. "_segments": 64,
  5130. "_alphaThreshold": 0.1,
  5131. "_id": "4f21nYdI1AprMaZ0UIAu44"
  5132. },
  5133. {
  5134. "__type__": "cc.Graphics",
  5135. "_name": "",
  5136. "_objFlags": 0,
  5137. "node": {
  5138. "__id__": 15
  5139. },
  5140. "_enabled": true,
  5141. "__prefab": null,
  5142. "_customMaterial": null,
  5143. "_srcBlendFactor": 2,
  5144. "_dstBlendFactor": 4,
  5145. "_color": {
  5146. "__type__": "cc.Color",
  5147. "r": 255,
  5148. "g": 255,
  5149. "b": 255,
  5150. "a": 255
  5151. },
  5152. "_lineWidth": 1,
  5153. "_strokeColor": {
  5154. "__type__": "cc.Color",
  5155. "r": 0,
  5156. "g": 0,
  5157. "b": 0,
  5158. "a": 255
  5159. },
  5160. "_lineJoin": 2,
  5161. "_lineCap": 0,
  5162. "_fillColor": {
  5163. "__type__": "cc.Color",
  5164. "r": 255,
  5165. "g": 255,
  5166. "b": 255,
  5167. "a": 0
  5168. },
  5169. "_miterLimit": 10,
  5170. "_id": "65oMu5ehlA5J/n/t1q1kUm"
  5171. },
  5172. {
  5173. "__type__": "cc.UITransform",
  5174. "_name": "",
  5175. "_objFlags": 0,
  5176. "node": {
  5177. "__id__": 14
  5178. },
  5179. "_enabled": true,
  5180. "__prefab": null,
  5181. "_contentSize": {
  5182. "__type__": "cc.Size",
  5183. "width": 2388,
  5184. "height": 1431
  5185. },
  5186. "_anchorPoint": {
  5187. "__type__": "cc.Vec2",
  5188. "x": 0.5,
  5189. "y": 0.5
  5190. },
  5191. "_id": "2cVVHjDb1OK5Urf580PS6M"
  5192. },
  5193. {
  5194. "__type__": "cc.Widget",
  5195. "_name": "",
  5196. "_objFlags": 0,
  5197. "node": {
  5198. "__id__": 14
  5199. },
  5200. "_enabled": true,
  5201. "__prefab": null,
  5202. "_alignFlags": 45,
  5203. "_target": null,
  5204. "_left": 0,
  5205. "_right": 0,
  5206. "_top": 0,
  5207. "_bottom": 0,
  5208. "_horizontalCenter": 0,
  5209. "_verticalCenter": 0,
  5210. "_isAbsLeft": true,
  5211. "_isAbsRight": true,
  5212. "_isAbsTop": true,
  5213. "_isAbsBottom": true,
  5214. "_isAbsHorizontalCenter": true,
  5215. "_isAbsVerticalCenter": true,
  5216. "_originalWidth": 1532,
  5217. "_originalHeight": 1336,
  5218. "_alignMode": 2,
  5219. "_lockFlags": 0,
  5220. "_id": "9aFbAReTlG26QQjumwVtfz"
  5221. },
  5222. {
  5223. "__type__": "cc.Node",
  5224. "_name": "GameEndTip",
  5225. "_objFlags": 0,
  5226. "_parent": {
  5227. "__id__": 6
  5228. },
  5229. "_children": [
  5230. {
  5231. "__id__": 126
  5232. },
  5233. {
  5234. "__id__": 130
  5235. },
  5236. {
  5237. "__id__": 133
  5238. },
  5239. {
  5240. "__id__": 136
  5241. },
  5242. {
  5243. "__id__": 144
  5244. },
  5245. {
  5246. "__id__": 152
  5247. },
  5248. {
  5249. "__id__": 155
  5250. },
  5251. {
  5252. "__id__": 158
  5253. }
  5254. ],
  5255. "_active": false,
  5256. "_components": [
  5257. {
  5258. "__id__": 161
  5259. },
  5260. {
  5261. "__id__": 162
  5262. },
  5263. {
  5264. "__id__": 163
  5265. },
  5266. {
  5267. "__id__": 164
  5268. }
  5269. ],
  5270. "_prefab": null,
  5271. "_lpos": {
  5272. "__type__": "cc.Vec3",
  5273. "x": 0,
  5274. "y": 0,
  5275. "z": 0
  5276. },
  5277. "_lrot": {
  5278. "__type__": "cc.Quat",
  5279. "x": 0,
  5280. "y": 0,
  5281. "z": 0,
  5282. "w": 1
  5283. },
  5284. "_lscale": {
  5285. "__type__": "cc.Vec3",
  5286. "x": 0.976,
  5287. "y": 0.976,
  5288. "z": 0.976
  5289. },
  5290. "_mobility": 0,
  5291. "_layer": 33554432,
  5292. "_euler": {
  5293. "__type__": "cc.Vec3",
  5294. "x": 0,
  5295. "y": 0,
  5296. "z": 0
  5297. },
  5298. "_id": "93JjkViVVAV7PtAJqtBMLi"
  5299. },
  5300. {
  5301. "__type__": "cc.Node",
  5302. "_name": "bg",
  5303. "_objFlags": 0,
  5304. "_parent": {
  5305. "__id__": 125
  5306. },
  5307. "_children": [],
  5308. "_active": true,
  5309. "_components": [
  5310. {
  5311. "__id__": 127
  5312. },
  5313. {
  5314. "__id__": 128
  5315. },
  5316. {
  5317. "__id__": 129
  5318. }
  5319. ],
  5320. "_prefab": null,
  5321. "_lpos": {
  5322. "__type__": "cc.Vec3",
  5323. "x": 0,
  5324. "y": 0,
  5325. "z": 0
  5326. },
  5327. "_lrot": {
  5328. "__type__": "cc.Quat",
  5329. "x": 0,
  5330. "y": 0,
  5331. "z": 0,
  5332. "w": 1
  5333. },
  5334. "_lscale": {
  5335. "__type__": "cc.Vec3",
  5336. "x": 1,
  5337. "y": 1,
  5338. "z": 1
  5339. },
  5340. "_mobility": 0,
  5341. "_layer": 33554432,
  5342. "_euler": {
  5343. "__type__": "cc.Vec3",
  5344. "x": 0,
  5345. "y": 0,
  5346. "z": 0
  5347. },
  5348. "_id": "31XHDuimdJEI1t+6/L7yHe"
  5349. },
  5350. {
  5351. "__type__": "cc.UITransform",
  5352. "_name": "",
  5353. "_objFlags": 0,
  5354. "node": {
  5355. "__id__": 126
  5356. },
  5357. "_enabled": true,
  5358. "__prefab": null,
  5359. "_contentSize": {
  5360. "__type__": "cc.Size",
  5361. "width": 2461.8,
  5362. "height": 1733.3
  5363. },
  5364. "_anchorPoint": {
  5365. "__type__": "cc.Vec2",
  5366. "x": 0.5,
  5367. "y": 0.5
  5368. },
  5369. "_id": "acNFpC5ydPZKWEsOyMPdXO"
  5370. },
  5371. {
  5372. "__type__": "cc.Sprite",
  5373. "_name": "",
  5374. "_objFlags": 0,
  5375. "node": {
  5376. "__id__": 126
  5377. },
  5378. "_enabled": true,
  5379. "__prefab": null,
  5380. "_customMaterial": null,
  5381. "_srcBlendFactor": 2,
  5382. "_dstBlendFactor": 4,
  5383. "_color": {
  5384. "__type__": "cc.Color",
  5385. "r": 3,
  5386. "g": 0,
  5387. "b": 0,
  5388. "a": 176
  5389. },
  5390. "_spriteFrame": {
  5391. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  5392. "__expectedType__": "cc.SpriteFrame"
  5393. },
  5394. "_type": 1,
  5395. "_fillType": 0,
  5396. "_sizeMode": 0,
  5397. "_fillCenter": {
  5398. "__type__": "cc.Vec2",
  5399. "x": 0,
  5400. "y": 0
  5401. },
  5402. "_fillStart": 0,
  5403. "_fillRange": 0,
  5404. "_isTrimmedMode": true,
  5405. "_useGrayscale": false,
  5406. "_atlas": null,
  5407. "_id": "77V4tKsVJEX7s2w4moSgIh"
  5408. },
  5409. {
  5410. "__type__": "cc.BlockInputEvents",
  5411. "_name": "",
  5412. "_objFlags": 0,
  5413. "node": {
  5414. "__id__": 126
  5415. },
  5416. "_enabled": true,
  5417. "__prefab": null,
  5418. "_id": "96mc2BGyFA77T4zTAlZavg"
  5419. },
  5420. {
  5421. "__type__": "cc.Node",
  5422. "_name": "Sprite",
  5423. "_objFlags": 0,
  5424. "_parent": {
  5425. "__id__": 125
  5426. },
  5427. "_children": [],
  5428. "_active": true,
  5429. "_components": [
  5430. {
  5431. "__id__": 131
  5432. },
  5433. {
  5434. "__id__": 132
  5435. }
  5436. ],
  5437. "_prefab": null,
  5438. "_lpos": {
  5439. "__type__": "cc.Vec3",
  5440. "x": 0,
  5441. "y": -18.761,
  5442. "z": 0
  5443. },
  5444. "_lrot": {
  5445. "__type__": "cc.Quat",
  5446. "x": 0,
  5447. "y": 0,
  5448. "z": 0,
  5449. "w": 1
  5450. },
  5451. "_lscale": {
  5452. "__type__": "cc.Vec3",
  5453. "x": 1,
  5454. "y": 1,
  5455. "z": 1
  5456. },
  5457. "_mobility": 0,
  5458. "_layer": 33554432,
  5459. "_euler": {
  5460. "__type__": "cc.Vec3",
  5461. "x": 0,
  5462. "y": 0,
  5463. "z": 0
  5464. },
  5465. "_id": "9fs+apmJpJroKm3/UD+5uF"
  5466. },
  5467. {
  5468. "__type__": "cc.UITransform",
  5469. "_name": "",
  5470. "_objFlags": 0,
  5471. "node": {
  5472. "__id__": 130
  5473. },
  5474. "_enabled": true,
  5475. "__prefab": null,
  5476. "_contentSize": {
  5477. "__type__": "cc.Size",
  5478. "width": 1311,
  5479. "height": 806
  5480. },
  5481. "_anchorPoint": {
  5482. "__type__": "cc.Vec2",
  5483. "x": 0.5,
  5484. "y": 0.5
  5485. },
  5486. "_id": "6frXPnxxJArJzX27dh8uck"
  5487. },
  5488. {
  5489. "__type__": "cc.Sprite",
  5490. "_name": "",
  5491. "_objFlags": 0,
  5492. "node": {
  5493. "__id__": 130
  5494. },
  5495. "_enabled": true,
  5496. "__prefab": null,
  5497. "_customMaterial": null,
  5498. "_srcBlendFactor": 2,
  5499. "_dstBlendFactor": 4,
  5500. "_color": {
  5501. "__type__": "cc.Color",
  5502. "r": 255,
  5503. "g": 255,
  5504. "b": 255,
  5505. "a": 255
  5506. },
  5507. "_spriteFrame": {
  5508. "__uuid__": "a372d40f-413b-48e1-ab83-223f279a207d@f9941",
  5509. "__expectedType__": "cc.SpriteFrame"
  5510. },
  5511. "_type": 0,
  5512. "_fillType": 0,
  5513. "_sizeMode": 1,
  5514. "_fillCenter": {
  5515. "__type__": "cc.Vec2",
  5516. "x": 0,
  5517. "y": 0
  5518. },
  5519. "_fillStart": 0,
  5520. "_fillRange": 0,
  5521. "_isTrimmedMode": true,
  5522. "_useGrayscale": false,
  5523. "_atlas": null,
  5524. "_id": "42+SJdTHJHfaszGgbXO9S7"
  5525. },
  5526. {
  5527. "__type__": "cc.Node",
  5528. "_name": "Label",
  5529. "_objFlags": 0,
  5530. "_parent": {
  5531. "__id__": 125
  5532. },
  5533. "_children": [],
  5534. "_active": true,
  5535. "_components": [
  5536. {
  5537. "__id__": 134
  5538. },
  5539. {
  5540. "__id__": 135
  5541. }
  5542. ],
  5543. "_prefab": null,
  5544. "_lpos": {
  5545. "__type__": "cc.Vec3",
  5546. "x": -27.538,
  5547. "y": 127.951,
  5548. "z": 0
  5549. },
  5550. "_lrot": {
  5551. "__type__": "cc.Quat",
  5552. "x": 0,
  5553. "y": 0,
  5554. "z": 0,
  5555. "w": 1
  5556. },
  5557. "_lscale": {
  5558. "__type__": "cc.Vec3",
  5559. "x": 1,
  5560. "y": 1,
  5561. "z": 1
  5562. },
  5563. "_mobility": 0,
  5564. "_layer": 33554432,
  5565. "_euler": {
  5566. "__type__": "cc.Vec3",
  5567. "x": 0,
  5568. "y": 0,
  5569. "z": 0
  5570. },
  5571. "_id": "683vYYXVNMG4zDSZ2ZL/2x"
  5572. },
  5573. {
  5574. "__type__": "cc.UITransform",
  5575. "_name": "",
  5576. "_objFlags": 0,
  5577. "node": {
  5578. "__id__": 133
  5579. },
  5580. "_enabled": true,
  5581. "__prefab": null,
  5582. "_contentSize": {
  5583. "__type__": "cc.Size",
  5584. "width": 560.454,
  5585. "height": 214.07999999999998
  5586. },
  5587. "_anchorPoint": {
  5588. "__type__": "cc.Vec2",
  5589. "x": 0.5,
  5590. "y": 0.5
  5591. },
  5592. "_id": "4bvdCXN2BJy4+tYUB808Ck"
  5593. },
  5594. {
  5595. "__type__": "cc.Label",
  5596. "_name": "",
  5597. "_objFlags": 0,
  5598. "node": {
  5599. "__id__": 133
  5600. },
  5601. "_enabled": true,
  5602. "__prefab": null,
  5603. "_customMaterial": null,
  5604. "_srcBlendFactor": 2,
  5605. "_dstBlendFactor": 4,
  5606. "_color": {
  5607. "__type__": "cc.Color",
  5608. "r": 169,
  5609. "g": 79,
  5610. "b": 9,
  5611. "a": 255
  5612. },
  5613. "_string": "当前关卡:第1关",
  5614. "_horizontalAlign": 1,
  5615. "_verticalAlign": 1,
  5616. "_actualFontSize": 65,
  5617. "_fontSize": 65,
  5618. "_fontFamily": "Arial",
  5619. "_lineHeight": 100,
  5620. "_overflow": 1,
  5621. "_enableWrapText": true,
  5622. "_font": null,
  5623. "_isSystemFontUsed": true,
  5624. "_spacingX": 0,
  5625. "_isItalic": false,
  5626. "_isBold": true,
  5627. "_isUnderline": false,
  5628. "_underlineHeight": 2,
  5629. "_cacheMode": 0,
  5630. "_id": "f9AYjkkhBO3LqvM/euMVoh"
  5631. },
  5632. {
  5633. "__type__": "cc.Node",
  5634. "_name": "BackHome",
  5635. "_objFlags": 0,
  5636. "_parent": {
  5637. "__id__": 125
  5638. },
  5639. "_children": [
  5640. {
  5641. "__id__": 137
  5642. }
  5643. ],
  5644. "_active": true,
  5645. "_components": [
  5646. {
  5647. "__id__": 140
  5648. },
  5649. {
  5650. "__id__": 141
  5651. },
  5652. {
  5653. "__id__": 142
  5654. }
  5655. ],
  5656. "_prefab": null,
  5657. "_lpos": {
  5658. "__type__": "cc.Vec3",
  5659. "x": -291.21,
  5660. "y": -267.351,
  5661. "z": 0
  5662. },
  5663. "_lrot": {
  5664. "__type__": "cc.Quat",
  5665. "x": 0,
  5666. "y": 0,
  5667. "z": 0,
  5668. "w": 1
  5669. },
  5670. "_lscale": {
  5671. "__type__": "cc.Vec3",
  5672. "x": 1,
  5673. "y": 1,
  5674. "z": 1
  5675. },
  5676. "_mobility": 0,
  5677. "_layer": 33554432,
  5678. "_euler": {
  5679. "__type__": "cc.Vec3",
  5680. "x": 0,
  5681. "y": 0,
  5682. "z": 0
  5683. },
  5684. "_id": "adrsQJwhpLvKCA0edRC9ep"
  5685. },
  5686. {
  5687. "__type__": "cc.Node",
  5688. "_name": "Label",
  5689. "_objFlags": 512,
  5690. "_parent": {
  5691. "__id__": 136
  5692. },
  5693. "_children": [],
  5694. "_active": true,
  5695. "_components": [
  5696. {
  5697. "__id__": 138
  5698. },
  5699. {
  5700. "__id__": 139
  5701. }
  5702. ],
  5703. "_prefab": null,
  5704. "_lpos": {
  5705. "__type__": "cc.Vec3",
  5706. "x": 1.5368852459016438,
  5707. "y": 6.147540983606557,
  5708. "z": 0
  5709. },
  5710. "_lrot": {
  5711. "__type__": "cc.Quat",
  5712. "x": 0,
  5713. "y": 0,
  5714. "z": 0,
  5715. "w": 1
  5716. },
  5717. "_lscale": {
  5718. "__type__": "cc.Vec3",
  5719. "x": 1,
  5720. "y": 1,
  5721. "z": 1
  5722. },
  5723. "_mobility": 0,
  5724. "_layer": 33554432,
  5725. "_euler": {
  5726. "__type__": "cc.Vec3",
  5727. "x": 0,
  5728. "y": 0,
  5729. "z": 0
  5730. },
  5731. "_id": "3fEW57U69K040Vzc1siZdR"
  5732. },
  5733. {
  5734. "__type__": "cc.UITransform",
  5735. "_name": "",
  5736. "_objFlags": 0,
  5737. "node": {
  5738. "__id__": 137
  5739. },
  5740. "_enabled": true,
  5741. "__prefab": null,
  5742. "_contentSize": {
  5743. "__type__": "cc.Size",
  5744. "width": 312.09016393442624,
  5745. "height": 70.73770491803279
  5746. },
  5747. "_anchorPoint": {
  5748. "__type__": "cc.Vec2",
  5749. "x": 0.5,
  5750. "y": 0.5
  5751. },
  5752. "_id": "35RGH0cq1In4hdFQ96Zn3b"
  5753. },
  5754. {
  5755. "__type__": "cc.Label",
  5756. "_name": "",
  5757. "_objFlags": 0,
  5758. "node": {
  5759. "__id__": 137
  5760. },
  5761. "_enabled": true,
  5762. "__prefab": null,
  5763. "_customMaterial": null,
  5764. "_srcBlendFactor": 2,
  5765. "_dstBlendFactor": 4,
  5766. "_color": {
  5767. "__type__": "cc.Color",
  5768. "r": 255,
  5769. "g": 255,
  5770. "b": 255,
  5771. "a": 255
  5772. },
  5773. "_string": "返回首页",
  5774. "_horizontalAlign": 1,
  5775. "_verticalAlign": 1,
  5776. "_actualFontSize": 55,
  5777. "_fontSize": 55,
  5778. "_fontFamily": "Arial",
  5779. "_lineHeight": 70,
  5780. "_overflow": 1,
  5781. "_enableWrapText": false,
  5782. "_font": null,
  5783. "_isSystemFontUsed": true,
  5784. "_spacingX": 0,
  5785. "_isItalic": false,
  5786. "_isBold": false,
  5787. "_isUnderline": false,
  5788. "_underlineHeight": 2,
  5789. "_cacheMode": 0,
  5790. "_id": "feqqaW3iJPF7vftQ39pQEC"
  5791. },
  5792. {
  5793. "__type__": "cc.UITransform",
  5794. "_name": "",
  5795. "_objFlags": 0,
  5796. "node": {
  5797. "__id__": 136
  5798. },
  5799. "_enabled": true,
  5800. "__prefab": null,
  5801. "_contentSize": {
  5802. "__type__": "cc.Size",
  5803. "width": 411,
  5804. "height": 144
  5805. },
  5806. "_anchorPoint": {
  5807. "__type__": "cc.Vec2",
  5808. "x": 0.5,
  5809. "y": 0.5
  5810. },
  5811. "_id": "0d3afojiRHfIoSM5LDTv3k"
  5812. },
  5813. {
  5814. "__type__": "cc.Sprite",
  5815. "_name": "",
  5816. "_objFlags": 0,
  5817. "node": {
  5818. "__id__": 136
  5819. },
  5820. "_enabled": true,
  5821. "__prefab": null,
  5822. "_customMaterial": null,
  5823. "_srcBlendFactor": 2,
  5824. "_dstBlendFactor": 4,
  5825. "_color": {
  5826. "__type__": "cc.Color",
  5827. "r": 255,
  5828. "g": 255,
  5829. "b": 255,
  5830. "a": 255
  5831. },
  5832. "_spriteFrame": {
  5833. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5834. "__expectedType__": "cc.SpriteFrame"
  5835. },
  5836. "_type": 1,
  5837. "_fillType": 0,
  5838. "_sizeMode": 0,
  5839. "_fillCenter": {
  5840. "__type__": "cc.Vec2",
  5841. "x": 0,
  5842. "y": 0
  5843. },
  5844. "_fillStart": 0,
  5845. "_fillRange": 0,
  5846. "_isTrimmedMode": true,
  5847. "_useGrayscale": false,
  5848. "_atlas": null,
  5849. "_id": "b5ibidQGZOda4qgn015afs"
  5850. },
  5851. {
  5852. "__type__": "cc.Button",
  5853. "_name": "",
  5854. "_objFlags": 0,
  5855. "node": {
  5856. "__id__": 136
  5857. },
  5858. "_enabled": true,
  5859. "__prefab": null,
  5860. "clickEvents": [
  5861. {
  5862. "__id__": 143
  5863. }
  5864. ],
  5865. "_interactable": true,
  5866. "_transition": 2,
  5867. "_normalColor": {
  5868. "__type__": "cc.Color",
  5869. "r": 214,
  5870. "g": 214,
  5871. "b": 214,
  5872. "a": 255
  5873. },
  5874. "_hoverColor": {
  5875. "__type__": "cc.Color",
  5876. "r": 211,
  5877. "g": 211,
  5878. "b": 211,
  5879. "a": 255
  5880. },
  5881. "_pressedColor": {
  5882. "__type__": "cc.Color",
  5883. "r": 255,
  5884. "g": 255,
  5885. "b": 255,
  5886. "a": 255
  5887. },
  5888. "_disabledColor": {
  5889. "__type__": "cc.Color",
  5890. "r": 124,
  5891. "g": 124,
  5892. "b": 124,
  5893. "a": 255
  5894. },
  5895. "_normalSprite": {
  5896. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5897. "__expectedType__": "cc.SpriteFrame"
  5898. },
  5899. "_hoverSprite": {
  5900. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5901. "__expectedType__": "cc.SpriteFrame"
  5902. },
  5903. "_pressedSprite": {
  5904. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5905. "__expectedType__": "cc.SpriteFrame"
  5906. },
  5907. "_disabledSprite": {
  5908. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5909. "__expectedType__": "cc.SpriteFrame"
  5910. },
  5911. "_duration": 0.1,
  5912. "_zoomScale": 1.2,
  5913. "_target": {
  5914. "__id__": 136
  5915. },
  5916. "_id": "2ewEGO+npD5Yi774ZON+O8"
  5917. },
  5918. {
  5919. "__type__": "cc.ClickEvent",
  5920. "target": {
  5921. "__id__": 125
  5922. },
  5923. "component": "",
  5924. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  5925. "handler": "backHomeBtn",
  5926. "customEventData": ""
  5927. },
  5928. {
  5929. "__type__": "cc.Node",
  5930. "_name": "EnterGameBtn",
  5931. "_objFlags": 0,
  5932. "_parent": {
  5933. "__id__": 125
  5934. },
  5935. "_children": [
  5936. {
  5937. "__id__": 145
  5938. }
  5939. ],
  5940. "_active": true,
  5941. "_components": [
  5942. {
  5943. "__id__": 148
  5944. },
  5945. {
  5946. "__id__": 149
  5947. },
  5948. {
  5949. "__id__": 150
  5950. }
  5951. ],
  5952. "_prefab": null,
  5953. "_lpos": {
  5954. "__type__": "cc.Vec3",
  5955. "x": 274.528,
  5956. "y": -267.351,
  5957. "z": 0
  5958. },
  5959. "_lrot": {
  5960. "__type__": "cc.Quat",
  5961. "x": 0,
  5962. "y": 0,
  5963. "z": 0,
  5964. "w": 1
  5965. },
  5966. "_lscale": {
  5967. "__type__": "cc.Vec3",
  5968. "x": 1,
  5969. "y": 1,
  5970. "z": 1
  5971. },
  5972. "_mobility": 0,
  5973. "_layer": 33554432,
  5974. "_euler": {
  5975. "__type__": "cc.Vec3",
  5976. "x": 0,
  5977. "y": 0,
  5978. "z": 0
  5979. },
  5980. "_id": "d96f/sKyhH8pWYrtD2NvpM"
  5981. },
  5982. {
  5983. "__type__": "cc.Node",
  5984. "_name": "Label",
  5985. "_objFlags": 512,
  5986. "_parent": {
  5987. "__id__": 144
  5988. },
  5989. "_children": [],
  5990. "_active": true,
  5991. "_components": [
  5992. {
  5993. "__id__": 146
  5994. },
  5995. {
  5996. "__id__": 147
  5997. }
  5998. ],
  5999. "_prefab": null,
  6000. "_lpos": {
  6001. "__type__": "cc.Vec3",
  6002. "x": 1.5368852459016438,
  6003. "y": 6.147540983606557,
  6004. "z": 0
  6005. },
  6006. "_lrot": {
  6007. "__type__": "cc.Quat",
  6008. "x": 0,
  6009. "y": 0,
  6010. "z": 0,
  6011. "w": 1
  6012. },
  6013. "_lscale": {
  6014. "__type__": "cc.Vec3",
  6015. "x": 1,
  6016. "y": 1,
  6017. "z": 1
  6018. },
  6019. "_mobility": 0,
  6020. "_layer": 33554432,
  6021. "_euler": {
  6022. "__type__": "cc.Vec3",
  6023. "x": 0,
  6024. "y": 0,
  6025. "z": 0
  6026. },
  6027. "_id": "1foVSXWopEjbWb7Y58M752"
  6028. },
  6029. {
  6030. "__type__": "cc.UITransform",
  6031. "_name": "",
  6032. "_objFlags": 0,
  6033. "node": {
  6034. "__id__": 145
  6035. },
  6036. "_enabled": true,
  6037. "__prefab": null,
  6038. "_contentSize": {
  6039. "__type__": "cc.Size",
  6040. "width": 312.09016393442624,
  6041. "height": 70.73770491803279
  6042. },
  6043. "_anchorPoint": {
  6044. "__type__": "cc.Vec2",
  6045. "x": 0.5,
  6046. "y": 0.5
  6047. },
  6048. "_id": "bbGJuCyZNC/Z6g8wMi8fTg"
  6049. },
  6050. {
  6051. "__type__": "cc.Label",
  6052. "_name": "",
  6053. "_objFlags": 0,
  6054. "node": {
  6055. "__id__": 145
  6056. },
  6057. "_enabled": true,
  6058. "__prefab": null,
  6059. "_customMaterial": null,
  6060. "_srcBlendFactor": 2,
  6061. "_dstBlendFactor": 4,
  6062. "_color": {
  6063. "__type__": "cc.Color",
  6064. "r": 255,
  6065. "g": 255,
  6066. "b": 255,
  6067. "a": 255
  6068. },
  6069. "_string": "下一关",
  6070. "_horizontalAlign": 1,
  6071. "_verticalAlign": 1,
  6072. "_actualFontSize": 55,
  6073. "_fontSize": 55,
  6074. "_fontFamily": "Arial",
  6075. "_lineHeight": 70,
  6076. "_overflow": 1,
  6077. "_enableWrapText": false,
  6078. "_font": null,
  6079. "_isSystemFontUsed": true,
  6080. "_spacingX": 0,
  6081. "_isItalic": false,
  6082. "_isBold": false,
  6083. "_isUnderline": false,
  6084. "_underlineHeight": 2,
  6085. "_cacheMode": 0,
  6086. "_id": "66MvUFQAZAgoxN7VIo9CQx"
  6087. },
  6088. {
  6089. "__type__": "cc.UITransform",
  6090. "_name": "",
  6091. "_objFlags": 0,
  6092. "node": {
  6093. "__id__": 144
  6094. },
  6095. "_enabled": true,
  6096. "__prefab": null,
  6097. "_contentSize": {
  6098. "__type__": "cc.Size",
  6099. "width": 411,
  6100. "height": 144
  6101. },
  6102. "_anchorPoint": {
  6103. "__type__": "cc.Vec2",
  6104. "x": 0.5,
  6105. "y": 0.5
  6106. },
  6107. "_id": "3e6wJfzD1G+LRjhvK36HjE"
  6108. },
  6109. {
  6110. "__type__": "cc.Sprite",
  6111. "_name": "",
  6112. "_objFlags": 0,
  6113. "node": {
  6114. "__id__": 144
  6115. },
  6116. "_enabled": true,
  6117. "__prefab": null,
  6118. "_customMaterial": null,
  6119. "_srcBlendFactor": 2,
  6120. "_dstBlendFactor": 4,
  6121. "_color": {
  6122. "__type__": "cc.Color",
  6123. "r": 255,
  6124. "g": 255,
  6125. "b": 255,
  6126. "a": 255
  6127. },
  6128. "_spriteFrame": {
  6129. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  6130. "__expectedType__": "cc.SpriteFrame"
  6131. },
  6132. "_type": 1,
  6133. "_fillType": 0,
  6134. "_sizeMode": 0,
  6135. "_fillCenter": {
  6136. "__type__": "cc.Vec2",
  6137. "x": 0,
  6138. "y": 0
  6139. },
  6140. "_fillStart": 0,
  6141. "_fillRange": 0,
  6142. "_isTrimmedMode": true,
  6143. "_useGrayscale": false,
  6144. "_atlas": null,
  6145. "_id": "49stwRG7xGy6/NfKKXONkv"
  6146. },
  6147. {
  6148. "__type__": "cc.Button",
  6149. "_name": "",
  6150. "_objFlags": 0,
  6151. "node": {
  6152. "__id__": 144
  6153. },
  6154. "_enabled": true,
  6155. "__prefab": null,
  6156. "clickEvents": [
  6157. {
  6158. "__id__": 151
  6159. }
  6160. ],
  6161. "_interactable": true,
  6162. "_transition": 2,
  6163. "_normalColor": {
  6164. "__type__": "cc.Color",
  6165. "r": 214,
  6166. "g": 214,
  6167. "b": 214,
  6168. "a": 255
  6169. },
  6170. "_hoverColor": {
  6171. "__type__": "cc.Color",
  6172. "r": 211,
  6173. "g": 211,
  6174. "b": 211,
  6175. "a": 255
  6176. },
  6177. "_pressedColor": {
  6178. "__type__": "cc.Color",
  6179. "r": 255,
  6180. "g": 255,
  6181. "b": 255,
  6182. "a": 255
  6183. },
  6184. "_disabledColor": {
  6185. "__type__": "cc.Color",
  6186. "r": 124,
  6187. "g": 124,
  6188. "b": 124,
  6189. "a": 255
  6190. },
  6191. "_normalSprite": {
  6192. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  6193. "__expectedType__": "cc.SpriteFrame"
  6194. },
  6195. "_hoverSprite": {
  6196. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  6197. "__expectedType__": "cc.SpriteFrame"
  6198. },
  6199. "_pressedSprite": {
  6200. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  6201. "__expectedType__": "cc.SpriteFrame"
  6202. },
  6203. "_disabledSprite": {
  6204. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  6205. "__expectedType__": "cc.SpriteFrame"
  6206. },
  6207. "_duration": 0.1,
  6208. "_zoomScale": 1.2,
  6209. "_target": {
  6210. "__id__": 144
  6211. },
  6212. "_id": "47RANVaJlKX53eA7d96CEb"
  6213. },
  6214. {
  6215. "__type__": "cc.ClickEvent",
  6216. "target": {
  6217. "__id__": 125
  6218. },
  6219. "component": "",
  6220. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  6221. "handler": "levelBtn",
  6222. "customEventData": ""
  6223. },
  6224. {
  6225. "__type__": "cc.Node",
  6226. "_name": "curLevelScore",
  6227. "_objFlags": 0,
  6228. "_parent": {
  6229. "__id__": 125
  6230. },
  6231. "_children": [],
  6232. "_active": true,
  6233. "_components": [
  6234. {
  6235. "__id__": 153
  6236. },
  6237. {
  6238. "__id__": 154
  6239. }
  6240. ],
  6241. "_prefab": null,
  6242. "_lpos": {
  6243. "__type__": "cc.Vec3",
  6244. "x": 360.28,
  6245. "y": -41.767,
  6246. "z": 0
  6247. },
  6248. "_lrot": {
  6249. "__type__": "cc.Quat",
  6250. "x": 0,
  6251. "y": 0,
  6252. "z": 0,
  6253. "w": 1
  6254. },
  6255. "_lscale": {
  6256. "__type__": "cc.Vec3",
  6257. "x": 1,
  6258. "y": 1,
  6259. "z": 1
  6260. },
  6261. "_mobility": 0,
  6262. "_layer": 33554432,
  6263. "_euler": {
  6264. "__type__": "cc.Vec3",
  6265. "x": 0,
  6266. "y": 0,
  6267. "z": 0
  6268. },
  6269. "_id": "c2t2qam5FJSa7f+VRY4xwL"
  6270. },
  6271. {
  6272. "__type__": "cc.UITransform",
  6273. "_name": "",
  6274. "_objFlags": 0,
  6275. "node": {
  6276. "__id__": 152
  6277. },
  6278. "_enabled": true,
  6279. "__prefab": null,
  6280. "_contentSize": {
  6281. "__type__": "cc.Size",
  6282. "width": 560.454,
  6283. "height": 214.07999999999998
  6284. },
  6285. "_anchorPoint": {
  6286. "__type__": "cc.Vec2",
  6287. "x": 0.5,
  6288. "y": 0.5
  6289. },
  6290. "_id": "54iE2ohRhF4ovuxzUVzZli"
  6291. },
  6292. {
  6293. "__type__": "cc.Label",
  6294. "_name": "",
  6295. "_objFlags": 0,
  6296. "node": {
  6297. "__id__": 152
  6298. },
  6299. "_enabled": true,
  6300. "__prefab": null,
  6301. "_customMaterial": null,
  6302. "_srcBlendFactor": 2,
  6303. "_dstBlendFactor": 4,
  6304. "_color": {
  6305. "__type__": "cc.Color",
  6306. "r": 169,
  6307. "g": 79,
  6308. "b": 9,
  6309. "a": 255
  6310. },
  6311. "_string": "本关得分:1",
  6312. "_horizontalAlign": 0,
  6313. "_verticalAlign": 1,
  6314. "_actualFontSize": 60,
  6315. "_fontSize": 60,
  6316. "_fontFamily": "Arial",
  6317. "_lineHeight": 100,
  6318. "_overflow": 1,
  6319. "_enableWrapText": true,
  6320. "_font": null,
  6321. "_isSystemFontUsed": true,
  6322. "_spacingX": 0,
  6323. "_isItalic": false,
  6324. "_isBold": true,
  6325. "_isUnderline": false,
  6326. "_underlineHeight": 2,
  6327. "_cacheMode": 0,
  6328. "_id": "d1pwclNt1CxLkmmf34GWOc"
  6329. },
  6330. {
  6331. "__type__": "cc.Node",
  6332. "_name": "TotalScore",
  6333. "_objFlags": 0,
  6334. "_parent": {
  6335. "__id__": 125
  6336. },
  6337. "_children": [],
  6338. "_active": true,
  6339. "_components": [
  6340. {
  6341. "__id__": 156
  6342. },
  6343. {
  6344. "__id__": 157
  6345. }
  6346. ],
  6347. "_prefab": null,
  6348. "_lpos": {
  6349. "__type__": "cc.Vec3",
  6350. "x": -186.859,
  6351. "y": -41.767,
  6352. "z": 0
  6353. },
  6354. "_lrot": {
  6355. "__type__": "cc.Quat",
  6356. "x": 0,
  6357. "y": 0,
  6358. "z": 0,
  6359. "w": 1
  6360. },
  6361. "_lscale": {
  6362. "__type__": "cc.Vec3",
  6363. "x": 1,
  6364. "y": 1,
  6365. "z": 1
  6366. },
  6367. "_mobility": 0,
  6368. "_layer": 33554432,
  6369. "_euler": {
  6370. "__type__": "cc.Vec3",
  6371. "x": 0,
  6372. "y": 0,
  6373. "z": 0
  6374. },
  6375. "_id": "56X7kQMiFNj5CA75HojXOp"
  6376. },
  6377. {
  6378. "__type__": "cc.UITransform",
  6379. "_name": "",
  6380. "_objFlags": 0,
  6381. "node": {
  6382. "__id__": 155
  6383. },
  6384. "_enabled": true,
  6385. "__prefab": null,
  6386. "_contentSize": {
  6387. "__type__": "cc.Size",
  6388. "width": 560.454,
  6389. "height": 214.07999999999998
  6390. },
  6391. "_anchorPoint": {
  6392. "__type__": "cc.Vec2",
  6393. "x": 0.5,
  6394. "y": 0.5
  6395. },
  6396. "_id": "91F5VNHjNIgqN03rfwh4Xc"
  6397. },
  6398. {
  6399. "__type__": "cc.Label",
  6400. "_name": "",
  6401. "_objFlags": 0,
  6402. "node": {
  6403. "__id__": 155
  6404. },
  6405. "_enabled": true,
  6406. "__prefab": null,
  6407. "_customMaterial": null,
  6408. "_srcBlendFactor": 2,
  6409. "_dstBlendFactor": 4,
  6410. "_color": {
  6411. "__type__": "cc.Color",
  6412. "r": 169,
  6413. "g": 79,
  6414. "b": 9,
  6415. "a": 255
  6416. },
  6417. "_string": "总得分:",
  6418. "_horizontalAlign": 0,
  6419. "_verticalAlign": 1,
  6420. "_actualFontSize": 60,
  6421. "_fontSize": 60,
  6422. "_fontFamily": "Arial",
  6423. "_lineHeight": 100,
  6424. "_overflow": 1,
  6425. "_enableWrapText": true,
  6426. "_font": null,
  6427. "_isSystemFontUsed": true,
  6428. "_spacingX": 0,
  6429. "_isItalic": false,
  6430. "_isBold": true,
  6431. "_isUnderline": false,
  6432. "_underlineHeight": 2,
  6433. "_cacheMode": 0,
  6434. "_id": "a8y+G4xQpEz7aAHiOFYm5L"
  6435. },
  6436. {
  6437. "__type__": "cc.Node",
  6438. "_name": "resultIcon",
  6439. "_objFlags": 0,
  6440. "_parent": {
  6441. "__id__": 125
  6442. },
  6443. "_children": [],
  6444. "_active": true,
  6445. "_components": [
  6446. {
  6447. "__id__": 159
  6448. },
  6449. {
  6450. "__id__": 160
  6451. }
  6452. ],
  6453. "_prefab": null,
  6454. "_lpos": {
  6455. "__type__": "cc.Vec3",
  6456. "x": 0,
  6457. "y": 350.842,
  6458. "z": 0
  6459. },
  6460. "_lrot": {
  6461. "__type__": "cc.Quat",
  6462. "x": 0,
  6463. "y": 0,
  6464. "z": 0,
  6465. "w": 1
  6466. },
  6467. "_lscale": {
  6468. "__type__": "cc.Vec3",
  6469. "x": 1,
  6470. "y": 1,
  6471. "z": 1
  6472. },
  6473. "_mobility": 0,
  6474. "_layer": 33554432,
  6475. "_euler": {
  6476. "__type__": "cc.Vec3",
  6477. "x": 0,
  6478. "y": 0,
  6479. "z": 0
  6480. },
  6481. "_id": "3bMre/6AhI84Sm9BsZ6isN"
  6482. },
  6483. {
  6484. "__type__": "cc.UITransform",
  6485. "_name": "",
  6486. "_objFlags": 0,
  6487. "node": {
  6488. "__id__": 158
  6489. },
  6490. "_enabled": true,
  6491. "__prefab": null,
  6492. "_contentSize": {
  6493. "__type__": "cc.Size",
  6494. "width": 276,
  6495. "height": 276
  6496. },
  6497. "_anchorPoint": {
  6498. "__type__": "cc.Vec2",
  6499. "x": 0.5,
  6500. "y": 0.5
  6501. },
  6502. "_id": "48m3xY/NRLfYMgrO6vypef"
  6503. },
  6504. {
  6505. "__type__": "cc.Sprite",
  6506. "_name": "",
  6507. "_objFlags": 0,
  6508. "node": {
  6509. "__id__": 158
  6510. },
  6511. "_enabled": true,
  6512. "__prefab": null,
  6513. "_customMaterial": null,
  6514. "_srcBlendFactor": 2,
  6515. "_dstBlendFactor": 4,
  6516. "_color": {
  6517. "__type__": "cc.Color",
  6518. "r": 255,
  6519. "g": 255,
  6520. "b": 255,
  6521. "a": 255
  6522. },
  6523. "_spriteFrame": {
  6524. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  6525. "__expectedType__": "cc.SpriteFrame"
  6526. },
  6527. "_type": 0,
  6528. "_fillType": 0,
  6529. "_sizeMode": 1,
  6530. "_fillCenter": {
  6531. "__type__": "cc.Vec2",
  6532. "x": 0,
  6533. "y": 0
  6534. },
  6535. "_fillStart": 0,
  6536. "_fillRange": 0,
  6537. "_isTrimmedMode": true,
  6538. "_useGrayscale": false,
  6539. "_atlas": null,
  6540. "_id": "c99zq9dbVI9LheJj/7p9g9"
  6541. },
  6542. {
  6543. "__type__": "cc.UITransform",
  6544. "_name": "",
  6545. "_objFlags": 0,
  6546. "node": {
  6547. "__id__": 125
  6548. },
  6549. "_enabled": true,
  6550. "__prefab": null,
  6551. "_contentSize": {
  6552. "__type__": "cc.Size",
  6553. "width": 1311,
  6554. "height": 806
  6555. },
  6556. "_anchorPoint": {
  6557. "__type__": "cc.Vec2",
  6558. "x": 0.5,
  6559. "y": 0.5
  6560. },
  6561. "_id": "e2M9hKVbJOpLEfbwyRzof+"
  6562. },
  6563. {
  6564. "__type__": "cc.Sprite",
  6565. "_name": "",
  6566. "_objFlags": 0,
  6567. "node": {
  6568. "__id__": 125
  6569. },
  6570. "_enabled": false,
  6571. "__prefab": null,
  6572. "_customMaterial": null,
  6573. "_srcBlendFactor": 2,
  6574. "_dstBlendFactor": 4,
  6575. "_color": {
  6576. "__type__": "cc.Color",
  6577. "r": 255,
  6578. "g": 255,
  6579. "b": 255,
  6580. "a": 255
  6581. },
  6582. "_spriteFrame": {
  6583. "__uuid__": "28765e2f-040a-4c65-8e8c-f9d0bb79d863@f9941",
  6584. "__expectedType__": "cc.SpriteFrame"
  6585. },
  6586. "_type": 1,
  6587. "_fillType": 0,
  6588. "_sizeMode": 0,
  6589. "_fillCenter": {
  6590. "__type__": "cc.Vec2",
  6591. "x": 0,
  6592. "y": 0
  6593. },
  6594. "_fillStart": 0,
  6595. "_fillRange": 0,
  6596. "_isTrimmedMode": true,
  6597. "_useGrayscale": false,
  6598. "_atlas": null,
  6599. "_id": "ebtJxL2z5Ko5BssboLF8rv"
  6600. },
  6601. {
  6602. "__type__": "95501FTS+FP8aW52qXh/kCV",
  6603. "_name": "",
  6604. "_objFlags": 0,
  6605. "node": {
  6606. "__id__": 125
  6607. },
  6608. "_enabled": true,
  6609. "__prefab": null,
  6610. "successBg": {
  6611. "__uuid__": "52fd76ba-30bd-4cda-965e-0427d6c30cc1@f9941",
  6612. "__expectedType__": "cc.SpriteFrame"
  6613. },
  6614. "failBg": {
  6615. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  6616. "__expectedType__": "cc.SpriteFrame"
  6617. },
  6618. "curLevelLabel": {
  6619. "__id__": 135
  6620. },
  6621. "curScoreLabel": {
  6622. "__id__": 154
  6623. },
  6624. "totalScoreLabel": {
  6625. "__id__": 157
  6626. },
  6627. "btnLabel": {
  6628. "__id__": 147
  6629. },
  6630. "reusltIcon": {
  6631. "__id__": 158
  6632. },
  6633. "_id": "50PulxgL1JQqf0g2NOZtHI"
  6634. },
  6635. {
  6636. "__type__": "cc.BlockInputEvents",
  6637. "_name": "",
  6638. "_objFlags": 0,
  6639. "node": {
  6640. "__id__": 125
  6641. },
  6642. "_enabled": true,
  6643. "__prefab": null,
  6644. "_id": "5aS/Nz0NxM6q+Rzl7lrbJs"
  6645. },
  6646. {
  6647. "__type__": "cc.Node",
  6648. "_objFlags": 512,
  6649. "_parent": {
  6650. "__id__": 6
  6651. },
  6652. "_prefab": {
  6653. "__id__": 166
  6654. },
  6655. "__editorExtras__": {}
  6656. },
  6657. {
  6658. "__type__": "cc.PrefabInfo",
  6659. "root": {
  6660. "__id__": 165
  6661. },
  6662. "asset": {
  6663. "__uuid__": "7d17bef9-8f82-415e-8928-f2c7da3decf4",
  6664. "__expectedType__": "cc.Prefab"
  6665. },
  6666. "fileId": "f5VirVdr1A/q1iUlQGtO+X",
  6667. "instance": {
  6668. "__id__": 167
  6669. },
  6670. "targetOverrides": null,
  6671. "nestedPrefabInstanceRoots": null
  6672. },
  6673. {
  6674. "__type__": "cc.PrefabInstance",
  6675. "fileId": "f0jZuVJ7REqZ0+6Qh6IxiK",
  6676. "prefabRootNode": null,
  6677. "mountedChildren": [],
  6678. "mountedComponents": [
  6679. {
  6680. "__id__": 168
  6681. }
  6682. ],
  6683. "propertyOverrides": [
  6684. {
  6685. "__id__": 171
  6686. },
  6687. {
  6688. "__id__": 173
  6689. },
  6690. {
  6691. "__id__": 174
  6692. },
  6693. {
  6694. "__id__": 175
  6695. },
  6696. {
  6697. "__id__": 176
  6698. }
  6699. ],
  6700. "removedComponents": []
  6701. },
  6702. {
  6703. "__type__": "cc.MountedComponentsInfo",
  6704. "targetInfo": {
  6705. "__id__": 169
  6706. },
  6707. "components": [
  6708. {
  6709. "__id__": 170
  6710. }
  6711. ]
  6712. },
  6713. {
  6714. "__type__": "cc.TargetInfo",
  6715. "localID": [
  6716. "f5VirVdr1A/q1iUlQGtO+X"
  6717. ]
  6718. },
  6719. {
  6720. "__type__": "cc.BlockInputEvents",
  6721. "_name": "",
  6722. "_objFlags": 0,
  6723. "__editorExtras__": {
  6724. "mountedRoot": {
  6725. "__id__": 165
  6726. }
  6727. },
  6728. "node": {
  6729. "__id__": 165
  6730. },
  6731. "_enabled": true,
  6732. "__prefab": null,
  6733. "_id": "07r8anbvNG/6BWBGGtLhOU"
  6734. },
  6735. {
  6736. "__type__": "CCPropertyOverrideInfo",
  6737. "targetInfo": {
  6738. "__id__": 172
  6739. },
  6740. "propertyPath": [
  6741. "_name"
  6742. ],
  6743. "value": "PlayAEndTip"
  6744. },
  6745. {
  6746. "__type__": "cc.TargetInfo",
  6747. "localID": [
  6748. "f5VirVdr1A/q1iUlQGtO+X"
  6749. ]
  6750. },
  6751. {
  6752. "__type__": "CCPropertyOverrideInfo",
  6753. "targetInfo": {
  6754. "__id__": 172
  6755. },
  6756. "propertyPath": [
  6757. "_lpos"
  6758. ],
  6759. "value": {
  6760. "__type__": "cc.Vec3",
  6761. "x": 0,
  6762. "y": 0,
  6763. "z": 0
  6764. }
  6765. },
  6766. {
  6767. "__type__": "CCPropertyOverrideInfo",
  6768. "targetInfo": {
  6769. "__id__": 172
  6770. },
  6771. "propertyPath": [
  6772. "_lrot"
  6773. ],
  6774. "value": {
  6775. "__type__": "cc.Quat",
  6776. "x": 0,
  6777. "y": 0,
  6778. "z": 0,
  6779. "w": 1
  6780. }
  6781. },
  6782. {
  6783. "__type__": "CCPropertyOverrideInfo",
  6784. "targetInfo": {
  6785. "__id__": 172
  6786. },
  6787. "propertyPath": [
  6788. "_euler"
  6789. ],
  6790. "value": {
  6791. "__type__": "cc.Vec3",
  6792. "x": 0,
  6793. "y": 0,
  6794. "z": 0
  6795. }
  6796. },
  6797. {
  6798. "__type__": "CCPropertyOverrideInfo",
  6799. "targetInfo": {
  6800. "__id__": 172
  6801. },
  6802. "propertyPath": [
  6803. "_active"
  6804. ],
  6805. "value": false
  6806. },
  6807. {
  6808. "__type__": "cc.Node",
  6809. "_name": "Full",
  6810. "_objFlags": 0,
  6811. "_parent": {
  6812. "__id__": 6
  6813. },
  6814. "_children": [
  6815. {
  6816. "__id__": 178
  6817. },
  6818. {
  6819. "__id__": 187
  6820. },
  6821. {
  6822. "__id__": 196
  6823. }
  6824. ],
  6825. "_active": true,
  6826. "_components": [
  6827. {
  6828. "__id__": 205
  6829. }
  6830. ],
  6831. "_prefab": null,
  6832. "_lpos": {
  6833. "__type__": "cc.Vec3",
  6834. "x": 315.722,
  6835. "y": 0,
  6836. "z": 0
  6837. },
  6838. "_lrot": {
  6839. "__type__": "cc.Quat",
  6840. "x": 0,
  6841. "y": 0,
  6842. "z": 0,
  6843. "w": 1
  6844. },
  6845. "_lscale": {
  6846. "__type__": "cc.Vec3",
  6847. "x": 1,
  6848. "y": 1,
  6849. "z": 1
  6850. },
  6851. "_mobility": 0,
  6852. "_layer": 33554432,
  6853. "_euler": {
  6854. "__type__": "cc.Vec3",
  6855. "x": 0,
  6856. "y": 0,
  6857. "z": 0
  6858. },
  6859. "_id": "66bcmRoDVJr7mAO/zWrM6a"
  6860. },
  6861. {
  6862. "__type__": "cc.Node",
  6863. "_name": "GetScoreBg-001",
  6864. "_objFlags": 0,
  6865. "_parent": {
  6866. "__id__": 177
  6867. },
  6868. "_children": [
  6869. {
  6870. "__id__": 179
  6871. }
  6872. ],
  6873. "_active": true,
  6874. "_components": [
  6875. {
  6876. "__id__": 185
  6877. },
  6878. {
  6879. "__id__": 186
  6880. }
  6881. ],
  6882. "_prefab": null,
  6883. "_lpos": {
  6884. "__type__": "cc.Vec3",
  6885. "x": -626.6950295857988,
  6886. "y": 584.791,
  6887. "z": 0
  6888. },
  6889. "_lrot": {
  6890. "__type__": "cc.Quat",
  6891. "x": 0,
  6892. "y": 0,
  6893. "z": 0,
  6894. "w": 1
  6895. },
  6896. "_lscale": {
  6897. "__type__": "cc.Vec3",
  6898. "x": 1,
  6899. "y": 1,
  6900. "z": 1
  6901. },
  6902. "_mobility": 0,
  6903. "_layer": 33554432,
  6904. "_euler": {
  6905. "__type__": "cc.Vec3",
  6906. "x": 0,
  6907. "y": 0,
  6908. "z": 0
  6909. },
  6910. "_id": "7aBXCm+khLUqjKxwb+R/m7"
  6911. },
  6912. {
  6913. "__type__": "cc.Node",
  6914. "_name": "GetScore",
  6915. "_objFlags": 0,
  6916. "_parent": {
  6917. "__id__": 178
  6918. },
  6919. "_children": [
  6920. {
  6921. "__id__": 180
  6922. }
  6923. ],
  6924. "_active": true,
  6925. "_components": [
  6926. {
  6927. "__id__": 183
  6928. },
  6929. {
  6930. "__id__": 184
  6931. }
  6932. ],
  6933. "_prefab": null,
  6934. "_lpos": {
  6935. "__type__": "cc.Vec3",
  6936. "x": -100.368,
  6937. "y": 0.904,
  6938. "z": 0
  6939. },
  6940. "_lrot": {
  6941. "__type__": "cc.Quat",
  6942. "x": 0,
  6943. "y": 0,
  6944. "z": 0,
  6945. "w": 1
  6946. },
  6947. "_lscale": {
  6948. "__type__": "cc.Vec3",
  6949. "x": 1,
  6950. "y": 1,
  6951. "z": 1
  6952. },
  6953. "_mobility": 0,
  6954. "_layer": 33554432,
  6955. "_euler": {
  6956. "__type__": "cc.Vec3",
  6957. "x": 0,
  6958. "y": 0,
  6959. "z": 0
  6960. },
  6961. "_id": "2dlFpBou9N4qEx8zh/au+0"
  6962. },
  6963. {
  6964. "__type__": "cc.Node",
  6965. "_name": "Score",
  6966. "_objFlags": 0,
  6967. "_parent": {
  6968. "__id__": 179
  6969. },
  6970. "_children": [],
  6971. "_active": true,
  6972. "_components": [
  6973. {
  6974. "__id__": 181
  6975. },
  6976. {
  6977. "__id__": 182
  6978. }
  6979. ],
  6980. "_prefab": null,
  6981. "_lpos": {
  6982. "__type__": "cc.Vec3",
  6983. "x": 139.812,
  6984. "y": 0.043,
  6985. "z": 0
  6986. },
  6987. "_lrot": {
  6988. "__type__": "cc.Quat",
  6989. "x": 0,
  6990. "y": 0,
  6991. "z": 0,
  6992. "w": 1
  6993. },
  6994. "_lscale": {
  6995. "__type__": "cc.Vec3",
  6996. "x": 1,
  6997. "y": 1,
  6998. "z": 1
  6999. },
  7000. "_mobility": 0,
  7001. "_layer": 33554432,
  7002. "_euler": {
  7003. "__type__": "cc.Vec3",
  7004. "x": 0,
  7005. "y": 0,
  7006. "z": 0
  7007. },
  7008. "_id": "44dEVnyUdGJ4oVkWzLyKm0"
  7009. },
  7010. {
  7011. "__type__": "cc.UITransform",
  7012. "_name": "",
  7013. "_objFlags": 0,
  7014. "node": {
  7015. "__id__": 180
  7016. },
  7017. "_enabled": true,
  7018. "__prefab": null,
  7019. "_contentSize": {
  7020. "__type__": "cc.Size",
  7021. "width": 139.04,
  7022. "height": 50.4
  7023. },
  7024. "_anchorPoint": {
  7025. "__type__": "cc.Vec2",
  7026. "x": 0.5,
  7027. "y": 0.5
  7028. },
  7029. "_id": "aeatAHONRFdq/5YremdGg5"
  7030. },
  7031. {
  7032. "__type__": "cc.Label",
  7033. "_name": "",
  7034. "_objFlags": 0,
  7035. "node": {
  7036. "__id__": 180
  7037. },
  7038. "_enabled": true,
  7039. "__prefab": null,
  7040. "_customMaterial": null,
  7041. "_srcBlendFactor": 2,
  7042. "_dstBlendFactor": 4,
  7043. "_color": {
  7044. "__type__": "cc.Color",
  7045. "r": 255,
  7046. "g": 255,
  7047. "b": 255,
  7048. "a": 255
  7049. },
  7050. "_string": "0",
  7051. "_horizontalAlign": 0,
  7052. "_verticalAlign": 1,
  7053. "_actualFontSize": 50,
  7054. "_fontSize": 50,
  7055. "_fontFamily": "Arial",
  7056. "_lineHeight": 40,
  7057. "_overflow": 1,
  7058. "_enableWrapText": true,
  7059. "_font": null,
  7060. "_isSystemFontUsed": true,
  7061. "_spacingX": 0,
  7062. "_isItalic": false,
  7063. "_isBold": false,
  7064. "_isUnderline": false,
  7065. "_underlineHeight": 2,
  7066. "_cacheMode": 0,
  7067. "_id": "95xTzz/ptP9bi+VwziUVOX"
  7068. },
  7069. {
  7070. "__type__": "cc.UITransform",
  7071. "_name": "",
  7072. "_objFlags": 0,
  7073. "node": {
  7074. "__id__": 179
  7075. },
  7076. "_enabled": true,
  7077. "__prefab": null,
  7078. "_contentSize": {
  7079. "__type__": "cc.Size",
  7080. "width": 100,
  7081. "height": 88.2
  7082. },
  7083. "_anchorPoint": {
  7084. "__type__": "cc.Vec2",
  7085. "x": 0.5,
  7086. "y": 0.5
  7087. },
  7088. "_id": "c7XkN7nSxP7qcj/G58zTJq"
  7089. },
  7090. {
  7091. "__type__": "cc.Label",
  7092. "_name": "",
  7093. "_objFlags": 0,
  7094. "node": {
  7095. "__id__": 179
  7096. },
  7097. "_enabled": true,
  7098. "__prefab": null,
  7099. "_customMaterial": null,
  7100. "_srcBlendFactor": 2,
  7101. "_dstBlendFactor": 4,
  7102. "_color": {
  7103. "__type__": "cc.Color",
  7104. "r": 255,
  7105. "g": 255,
  7106. "b": 255,
  7107. "a": 255
  7108. },
  7109. "_string": "得分",
  7110. "_horizontalAlign": 1,
  7111. "_verticalAlign": 1,
  7112. "_actualFontSize": 50,
  7113. "_fontSize": 50,
  7114. "_fontFamily": "Arial",
  7115. "_lineHeight": 70,
  7116. "_overflow": 0,
  7117. "_enableWrapText": true,
  7118. "_font": null,
  7119. "_isSystemFontUsed": true,
  7120. "_spacingX": 0,
  7121. "_isItalic": false,
  7122. "_isBold": false,
  7123. "_isUnderline": false,
  7124. "_underlineHeight": 2,
  7125. "_cacheMode": 0,
  7126. "_id": "936102nIBEb6lfaFTWnF76"
  7127. },
  7128. {
  7129. "__type__": "cc.UITransform",
  7130. "_name": "",
  7131. "_objFlags": 0,
  7132. "node": {
  7133. "__id__": 178
  7134. },
  7135. "_enabled": true,
  7136. "__prefab": null,
  7137. "_contentSize": {
  7138. "__type__": "cc.Size",
  7139. "width": 339.88994082840236,
  7140. "height": 110
  7141. },
  7142. "_anchorPoint": {
  7143. "__type__": "cc.Vec2",
  7144. "x": 0.5,
  7145. "y": 0.5
  7146. },
  7147. "_id": "c1I0u8AgtKVYew7N+QBLGy"
  7148. },
  7149. {
  7150. "__type__": "cc.Sprite",
  7151. "_name": "",
  7152. "_objFlags": 0,
  7153. "node": {
  7154. "__id__": 178
  7155. },
  7156. "_enabled": true,
  7157. "__prefab": null,
  7158. "_customMaterial": null,
  7159. "_srcBlendFactor": 2,
  7160. "_dstBlendFactor": 4,
  7161. "_color": {
  7162. "__type__": "cc.Color",
  7163. "r": 255,
  7164. "g": 255,
  7165. "b": 255,
  7166. "a": 255
  7167. },
  7168. "_spriteFrame": {
  7169. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  7170. "__expectedType__": "cc.SpriteFrame"
  7171. },
  7172. "_type": 0,
  7173. "_fillType": 0,
  7174. "_sizeMode": 0,
  7175. "_fillCenter": {
  7176. "__type__": "cc.Vec2",
  7177. "x": 0,
  7178. "y": 0
  7179. },
  7180. "_fillStart": 0,
  7181. "_fillRange": 0,
  7182. "_isTrimmedMode": true,
  7183. "_useGrayscale": false,
  7184. "_atlas": null,
  7185. "_id": "103k0ntThJELcV3+IfPrvW"
  7186. },
  7187. {
  7188. "__type__": "cc.Node",
  7189. "_name": "TimeBg-001",
  7190. "_objFlags": 0,
  7191. "_parent": {
  7192. "__id__": 177
  7193. },
  7194. "_children": [
  7195. {
  7196. "__id__": 188
  7197. }
  7198. ],
  7199. "_active": true,
  7200. "_components": [
  7201. {
  7202. "__id__": 194
  7203. },
  7204. {
  7205. "__id__": 195
  7206. }
  7207. ],
  7208. "_prefab": null,
  7209. "_lpos": {
  7210. "__type__": "cc.Vec3",
  7211. "x": -245.961,
  7212. "y": 584.791,
  7213. "z": 0
  7214. },
  7215. "_lrot": {
  7216. "__type__": "cc.Quat",
  7217. "x": 0,
  7218. "y": 0,
  7219. "z": 0,
  7220. "w": 1
  7221. },
  7222. "_lscale": {
  7223. "__type__": "cc.Vec3",
  7224. "x": 1,
  7225. "y": 1,
  7226. "z": 1
  7227. },
  7228. "_mobility": 0,
  7229. "_layer": 33554432,
  7230. "_euler": {
  7231. "__type__": "cc.Vec3",
  7232. "x": 0,
  7233. "y": 0,
  7234. "z": 0
  7235. },
  7236. "_id": "72E4endaFA9ZzhffwONnhR"
  7237. },
  7238. {
  7239. "__type__": "cc.Node",
  7240. "_name": "GameTime",
  7241. "_objFlags": 0,
  7242. "_parent": {
  7243. "__id__": 187
  7244. },
  7245. "_children": [
  7246. {
  7247. "__id__": 189
  7248. }
  7249. ],
  7250. "_active": true,
  7251. "_components": [
  7252. {
  7253. "__id__": 192
  7254. },
  7255. {
  7256. "__id__": 193
  7257. }
  7258. ],
  7259. "_prefab": null,
  7260. "_lpos": {
  7261. "__type__": "cc.Vec3",
  7262. "x": 5.195,
  7263. "y": 60.444,
  7264. "z": 0
  7265. },
  7266. "_lrot": {
  7267. "__type__": "cc.Quat",
  7268. "x": 0,
  7269. "y": 0,
  7270. "z": 0,
  7271. "w": 1
  7272. },
  7273. "_lscale": {
  7274. "__type__": "cc.Vec3",
  7275. "x": 1,
  7276. "y": 1,
  7277. "z": 1
  7278. },
  7279. "_mobility": 0,
  7280. "_layer": 33554432,
  7281. "_euler": {
  7282. "__type__": "cc.Vec3",
  7283. "x": 0,
  7284. "y": 0,
  7285. "z": 0
  7286. },
  7287. "_id": "e6x0Gc+TlDGIZXI33TEJb6"
  7288. },
  7289. {
  7290. "__type__": "cc.Node",
  7291. "_name": "TimeLabel",
  7292. "_objFlags": 0,
  7293. "_parent": {
  7294. "__id__": 188
  7295. },
  7296. "_children": [],
  7297. "_active": true,
  7298. "_components": [
  7299. {
  7300. "__id__": 190
  7301. },
  7302. {
  7303. "__id__": 191
  7304. }
  7305. ],
  7306. "_prefab": null,
  7307. "_lpos": {
  7308. "__type__": "cc.Vec3",
  7309. "x": 1.505,
  7310. "y": -57.186,
  7311. "z": 0
  7312. },
  7313. "_lrot": {
  7314. "__type__": "cc.Quat",
  7315. "x": 0,
  7316. "y": 0,
  7317. "z": 0,
  7318. "w": 1
  7319. },
  7320. "_lscale": {
  7321. "__type__": "cc.Vec3",
  7322. "x": 1,
  7323. "y": 1,
  7324. "z": 1
  7325. },
  7326. "_mobility": 0,
  7327. "_layer": 33554432,
  7328. "_euler": {
  7329. "__type__": "cc.Vec3",
  7330. "x": 0,
  7331. "y": 0,
  7332. "z": 0
  7333. },
  7334. "_id": "62RcJSw15H6JpsHUHKtNaH"
  7335. },
  7336. {
  7337. "__type__": "cc.UITransform",
  7338. "_name": "",
  7339. "_objFlags": 0,
  7340. "node": {
  7341. "__id__": 189
  7342. },
  7343. "_enabled": true,
  7344. "__prefab": null,
  7345. "_contentSize": {
  7346. "__type__": "cc.Size",
  7347. "width": 170,
  7348. "height": 50.4
  7349. },
  7350. "_anchorPoint": {
  7351. "__type__": "cc.Vec2",
  7352. "x": 0.5,
  7353. "y": 0.5
  7354. },
  7355. "_id": "7cZarCy31EtKl7ASpygJEo"
  7356. },
  7357. {
  7358. "__type__": "cc.Label",
  7359. "_name": "",
  7360. "_objFlags": 0,
  7361. "node": {
  7362. "__id__": 189
  7363. },
  7364. "_enabled": true,
  7365. "__prefab": null,
  7366. "_customMaterial": null,
  7367. "_srcBlendFactor": 2,
  7368. "_dstBlendFactor": 4,
  7369. "_color": {
  7370. "__type__": "cc.Color",
  7371. "r": 255,
  7372. "g": 255,
  7373. "b": 255,
  7374. "a": 255
  7375. },
  7376. "_string": "2:00",
  7377. "_horizontalAlign": 1,
  7378. "_verticalAlign": 1,
  7379. "_actualFontSize": 55,
  7380. "_fontSize": 55,
  7381. "_fontFamily": "Arial",
  7382. "_lineHeight": 60,
  7383. "_overflow": 1,
  7384. "_enableWrapText": true,
  7385. "_font": null,
  7386. "_isSystemFontUsed": true,
  7387. "_spacingX": 0,
  7388. "_isItalic": false,
  7389. "_isBold": false,
  7390. "_isUnderline": false,
  7391. "_underlineHeight": 2,
  7392. "_cacheMode": 0,
  7393. "_id": "dcVz2Ao/lCG60RTah3WKwS"
  7394. },
  7395. {
  7396. "__type__": "cc.UITransform",
  7397. "_name": "",
  7398. "_objFlags": 0,
  7399. "node": {
  7400. "__id__": 188
  7401. },
  7402. "_enabled": true,
  7403. "__prefab": null,
  7404. "_contentSize": {
  7405. "__type__": "cc.Size",
  7406. "width": 170,
  7407. "height": 50.4
  7408. },
  7409. "_anchorPoint": {
  7410. "__type__": "cc.Vec2",
  7411. "x": 0.5,
  7412. "y": 0.5
  7413. },
  7414. "_id": "d3XSdYtyBCjr130tilMp31"
  7415. },
  7416. {
  7417. "__type__": "cc.Label",
  7418. "_name": "",
  7419. "_objFlags": 0,
  7420. "node": {
  7421. "__id__": 188
  7422. },
  7423. "_enabled": false,
  7424. "__prefab": null,
  7425. "_customMaterial": null,
  7426. "_srcBlendFactor": 2,
  7427. "_dstBlendFactor": 4,
  7428. "_color": {
  7429. "__type__": "cc.Color",
  7430. "r": 169,
  7431. "g": 74,
  7432. "b": 9,
  7433. "a": 255
  7434. },
  7435. "_string": "时间",
  7436. "_horizontalAlign": 1,
  7437. "_verticalAlign": 1,
  7438. "_actualFontSize": 50,
  7439. "_fontSize": 50,
  7440. "_fontFamily": "Arial",
  7441. "_lineHeight": 60,
  7442. "_overflow": 1,
  7443. "_enableWrapText": true,
  7444. "_font": null,
  7445. "_isSystemFontUsed": true,
  7446. "_spacingX": 0,
  7447. "_isItalic": false,
  7448. "_isBold": true,
  7449. "_isUnderline": false,
  7450. "_underlineHeight": 2,
  7451. "_cacheMode": 0,
  7452. "_id": "f2akcURRFEcq0N0Nl8yDJr"
  7453. },
  7454. {
  7455. "__type__": "cc.UITransform",
  7456. "_name": "",
  7457. "_objFlags": 0,
  7458. "node": {
  7459. "__id__": 187
  7460. },
  7461. "_enabled": true,
  7462. "__prefab": null,
  7463. "_contentSize": {
  7464. "__type__": "cc.Size",
  7465. "width": 271.13372781065095,
  7466. "height": 110
  7467. },
  7468. "_anchorPoint": {
  7469. "__type__": "cc.Vec2",
  7470. "x": 0.5,
  7471. "y": 0.5
  7472. },
  7473. "_id": "c3lf7M7k9KmZ+nSNUWgAWg"
  7474. },
  7475. {
  7476. "__type__": "cc.Sprite",
  7477. "_name": "",
  7478. "_objFlags": 0,
  7479. "node": {
  7480. "__id__": 187
  7481. },
  7482. "_enabled": true,
  7483. "__prefab": null,
  7484. "_customMaterial": null,
  7485. "_srcBlendFactor": 2,
  7486. "_dstBlendFactor": 4,
  7487. "_color": {
  7488. "__type__": "cc.Color",
  7489. "r": 255,
  7490. "g": 255,
  7491. "b": 255,
  7492. "a": 255
  7493. },
  7494. "_spriteFrame": {
  7495. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  7496. "__expectedType__": "cc.SpriteFrame"
  7497. },
  7498. "_type": 0,
  7499. "_fillType": 0,
  7500. "_sizeMode": 0,
  7501. "_fillCenter": {
  7502. "__type__": "cc.Vec2",
  7503. "x": 0,
  7504. "y": 0
  7505. },
  7506. "_fillStart": 0,
  7507. "_fillRange": 0,
  7508. "_isTrimmedMode": true,
  7509. "_useGrayscale": false,
  7510. "_atlas": null,
  7511. "_id": "00So5QoPJNbqg38R3GIz53"
  7512. },
  7513. {
  7514. "__type__": "cc.Node",
  7515. "_name": "LevelBg-001",
  7516. "_objFlags": 0,
  7517. "_parent": {
  7518. "__id__": 177
  7519. },
  7520. "_children": [
  7521. {
  7522. "__id__": 197
  7523. }
  7524. ],
  7525. "_active": true,
  7526. "_components": [
  7527. {
  7528. "__id__": 203
  7529. },
  7530. {
  7531. "__id__": 204
  7532. }
  7533. ],
  7534. "_prefab": null,
  7535. "_lpos": {
  7536. "__type__": "cc.Vec3",
  7537. "x": 103.843,
  7538. "y": 584.691,
  7539. "z": 0
  7540. },
  7541. "_lrot": {
  7542. "__type__": "cc.Quat",
  7543. "x": 0,
  7544. "y": 0,
  7545. "z": 0,
  7546. "w": 1
  7547. },
  7548. "_lscale": {
  7549. "__type__": "cc.Vec3",
  7550. "x": 1,
  7551. "y": 1,
  7552. "z": 1
  7553. },
  7554. "_mobility": 0,
  7555. "_layer": 33554432,
  7556. "_euler": {
  7557. "__type__": "cc.Vec3",
  7558. "x": 0,
  7559. "y": 0,
  7560. "z": 0
  7561. },
  7562. "_id": "76NmQjlTVIjYB7iIXcw271"
  7563. },
  7564. {
  7565. "__type__": "cc.Node",
  7566. "_name": "level",
  7567. "_objFlags": 0,
  7568. "_parent": {
  7569. "__id__": 196
  7570. },
  7571. "_children": [
  7572. {
  7573. "__id__": 198
  7574. }
  7575. ],
  7576. "_active": true,
  7577. "_components": [
  7578. {
  7579. "__id__": 201
  7580. },
  7581. {
  7582. "__id__": 202
  7583. }
  7584. ],
  7585. "_prefab": null,
  7586. "_lpos": {
  7587. "__type__": "cc.Vec3",
  7588. "x": -31.36299999999983,
  7589. "y": -2.5679999999999836,
  7590. "z": 0
  7591. },
  7592. "_lrot": {
  7593. "__type__": "cc.Quat",
  7594. "x": 0,
  7595. "y": 0,
  7596. "z": 0,
  7597. "w": 1
  7598. },
  7599. "_lscale": {
  7600. "__type__": "cc.Vec3",
  7601. "x": 1,
  7602. "y": 1,
  7603. "z": 1
  7604. },
  7605. "_mobility": 0,
  7606. "_layer": 33554432,
  7607. "_euler": {
  7608. "__type__": "cc.Vec3",
  7609. "x": 0,
  7610. "y": 0,
  7611. "z": 0
  7612. },
  7613. "_id": "eaH/7VoTNMX6EQSZY5GHiA"
  7614. },
  7615. {
  7616. "__type__": "cc.Node",
  7617. "_name": "levlLabel",
  7618. "_objFlags": 0,
  7619. "_parent": {
  7620. "__id__": 197
  7621. },
  7622. "_children": [],
  7623. "_active": true,
  7624. "_components": [
  7625. {
  7626. "__id__": 199
  7627. },
  7628. {
  7629. "__id__": 200
  7630. }
  7631. ],
  7632. "_prefab": null,
  7633. "_lpos": {
  7634. "__type__": "cc.Vec3",
  7635. "x": 29.897499999999997,
  7636. "y": 0,
  7637. "z": 0
  7638. },
  7639. "_lrot": {
  7640. "__type__": "cc.Quat",
  7641. "x": 0,
  7642. "y": 0,
  7643. "z": 0,
  7644. "w": 1
  7645. },
  7646. "_lscale": {
  7647. "__type__": "cc.Vec3",
  7648. "x": 1,
  7649. "y": 1,
  7650. "z": 1
  7651. },
  7652. "_mobility": 0,
  7653. "_layer": 33554432,
  7654. "_euler": {
  7655. "__type__": "cc.Vec3",
  7656. "x": 0,
  7657. "y": 0,
  7658. "z": 0
  7659. },
  7660. "_id": "b7kyQaqnFPtoUwJ/CfFPdI"
  7661. },
  7662. {
  7663. "__type__": "cc.UITransform",
  7664. "_name": "",
  7665. "_objFlags": 0,
  7666. "node": {
  7667. "__id__": 198
  7668. },
  7669. "_enabled": true,
  7670. "__prefab": null,
  7671. "_contentSize": {
  7672. "__type__": "cc.Size",
  7673. "width": 264.409,
  7674. "height": 50.4
  7675. },
  7676. "_anchorPoint": {
  7677. "__type__": "cc.Vec2",
  7678. "x": 0.5,
  7679. "y": 0.5
  7680. },
  7681. "_id": "0aujCo8/pPgZo35FlpMbkz"
  7682. },
  7683. {
  7684. "__type__": "cc.Label",
  7685. "_name": "",
  7686. "_objFlags": 0,
  7687. "node": {
  7688. "__id__": 198
  7689. },
  7690. "_enabled": true,
  7691. "__prefab": null,
  7692. "_customMaterial": null,
  7693. "_srcBlendFactor": 2,
  7694. "_dstBlendFactor": 4,
  7695. "_color": {
  7696. "__type__": "cc.Color",
  7697. "r": 255,
  7698. "g": 255,
  7699. "b": 255,
  7700. "a": 255
  7701. },
  7702. "_string": "第1关",
  7703. "_horizontalAlign": 1,
  7704. "_verticalAlign": 1,
  7705. "_actualFontSize": 55,
  7706. "_fontSize": 55,
  7707. "_fontFamily": "Arial",
  7708. "_lineHeight": 60,
  7709. "_overflow": 1,
  7710. "_enableWrapText": true,
  7711. "_font": null,
  7712. "_isSystemFontUsed": true,
  7713. "_spacingX": 0,
  7714. "_isItalic": false,
  7715. "_isBold": false,
  7716. "_isUnderline": false,
  7717. "_underlineHeight": 2,
  7718. "_cacheMode": 0,
  7719. "_id": "f2HCMp0+VB9bgTrUQGTaQN"
  7720. },
  7721. {
  7722. "__type__": "cc.UITransform",
  7723. "_name": "",
  7724. "_objFlags": 0,
  7725. "node": {
  7726. "__id__": 197
  7727. },
  7728. "_enabled": true,
  7729. "__prefab": null,
  7730. "_contentSize": {
  7731. "__type__": "cc.Size",
  7732. "width": 170,
  7733. "height": 50.4
  7734. },
  7735. "_anchorPoint": {
  7736. "__type__": "cc.Vec2",
  7737. "x": 0.5,
  7738. "y": 0.5
  7739. },
  7740. "_id": "749njg1oZE7KXTB5Awl4KI"
  7741. },
  7742. {
  7743. "__type__": "cc.Label",
  7744. "_name": "",
  7745. "_objFlags": 0,
  7746. "node": {
  7747. "__id__": 197
  7748. },
  7749. "_enabled": true,
  7750. "__prefab": null,
  7751. "_customMaterial": null,
  7752. "_srcBlendFactor": 2,
  7753. "_dstBlendFactor": 4,
  7754. "_color": {
  7755. "__type__": "cc.Color",
  7756. "r": 169,
  7757. "g": 74,
  7758. "b": 9,
  7759. "a": 255
  7760. },
  7761. "_string": "",
  7762. "_horizontalAlign": 1,
  7763. "_verticalAlign": 1,
  7764. "_actualFontSize": 50,
  7765. "_fontSize": 50,
  7766. "_fontFamily": "Arial",
  7767. "_lineHeight": 60,
  7768. "_overflow": 1,
  7769. "_enableWrapText": true,
  7770. "_font": null,
  7771. "_isSystemFontUsed": true,
  7772. "_spacingX": 0,
  7773. "_isItalic": false,
  7774. "_isBold": false,
  7775. "_isUnderline": false,
  7776. "_underlineHeight": 2,
  7777. "_cacheMode": 0,
  7778. "_id": "a7O87PTw9LOrHXoGKYQXEs"
  7779. },
  7780. {
  7781. "__type__": "cc.UITransform",
  7782. "_name": "",
  7783. "_objFlags": 0,
  7784. "node": {
  7785. "__id__": 196
  7786. },
  7787. "_enabled": true,
  7788. "__prefab": null,
  7789. "_contentSize": {
  7790. "__type__": "cc.Size",
  7791. "width": 308.7455621301775,
  7792. "height": 110
  7793. },
  7794. "_anchorPoint": {
  7795. "__type__": "cc.Vec2",
  7796. "x": 0.5,
  7797. "y": 0.5
  7798. },
  7799. "_id": "59hMJgSaJCu6QjN2y6Wkiu"
  7800. },
  7801. {
  7802. "__type__": "cc.Sprite",
  7803. "_name": "",
  7804. "_objFlags": 0,
  7805. "node": {
  7806. "__id__": 196
  7807. },
  7808. "_enabled": true,
  7809. "__prefab": null,
  7810. "_customMaterial": null,
  7811. "_srcBlendFactor": 2,
  7812. "_dstBlendFactor": 4,
  7813. "_color": {
  7814. "__type__": "cc.Color",
  7815. "r": 255,
  7816. "g": 255,
  7817. "b": 255,
  7818. "a": 255
  7819. },
  7820. "_spriteFrame": {
  7821. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  7822. "__expectedType__": "cc.SpriteFrame"
  7823. },
  7824. "_type": 0,
  7825. "_fillType": 0,
  7826. "_sizeMode": 0,
  7827. "_fillCenter": {
  7828. "__type__": "cc.Vec2",
  7829. "x": 0,
  7830. "y": 0
  7831. },
  7832. "_fillStart": 0,
  7833. "_fillRange": 0,
  7834. "_isTrimmedMode": true,
  7835. "_useGrayscale": false,
  7836. "_atlas": null,
  7837. "_id": "86rVTpbNlC77rQsFx4OBJl"
  7838. },
  7839. {
  7840. "__type__": "cc.UITransform",
  7841. "_name": "",
  7842. "_objFlags": 0,
  7843. "node": {
  7844. "__id__": 177
  7845. },
  7846. "_enabled": true,
  7847. "__prefab": null,
  7848. "_contentSize": {
  7849. "__type__": "cc.Size",
  7850. "width": 100,
  7851. "height": 100
  7852. },
  7853. "_anchorPoint": {
  7854. "__type__": "cc.Vec2",
  7855. "x": 0.5,
  7856. "y": 0.5
  7857. },
  7858. "_id": "83x9pd7hlLH7vvDTBc5FsC"
  7859. },
  7860. {
  7861. "__type__": "cc.UITransform",
  7862. "_name": "",
  7863. "_objFlags": 0,
  7864. "node": {
  7865. "__id__": 6
  7866. },
  7867. "_enabled": true,
  7868. "__prefab": null,
  7869. "_contentSize": {
  7870. "__type__": "cc.Size",
  7871. "width": 2388,
  7872. "height": 1431
  7873. },
  7874. "_anchorPoint": {
  7875. "__type__": "cc.Vec2",
  7876. "x": 0.5,
  7877. "y": 0.5
  7878. },
  7879. "_id": "6991+O4+ZKkruBhDfLTiNc"
  7880. },
  7881. {
  7882. "__type__": "cc.Sprite",
  7883. "_name": "",
  7884. "_objFlags": 0,
  7885. "node": {
  7886. "__id__": 6
  7887. },
  7888. "_enabled": false,
  7889. "__prefab": null,
  7890. "_customMaterial": null,
  7891. "_srcBlendFactor": 2,
  7892. "_dstBlendFactor": 4,
  7893. "_color": {
  7894. "__type__": "cc.Color",
  7895. "r": 255,
  7896. "g": 255,
  7897. "b": 255,
  7898. "a": 255
  7899. },
  7900. "_spriteFrame": {
  7901. "__uuid__": "eaacad0b-56df-456e-9f47-a6e593993e0f@f9941",
  7902. "__expectedType__": "cc.SpriteFrame"
  7903. },
  7904. "_type": 0,
  7905. "_fillType": 0,
  7906. "_sizeMode": 0,
  7907. "_fillCenter": {
  7908. "__type__": "cc.Vec2",
  7909. "x": 0,
  7910. "y": 0
  7911. },
  7912. "_fillStart": 0,
  7913. "_fillRange": 0,
  7914. "_isTrimmedMode": true,
  7915. "_useGrayscale": false,
  7916. "_atlas": null,
  7917. "_id": "2dSpfW0JpErJgEIBvDB/oC"
  7918. },
  7919. {
  7920. "__type__": "cc.Node",
  7921. "_name": "AudioManager",
  7922. "_objFlags": 0,
  7923. "_parent": {
  7924. "__id__": 2
  7925. },
  7926. "_children": [],
  7927. "_active": true,
  7928. "_components": [
  7929. {
  7930. "__id__": 209
  7931. },
  7932. {
  7933. "__id__": 210
  7934. }
  7935. ],
  7936. "_prefab": null,
  7937. "_lpos": {
  7938. "__type__": "cc.Vec3",
  7939. "x": 0,
  7940. "y": 0,
  7941. "z": 0
  7942. },
  7943. "_lrot": {
  7944. "__type__": "cc.Quat",
  7945. "x": 0,
  7946. "y": 0,
  7947. "z": 0,
  7948. "w": 1
  7949. },
  7950. "_lscale": {
  7951. "__type__": "cc.Vec3",
  7952. "x": 1,
  7953. "y": 1,
  7954. "z": 1
  7955. },
  7956. "_mobility": 0,
  7957. "_layer": 1073741824,
  7958. "_euler": {
  7959. "__type__": "cc.Vec3",
  7960. "x": 0,
  7961. "y": 0,
  7962. "z": 0
  7963. },
  7964. "_id": "60FjbG8qtFfZ539qEMd+1/"
  7965. },
  7966. {
  7967. "__type__": "cc.AudioSource",
  7968. "_name": "",
  7969. "_objFlags": 0,
  7970. "node": {
  7971. "__id__": 208
  7972. },
  7973. "_enabled": true,
  7974. "__prefab": null,
  7975. "_clip": {
  7976. "__uuid__": "fa328517-f2b2-4385-ac73-177c99ed964c",
  7977. "__expectedType__": "cc.AudioClip"
  7978. },
  7979. "_loop": true,
  7980. "_playOnAwake": false,
  7981. "_volume": 1,
  7982. "_id": "eeGhp23mxGxpqwDPT1CJun"
  7983. },
  7984. {
  7985. "__type__": "ddb2bQZ+Y1HFKtzdgtAjjWR",
  7986. "_name": "",
  7987. "_objFlags": 0,
  7988. "node": {
  7989. "__id__": 208
  7990. },
  7991. "_enabled": true,
  7992. "__prefab": null,
  7993. "_id": "49WPaAsadKsKoMmKQLQhN1"
  7994. },
  7995. {
  7996. "__type__": "cc.Node",
  7997. "_name": "LevelManager",
  7998. "_objFlags": 0,
  7999. "_parent": {
  8000. "__id__": 2
  8001. },
  8002. "_children": [],
  8003. "_active": true,
  8004. "_components": [
  8005. {
  8006. "__id__": 212
  8007. }
  8008. ],
  8009. "_prefab": null,
  8010. "_lpos": {
  8011. "__type__": "cc.Vec3",
  8012. "x": 0,
  8013. "y": 0,
  8014. "z": 0
  8015. },
  8016. "_lrot": {
  8017. "__type__": "cc.Quat",
  8018. "x": 0,
  8019. "y": 0,
  8020. "z": 0,
  8021. "w": 1
  8022. },
  8023. "_lscale": {
  8024. "__type__": "cc.Vec3",
  8025. "x": 1,
  8026. "y": 1,
  8027. "z": 1
  8028. },
  8029. "_mobility": 0,
  8030. "_layer": 1073741824,
  8031. "_euler": {
  8032. "__type__": "cc.Vec3",
  8033. "x": 0,
  8034. "y": 0,
  8035. "z": 0
  8036. },
  8037. "_id": "ae7Hx27zVByrbunwO5wAeH"
  8038. },
  8039. {
  8040. "__type__": "47e67Z+VixO4pNkH3a12P3G",
  8041. "_name": "",
  8042. "_objFlags": 0,
  8043. "node": {
  8044. "__id__": 211
  8045. },
  8046. "_enabled": true,
  8047. "__prefab": null,
  8048. "levelDataJson": {
  8049. "__uuid__": "e418ad72-966e-4c18-aeb5-6ac1ea28ec2d",
  8050. "__expectedType__": "cc.JsonAsset"
  8051. },
  8052. "_id": "84G/NCnS1DbLBWBkNkhAf3"
  8053. },
  8054. {
  8055. "__type__": "cc.PrefabInfo",
  8056. "root": null,
  8057. "asset": null,
  8058. "fileId": "80697901-e8f5-4759-b18f-a95692ce9cd2",
  8059. "instance": null,
  8060. "targetOverrides": null,
  8061. "nestedPrefabInstanceRoots": [
  8062. {
  8063. "__id__": 165
  8064. }
  8065. ]
  8066. },
  8067. {
  8068. "__type__": "cc.SceneGlobals",
  8069. "ambient": {
  8070. "__id__": 215
  8071. },
  8072. "shadows": {
  8073. "__id__": 216
  8074. },
  8075. "_skybox": {
  8076. "__id__": 217
  8077. },
  8078. "fog": {
  8079. "__id__": 218
  8080. },
  8081. "octree": {
  8082. "__id__": 219
  8083. },
  8084. "lightProbeInfo": {
  8085. "__id__": 220
  8086. },
  8087. "bakedWithStationaryMainLight": false,
  8088. "bakedWithHighpLightmap": false
  8089. },
  8090. {
  8091. "__type__": "cc.AmbientInfo",
  8092. "_skyColorHDR": {
  8093. "__type__": "cc.Vec4",
  8094. "x": 0,
  8095. "y": 0,
  8096. "z": 0,
  8097. "w": 0.520833125
  8098. },
  8099. "_skyColor": {
  8100. "__type__": "cc.Vec4",
  8101. "x": 0,
  8102. "y": 0,
  8103. "z": 0,
  8104. "w": 0.520833125
  8105. },
  8106. "_skyIllumHDR": 20000,
  8107. "_skyIllum": 20000,
  8108. "_groundAlbedoHDR": {
  8109. "__type__": "cc.Vec4",
  8110. "x": 0,
  8111. "y": 0,
  8112. "z": 0,
  8113. "w": 0
  8114. },
  8115. "_groundAlbedo": {
  8116. "__type__": "cc.Vec4",
  8117. "x": 0,
  8118. "y": 0,
  8119. "z": 0,
  8120. "w": 0
  8121. },
  8122. "_skyColorLDR": {
  8123. "__type__": "cc.Vec4",
  8124. "x": 0.2,
  8125. "y": 0.5,
  8126. "z": 0.8,
  8127. "w": 1
  8128. },
  8129. "_skyIllumLDR": 20000,
  8130. "_groundAlbedoLDR": {
  8131. "__type__": "cc.Vec4",
  8132. "x": 0.2,
  8133. "y": 0.2,
  8134. "z": 0.2,
  8135. "w": 1
  8136. }
  8137. },
  8138. {
  8139. "__type__": "cc.ShadowsInfo",
  8140. "_enabled": false,
  8141. "_type": 0,
  8142. "_normal": {
  8143. "__type__": "cc.Vec3",
  8144. "x": 0,
  8145. "y": 1,
  8146. "z": 0
  8147. },
  8148. "_distance": 0,
  8149. "_shadowColor": {
  8150. "__type__": "cc.Color",
  8151. "r": 76,
  8152. "g": 76,
  8153. "b": 76,
  8154. "a": 255
  8155. },
  8156. "_maxReceived": 4,
  8157. "_size": {
  8158. "__type__": "cc.Vec2",
  8159. "x": 512,
  8160. "y": 512
  8161. }
  8162. },
  8163. {
  8164. "__type__": "cc.SkyboxInfo",
  8165. "_envLightingType": 0,
  8166. "_envmapHDR": null,
  8167. "_envmap": null,
  8168. "_envmapLDR": null,
  8169. "_diffuseMapHDR": null,
  8170. "_diffuseMapLDR": null,
  8171. "_enabled": false,
  8172. "_useHDR": true,
  8173. "_editableMaterial": null,
  8174. "_reflectionHDR": null,
  8175. "_reflectionLDR": null,
  8176. "_rotationAngle": 0
  8177. },
  8178. {
  8179. "__type__": "cc.FogInfo",
  8180. "_type": 0,
  8181. "_fogColor": {
  8182. "__type__": "cc.Color",
  8183. "r": 200,
  8184. "g": 200,
  8185. "b": 200,
  8186. "a": 255
  8187. },
  8188. "_enabled": false,
  8189. "_fogDensity": 0.3,
  8190. "_fogStart": 0.5,
  8191. "_fogEnd": 300,
  8192. "_fogAtten": 5,
  8193. "_fogTop": 1.5,
  8194. "_fogRange": 1.2,
  8195. "_accurate": false
  8196. },
  8197. {
  8198. "__type__": "cc.OctreeInfo",
  8199. "_enabled": false,
  8200. "_minPos": {
  8201. "__type__": "cc.Vec3",
  8202. "x": -1024,
  8203. "y": -1024,
  8204. "z": -1024
  8205. },
  8206. "_maxPos": {
  8207. "__type__": "cc.Vec3",
  8208. "x": 1024,
  8209. "y": 1024,
  8210. "z": 1024
  8211. },
  8212. "_depth": 8
  8213. },
  8214. {
  8215. "__type__": "cc.LightProbeInfo",
  8216. "_giScale": 1,
  8217. "_giSamples": 1024,
  8218. "_bounces": 2,
  8219. "_reduceRinging": 0,
  8220. "_showProbe": true,
  8221. "_showWireframe": true,
  8222. "_showConvex": false,
  8223. "_data": null
  8224. }
  8225. ]