BCBMPanelEnd.prefab 106 KB

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