game.scene 111 KB

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