game.scene 132 KB

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