game.scene 136 KB

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