game.scene 120 KB

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