game.scene 128 KB

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