zombie.prefab 139 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": 0,
  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": null,
  5206. "_type": 1,
  5207. "_fillType": 0,
  5208. "_sizeMode": 0,
  5209. "_fillCenter": {
  5210. "__type__": "cc.Vec2",
  5211. "x": 0,
  5212. "y": 0
  5213. },
  5214. "_fillStart": 0,
  5215. "_fillRange": 0,
  5216. "_isTrimmedMode": true,
  5217. "_useGrayscale": false,
  5218. "_atlas": null,
  5219. "_id": ""
  5220. },
  5221. {
  5222. "__type__": "cc.CompPrefabInfo",
  5223. "fileId": "aefFEy2gJGd4GcvPZr7gxX"
  5224. },
  5225. {
  5226. "__type__": "cc.Button",
  5227. "_name": "",
  5228. "_objFlags": 0,
  5229. "__editorExtras__": {},
  5230. "node": {
  5231. "__id__": 217
  5232. },
  5233. "_enabled": true,
  5234. "__prefab": {
  5235. "__id__": 223
  5236. },
  5237. "clickEvents": [
  5238. {
  5239. "__id__": 224
  5240. }
  5241. ],
  5242. "_interactable": true,
  5243. "_transition": 3,
  5244. "_normalColor": {
  5245. "__type__": "cc.Color",
  5246. "r": 214,
  5247. "g": 214,
  5248. "b": 214,
  5249. "a": 255
  5250. },
  5251. "_hoverColor": {
  5252. "__type__": "cc.Color",
  5253. "r": 211,
  5254. "g": 211,
  5255. "b": 211,
  5256. "a": 255
  5257. },
  5258. "_pressedColor": {
  5259. "__type__": "cc.Color",
  5260. "r": 255,
  5261. "g": 255,
  5262. "b": 255,
  5263. "a": 255
  5264. },
  5265. "_disabledColor": {
  5266. "__type__": "cc.Color",
  5267. "r": 124,
  5268. "g": 124,
  5269. "b": 124,
  5270. "a": 255
  5271. },
  5272. "_normalSprite": null,
  5273. "_hoverSprite": null,
  5274. "_pressedSprite": null,
  5275. "_disabledSprite": null,
  5276. "_duration": 0.1,
  5277. "_zoomScale": 1.05,
  5278. "_target": {
  5279. "__id__": 217
  5280. },
  5281. "_id": ""
  5282. },
  5283. {
  5284. "__type__": "cc.CompPrefabInfo",
  5285. "fileId": "96YEGcYMVGRaPNfJHGX4/c"
  5286. },
  5287. {
  5288. "__type__": "cc.ClickEvent",
  5289. "target": {
  5290. "__id__": 1
  5291. },
  5292. "component": "",
  5293. "_componentId": "d3581nxC5VHJqZq9k3SsrcH",
  5294. "handler": "onClickAddHero",
  5295. "customEventData": ""
  5296. },
  5297. {
  5298. "__type__": "cc.PrefabInfo",
  5299. "root": {
  5300. "__id__": 1
  5301. },
  5302. "asset": {
  5303. "__id__": 0
  5304. },
  5305. "fileId": "b5hNfy3y5DxaQcWKVUjHzH",
  5306. "instance": null,
  5307. "targetOverrides": null,
  5308. "nestedPrefabInstanceRoots": null
  5309. },
  5310. {
  5311. "__type__": "cc.Node",
  5312. "_name": "start",
  5313. "_objFlags": 0,
  5314. "__editorExtras__": {},
  5315. "_parent": {
  5316. "__id__": 8
  5317. },
  5318. "_children": [
  5319. {
  5320. "__id__": 227
  5321. }
  5322. ],
  5323. "_active": false,
  5324. "_components": [
  5325. {
  5326. "__id__": 233
  5327. },
  5328. {
  5329. "__id__": 235
  5330. },
  5331. {
  5332. "__id__": 237
  5333. }
  5334. ],
  5335. "_prefab": {
  5336. "__id__": 240
  5337. },
  5338. "_lpos": {
  5339. "__type__": "cc.Vec3",
  5340. "x": 293.392,
  5341. "y": -583.779,
  5342. "z": 0
  5343. },
  5344. "_lrot": {
  5345. "__type__": "cc.Quat",
  5346. "x": 0,
  5347. "y": 0,
  5348. "z": 0,
  5349. "w": 1
  5350. },
  5351. "_lscale": {
  5352. "__type__": "cc.Vec3",
  5353. "x": 1,
  5354. "y": 1,
  5355. "z": 1
  5356. },
  5357. "_mobility": 0,
  5358. "_layer": 33554432,
  5359. "_euler": {
  5360. "__type__": "cc.Vec3",
  5361. "x": 0,
  5362. "y": 0,
  5363. "z": 0
  5364. },
  5365. "_id": ""
  5366. },
  5367. {
  5368. "__type__": "cc.Node",
  5369. "_name": "Label",
  5370. "_objFlags": 512,
  5371. "__editorExtras__": {},
  5372. "_parent": {
  5373. "__id__": 226
  5374. },
  5375. "_children": [],
  5376. "_active": true,
  5377. "_components": [
  5378. {
  5379. "__id__": 228
  5380. },
  5381. {
  5382. "__id__": 230
  5383. }
  5384. ],
  5385. "_prefab": {
  5386. "__id__": 232
  5387. },
  5388. "_lpos": {
  5389. "__type__": "cc.Vec3",
  5390. "x": 0,
  5391. "y": 0,
  5392. "z": 0
  5393. },
  5394. "_lrot": {
  5395. "__type__": "cc.Quat",
  5396. "x": 0,
  5397. "y": 0,
  5398. "z": 0,
  5399. "w": 1
  5400. },
  5401. "_lscale": {
  5402. "__type__": "cc.Vec3",
  5403. "x": 1,
  5404. "y": 1,
  5405. "z": 1
  5406. },
  5407. "_mobility": 0,
  5408. "_layer": 33554432,
  5409. "_euler": {
  5410. "__type__": "cc.Vec3",
  5411. "x": 0,
  5412. "y": 0,
  5413. "z": 0
  5414. },
  5415. "_id": ""
  5416. },
  5417. {
  5418. "__type__": "cc.UITransform",
  5419. "_name": "",
  5420. "_objFlags": 0,
  5421. "__editorExtras__": {},
  5422. "node": {
  5423. "__id__": 227
  5424. },
  5425. "_enabled": true,
  5426. "__prefab": {
  5427. "__id__": 229
  5428. },
  5429. "_contentSize": {
  5430. "__type__": "cc.Size",
  5431. "width": 80,
  5432. "height": 90.39999999999999
  5433. },
  5434. "_anchorPoint": {
  5435. "__type__": "cc.Vec2",
  5436. "x": 0.5,
  5437. "y": 0.5
  5438. },
  5439. "_id": ""
  5440. },
  5441. {
  5442. "__type__": "cc.CompPrefabInfo",
  5443. "fileId": "8dRVaIAxRHvKksPHR4EEMK"
  5444. },
  5445. {
  5446. "__type__": "cc.Label",
  5447. "_name": "",
  5448. "_objFlags": 0,
  5449. "__editorExtras__": {},
  5450. "node": {
  5451. "__id__": 227
  5452. },
  5453. "_enabled": true,
  5454. "__prefab": {
  5455. "__id__": 231
  5456. },
  5457. "_customMaterial": null,
  5458. "_srcBlendFactor": 2,
  5459. "_dstBlendFactor": 4,
  5460. "_color": {
  5461. "__type__": "cc.Color",
  5462. "r": 255,
  5463. "g": 255,
  5464. "b": 255,
  5465. "a": 255
  5466. },
  5467. "_string": "开始\n战斗",
  5468. "_horizontalAlign": 1,
  5469. "_verticalAlign": 1,
  5470. "_actualFontSize": 40,
  5471. "_fontSize": 40,
  5472. "_fontFamily": "Arial",
  5473. "_lineHeight": 40,
  5474. "_overflow": 0,
  5475. "_enableWrapText": false,
  5476. "_font": {
  5477. "__uuid__": "20e32a4b-c53f-43f1-afa0-30a906b3e3e8",
  5478. "__expectedType__": "cc.TTFFont"
  5479. },
  5480. "_isSystemFontUsed": false,
  5481. "_spacingX": 0,
  5482. "_isItalic": false,
  5483. "_isBold": false,
  5484. "_isUnderline": false,
  5485. "_underlineHeight": 2,
  5486. "_cacheMode": 0,
  5487. "_enableOutline": false,
  5488. "_outlineColor": {
  5489. "__type__": "cc.Color",
  5490. "r": 0,
  5491. "g": 0,
  5492. "b": 0,
  5493. "a": 255
  5494. },
  5495. "_outlineWidth": 2,
  5496. "_enableShadow": false,
  5497. "_shadowColor": {
  5498. "__type__": "cc.Color",
  5499. "r": 0,
  5500. "g": 0,
  5501. "b": 0,
  5502. "a": 255
  5503. },
  5504. "_shadowOffset": {
  5505. "__type__": "cc.Vec2",
  5506. "x": 2,
  5507. "y": 2
  5508. },
  5509. "_shadowBlur": 2,
  5510. "_id": ""
  5511. },
  5512. {
  5513. "__type__": "cc.CompPrefabInfo",
  5514. "fileId": "212uB/pNhBy6EkzyrFBpr8"
  5515. },
  5516. {
  5517. "__type__": "cc.PrefabInfo",
  5518. "root": {
  5519. "__id__": 1
  5520. },
  5521. "asset": {
  5522. "__id__": 0
  5523. },
  5524. "fileId": "0d7DBafr9FIIgiho3MfYDj",
  5525. "instance": null,
  5526. "targetOverrides": null,
  5527. "nestedPrefabInstanceRoots": null
  5528. },
  5529. {
  5530. "__type__": "cc.UITransform",
  5531. "_name": "",
  5532. "_objFlags": 0,
  5533. "__editorExtras__": {},
  5534. "node": {
  5535. "__id__": 226
  5536. },
  5537. "_enabled": true,
  5538. "__prefab": {
  5539. "__id__": 234
  5540. },
  5541. "_contentSize": {
  5542. "__type__": "cc.Size",
  5543. "width": 120,
  5544. "height": 120
  5545. },
  5546. "_anchorPoint": {
  5547. "__type__": "cc.Vec2",
  5548. "x": 0.5,
  5549. "y": 0.5
  5550. },
  5551. "_id": ""
  5552. },
  5553. {
  5554. "__type__": "cc.CompPrefabInfo",
  5555. "fileId": "66oojhVJNE3YWpxG5Z8kzE"
  5556. },
  5557. {
  5558. "__type__": "cc.Sprite",
  5559. "_name": "",
  5560. "_objFlags": 0,
  5561. "__editorExtras__": {},
  5562. "node": {
  5563. "__id__": 226
  5564. },
  5565. "_enabled": true,
  5566. "__prefab": {
  5567. "__id__": 236
  5568. },
  5569. "_customMaterial": null,
  5570. "_srcBlendFactor": 2,
  5571. "_dstBlendFactor": 4,
  5572. "_color": {
  5573. "__type__": "cc.Color",
  5574. "r": 255,
  5575. "g": 255,
  5576. "b": 255,
  5577. "a": 255
  5578. },
  5579. "_spriteFrame": null,
  5580. "_type": 1,
  5581. "_fillType": 0,
  5582. "_sizeMode": 0,
  5583. "_fillCenter": {
  5584. "__type__": "cc.Vec2",
  5585. "x": 0,
  5586. "y": 0
  5587. },
  5588. "_fillStart": 0,
  5589. "_fillRange": 0,
  5590. "_isTrimmedMode": true,
  5591. "_useGrayscale": false,
  5592. "_atlas": null,
  5593. "_id": ""
  5594. },
  5595. {
  5596. "__type__": "cc.CompPrefabInfo",
  5597. "fileId": "dbgSb9jkJPeoGcCwAh0XZA"
  5598. },
  5599. {
  5600. "__type__": "cc.Button",
  5601. "_name": "",
  5602. "_objFlags": 0,
  5603. "__editorExtras__": {},
  5604. "node": {
  5605. "__id__": 226
  5606. },
  5607. "_enabled": true,
  5608. "__prefab": {
  5609. "__id__": 238
  5610. },
  5611. "clickEvents": [
  5612. {
  5613. "__id__": 239
  5614. }
  5615. ],
  5616. "_interactable": true,
  5617. "_transition": 0,
  5618. "_normalColor": {
  5619. "__type__": "cc.Color",
  5620. "r": 214,
  5621. "g": 214,
  5622. "b": 214,
  5623. "a": 255
  5624. },
  5625. "_hoverColor": {
  5626. "__type__": "cc.Color",
  5627. "r": 211,
  5628. "g": 211,
  5629. "b": 211,
  5630. "a": 255
  5631. },
  5632. "_pressedColor": {
  5633. "__type__": "cc.Color",
  5634. "r": 255,
  5635. "g": 255,
  5636. "b": 255,
  5637. "a": 255
  5638. },
  5639. "_disabledColor": {
  5640. "__type__": "cc.Color",
  5641. "r": 124,
  5642. "g": 124,
  5643. "b": 124,
  5644. "a": 255
  5645. },
  5646. "_normalSprite": null,
  5647. "_hoverSprite": null,
  5648. "_pressedSprite": null,
  5649. "_disabledSprite": null,
  5650. "_duration": 0.1,
  5651. "_zoomScale": 1.2,
  5652. "_target": {
  5653. "__id__": 226
  5654. },
  5655. "_id": ""
  5656. },
  5657. {
  5658. "__type__": "cc.CompPrefabInfo",
  5659. "fileId": "e17n/C/ABEVbb9mx+4A5ye"
  5660. },
  5661. {
  5662. "__type__": "cc.ClickEvent",
  5663. "target": {
  5664. "__id__": 1
  5665. },
  5666. "component": "",
  5667. "_componentId": "1049d5aLr1FOqF3DJQv6yvX",
  5668. "handler": "onClickStart",
  5669. "customEventData": ""
  5670. },
  5671. {
  5672. "__type__": "cc.PrefabInfo",
  5673. "root": {
  5674. "__id__": 1
  5675. },
  5676. "asset": {
  5677. "__id__": 0
  5678. },
  5679. "fileId": "6etBZXdCBNX6yKsHggaPXn",
  5680. "instance": null,
  5681. "targetOverrides": null,
  5682. "nestedPrefabInstanceRoots": null
  5683. },
  5684. {
  5685. "__type__": "cc.Node",
  5686. "_name": "npc122",
  5687. "_objFlags": 0,
  5688. "__editorExtras__": {},
  5689. "_parent": {
  5690. "__id__": 8
  5691. },
  5692. "_children": [],
  5693. "_active": false,
  5694. "_components": [
  5695. {
  5696. "__id__": 242
  5697. },
  5698. {
  5699. "__id__": 244
  5700. }
  5701. ],
  5702. "_prefab": {
  5703. "__id__": 246
  5704. },
  5705. "_lpos": {
  5706. "__type__": "cc.Vec3",
  5707. "x": -340.716,
  5708. "y": 149.95899999999995,
  5709. "z": 0
  5710. },
  5711. "_lrot": {
  5712. "__type__": "cc.Quat",
  5713. "x": 0,
  5714. "y": 0,
  5715. "z": 0,
  5716. "w": 1
  5717. },
  5718. "_lscale": {
  5719. "__type__": "cc.Vec3",
  5720. "x": 0.5,
  5721. "y": 0.5,
  5722. "z": 1
  5723. },
  5724. "_mobility": 0,
  5725. "_layer": 33554432,
  5726. "_euler": {
  5727. "__type__": "cc.Vec3",
  5728. "x": 0,
  5729. "y": 0,
  5730. "z": 0
  5731. },
  5732. "_id": ""
  5733. },
  5734. {
  5735. "__type__": "cc.UITransform",
  5736. "_name": "",
  5737. "_objFlags": 0,
  5738. "__editorExtras__": {},
  5739. "node": {
  5740. "__id__": 241
  5741. },
  5742. "_enabled": true,
  5743. "__prefab": {
  5744. "__id__": 243
  5745. },
  5746. "_contentSize": {
  5747. "__type__": "cc.Size",
  5748. "width": 323.9100036621094,
  5749. "height": 474
  5750. },
  5751. "_anchorPoint": {
  5752. "__type__": "cc.Vec2",
  5753. "x": 0,
  5754. "y": 0
  5755. },
  5756. "_id": ""
  5757. },
  5758. {
  5759. "__type__": "cc.CompPrefabInfo",
  5760. "fileId": "f5Xv1FWcJNkJEs6Ot5kpMS"
  5761. },
  5762. {
  5763. "__type__": "sp.Skeleton",
  5764. "_name": "",
  5765. "_objFlags": 0,
  5766. "__editorExtras__": {},
  5767. "node": {
  5768. "__id__": 241
  5769. },
  5770. "_enabled": true,
  5771. "__prefab": {
  5772. "__id__": 245
  5773. },
  5774. "_customMaterial": null,
  5775. "_srcBlendFactor": 2,
  5776. "_dstBlendFactor": 4,
  5777. "_color": {
  5778. "__type__": "cc.Color",
  5779. "r": 255,
  5780. "g": 255,
  5781. "b": 255,
  5782. "a": 255
  5783. },
  5784. "_skeletonData": {
  5785. "__uuid__": "e467e1c9-92d1-4e68-81aa-22571424ff2a",
  5786. "__expectedType__": "sp.SkeletonData"
  5787. },
  5788. "defaultSkin": "default",
  5789. "defaultAnimation": "stand",
  5790. "_premultipliedAlpha": false,
  5791. "_timeScale": 1,
  5792. "_preCacheMode": 0,
  5793. "_cacheMode": 0,
  5794. "_sockets": [],
  5795. "_useTint": false,
  5796. "_debugMesh": false,
  5797. "_debugBones": false,
  5798. "_debugSlots": false,
  5799. "_enableBatch": false,
  5800. "loop": true,
  5801. "_id": ""
  5802. },
  5803. {
  5804. "__type__": "cc.CompPrefabInfo",
  5805. "fileId": "d7FCkwd75A0bvXvVlE/9HY"
  5806. },
  5807. {
  5808. "__type__": "cc.PrefabInfo",
  5809. "root": {
  5810. "__id__": 1
  5811. },
  5812. "asset": {
  5813. "__id__": 0
  5814. },
  5815. "fileId": "17qECN/zRDcK5d/OiG/tvZ",
  5816. "instance": null,
  5817. "targetOverrides": null,
  5818. "nestedPrefabInstanceRoots": null
  5819. },
  5820. {
  5821. "__type__": "cc.Node",
  5822. "_name": "0056",
  5823. "_objFlags": 0,
  5824. "__editorExtras__": {},
  5825. "_parent": {
  5826. "__id__": 8
  5827. },
  5828. "_children": [],
  5829. "_active": true,
  5830. "_components": [
  5831. {
  5832. "__id__": 248
  5833. },
  5834. {
  5835. "__id__": 250
  5836. }
  5837. ],
  5838. "_prefab": {
  5839. "__id__": 252
  5840. },
  5841. "_lpos": {
  5842. "__type__": "cc.Vec3",
  5843. "x": 0,
  5844. "y": 0,
  5845. "z": 0
  5846. },
  5847. "_lrot": {
  5848. "__type__": "cc.Quat",
  5849. "x": 0,
  5850. "y": 0,
  5851. "z": 0,
  5852. "w": 1
  5853. },
  5854. "_lscale": {
  5855. "__type__": "cc.Vec3",
  5856. "x": 1,
  5857. "y": 1,
  5858. "z": 1
  5859. },
  5860. "_mobility": 0,
  5861. "_layer": 33554432,
  5862. "_euler": {
  5863. "__type__": "cc.Vec3",
  5864. "x": 0,
  5865. "y": 0,
  5866. "z": 0
  5867. },
  5868. "_id": ""
  5869. },
  5870. {
  5871. "__type__": "cc.UITransform",
  5872. "_name": "",
  5873. "_objFlags": 0,
  5874. "__editorExtras__": {},
  5875. "node": {
  5876. "__id__": 247
  5877. },
  5878. "_enabled": true,
  5879. "__prefab": {
  5880. "__id__": 249
  5881. },
  5882. "_contentSize": {
  5883. "__type__": "cc.Size",
  5884. "width": 750,
  5885. "height": 1329
  5886. },
  5887. "_anchorPoint": {
  5888. "__type__": "cc.Vec2",
  5889. "x": 0.5,
  5890. "y": 0.5
  5891. },
  5892. "_id": ""
  5893. },
  5894. {
  5895. "__type__": "cc.CompPrefabInfo",
  5896. "fileId": "efvGWDrdNJRrP3IhkXK84Z"
  5897. },
  5898. {
  5899. "__type__": "cc.Sprite",
  5900. "_name": "",
  5901. "_objFlags": 0,
  5902. "__editorExtras__": {},
  5903. "node": {
  5904. "__id__": 247
  5905. },
  5906. "_enabled": true,
  5907. "__prefab": {
  5908. "__id__": 251
  5909. },
  5910. "_customMaterial": null,
  5911. "_srcBlendFactor": 2,
  5912. "_dstBlendFactor": 4,
  5913. "_color": {
  5914. "__type__": "cc.Color",
  5915. "r": 255,
  5916. "g": 255,
  5917. "b": 255,
  5918. "a": 255
  5919. },
  5920. "_spriteFrame": null,
  5921. "_type": 0,
  5922. "_fillType": 0,
  5923. "_sizeMode": 0,
  5924. "_fillCenter": {
  5925. "__type__": "cc.Vec2",
  5926. "x": 0,
  5927. "y": 0
  5928. },
  5929. "_fillStart": 0,
  5930. "_fillRange": 0,
  5931. "_isTrimmedMode": true,
  5932. "_useGrayscale": false,
  5933. "_atlas": null,
  5934. "_id": ""
  5935. },
  5936. {
  5937. "__type__": "cc.CompPrefabInfo",
  5938. "fileId": "78LWHii5tOUaLw2C+Ig5q4"
  5939. },
  5940. {
  5941. "__type__": "cc.PrefabInfo",
  5942. "root": {
  5943. "__id__": 1
  5944. },
  5945. "asset": {
  5946. "__id__": 0
  5947. },
  5948. "fileId": "a0LN54gYdCP7s0VtDQC9H8",
  5949. "instance": null,
  5950. "targetOverrides": null,
  5951. "nestedPrefabInstanceRoots": null
  5952. },
  5953. {
  5954. "__type__": "cc.Node",
  5955. "_name": "hurt_node",
  5956. "_objFlags": 0,
  5957. "__editorExtras__": {},
  5958. "_parent": {
  5959. "__id__": 8
  5960. },
  5961. "_children": [],
  5962. "_active": true,
  5963. "_components": [
  5964. {
  5965. "__id__": 254
  5966. }
  5967. ],
  5968. "_prefab": {
  5969. "__id__": 256
  5970. },
  5971. "_lpos": {
  5972. "__type__": "cc.Vec3",
  5973. "x": 0,
  5974. "y": 0,
  5975. "z": 0
  5976. },
  5977. "_lrot": {
  5978. "__type__": "cc.Quat",
  5979. "x": 0,
  5980. "y": 0,
  5981. "z": 0,
  5982. "w": 1
  5983. },
  5984. "_lscale": {
  5985. "__type__": "cc.Vec3",
  5986. "x": 1,
  5987. "y": 1,
  5988. "z": 1
  5989. },
  5990. "_mobility": 0,
  5991. "_layer": 33554432,
  5992. "_euler": {
  5993. "__type__": "cc.Vec3",
  5994. "x": 0,
  5995. "y": 0,
  5996. "z": 0
  5997. },
  5998. "_id": ""
  5999. },
  6000. {
  6001. "__type__": "cc.UITransform",
  6002. "_name": "",
  6003. "_objFlags": 0,
  6004. "__editorExtras__": {},
  6005. "node": {
  6006. "__id__": 253
  6007. },
  6008. "_enabled": true,
  6009. "__prefab": {
  6010. "__id__": 255
  6011. },
  6012. "_contentSize": {
  6013. "__type__": "cc.Size",
  6014. "width": 100,
  6015. "height": 100
  6016. },
  6017. "_anchorPoint": {
  6018. "__type__": "cc.Vec2",
  6019. "x": 0.5,
  6020. "y": 0.5
  6021. },
  6022. "_id": ""
  6023. },
  6024. {
  6025. "__type__": "cc.CompPrefabInfo",
  6026. "fileId": "89dQv5uxZO/LtY3kNoHRs3"
  6027. },
  6028. {
  6029. "__type__": "cc.PrefabInfo",
  6030. "root": {
  6031. "__id__": 1
  6032. },
  6033. "asset": {
  6034. "__id__": 0
  6035. },
  6036. "fileId": "5bDQfsKpFILYTiN21sUw2k",
  6037. "instance": null,
  6038. "targetOverrides": null,
  6039. "nestedPrefabInstanceRoots": null
  6040. },
  6041. {
  6042. "__type__": "cc.Node",
  6043. "_name": "shengji",
  6044. "_objFlags": 0,
  6045. "__editorExtras__": {},
  6046. "_parent": {
  6047. "__id__": 8
  6048. },
  6049. "_children": [],
  6050. "_active": false,
  6051. "_components": [
  6052. {
  6053. "__id__": 258
  6054. },
  6055. {
  6056. "__id__": 260
  6057. }
  6058. ],
  6059. "_prefab": {
  6060. "__id__": 262
  6061. },
  6062. "_lpos": {
  6063. "__type__": "cc.Vec3",
  6064. "x": -51.23599999999999,
  6065. "y": -375.386,
  6066. "z": 0
  6067. },
  6068. "_lrot": {
  6069. "__type__": "cc.Quat",
  6070. "x": 0,
  6071. "y": 0,
  6072. "z": 0,
  6073. "w": 1
  6074. },
  6075. "_lscale": {
  6076. "__type__": "cc.Vec3",
  6077. "x": 0.5,
  6078. "y": 0.5,
  6079. "z": 1
  6080. },
  6081. "_mobility": 0,
  6082. "_layer": 33554432,
  6083. "_euler": {
  6084. "__type__": "cc.Vec3",
  6085. "x": 0,
  6086. "y": 0,
  6087. "z": 0
  6088. },
  6089. "_id": ""
  6090. },
  6091. {
  6092. "__type__": "cc.UITransform",
  6093. "_name": "",
  6094. "_objFlags": 0,
  6095. "__editorExtras__": {},
  6096. "node": {
  6097. "__id__": 257
  6098. },
  6099. "_enabled": true,
  6100. "__prefab": {
  6101. "__id__": 259
  6102. },
  6103. "_contentSize": {
  6104. "__type__": "cc.Size",
  6105. "width": 474,
  6106. "height": 125.11000061035156
  6107. },
  6108. "_anchorPoint": {
  6109. "__type__": "cc.Vec2",
  6110. "x": 0,
  6111. "y": 0
  6112. },
  6113. "_id": ""
  6114. },
  6115. {
  6116. "__type__": "cc.CompPrefabInfo",
  6117. "fileId": "391hlxKS1DKYWgoMkvwHe/"
  6118. },
  6119. {
  6120. "__type__": "sp.Skeleton",
  6121. "_name": "",
  6122. "_objFlags": 0,
  6123. "__editorExtras__": {},
  6124. "node": {
  6125. "__id__": 257
  6126. },
  6127. "_enabled": true,
  6128. "__prefab": {
  6129. "__id__": 261
  6130. },
  6131. "_customMaterial": null,
  6132. "_srcBlendFactor": 2,
  6133. "_dstBlendFactor": 4,
  6134. "_color": {
  6135. "__type__": "cc.Color",
  6136. "r": 255,
  6137. "g": 255,
  6138. "b": 255,
  6139. "a": 255
  6140. },
  6141. "_skeletonData": {
  6142. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  6143. "__expectedType__": "sp.SkeletonData"
  6144. },
  6145. "defaultSkin": "default",
  6146. "defaultAnimation": "animation",
  6147. "_premultipliedAlpha": false,
  6148. "_timeScale": 1,
  6149. "_preCacheMode": 0,
  6150. "_cacheMode": 0,
  6151. "_sockets": [],
  6152. "_useTint": false,
  6153. "_debugMesh": false,
  6154. "_debugBones": false,
  6155. "_debugSlots": false,
  6156. "_enableBatch": false,
  6157. "loop": false,
  6158. "_id": ""
  6159. },
  6160. {
  6161. "__type__": "cc.CompPrefabInfo",
  6162. "fileId": "1ciECLaJZJ+b/q+iAG3I0B"
  6163. },
  6164. {
  6165. "__type__": "cc.PrefabInfo",
  6166. "root": {
  6167. "__id__": 1
  6168. },
  6169. "asset": {
  6170. "__id__": 0
  6171. },
  6172. "fileId": "16BFXNDbtCGI0VGK+2tNc1",
  6173. "instance": null,
  6174. "targetOverrides": null,
  6175. "nestedPrefabInstanceRoots": null
  6176. },
  6177. {
  6178. "__type__": "cc.Node",
  6179. "_name": "shengji-001",
  6180. "_objFlags": 0,
  6181. "__editorExtras__": {},
  6182. "_parent": {
  6183. "__id__": 8
  6184. },
  6185. "_children": [],
  6186. "_active": false,
  6187. "_components": [
  6188. {
  6189. "__id__": 264
  6190. },
  6191. {
  6192. "__id__": 266
  6193. }
  6194. ],
  6195. "_prefab": {
  6196. "__id__": 268
  6197. },
  6198. "_lpos": {
  6199. "__type__": "cc.Vec3",
  6200. "x": -51.23599999999999,
  6201. "y": -375.386,
  6202. "z": 0
  6203. },
  6204. "_lrot": {
  6205. "__type__": "cc.Quat",
  6206. "x": 0,
  6207. "y": 0,
  6208. "z": 0,
  6209. "w": 1
  6210. },
  6211. "_lscale": {
  6212. "__type__": "cc.Vec3",
  6213. "x": 0.5,
  6214. "y": 0.5,
  6215. "z": 1
  6216. },
  6217. "_mobility": 0,
  6218. "_layer": 33554432,
  6219. "_euler": {
  6220. "__type__": "cc.Vec3",
  6221. "x": 0,
  6222. "y": 0,
  6223. "z": 0
  6224. },
  6225. "_id": ""
  6226. },
  6227. {
  6228. "__type__": "cc.UITransform",
  6229. "_name": "",
  6230. "_objFlags": 0,
  6231. "__editorExtras__": {},
  6232. "node": {
  6233. "__id__": 263
  6234. },
  6235. "_enabled": true,
  6236. "__prefab": {
  6237. "__id__": 265
  6238. },
  6239. "_contentSize": {
  6240. "__type__": "cc.Size",
  6241. "width": 474,
  6242. "height": 125.11000061035156
  6243. },
  6244. "_anchorPoint": {
  6245. "__type__": "cc.Vec2",
  6246. "x": 0,
  6247. "y": 0
  6248. },
  6249. "_id": ""
  6250. },
  6251. {
  6252. "__type__": "cc.CompPrefabInfo",
  6253. "fileId": "b3OxUUWuFIK5wtJEZre5Zq"
  6254. },
  6255. {
  6256. "__type__": "sp.Skeleton",
  6257. "_name": "",
  6258. "_objFlags": 0,
  6259. "__editorExtras__": {},
  6260. "node": {
  6261. "__id__": 263
  6262. },
  6263. "_enabled": true,
  6264. "__prefab": {
  6265. "__id__": 267
  6266. },
  6267. "_customMaterial": null,
  6268. "_srcBlendFactor": 2,
  6269. "_dstBlendFactor": 4,
  6270. "_color": {
  6271. "__type__": "cc.Color",
  6272. "r": 255,
  6273. "g": 255,
  6274. "b": 255,
  6275. "a": 255
  6276. },
  6277. "_skeletonData": {
  6278. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  6279. "__expectedType__": "sp.SkeletonData"
  6280. },
  6281. "defaultSkin": "default",
  6282. "defaultAnimation": "animation",
  6283. "_premultipliedAlpha": false,
  6284. "_timeScale": 1,
  6285. "_preCacheMode": 0,
  6286. "_cacheMode": 0,
  6287. "_sockets": [],
  6288. "_useTint": false,
  6289. "_debugMesh": false,
  6290. "_debugBones": false,
  6291. "_debugSlots": false,
  6292. "_enableBatch": false,
  6293. "loop": false,
  6294. "_id": ""
  6295. },
  6296. {
  6297. "__type__": "cc.CompPrefabInfo",
  6298. "fileId": "74gJdVgJlCfKYqFmaRCEoD"
  6299. },
  6300. {
  6301. "__type__": "cc.PrefabInfo",
  6302. "root": {
  6303. "__id__": 1
  6304. },
  6305. "asset": {
  6306. "__id__": 0
  6307. },
  6308. "fileId": "20DcceSqtEH723eF//sTPX",
  6309. "instance": null,
  6310. "targetOverrides": null,
  6311. "nestedPrefabInstanceRoots": null
  6312. },
  6313. {
  6314. "__type__": "cc.Node",
  6315. "_name": "shengji-002",
  6316. "_objFlags": 0,
  6317. "__editorExtras__": {},
  6318. "_parent": {
  6319. "__id__": 8
  6320. },
  6321. "_children": [],
  6322. "_active": false,
  6323. "_components": [
  6324. {
  6325. "__id__": 270
  6326. },
  6327. {
  6328. "__id__": 272
  6329. }
  6330. ],
  6331. "_prefab": {
  6332. "__id__": 274
  6333. },
  6334. "_lpos": {
  6335. "__type__": "cc.Vec3",
  6336. "x": -51.23599999999999,
  6337. "y": -375.386,
  6338. "z": 0
  6339. },
  6340. "_lrot": {
  6341. "__type__": "cc.Quat",
  6342. "x": 0,
  6343. "y": 0,
  6344. "z": 0,
  6345. "w": 1
  6346. },
  6347. "_lscale": {
  6348. "__type__": "cc.Vec3",
  6349. "x": 0.5,
  6350. "y": 0.5,
  6351. "z": 1
  6352. },
  6353. "_mobility": 0,
  6354. "_layer": 33554432,
  6355. "_euler": {
  6356. "__type__": "cc.Vec3",
  6357. "x": 0,
  6358. "y": 0,
  6359. "z": 0
  6360. },
  6361. "_id": ""
  6362. },
  6363. {
  6364. "__type__": "cc.UITransform",
  6365. "_name": "",
  6366. "_objFlags": 0,
  6367. "__editorExtras__": {},
  6368. "node": {
  6369. "__id__": 269
  6370. },
  6371. "_enabled": true,
  6372. "__prefab": {
  6373. "__id__": 271
  6374. },
  6375. "_contentSize": {
  6376. "__type__": "cc.Size",
  6377. "width": 474,
  6378. "height": 125.11000061035156
  6379. },
  6380. "_anchorPoint": {
  6381. "__type__": "cc.Vec2",
  6382. "x": 0,
  6383. "y": 0
  6384. },
  6385. "_id": ""
  6386. },
  6387. {
  6388. "__type__": "cc.CompPrefabInfo",
  6389. "fileId": "ecwherI29Gione+WKmMu9C"
  6390. },
  6391. {
  6392. "__type__": "sp.Skeleton",
  6393. "_name": "",
  6394. "_objFlags": 0,
  6395. "__editorExtras__": {},
  6396. "node": {
  6397. "__id__": 269
  6398. },
  6399. "_enabled": true,
  6400. "__prefab": {
  6401. "__id__": 273
  6402. },
  6403. "_customMaterial": null,
  6404. "_srcBlendFactor": 2,
  6405. "_dstBlendFactor": 4,
  6406. "_color": {
  6407. "__type__": "cc.Color",
  6408. "r": 255,
  6409. "g": 255,
  6410. "b": 255,
  6411. "a": 255
  6412. },
  6413. "_skeletonData": {
  6414. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  6415. "__expectedType__": "sp.SkeletonData"
  6416. },
  6417. "defaultSkin": "default",
  6418. "defaultAnimation": "animation",
  6419. "_premultipliedAlpha": false,
  6420. "_timeScale": 1,
  6421. "_preCacheMode": 0,
  6422. "_cacheMode": 0,
  6423. "_sockets": [],
  6424. "_useTint": false,
  6425. "_debugMesh": false,
  6426. "_debugBones": false,
  6427. "_debugSlots": false,
  6428. "_enableBatch": false,
  6429. "loop": false,
  6430. "_id": ""
  6431. },
  6432. {
  6433. "__type__": "cc.CompPrefabInfo",
  6434. "fileId": "2cSng+6vxG9a1hTl5y0DuM"
  6435. },
  6436. {
  6437. "__type__": "cc.PrefabInfo",
  6438. "root": {
  6439. "__id__": 1
  6440. },
  6441. "asset": {
  6442. "__id__": 0
  6443. },
  6444. "fileId": "94ZHq5R19CP7C8RflVgDla",
  6445. "instance": null,
  6446. "targetOverrides": null,
  6447. "nestedPrefabInstanceRoots": null
  6448. },
  6449. {
  6450. "__type__": "cc.Node",
  6451. "_name": "shengji-003",
  6452. "_objFlags": 0,
  6453. "__editorExtras__": {},
  6454. "_parent": {
  6455. "__id__": 8
  6456. },
  6457. "_children": [],
  6458. "_active": false,
  6459. "_components": [
  6460. {
  6461. "__id__": 276
  6462. },
  6463. {
  6464. "__id__": 278
  6465. }
  6466. ],
  6467. "_prefab": {
  6468. "__id__": 280
  6469. },
  6470. "_lpos": {
  6471. "__type__": "cc.Vec3",
  6472. "x": -51.23599999999999,
  6473. "y": -375.386,
  6474. "z": 0
  6475. },
  6476. "_lrot": {
  6477. "__type__": "cc.Quat",
  6478. "x": 0,
  6479. "y": 0,
  6480. "z": 0,
  6481. "w": 1
  6482. },
  6483. "_lscale": {
  6484. "__type__": "cc.Vec3",
  6485. "x": 0.5,
  6486. "y": 0.5,
  6487. "z": 1
  6488. },
  6489. "_mobility": 0,
  6490. "_layer": 33554432,
  6491. "_euler": {
  6492. "__type__": "cc.Vec3",
  6493. "x": 0,
  6494. "y": 0,
  6495. "z": 0
  6496. },
  6497. "_id": ""
  6498. },
  6499. {
  6500. "__type__": "cc.UITransform",
  6501. "_name": "",
  6502. "_objFlags": 0,
  6503. "__editorExtras__": {},
  6504. "node": {
  6505. "__id__": 275
  6506. },
  6507. "_enabled": true,
  6508. "__prefab": {
  6509. "__id__": 277
  6510. },
  6511. "_contentSize": {
  6512. "__type__": "cc.Size",
  6513. "width": 474,
  6514. "height": 125.11000061035156
  6515. },
  6516. "_anchorPoint": {
  6517. "__type__": "cc.Vec2",
  6518. "x": 0,
  6519. "y": 0
  6520. },
  6521. "_id": ""
  6522. },
  6523. {
  6524. "__type__": "cc.CompPrefabInfo",
  6525. "fileId": "6akTiwQxRN643bRmJ7vMdt"
  6526. },
  6527. {
  6528. "__type__": "sp.Skeleton",
  6529. "_name": "",
  6530. "_objFlags": 0,
  6531. "__editorExtras__": {},
  6532. "node": {
  6533. "__id__": 275
  6534. },
  6535. "_enabled": true,
  6536. "__prefab": {
  6537. "__id__": 279
  6538. },
  6539. "_customMaterial": null,
  6540. "_srcBlendFactor": 2,
  6541. "_dstBlendFactor": 4,
  6542. "_color": {
  6543. "__type__": "cc.Color",
  6544. "r": 255,
  6545. "g": 255,
  6546. "b": 255,
  6547. "a": 255
  6548. },
  6549. "_skeletonData": {
  6550. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  6551. "__expectedType__": "sp.SkeletonData"
  6552. },
  6553. "defaultSkin": "default",
  6554. "defaultAnimation": "animation",
  6555. "_premultipliedAlpha": false,
  6556. "_timeScale": 1,
  6557. "_preCacheMode": 0,
  6558. "_cacheMode": 0,
  6559. "_sockets": [],
  6560. "_useTint": false,
  6561. "_debugMesh": false,
  6562. "_debugBones": false,
  6563. "_debugSlots": false,
  6564. "_enableBatch": false,
  6565. "loop": false,
  6566. "_id": ""
  6567. },
  6568. {
  6569. "__type__": "cc.CompPrefabInfo",
  6570. "fileId": "649od3znlPBowlbF6uS3tM"
  6571. },
  6572. {
  6573. "__type__": "cc.PrefabInfo",
  6574. "root": {
  6575. "__id__": 1
  6576. },
  6577. "asset": {
  6578. "__id__": 0
  6579. },
  6580. "fileId": "37fNzkUOxOw6pPdxr6DUQi",
  6581. "instance": null,
  6582. "targetOverrides": null,
  6583. "nestedPrefabInstanceRoots": null
  6584. },
  6585. {
  6586. "__type__": "cc.Node",
  6587. "_name": "shengji-004",
  6588. "_objFlags": 0,
  6589. "__editorExtras__": {},
  6590. "_parent": {
  6591. "__id__": 8
  6592. },
  6593. "_children": [],
  6594. "_active": false,
  6595. "_components": [
  6596. {
  6597. "__id__": 282
  6598. },
  6599. {
  6600. "__id__": 284
  6601. }
  6602. ],
  6603. "_prefab": {
  6604. "__id__": 286
  6605. },
  6606. "_lpos": {
  6607. "__type__": "cc.Vec3",
  6608. "x": -51.23599999999999,
  6609. "y": -375.386,
  6610. "z": 0
  6611. },
  6612. "_lrot": {
  6613. "__type__": "cc.Quat",
  6614. "x": 0,
  6615. "y": 0,
  6616. "z": 0,
  6617. "w": 1
  6618. },
  6619. "_lscale": {
  6620. "__type__": "cc.Vec3",
  6621. "x": 0.5,
  6622. "y": 0.5,
  6623. "z": 1
  6624. },
  6625. "_mobility": 0,
  6626. "_layer": 33554432,
  6627. "_euler": {
  6628. "__type__": "cc.Vec3",
  6629. "x": 0,
  6630. "y": 0,
  6631. "z": 0
  6632. },
  6633. "_id": ""
  6634. },
  6635. {
  6636. "__type__": "cc.UITransform",
  6637. "_name": "",
  6638. "_objFlags": 0,
  6639. "__editorExtras__": {},
  6640. "node": {
  6641. "__id__": 281
  6642. },
  6643. "_enabled": true,
  6644. "__prefab": {
  6645. "__id__": 283
  6646. },
  6647. "_contentSize": {
  6648. "__type__": "cc.Size",
  6649. "width": 474,
  6650. "height": 125.11000061035156
  6651. },
  6652. "_anchorPoint": {
  6653. "__type__": "cc.Vec2",
  6654. "x": 0,
  6655. "y": 0
  6656. },
  6657. "_id": ""
  6658. },
  6659. {
  6660. "__type__": "cc.CompPrefabInfo",
  6661. "fileId": "a71w7zKdJG5qQI04eWdsvk"
  6662. },
  6663. {
  6664. "__type__": "sp.Skeleton",
  6665. "_name": "",
  6666. "_objFlags": 0,
  6667. "__editorExtras__": {},
  6668. "node": {
  6669. "__id__": 281
  6670. },
  6671. "_enabled": true,
  6672. "__prefab": {
  6673. "__id__": 285
  6674. },
  6675. "_customMaterial": null,
  6676. "_srcBlendFactor": 2,
  6677. "_dstBlendFactor": 4,
  6678. "_color": {
  6679. "__type__": "cc.Color",
  6680. "r": 255,
  6681. "g": 255,
  6682. "b": 255,
  6683. "a": 255
  6684. },
  6685. "_skeletonData": {
  6686. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  6687. "__expectedType__": "sp.SkeletonData"
  6688. },
  6689. "defaultSkin": "default",
  6690. "defaultAnimation": "animation",
  6691. "_premultipliedAlpha": false,
  6692. "_timeScale": 1,
  6693. "_preCacheMode": 0,
  6694. "_cacheMode": 0,
  6695. "_sockets": [],
  6696. "_useTint": false,
  6697. "_debugMesh": false,
  6698. "_debugBones": false,
  6699. "_debugSlots": false,
  6700. "_enableBatch": false,
  6701. "loop": false,
  6702. "_id": ""
  6703. },
  6704. {
  6705. "__type__": "cc.CompPrefabInfo",
  6706. "fileId": "8930XBy5FDkqF6OJpfcrzh"
  6707. },
  6708. {
  6709. "__type__": "cc.PrefabInfo",
  6710. "root": {
  6711. "__id__": 1
  6712. },
  6713. "asset": {
  6714. "__id__": 0
  6715. },
  6716. "fileId": "fbEZDN61RE+bSgfn3WJXyS",
  6717. "instance": null,
  6718. "targetOverrides": null,
  6719. "nestedPrefabInstanceRoots": null
  6720. },
  6721. {
  6722. "__type__": "cc.Node",
  6723. "_name": "shengji-005",
  6724. "_objFlags": 0,
  6725. "__editorExtras__": {},
  6726. "_parent": {
  6727. "__id__": 8
  6728. },
  6729. "_children": [],
  6730. "_active": false,
  6731. "_components": [
  6732. {
  6733. "__id__": 288
  6734. },
  6735. {
  6736. "__id__": 290
  6737. }
  6738. ],
  6739. "_prefab": {
  6740. "__id__": 292
  6741. },
  6742. "_lpos": {
  6743. "__type__": "cc.Vec3",
  6744. "x": -51.23599999999999,
  6745. "y": -375.386,
  6746. "z": 0
  6747. },
  6748. "_lrot": {
  6749. "__type__": "cc.Quat",
  6750. "x": 0,
  6751. "y": 0,
  6752. "z": 0,
  6753. "w": 1
  6754. },
  6755. "_lscale": {
  6756. "__type__": "cc.Vec3",
  6757. "x": 0.5,
  6758. "y": 0.5,
  6759. "z": 1
  6760. },
  6761. "_mobility": 0,
  6762. "_layer": 33554432,
  6763. "_euler": {
  6764. "__type__": "cc.Vec3",
  6765. "x": 0,
  6766. "y": 0,
  6767. "z": 0
  6768. },
  6769. "_id": ""
  6770. },
  6771. {
  6772. "__type__": "cc.UITransform",
  6773. "_name": "",
  6774. "_objFlags": 0,
  6775. "__editorExtras__": {},
  6776. "node": {
  6777. "__id__": 287
  6778. },
  6779. "_enabled": true,
  6780. "__prefab": {
  6781. "__id__": 289
  6782. },
  6783. "_contentSize": {
  6784. "__type__": "cc.Size",
  6785. "width": 474,
  6786. "height": 125.11000061035156
  6787. },
  6788. "_anchorPoint": {
  6789. "__type__": "cc.Vec2",
  6790. "x": 0,
  6791. "y": 0
  6792. },
  6793. "_id": ""
  6794. },
  6795. {
  6796. "__type__": "cc.CompPrefabInfo",
  6797. "fileId": "fcNViKqeZPnbd0h86ThnhR"
  6798. },
  6799. {
  6800. "__type__": "sp.Skeleton",
  6801. "_name": "",
  6802. "_objFlags": 0,
  6803. "__editorExtras__": {},
  6804. "node": {
  6805. "__id__": 287
  6806. },
  6807. "_enabled": true,
  6808. "__prefab": {
  6809. "__id__": 291
  6810. },
  6811. "_customMaterial": null,
  6812. "_srcBlendFactor": 2,
  6813. "_dstBlendFactor": 4,
  6814. "_color": {
  6815. "__type__": "cc.Color",
  6816. "r": 255,
  6817. "g": 255,
  6818. "b": 255,
  6819. "a": 255
  6820. },
  6821. "_skeletonData": {
  6822. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  6823. "__expectedType__": "sp.SkeletonData"
  6824. },
  6825. "defaultSkin": "default",
  6826. "defaultAnimation": "animation",
  6827. "_premultipliedAlpha": false,
  6828. "_timeScale": 1,
  6829. "_preCacheMode": 0,
  6830. "_cacheMode": 0,
  6831. "_sockets": [],
  6832. "_useTint": false,
  6833. "_debugMesh": false,
  6834. "_debugBones": false,
  6835. "_debugSlots": false,
  6836. "_enableBatch": false,
  6837. "loop": false,
  6838. "_id": ""
  6839. },
  6840. {
  6841. "__type__": "cc.CompPrefabInfo",
  6842. "fileId": "3aMjXT4JtEFLU2qPPbCycC"
  6843. },
  6844. {
  6845. "__type__": "cc.PrefabInfo",
  6846. "root": {
  6847. "__id__": 1
  6848. },
  6849. "asset": {
  6850. "__id__": 0
  6851. },
  6852. "fileId": "21hOxmaG1EFKyssqrGRZOr",
  6853. "instance": null,
  6854. "targetOverrides": null,
  6855. "nestedPrefabInstanceRoots": null
  6856. },
  6857. {
  6858. "__type__": "cc.Node",
  6859. "_name": "shengji-006",
  6860. "_objFlags": 0,
  6861. "__editorExtras__": {},
  6862. "_parent": {
  6863. "__id__": 8
  6864. },
  6865. "_children": [],
  6866. "_active": false,
  6867. "_components": [
  6868. {
  6869. "__id__": 294
  6870. },
  6871. {
  6872. "__id__": 296
  6873. }
  6874. ],
  6875. "_prefab": {
  6876. "__id__": 298
  6877. },
  6878. "_lpos": {
  6879. "__type__": "cc.Vec3",
  6880. "x": -51.23599999999999,
  6881. "y": -375.386,
  6882. "z": 0
  6883. },
  6884. "_lrot": {
  6885. "__type__": "cc.Quat",
  6886. "x": 0,
  6887. "y": 0,
  6888. "z": 0,
  6889. "w": 1
  6890. },
  6891. "_lscale": {
  6892. "__type__": "cc.Vec3",
  6893. "x": 0.5,
  6894. "y": 0.5,
  6895. "z": 1
  6896. },
  6897. "_mobility": 0,
  6898. "_layer": 33554432,
  6899. "_euler": {
  6900. "__type__": "cc.Vec3",
  6901. "x": 0,
  6902. "y": 0,
  6903. "z": 0
  6904. },
  6905. "_id": ""
  6906. },
  6907. {
  6908. "__type__": "cc.UITransform",
  6909. "_name": "",
  6910. "_objFlags": 0,
  6911. "__editorExtras__": {},
  6912. "node": {
  6913. "__id__": 293
  6914. },
  6915. "_enabled": true,
  6916. "__prefab": {
  6917. "__id__": 295
  6918. },
  6919. "_contentSize": {
  6920. "__type__": "cc.Size",
  6921. "width": 474,
  6922. "height": 125.11000061035156
  6923. },
  6924. "_anchorPoint": {
  6925. "__type__": "cc.Vec2",
  6926. "x": 0,
  6927. "y": 0
  6928. },
  6929. "_id": ""
  6930. },
  6931. {
  6932. "__type__": "cc.CompPrefabInfo",
  6933. "fileId": "31EgV6dAlO3alGZR21vCLq"
  6934. },
  6935. {
  6936. "__type__": "sp.Skeleton",
  6937. "_name": "",
  6938. "_objFlags": 0,
  6939. "__editorExtras__": {},
  6940. "node": {
  6941. "__id__": 293
  6942. },
  6943. "_enabled": true,
  6944. "__prefab": {
  6945. "__id__": 297
  6946. },
  6947. "_customMaterial": null,
  6948. "_srcBlendFactor": 2,
  6949. "_dstBlendFactor": 4,
  6950. "_color": {
  6951. "__type__": "cc.Color",
  6952. "r": 255,
  6953. "g": 255,
  6954. "b": 255,
  6955. "a": 255
  6956. },
  6957. "_skeletonData": {
  6958. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  6959. "__expectedType__": "sp.SkeletonData"
  6960. },
  6961. "defaultSkin": "default",
  6962. "defaultAnimation": "animation",
  6963. "_premultipliedAlpha": false,
  6964. "_timeScale": 1,
  6965. "_preCacheMode": 0,
  6966. "_cacheMode": 0,
  6967. "_sockets": [],
  6968. "_useTint": false,
  6969. "_debugMesh": false,
  6970. "_debugBones": false,
  6971. "_debugSlots": false,
  6972. "_enableBatch": false,
  6973. "loop": false,
  6974. "_id": ""
  6975. },
  6976. {
  6977. "__type__": "cc.CompPrefabInfo",
  6978. "fileId": "77VWfrDxxBrYyw28+rGUJh"
  6979. },
  6980. {
  6981. "__type__": "cc.PrefabInfo",
  6982. "root": {
  6983. "__id__": 1
  6984. },
  6985. "asset": {
  6986. "__id__": 0
  6987. },
  6988. "fileId": "e1k259LfFPJK8S8GJ26SG3",
  6989. "instance": null,
  6990. "targetOverrides": null,
  6991. "nestedPrefabInstanceRoots": null
  6992. },
  6993. {
  6994. "__type__": "cc.Node",
  6995. "_name": "shengji-007",
  6996. "_objFlags": 0,
  6997. "__editorExtras__": {},
  6998. "_parent": {
  6999. "__id__": 8
  7000. },
  7001. "_children": [],
  7002. "_active": false,
  7003. "_components": [
  7004. {
  7005. "__id__": 300
  7006. },
  7007. {
  7008. "__id__": 302
  7009. }
  7010. ],
  7011. "_prefab": {
  7012. "__id__": 304
  7013. },
  7014. "_lpos": {
  7015. "__type__": "cc.Vec3",
  7016. "x": -51.23599999999999,
  7017. "y": -375.386,
  7018. "z": 0
  7019. },
  7020. "_lrot": {
  7021. "__type__": "cc.Quat",
  7022. "x": 0,
  7023. "y": 0,
  7024. "z": 0,
  7025. "w": 1
  7026. },
  7027. "_lscale": {
  7028. "__type__": "cc.Vec3",
  7029. "x": 0.5,
  7030. "y": 0.5,
  7031. "z": 1
  7032. },
  7033. "_mobility": 0,
  7034. "_layer": 33554432,
  7035. "_euler": {
  7036. "__type__": "cc.Vec3",
  7037. "x": 0,
  7038. "y": 0,
  7039. "z": 0
  7040. },
  7041. "_id": ""
  7042. },
  7043. {
  7044. "__type__": "cc.UITransform",
  7045. "_name": "",
  7046. "_objFlags": 0,
  7047. "__editorExtras__": {},
  7048. "node": {
  7049. "__id__": 299
  7050. },
  7051. "_enabled": true,
  7052. "__prefab": {
  7053. "__id__": 301
  7054. },
  7055. "_contentSize": {
  7056. "__type__": "cc.Size",
  7057. "width": 474,
  7058. "height": 125.11000061035156
  7059. },
  7060. "_anchorPoint": {
  7061. "__type__": "cc.Vec2",
  7062. "x": 0,
  7063. "y": 0
  7064. },
  7065. "_id": ""
  7066. },
  7067. {
  7068. "__type__": "cc.CompPrefabInfo",
  7069. "fileId": "0cXm6AMflHpbgmKkDtINkS"
  7070. },
  7071. {
  7072. "__type__": "sp.Skeleton",
  7073. "_name": "",
  7074. "_objFlags": 0,
  7075. "__editorExtras__": {},
  7076. "node": {
  7077. "__id__": 299
  7078. },
  7079. "_enabled": true,
  7080. "__prefab": {
  7081. "__id__": 303
  7082. },
  7083. "_customMaterial": null,
  7084. "_srcBlendFactor": 2,
  7085. "_dstBlendFactor": 4,
  7086. "_color": {
  7087. "__type__": "cc.Color",
  7088. "r": 255,
  7089. "g": 255,
  7090. "b": 255,
  7091. "a": 255
  7092. },
  7093. "_skeletonData": {
  7094. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  7095. "__expectedType__": "sp.SkeletonData"
  7096. },
  7097. "defaultSkin": "default",
  7098. "defaultAnimation": "animation",
  7099. "_premultipliedAlpha": false,
  7100. "_timeScale": 1,
  7101. "_preCacheMode": 0,
  7102. "_cacheMode": 0,
  7103. "_sockets": [],
  7104. "_useTint": false,
  7105. "_debugMesh": false,
  7106. "_debugBones": false,
  7107. "_debugSlots": false,
  7108. "_enableBatch": false,
  7109. "loop": false,
  7110. "_id": ""
  7111. },
  7112. {
  7113. "__type__": "cc.CompPrefabInfo",
  7114. "fileId": "70tsm61GVCaatpMnL9MMbz"
  7115. },
  7116. {
  7117. "__type__": "cc.PrefabInfo",
  7118. "root": {
  7119. "__id__": 1
  7120. },
  7121. "asset": {
  7122. "__id__": 0
  7123. },
  7124. "fileId": "2a7aLJHqJNgbIKV+eu5qmU",
  7125. "instance": null,
  7126. "targetOverrides": null,
  7127. "nestedPrefabInstanceRoots": null
  7128. },
  7129. {
  7130. "__type__": "cc.Node",
  7131. "_name": "shengji-008",
  7132. "_objFlags": 0,
  7133. "__editorExtras__": {},
  7134. "_parent": {
  7135. "__id__": 8
  7136. },
  7137. "_children": [],
  7138. "_active": false,
  7139. "_components": [
  7140. {
  7141. "__id__": 306
  7142. },
  7143. {
  7144. "__id__": 308
  7145. }
  7146. ],
  7147. "_prefab": {
  7148. "__id__": 310
  7149. },
  7150. "_lpos": {
  7151. "__type__": "cc.Vec3",
  7152. "x": -51.23599999999999,
  7153. "y": -375.386,
  7154. "z": 0
  7155. },
  7156. "_lrot": {
  7157. "__type__": "cc.Quat",
  7158. "x": 0,
  7159. "y": 0,
  7160. "z": 0,
  7161. "w": 1
  7162. },
  7163. "_lscale": {
  7164. "__type__": "cc.Vec3",
  7165. "x": 0.5,
  7166. "y": 0.5,
  7167. "z": 1
  7168. },
  7169. "_mobility": 0,
  7170. "_layer": 33554432,
  7171. "_euler": {
  7172. "__type__": "cc.Vec3",
  7173. "x": 0,
  7174. "y": 0,
  7175. "z": 0
  7176. },
  7177. "_id": ""
  7178. },
  7179. {
  7180. "__type__": "cc.UITransform",
  7181. "_name": "",
  7182. "_objFlags": 0,
  7183. "__editorExtras__": {},
  7184. "node": {
  7185. "__id__": 305
  7186. },
  7187. "_enabled": true,
  7188. "__prefab": {
  7189. "__id__": 307
  7190. },
  7191. "_contentSize": {
  7192. "__type__": "cc.Size",
  7193. "width": 474,
  7194. "height": 125.11000061035156
  7195. },
  7196. "_anchorPoint": {
  7197. "__type__": "cc.Vec2",
  7198. "x": 0,
  7199. "y": 0
  7200. },
  7201. "_id": ""
  7202. },
  7203. {
  7204. "__type__": "cc.CompPrefabInfo",
  7205. "fileId": "2aMAV11RFDV49z4ADZG2Kk"
  7206. },
  7207. {
  7208. "__type__": "sp.Skeleton",
  7209. "_name": "",
  7210. "_objFlags": 0,
  7211. "__editorExtras__": {},
  7212. "node": {
  7213. "__id__": 305
  7214. },
  7215. "_enabled": true,
  7216. "__prefab": {
  7217. "__id__": 309
  7218. },
  7219. "_customMaterial": null,
  7220. "_srcBlendFactor": 2,
  7221. "_dstBlendFactor": 4,
  7222. "_color": {
  7223. "__type__": "cc.Color",
  7224. "r": 255,
  7225. "g": 255,
  7226. "b": 255,
  7227. "a": 255
  7228. },
  7229. "_skeletonData": {
  7230. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  7231. "__expectedType__": "sp.SkeletonData"
  7232. },
  7233. "defaultSkin": "default",
  7234. "defaultAnimation": "animation",
  7235. "_premultipliedAlpha": false,
  7236. "_timeScale": 1,
  7237. "_preCacheMode": 0,
  7238. "_cacheMode": 0,
  7239. "_sockets": [],
  7240. "_useTint": false,
  7241. "_debugMesh": false,
  7242. "_debugBones": false,
  7243. "_debugSlots": false,
  7244. "_enableBatch": false,
  7245. "loop": false,
  7246. "_id": ""
  7247. },
  7248. {
  7249. "__type__": "cc.CompPrefabInfo",
  7250. "fileId": "79Bz88UmtFtZlbzpoF6uDI"
  7251. },
  7252. {
  7253. "__type__": "cc.PrefabInfo",
  7254. "root": {
  7255. "__id__": 1
  7256. },
  7257. "asset": {
  7258. "__id__": 0
  7259. },
  7260. "fileId": "2bUNE+n/FECKLZY2Ab1tK4",
  7261. "instance": null,
  7262. "targetOverrides": null,
  7263. "nestedPrefabInstanceRoots": null
  7264. },
  7265. {
  7266. "__type__": "cc.Node",
  7267. "_name": "shengji-009",
  7268. "_objFlags": 0,
  7269. "__editorExtras__": {},
  7270. "_parent": {
  7271. "__id__": 8
  7272. },
  7273. "_children": [],
  7274. "_active": false,
  7275. "_components": [
  7276. {
  7277. "__id__": 312
  7278. },
  7279. {
  7280. "__id__": 314
  7281. }
  7282. ],
  7283. "_prefab": {
  7284. "__id__": 316
  7285. },
  7286. "_lpos": {
  7287. "__type__": "cc.Vec3",
  7288. "x": -51.23599999999999,
  7289. "y": -375.386,
  7290. "z": 0
  7291. },
  7292. "_lrot": {
  7293. "__type__": "cc.Quat",
  7294. "x": 0,
  7295. "y": 0,
  7296. "z": 0,
  7297. "w": 1
  7298. },
  7299. "_lscale": {
  7300. "__type__": "cc.Vec3",
  7301. "x": 0.5,
  7302. "y": 0.5,
  7303. "z": 1
  7304. },
  7305. "_mobility": 0,
  7306. "_layer": 33554432,
  7307. "_euler": {
  7308. "__type__": "cc.Vec3",
  7309. "x": 0,
  7310. "y": 0,
  7311. "z": 0
  7312. },
  7313. "_id": ""
  7314. },
  7315. {
  7316. "__type__": "cc.UITransform",
  7317. "_name": "",
  7318. "_objFlags": 0,
  7319. "__editorExtras__": {},
  7320. "node": {
  7321. "__id__": 311
  7322. },
  7323. "_enabled": true,
  7324. "__prefab": {
  7325. "__id__": 313
  7326. },
  7327. "_contentSize": {
  7328. "__type__": "cc.Size",
  7329. "width": 474,
  7330. "height": 125.11000061035156
  7331. },
  7332. "_anchorPoint": {
  7333. "__type__": "cc.Vec2",
  7334. "x": 0,
  7335. "y": 0
  7336. },
  7337. "_id": ""
  7338. },
  7339. {
  7340. "__type__": "cc.CompPrefabInfo",
  7341. "fileId": "e1+etL3GpECKLPh63U8KlN"
  7342. },
  7343. {
  7344. "__type__": "sp.Skeleton",
  7345. "_name": "",
  7346. "_objFlags": 0,
  7347. "__editorExtras__": {},
  7348. "node": {
  7349. "__id__": 311
  7350. },
  7351. "_enabled": true,
  7352. "__prefab": {
  7353. "__id__": 315
  7354. },
  7355. "_customMaterial": null,
  7356. "_srcBlendFactor": 2,
  7357. "_dstBlendFactor": 4,
  7358. "_color": {
  7359. "__type__": "cc.Color",
  7360. "r": 255,
  7361. "g": 255,
  7362. "b": 255,
  7363. "a": 255
  7364. },
  7365. "_skeletonData": {
  7366. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  7367. "__expectedType__": "sp.SkeletonData"
  7368. },
  7369. "defaultSkin": "default",
  7370. "defaultAnimation": "animation",
  7371. "_premultipliedAlpha": false,
  7372. "_timeScale": 1,
  7373. "_preCacheMode": 0,
  7374. "_cacheMode": 0,
  7375. "_sockets": [],
  7376. "_useTint": false,
  7377. "_debugMesh": false,
  7378. "_debugBones": false,
  7379. "_debugSlots": false,
  7380. "_enableBatch": false,
  7381. "loop": false,
  7382. "_id": ""
  7383. },
  7384. {
  7385. "__type__": "cc.CompPrefabInfo",
  7386. "fileId": "e4LvxxpExLY4Tw9xqhV3Fo"
  7387. },
  7388. {
  7389. "__type__": "cc.PrefabInfo",
  7390. "root": {
  7391. "__id__": 1
  7392. },
  7393. "asset": {
  7394. "__id__": 0
  7395. },
  7396. "fileId": "64tn3hKB9E6rvkjPcXC+Jp",
  7397. "instance": null,
  7398. "targetOverrides": null,
  7399. "nestedPrefabInstanceRoots": null
  7400. },
  7401. {
  7402. "__type__": "cc.Node",
  7403. "_name": "shengji-010",
  7404. "_objFlags": 0,
  7405. "__editorExtras__": {},
  7406. "_parent": {
  7407. "__id__": 8
  7408. },
  7409. "_children": [],
  7410. "_active": false,
  7411. "_components": [
  7412. {
  7413. "__id__": 318
  7414. },
  7415. {
  7416. "__id__": 320
  7417. }
  7418. ],
  7419. "_prefab": {
  7420. "__id__": 322
  7421. },
  7422. "_lpos": {
  7423. "__type__": "cc.Vec3",
  7424. "x": -51.23599999999999,
  7425. "y": -375.386,
  7426. "z": 0
  7427. },
  7428. "_lrot": {
  7429. "__type__": "cc.Quat",
  7430. "x": 0,
  7431. "y": 0,
  7432. "z": 0,
  7433. "w": 1
  7434. },
  7435. "_lscale": {
  7436. "__type__": "cc.Vec3",
  7437. "x": 0.5,
  7438. "y": 0.5,
  7439. "z": 1
  7440. },
  7441. "_mobility": 0,
  7442. "_layer": 33554432,
  7443. "_euler": {
  7444. "__type__": "cc.Vec3",
  7445. "x": 0,
  7446. "y": 0,
  7447. "z": 0
  7448. },
  7449. "_id": ""
  7450. },
  7451. {
  7452. "__type__": "cc.UITransform",
  7453. "_name": "",
  7454. "_objFlags": 0,
  7455. "__editorExtras__": {},
  7456. "node": {
  7457. "__id__": 317
  7458. },
  7459. "_enabled": true,
  7460. "__prefab": {
  7461. "__id__": 319
  7462. },
  7463. "_contentSize": {
  7464. "__type__": "cc.Size",
  7465. "width": 474,
  7466. "height": 125.11000061035156
  7467. },
  7468. "_anchorPoint": {
  7469. "__type__": "cc.Vec2",
  7470. "x": 0,
  7471. "y": 0
  7472. },
  7473. "_id": ""
  7474. },
  7475. {
  7476. "__type__": "cc.CompPrefabInfo",
  7477. "fileId": "c34D57LTpK/K/42xX+dYJT"
  7478. },
  7479. {
  7480. "__type__": "sp.Skeleton",
  7481. "_name": "",
  7482. "_objFlags": 0,
  7483. "__editorExtras__": {},
  7484. "node": {
  7485. "__id__": 317
  7486. },
  7487. "_enabled": true,
  7488. "__prefab": {
  7489. "__id__": 321
  7490. },
  7491. "_customMaterial": null,
  7492. "_srcBlendFactor": 2,
  7493. "_dstBlendFactor": 4,
  7494. "_color": {
  7495. "__type__": "cc.Color",
  7496. "r": 255,
  7497. "g": 255,
  7498. "b": 255,
  7499. "a": 255
  7500. },
  7501. "_skeletonData": {
  7502. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  7503. "__expectedType__": "sp.SkeletonData"
  7504. },
  7505. "defaultSkin": "default",
  7506. "defaultAnimation": "animation",
  7507. "_premultipliedAlpha": false,
  7508. "_timeScale": 1,
  7509. "_preCacheMode": 0,
  7510. "_cacheMode": 0,
  7511. "_sockets": [],
  7512. "_useTint": false,
  7513. "_debugMesh": false,
  7514. "_debugBones": false,
  7515. "_debugSlots": false,
  7516. "_enableBatch": false,
  7517. "loop": false,
  7518. "_id": ""
  7519. },
  7520. {
  7521. "__type__": "cc.CompPrefabInfo",
  7522. "fileId": "aap3T0huxJEKloHQjAEU/A"
  7523. },
  7524. {
  7525. "__type__": "cc.PrefabInfo",
  7526. "root": {
  7527. "__id__": 1
  7528. },
  7529. "asset": {
  7530. "__id__": 0
  7531. },
  7532. "fileId": "52u0xOHpdBMJk5swyzTy3S",
  7533. "instance": null,
  7534. "targetOverrides": null,
  7535. "nestedPrefabInstanceRoots": null
  7536. },
  7537. {
  7538. "__type__": "cc.Node",
  7539. "_name": "shengji-011",
  7540. "_objFlags": 0,
  7541. "__editorExtras__": {},
  7542. "_parent": {
  7543. "__id__": 8
  7544. },
  7545. "_children": [],
  7546. "_active": false,
  7547. "_components": [
  7548. {
  7549. "__id__": 324
  7550. },
  7551. {
  7552. "__id__": 326
  7553. }
  7554. ],
  7555. "_prefab": {
  7556. "__id__": 328
  7557. },
  7558. "_lpos": {
  7559. "__type__": "cc.Vec3",
  7560. "x": -51.23599999999999,
  7561. "y": -375.386,
  7562. "z": 0
  7563. },
  7564. "_lrot": {
  7565. "__type__": "cc.Quat",
  7566. "x": 0,
  7567. "y": 0,
  7568. "z": 0,
  7569. "w": 1
  7570. },
  7571. "_lscale": {
  7572. "__type__": "cc.Vec3",
  7573. "x": 0.5,
  7574. "y": 0.5,
  7575. "z": 1
  7576. },
  7577. "_mobility": 0,
  7578. "_layer": 33554432,
  7579. "_euler": {
  7580. "__type__": "cc.Vec3",
  7581. "x": 0,
  7582. "y": 0,
  7583. "z": 0
  7584. },
  7585. "_id": ""
  7586. },
  7587. {
  7588. "__type__": "cc.UITransform",
  7589. "_name": "",
  7590. "_objFlags": 0,
  7591. "__editorExtras__": {},
  7592. "node": {
  7593. "__id__": 323
  7594. },
  7595. "_enabled": true,
  7596. "__prefab": {
  7597. "__id__": 325
  7598. },
  7599. "_contentSize": {
  7600. "__type__": "cc.Size",
  7601. "width": 474,
  7602. "height": 125.11000061035156
  7603. },
  7604. "_anchorPoint": {
  7605. "__type__": "cc.Vec2",
  7606. "x": 0,
  7607. "y": 0
  7608. },
  7609. "_id": ""
  7610. },
  7611. {
  7612. "__type__": "cc.CompPrefabInfo",
  7613. "fileId": "b6jIur7EtOZo4Ex0knhXJS"
  7614. },
  7615. {
  7616. "__type__": "sp.Skeleton",
  7617. "_name": "",
  7618. "_objFlags": 0,
  7619. "__editorExtras__": {},
  7620. "node": {
  7621. "__id__": 323
  7622. },
  7623. "_enabled": true,
  7624. "__prefab": {
  7625. "__id__": 327
  7626. },
  7627. "_customMaterial": null,
  7628. "_srcBlendFactor": 2,
  7629. "_dstBlendFactor": 4,
  7630. "_color": {
  7631. "__type__": "cc.Color",
  7632. "r": 255,
  7633. "g": 255,
  7634. "b": 255,
  7635. "a": 255
  7636. },
  7637. "_skeletonData": {
  7638. "__uuid__": "5f224d33-d774-4b2c-8159-822b4ac0c367",
  7639. "__expectedType__": "sp.SkeletonData"
  7640. },
  7641. "defaultSkin": "default",
  7642. "defaultAnimation": "animation",
  7643. "_premultipliedAlpha": false,
  7644. "_timeScale": 1,
  7645. "_preCacheMode": 0,
  7646. "_cacheMode": 0,
  7647. "_sockets": [],
  7648. "_useTint": false,
  7649. "_debugMesh": false,
  7650. "_debugBones": false,
  7651. "_debugSlots": false,
  7652. "_enableBatch": false,
  7653. "loop": false,
  7654. "_id": ""
  7655. },
  7656. {
  7657. "__type__": "cc.CompPrefabInfo",
  7658. "fileId": "89T93eAutKyqR7a85plcNZ"
  7659. },
  7660. {
  7661. "__type__": "cc.PrefabInfo",
  7662. "root": {
  7663. "__id__": 1
  7664. },
  7665. "asset": {
  7666. "__id__": 0
  7667. },
  7668. "fileId": "033qkT9bNAzomVrAWKRfuV",
  7669. "instance": null,
  7670. "targetOverrides": null,
  7671. "nestedPrefabInstanceRoots": null
  7672. },
  7673. {
  7674. "__type__": "cc.UITransform",
  7675. "_name": "",
  7676. "_objFlags": 0,
  7677. "__editorExtras__": {},
  7678. "node": {
  7679. "__id__": 8
  7680. },
  7681. "_enabled": true,
  7682. "__prefab": {
  7683. "__id__": 330
  7684. },
  7685. "_contentSize": {
  7686. "__type__": "cc.Size",
  7687. "width": 100,
  7688. "height": 100
  7689. },
  7690. "_anchorPoint": {
  7691. "__type__": "cc.Vec2",
  7692. "x": 0.5,
  7693. "y": 0.5
  7694. },
  7695. "_id": ""
  7696. },
  7697. {
  7698. "__type__": "cc.CompPrefabInfo",
  7699. "fileId": "c8BNscLDVKWq6iBq9Rgldm"
  7700. },
  7701. {
  7702. "__type__": "cc.PrefabInfo",
  7703. "root": {
  7704. "__id__": 1
  7705. },
  7706. "asset": {
  7707. "__id__": 0
  7708. },
  7709. "fileId": "e45VUQGmRMz5RY06MXyRov",
  7710. "instance": null,
  7711. "targetOverrides": null,
  7712. "nestedPrefabInstanceRoots": null
  7713. },
  7714. {
  7715. "__type__": "cc.UITransform",
  7716. "_name": "",
  7717. "_objFlags": 0,
  7718. "__editorExtras__": {},
  7719. "node": {
  7720. "__id__": 1
  7721. },
  7722. "_enabled": true,
  7723. "__prefab": {
  7724. "__id__": 333
  7725. },
  7726. "_contentSize": {
  7727. "__type__": "cc.Size",
  7728. "width": 750,
  7729. "height": 1334
  7730. },
  7731. "_anchorPoint": {
  7732. "__type__": "cc.Vec2",
  7733. "x": 0.5,
  7734. "y": 0.5
  7735. },
  7736. "_id": ""
  7737. },
  7738. {
  7739. "__type__": "cc.CompPrefabInfo",
  7740. "fileId": "caknYVw+pB26mEQb59urgH"
  7741. },
  7742. {
  7743. "__type__": "cc.Widget",
  7744. "_name": "",
  7745. "_objFlags": 0,
  7746. "__editorExtras__": {},
  7747. "node": {
  7748. "__id__": 1
  7749. },
  7750. "_enabled": true,
  7751. "__prefab": {
  7752. "__id__": 335
  7753. },
  7754. "_alignFlags": 45,
  7755. "_target": null,
  7756. "_left": 0,
  7757. "_right": 0,
  7758. "_top": 0,
  7759. "_bottom": 0,
  7760. "_horizontalCenter": 0,
  7761. "_verticalCenter": 0,
  7762. "_isAbsLeft": true,
  7763. "_isAbsRight": true,
  7764. "_isAbsTop": true,
  7765. "_isAbsBottom": true,
  7766. "_isAbsHorizontalCenter": true,
  7767. "_isAbsVerticalCenter": true,
  7768. "_originalWidth": 100,
  7769. "_originalHeight": 100,
  7770. "_alignMode": 2,
  7771. "_lockFlags": 0,
  7772. "_id": ""
  7773. },
  7774. {
  7775. "__type__": "cc.CompPrefabInfo",
  7776. "fileId": "8ayZo5yC9C5Ye7UmD/UmMm"
  7777. },
  7778. {
  7779. "__type__": "cc.UIOpacity",
  7780. "_name": "",
  7781. "_objFlags": 0,
  7782. "__editorExtras__": {},
  7783. "node": {
  7784. "__id__": 1
  7785. },
  7786. "_enabled": true,
  7787. "__prefab": {
  7788. "__id__": 337
  7789. },
  7790. "_opacity": 255,
  7791. "_id": ""
  7792. },
  7793. {
  7794. "__type__": "cc.CompPrefabInfo",
  7795. "fileId": "60gaLSgxhABI4YyH94OOCC"
  7796. },
  7797. {
  7798. "__type__": "d3581nxC5VHJqZq9k3SsrcH",
  7799. "_name": "",
  7800. "_objFlags": 0,
  7801. "__editorExtras__": {},
  7802. "node": {
  7803. "__id__": 1
  7804. },
  7805. "_enabled": true,
  7806. "__prefab": {
  7807. "__id__": 339
  7808. },
  7809. "frame_load": false,
  7810. "load_priority": 0,
  7811. "ui_type": 0,
  7812. "_base_view_full": false,
  7813. "_base_view_block": false,
  7814. "_base_quick_close": false,
  7815. "_base_quick_close_exclude_node": [],
  7816. "_base_quick_close_destroy": true,
  7817. "mapSprite": {
  7818. "__id__": 5
  7819. },
  7820. "attackNode": {
  7821. "__id__": 9
  7822. },
  7823. "bagNode": {
  7824. "__id__": 84
  7825. },
  7826. "hurtNode": {
  7827. "__id__": 253
  7828. },
  7829. "heroModelList": [
  7830. {
  7831. "__uuid__": "331c9603-5c76-417f-8cde-2e6e3242a572",
  7832. "__expectedType__": "cc.Prefab"
  7833. },
  7834. {
  7835. "__uuid__": "4ccaa3bc-86d8-4afb-8c56-ac6758abd376",
  7836. "__expectedType__": "cc.Prefab"
  7837. }
  7838. ],
  7839. "levelUpEffect": [
  7840. {
  7841. "__id__": 257
  7842. },
  7843. {
  7844. "__id__": 263
  7845. },
  7846. {
  7847. "__id__": 275
  7848. },
  7849. {
  7850. "__id__": 281
  7851. },
  7852. {
  7853. "__id__": 287
  7854. },
  7855. {
  7856. "__id__": 293
  7857. },
  7858. {
  7859. "__id__": 299
  7860. },
  7861. {
  7862. "__id__": 305
  7863. },
  7864. {
  7865. "__id__": 311
  7866. },
  7867. {
  7868. "__id__": 317
  7869. },
  7870. {
  7871. "__id__": 323
  7872. }
  7873. ],
  7874. "ememyModelList": [
  7875. {
  7876. "__uuid__": "9b2a2da1-30dc-42f2-86f0-7cc69402a57d",
  7877. "__expectedType__": "cc.Prefab"
  7878. }
  7879. ],
  7880. "hurtModelList": [
  7881. {
  7882. "__uuid__": "c00cb689-0736-4575-b456-a95b368e2aec",
  7883. "__expectedType__": "cc.Prefab"
  7884. }
  7885. ],
  7886. "roleNode": {
  7887. "__id__": 213
  7888. },
  7889. "radiusNode": {
  7890. "__id__": 75
  7891. },
  7892. "_id": ""
  7893. },
  7894. {
  7895. "__type__": "cc.CompPrefabInfo",
  7896. "fileId": "deTL7Bgt9HJJwtE8IkNm4L"
  7897. },
  7898. {
  7899. "__type__": "cc.Animation",
  7900. "_name": "",
  7901. "_objFlags": 0,
  7902. "__editorExtras__": {},
  7903. "node": {
  7904. "__id__": 1
  7905. },
  7906. "_enabled": true,
  7907. "__prefab": {
  7908. "__id__": 341
  7909. },
  7910. "playOnLoad": false,
  7911. "_clips": [
  7912. {
  7913. "__uuid__": "2c110a40-7fa8-4f77-a6bc-036999bd6e78",
  7914. "__expectedType__": "cc.AnimationClip"
  7915. }
  7916. ],
  7917. "_defaultClip": {
  7918. "__uuid__": "2c110a40-7fa8-4f77-a6bc-036999bd6e78",
  7919. "__expectedType__": "cc.AnimationClip"
  7920. },
  7921. "_id": ""
  7922. },
  7923. {
  7924. "__type__": "cc.CompPrefabInfo",
  7925. "fileId": "d64g8FakJHe4WYBp8m5xi7"
  7926. },
  7927. {
  7928. "__type__": "cc.PrefabInfo",
  7929. "root": {
  7930. "__id__": 1
  7931. },
  7932. "asset": {
  7933. "__id__": 0
  7934. },
  7935. "fileId": "6ayhBh1BFIxZSNyNSJY4v8",
  7936. "instance": null,
  7937. "targetOverrides": null
  7938. }
  7939. ]