mapzombie.prefab 114 KB

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