TranslationType.prefab 146 KB

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