zombie.prefab 139 KB

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