zombie.prefab 139 KB

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