MapIcon_Pasture.prefab 140 KB

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