main.scene 134 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_name": "main",
  14. "_objFlags": 0,
  15. "_parent": null,
  16. "_children": [
  17. {
  18. "__id__": 2
  19. },
  20. {
  21. "__id__": 5
  22. },
  23. {
  24. "__id__": 8
  25. },
  26. {
  27. "__id__": 17
  28. },
  29. {
  30. "__id__": 71
  31. },
  32. {
  33. "__id__": 73
  34. },
  35. {
  36. "__id__": 67
  37. }
  38. ],
  39. "_active": true,
  40. "_components": [],
  41. "_prefab": null,
  42. "autoReleaseAssets": false,
  43. "_globals": {
  44. "__id__": 282
  45. },
  46. "_id": "8dfef7c4-92d1-4b61-bc39-534a4e7ae5d4"
  47. },
  48. {
  49. "__type__": "cc.Node",
  50. "_name": "Main Light",
  51. "_objFlags": 512,
  52. "_parent": {
  53. "__id__": 1
  54. },
  55. "_children": [],
  56. "_active": true,
  57. "_components": [
  58. {
  59. "__id__": 3
  60. }
  61. ],
  62. "_prefab": null,
  63. "_lpos": {
  64. "__type__": "cc.Vec3",
  65. "x": -5.96,
  66. "y": 20.372,
  67. "z": 8.741
  68. },
  69. "_lrot": {
  70. "__type__": "cc.Quat",
  71. "x": -0.3814543399155765,
  72. "y": 0.07418825354377417,
  73. "z": -0.030723972854721532,
  74. "w": 0.9208934395942446
  75. },
  76. "_lscale": {
  77. "__type__": "cc.Vec3",
  78. "x": 1,
  79. "y": 1,
  80. "z": 1
  81. },
  82. "_layer": 1073741824,
  83. "_euler": {
  84. "__type__": "cc.Vec3",
  85. "x": -44.629,
  86. "y": 6.542,
  87. "z": -6.499
  88. },
  89. "_id": "c0y6F5f+pAvI805TdmxIjx"
  90. },
  91. {
  92. "__type__": "cc.DirectionalLight",
  93. "_name": "",
  94. "_objFlags": 0,
  95. "node": {
  96. "__id__": 2
  97. },
  98. "_enabled": true,
  99. "__prefab": null,
  100. "_color": {
  101. "__type__": "cc.Color",
  102. "r": 255,
  103. "g": 255,
  104. "b": 255,
  105. "a": 255
  106. },
  107. "_useColorTemperature": false,
  108. "_colorTemperature": 6550,
  109. "_staticSettings": {
  110. "__id__": 4
  111. },
  112. "_illuminance": 100000,
  113. "_id": "597uMYCbhEtJQc0ffJlcgA"
  114. },
  115. {
  116. "__type__": "cc.StaticLightSettings",
  117. "_baked": false,
  118. "_editorOnly": false,
  119. "_bakeable": false,
  120. "_castShadow": false
  121. },
  122. {
  123. "__type__": "cc.Node",
  124. "_name": "Main Camera",
  125. "_objFlags": 0,
  126. "_parent": {
  127. "__id__": 1
  128. },
  129. "_children": [],
  130. "_active": true,
  131. "_components": [
  132. {
  133. "__id__": 6
  134. },
  135. {
  136. "__id__": 7
  137. }
  138. ],
  139. "_prefab": null,
  140. "_lpos": {
  141. "__type__": "cc.Vec3",
  142. "x": -0.06,
  143. "y": 8.07,
  144. "z": 10.391
  145. },
  146. "_lrot": {
  147. "__type__": "cc.Quat",
  148. "x": -0.2104888221269294,
  149. "y": 0,
  150. "z": 0,
  151. "w": 0.9775962641907026
  152. },
  153. "_lscale": {
  154. "__type__": "cc.Vec3",
  155. "x": 1,
  156. "y": 1,
  157. "z": 1
  158. },
  159. "_layer": 1073741824,
  160. "_euler": {
  161. "__type__": "cc.Vec3",
  162. "x": -24.302,
  163. "y": 0,
  164. "z": 0
  165. },
  166. "_id": "c9DMICJLFO5IeO07EPon7U"
  167. },
  168. {
  169. "__type__": "cc.Camera",
  170. "_name": "",
  171. "_objFlags": 0,
  172. "node": {
  173. "__id__": 5
  174. },
  175. "_enabled": true,
  176. "__prefab": null,
  177. "_projection": 1,
  178. "_priority": 0,
  179. "_fov": 60,
  180. "_fovAxis": 0,
  181. "_orthoHeight": 10,
  182. "_near": 1,
  183. "_far": 1000,
  184. "_color": {
  185. "__type__": "cc.Color",
  186. "r": 51,
  187. "g": 51,
  188. "b": 51,
  189. "a": 0
  190. },
  191. "_depth": 1,
  192. "_stencil": 0,
  193. "_clearFlags": 7,
  194. "_rect": {
  195. "__type__": "cc.Rect",
  196. "x": 0,
  197. "y": 0,
  198. "width": 1,
  199. "height": 1
  200. },
  201. "_aperture": 19,
  202. "_shutter": 7,
  203. "_iso": 0,
  204. "_screenScale": 1,
  205. "_visibility": 1822425087,
  206. "_targetTexture": null,
  207. "_id": "7dWQTpwS5LrIHnc1zAPUtf"
  208. },
  209. {
  210. "__type__": "cc.Animation",
  211. "_name": "",
  212. "_objFlags": 0,
  213. "node": {
  214. "__id__": 5
  215. },
  216. "_enabled": true,
  217. "__prefab": null,
  218. "playOnLoad": true,
  219. "_clips": [
  220. {
  221. "__uuid__": "f105e012-e50f-49a4-8c61-7a0c49458695",
  222. "__expectedType__": "cc.AnimationClip"
  223. }
  224. ],
  225. "_defaultClip": {
  226. "__uuid__": "f105e012-e50f-49a4-8c61-7a0c49458695",
  227. "__expectedType__": "cc.AnimationClip"
  228. },
  229. "_id": "fbALE3HYdO37/52yebBDNN"
  230. },
  231. {
  232. "__type__": "cc.Node",
  233. "_name": "Canvas",
  234. "_objFlags": 0,
  235. "_parent": {
  236. "__id__": 1
  237. },
  238. "_children": [
  239. {
  240. "__id__": 9
  241. }
  242. ],
  243. "_active": true,
  244. "_components": [
  245. {
  246. "__id__": 11
  247. },
  248. {
  249. "__id__": 13
  250. },
  251. {
  252. "__id__": 15
  253. }
  254. ],
  255. "_prefab": null,
  256. "_lpos": {
  257. "__type__": "cc.Vec3",
  258. "x": 360,
  259. "y": 640,
  260. "z": 0
  261. },
  262. "_lrot": {
  263. "__type__": "cc.Quat",
  264. "x": 0,
  265. "y": 0,
  266. "z": 0,
  267. "w": 1
  268. },
  269. "_lscale": {
  270. "__type__": "cc.Vec3",
  271. "x": 1,
  272. "y": 1,
  273. "z": 1
  274. },
  275. "_layer": 33554432,
  276. "_euler": {
  277. "__type__": "cc.Vec3",
  278. "x": 0,
  279. "y": 0,
  280. "z": 0
  281. },
  282. "_id": "b23AewpY5OZLlvWJPylkxq"
  283. },
  284. {
  285. "__type__": "cc.Node",
  286. "_name": "Camera",
  287. "_objFlags": 0,
  288. "_parent": {
  289. "__id__": 8
  290. },
  291. "_children": [],
  292. "_active": true,
  293. "_components": [
  294. {
  295. "__id__": 10
  296. }
  297. ],
  298. "_prefab": null,
  299. "_lpos": {
  300. "__type__": "cc.Vec3",
  301. "x": 0,
  302. "y": 0,
  303. "z": 1000
  304. },
  305. "_lrot": {
  306. "__type__": "cc.Quat",
  307. "x": 0,
  308. "y": 0,
  309. "z": 0,
  310. "w": 1
  311. },
  312. "_lscale": {
  313. "__type__": "cc.Vec3",
  314. "x": 1,
  315. "y": 1,
  316. "z": 1
  317. },
  318. "_layer": 1073741824,
  319. "_euler": {
  320. "__type__": "cc.Vec3",
  321. "x": 0,
  322. "y": 0,
  323. "z": 0
  324. },
  325. "_id": "6deyPrzX9FtKoXWQQE9x/F"
  326. },
  327. {
  328. "__type__": "cc.Camera",
  329. "_name": "",
  330. "_objFlags": 0,
  331. "node": {
  332. "__id__": 9
  333. },
  334. "_enabled": true,
  335. "__prefab": null,
  336. "_projection": 0,
  337. "_priority": 1,
  338. "_fov": 45,
  339. "_fovAxis": 0,
  340. "_orthoHeight": 640,
  341. "_near": 1,
  342. "_far": 2000,
  343. "_color": {
  344. "__type__": "cc.Color",
  345. "r": 0,
  346. "g": 0,
  347. "b": 0,
  348. "a": 255
  349. },
  350. "_depth": 1,
  351. "_stencil": 0,
  352. "_clearFlags": 0,
  353. "_rect": {
  354. "__type__": "cc.Rect",
  355. "x": 0,
  356. "y": 0,
  357. "width": 1,
  358. "height": 1
  359. },
  360. "_aperture": 19,
  361. "_shutter": 7,
  362. "_iso": 0,
  363. "_screenScale": 1,
  364. "_visibility": 41943040,
  365. "_targetTexture": null,
  366. "_id": "2fd5Kik/pFKYJImqRkCenW"
  367. },
  368. {
  369. "__type__": "cc.UITransform",
  370. "_name": "",
  371. "_objFlags": 0,
  372. "node": {
  373. "__id__": 8
  374. },
  375. "_enabled": true,
  376. "__prefab": {
  377. "__id__": 12
  378. },
  379. "_contentSize": {
  380. "__type__": "cc.Size",
  381. "width": 720,
  382. "height": 1280
  383. },
  384. "_anchorPoint": {
  385. "__type__": "cc.Vec2",
  386. "x": 0.5,
  387. "y": 0.5
  388. },
  389. "_id": "e7ej5tmENE8JN736v09YoJ"
  390. },
  391. {
  392. "__type__": "cc.CompPrefabInfo",
  393. "fileId": "0dngp/9gNO34wUQjZfN/CX"
  394. },
  395. {
  396. "__type__": "cc.Canvas",
  397. "_name": "",
  398. "_objFlags": 0,
  399. "node": {
  400. "__id__": 8
  401. },
  402. "_enabled": true,
  403. "__prefab": {
  404. "__id__": 14
  405. },
  406. "_cameraComponent": {
  407. "__id__": 10
  408. },
  409. "_alignCanvasWithScreen": true,
  410. "_id": "55oSl3Z6JOOYLBoZsw9IO6"
  411. },
  412. {
  413. "__type__": "cc.CompPrefabInfo",
  414. "fileId": "3f2oTdCepERZdpmIfLsrhd"
  415. },
  416. {
  417. "__type__": "cc.Widget",
  418. "_name": "",
  419. "_objFlags": 0,
  420. "node": {
  421. "__id__": 8
  422. },
  423. "_enabled": true,
  424. "__prefab": {
  425. "__id__": 16
  426. },
  427. "_alignFlags": 45,
  428. "_target": null,
  429. "_left": 0,
  430. "_right": 0,
  431. "_top": 0,
  432. "_bottom": 0,
  433. "_horizontalCenter": 0,
  434. "_verticalCenter": 0,
  435. "_isAbsLeft": true,
  436. "_isAbsRight": true,
  437. "_isAbsTop": true,
  438. "_isAbsBottom": true,
  439. "_isAbsHorizontalCenter": true,
  440. "_isAbsVerticalCenter": true,
  441. "_originalWidth": 0,
  442. "_originalHeight": 0,
  443. "_alignMode": 2,
  444. "_lockFlags": 0,
  445. "_id": "c4aBMkLy9LX7/wQzPPGU0S"
  446. },
  447. {
  448. "__type__": "cc.CompPrefabInfo",
  449. "fileId": "e8a+bU/8dPDbbJguUzLdoF"
  450. },
  451. {
  452. "__type__": "cc.Node",
  453. "_name": "gameManager",
  454. "_objFlags": 0,
  455. "_parent": {
  456. "__id__": 1
  457. },
  458. "_children": [
  459. {
  460. "__id__": 18
  461. },
  462. {
  463. "__id__": 19
  464. },
  465. {
  466. "__id__": 40
  467. },
  468. {
  469. "__id__": 46
  470. },
  471. {
  472. "__id__": 49
  473. },
  474. {
  475. "__id__": 56
  476. },
  477. {
  478. "__id__": 63
  479. }
  480. ],
  481. "_active": true,
  482. "_components": [
  483. {
  484. "__id__": 66
  485. }
  486. ],
  487. "_prefab": null,
  488. "_lpos": {
  489. "__type__": "cc.Vec3",
  490. "x": 0,
  491. "y": 0,
  492. "z": 0
  493. },
  494. "_lrot": {
  495. "__type__": "cc.Quat",
  496. "x": 0,
  497. "y": 0,
  498. "z": 0,
  499. "w": 1
  500. },
  501. "_lscale": {
  502. "__type__": "cc.Vec3",
  503. "x": 1,
  504. "y": 1,
  505. "z": 1
  506. },
  507. "_layer": 1073741824,
  508. "_euler": {
  509. "__type__": "cc.Vec3",
  510. "x": 0,
  511. "y": 0,
  512. "z": 0
  513. },
  514. "_id": "81k9GcT6dHebVuawMF4htq"
  515. },
  516. {
  517. "__type__": "cc.Node",
  518. "_name": "coinParent",
  519. "_objFlags": 0,
  520. "_parent": {
  521. "__id__": 17
  522. },
  523. "_children": [],
  524. "_active": true,
  525. "_components": [],
  526. "_prefab": null,
  527. "_lpos": {
  528. "__type__": "cc.Vec3",
  529. "x": 0,
  530. "y": 0,
  531. "z": 0
  532. },
  533. "_lrot": {
  534. "__type__": "cc.Quat",
  535. "x": 0,
  536. "y": 0,
  537. "z": 0,
  538. "w": 1
  539. },
  540. "_lscale": {
  541. "__type__": "cc.Vec3",
  542. "x": 1,
  543. "y": 1,
  544. "z": 1
  545. },
  546. "_layer": 1073741824,
  547. "_euler": {
  548. "__type__": "cc.Vec3",
  549. "x": 0,
  550. "y": 0,
  551. "z": 0
  552. },
  553. "_id": "e9pz1tJh9Dbr4m8bNgBCzm"
  554. },
  555. {
  556. "__type__": "cc.Node",
  557. "_name": "gameBox01",
  558. "_objFlags": 0,
  559. "_parent": {
  560. "__id__": 17
  561. },
  562. "_children": [
  563. {
  564. "__id__": 20
  565. },
  566. {
  567. "__id__": 24
  568. },
  569. {
  570. "__id__": 28
  571. },
  572. {
  573. "__id__": 32
  574. },
  575. {
  576. "__id__": 36
  577. }
  578. ],
  579. "_active": true,
  580. "_components": [],
  581. "_prefab": null,
  582. "_lpos": {
  583. "__type__": "cc.Vec3",
  584. "x": 0,
  585. "y": 0.37,
  586. "z": 0
  587. },
  588. "_lrot": {
  589. "__type__": "cc.Quat",
  590. "x": 0,
  591. "y": 0,
  592. "z": 0,
  593. "w": 1
  594. },
  595. "_lscale": {
  596. "__type__": "cc.Vec3",
  597. "x": 2,
  598. "y": 2,
  599. "z": 2
  600. },
  601. "_layer": 1073741824,
  602. "_euler": {
  603. "__type__": "cc.Vec3",
  604. "x": 0,
  605. "y": 0,
  606. "z": 0
  607. },
  608. "_id": "d0VjFHRgpDBYwCu5DddmQM"
  609. },
  610. {
  611. "__type__": "cc.Node",
  612. "_name": "blackBox01",
  613. "_objFlags": 0,
  614. "_parent": {
  615. "__id__": 19
  616. },
  617. "_children": [],
  618. "_active": true,
  619. "_components": [
  620. {
  621. "__id__": 21
  622. }
  623. ],
  624. "_prefab": null,
  625. "_lpos": {
  626. "__type__": "cc.Vec3",
  627. "x": -0.038378469645977,
  628. "y": -0.349790632724762,
  629. "z": -4.38618135452271
  630. },
  631. "_lrot": {
  632. "__type__": "cc.Quat",
  633. "x": -0.5,
  634. "y": 0.5,
  635. "z": 0.5,
  636. "w": 0.5
  637. },
  638. "_lscale": {
  639. "__type__": "cc.Vec3",
  640. "x": 13.9833612442017,
  641. "y": 13.9833612442017,
  642. "z": 13.9833612442017
  643. },
  644. "_layer": 1073741824,
  645. "_euler": {
  646. "__type__": "cc.Vec3",
  647. "x": -90,
  648. "y": 90,
  649. "z": 0
  650. },
  651. "_id": "aao4r1aOdPsopW/4fpzLyp"
  652. },
  653. {
  654. "__type__": "cc.MeshRenderer",
  655. "_name": "",
  656. "_objFlags": 0,
  657. "node": {
  658. "__id__": 20
  659. },
  660. "_enabled": true,
  661. "__prefab": {
  662. "__id__": 22
  663. },
  664. "_materials": [
  665. {
  666. "__uuid__": "94cc1ab7-1907-4c7e-9802-da6719f4fe23",
  667. "__expectedType__": "cc.Material"
  668. }
  669. ],
  670. "_visFlags": 0,
  671. "lightmapSettings": {
  672. "__id__": 23
  673. },
  674. "_mesh": {
  675. "__uuid__": "1e44187e-9318-4fb1-adb4-c263717cb4be@c9449",
  676. "__expectedType__": "cc.Mesh"
  677. },
  678. "_shadowCastingMode": 0,
  679. "_shadowReceivingMode": 1,
  680. "_enableMorph": true,
  681. "_id": "4b/ygIvvZMULoy4AdMN9ew"
  682. },
  683. {
  684. "__type__": "cc.CompPrefabInfo",
  685. "fileId": "20cNzf8ahRZrNbWmZgM8Bg"
  686. },
  687. {
  688. "__type__": "cc.ModelLightmapSettings",
  689. "texture": null,
  690. "uvParam": {
  691. "__type__": "cc.Vec4",
  692. "x": 0,
  693. "y": 0,
  694. "z": 0,
  695. "w": 0
  696. },
  697. "_bakeable": false,
  698. "_castShadow": false,
  699. "_receiveShadow": false,
  700. "_recieveShadow": false,
  701. "_lightmapSize": 64
  702. },
  703. {
  704. "__type__": "cc.Node",
  705. "_name": "bg01",
  706. "_objFlags": 0,
  707. "_parent": {
  708. "__id__": 19
  709. },
  710. "_children": [],
  711. "_active": true,
  712. "_components": [
  713. {
  714. "__id__": 25
  715. }
  716. ],
  717. "_prefab": null,
  718. "_lpos": {
  719. "__type__": "cc.Vec3",
  720. "x": 0,
  721. "y": 1.40939879417419,
  722. "z": 5.08773040771484
  723. },
  724. "_lrot": {
  725. "__type__": "cc.Quat",
  726. "x": -0.7071067811865475,
  727. "y": 0,
  728. "z": 0,
  729. "w": 0.7071067811865476
  730. },
  731. "_lscale": {
  732. "__type__": "cc.Vec3",
  733. "x": 83.9679946899414,
  734. "y": 83.96799468994142,
  735. "z": 83.96799468994142
  736. },
  737. "_layer": 1073741824,
  738. "_euler": {
  739. "__type__": "cc.Vec3",
  740. "x": -90,
  741. "y": 0,
  742. "z": 0
  743. },
  744. "_id": "7b52pE7mNOhJXwpcdUdfD5"
  745. },
  746. {
  747. "__type__": "cc.MeshRenderer",
  748. "_name": "",
  749. "_objFlags": 0,
  750. "node": {
  751. "__id__": 24
  752. },
  753. "_enabled": true,
  754. "__prefab": {
  755. "__id__": 26
  756. },
  757. "_materials": [
  758. {
  759. "__uuid__": "8912f19d-034d-477c-b556-a718fe6eae27",
  760. "__expectedType__": "cc.Material"
  761. }
  762. ],
  763. "_visFlags": 0,
  764. "lightmapSettings": {
  765. "__id__": 27
  766. },
  767. "_mesh": {
  768. "__uuid__": "1e44187e-9318-4fb1-adb4-c263717cb4be@6c0f5",
  769. "__expectedType__": "cc.Mesh"
  770. },
  771. "_shadowCastingMode": 0,
  772. "_shadowReceivingMode": 0,
  773. "_enableMorph": true,
  774. "_id": "d20Z5RMoJB/qymYlPNOjQF"
  775. },
  776. {
  777. "__type__": "cc.CompPrefabInfo",
  778. "fileId": "59J7N3835QP74jqLR10AJ2"
  779. },
  780. {
  781. "__type__": "cc.ModelLightmapSettings",
  782. "texture": null,
  783. "uvParam": {
  784. "__type__": "cc.Vec4",
  785. "x": 0,
  786. "y": 0,
  787. "z": 0,
  788. "w": 0
  789. },
  790. "_bakeable": false,
  791. "_castShadow": false,
  792. "_receiveShadow": false,
  793. "_recieveShadow": false,
  794. "_lightmapSize": 64
  795. },
  796. {
  797. "__type__": "cc.Node",
  798. "_name": "lightA01",
  799. "_objFlags": 0,
  800. "_parent": {
  801. "__id__": 19
  802. },
  803. "_children": [],
  804. "_active": true,
  805. "_components": [
  806. {
  807. "__id__": 29
  808. }
  809. ],
  810. "_prefab": null,
  811. "_lpos": {
  812. "__type__": "cc.Vec3",
  813. "x": -0.0241143796592951,
  814. "y": 4.06153964996338,
  815. "z": -4.4295768737793
  816. },
  817. "_lrot": {
  818. "__type__": "cc.Quat",
  819. "x": -0.7071067811865476,
  820. "y": 0,
  821. "z": 0,
  822. "w": 0.7071067811865475
  823. },
  824. "_lscale": {
  825. "__type__": "cc.Vec3",
  826. "x": 1,
  827. "y": 1.0000000000000002,
  828. "z": 1.0000000000000002
  829. },
  830. "_layer": 1073741824,
  831. "_euler": {
  832. "__type__": "cc.Vec3",
  833. "x": -90.00000000000003,
  834. "y": 0,
  835. "z": 0
  836. },
  837. "_id": "4fb3EH//VHQLDMkEaXn0bF"
  838. },
  839. {
  840. "__type__": "cc.MeshRenderer",
  841. "_name": "",
  842. "_objFlags": 0,
  843. "node": {
  844. "__id__": 28
  845. },
  846. "_enabled": true,
  847. "__prefab": {
  848. "__id__": 30
  849. },
  850. "_materials": [
  851. {
  852. "__uuid__": "43a6c69d-6ec2-449a-9074-b431a85a5c7c",
  853. "__expectedType__": "cc.Material"
  854. }
  855. ],
  856. "_visFlags": 0,
  857. "lightmapSettings": {
  858. "__id__": 31
  859. },
  860. "_mesh": {
  861. "__uuid__": "1e44187e-9318-4fb1-adb4-c263717cb4be@75b9a",
  862. "__expectedType__": "cc.Mesh"
  863. },
  864. "_shadowCastingMode": 0,
  865. "_shadowReceivingMode": 1,
  866. "_enableMorph": true,
  867. "_id": "6ahtqlyPZHPZR3HETP5Xn1"
  868. },
  869. {
  870. "__type__": "cc.CompPrefabInfo",
  871. "fileId": "63bjIff2pfSLLgG/pJK9+P"
  872. },
  873. {
  874. "__type__": "cc.ModelLightmapSettings",
  875. "texture": null,
  876. "uvParam": {
  877. "__type__": "cc.Vec4",
  878. "x": 0,
  879. "y": 0,
  880. "z": 0,
  881. "w": 0
  882. },
  883. "_bakeable": false,
  884. "_castShadow": false,
  885. "_receiveShadow": false,
  886. "_recieveShadow": false,
  887. "_lightmapSize": 64
  888. },
  889. {
  890. "__type__": "cc.Node",
  891. "_name": "redBox01",
  892. "_objFlags": 0,
  893. "_parent": {
  894. "__id__": 19
  895. },
  896. "_children": [],
  897. "_active": true,
  898. "_components": [
  899. {
  900. "__id__": 33
  901. }
  902. ],
  903. "_prefab": null,
  904. "_lpos": {
  905. "__type__": "cc.Vec3",
  906. "x": 0,
  907. "y": -0.403,
  908. "z": 1.02
  909. },
  910. "_lrot": {
  911. "__type__": "cc.Quat",
  912. "x": -0.5,
  913. "y": 0.5,
  914. "z": 0.5,
  915. "w": 0.5
  916. },
  917. "_lscale": {
  918. "__type__": "cc.Vec3",
  919. "x": 13.9833612442017,
  920. "y": 13.9833612442017,
  921. "z": 13.9833612442017
  922. },
  923. "_layer": 1073741824,
  924. "_euler": {
  925. "__type__": "cc.Vec3",
  926. "x": -90,
  927. "y": 90,
  928. "z": 0
  929. },
  930. "_id": "d6qGhbw7ZD+oM5GPQSp3km"
  931. },
  932. {
  933. "__type__": "cc.MeshRenderer",
  934. "_name": "",
  935. "_objFlags": 0,
  936. "node": {
  937. "__id__": 32
  938. },
  939. "_enabled": true,
  940. "__prefab": {
  941. "__id__": 34
  942. },
  943. "_materials": [
  944. {
  945. "__uuid__": "fb12057d-eef8-4706-b2d4-a4817dfeb561",
  946. "__expectedType__": "cc.Material"
  947. }
  948. ],
  949. "_visFlags": 0,
  950. "lightmapSettings": {
  951. "__id__": 35
  952. },
  953. "_mesh": {
  954. "__uuid__": "1e44187e-9318-4fb1-adb4-c263717cb4be@8a167",
  955. "__expectedType__": "cc.Mesh"
  956. },
  957. "_shadowCastingMode": 0,
  958. "_shadowReceivingMode": 1,
  959. "_enableMorph": true,
  960. "_id": "3aadyb22BACJPb6alpCmQR"
  961. },
  962. {
  963. "__type__": "cc.CompPrefabInfo",
  964. "fileId": "38n1h9zlxZH4iz+XvSzj7U"
  965. },
  966. {
  967. "__type__": "cc.ModelLightmapSettings",
  968. "texture": null,
  969. "uvParam": {
  970. "__type__": "cc.Vec4",
  971. "x": 0,
  972. "y": 0,
  973. "z": 0,
  974. "w": 0
  975. },
  976. "_bakeable": false,
  977. "_castShadow": false,
  978. "_receiveShadow": false,
  979. "_recieveShadow": false,
  980. "_lightmapSize": 64
  981. },
  982. {
  983. "__type__": "cc.Node",
  984. "_name": "floor01",
  985. "_objFlags": 0,
  986. "_parent": {
  987. "__id__": 19
  988. },
  989. "_children": [],
  990. "_active": true,
  991. "_components": [
  992. {
  993. "__id__": 37
  994. }
  995. ],
  996. "_prefab": null,
  997. "_lpos": {
  998. "__type__": "cc.Vec3",
  999. "x": 0,
  1000. "y": 1.40939879417419,
  1001. "z": 12.028959274292
  1002. },
  1003. "_lrot": {
  1004. "__type__": "cc.Quat",
  1005. "x": -0.7071067811865476,
  1006. "y": 0,
  1007. "z": 0,
  1008. "w": 0.7071067811865475
  1009. },
  1010. "_lscale": {
  1011. "__type__": "cc.Vec3",
  1012. "x": 83.9679946899414,
  1013. "y": 83.96799468994142,
  1014. "z": 83.96799468994142
  1015. },
  1016. "_layer": 1073741824,
  1017. "_euler": {
  1018. "__type__": "cc.Vec3",
  1019. "x": -90.00000000000003,
  1020. "y": 0,
  1021. "z": 0
  1022. },
  1023. "_id": "4d6shrq/hIX77pCHKJY1A6"
  1024. },
  1025. {
  1026. "__type__": "cc.MeshRenderer",
  1027. "_name": "",
  1028. "_objFlags": 0,
  1029. "node": {
  1030. "__id__": 36
  1031. },
  1032. "_enabled": true,
  1033. "__prefab": {
  1034. "__id__": 38
  1035. },
  1036. "_materials": [
  1037. {
  1038. "__uuid__": "5f0e16f8-b6b9-4de2-ad1f-4dd3da455165",
  1039. "__expectedType__": "cc.Material"
  1040. }
  1041. ],
  1042. "_visFlags": 0,
  1043. "lightmapSettings": {
  1044. "__id__": 39
  1045. },
  1046. "_mesh": {
  1047. "__uuid__": "1e44187e-9318-4fb1-adb4-c263717cb4be@bcffe",
  1048. "__expectedType__": "cc.Mesh"
  1049. },
  1050. "_shadowCastingMode": 0,
  1051. "_shadowReceivingMode": 1,
  1052. "_enableMorph": true,
  1053. "_id": "fbXAw+YNhDLo1zkn3yXWkH"
  1054. },
  1055. {
  1056. "__type__": "cc.CompPrefabInfo",
  1057. "fileId": "15z9Jud8leP60qq/oQTVWB"
  1058. },
  1059. {
  1060. "__type__": "cc.ModelLightmapSettings",
  1061. "texture": null,
  1062. "uvParam": {
  1063. "__type__": "cc.Vec4",
  1064. "x": 0,
  1065. "y": 0,
  1066. "z": 0,
  1067. "w": 0
  1068. },
  1069. "_bakeable": false,
  1070. "_castShadow": false,
  1071. "_receiveShadow": false,
  1072. "_recieveShadow": false,
  1073. "_lightmapSize": 64
  1074. },
  1075. {
  1076. "__type__": "cc.Node",
  1077. "_name": "pushModel",
  1078. "_objFlags": 0,
  1079. "_parent": {
  1080. "__id__": 17
  1081. },
  1082. "_children": [],
  1083. "_active": true,
  1084. "_components": [
  1085. {
  1086. "__id__": 41
  1087. },
  1088. {
  1089. "__id__": 44
  1090. },
  1091. {
  1092. "__id__": 45
  1093. }
  1094. ],
  1095. "_prefab": null,
  1096. "_lpos": {
  1097. "__type__": "cc.Vec3",
  1098. "x": -0.076,
  1099. "y": 0.4,
  1100. "z": -13.93
  1101. },
  1102. "_lrot": {
  1103. "__type__": "cc.Quat",
  1104. "x": -0.7071067811865477,
  1105. "y": 0,
  1106. "z": 0,
  1107. "w": 0.7071067811865474
  1108. },
  1109. "_lscale": {
  1110. "__type__": "cc.Vec3",
  1111. "x": 2,
  1112. "y": 2.0000000000000004,
  1113. "z": 2.0000000000000004
  1114. },
  1115. "_layer": 1073741824,
  1116. "_euler": {
  1117. "__type__": "cc.Vec3",
  1118. "x": -90.00000000000003,
  1119. "y": 0,
  1120. "z": 0
  1121. },
  1122. "_id": "c8IKI39LdJK5n9boDQaT9S"
  1123. },
  1124. {
  1125. "__type__": "cc.MeshRenderer",
  1126. "_name": "",
  1127. "_objFlags": 0,
  1128. "node": {
  1129. "__id__": 40
  1130. },
  1131. "_enabled": true,
  1132. "__prefab": {
  1133. "__id__": 42
  1134. },
  1135. "_materials": [
  1136. {
  1137. "__uuid__": "fae7dbe3-f17a-4689-ab7c-d8527bb13f06",
  1138. "__expectedType__": "cc.Material"
  1139. }
  1140. ],
  1141. "_visFlags": 0,
  1142. "lightmapSettings": {
  1143. "__id__": 43
  1144. },
  1145. "_mesh": {
  1146. "__uuid__": "1e44187e-9318-4fb1-adb4-c263717cb4be@d81d0",
  1147. "__expectedType__": "cc.Mesh"
  1148. },
  1149. "_shadowCastingMode": 0,
  1150. "_shadowReceivingMode": 1,
  1151. "_enableMorph": true,
  1152. "_id": "6bc7FgW3RFNIozCWF+g5b5"
  1153. },
  1154. {
  1155. "__type__": "cc.CompPrefabInfo",
  1156. "fileId": "18LXBuVFFZfqQO1J9xQbr0"
  1157. },
  1158. {
  1159. "__type__": "cc.ModelLightmapSettings",
  1160. "texture": null,
  1161. "uvParam": {
  1162. "__type__": "cc.Vec4",
  1163. "x": 0,
  1164. "y": 0,
  1165. "z": 0,
  1166. "w": 0
  1167. },
  1168. "_bakeable": false,
  1169. "_castShadow": false,
  1170. "_receiveShadow": false,
  1171. "_recieveShadow": false,
  1172. "_lightmapSize": 64
  1173. },
  1174. {
  1175. "__type__": "cc.BoxCollider",
  1176. "_name": "",
  1177. "_objFlags": 0,
  1178. "node": {
  1179. "__id__": 40
  1180. },
  1181. "_enabled": true,
  1182. "__prefab": null,
  1183. "_material": null,
  1184. "_isTrigger": false,
  1185. "_center": {
  1186. "__type__": "cc.Vec3",
  1187. "x": 0,
  1188. "y": -0.8661269713193178,
  1189. "z": -3.725290298461914e-8
  1190. },
  1191. "_size": {
  1192. "__type__": "cc.Vec3",
  1193. "x": 3.822575569152832,
  1194. "y": 1.7564845941960812,
  1195. "z": 0.3335665911436081
  1196. },
  1197. "_id": "76ymXxWdRP25jJDvE9ArjO"
  1198. },
  1199. {
  1200. "__type__": "cc.RigidBody",
  1201. "_name": "",
  1202. "_objFlags": 0,
  1203. "node": {
  1204. "__id__": 40
  1205. },
  1206. "_enabled": true,
  1207. "__prefab": null,
  1208. "_group": 4,
  1209. "_type": 1,
  1210. "_mass": 20,
  1211. "_allowSleep": true,
  1212. "_linearDamping": 0,
  1213. "_angularDamping": 0,
  1214. "_useGravity": false,
  1215. "_linearFactor": {
  1216. "__type__": "cc.Vec3",
  1217. "x": 0,
  1218. "y": 0,
  1219. "z": 1
  1220. },
  1221. "_angularFactor": {
  1222. "__type__": "cc.Vec3",
  1223. "x": 0,
  1224. "y": 0,
  1225. "z": 0
  1226. },
  1227. "_id": "1dh0AW7ldFZLe0g9U0MoGc"
  1228. },
  1229. {
  1230. "__type__": "cc.Node",
  1231. "_name": "pushBox",
  1232. "_objFlags": 0,
  1233. "_parent": {
  1234. "__id__": 17
  1235. },
  1236. "_children": [],
  1237. "_active": true,
  1238. "_components": [
  1239. {
  1240. "__id__": 47
  1241. },
  1242. {
  1243. "__id__": 48
  1244. }
  1245. ],
  1246. "_prefab": null,
  1247. "_lpos": {
  1248. "__type__": "cc.Vec3",
  1249. "x": -0.076,
  1250. "y": 1.038,
  1251. "z": -7.438
  1252. },
  1253. "_lrot": {
  1254. "__type__": "cc.Quat",
  1255. "x": -0.7071067811865475,
  1256. "y": 0,
  1257. "z": 0,
  1258. "w": 0.7071067811865476
  1259. },
  1260. "_lscale": {
  1261. "__type__": "cc.Vec3",
  1262. "x": 1,
  1263. "y": 1,
  1264. "z": 1
  1265. },
  1266. "_layer": 1073741824,
  1267. "_euler": {
  1268. "__type__": "cc.Vec3",
  1269. "x": -90,
  1270. "y": 0,
  1271. "z": 0
  1272. },
  1273. "_id": "68caSeyExAuqifthgKCLnO"
  1274. },
  1275. {
  1276. "__type__": "cc.BoxCollider",
  1277. "_name": "",
  1278. "_objFlags": 0,
  1279. "node": {
  1280. "__id__": 46
  1281. },
  1282. "_enabled": true,
  1283. "__prefab": null,
  1284. "_material": null,
  1285. "_isTrigger": false,
  1286. "_center": {
  1287. "__type__": "cc.Vec3",
  1288. "x": 0,
  1289. "y": 0,
  1290. "z": 3
  1291. },
  1292. "_size": {
  1293. "__type__": "cc.Vec3",
  1294. "x": 6.849,
  1295. "y": 0.417,
  1296. "z": 6.3
  1297. },
  1298. "_id": "c4wxBx1FdHPpMUP+HLU53U"
  1299. },
  1300. {
  1301. "__type__": "cc.RigidBody",
  1302. "_name": "",
  1303. "_objFlags": 0,
  1304. "node": {
  1305. "__id__": 46
  1306. },
  1307. "_enabled": true,
  1308. "__prefab": null,
  1309. "_group": 2,
  1310. "_type": 2,
  1311. "_mass": 1,
  1312. "_allowSleep": true,
  1313. "_linearDamping": 0.1,
  1314. "_angularDamping": 0.1,
  1315. "_useGravity": true,
  1316. "_linearFactor": {
  1317. "__type__": "cc.Vec3",
  1318. "x": 1,
  1319. "y": 1,
  1320. "z": 1
  1321. },
  1322. "_angularFactor": {
  1323. "__type__": "cc.Vec3",
  1324. "x": 1,
  1325. "y": 1,
  1326. "z": 1
  1327. },
  1328. "_id": "23U/4zB5NH56Eo8dEfxkZw"
  1329. },
  1330. {
  1331. "__type__": "cc.Node",
  1332. "_name": "machineBottom",
  1333. "_objFlags": 0,
  1334. "_parent": {
  1335. "__id__": 17
  1336. },
  1337. "_children": [
  1338. {
  1339. "__id__": 50
  1340. }
  1341. ],
  1342. "_active": true,
  1343. "_components": [
  1344. {
  1345. "__id__": 54
  1346. }
  1347. ],
  1348. "_prefab": null,
  1349. "_lpos": {
  1350. "__type__": "cc.Vec3",
  1351. "x": 0,
  1352. "y": -3.174,
  1353. "z": 1.393
  1354. },
  1355. "_lrot": {
  1356. "__type__": "cc.Quat",
  1357. "x": 0,
  1358. "y": 0,
  1359. "z": 0,
  1360. "w": 1
  1361. },
  1362. "_lscale": {
  1363. "__type__": "cc.Vec3",
  1364. "x": 1,
  1365. "y": 1,
  1366. "z": 1
  1367. },
  1368. "_layer": 1073741824,
  1369. "_euler": {
  1370. "__type__": "cc.Vec3",
  1371. "x": 0,
  1372. "y": 0,
  1373. "z": 0
  1374. },
  1375. "_id": "b1yiBa+QRO0qAPcRpaRUeG"
  1376. },
  1377. {
  1378. "__type__": "cc.Node",
  1379. "_name": "machinePlane",
  1380. "_objFlags": 0,
  1381. "_parent": {
  1382. "__id__": 49
  1383. },
  1384. "_children": [],
  1385. "_active": true,
  1386. "_components": [
  1387. {
  1388. "__id__": 51
  1389. }
  1390. ],
  1391. "_prefab": null,
  1392. "_lpos": {
  1393. "__type__": "cc.Vec3",
  1394. "x": 0,
  1395. "y": 0,
  1396. "z": 0
  1397. },
  1398. "_lrot": {
  1399. "__type__": "cc.Quat",
  1400. "x": 0,
  1401. "y": 0,
  1402. "z": 0,
  1403. "w": 1
  1404. },
  1405. "_lscale": {
  1406. "__type__": "cc.Vec3",
  1407. "x": 5.11,
  1408. "y": 1.028,
  1409. "z": 1.247
  1410. },
  1411. "_layer": 1073741824,
  1412. "_euler": {
  1413. "__type__": "cc.Vec3",
  1414. "x": 0,
  1415. "y": 0,
  1416. "z": 0
  1417. },
  1418. "_id": "bdn69RjylFgr1yrH+pUQaP"
  1419. },
  1420. {
  1421. "__type__": "cc.MeshRenderer",
  1422. "_name": "",
  1423. "_objFlags": 0,
  1424. "node": {
  1425. "__id__": 50
  1426. },
  1427. "_enabled": true,
  1428. "__prefab": {
  1429. "__id__": 52
  1430. },
  1431. "_materials": [
  1432. {
  1433. "__uuid__": "467de505-4faf-4e21-8326-c2304b419fe5",
  1434. "__expectedType__": "cc.Material"
  1435. }
  1436. ],
  1437. "_visFlags": 0,
  1438. "lightmapSettings": {
  1439. "__id__": 53
  1440. },
  1441. "_mesh": {
  1442. "__uuid__": "eafc210f-7a53-4925-a823-37bed8a1e17a@af78e",
  1443. "__expectedType__": "cc.Mesh"
  1444. },
  1445. "_shadowCastingMode": 0,
  1446. "_shadowReceivingMode": 1,
  1447. "_enableMorph": true,
  1448. "_id": "dd+XfnFdNBeLbbGdKPA8q6"
  1449. },
  1450. {
  1451. "__type__": "cc.CompPrefabInfo",
  1452. "fileId": "b9zTH24HBfO7O9Aj/kk7h0"
  1453. },
  1454. {
  1455. "__type__": "cc.ModelLightmapSettings",
  1456. "texture": null,
  1457. "uvParam": {
  1458. "__type__": "cc.Vec4",
  1459. "x": 0,
  1460. "y": 0,
  1461. "z": 0,
  1462. "w": 0
  1463. },
  1464. "_bakeable": false,
  1465. "_castShadow": false,
  1466. "_receiveShadow": false,
  1467. "_recieveShadow": false,
  1468. "_lightmapSize": 64
  1469. },
  1470. {
  1471. "__type__": "cc.Animation",
  1472. "_name": "",
  1473. "_objFlags": 0,
  1474. "node": {
  1475. "__id__": 49
  1476. },
  1477. "_enabled": true,
  1478. "__prefab": {
  1479. "__id__": 55
  1480. },
  1481. "playOnLoad": true,
  1482. "_clips": [
  1483. {
  1484. "__uuid__": "b9a83314-0618-4f88-b38a-463d49309e75",
  1485. "__expectedType__": "cc.AnimationClip"
  1486. }
  1487. ],
  1488. "_defaultClip": {
  1489. "__uuid__": "b9a83314-0618-4f88-b38a-463d49309e75",
  1490. "__expectedType__": "cc.AnimationClip"
  1491. },
  1492. "_id": "fbLbEch/9G0pd4Z/VBtj+V"
  1493. },
  1494. {
  1495. "__type__": "cc.CompPrefabInfo",
  1496. "fileId": "44EGrlJ0ZFDqsX3PzIcgX6"
  1497. },
  1498. {
  1499. "__type__": "cc.Node",
  1500. "_name": "touchPlane",
  1501. "_objFlags": 0,
  1502. "_parent": {
  1503. "__id__": 17
  1504. },
  1505. "_children": [],
  1506. "_active": false,
  1507. "_components": [
  1508. {
  1509. "__id__": 57
  1510. },
  1511. {
  1512. "__id__": 60
  1513. }
  1514. ],
  1515. "_prefab": null,
  1516. "_lpos": {
  1517. "__type__": "cc.Vec3",
  1518. "x": 0,
  1519. "y": 1.064,
  1520. "z": -8.62
  1521. },
  1522. "_lrot": {
  1523. "__type__": "cc.Quat",
  1524. "x": 0.09880741022165854,
  1525. "y": 0,
  1526. "z": 0,
  1527. "w": 0.9951065750387186
  1528. },
  1529. "_lscale": {
  1530. "__type__": "cc.Vec3",
  1531. "x": 0.6629999999999999,
  1532. "y": 0.5999999999999999,
  1533. "z": 0.29999999999999993
  1534. },
  1535. "_layer": 1073741824,
  1536. "_euler": {
  1537. "__type__": "cc.Vec3",
  1538. "x": 11.341,
  1539. "y": 0,
  1540. "z": 0
  1541. },
  1542. "_id": "75xHVnIi5LDZE2DuZvqiuZ"
  1543. },
  1544. {
  1545. "__type__": "cc.MeshRenderer",
  1546. "_name": "Plane<ModelComponent>",
  1547. "_objFlags": 0,
  1548. "__editorExtras__": {},
  1549. "node": {
  1550. "__id__": 56
  1551. },
  1552. "_enabled": true,
  1553. "__prefab": {
  1554. "__id__": 58
  1555. },
  1556. "_materials": [
  1557. {
  1558. "__uuid__": "47f0e0ba-f339-4360-b1e8-1b1ac1bf5bc5",
  1559. "__expectedType__": "cc.Material"
  1560. }
  1561. ],
  1562. "_visFlags": 0,
  1563. "lightmapSettings": {
  1564. "__id__": 59
  1565. },
  1566. "_mesh": {
  1567. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  1568. "__expectedType__": "cc.Mesh"
  1569. },
  1570. "_shadowCastingMode": 0,
  1571. "_shadowReceivingMode": 1,
  1572. "_enableMorph": true,
  1573. "_id": "71UiG0I3RJAKUFHa9TFptC"
  1574. },
  1575. {
  1576. "__type__": "cc.CompPrefabInfo",
  1577. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  1578. },
  1579. {
  1580. "__type__": "cc.ModelLightmapSettings",
  1581. "texture": null,
  1582. "uvParam": {
  1583. "__type__": "cc.Vec4",
  1584. "x": 0,
  1585. "y": 0,
  1586. "z": 0,
  1587. "w": 0
  1588. },
  1589. "_bakeable": false,
  1590. "_castShadow": false,
  1591. "_receiveShadow": false,
  1592. "_recieveShadow": false,
  1593. "_lightmapSize": 64
  1594. },
  1595. {
  1596. "__type__": "35069qDXPFL47Ep1p+WLvRd",
  1597. "_name": "",
  1598. "_objFlags": 0,
  1599. "node": {
  1600. "__id__": 56
  1601. },
  1602. "_enabled": true,
  1603. "__prefab": null,
  1604. "materialsList": [
  1605. {
  1606. "__id__": 61
  1607. },
  1608. {
  1609. "__id__": 62
  1610. }
  1611. ],
  1612. "_id": "61cngkNQhEeJKp22Y5YbI3"
  1613. },
  1614. {
  1615. "__type__": "LocalizedMaterialItem",
  1616. "language": "zh",
  1617. "material": {
  1618. "__uuid__": "47f0e0ba-f339-4360-b1e8-1b1ac1bf5bc5",
  1619. "__expectedType__": "cc.Material"
  1620. }
  1621. },
  1622. {
  1623. "__type__": "LocalizedMaterialItem",
  1624. "language": "en",
  1625. "material": {
  1626. "__uuid__": "56fa78aa-d551-4023-98a0-0b772292d86c",
  1627. "__expectedType__": "cc.Material"
  1628. }
  1629. },
  1630. {
  1631. "__type__": "cc.Node",
  1632. "_name": "numFont",
  1633. "_objFlags": 0,
  1634. "_parent": {
  1635. "__id__": 17
  1636. },
  1637. "_children": [],
  1638. "_active": true,
  1639. "_components": [
  1640. {
  1641. "__id__": 64
  1642. }
  1643. ],
  1644. "_prefab": null,
  1645. "_lpos": {
  1646. "__type__": "cc.Vec3",
  1647. "x": 0,
  1648. "y": 3.23,
  1649. "z": -11
  1650. },
  1651. "_lrot": {
  1652. "__type__": "cc.Quat",
  1653. "x": 0.6461239796429639,
  1654. "y": 0,
  1655. "z": 0,
  1656. "w": 0.7632324697825288
  1657. },
  1658. "_lscale": {
  1659. "__type__": "cc.Vec3",
  1660. "x": 1,
  1661. "y": 1,
  1662. "z": 1
  1663. },
  1664. "_layer": 1073741824,
  1665. "_euler": {
  1666. "__type__": "cc.Vec3",
  1667. "x": 80.5,
  1668. "y": 0,
  1669. "z": 0
  1670. },
  1671. "_id": "c88PRlQIdDP5WuPvlh1VHG"
  1672. },
  1673. {
  1674. "__type__": "8107eV+n8tGA7Qd+aNA5OpC",
  1675. "_name": "",
  1676. "_objFlags": 0,
  1677. "node": {
  1678. "__id__": 63
  1679. },
  1680. "_enabled": true,
  1681. "__prefab": {
  1682. "__id__": 65
  1683. },
  1684. "preNum": {
  1685. "__uuid__": "d2453f7f-3e2c-42d4-b879-d1919714458e",
  1686. "__expectedType__": "cc.Prefab"
  1687. },
  1688. "matNumList": [
  1689. {
  1690. "__uuid__": "073e8cbe-0814-4a05-9811-9bf1b8f5e0a2",
  1691. "__expectedType__": "cc.Material"
  1692. },
  1693. {
  1694. "__uuid__": "374b4e4d-2ae0-4aa8-9d0c-72d22b36b9fa",
  1695. "__expectedType__": "cc.Material"
  1696. },
  1697. {
  1698. "__uuid__": "46192c15-4662-4eda-a8cf-9f3a1397582f",
  1699. "__expectedType__": "cc.Material"
  1700. },
  1701. {
  1702. "__uuid__": "b16d242e-5317-4ba7-8df5-3a779a6c87ae",
  1703. "__expectedType__": "cc.Material"
  1704. },
  1705. {
  1706. "__uuid__": "f84d8292-47f4-4797-bf6c-8549c7bfee57",
  1707. "__expectedType__": "cc.Material"
  1708. },
  1709. {
  1710. "__uuid__": "75f18093-0866-4d08-a8cf-6011e881d0f6",
  1711. "__expectedType__": "cc.Material"
  1712. },
  1713. {
  1714. "__uuid__": "dfb014c8-94dd-4d86-a8ee-ba6946f11e15",
  1715. "__expectedType__": "cc.Material"
  1716. },
  1717. {
  1718. "__uuid__": "703686b8-fe3d-49cf-af4d-e0f8483abe6d",
  1719. "__expectedType__": "cc.Material"
  1720. },
  1721. {
  1722. "__uuid__": "67eacc1c-9f7f-46a5-b1b3-8b8a948e21a4",
  1723. "__expectedType__": "cc.Material"
  1724. },
  1725. {
  1726. "__uuid__": "7a686bc2-bf7d-473e-848b-70d0d20d72ea",
  1727. "__expectedType__": "cc.Material"
  1728. }
  1729. ],
  1730. "horizontalAlign": 2,
  1731. "ndNumFont": 0.748,
  1732. "rangeX": 5.4,
  1733. "rangeZ": 2,
  1734. "_id": "5fIqJkYlNKLqBMxpwBWtfx"
  1735. },
  1736. {
  1737. "__type__": "cc.CompPrefabInfo",
  1738. "fileId": "149w8oXu5EV7QbS99p37Uo"
  1739. },
  1740. {
  1741. "__type__": "673dev94R9LX4c5jU+zFFxq",
  1742. "_name": "",
  1743. "_objFlags": 0,
  1744. "node": {
  1745. "__id__": 17
  1746. },
  1747. "_enabled": true,
  1748. "__prefab": null,
  1749. "ndPush": {
  1750. "__id__": 40
  1751. },
  1752. "ndCoinParent": {
  1753. "__id__": 18
  1754. },
  1755. "preCoin": {
  1756. "__uuid__": "b96cc94d-0543-46c7-9b4e-d3a069c7e347",
  1757. "__expectedType__": "cc.Prefab"
  1758. },
  1759. "ndTouchPlane": {
  1760. "__id__": 56
  1761. },
  1762. "preDrawWall": {
  1763. "__id__": 67
  1764. },
  1765. "scriptGoldNumFont": {
  1766. "__id__": 64
  1767. },
  1768. "_id": "acAG9R1CtOeonj2YQZPZTs"
  1769. },
  1770. {
  1771. "__type__": "cc.Node",
  1772. "_name": "drawCube",
  1773. "_objFlags": 0,
  1774. "_parent": {
  1775. "__id__": 1
  1776. },
  1777. "_children": [],
  1778. "_active": true,
  1779. "_components": [
  1780. {
  1781. "__id__": 68
  1782. }
  1783. ],
  1784. "_prefab": null,
  1785. "_lpos": {
  1786. "__type__": "cc.Vec3",
  1787. "x": -73.252,
  1788. "y": 0,
  1789. "z": 0
  1790. },
  1791. "_lrot": {
  1792. "__type__": "cc.Quat",
  1793. "x": 0,
  1794. "y": 0,
  1795. "z": 0,
  1796. "w": 1
  1797. },
  1798. "_lscale": {
  1799. "__type__": "cc.Vec3",
  1800. "x": 1,
  1801. "y": 1,
  1802. "z": 1
  1803. },
  1804. "_layer": 1073741824,
  1805. "_euler": {
  1806. "__type__": "cc.Vec3",
  1807. "x": 0,
  1808. "y": 0,
  1809. "z": 0
  1810. },
  1811. "_id": "c5I86tIUxAsL4zr9byHer+"
  1812. },
  1813. {
  1814. "__type__": "cc.MeshRenderer",
  1815. "_name": "Cube<ModelComponent>",
  1816. "_objFlags": 0,
  1817. "node": {
  1818. "__id__": 67
  1819. },
  1820. "_enabled": true,
  1821. "__prefab": {
  1822. "__id__": 69
  1823. },
  1824. "_materials": [
  1825. {
  1826. "__uuid__": "0f9f4d41-78b4-4451-8896-47399637ad5f",
  1827. "__expectedType__": "cc.Material"
  1828. }
  1829. ],
  1830. "_visFlags": 0,
  1831. "lightmapSettings": {
  1832. "__id__": 70
  1833. },
  1834. "_mesh": {
  1835. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a",
  1836. "__expectedType__": "cc.Mesh"
  1837. },
  1838. "_shadowCastingMode": 0,
  1839. "_shadowReceivingMode": 1,
  1840. "_enableMorph": true,
  1841. "_id": "e1DC+uvmlHpJcd675qnREz"
  1842. },
  1843. {
  1844. "__type__": "cc.CompPrefabInfo",
  1845. "fileId": "e8DOT5UJ1F/ZgplWYyCxRs"
  1846. },
  1847. {
  1848. "__type__": "cc.ModelLightmapSettings",
  1849. "texture": null,
  1850. "uvParam": {
  1851. "__type__": "cc.Vec4",
  1852. "x": 0,
  1853. "y": 0,
  1854. "z": 0,
  1855. "w": 0
  1856. },
  1857. "_bakeable": false,
  1858. "_castShadow": false,
  1859. "_receiveShadow": false,
  1860. "_recieveShadow": false,
  1861. "_lightmapSize": 64
  1862. },
  1863. {
  1864. "__type__": "cc.Node",
  1865. "_name": "effectManager",
  1866. "_objFlags": 0,
  1867. "_parent": {
  1868. "__id__": 1
  1869. },
  1870. "_children": [],
  1871. "_active": true,
  1872. "_components": [
  1873. {
  1874. "__id__": 72
  1875. }
  1876. ],
  1877. "_prefab": null,
  1878. "_lpos": {
  1879. "__type__": "cc.Vec3",
  1880. "x": 0,
  1881. "y": 0,
  1882. "z": 0
  1883. },
  1884. "_lrot": {
  1885. "__type__": "cc.Quat",
  1886. "x": 0,
  1887. "y": 0,
  1888. "z": 0,
  1889. "w": 1
  1890. },
  1891. "_lscale": {
  1892. "__type__": "cc.Vec3",
  1893. "x": 1,
  1894. "y": 1,
  1895. "z": 1
  1896. },
  1897. "_layer": 1073741824,
  1898. "_euler": {
  1899. "__type__": "cc.Vec3",
  1900. "x": 0,
  1901. "y": 0,
  1902. "z": 0
  1903. },
  1904. "_id": "16zCFWpaBM9JrR2FmDggPT"
  1905. },
  1906. {
  1907. "__type__": "554baRvdXVCaZZeXFSvvApe",
  1908. "_name": "",
  1909. "_objFlags": 0,
  1910. "node": {
  1911. "__id__": 71
  1912. },
  1913. "_enabled": true,
  1914. "__prefab": null,
  1915. "_id": "5a/tRQ79RI/owBHIIwILGs"
  1916. },
  1917. {
  1918. "__type__": "cc.Node",
  1919. "_name": "effParent",
  1920. "_objFlags": 0,
  1921. "_parent": {
  1922. "__id__": 1
  1923. },
  1924. "_children": [
  1925. {
  1926. "__id__": 74
  1927. },
  1928. {
  1929. "__id__": 85
  1930. },
  1931. {
  1932. "__id__": 128
  1933. },
  1934. {
  1935. "__id__": 171
  1936. },
  1937. {
  1938. "__id__": 193
  1939. },
  1940. {
  1941. "__id__": 215
  1942. },
  1943. {
  1944. "__id__": 237
  1945. },
  1946. {
  1947. "__id__": 245
  1948. },
  1949. {
  1950. "__id__": 252
  1951. },
  1952. {
  1953. "__id__": 259
  1954. },
  1955. {
  1956. "__id__": 266
  1957. }
  1958. ],
  1959. "_active": true,
  1960. "_components": [],
  1961. "_prefab": null,
  1962. "_lpos": {
  1963. "__type__": "cc.Vec3",
  1964. "x": 0,
  1965. "y": 0,
  1966. "z": 0
  1967. },
  1968. "_lrot": {
  1969. "__type__": "cc.Quat",
  1970. "x": 0,
  1971. "y": 0,
  1972. "z": 0,
  1973. "w": 1
  1974. },
  1975. "_lscale": {
  1976. "__type__": "cc.Vec3",
  1977. "x": 1,
  1978. "y": 1,
  1979. "z": 1
  1980. },
  1981. "_layer": 1073741824,
  1982. "_euler": {
  1983. "__type__": "cc.Vec3",
  1984. "x": 0,
  1985. "y": 0,
  1986. "z": 0
  1987. },
  1988. "_id": "97ZT9fJFdBZZPv0SWEV8cU"
  1989. },
  1990. {
  1991. "__type__": "cc.Node",
  1992. "_name": "machineTop",
  1993. "_objFlags": 0,
  1994. "_parent": {
  1995. "__id__": 73
  1996. },
  1997. "_children": [
  1998. {
  1999. "__id__": 75
  2000. },
  2001. {
  2002. "__id__": 79
  2003. }
  2004. ],
  2005. "_active": true,
  2006. "_components": [
  2007. {
  2008. "__id__": 83
  2009. }
  2010. ],
  2011. "_prefab": null,
  2012. "_lpos": {
  2013. "__type__": "cc.Vec3",
  2014. "x": 0,
  2015. "y": 8.373,
  2016. "z": -8.816
  2017. },
  2018. "_lrot": {
  2019. "__type__": "cc.Quat",
  2020. "x": -0.06193712789970002,
  2021. "y": 0.0011256759160727344,
  2022. "z": -0.00010501347601822575,
  2023. "w": 0.99807941267889
  2024. },
  2025. "_lscale": {
  2026. "__type__": "cc.Vec3",
  2027. "x": 1,
  2028. "y": 1,
  2029. "z": 1
  2030. },
  2031. "_layer": 1073741824,
  2032. "_euler": {
  2033. "__type__": "cc.Vec3",
  2034. "x": -7.102000000000002,
  2035. "y": 0.12800000000000003,
  2036. "z": -0.02
  2037. },
  2038. "_id": "12gowimhRPq50O6VFsxZZM"
  2039. },
  2040. {
  2041. "__type__": "cc.Node",
  2042. "_name": "geziGood",
  2043. "_objFlags": 0,
  2044. "_parent": {
  2045. "__id__": 74
  2046. },
  2047. "_children": [],
  2048. "_active": true,
  2049. "_components": [
  2050. {
  2051. "__id__": 76
  2052. }
  2053. ],
  2054. "_prefab": null,
  2055. "_lpos": {
  2056. "__type__": "cc.Vec3",
  2057. "x": -0.068,
  2058. "y": 0.11700000000000266,
  2059. "z": -0.0229999999999988
  2060. },
  2061. "_lrot": {
  2062. "__type__": "cc.Quat",
  2063. "x": 0.7071067811865475,
  2064. "y": 1.4822844802407924e-19,
  2065. "z": 1.8381556601088656e-19,
  2066. "w": 0.7071067811865477
  2067. },
  2068. "_lscale": {
  2069. "__type__": "cc.Vec3",
  2070. "x": 0.64,
  2071. "y": 0.915,
  2072. "z": 0.181
  2073. },
  2074. "_layer": 1073741824,
  2075. "_euler": {
  2076. "__type__": "cc.Vec3",
  2077. "x": 89.99999999999999,
  2078. "y": -2.883569667167755e-18,
  2079. "z": 2.6905017916618096e-17
  2080. },
  2081. "_id": "38h0Z0QotEYKw0CvUXIXw+"
  2082. },
  2083. {
  2084. "__type__": "cc.MeshRenderer",
  2085. "_name": "Plane<ModelComponent>",
  2086. "_objFlags": 0,
  2087. "node": {
  2088. "__id__": 75
  2089. },
  2090. "_enabled": true,
  2091. "__prefab": {
  2092. "__id__": 77
  2093. },
  2094. "_materials": [
  2095. {
  2096. "__uuid__": "0f423e04-923d-434c-9dfc-819d36958bbc",
  2097. "__expectedType__": "cc.Material"
  2098. }
  2099. ],
  2100. "_visFlags": 0,
  2101. "lightmapSettings": {
  2102. "__id__": 78
  2103. },
  2104. "_mesh": {
  2105. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  2106. "__expectedType__": "cc.Mesh"
  2107. },
  2108. "_shadowCastingMode": 0,
  2109. "_shadowReceivingMode": 1,
  2110. "_enableMorph": true,
  2111. "_id": "5eH0Wda2RMiIHXNhW50GTC"
  2112. },
  2113. {
  2114. "__type__": "cc.CompPrefabInfo",
  2115. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  2116. },
  2117. {
  2118. "__type__": "cc.ModelLightmapSettings",
  2119. "texture": null,
  2120. "uvParam": {
  2121. "__type__": "cc.Vec4",
  2122. "x": 0,
  2123. "y": 0,
  2124. "z": 0,
  2125. "w": 0
  2126. },
  2127. "_bakeable": false,
  2128. "_castShadow": false,
  2129. "_receiveShadow": false,
  2130. "_recieveShadow": false,
  2131. "_lightmapSize": 64
  2132. },
  2133. {
  2134. "__type__": "cc.Node",
  2135. "_name": "geziW",
  2136. "_objFlags": 0,
  2137. "_parent": {
  2138. "__id__": 74
  2139. },
  2140. "_children": [],
  2141. "_active": true,
  2142. "_components": [
  2143. {
  2144. "__id__": 80
  2145. }
  2146. ],
  2147. "_prefab": null,
  2148. "_lpos": {
  2149. "__type__": "cc.Vec3",
  2150. "x": -0.068,
  2151. "y": 0.117,
  2152. "z": -0.023
  2153. },
  2154. "_lrot": {
  2155. "__type__": "cc.Quat",
  2156. "x": 0.7071067811865475,
  2157. "y": 1.4822844802407924e-19,
  2158. "z": 1.8381556601088656e-19,
  2159. "w": 0.7071067811865477
  2160. },
  2161. "_lscale": {
  2162. "__type__": "cc.Vec3",
  2163. "x": 0.64,
  2164. "y": 0.915,
  2165. "z": 0.181
  2166. },
  2167. "_layer": 1073741824,
  2168. "_euler": {
  2169. "__type__": "cc.Vec3",
  2170. "x": 89.99999999999999,
  2171. "y": -2.883569667167755e-18,
  2172. "z": 2.6905017916618096e-17
  2173. },
  2174. "_id": "55/n7vSFxNv4YwFvIxbcPU"
  2175. },
  2176. {
  2177. "__type__": "cc.MeshRenderer",
  2178. "_name": "Plane<ModelComponent>",
  2179. "_objFlags": 0,
  2180. "node": {
  2181. "__id__": 79
  2182. },
  2183. "_enabled": true,
  2184. "__prefab": {
  2185. "__id__": 81
  2186. },
  2187. "_materials": [
  2188. {
  2189. "__uuid__": "5479ae0c-1229-42ce-80fb-bf39acc11e79",
  2190. "__expectedType__": "cc.Material"
  2191. }
  2192. ],
  2193. "_visFlags": 0,
  2194. "lightmapSettings": {
  2195. "__id__": 82
  2196. },
  2197. "_mesh": {
  2198. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  2199. "__expectedType__": "cc.Mesh"
  2200. },
  2201. "_shadowCastingMode": 0,
  2202. "_shadowReceivingMode": 1,
  2203. "_enableMorph": true,
  2204. "_id": "fe995DjB1OK42ga2tsjT1N"
  2205. },
  2206. {
  2207. "__type__": "cc.CompPrefabInfo",
  2208. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  2209. },
  2210. {
  2211. "__type__": "cc.ModelLightmapSettings",
  2212. "texture": null,
  2213. "uvParam": {
  2214. "__type__": "cc.Vec4",
  2215. "x": 0,
  2216. "y": 0,
  2217. "z": 0,
  2218. "w": 0
  2219. },
  2220. "_bakeable": false,
  2221. "_castShadow": false,
  2222. "_receiveShadow": false,
  2223. "_recieveShadow": false,
  2224. "_lightmapSize": 64
  2225. },
  2226. {
  2227. "__type__": "cc.Animation",
  2228. "_name": "",
  2229. "_objFlags": 0,
  2230. "__editorExtras__": {},
  2231. "node": {
  2232. "__id__": 74
  2233. },
  2234. "_enabled": true,
  2235. "__prefab": {
  2236. "__id__": 84
  2237. },
  2238. "playOnLoad": false,
  2239. "_clips": [
  2240. {
  2241. "__uuid__": "736d6d72-2a2a-4253-8a4d-089f18938794",
  2242. "__expectedType__": "cc.AnimationClip"
  2243. },
  2244. {
  2245. "__uuid__": "f51c4ac9-08ff-41f5-b917-933e58e7e8bf",
  2246. "__expectedType__": "cc.AnimationClip"
  2247. },
  2248. {
  2249. "__uuid__": "eac83247-c1a9-4df7-bd92-dae6624e8c43",
  2250. "__expectedType__": "cc.AnimationClip"
  2251. }
  2252. ],
  2253. "_defaultClip": {
  2254. "__uuid__": "736d6d72-2a2a-4253-8a4d-089f18938794",
  2255. "__expectedType__": "cc.AnimationClip"
  2256. },
  2257. "_id": "d9zUg05apHTIPZh2+yTmMf"
  2258. },
  2259. {
  2260. "__type__": "cc.CompPrefabInfo",
  2261. "fileId": "52pCyp50xAyKwY/Xq2hgJn"
  2262. },
  2263. {
  2264. "__type__": "cc.Node",
  2265. "_name": "machineLightL",
  2266. "_objFlags": 0,
  2267. "_parent": {
  2268. "__id__": 73
  2269. },
  2270. "_children": [
  2271. {
  2272. "__id__": 86
  2273. },
  2274. {
  2275. "__id__": 90
  2276. },
  2277. {
  2278. "__id__": 94
  2279. },
  2280. {
  2281. "__id__": 98
  2282. },
  2283. {
  2284. "__id__": 102
  2285. },
  2286. {
  2287. "__id__": 106
  2288. },
  2289. {
  2290. "__id__": 110
  2291. },
  2292. {
  2293. "__id__": 114
  2294. },
  2295. {
  2296. "__id__": 118
  2297. },
  2298. {
  2299. "__id__": 122
  2300. }
  2301. ],
  2302. "_active": true,
  2303. "_components": [
  2304. {
  2305. "__id__": 126
  2306. }
  2307. ],
  2308. "_prefab": null,
  2309. "_lpos": {
  2310. "__type__": "cc.Vec3",
  2311. "x": -4.281,
  2312. "y": 0,
  2313. "z": 0
  2314. },
  2315. "_lrot": {
  2316. "__type__": "cc.Quat",
  2317. "x": 0,
  2318. "y": 0,
  2319. "z": 0,
  2320. "w": 1
  2321. },
  2322. "_lscale": {
  2323. "__type__": "cc.Vec3",
  2324. "x": 1,
  2325. "y": 1,
  2326. "z": 1
  2327. },
  2328. "_layer": 1073741824,
  2329. "_euler": {
  2330. "__type__": "cc.Vec3",
  2331. "x": 0,
  2332. "y": 0,
  2333. "z": 0
  2334. },
  2335. "_id": "76OTkt5ING9qw7tafwm7H/"
  2336. },
  2337. {
  2338. "__type__": "cc.Node",
  2339. "_name": "1",
  2340. "_objFlags": 0,
  2341. "_parent": {
  2342. "__id__": 85
  2343. },
  2344. "_children": [],
  2345. "_active": true,
  2346. "_components": [
  2347. {
  2348. "__id__": 87
  2349. }
  2350. ],
  2351. "_prefab": null,
  2352. "_lpos": {
  2353. "__type__": "cc.Vec3",
  2354. "x": 0,
  2355. "y": 9.117,
  2356. "z": -8.71
  2357. },
  2358. "_lrot": {
  2359. "__type__": "cc.Quat",
  2360. "x": 0.6623912618042958,
  2361. "y": 0,
  2362. "z": 0,
  2363. "w": 0.7491580716279529
  2364. },
  2365. "_lscale": {
  2366. "__type__": "cc.Vec3",
  2367. "x": 0.13,
  2368. "y": 0.13,
  2369. "z": 0.13
  2370. },
  2371. "_layer": 1073741824,
  2372. "_euler": {
  2373. "__type__": "cc.Vec3",
  2374. "x": 82.965,
  2375. "y": 0,
  2376. "z": 0
  2377. },
  2378. "_id": "716DBLVtdHb4lSYVffOp8q"
  2379. },
  2380. {
  2381. "__type__": "cc.MeshRenderer",
  2382. "_name": "Plane<ModelComponent>",
  2383. "_objFlags": 0,
  2384. "__editorExtras__": {},
  2385. "node": {
  2386. "__id__": 86
  2387. },
  2388. "_enabled": true,
  2389. "__prefab": {
  2390. "__id__": 88
  2391. },
  2392. "_materials": [
  2393. {
  2394. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  2395. "__expectedType__": "cc.Material"
  2396. }
  2397. ],
  2398. "_visFlags": 0,
  2399. "lightmapSettings": {
  2400. "__id__": 89
  2401. },
  2402. "_mesh": {
  2403. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  2404. "__expectedType__": "cc.Mesh"
  2405. },
  2406. "_shadowCastingMode": 0,
  2407. "_shadowReceivingMode": 1,
  2408. "_enableMorph": true,
  2409. "_id": "81HKD+sS5Dj6bCCdwDhdm6"
  2410. },
  2411. {
  2412. "__type__": "cc.CompPrefabInfo",
  2413. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  2414. },
  2415. {
  2416. "__type__": "cc.ModelLightmapSettings",
  2417. "texture": null,
  2418. "uvParam": {
  2419. "__type__": "cc.Vec4",
  2420. "x": 0,
  2421. "y": 0,
  2422. "z": 0,
  2423. "w": 0
  2424. },
  2425. "_bakeable": false,
  2426. "_castShadow": false,
  2427. "_receiveShadow": false,
  2428. "_recieveShadow": false,
  2429. "_lightmapSize": 64
  2430. },
  2431. {
  2432. "__type__": "cc.Node",
  2433. "_name": "2",
  2434. "_objFlags": 0,
  2435. "_parent": {
  2436. "__id__": 85
  2437. },
  2438. "_children": [],
  2439. "_active": true,
  2440. "_components": [
  2441. {
  2442. "__id__": 91
  2443. }
  2444. ],
  2445. "_prefab": null,
  2446. "_lpos": {
  2447. "__type__": "cc.Vec3",
  2448. "x": 0,
  2449. "y": 8.016,
  2450. "z": -8.574
  2451. },
  2452. "_lrot": {
  2453. "__type__": "cc.Quat",
  2454. "x": 0.6623912618042958,
  2455. "y": 0,
  2456. "z": 0,
  2457. "w": 0.7491580716279529
  2458. },
  2459. "_lscale": {
  2460. "__type__": "cc.Vec3",
  2461. "x": 0.13,
  2462. "y": 0.13,
  2463. "z": 0.13
  2464. },
  2465. "_layer": 1073741824,
  2466. "_euler": {
  2467. "__type__": "cc.Vec3",
  2468. "x": 82.965,
  2469. "y": 0,
  2470. "z": 0
  2471. },
  2472. "_id": "93o3k01LNHrJfOqOZ1dIUE"
  2473. },
  2474. {
  2475. "__type__": "cc.MeshRenderer",
  2476. "_name": "Plane<ModelComponent>",
  2477. "_objFlags": 0,
  2478. "__editorExtras__": {},
  2479. "node": {
  2480. "__id__": 90
  2481. },
  2482. "_enabled": true,
  2483. "__prefab": {
  2484. "__id__": 92
  2485. },
  2486. "_materials": [
  2487. {
  2488. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  2489. "__expectedType__": "cc.Material"
  2490. }
  2491. ],
  2492. "_visFlags": 0,
  2493. "lightmapSettings": {
  2494. "__id__": 93
  2495. },
  2496. "_mesh": {
  2497. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  2498. "__expectedType__": "cc.Mesh"
  2499. },
  2500. "_shadowCastingMode": 0,
  2501. "_shadowReceivingMode": 1,
  2502. "_enableMorph": true,
  2503. "_id": "56A6Y3cNdDSpu5fIcRUmGj"
  2504. },
  2505. {
  2506. "__type__": "cc.CompPrefabInfo",
  2507. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  2508. },
  2509. {
  2510. "__type__": "cc.ModelLightmapSettings",
  2511. "texture": null,
  2512. "uvParam": {
  2513. "__type__": "cc.Vec4",
  2514. "x": 0,
  2515. "y": 0,
  2516. "z": 0,
  2517. "w": 0
  2518. },
  2519. "_bakeable": false,
  2520. "_castShadow": false,
  2521. "_receiveShadow": false,
  2522. "_recieveShadow": false,
  2523. "_lightmapSize": 64
  2524. },
  2525. {
  2526. "__type__": "cc.Node",
  2527. "_name": "3",
  2528. "_objFlags": 0,
  2529. "_parent": {
  2530. "__id__": 85
  2531. },
  2532. "_children": [],
  2533. "_active": true,
  2534. "_components": [
  2535. {
  2536. "__id__": 95
  2537. }
  2538. ],
  2539. "_prefab": null,
  2540. "_lpos": {
  2541. "__type__": "cc.Vec3",
  2542. "x": 0.132,
  2543. "y": 7.225,
  2544. "z": -8.766
  2545. },
  2546. "_lrot": {
  2547. "__type__": "cc.Quat",
  2548. "x": 0.7692490275698787,
  2549. "y": 0,
  2550. "z": 0,
  2551. "w": 0.6389490852820716
  2552. },
  2553. "_lscale": {
  2554. "__type__": "cc.Vec3",
  2555. "x": 0.1,
  2556. "y": 0.13,
  2557. "z": 0.08
  2558. },
  2559. "_layer": 1073741824,
  2560. "_euler": {
  2561. "__type__": "cc.Vec3",
  2562. "x": 100.573,
  2563. "y": 0,
  2564. "z": 0
  2565. },
  2566. "_id": "71UvJVxm1LuJ9uS4RaywNZ"
  2567. },
  2568. {
  2569. "__type__": "cc.MeshRenderer",
  2570. "_name": "Plane<ModelComponent>",
  2571. "_objFlags": 0,
  2572. "__editorExtras__": {},
  2573. "node": {
  2574. "__id__": 94
  2575. },
  2576. "_enabled": true,
  2577. "__prefab": {
  2578. "__id__": 96
  2579. },
  2580. "_materials": [
  2581. {
  2582. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  2583. "__expectedType__": "cc.Material"
  2584. }
  2585. ],
  2586. "_visFlags": 0,
  2587. "lightmapSettings": {
  2588. "__id__": 97
  2589. },
  2590. "_mesh": {
  2591. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  2592. "__expectedType__": "cc.Mesh"
  2593. },
  2594. "_shadowCastingMode": 0,
  2595. "_shadowReceivingMode": 1,
  2596. "_enableMorph": true,
  2597. "_id": "a2N2QCTntChL9IG3s3cDpF"
  2598. },
  2599. {
  2600. "__type__": "cc.CompPrefabInfo",
  2601. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  2602. },
  2603. {
  2604. "__type__": "cc.ModelLightmapSettings",
  2605. "texture": null,
  2606. "uvParam": {
  2607. "__type__": "cc.Vec4",
  2608. "x": 0,
  2609. "y": 0,
  2610. "z": 0,
  2611. "w": 0
  2612. },
  2613. "_bakeable": false,
  2614. "_castShadow": false,
  2615. "_receiveShadow": false,
  2616. "_recieveShadow": false,
  2617. "_lightmapSize": 64
  2618. },
  2619. {
  2620. "__type__": "cc.Node",
  2621. "_name": "4",
  2622. "_objFlags": 0,
  2623. "_parent": {
  2624. "__id__": 85
  2625. },
  2626. "_children": [],
  2627. "_active": true,
  2628. "_components": [
  2629. {
  2630. "__id__": 99
  2631. }
  2632. ],
  2633. "_prefab": null,
  2634. "_lpos": {
  2635. "__type__": "cc.Vec3",
  2636. "x": 0,
  2637. "y": 6.136,
  2638. "z": -10.77
  2639. },
  2640. "_lrot": {
  2641. "__type__": "cc.Quat",
  2642. "x": 0.8230669871905272,
  2643. "y": 0,
  2644. "z": 0,
  2645. "w": 0.5679443058937281
  2646. },
  2647. "_lscale": {
  2648. "__type__": "cc.Vec3",
  2649. "x": 0.13,
  2650. "y": 0.13,
  2651. "z": 0.12
  2652. },
  2653. "_layer": 1073741824,
  2654. "_euler": {
  2655. "__type__": "cc.Vec3",
  2656. "x": 110.786,
  2657. "y": 0,
  2658. "z": 0
  2659. },
  2660. "_id": "b0D7hVYmVB+ZVNnolfr7DB"
  2661. },
  2662. {
  2663. "__type__": "cc.MeshRenderer",
  2664. "_name": "Plane<ModelComponent>",
  2665. "_objFlags": 0,
  2666. "__editorExtras__": {},
  2667. "node": {
  2668. "__id__": 98
  2669. },
  2670. "_enabled": true,
  2671. "__prefab": {
  2672. "__id__": 100
  2673. },
  2674. "_materials": [
  2675. {
  2676. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  2677. "__expectedType__": "cc.Material"
  2678. }
  2679. ],
  2680. "_visFlags": 0,
  2681. "lightmapSettings": {
  2682. "__id__": 101
  2683. },
  2684. "_mesh": {
  2685. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  2686. "__expectedType__": "cc.Mesh"
  2687. },
  2688. "_shadowCastingMode": 0,
  2689. "_shadowReceivingMode": 1,
  2690. "_enableMorph": true,
  2691. "_id": "ee9A6rEGhIi6s1bTmh1RXA"
  2692. },
  2693. {
  2694. "__type__": "cc.CompPrefabInfo",
  2695. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  2696. },
  2697. {
  2698. "__type__": "cc.ModelLightmapSettings",
  2699. "texture": null,
  2700. "uvParam": {
  2701. "__type__": "cc.Vec4",
  2702. "x": 0,
  2703. "y": 0,
  2704. "z": 0,
  2705. "w": 0
  2706. },
  2707. "_bakeable": false,
  2708. "_castShadow": false,
  2709. "_receiveShadow": false,
  2710. "_recieveShadow": false,
  2711. "_lightmapSize": 64
  2712. },
  2713. {
  2714. "__type__": "cc.Node",
  2715. "_name": "5",
  2716. "_objFlags": 0,
  2717. "_parent": {
  2718. "__id__": 85
  2719. },
  2720. "_children": [],
  2721. "_active": true,
  2722. "_components": [
  2723. {
  2724. "__id__": 103
  2725. }
  2726. ],
  2727. "_prefab": null,
  2728. "_lpos": {
  2729. "__type__": "cc.Vec3",
  2730. "x": 0,
  2731. "y": 4.804,
  2732. "z": -10.872
  2733. },
  2734. "_lrot": {
  2735. "__type__": "cc.Quat",
  2736. "x": 0.6653345985263338,
  2737. "y": 0,
  2738. "z": 0,
  2739. "w": 0.7465452913278618
  2740. },
  2741. "_lscale": {
  2742. "__type__": "cc.Vec3",
  2743. "x": 0.13,
  2744. "y": 0.13,
  2745. "z": 0.13
  2746. },
  2747. "_layer": 1073741824,
  2748. "_euler": {
  2749. "__type__": "cc.Vec3",
  2750. "x": 83.416,
  2751. "y": 0,
  2752. "z": 0
  2753. },
  2754. "_id": "26Ak6pYZdHN48aBLiUotX+"
  2755. },
  2756. {
  2757. "__type__": "cc.MeshRenderer",
  2758. "_name": "Plane<ModelComponent>",
  2759. "_objFlags": 0,
  2760. "__editorExtras__": {},
  2761. "node": {
  2762. "__id__": 102
  2763. },
  2764. "_enabled": true,
  2765. "__prefab": {
  2766. "__id__": 104
  2767. },
  2768. "_materials": [
  2769. {
  2770. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  2771. "__expectedType__": "cc.Material"
  2772. }
  2773. ],
  2774. "_visFlags": 0,
  2775. "lightmapSettings": {
  2776. "__id__": 105
  2777. },
  2778. "_mesh": {
  2779. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  2780. "__expectedType__": "cc.Mesh"
  2781. },
  2782. "_shadowCastingMode": 0,
  2783. "_shadowReceivingMode": 1,
  2784. "_enableMorph": true,
  2785. "_id": "ec9i9IS4tKxqhPabxs8Hj/"
  2786. },
  2787. {
  2788. "__type__": "cc.CompPrefabInfo",
  2789. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  2790. },
  2791. {
  2792. "__type__": "cc.ModelLightmapSettings",
  2793. "texture": null,
  2794. "uvParam": {
  2795. "__type__": "cc.Vec4",
  2796. "x": 0,
  2797. "y": 0,
  2798. "z": 0,
  2799. "w": 0
  2800. },
  2801. "_bakeable": false,
  2802. "_castShadow": false,
  2803. "_receiveShadow": false,
  2804. "_recieveShadow": false,
  2805. "_lightmapSize": 64
  2806. },
  2807. {
  2808. "__type__": "cc.Node",
  2809. "_name": "6",
  2810. "_objFlags": 0,
  2811. "_parent": {
  2812. "__id__": 85
  2813. },
  2814. "_children": [],
  2815. "_active": true,
  2816. "_components": [
  2817. {
  2818. "__id__": 107
  2819. }
  2820. ],
  2821. "_prefab": null,
  2822. "_lpos": {
  2823. "__type__": "cc.Vec3",
  2824. "x": 0,
  2825. "y": 3.062,
  2826. "z": -10.671
  2827. },
  2828. "_lrot": {
  2829. "__type__": "cc.Quat",
  2830. "x": 0.6653345985263338,
  2831. "y": 0,
  2832. "z": 0,
  2833. "w": 0.7465452913278618
  2834. },
  2835. "_lscale": {
  2836. "__type__": "cc.Vec3",
  2837. "x": 0.13,
  2838. "y": 0.13,
  2839. "z": 0.13
  2840. },
  2841. "_layer": 1073741824,
  2842. "_euler": {
  2843. "__type__": "cc.Vec3",
  2844. "x": 83.416,
  2845. "y": 0,
  2846. "z": 0
  2847. },
  2848. "_id": "d18IFD+AFELb8+NBENugTH"
  2849. },
  2850. {
  2851. "__type__": "cc.MeshRenderer",
  2852. "_name": "Plane<ModelComponent>",
  2853. "_objFlags": 0,
  2854. "__editorExtras__": {},
  2855. "node": {
  2856. "__id__": 106
  2857. },
  2858. "_enabled": true,
  2859. "__prefab": {
  2860. "__id__": 108
  2861. },
  2862. "_materials": [
  2863. {
  2864. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  2865. "__expectedType__": "cc.Material"
  2866. }
  2867. ],
  2868. "_visFlags": 0,
  2869. "lightmapSettings": {
  2870. "__id__": 109
  2871. },
  2872. "_mesh": {
  2873. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  2874. "__expectedType__": "cc.Mesh"
  2875. },
  2876. "_shadowCastingMode": 0,
  2877. "_shadowReceivingMode": 1,
  2878. "_enableMorph": true,
  2879. "_id": "1flk1dcyBG/q2JcUne51Gc"
  2880. },
  2881. {
  2882. "__type__": "cc.CompPrefabInfo",
  2883. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  2884. },
  2885. {
  2886. "__type__": "cc.ModelLightmapSettings",
  2887. "texture": null,
  2888. "uvParam": {
  2889. "__type__": "cc.Vec4",
  2890. "x": 0,
  2891. "y": 0,
  2892. "z": 0,
  2893. "w": 0
  2894. },
  2895. "_bakeable": false,
  2896. "_castShadow": false,
  2897. "_receiveShadow": false,
  2898. "_recieveShadow": false,
  2899. "_lightmapSize": 64
  2900. },
  2901. {
  2902. "__type__": "cc.Node",
  2903. "_name": "7",
  2904. "_objFlags": 0,
  2905. "_parent": {
  2906. "__id__": 85
  2907. },
  2908. "_children": [],
  2909. "_active": true,
  2910. "_components": [
  2911. {
  2912. "__id__": 111
  2913. }
  2914. ],
  2915. "_prefab": null,
  2916. "_lpos": {
  2917. "__type__": "cc.Vec3",
  2918. "x": 0,
  2919. "y": 2.075,
  2920. "z": -9.796
  2921. },
  2922. "_lrot": {
  2923. "__type__": "cc.Quat",
  2924. "x": 0.28536219612321606,
  2925. "y": 0,
  2926. "z": 0,
  2927. "w": 0.9584197499132283
  2928. },
  2929. "_lscale": {
  2930. "__type__": "cc.Vec3",
  2931. "x": 0.13,
  2932. "y": 0.13,
  2933. "z": 0.11
  2934. },
  2935. "_layer": 1073741824,
  2936. "_euler": {
  2937. "__type__": "cc.Vec3",
  2938. "x": 33.161,
  2939. "y": 0,
  2940. "z": 0
  2941. },
  2942. "_id": "ebCDdrAfxCuqkTNEHbgJeU"
  2943. },
  2944. {
  2945. "__type__": "cc.MeshRenderer",
  2946. "_name": "Plane<ModelComponent>",
  2947. "_objFlags": 0,
  2948. "__editorExtras__": {},
  2949. "node": {
  2950. "__id__": 110
  2951. },
  2952. "_enabled": true,
  2953. "__prefab": {
  2954. "__id__": 112
  2955. },
  2956. "_materials": [
  2957. {
  2958. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  2959. "__expectedType__": "cc.Material"
  2960. }
  2961. ],
  2962. "_visFlags": 0,
  2963. "lightmapSettings": {
  2964. "__id__": 113
  2965. },
  2966. "_mesh": {
  2967. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  2968. "__expectedType__": "cc.Mesh"
  2969. },
  2970. "_shadowCastingMode": 0,
  2971. "_shadowReceivingMode": 1,
  2972. "_enableMorph": true,
  2973. "_id": "29SdLEuHJI8Ivopu3j6OID"
  2974. },
  2975. {
  2976. "__type__": "cc.CompPrefabInfo",
  2977. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  2978. },
  2979. {
  2980. "__type__": "cc.ModelLightmapSettings",
  2981. "texture": null,
  2982. "uvParam": {
  2983. "__type__": "cc.Vec4",
  2984. "x": 0,
  2985. "y": 0,
  2986. "z": 0,
  2987. "w": 0
  2988. },
  2989. "_bakeable": false,
  2990. "_castShadow": false,
  2991. "_receiveShadow": false,
  2992. "_recieveShadow": false,
  2993. "_lightmapSize": 64
  2994. },
  2995. {
  2996. "__type__": "cc.Node",
  2997. "_name": "8",
  2998. "_objFlags": 0,
  2999. "_parent": {
  3000. "__id__": 85
  3001. },
  3002. "_children": [],
  3003. "_active": true,
  3004. "_components": [
  3005. {
  3006. "__id__": 115
  3007. }
  3008. ],
  3009. "_prefab": null,
  3010. "_lpos": {
  3011. "__type__": "cc.Vec3",
  3012. "x": 0,
  3013. "y": 1.713,
  3014. "z": -8.435
  3015. },
  3016. "_lrot": {
  3017. "__type__": "cc.Quat",
  3018. "x": 0.2643023087383513,
  3019. "y": 0,
  3020. "z": 0,
  3021. "w": 0.9644398838681327
  3022. },
  3023. "_lscale": {
  3024. "__type__": "cc.Vec3",
  3025. "x": 0.13,
  3026. "y": 0.13,
  3027. "z": 0.13
  3028. },
  3029. "_layer": 1073741824,
  3030. "_euler": {
  3031. "__type__": "cc.Vec3",
  3032. "x": 30.651,
  3033. "y": 0,
  3034. "z": 0
  3035. },
  3036. "_id": "d0Sl62NnhJ/4oJJNyLKtG0"
  3037. },
  3038. {
  3039. "__type__": "cc.MeshRenderer",
  3040. "_name": "Plane<ModelComponent>",
  3041. "_objFlags": 0,
  3042. "__editorExtras__": {},
  3043. "node": {
  3044. "__id__": 114
  3045. },
  3046. "_enabled": true,
  3047. "__prefab": {
  3048. "__id__": 116
  3049. },
  3050. "_materials": [
  3051. {
  3052. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  3053. "__expectedType__": "cc.Material"
  3054. }
  3055. ],
  3056. "_visFlags": 0,
  3057. "lightmapSettings": {
  3058. "__id__": 117
  3059. },
  3060. "_mesh": {
  3061. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  3062. "__expectedType__": "cc.Mesh"
  3063. },
  3064. "_shadowCastingMode": 0,
  3065. "_shadowReceivingMode": 1,
  3066. "_enableMorph": true,
  3067. "_id": "fb2tHbH6lEbqUUC0Ar2Ra3"
  3068. },
  3069. {
  3070. "__type__": "cc.CompPrefabInfo",
  3071. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  3072. },
  3073. {
  3074. "__type__": "cc.ModelLightmapSettings",
  3075. "texture": null,
  3076. "uvParam": {
  3077. "__type__": "cc.Vec4",
  3078. "x": 0,
  3079. "y": 0,
  3080. "z": 0,
  3081. "w": 0
  3082. },
  3083. "_bakeable": false,
  3084. "_castShadow": false,
  3085. "_receiveShadow": false,
  3086. "_recieveShadow": false,
  3087. "_lightmapSize": 64
  3088. },
  3089. {
  3090. "__type__": "cc.Node",
  3091. "_name": "9",
  3092. "_objFlags": 0,
  3093. "_parent": {
  3094. "__id__": 85
  3095. },
  3096. "_children": [],
  3097. "_active": true,
  3098. "_components": [
  3099. {
  3100. "__id__": 119
  3101. }
  3102. ],
  3103. "_prefab": null,
  3104. "_lpos": {
  3105. "__type__": "cc.Vec3",
  3106. "x": 0,
  3107. "y": 0.467,
  3108. "z": -7.696
  3109. },
  3110. "_lrot": {
  3111. "__type__": "cc.Quat",
  3112. "x": 0.7071067811865475,
  3113. "y": 0,
  3114. "z": 0,
  3115. "w": 0.7071067811865476
  3116. },
  3117. "_lscale": {
  3118. "__type__": "cc.Vec3",
  3119. "x": 0.13,
  3120. "y": 0.13,
  3121. "z": 0.13
  3122. },
  3123. "_layer": 1073741824,
  3124. "_euler": {
  3125. "__type__": "cc.Vec3",
  3126. "x": 90,
  3127. "y": 0,
  3128. "z": 0
  3129. },
  3130. "_id": "c8zE3jGvZKWI0XjIx/WRtg"
  3131. },
  3132. {
  3133. "__type__": "cc.MeshRenderer",
  3134. "_name": "Plane<ModelComponent>",
  3135. "_objFlags": 0,
  3136. "__editorExtras__": {},
  3137. "node": {
  3138. "__id__": 118
  3139. },
  3140. "_enabled": true,
  3141. "__prefab": {
  3142. "__id__": 120
  3143. },
  3144. "_materials": [
  3145. {
  3146. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  3147. "__expectedType__": "cc.Material"
  3148. }
  3149. ],
  3150. "_visFlags": 0,
  3151. "lightmapSettings": {
  3152. "__id__": 121
  3153. },
  3154. "_mesh": {
  3155. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  3156. "__expectedType__": "cc.Mesh"
  3157. },
  3158. "_shadowCastingMode": 0,
  3159. "_shadowReceivingMode": 1,
  3160. "_enableMorph": true,
  3161. "_id": "13CsS4InlNtrLuSu6urfv8"
  3162. },
  3163. {
  3164. "__type__": "cc.CompPrefabInfo",
  3165. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  3166. },
  3167. {
  3168. "__type__": "cc.ModelLightmapSettings",
  3169. "texture": null,
  3170. "uvParam": {
  3171. "__type__": "cc.Vec4",
  3172. "x": 0,
  3173. "y": 0,
  3174. "z": 0,
  3175. "w": 0
  3176. },
  3177. "_bakeable": false,
  3178. "_castShadow": false,
  3179. "_receiveShadow": false,
  3180. "_recieveShadow": false,
  3181. "_lightmapSize": 64
  3182. },
  3183. {
  3184. "__type__": "cc.Node",
  3185. "_name": "10",
  3186. "_objFlags": 0,
  3187. "_parent": {
  3188. "__id__": 85
  3189. },
  3190. "_children": [],
  3191. "_active": true,
  3192. "_components": [
  3193. {
  3194. "__id__": 123
  3195. }
  3196. ],
  3197. "_prefab": null,
  3198. "_lpos": {
  3199. "__type__": "cc.Vec3",
  3200. "x": 0,
  3201. "y": -0.828,
  3202. "z": -7.696
  3203. },
  3204. "_lrot": {
  3205. "__type__": "cc.Quat",
  3206. "x": 0.7071067811865475,
  3207. "y": 0,
  3208. "z": 0,
  3209. "w": 0.7071067811865476
  3210. },
  3211. "_lscale": {
  3212. "__type__": "cc.Vec3",
  3213. "x": 0.13,
  3214. "y": 0.13,
  3215. "z": 0.13
  3216. },
  3217. "_layer": 1073741824,
  3218. "_euler": {
  3219. "__type__": "cc.Vec3",
  3220. "x": 90,
  3221. "y": 0,
  3222. "z": 0
  3223. },
  3224. "_id": "32YfNw+u9NFq3qVj5mea06"
  3225. },
  3226. {
  3227. "__type__": "cc.MeshRenderer",
  3228. "_name": "Plane<ModelComponent>",
  3229. "_objFlags": 0,
  3230. "__editorExtras__": {},
  3231. "node": {
  3232. "__id__": 122
  3233. },
  3234. "_enabled": true,
  3235. "__prefab": {
  3236. "__id__": 124
  3237. },
  3238. "_materials": [
  3239. {
  3240. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  3241. "__expectedType__": "cc.Material"
  3242. }
  3243. ],
  3244. "_visFlags": 0,
  3245. "lightmapSettings": {
  3246. "__id__": 125
  3247. },
  3248. "_mesh": {
  3249. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  3250. "__expectedType__": "cc.Mesh"
  3251. },
  3252. "_shadowCastingMode": 0,
  3253. "_shadowReceivingMode": 1,
  3254. "_enableMorph": true,
  3255. "_id": "36QlYfChdKLIMcEhWZKy7G"
  3256. },
  3257. {
  3258. "__type__": "cc.CompPrefabInfo",
  3259. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  3260. },
  3261. {
  3262. "__type__": "cc.ModelLightmapSettings",
  3263. "texture": null,
  3264. "uvParam": {
  3265. "__type__": "cc.Vec4",
  3266. "x": 0,
  3267. "y": 0,
  3268. "z": 0,
  3269. "w": 0
  3270. },
  3271. "_bakeable": false,
  3272. "_castShadow": false,
  3273. "_receiveShadow": false,
  3274. "_recieveShadow": false,
  3275. "_lightmapSize": 64
  3276. },
  3277. {
  3278. "__type__": "cc.Animation",
  3279. "_name": "",
  3280. "_objFlags": 0,
  3281. "node": {
  3282. "__id__": 85
  3283. },
  3284. "_enabled": true,
  3285. "__prefab": {
  3286. "__id__": 127
  3287. },
  3288. "playOnLoad": false,
  3289. "_clips": [
  3290. {
  3291. "__uuid__": "1da7d83c-b144-4e79-a571-1d016d2a7841",
  3292. "__expectedType__": "cc.AnimationClip"
  3293. },
  3294. {
  3295. "__uuid__": "6db04a50-2bfa-4ba7-80e5-4bd7c458a18a",
  3296. "__expectedType__": "cc.AnimationClip"
  3297. }
  3298. ],
  3299. "_defaultClip": {
  3300. "__uuid__": "1da7d83c-b144-4e79-a571-1d016d2a7841",
  3301. "__expectedType__": "cc.AnimationClip"
  3302. },
  3303. "_id": "68jZb2wnZDAIlCxKivtuen"
  3304. },
  3305. {
  3306. "__type__": "cc.CompPrefabInfo",
  3307. "fileId": "96hPn+YLdN5Jbu/CvjwQn/"
  3308. },
  3309. {
  3310. "__type__": "cc.Node",
  3311. "_name": "machineLightR",
  3312. "_objFlags": 0,
  3313. "_parent": {
  3314. "__id__": 73
  3315. },
  3316. "_children": [
  3317. {
  3318. "__id__": 129
  3319. },
  3320. {
  3321. "__id__": 133
  3322. },
  3323. {
  3324. "__id__": 137
  3325. },
  3326. {
  3327. "__id__": 141
  3328. },
  3329. {
  3330. "__id__": 145
  3331. },
  3332. {
  3333. "__id__": 149
  3334. },
  3335. {
  3336. "__id__": 153
  3337. },
  3338. {
  3339. "__id__": 157
  3340. },
  3341. {
  3342. "__id__": 161
  3343. },
  3344. {
  3345. "__id__": 165
  3346. }
  3347. ],
  3348. "_active": true,
  3349. "_components": [
  3350. {
  3351. "__id__": 169
  3352. }
  3353. ],
  3354. "_prefab": null,
  3355. "_lpos": {
  3356. "__type__": "cc.Vec3",
  3357. "x": 4.102,
  3358. "y": 0,
  3359. "z": 0
  3360. },
  3361. "_lrot": {
  3362. "__type__": "cc.Quat",
  3363. "x": 0,
  3364. "y": 0,
  3365. "z": 0,
  3366. "w": 1
  3367. },
  3368. "_lscale": {
  3369. "__type__": "cc.Vec3",
  3370. "x": 1,
  3371. "y": 1,
  3372. "z": 1
  3373. },
  3374. "_layer": 1073741824,
  3375. "_euler": {
  3376. "__type__": "cc.Vec3",
  3377. "x": 0,
  3378. "y": 0,
  3379. "z": 0
  3380. },
  3381. "_id": "55c75nU6VKNKFU2/FkL0c+"
  3382. },
  3383. {
  3384. "__type__": "cc.Node",
  3385. "_name": "1",
  3386. "_objFlags": 0,
  3387. "_parent": {
  3388. "__id__": 128
  3389. },
  3390. "_children": [],
  3391. "_active": true,
  3392. "_components": [
  3393. {
  3394. "__id__": 130
  3395. }
  3396. ],
  3397. "_prefab": null,
  3398. "_lpos": {
  3399. "__type__": "cc.Vec3",
  3400. "x": 0,
  3401. "y": 9.117,
  3402. "z": -8.71
  3403. },
  3404. "_lrot": {
  3405. "__type__": "cc.Quat",
  3406. "x": 0.6623912618042958,
  3407. "y": 0,
  3408. "z": 0,
  3409. "w": 0.7491580716279529
  3410. },
  3411. "_lscale": {
  3412. "__type__": "cc.Vec3",
  3413. "x": 0.13,
  3414. "y": 0.13,
  3415. "z": 0.13
  3416. },
  3417. "_layer": 1073741824,
  3418. "_euler": {
  3419. "__type__": "cc.Vec3",
  3420. "x": 82.965,
  3421. "y": 0,
  3422. "z": 0
  3423. },
  3424. "_id": "29mjww1nRP9bLjthQgcBuM"
  3425. },
  3426. {
  3427. "__type__": "cc.MeshRenderer",
  3428. "_name": "Plane<ModelComponent>",
  3429. "_objFlags": 0,
  3430. "__editorExtras__": {},
  3431. "node": {
  3432. "__id__": 129
  3433. },
  3434. "_enabled": true,
  3435. "__prefab": {
  3436. "__id__": 131
  3437. },
  3438. "_materials": [
  3439. {
  3440. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  3441. "__expectedType__": "cc.Material"
  3442. }
  3443. ],
  3444. "_visFlags": 0,
  3445. "lightmapSettings": {
  3446. "__id__": 132
  3447. },
  3448. "_mesh": {
  3449. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  3450. "__expectedType__": "cc.Mesh"
  3451. },
  3452. "_shadowCastingMode": 0,
  3453. "_shadowReceivingMode": 1,
  3454. "_enableMorph": true,
  3455. "_id": "12FfdHuwtFZ7jWPruuV/B3"
  3456. },
  3457. {
  3458. "__type__": "cc.CompPrefabInfo",
  3459. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  3460. },
  3461. {
  3462. "__type__": "cc.ModelLightmapSettings",
  3463. "texture": null,
  3464. "uvParam": {
  3465. "__type__": "cc.Vec4",
  3466. "x": 0,
  3467. "y": 0,
  3468. "z": 0,
  3469. "w": 0
  3470. },
  3471. "_bakeable": false,
  3472. "_castShadow": false,
  3473. "_receiveShadow": false,
  3474. "_recieveShadow": false,
  3475. "_lightmapSize": 64
  3476. },
  3477. {
  3478. "__type__": "cc.Node",
  3479. "_name": "2",
  3480. "_objFlags": 0,
  3481. "_parent": {
  3482. "__id__": 128
  3483. },
  3484. "_children": [],
  3485. "_active": true,
  3486. "_components": [
  3487. {
  3488. "__id__": 134
  3489. }
  3490. ],
  3491. "_prefab": null,
  3492. "_lpos": {
  3493. "__type__": "cc.Vec3",
  3494. "x": 0,
  3495. "y": 8.016,
  3496. "z": -8.574
  3497. },
  3498. "_lrot": {
  3499. "__type__": "cc.Quat",
  3500. "x": 0.6623912618042958,
  3501. "y": 0,
  3502. "z": 0,
  3503. "w": 0.7491580716279529
  3504. },
  3505. "_lscale": {
  3506. "__type__": "cc.Vec3",
  3507. "x": 0.13,
  3508. "y": 0.13,
  3509. "z": 0.13
  3510. },
  3511. "_layer": 1073741824,
  3512. "_euler": {
  3513. "__type__": "cc.Vec3",
  3514. "x": 82.965,
  3515. "y": 0,
  3516. "z": 0
  3517. },
  3518. "_id": "81mkwnnb9FPYn3BFrdWFUs"
  3519. },
  3520. {
  3521. "__type__": "cc.MeshRenderer",
  3522. "_name": "Plane<ModelComponent>",
  3523. "_objFlags": 0,
  3524. "__editorExtras__": {},
  3525. "node": {
  3526. "__id__": 133
  3527. },
  3528. "_enabled": true,
  3529. "__prefab": {
  3530. "__id__": 135
  3531. },
  3532. "_materials": [
  3533. {
  3534. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  3535. "__expectedType__": "cc.Material"
  3536. }
  3537. ],
  3538. "_visFlags": 0,
  3539. "lightmapSettings": {
  3540. "__id__": 136
  3541. },
  3542. "_mesh": {
  3543. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  3544. "__expectedType__": "cc.Mesh"
  3545. },
  3546. "_shadowCastingMode": 0,
  3547. "_shadowReceivingMode": 1,
  3548. "_enableMorph": true,
  3549. "_id": "65Udd2SC9NrrvSVfw6ZllC"
  3550. },
  3551. {
  3552. "__type__": "cc.CompPrefabInfo",
  3553. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  3554. },
  3555. {
  3556. "__type__": "cc.ModelLightmapSettings",
  3557. "texture": null,
  3558. "uvParam": {
  3559. "__type__": "cc.Vec4",
  3560. "x": 0,
  3561. "y": 0,
  3562. "z": 0,
  3563. "w": 0
  3564. },
  3565. "_bakeable": false,
  3566. "_castShadow": false,
  3567. "_receiveShadow": false,
  3568. "_recieveShadow": false,
  3569. "_lightmapSize": 64
  3570. },
  3571. {
  3572. "__type__": "cc.Node",
  3573. "_name": "3",
  3574. "_objFlags": 0,
  3575. "_parent": {
  3576. "__id__": 128
  3577. },
  3578. "_children": [],
  3579. "_active": true,
  3580. "_components": [
  3581. {
  3582. "__id__": 138
  3583. }
  3584. ],
  3585. "_prefab": null,
  3586. "_lpos": {
  3587. "__type__": "cc.Vec3",
  3588. "x": -0.132,
  3589. "y": 7.225,
  3590. "z": -8.766
  3591. },
  3592. "_lrot": {
  3593. "__type__": "cc.Quat",
  3594. "x": 0.7692490275698787,
  3595. "y": 0,
  3596. "z": 0,
  3597. "w": 0.6389490852820716
  3598. },
  3599. "_lscale": {
  3600. "__type__": "cc.Vec3",
  3601. "x": 0.1,
  3602. "y": 0.13,
  3603. "z": 0.08
  3604. },
  3605. "_layer": 1073741824,
  3606. "_euler": {
  3607. "__type__": "cc.Vec3",
  3608. "x": 100.573,
  3609. "y": 0,
  3610. "z": 0
  3611. },
  3612. "_id": "1aVTdd23VEhJbfPzBOBsV0"
  3613. },
  3614. {
  3615. "__type__": "cc.MeshRenderer",
  3616. "_name": "Plane<ModelComponent>",
  3617. "_objFlags": 0,
  3618. "__editorExtras__": {},
  3619. "node": {
  3620. "__id__": 137
  3621. },
  3622. "_enabled": true,
  3623. "__prefab": {
  3624. "__id__": 139
  3625. },
  3626. "_materials": [
  3627. {
  3628. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  3629. "__expectedType__": "cc.Material"
  3630. }
  3631. ],
  3632. "_visFlags": 0,
  3633. "lightmapSettings": {
  3634. "__id__": 140
  3635. },
  3636. "_mesh": {
  3637. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  3638. "__expectedType__": "cc.Mesh"
  3639. },
  3640. "_shadowCastingMode": 0,
  3641. "_shadowReceivingMode": 1,
  3642. "_enableMorph": true,
  3643. "_id": "31Fa1KpJZAbLdR1wzCs2JQ"
  3644. },
  3645. {
  3646. "__type__": "cc.CompPrefabInfo",
  3647. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  3648. },
  3649. {
  3650. "__type__": "cc.ModelLightmapSettings",
  3651. "texture": null,
  3652. "uvParam": {
  3653. "__type__": "cc.Vec4",
  3654. "x": 0,
  3655. "y": 0,
  3656. "z": 0,
  3657. "w": 0
  3658. },
  3659. "_bakeable": false,
  3660. "_castShadow": false,
  3661. "_receiveShadow": false,
  3662. "_recieveShadow": false,
  3663. "_lightmapSize": 64
  3664. },
  3665. {
  3666. "__type__": "cc.Node",
  3667. "_name": "4",
  3668. "_objFlags": 0,
  3669. "_parent": {
  3670. "__id__": 128
  3671. },
  3672. "_children": [],
  3673. "_active": true,
  3674. "_components": [
  3675. {
  3676. "__id__": 142
  3677. }
  3678. ],
  3679. "_prefab": null,
  3680. "_lpos": {
  3681. "__type__": "cc.Vec3",
  3682. "x": 0,
  3683. "y": 6.136,
  3684. "z": -10.77
  3685. },
  3686. "_lrot": {
  3687. "__type__": "cc.Quat",
  3688. "x": 0.8230669871905272,
  3689. "y": 0,
  3690. "z": 0,
  3691. "w": 0.5679443058937281
  3692. },
  3693. "_lscale": {
  3694. "__type__": "cc.Vec3",
  3695. "x": 0.13,
  3696. "y": 0.13,
  3697. "z": 0.12
  3698. },
  3699. "_layer": 1073741824,
  3700. "_euler": {
  3701. "__type__": "cc.Vec3",
  3702. "x": 110.786,
  3703. "y": 0,
  3704. "z": 0
  3705. },
  3706. "_id": "ebQmj/965DNpmZMKHW+FX6"
  3707. },
  3708. {
  3709. "__type__": "cc.MeshRenderer",
  3710. "_name": "Plane<ModelComponent>",
  3711. "_objFlags": 0,
  3712. "__editorExtras__": {},
  3713. "node": {
  3714. "__id__": 141
  3715. },
  3716. "_enabled": true,
  3717. "__prefab": {
  3718. "__id__": 143
  3719. },
  3720. "_materials": [
  3721. {
  3722. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  3723. "__expectedType__": "cc.Material"
  3724. }
  3725. ],
  3726. "_visFlags": 0,
  3727. "lightmapSettings": {
  3728. "__id__": 144
  3729. },
  3730. "_mesh": {
  3731. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  3732. "__expectedType__": "cc.Mesh"
  3733. },
  3734. "_shadowCastingMode": 0,
  3735. "_shadowReceivingMode": 1,
  3736. "_enableMorph": true,
  3737. "_id": "175tp+o4ND0Ykuz60f6bWe"
  3738. },
  3739. {
  3740. "__type__": "cc.CompPrefabInfo",
  3741. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  3742. },
  3743. {
  3744. "__type__": "cc.ModelLightmapSettings",
  3745. "texture": null,
  3746. "uvParam": {
  3747. "__type__": "cc.Vec4",
  3748. "x": 0,
  3749. "y": 0,
  3750. "z": 0,
  3751. "w": 0
  3752. },
  3753. "_bakeable": false,
  3754. "_castShadow": false,
  3755. "_receiveShadow": false,
  3756. "_recieveShadow": false,
  3757. "_lightmapSize": 64
  3758. },
  3759. {
  3760. "__type__": "cc.Node",
  3761. "_name": "5",
  3762. "_objFlags": 0,
  3763. "_parent": {
  3764. "__id__": 128
  3765. },
  3766. "_children": [],
  3767. "_active": true,
  3768. "_components": [
  3769. {
  3770. "__id__": 146
  3771. }
  3772. ],
  3773. "_prefab": null,
  3774. "_lpos": {
  3775. "__type__": "cc.Vec3",
  3776. "x": 0,
  3777. "y": 4.804,
  3778. "z": -10.872
  3779. },
  3780. "_lrot": {
  3781. "__type__": "cc.Quat",
  3782. "x": 0.6653345985263338,
  3783. "y": 0,
  3784. "z": 0,
  3785. "w": 0.7465452913278618
  3786. },
  3787. "_lscale": {
  3788. "__type__": "cc.Vec3",
  3789. "x": 0.13,
  3790. "y": 0.13,
  3791. "z": 0.13
  3792. },
  3793. "_layer": 1073741824,
  3794. "_euler": {
  3795. "__type__": "cc.Vec3",
  3796. "x": 83.416,
  3797. "y": 0,
  3798. "z": 0
  3799. },
  3800. "_id": "68oRzmqnVCC5lT5LcF4Gsf"
  3801. },
  3802. {
  3803. "__type__": "cc.MeshRenderer",
  3804. "_name": "Plane<ModelComponent>",
  3805. "_objFlags": 0,
  3806. "__editorExtras__": {},
  3807. "node": {
  3808. "__id__": 145
  3809. },
  3810. "_enabled": true,
  3811. "__prefab": {
  3812. "__id__": 147
  3813. },
  3814. "_materials": [
  3815. {
  3816. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  3817. "__expectedType__": "cc.Material"
  3818. }
  3819. ],
  3820. "_visFlags": 0,
  3821. "lightmapSettings": {
  3822. "__id__": 148
  3823. },
  3824. "_mesh": {
  3825. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  3826. "__expectedType__": "cc.Mesh"
  3827. },
  3828. "_shadowCastingMode": 0,
  3829. "_shadowReceivingMode": 1,
  3830. "_enableMorph": true,
  3831. "_id": "0c6llb3klE/JRi6DRRbYwa"
  3832. },
  3833. {
  3834. "__type__": "cc.CompPrefabInfo",
  3835. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  3836. },
  3837. {
  3838. "__type__": "cc.ModelLightmapSettings",
  3839. "texture": null,
  3840. "uvParam": {
  3841. "__type__": "cc.Vec4",
  3842. "x": 0,
  3843. "y": 0,
  3844. "z": 0,
  3845. "w": 0
  3846. },
  3847. "_bakeable": false,
  3848. "_castShadow": false,
  3849. "_receiveShadow": false,
  3850. "_recieveShadow": false,
  3851. "_lightmapSize": 64
  3852. },
  3853. {
  3854. "__type__": "cc.Node",
  3855. "_name": "6",
  3856. "_objFlags": 0,
  3857. "_parent": {
  3858. "__id__": 128
  3859. },
  3860. "_children": [],
  3861. "_active": true,
  3862. "_components": [
  3863. {
  3864. "__id__": 150
  3865. }
  3866. ],
  3867. "_prefab": null,
  3868. "_lpos": {
  3869. "__type__": "cc.Vec3",
  3870. "x": 0,
  3871. "y": 3.062,
  3872. "z": -10.671
  3873. },
  3874. "_lrot": {
  3875. "__type__": "cc.Quat",
  3876. "x": 0.6653345985263338,
  3877. "y": 0,
  3878. "z": 0,
  3879. "w": 0.7465452913278618
  3880. },
  3881. "_lscale": {
  3882. "__type__": "cc.Vec3",
  3883. "x": 0.13,
  3884. "y": 0.13,
  3885. "z": 0.13
  3886. },
  3887. "_layer": 1073741824,
  3888. "_euler": {
  3889. "__type__": "cc.Vec3",
  3890. "x": 83.416,
  3891. "y": 0,
  3892. "z": 0
  3893. },
  3894. "_id": "f6Bks+lcdF7okJtIg+svq6"
  3895. },
  3896. {
  3897. "__type__": "cc.MeshRenderer",
  3898. "_name": "Plane<ModelComponent>",
  3899. "_objFlags": 0,
  3900. "__editorExtras__": {},
  3901. "node": {
  3902. "__id__": 149
  3903. },
  3904. "_enabled": true,
  3905. "__prefab": {
  3906. "__id__": 151
  3907. },
  3908. "_materials": [
  3909. {
  3910. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  3911. "__expectedType__": "cc.Material"
  3912. }
  3913. ],
  3914. "_visFlags": 0,
  3915. "lightmapSettings": {
  3916. "__id__": 152
  3917. },
  3918. "_mesh": {
  3919. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  3920. "__expectedType__": "cc.Mesh"
  3921. },
  3922. "_shadowCastingMode": 0,
  3923. "_shadowReceivingMode": 1,
  3924. "_enableMorph": true,
  3925. "_id": "b91f8T1Y1Mp6LVn3T95A2I"
  3926. },
  3927. {
  3928. "__type__": "cc.CompPrefabInfo",
  3929. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  3930. },
  3931. {
  3932. "__type__": "cc.ModelLightmapSettings",
  3933. "texture": null,
  3934. "uvParam": {
  3935. "__type__": "cc.Vec4",
  3936. "x": 0,
  3937. "y": 0,
  3938. "z": 0,
  3939. "w": 0
  3940. },
  3941. "_bakeable": false,
  3942. "_castShadow": false,
  3943. "_receiveShadow": false,
  3944. "_recieveShadow": false,
  3945. "_lightmapSize": 64
  3946. },
  3947. {
  3948. "__type__": "cc.Node",
  3949. "_name": "7",
  3950. "_objFlags": 0,
  3951. "_parent": {
  3952. "__id__": 128
  3953. },
  3954. "_children": [],
  3955. "_active": true,
  3956. "_components": [
  3957. {
  3958. "__id__": 154
  3959. }
  3960. ],
  3961. "_prefab": null,
  3962. "_lpos": {
  3963. "__type__": "cc.Vec3",
  3964. "x": 0,
  3965. "y": 2.075,
  3966. "z": -9.796
  3967. },
  3968. "_lrot": {
  3969. "__type__": "cc.Quat",
  3970. "x": 0.28536219612321606,
  3971. "y": 0,
  3972. "z": 0,
  3973. "w": 0.9584197499132283
  3974. },
  3975. "_lscale": {
  3976. "__type__": "cc.Vec3",
  3977. "x": 0.13,
  3978. "y": 0.13,
  3979. "z": 0.11
  3980. },
  3981. "_layer": 1073741824,
  3982. "_euler": {
  3983. "__type__": "cc.Vec3",
  3984. "x": 33.161,
  3985. "y": 0,
  3986. "z": 0
  3987. },
  3988. "_id": "31x4UE2KNLm4n/+66LKjDF"
  3989. },
  3990. {
  3991. "__type__": "cc.MeshRenderer",
  3992. "_name": "Plane<ModelComponent>",
  3993. "_objFlags": 0,
  3994. "__editorExtras__": {},
  3995. "node": {
  3996. "__id__": 153
  3997. },
  3998. "_enabled": true,
  3999. "__prefab": {
  4000. "__id__": 155
  4001. },
  4002. "_materials": [
  4003. {
  4004. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  4005. "__expectedType__": "cc.Material"
  4006. }
  4007. ],
  4008. "_visFlags": 0,
  4009. "lightmapSettings": {
  4010. "__id__": 156
  4011. },
  4012. "_mesh": {
  4013. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  4014. "__expectedType__": "cc.Mesh"
  4015. },
  4016. "_shadowCastingMode": 0,
  4017. "_shadowReceivingMode": 1,
  4018. "_enableMorph": true,
  4019. "_id": "2dRhkQr4pJZJ34hQwmV1Wq"
  4020. },
  4021. {
  4022. "__type__": "cc.CompPrefabInfo",
  4023. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  4024. },
  4025. {
  4026. "__type__": "cc.ModelLightmapSettings",
  4027. "texture": null,
  4028. "uvParam": {
  4029. "__type__": "cc.Vec4",
  4030. "x": 0,
  4031. "y": 0,
  4032. "z": 0,
  4033. "w": 0
  4034. },
  4035. "_bakeable": false,
  4036. "_castShadow": false,
  4037. "_receiveShadow": false,
  4038. "_recieveShadow": false,
  4039. "_lightmapSize": 64
  4040. },
  4041. {
  4042. "__type__": "cc.Node",
  4043. "_name": "8",
  4044. "_objFlags": 0,
  4045. "_parent": {
  4046. "__id__": 128
  4047. },
  4048. "_children": [],
  4049. "_active": true,
  4050. "_components": [
  4051. {
  4052. "__id__": 158
  4053. }
  4054. ],
  4055. "_prefab": null,
  4056. "_lpos": {
  4057. "__type__": "cc.Vec3",
  4058. "x": 0,
  4059. "y": 1.713,
  4060. "z": -8.435
  4061. },
  4062. "_lrot": {
  4063. "__type__": "cc.Quat",
  4064. "x": 0.2643023087383513,
  4065. "y": 0,
  4066. "z": 0,
  4067. "w": 0.9644398838681327
  4068. },
  4069. "_lscale": {
  4070. "__type__": "cc.Vec3",
  4071. "x": 0.13,
  4072. "y": 0.13,
  4073. "z": 0.13
  4074. },
  4075. "_layer": 1073741824,
  4076. "_euler": {
  4077. "__type__": "cc.Vec3",
  4078. "x": 30.651,
  4079. "y": 0,
  4080. "z": 0
  4081. },
  4082. "_id": "b3Zx5RIgFJL7fOKToUwJIq"
  4083. },
  4084. {
  4085. "__type__": "cc.MeshRenderer",
  4086. "_name": "Plane<ModelComponent>",
  4087. "_objFlags": 0,
  4088. "__editorExtras__": {},
  4089. "node": {
  4090. "__id__": 157
  4091. },
  4092. "_enabled": true,
  4093. "__prefab": {
  4094. "__id__": 159
  4095. },
  4096. "_materials": [
  4097. {
  4098. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  4099. "__expectedType__": "cc.Material"
  4100. }
  4101. ],
  4102. "_visFlags": 0,
  4103. "lightmapSettings": {
  4104. "__id__": 160
  4105. },
  4106. "_mesh": {
  4107. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  4108. "__expectedType__": "cc.Mesh"
  4109. },
  4110. "_shadowCastingMode": 0,
  4111. "_shadowReceivingMode": 1,
  4112. "_enableMorph": true,
  4113. "_id": "dc430LiwNCNqk/QM0+2aaq"
  4114. },
  4115. {
  4116. "__type__": "cc.CompPrefabInfo",
  4117. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  4118. },
  4119. {
  4120. "__type__": "cc.ModelLightmapSettings",
  4121. "texture": null,
  4122. "uvParam": {
  4123. "__type__": "cc.Vec4",
  4124. "x": 0,
  4125. "y": 0,
  4126. "z": 0,
  4127. "w": 0
  4128. },
  4129. "_bakeable": false,
  4130. "_castShadow": false,
  4131. "_receiveShadow": false,
  4132. "_recieveShadow": false,
  4133. "_lightmapSize": 64
  4134. },
  4135. {
  4136. "__type__": "cc.Node",
  4137. "_name": "9",
  4138. "_objFlags": 0,
  4139. "_parent": {
  4140. "__id__": 128
  4141. },
  4142. "_children": [],
  4143. "_active": true,
  4144. "_components": [
  4145. {
  4146. "__id__": 162
  4147. }
  4148. ],
  4149. "_prefab": null,
  4150. "_lpos": {
  4151. "__type__": "cc.Vec3",
  4152. "x": 0,
  4153. "y": 0.467,
  4154. "z": -7.696
  4155. },
  4156. "_lrot": {
  4157. "__type__": "cc.Quat",
  4158. "x": 0.7071067811865475,
  4159. "y": 0,
  4160. "z": 0,
  4161. "w": 0.7071067811865476
  4162. },
  4163. "_lscale": {
  4164. "__type__": "cc.Vec3",
  4165. "x": 0.13,
  4166. "y": 0.13,
  4167. "z": 0.13
  4168. },
  4169. "_layer": 1073741824,
  4170. "_euler": {
  4171. "__type__": "cc.Vec3",
  4172. "x": 90,
  4173. "y": 0,
  4174. "z": 0
  4175. },
  4176. "_id": "97KrT6O7JBAKSOHjG4hl/H"
  4177. },
  4178. {
  4179. "__type__": "cc.MeshRenderer",
  4180. "_name": "Plane<ModelComponent>",
  4181. "_objFlags": 0,
  4182. "__editorExtras__": {},
  4183. "node": {
  4184. "__id__": 161
  4185. },
  4186. "_enabled": true,
  4187. "__prefab": {
  4188. "__id__": 163
  4189. },
  4190. "_materials": [
  4191. {
  4192. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  4193. "__expectedType__": "cc.Material"
  4194. }
  4195. ],
  4196. "_visFlags": 0,
  4197. "lightmapSettings": {
  4198. "__id__": 164
  4199. },
  4200. "_mesh": {
  4201. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  4202. "__expectedType__": "cc.Mesh"
  4203. },
  4204. "_shadowCastingMode": 0,
  4205. "_shadowReceivingMode": 1,
  4206. "_enableMorph": true,
  4207. "_id": "17cq5ZPytMi6ZCwKurQs3j"
  4208. },
  4209. {
  4210. "__type__": "cc.CompPrefabInfo",
  4211. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  4212. },
  4213. {
  4214. "__type__": "cc.ModelLightmapSettings",
  4215. "texture": null,
  4216. "uvParam": {
  4217. "__type__": "cc.Vec4",
  4218. "x": 0,
  4219. "y": 0,
  4220. "z": 0,
  4221. "w": 0
  4222. },
  4223. "_bakeable": false,
  4224. "_castShadow": false,
  4225. "_receiveShadow": false,
  4226. "_recieveShadow": false,
  4227. "_lightmapSize": 64
  4228. },
  4229. {
  4230. "__type__": "cc.Node",
  4231. "_name": "10",
  4232. "_objFlags": 0,
  4233. "_parent": {
  4234. "__id__": 128
  4235. },
  4236. "_children": [],
  4237. "_active": true,
  4238. "_components": [
  4239. {
  4240. "__id__": 166
  4241. }
  4242. ],
  4243. "_prefab": null,
  4244. "_lpos": {
  4245. "__type__": "cc.Vec3",
  4246. "x": 0,
  4247. "y": -0.828,
  4248. "z": -7.696
  4249. },
  4250. "_lrot": {
  4251. "__type__": "cc.Quat",
  4252. "x": 0.7071067811865475,
  4253. "y": 0,
  4254. "z": 0,
  4255. "w": 0.7071067811865476
  4256. },
  4257. "_lscale": {
  4258. "__type__": "cc.Vec3",
  4259. "x": 0.13,
  4260. "y": 0.13,
  4261. "z": 0.13
  4262. },
  4263. "_layer": 1073741824,
  4264. "_euler": {
  4265. "__type__": "cc.Vec3",
  4266. "x": 90,
  4267. "y": 0,
  4268. "z": 0
  4269. },
  4270. "_id": "7dwZV6tPhOzb9FeYrXFE0t"
  4271. },
  4272. {
  4273. "__type__": "cc.MeshRenderer",
  4274. "_name": "Plane<ModelComponent>",
  4275. "_objFlags": 0,
  4276. "__editorExtras__": {},
  4277. "node": {
  4278. "__id__": 165
  4279. },
  4280. "_enabled": true,
  4281. "__prefab": {
  4282. "__id__": 167
  4283. },
  4284. "_materials": [
  4285. {
  4286. "__uuid__": "d7310770-ef4c-4f5d-a80c-7594914832db",
  4287. "__expectedType__": "cc.Material"
  4288. }
  4289. ],
  4290. "_visFlags": 0,
  4291. "lightmapSettings": {
  4292. "__id__": 168
  4293. },
  4294. "_mesh": {
  4295. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  4296. "__expectedType__": "cc.Mesh"
  4297. },
  4298. "_shadowCastingMode": 0,
  4299. "_shadowReceivingMode": 1,
  4300. "_enableMorph": true,
  4301. "_id": "13tSKyKBJCkIbetC7yzbCC"
  4302. },
  4303. {
  4304. "__type__": "cc.CompPrefabInfo",
  4305. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  4306. },
  4307. {
  4308. "__type__": "cc.ModelLightmapSettings",
  4309. "texture": null,
  4310. "uvParam": {
  4311. "__type__": "cc.Vec4",
  4312. "x": 0,
  4313. "y": 0,
  4314. "z": 0,
  4315. "w": 0
  4316. },
  4317. "_bakeable": false,
  4318. "_castShadow": false,
  4319. "_receiveShadow": false,
  4320. "_recieveShadow": false,
  4321. "_lightmapSize": 64
  4322. },
  4323. {
  4324. "__type__": "cc.Animation",
  4325. "_name": "",
  4326. "_objFlags": 0,
  4327. "node": {
  4328. "__id__": 128
  4329. },
  4330. "_enabled": true,
  4331. "__prefab": {
  4332. "__id__": 170
  4333. },
  4334. "playOnLoad": false,
  4335. "_clips": [
  4336. {
  4337. "__uuid__": "1da7d83c-b144-4e79-a571-1d016d2a7841",
  4338. "__expectedType__": "cc.AnimationClip"
  4339. },
  4340. {
  4341. "__uuid__": "6db04a50-2bfa-4ba7-80e5-4bd7c458a18a",
  4342. "__expectedType__": "cc.AnimationClip"
  4343. }
  4344. ],
  4345. "_defaultClip": {
  4346. "__uuid__": "1da7d83c-b144-4e79-a571-1d016d2a7841",
  4347. "__expectedType__": "cc.AnimationClip"
  4348. },
  4349. "_id": "2fRX2Ty51AaoGZ5ss4xCv1"
  4350. },
  4351. {
  4352. "__type__": "cc.CompPrefabInfo",
  4353. "fileId": "81mahyQQtApqI7vrfSMokt"
  4354. },
  4355. {
  4356. "__type__": "cc.Node",
  4357. "_name": "machineClown1",
  4358. "_objFlags": 0,
  4359. "_parent": {
  4360. "__id__": 73
  4361. },
  4362. "_children": [
  4363. {
  4364. "__id__": 172
  4365. },
  4366. {
  4367. "__id__": 176
  4368. },
  4369. {
  4370. "__id__": 180
  4371. },
  4372. {
  4373. "__id__": 184
  4374. }
  4375. ],
  4376. "_active": true,
  4377. "_components": [
  4378. {
  4379. "__id__": 188
  4380. },
  4381. {
  4382. "__id__": 191
  4383. }
  4384. ],
  4385. "_prefab": null,
  4386. "_lpos": {
  4387. "__type__": "cc.Vec3",
  4388. "x": 0,
  4389. "y": 6.318,
  4390. "z": -11.383
  4391. },
  4392. "_lrot": {
  4393. "__type__": "cc.Quat",
  4394. "x": 0.6502903951234855,
  4395. "y": 0,
  4396. "z": 0,
  4397. "w": 0.7596857258170256
  4398. },
  4399. "_lscale": {
  4400. "__type__": "cc.Vec3",
  4401. "x": 0.27,
  4402. "y": 0.27,
  4403. "z": 0.27
  4404. },
  4405. "_layer": 1073741824,
  4406. "_euler": {
  4407. "__type__": "cc.Vec3",
  4408. "x": 81.127,
  4409. "y": 0,
  4410. "z": 0
  4411. },
  4412. "_id": "0d7ngBz69Ip4S+tmuRGtNO"
  4413. },
  4414. {
  4415. "__type__": "cc.Node",
  4416. "_name": "clown02L",
  4417. "_objFlags": 0,
  4418. "_parent": {
  4419. "__id__": 171
  4420. },
  4421. "_children": [],
  4422. "_active": true,
  4423. "_components": [
  4424. {
  4425. "__id__": 173
  4426. }
  4427. ],
  4428. "_prefab": null,
  4429. "_lpos": {
  4430. "__type__": "cc.Vec3",
  4431. "x": -0.8,
  4432. "y": 0,
  4433. "z": 0.9
  4434. },
  4435. "_lrot": {
  4436. "__type__": "cc.Quat",
  4437. "x": 0,
  4438. "y": 0,
  4439. "z": 0,
  4440. "w": 1
  4441. },
  4442. "_lscale": {
  4443. "__type__": "cc.Vec3",
  4444. "x": 0.07,
  4445. "y": 0.07,
  4446. "z": 0.07
  4447. },
  4448. "_layer": 1073741824,
  4449. "_euler": {
  4450. "__type__": "cc.Vec3",
  4451. "x": 0,
  4452. "y": 0,
  4453. "z": 0
  4454. },
  4455. "_id": "59s8a9tklJ/axc/+bvejBF"
  4456. },
  4457. {
  4458. "__type__": "cc.MeshRenderer",
  4459. "_name": "Plane<ModelComponent>",
  4460. "_objFlags": 0,
  4461. "__editorExtras__": {},
  4462. "node": {
  4463. "__id__": 172
  4464. },
  4465. "_enabled": true,
  4466. "__prefab": {
  4467. "__id__": 174
  4468. },
  4469. "_materials": [
  4470. {
  4471. "__uuid__": "6dbb2efc-c39e-4df4-aa09-01fe20faa92c",
  4472. "__expectedType__": "cc.Material"
  4473. }
  4474. ],
  4475. "_visFlags": 0,
  4476. "lightmapSettings": {
  4477. "__id__": 175
  4478. },
  4479. "_mesh": {
  4480. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  4481. "__expectedType__": "cc.Mesh"
  4482. },
  4483. "_shadowCastingMode": 0,
  4484. "_shadowReceivingMode": 1,
  4485. "_enableMorph": true,
  4486. "_id": "84NF+Qpv9IgInseNZt81rC"
  4487. },
  4488. {
  4489. "__type__": "cc.CompPrefabInfo",
  4490. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  4491. },
  4492. {
  4493. "__type__": "cc.ModelLightmapSettings",
  4494. "texture": null,
  4495. "uvParam": {
  4496. "__type__": "cc.Vec4",
  4497. "x": 0,
  4498. "y": 0,
  4499. "z": 0,
  4500. "w": 0
  4501. },
  4502. "_bakeable": false,
  4503. "_castShadow": false,
  4504. "_receiveShadow": false,
  4505. "_recieveShadow": false,
  4506. "_lightmapSize": 64
  4507. },
  4508. {
  4509. "__type__": "cc.Node",
  4510. "_name": "clown02R",
  4511. "_objFlags": 0,
  4512. "_parent": {
  4513. "__id__": 171
  4514. },
  4515. "_children": [],
  4516. "_active": true,
  4517. "_components": [
  4518. {
  4519. "__id__": 177
  4520. }
  4521. ],
  4522. "_prefab": null,
  4523. "_lpos": {
  4524. "__type__": "cc.Vec3",
  4525. "x": 0.8,
  4526. "y": 0,
  4527. "z": 0.9
  4528. },
  4529. "_lrot": {
  4530. "__type__": "cc.Quat",
  4531. "x": 0,
  4532. "y": 0,
  4533. "z": 0,
  4534. "w": 1
  4535. },
  4536. "_lscale": {
  4537. "__type__": "cc.Vec3",
  4538. "x": 0.07,
  4539. "y": 0.07,
  4540. "z": 0.07
  4541. },
  4542. "_layer": 1073741824,
  4543. "_euler": {
  4544. "__type__": "cc.Vec3",
  4545. "x": 0,
  4546. "y": 0,
  4547. "z": 0
  4548. },
  4549. "_id": "58TZZ8X1JJyZtS4JbIsqg2"
  4550. },
  4551. {
  4552. "__type__": "cc.MeshRenderer",
  4553. "_name": "Plane<ModelComponent>",
  4554. "_objFlags": 0,
  4555. "__editorExtras__": {},
  4556. "node": {
  4557. "__id__": 176
  4558. },
  4559. "_enabled": true,
  4560. "__prefab": {
  4561. "__id__": 178
  4562. },
  4563. "_materials": [
  4564. {
  4565. "__uuid__": "6dbb2efc-c39e-4df4-aa09-01fe20faa92c",
  4566. "__expectedType__": "cc.Material"
  4567. }
  4568. ],
  4569. "_visFlags": 0,
  4570. "lightmapSettings": {
  4571. "__id__": 179
  4572. },
  4573. "_mesh": {
  4574. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  4575. "__expectedType__": "cc.Mesh"
  4576. },
  4577. "_shadowCastingMode": 0,
  4578. "_shadowReceivingMode": 1,
  4579. "_enableMorph": true,
  4580. "_id": "e3d20GqPpKAYIoBAx26yvF"
  4581. },
  4582. {
  4583. "__type__": "cc.CompPrefabInfo",
  4584. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  4585. },
  4586. {
  4587. "__type__": "cc.ModelLightmapSettings",
  4588. "texture": null,
  4589. "uvParam": {
  4590. "__type__": "cc.Vec4",
  4591. "x": 0,
  4592. "y": 0,
  4593. "z": 0,
  4594. "w": 0
  4595. },
  4596. "_bakeable": false,
  4597. "_castShadow": false,
  4598. "_receiveShadow": false,
  4599. "_recieveShadow": false,
  4600. "_lightmapSize": 64
  4601. },
  4602. {
  4603. "__type__": "cc.Node",
  4604. "_name": "clown03",
  4605. "_objFlags": 0,
  4606. "_parent": {
  4607. "__id__": 171
  4608. },
  4609. "_children": [],
  4610. "_active": true,
  4611. "_components": [
  4612. {
  4613. "__id__": 181
  4614. }
  4615. ],
  4616. "_prefab": null,
  4617. "_lpos": {
  4618. "__type__": "cc.Vec3",
  4619. "x": -0.003,
  4620. "y": 0,
  4621. "z": 1.294
  4622. },
  4623. "_lrot": {
  4624. "__type__": "cc.Quat",
  4625. "x": 0,
  4626. "y": 0,
  4627. "z": 0,
  4628. "w": 1
  4629. },
  4630. "_lscale": {
  4631. "__type__": "cc.Vec3",
  4632. "x": 0.077,
  4633. "y": 0.077,
  4634. "z": 0.077
  4635. },
  4636. "_layer": 1073741824,
  4637. "_euler": {
  4638. "__type__": "cc.Vec3",
  4639. "x": 0,
  4640. "y": 0,
  4641. "z": 0
  4642. },
  4643. "_id": "00NycThl5LqaETTdAq9KS+"
  4644. },
  4645. {
  4646. "__type__": "cc.MeshRenderer",
  4647. "_name": "Plane<ModelComponent>",
  4648. "_objFlags": 0,
  4649. "__editorExtras__": {},
  4650. "node": {
  4651. "__id__": 180
  4652. },
  4653. "_enabled": true,
  4654. "__prefab": {
  4655. "__id__": 182
  4656. },
  4657. "_materials": [
  4658. {
  4659. "__uuid__": "d29af156-6c2c-495f-b30e-e3c05574e199",
  4660. "__expectedType__": "cc.Material"
  4661. }
  4662. ],
  4663. "_visFlags": 0,
  4664. "lightmapSettings": {
  4665. "__id__": 183
  4666. },
  4667. "_mesh": {
  4668. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  4669. "__expectedType__": "cc.Mesh"
  4670. },
  4671. "_shadowCastingMode": 0,
  4672. "_shadowReceivingMode": 1,
  4673. "_enableMorph": true,
  4674. "_id": "4eV4p/NoBIE5ZseCKrDXyG"
  4675. },
  4676. {
  4677. "__type__": "cc.CompPrefabInfo",
  4678. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  4679. },
  4680. {
  4681. "__type__": "cc.ModelLightmapSettings",
  4682. "texture": null,
  4683. "uvParam": {
  4684. "__type__": "cc.Vec4",
  4685. "x": 0,
  4686. "y": 0,
  4687. "z": 0,
  4688. "w": 0
  4689. },
  4690. "_bakeable": false,
  4691. "_castShadow": false,
  4692. "_receiveShadow": false,
  4693. "_recieveShadow": false,
  4694. "_lightmapSize": 64
  4695. },
  4696. {
  4697. "__type__": "cc.Node",
  4698. "_name": "clown04",
  4699. "_objFlags": 0,
  4700. "_parent": {
  4701. "__id__": 171
  4702. },
  4703. "_children": [],
  4704. "_active": true,
  4705. "_components": [
  4706. {
  4707. "__id__": 185
  4708. }
  4709. ],
  4710. "_prefab": null,
  4711. "_lpos": {
  4712. "__type__": "cc.Vec3",
  4713. "x": -0.003,
  4714. "y": 0,
  4715. "z": 2.001
  4716. },
  4717. "_lrot": {
  4718. "__type__": "cc.Quat",
  4719. "x": 0,
  4720. "y": 0,
  4721. "z": 0,
  4722. "w": 1
  4723. },
  4724. "_lscale": {
  4725. "__type__": "cc.Vec3",
  4726. "x": 0.223,
  4727. "y": 0.108,
  4728. "z": 0.126
  4729. },
  4730. "_layer": 1073741824,
  4731. "_euler": {
  4732. "__type__": "cc.Vec3",
  4733. "x": 0,
  4734. "y": 0,
  4735. "z": 0
  4736. },
  4737. "_id": "23/ILFvLlOlJTO/bbOXXRb"
  4738. },
  4739. {
  4740. "__type__": "cc.MeshRenderer",
  4741. "_name": "Plane<ModelComponent>",
  4742. "_objFlags": 0,
  4743. "__editorExtras__": {},
  4744. "node": {
  4745. "__id__": 184
  4746. },
  4747. "_enabled": true,
  4748. "__prefab": {
  4749. "__id__": 186
  4750. },
  4751. "_materials": [
  4752. {
  4753. "__uuid__": "4f0be00c-ef68-4b54-87b9-be0d60c672a1",
  4754. "__expectedType__": "cc.Material"
  4755. }
  4756. ],
  4757. "_visFlags": 0,
  4758. "lightmapSettings": {
  4759. "__id__": 187
  4760. },
  4761. "_mesh": {
  4762. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  4763. "__expectedType__": "cc.Mesh"
  4764. },
  4765. "_shadowCastingMode": 0,
  4766. "_shadowReceivingMode": 1,
  4767. "_enableMorph": true,
  4768. "_id": "fc+YqFS3VBrJJnOAsVoxsX"
  4769. },
  4770. {
  4771. "__type__": "cc.CompPrefabInfo",
  4772. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  4773. },
  4774. {
  4775. "__type__": "cc.ModelLightmapSettings",
  4776. "texture": null,
  4777. "uvParam": {
  4778. "__type__": "cc.Vec4",
  4779. "x": 0,
  4780. "y": 0,
  4781. "z": 0,
  4782. "w": 0
  4783. },
  4784. "_bakeable": false,
  4785. "_castShadow": false,
  4786. "_receiveShadow": false,
  4787. "_recieveShadow": false,
  4788. "_lightmapSize": 64
  4789. },
  4790. {
  4791. "__type__": "cc.MeshRenderer",
  4792. "_name": "Plane<ModelComponent>",
  4793. "_objFlags": 0,
  4794. "node": {
  4795. "__id__": 171
  4796. },
  4797. "_enabled": true,
  4798. "__prefab": {
  4799. "__id__": 189
  4800. },
  4801. "_materials": [
  4802. {
  4803. "__uuid__": "aa6fe21a-da22-41f3-94b2-d903e3734e14",
  4804. "__expectedType__": "cc.Material"
  4805. }
  4806. ],
  4807. "_visFlags": 0,
  4808. "lightmapSettings": {
  4809. "__id__": 190
  4810. },
  4811. "_mesh": {
  4812. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  4813. "__expectedType__": "cc.Mesh"
  4814. },
  4815. "_shadowCastingMode": 0,
  4816. "_shadowReceivingMode": 1,
  4817. "_enableMorph": true,
  4818. "_id": "8aDW8vsIJO2ZHKHjVabwI1"
  4819. },
  4820. {
  4821. "__type__": "cc.CompPrefabInfo",
  4822. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  4823. },
  4824. {
  4825. "__type__": "cc.ModelLightmapSettings",
  4826. "texture": null,
  4827. "uvParam": {
  4828. "__type__": "cc.Vec4",
  4829. "x": 0,
  4830. "y": 0,
  4831. "z": 0,
  4832. "w": 0
  4833. },
  4834. "_bakeable": false,
  4835. "_castShadow": false,
  4836. "_receiveShadow": false,
  4837. "_recieveShadow": false,
  4838. "_lightmapSize": 64
  4839. },
  4840. {
  4841. "__type__": "cc.Animation",
  4842. "_name": "",
  4843. "_objFlags": 0,
  4844. "node": {
  4845. "__id__": 171
  4846. },
  4847. "_enabled": true,
  4848. "__prefab": {
  4849. "__id__": 192
  4850. },
  4851. "playOnLoad": false,
  4852. "_clips": [
  4853. {
  4854. "__uuid__": "3ee008b2-742a-4ab6-90b4-3c851609de19",
  4855. "__expectedType__": "cc.AnimationClip"
  4856. },
  4857. {
  4858. "__uuid__": "c5655203-c8dc-4d56-ba98-83dde22f024f",
  4859. "__expectedType__": "cc.AnimationClip"
  4860. }
  4861. ],
  4862. "_defaultClip": {
  4863. "__uuid__": "3ee008b2-742a-4ab6-90b4-3c851609de19",
  4864. "__expectedType__": "cc.AnimationClip"
  4865. },
  4866. "_id": "09/K8ve9REbpFaOyCEbAeP"
  4867. },
  4868. {
  4869. "__type__": "cc.CompPrefabInfo",
  4870. "fileId": "49uB4Ax69EELVMWBPw6GNS"
  4871. },
  4872. {
  4873. "__type__": "cc.Node",
  4874. "_name": "machineClown2",
  4875. "_objFlags": 0,
  4876. "_parent": {
  4877. "__id__": 73
  4878. },
  4879. "_children": [
  4880. {
  4881. "__id__": 194
  4882. },
  4883. {
  4884. "__id__": 198
  4885. },
  4886. {
  4887. "__id__": 202
  4888. },
  4889. {
  4890. "__id__": 206
  4891. }
  4892. ],
  4893. "_active": true,
  4894. "_components": [
  4895. {
  4896. "__id__": 210
  4897. },
  4898. {
  4899. "__id__": 213
  4900. }
  4901. ],
  4902. "_prefab": null,
  4903. "_lpos": {
  4904. "__type__": "cc.Vec3",
  4905. "x": -2.1,
  4906. "y": 6.318,
  4907. "z": -11.383
  4908. },
  4909. "_lrot": {
  4910. "__type__": "cc.Quat",
  4911. "x": 0.6502903951234855,
  4912. "y": 0,
  4913. "z": 0,
  4914. "w": 0.7596857258170256
  4915. },
  4916. "_lscale": {
  4917. "__type__": "cc.Vec3",
  4918. "x": 0.27,
  4919. "y": 0.27,
  4920. "z": 0.27
  4921. },
  4922. "_layer": 1073741824,
  4923. "_euler": {
  4924. "__type__": "cc.Vec3",
  4925. "x": 81.127,
  4926. "y": 0,
  4927. "z": 0
  4928. },
  4929. "_id": "a7siEX2sdJ9Je7F2EQALJv"
  4930. },
  4931. {
  4932. "__type__": "cc.Node",
  4933. "_name": "clown02L",
  4934. "_objFlags": 0,
  4935. "_parent": {
  4936. "__id__": 193
  4937. },
  4938. "_children": [],
  4939. "_active": true,
  4940. "_components": [
  4941. {
  4942. "__id__": 195
  4943. }
  4944. ],
  4945. "_prefab": null,
  4946. "_lpos": {
  4947. "__type__": "cc.Vec3",
  4948. "x": -0.8,
  4949. "y": 0,
  4950. "z": 0.9
  4951. },
  4952. "_lrot": {
  4953. "__type__": "cc.Quat",
  4954. "x": 0,
  4955. "y": 0,
  4956. "z": 0,
  4957. "w": 1
  4958. },
  4959. "_lscale": {
  4960. "__type__": "cc.Vec3",
  4961. "x": 0.07,
  4962. "y": 0.07,
  4963. "z": 0.07
  4964. },
  4965. "_layer": 1073741824,
  4966. "_euler": {
  4967. "__type__": "cc.Vec3",
  4968. "x": 0,
  4969. "y": 0,
  4970. "z": 0
  4971. },
  4972. "_id": "29wUSqRQ9IJr0QP9ZjZJkE"
  4973. },
  4974. {
  4975. "__type__": "cc.MeshRenderer",
  4976. "_name": "Plane<ModelComponent>",
  4977. "_objFlags": 0,
  4978. "__editorExtras__": {},
  4979. "node": {
  4980. "__id__": 194
  4981. },
  4982. "_enabled": true,
  4983. "__prefab": {
  4984. "__id__": 196
  4985. },
  4986. "_materials": [
  4987. {
  4988. "__uuid__": "6dbb2efc-c39e-4df4-aa09-01fe20faa92c",
  4989. "__expectedType__": "cc.Material"
  4990. }
  4991. ],
  4992. "_visFlags": 0,
  4993. "lightmapSettings": {
  4994. "__id__": 197
  4995. },
  4996. "_mesh": {
  4997. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  4998. "__expectedType__": "cc.Mesh"
  4999. },
  5000. "_shadowCastingMode": 0,
  5001. "_shadowReceivingMode": 1,
  5002. "_enableMorph": true,
  5003. "_id": "a5wTLX4zJJlb4Y+JSgMieu"
  5004. },
  5005. {
  5006. "__type__": "cc.CompPrefabInfo",
  5007. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  5008. },
  5009. {
  5010. "__type__": "cc.ModelLightmapSettings",
  5011. "texture": null,
  5012. "uvParam": {
  5013. "__type__": "cc.Vec4",
  5014. "x": 0,
  5015. "y": 0,
  5016. "z": 0,
  5017. "w": 0
  5018. },
  5019. "_bakeable": false,
  5020. "_castShadow": false,
  5021. "_receiveShadow": false,
  5022. "_recieveShadow": false,
  5023. "_lightmapSize": 64
  5024. },
  5025. {
  5026. "__type__": "cc.Node",
  5027. "_name": "clown02R",
  5028. "_objFlags": 0,
  5029. "_parent": {
  5030. "__id__": 193
  5031. },
  5032. "_children": [],
  5033. "_active": true,
  5034. "_components": [
  5035. {
  5036. "__id__": 199
  5037. }
  5038. ],
  5039. "_prefab": null,
  5040. "_lpos": {
  5041. "__type__": "cc.Vec3",
  5042. "x": 0.8,
  5043. "y": 0,
  5044. "z": 0.9
  5045. },
  5046. "_lrot": {
  5047. "__type__": "cc.Quat",
  5048. "x": 0,
  5049. "y": 0,
  5050. "z": 0,
  5051. "w": 1
  5052. },
  5053. "_lscale": {
  5054. "__type__": "cc.Vec3",
  5055. "x": 0.07,
  5056. "y": 0.07,
  5057. "z": 0.07
  5058. },
  5059. "_layer": 1073741824,
  5060. "_euler": {
  5061. "__type__": "cc.Vec3",
  5062. "x": 0,
  5063. "y": 0,
  5064. "z": 0
  5065. },
  5066. "_id": "40a8IfUe5MYp2eciTxdjIS"
  5067. },
  5068. {
  5069. "__type__": "cc.MeshRenderer",
  5070. "_name": "Plane<ModelComponent>",
  5071. "_objFlags": 0,
  5072. "__editorExtras__": {},
  5073. "node": {
  5074. "__id__": 198
  5075. },
  5076. "_enabled": true,
  5077. "__prefab": {
  5078. "__id__": 200
  5079. },
  5080. "_materials": [
  5081. {
  5082. "__uuid__": "6dbb2efc-c39e-4df4-aa09-01fe20faa92c",
  5083. "__expectedType__": "cc.Material"
  5084. }
  5085. ],
  5086. "_visFlags": 0,
  5087. "lightmapSettings": {
  5088. "__id__": 201
  5089. },
  5090. "_mesh": {
  5091. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  5092. "__expectedType__": "cc.Mesh"
  5093. },
  5094. "_shadowCastingMode": 0,
  5095. "_shadowReceivingMode": 1,
  5096. "_enableMorph": true,
  5097. "_id": "5crKMiMZxLvZGm9rfVtg3m"
  5098. },
  5099. {
  5100. "__type__": "cc.CompPrefabInfo",
  5101. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  5102. },
  5103. {
  5104. "__type__": "cc.ModelLightmapSettings",
  5105. "texture": null,
  5106. "uvParam": {
  5107. "__type__": "cc.Vec4",
  5108. "x": 0,
  5109. "y": 0,
  5110. "z": 0,
  5111. "w": 0
  5112. },
  5113. "_bakeable": false,
  5114. "_castShadow": false,
  5115. "_receiveShadow": false,
  5116. "_recieveShadow": false,
  5117. "_lightmapSize": 64
  5118. },
  5119. {
  5120. "__type__": "cc.Node",
  5121. "_name": "clown03",
  5122. "_objFlags": 0,
  5123. "_parent": {
  5124. "__id__": 193
  5125. },
  5126. "_children": [],
  5127. "_active": true,
  5128. "_components": [
  5129. {
  5130. "__id__": 203
  5131. }
  5132. ],
  5133. "_prefab": null,
  5134. "_lpos": {
  5135. "__type__": "cc.Vec3",
  5136. "x": -0.003,
  5137. "y": 0,
  5138. "z": 1.294
  5139. },
  5140. "_lrot": {
  5141. "__type__": "cc.Quat",
  5142. "x": 0,
  5143. "y": 0,
  5144. "z": 0,
  5145. "w": 1
  5146. },
  5147. "_lscale": {
  5148. "__type__": "cc.Vec3",
  5149. "x": 0.077,
  5150. "y": 0.077,
  5151. "z": 0.077
  5152. },
  5153. "_layer": 1073741824,
  5154. "_euler": {
  5155. "__type__": "cc.Vec3",
  5156. "x": 0,
  5157. "y": 0,
  5158. "z": 0
  5159. },
  5160. "_id": "393DTNTLJGW5u3U05dEQy4"
  5161. },
  5162. {
  5163. "__type__": "cc.MeshRenderer",
  5164. "_name": "Plane<ModelComponent>",
  5165. "_objFlags": 0,
  5166. "__editorExtras__": {},
  5167. "node": {
  5168. "__id__": 202
  5169. },
  5170. "_enabled": true,
  5171. "__prefab": {
  5172. "__id__": 204
  5173. },
  5174. "_materials": [
  5175. {
  5176. "__uuid__": "d29af156-6c2c-495f-b30e-e3c05574e199",
  5177. "__expectedType__": "cc.Material"
  5178. }
  5179. ],
  5180. "_visFlags": 0,
  5181. "lightmapSettings": {
  5182. "__id__": 205
  5183. },
  5184. "_mesh": {
  5185. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  5186. "__expectedType__": "cc.Mesh"
  5187. },
  5188. "_shadowCastingMode": 0,
  5189. "_shadowReceivingMode": 1,
  5190. "_enableMorph": true,
  5191. "_id": "ebfOjUcAtKQ4Bcg/jVmJwa"
  5192. },
  5193. {
  5194. "__type__": "cc.CompPrefabInfo",
  5195. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  5196. },
  5197. {
  5198. "__type__": "cc.ModelLightmapSettings",
  5199. "texture": null,
  5200. "uvParam": {
  5201. "__type__": "cc.Vec4",
  5202. "x": 0,
  5203. "y": 0,
  5204. "z": 0,
  5205. "w": 0
  5206. },
  5207. "_bakeable": false,
  5208. "_castShadow": false,
  5209. "_receiveShadow": false,
  5210. "_recieveShadow": false,
  5211. "_lightmapSize": 64
  5212. },
  5213. {
  5214. "__type__": "cc.Node",
  5215. "_name": "clown04",
  5216. "_objFlags": 0,
  5217. "_parent": {
  5218. "__id__": 193
  5219. },
  5220. "_children": [],
  5221. "_active": true,
  5222. "_components": [
  5223. {
  5224. "__id__": 207
  5225. }
  5226. ],
  5227. "_prefab": null,
  5228. "_lpos": {
  5229. "__type__": "cc.Vec3",
  5230. "x": -0.003,
  5231. "y": 0,
  5232. "z": 2.001
  5233. },
  5234. "_lrot": {
  5235. "__type__": "cc.Quat",
  5236. "x": 0,
  5237. "y": 0,
  5238. "z": 0,
  5239. "w": 1
  5240. },
  5241. "_lscale": {
  5242. "__type__": "cc.Vec3",
  5243. "x": 0.223,
  5244. "y": 0.108,
  5245. "z": 0.126
  5246. },
  5247. "_layer": 1073741824,
  5248. "_euler": {
  5249. "__type__": "cc.Vec3",
  5250. "x": 0,
  5251. "y": 0,
  5252. "z": 0
  5253. },
  5254. "_id": "08Q3RrNZZNNa48UgMoM2OE"
  5255. },
  5256. {
  5257. "__type__": "cc.MeshRenderer",
  5258. "_name": "Plane<ModelComponent>",
  5259. "_objFlags": 0,
  5260. "__editorExtras__": {},
  5261. "node": {
  5262. "__id__": 206
  5263. },
  5264. "_enabled": true,
  5265. "__prefab": {
  5266. "__id__": 208
  5267. },
  5268. "_materials": [
  5269. {
  5270. "__uuid__": "4f0be00c-ef68-4b54-87b9-be0d60c672a1",
  5271. "__expectedType__": "cc.Material"
  5272. }
  5273. ],
  5274. "_visFlags": 0,
  5275. "lightmapSettings": {
  5276. "__id__": 209
  5277. },
  5278. "_mesh": {
  5279. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  5280. "__expectedType__": "cc.Mesh"
  5281. },
  5282. "_shadowCastingMode": 0,
  5283. "_shadowReceivingMode": 1,
  5284. "_enableMorph": true,
  5285. "_id": "f9fTWYkYtMdaOSxZtQ2XPP"
  5286. },
  5287. {
  5288. "__type__": "cc.CompPrefabInfo",
  5289. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  5290. },
  5291. {
  5292. "__type__": "cc.ModelLightmapSettings",
  5293. "texture": null,
  5294. "uvParam": {
  5295. "__type__": "cc.Vec4",
  5296. "x": 0,
  5297. "y": 0,
  5298. "z": 0,
  5299. "w": 0
  5300. },
  5301. "_bakeable": false,
  5302. "_castShadow": false,
  5303. "_receiveShadow": false,
  5304. "_recieveShadow": false,
  5305. "_lightmapSize": 64
  5306. },
  5307. {
  5308. "__type__": "cc.MeshRenderer",
  5309. "_name": "Plane<ModelComponent>",
  5310. "_objFlags": 0,
  5311. "node": {
  5312. "__id__": 193
  5313. },
  5314. "_enabled": true,
  5315. "__prefab": {
  5316. "__id__": 211
  5317. },
  5318. "_materials": [
  5319. {
  5320. "__uuid__": "aa6fe21a-da22-41f3-94b2-d903e3734e14",
  5321. "__expectedType__": "cc.Material"
  5322. }
  5323. ],
  5324. "_visFlags": 0,
  5325. "lightmapSettings": {
  5326. "__id__": 212
  5327. },
  5328. "_mesh": {
  5329. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  5330. "__expectedType__": "cc.Mesh"
  5331. },
  5332. "_shadowCastingMode": 0,
  5333. "_shadowReceivingMode": 1,
  5334. "_enableMorph": true,
  5335. "_id": "f0dJZrMsRDnproN83xTbn+"
  5336. },
  5337. {
  5338. "__type__": "cc.CompPrefabInfo",
  5339. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  5340. },
  5341. {
  5342. "__type__": "cc.ModelLightmapSettings",
  5343. "texture": null,
  5344. "uvParam": {
  5345. "__type__": "cc.Vec4",
  5346. "x": 0,
  5347. "y": 0,
  5348. "z": 0,
  5349. "w": 0
  5350. },
  5351. "_bakeable": false,
  5352. "_castShadow": false,
  5353. "_receiveShadow": false,
  5354. "_recieveShadow": false,
  5355. "_lightmapSize": 64
  5356. },
  5357. {
  5358. "__type__": "cc.Animation",
  5359. "_name": "",
  5360. "_objFlags": 0,
  5361. "node": {
  5362. "__id__": 193
  5363. },
  5364. "_enabled": true,
  5365. "__prefab": {
  5366. "__id__": 214
  5367. },
  5368. "playOnLoad": false,
  5369. "_clips": [
  5370. {
  5371. "__uuid__": "3ee008b2-742a-4ab6-90b4-3c851609de19",
  5372. "__expectedType__": "cc.AnimationClip"
  5373. },
  5374. {
  5375. "__uuid__": "c5655203-c8dc-4d56-ba98-83dde22f024f",
  5376. "__expectedType__": "cc.AnimationClip"
  5377. }
  5378. ],
  5379. "_defaultClip": {
  5380. "__uuid__": "3ee008b2-742a-4ab6-90b4-3c851609de19",
  5381. "__expectedType__": "cc.AnimationClip"
  5382. },
  5383. "_id": "68G7drlPNPVYZZtbGcfdB7"
  5384. },
  5385. {
  5386. "__type__": "cc.CompPrefabInfo",
  5387. "fileId": "0cFqa9bLFECZWxRLLJ2TB8"
  5388. },
  5389. {
  5390. "__type__": "cc.Node",
  5391. "_name": "machineClown3",
  5392. "_objFlags": 0,
  5393. "_parent": {
  5394. "__id__": 73
  5395. },
  5396. "_children": [
  5397. {
  5398. "__id__": 216
  5399. },
  5400. {
  5401. "__id__": 220
  5402. },
  5403. {
  5404. "__id__": 224
  5405. },
  5406. {
  5407. "__id__": 228
  5408. }
  5409. ],
  5410. "_active": true,
  5411. "_components": [
  5412. {
  5413. "__id__": 232
  5414. },
  5415. {
  5416. "__id__": 235
  5417. }
  5418. ],
  5419. "_prefab": null,
  5420. "_lpos": {
  5421. "__type__": "cc.Vec3",
  5422. "x": 2.1,
  5423. "y": 6.318,
  5424. "z": -11.383
  5425. },
  5426. "_lrot": {
  5427. "__type__": "cc.Quat",
  5428. "x": 0.6502903951234855,
  5429. "y": 0,
  5430. "z": 0,
  5431. "w": 0.7596857258170256
  5432. },
  5433. "_lscale": {
  5434. "__type__": "cc.Vec3",
  5435. "x": 0.27,
  5436. "y": 0.27,
  5437. "z": 0.27
  5438. },
  5439. "_layer": 1073741824,
  5440. "_euler": {
  5441. "__type__": "cc.Vec3",
  5442. "x": 81.127,
  5443. "y": 0,
  5444. "z": 0
  5445. },
  5446. "_id": "dcqOZJ75lDsKmXZohMRz1v"
  5447. },
  5448. {
  5449. "__type__": "cc.Node",
  5450. "_name": "clown02L",
  5451. "_objFlags": 0,
  5452. "_parent": {
  5453. "__id__": 215
  5454. },
  5455. "_children": [],
  5456. "_active": true,
  5457. "_components": [
  5458. {
  5459. "__id__": 217
  5460. }
  5461. ],
  5462. "_prefab": null,
  5463. "_lpos": {
  5464. "__type__": "cc.Vec3",
  5465. "x": -0.8,
  5466. "y": 0,
  5467. "z": 0.9
  5468. },
  5469. "_lrot": {
  5470. "__type__": "cc.Quat",
  5471. "x": 0,
  5472. "y": 0,
  5473. "z": 0,
  5474. "w": 1
  5475. },
  5476. "_lscale": {
  5477. "__type__": "cc.Vec3",
  5478. "x": 0.07,
  5479. "y": 0.07,
  5480. "z": 0.07
  5481. },
  5482. "_layer": 1073741824,
  5483. "_euler": {
  5484. "__type__": "cc.Vec3",
  5485. "x": 0,
  5486. "y": 0,
  5487. "z": 0
  5488. },
  5489. "_id": "5f44vONT9Bl6BtlTPrhapx"
  5490. },
  5491. {
  5492. "__type__": "cc.MeshRenderer",
  5493. "_name": "Plane<ModelComponent>",
  5494. "_objFlags": 0,
  5495. "__editorExtras__": {},
  5496. "node": {
  5497. "__id__": 216
  5498. },
  5499. "_enabled": true,
  5500. "__prefab": {
  5501. "__id__": 218
  5502. },
  5503. "_materials": [
  5504. {
  5505. "__uuid__": "6dbb2efc-c39e-4df4-aa09-01fe20faa92c",
  5506. "__expectedType__": "cc.Material"
  5507. }
  5508. ],
  5509. "_visFlags": 0,
  5510. "lightmapSettings": {
  5511. "__id__": 219
  5512. },
  5513. "_mesh": {
  5514. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  5515. "__expectedType__": "cc.Mesh"
  5516. },
  5517. "_shadowCastingMode": 0,
  5518. "_shadowReceivingMode": 1,
  5519. "_enableMorph": true,
  5520. "_id": "f0dYv8tPpKHoC7qiLXWw1Z"
  5521. },
  5522. {
  5523. "__type__": "cc.CompPrefabInfo",
  5524. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  5525. },
  5526. {
  5527. "__type__": "cc.ModelLightmapSettings",
  5528. "texture": null,
  5529. "uvParam": {
  5530. "__type__": "cc.Vec4",
  5531. "x": 0,
  5532. "y": 0,
  5533. "z": 0,
  5534. "w": 0
  5535. },
  5536. "_bakeable": false,
  5537. "_castShadow": false,
  5538. "_receiveShadow": false,
  5539. "_recieveShadow": false,
  5540. "_lightmapSize": 64
  5541. },
  5542. {
  5543. "__type__": "cc.Node",
  5544. "_name": "clown02R",
  5545. "_objFlags": 0,
  5546. "_parent": {
  5547. "__id__": 215
  5548. },
  5549. "_children": [],
  5550. "_active": true,
  5551. "_components": [
  5552. {
  5553. "__id__": 221
  5554. }
  5555. ],
  5556. "_prefab": null,
  5557. "_lpos": {
  5558. "__type__": "cc.Vec3",
  5559. "x": 0.8,
  5560. "y": 0,
  5561. "z": 0.9
  5562. },
  5563. "_lrot": {
  5564. "__type__": "cc.Quat",
  5565. "x": 0,
  5566. "y": 0,
  5567. "z": 0,
  5568. "w": 1
  5569. },
  5570. "_lscale": {
  5571. "__type__": "cc.Vec3",
  5572. "x": 0.07,
  5573. "y": 0.07,
  5574. "z": 0.07
  5575. },
  5576. "_layer": 1073741824,
  5577. "_euler": {
  5578. "__type__": "cc.Vec3",
  5579. "x": 0,
  5580. "y": 0,
  5581. "z": 0
  5582. },
  5583. "_id": "41WuHhpKpHl5agpn/kgydj"
  5584. },
  5585. {
  5586. "__type__": "cc.MeshRenderer",
  5587. "_name": "Plane<ModelComponent>",
  5588. "_objFlags": 0,
  5589. "__editorExtras__": {},
  5590. "node": {
  5591. "__id__": 220
  5592. },
  5593. "_enabled": true,
  5594. "__prefab": {
  5595. "__id__": 222
  5596. },
  5597. "_materials": [
  5598. {
  5599. "__uuid__": "6dbb2efc-c39e-4df4-aa09-01fe20faa92c",
  5600. "__expectedType__": "cc.Material"
  5601. }
  5602. ],
  5603. "_visFlags": 0,
  5604. "lightmapSettings": {
  5605. "__id__": 223
  5606. },
  5607. "_mesh": {
  5608. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  5609. "__expectedType__": "cc.Mesh"
  5610. },
  5611. "_shadowCastingMode": 0,
  5612. "_shadowReceivingMode": 1,
  5613. "_enableMorph": true,
  5614. "_id": "bd/WZMu1JD96DSX8IFm336"
  5615. },
  5616. {
  5617. "__type__": "cc.CompPrefabInfo",
  5618. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  5619. },
  5620. {
  5621. "__type__": "cc.ModelLightmapSettings",
  5622. "texture": null,
  5623. "uvParam": {
  5624. "__type__": "cc.Vec4",
  5625. "x": 0,
  5626. "y": 0,
  5627. "z": 0,
  5628. "w": 0
  5629. },
  5630. "_bakeable": false,
  5631. "_castShadow": false,
  5632. "_receiveShadow": false,
  5633. "_recieveShadow": false,
  5634. "_lightmapSize": 64
  5635. },
  5636. {
  5637. "__type__": "cc.Node",
  5638. "_name": "clown03",
  5639. "_objFlags": 0,
  5640. "_parent": {
  5641. "__id__": 215
  5642. },
  5643. "_children": [],
  5644. "_active": true,
  5645. "_components": [
  5646. {
  5647. "__id__": 225
  5648. }
  5649. ],
  5650. "_prefab": null,
  5651. "_lpos": {
  5652. "__type__": "cc.Vec3",
  5653. "x": -0.003,
  5654. "y": 0,
  5655. "z": 1.294
  5656. },
  5657. "_lrot": {
  5658. "__type__": "cc.Quat",
  5659. "x": 0,
  5660. "y": 0,
  5661. "z": 0,
  5662. "w": 1
  5663. },
  5664. "_lscale": {
  5665. "__type__": "cc.Vec3",
  5666. "x": 0.077,
  5667. "y": 0.077,
  5668. "z": 0.077
  5669. },
  5670. "_layer": 1073741824,
  5671. "_euler": {
  5672. "__type__": "cc.Vec3",
  5673. "x": 0,
  5674. "y": 0,
  5675. "z": 0
  5676. },
  5677. "_id": "aacdnDxLJO9q/9GByqJ53K"
  5678. },
  5679. {
  5680. "__type__": "cc.MeshRenderer",
  5681. "_name": "Plane<ModelComponent>",
  5682. "_objFlags": 0,
  5683. "__editorExtras__": {},
  5684. "node": {
  5685. "__id__": 224
  5686. },
  5687. "_enabled": true,
  5688. "__prefab": {
  5689. "__id__": 226
  5690. },
  5691. "_materials": [
  5692. {
  5693. "__uuid__": "d29af156-6c2c-495f-b30e-e3c05574e199",
  5694. "__expectedType__": "cc.Material"
  5695. }
  5696. ],
  5697. "_visFlags": 0,
  5698. "lightmapSettings": {
  5699. "__id__": 227
  5700. },
  5701. "_mesh": {
  5702. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  5703. "__expectedType__": "cc.Mesh"
  5704. },
  5705. "_shadowCastingMode": 0,
  5706. "_shadowReceivingMode": 1,
  5707. "_enableMorph": true,
  5708. "_id": "58PqNqfYZEOaMlBxxG9aSJ"
  5709. },
  5710. {
  5711. "__type__": "cc.CompPrefabInfo",
  5712. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  5713. },
  5714. {
  5715. "__type__": "cc.ModelLightmapSettings",
  5716. "texture": null,
  5717. "uvParam": {
  5718. "__type__": "cc.Vec4",
  5719. "x": 0,
  5720. "y": 0,
  5721. "z": 0,
  5722. "w": 0
  5723. },
  5724. "_bakeable": false,
  5725. "_castShadow": false,
  5726. "_receiveShadow": false,
  5727. "_recieveShadow": false,
  5728. "_lightmapSize": 64
  5729. },
  5730. {
  5731. "__type__": "cc.Node",
  5732. "_name": "clown04",
  5733. "_objFlags": 0,
  5734. "_parent": {
  5735. "__id__": 215
  5736. },
  5737. "_children": [],
  5738. "_active": true,
  5739. "_components": [
  5740. {
  5741. "__id__": 229
  5742. }
  5743. ],
  5744. "_prefab": null,
  5745. "_lpos": {
  5746. "__type__": "cc.Vec3",
  5747. "x": -0.003,
  5748. "y": 0,
  5749. "z": 2.001
  5750. },
  5751. "_lrot": {
  5752. "__type__": "cc.Quat",
  5753. "x": 0,
  5754. "y": 0,
  5755. "z": 0,
  5756. "w": 1
  5757. },
  5758. "_lscale": {
  5759. "__type__": "cc.Vec3",
  5760. "x": 0.223,
  5761. "y": 0.108,
  5762. "z": 0.126
  5763. },
  5764. "_layer": 1073741824,
  5765. "_euler": {
  5766. "__type__": "cc.Vec3",
  5767. "x": 0,
  5768. "y": 0,
  5769. "z": 0
  5770. },
  5771. "_id": "deiUpZf3pB16kF8bJYg0Z2"
  5772. },
  5773. {
  5774. "__type__": "cc.MeshRenderer",
  5775. "_name": "Plane<ModelComponent>",
  5776. "_objFlags": 0,
  5777. "__editorExtras__": {},
  5778. "node": {
  5779. "__id__": 228
  5780. },
  5781. "_enabled": true,
  5782. "__prefab": {
  5783. "__id__": 230
  5784. },
  5785. "_materials": [
  5786. {
  5787. "__uuid__": "4f0be00c-ef68-4b54-87b9-be0d60c672a1",
  5788. "__expectedType__": "cc.Material"
  5789. }
  5790. ],
  5791. "_visFlags": 0,
  5792. "lightmapSettings": {
  5793. "__id__": 231
  5794. },
  5795. "_mesh": {
  5796. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  5797. "__expectedType__": "cc.Mesh"
  5798. },
  5799. "_shadowCastingMode": 0,
  5800. "_shadowReceivingMode": 1,
  5801. "_enableMorph": true,
  5802. "_id": "78h5Ag/sRK9rkRsWHMzFg/"
  5803. },
  5804. {
  5805. "__type__": "cc.CompPrefabInfo",
  5806. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  5807. },
  5808. {
  5809. "__type__": "cc.ModelLightmapSettings",
  5810. "texture": null,
  5811. "uvParam": {
  5812. "__type__": "cc.Vec4",
  5813. "x": 0,
  5814. "y": 0,
  5815. "z": 0,
  5816. "w": 0
  5817. },
  5818. "_bakeable": false,
  5819. "_castShadow": false,
  5820. "_receiveShadow": false,
  5821. "_recieveShadow": false,
  5822. "_lightmapSize": 64
  5823. },
  5824. {
  5825. "__type__": "cc.MeshRenderer",
  5826. "_name": "Plane<ModelComponent>",
  5827. "_objFlags": 0,
  5828. "node": {
  5829. "__id__": 215
  5830. },
  5831. "_enabled": true,
  5832. "__prefab": {
  5833. "__id__": 233
  5834. },
  5835. "_materials": [
  5836. {
  5837. "__uuid__": "aa6fe21a-da22-41f3-94b2-d903e3734e14",
  5838. "__expectedType__": "cc.Material"
  5839. }
  5840. ],
  5841. "_visFlags": 0,
  5842. "lightmapSettings": {
  5843. "__id__": 234
  5844. },
  5845. "_mesh": {
  5846. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  5847. "__expectedType__": "cc.Mesh"
  5848. },
  5849. "_shadowCastingMode": 0,
  5850. "_shadowReceivingMode": 1,
  5851. "_enableMorph": true,
  5852. "_id": "fcDeXDA0xBn5mpIGX8CAVv"
  5853. },
  5854. {
  5855. "__type__": "cc.CompPrefabInfo",
  5856. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  5857. },
  5858. {
  5859. "__type__": "cc.ModelLightmapSettings",
  5860. "texture": null,
  5861. "uvParam": {
  5862. "__type__": "cc.Vec4",
  5863. "x": 0,
  5864. "y": 0,
  5865. "z": 0,
  5866. "w": 0
  5867. },
  5868. "_bakeable": false,
  5869. "_castShadow": false,
  5870. "_receiveShadow": false,
  5871. "_recieveShadow": false,
  5872. "_lightmapSize": 64
  5873. },
  5874. {
  5875. "__type__": "cc.Animation",
  5876. "_name": "",
  5877. "_objFlags": 0,
  5878. "node": {
  5879. "__id__": 215
  5880. },
  5881. "_enabled": true,
  5882. "__prefab": {
  5883. "__id__": 236
  5884. },
  5885. "playOnLoad": false,
  5886. "_clips": [
  5887. {
  5888. "__uuid__": "3ee008b2-742a-4ab6-90b4-3c851609de19",
  5889. "__expectedType__": "cc.AnimationClip"
  5890. },
  5891. {
  5892. "__uuid__": "c5655203-c8dc-4d56-ba98-83dde22f024f",
  5893. "__expectedType__": "cc.AnimationClip"
  5894. }
  5895. ],
  5896. "_defaultClip": {
  5897. "__uuid__": "3ee008b2-742a-4ab6-90b4-3c851609de19",
  5898. "__expectedType__": "cc.AnimationClip"
  5899. },
  5900. "_id": "e7+9cY3xVBz6rTW3XIe4f9"
  5901. },
  5902. {
  5903. "__type__": "cc.CompPrefabInfo",
  5904. "fileId": "24XsrDibpHK6bb9Aczg0rd"
  5905. },
  5906. {
  5907. "__type__": "cc.Node",
  5908. "_name": "board1",
  5909. "_objFlags": 0,
  5910. "_parent": {
  5911. "__id__": 73
  5912. },
  5913. "_children": [
  5914. {
  5915. "__id__": 238
  5916. }
  5917. ],
  5918. "_active": true,
  5919. "_components": [
  5920. {
  5921. "__id__": 243
  5922. }
  5923. ],
  5924. "_prefab": null,
  5925. "_lpos": {
  5926. "__type__": "cc.Vec3",
  5927. "x": -8.162,
  5928. "y": -3.796,
  5929. "z": -17.986
  5930. },
  5931. "_lrot": {
  5932. "__type__": "cc.Quat",
  5933. "x": 0,
  5934. "y": 0,
  5935. "z": 0,
  5936. "w": 1
  5937. },
  5938. "_lscale": {
  5939. "__type__": "cc.Vec3",
  5940. "x": 1,
  5941. "y": 1,
  5942. "z": 1
  5943. },
  5944. "_layer": 1073741824,
  5945. "_euler": {
  5946. "__type__": "cc.Vec3",
  5947. "x": 0,
  5948. "y": 0,
  5949. "z": 0
  5950. },
  5951. "_id": "a5ZmXyRpxFgYLdYSRTaj/6"
  5952. },
  5953. {
  5954. "__type__": "cc.Node",
  5955. "_name": "big",
  5956. "_objFlags": 0,
  5957. "__editorExtras__": {
  5958. "mountedRoot": {
  5959. "__id__": 239
  5960. }
  5961. },
  5962. "_parent": {
  5963. "__id__": 237
  5964. },
  5965. "_children": [],
  5966. "_active": true,
  5967. "_components": [
  5968. {
  5969. "__id__": 240
  5970. }
  5971. ],
  5972. "_prefab": null,
  5973. "_lpos": {
  5974. "__type__": "cc.Vec3",
  5975. "x": 0,
  5976. "y": 0,
  5977. "z": 0
  5978. },
  5979. "_lrot": {
  5980. "__type__": "cc.Quat",
  5981. "x": 0.6941857880310188,
  5982. "y": 0.13455887817514461,
  5983. "z": -0.13455887817514456,
  5984. "w": 0.6941857880310188
  5985. },
  5986. "_lscale": {
  5987. "__type__": "cc.Vec3",
  5988. "x": 0.26,
  5989. "y": 1.0000000000000002,
  5990. "z": 1.3250000000000002
  5991. },
  5992. "_layer": 1073741824,
  5993. "_euler": {
  5994. "__type__": "cc.Vec3",
  5995. "x": 90.00000000000001,
  5996. "y": 21.94,
  5997. "z": 4.770832022195275e-15
  5998. },
  5999. "_id": "144korRitL1Kh7LI609rRd"
  6000. },
  6001. {
  6002. "__type__": "cc.Node",
  6003. "_name": "board",
  6004. "_objFlags": 0,
  6005. "_parent": null,
  6006. "_children": [],
  6007. "_active": true,
  6008. "_components": [],
  6009. "_prefab": null,
  6010. "_lpos": {
  6011. "__type__": "cc.Vec3",
  6012. "x": 0,
  6013. "y": 0,
  6014. "z": 0
  6015. },
  6016. "_lrot": {
  6017. "__type__": "cc.Quat",
  6018. "x": 0,
  6019. "y": 0,
  6020. "z": 0,
  6021. "w": 1
  6022. },
  6023. "_lscale": {
  6024. "__type__": "cc.Vec3",
  6025. "x": 1,
  6026. "y": 1,
  6027. "z": 1
  6028. },
  6029. "_layer": 1073741824,
  6030. "_euler": {
  6031. "__type__": "cc.Vec3",
  6032. "x": 0,
  6033. "y": 0,
  6034. "z": 0
  6035. },
  6036. "_id": "15oA3yldVE+684CjmgFdgO"
  6037. },
  6038. {
  6039. "__type__": "cc.MeshRenderer",
  6040. "_name": "Plane<ModelComponent>",
  6041. "_objFlags": 0,
  6042. "node": {
  6043. "__id__": 238
  6044. },
  6045. "_enabled": true,
  6046. "__prefab": {
  6047. "__id__": 241
  6048. },
  6049. "_materials": [
  6050. {
  6051. "__uuid__": "e1d442cb-f684-40e0-8333-9782882e80fd",
  6052. "__expectedType__": "cc.Material"
  6053. }
  6054. ],
  6055. "_visFlags": 0,
  6056. "lightmapSettings": {
  6057. "__id__": 242
  6058. },
  6059. "_mesh": {
  6060. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  6061. "__expectedType__": "cc.Mesh"
  6062. },
  6063. "_shadowCastingMode": 0,
  6064. "_shadowReceivingMode": 1,
  6065. "_enableMorph": true,
  6066. "_id": "edIkuqSMFL7bZibBSkKUxp"
  6067. },
  6068. {
  6069. "__type__": "cc.CompPrefabInfo",
  6070. "fileId": "25t9ZmEvVGPJUsCKaOLc0M"
  6071. },
  6072. {
  6073. "__type__": "cc.ModelLightmapSettings",
  6074. "texture": null,
  6075. "uvParam": {
  6076. "__type__": "cc.Vec4",
  6077. "x": 0,
  6078. "y": 0,
  6079. "z": 0,
  6080. "w": 0
  6081. },
  6082. "_bakeable": false,
  6083. "_castShadow": false,
  6084. "_receiveShadow": false,
  6085. "_recieveShadow": false,
  6086. "_lightmapSize": 64
  6087. },
  6088. {
  6089. "__type__": "cc.Animation",
  6090. "_name": "",
  6091. "_objFlags": 0,
  6092. "__editorExtras__": {},
  6093. "node": {
  6094. "__id__": 237
  6095. },
  6096. "_enabled": true,
  6097. "__prefab": {
  6098. "__id__": 244
  6099. },
  6100. "playOnLoad": false,
  6101. "_clips": [
  6102. {
  6103. "__uuid__": "aa51f8b2-50ef-4d7f-a855-c417755804e8",
  6104. "__expectedType__": "cc.AnimationClip"
  6105. },
  6106. {
  6107. "__uuid__": "b775ab95-fd3b-40d4-8f07-264272e6a300",
  6108. "__expectedType__": "cc.AnimationClip"
  6109. }
  6110. ],
  6111. "_defaultClip": {
  6112. "__uuid__": "aa51f8b2-50ef-4d7f-a855-c417755804e8",
  6113. "__expectedType__": "cc.AnimationClip"
  6114. },
  6115. "_id": "6cWgfm/R5Jx5mCF0MffrY3"
  6116. },
  6117. {
  6118. "__type__": "cc.CompPrefabInfo",
  6119. "fileId": "8eylyypX1G04g2pJTvW7Um"
  6120. },
  6121. {
  6122. "__type__": "cc.Node",
  6123. "_name": "board2",
  6124. "_objFlags": 0,
  6125. "_parent": {
  6126. "__id__": 73
  6127. },
  6128. "_children": [
  6129. {
  6130. "__id__": 246
  6131. }
  6132. ],
  6133. "_active": true,
  6134. "_components": [
  6135. {
  6136. "__id__": 250
  6137. }
  6138. ],
  6139. "_prefab": null,
  6140. "_lpos": {
  6141. "__type__": "cc.Vec3",
  6142. "x": 8.133,
  6143. "y": -3.796,
  6144. "z": -17.918
  6145. },
  6146. "_lrot": {
  6147. "__type__": "cc.Quat",
  6148. "x": 0,
  6149. "y": 0,
  6150. "z": 0,
  6151. "w": 1
  6152. },
  6153. "_lscale": {
  6154. "__type__": "cc.Vec3",
  6155. "x": 1,
  6156. "y": 1,
  6157. "z": 1
  6158. },
  6159. "_layer": 1073741824,
  6160. "_euler": {
  6161. "__type__": "cc.Vec3",
  6162. "x": 0,
  6163. "y": 0,
  6164. "z": 0
  6165. },
  6166. "_id": "0fPFbHUT9IqIVRZBuKkT+7"
  6167. },
  6168. {
  6169. "__type__": "cc.Node",
  6170. "_name": "big",
  6171. "_objFlags": 0,
  6172. "__editorExtras__": {
  6173. "mountedRoot": {
  6174. "__id__": 239
  6175. }
  6176. },
  6177. "_parent": {
  6178. "__id__": 245
  6179. },
  6180. "_children": [],
  6181. "_active": true,
  6182. "_components": [
  6183. {
  6184. "__id__": 247
  6185. }
  6186. ],
  6187. "_prefab": null,
  6188. "_lpos": {
  6189. "__type__": "cc.Vec3",
  6190. "x": 0,
  6191. "y": 0,
  6192. "z": 0
  6193. },
  6194. "_lrot": {
  6195. "__type__": "cc.Quat",
  6196. "x": 0.6934910153352548,
  6197. "y": -0.13809493708777773,
  6198. "z": 0.1380949370877777,
  6199. "w": 0.6934910153352549
  6200. },
  6201. "_lscale": {
  6202. "__type__": "cc.Vec3",
  6203. "x": 0.26,
  6204. "y": 1.0000000000000002,
  6205. "z": 1.3250000000000002
  6206. },
  6207. "_layer": 1073741824,
  6208. "_euler": {
  6209. "__type__": "cc.Vec3",
  6210. "x": 90,
  6211. "y": -22.524,
  6212. "z": 0
  6213. },
  6214. "_id": "dbCSg6kStKzIrG0Wj2Gb0E"
  6215. },
  6216. {
  6217. "__type__": "cc.MeshRenderer",
  6218. "_name": "Plane<ModelComponent>",
  6219. "_objFlags": 0,
  6220. "node": {
  6221. "__id__": 246
  6222. },
  6223. "_enabled": true,
  6224. "__prefab": {
  6225. "__id__": 248
  6226. },
  6227. "_materials": [
  6228. {
  6229. "__uuid__": "e1d442cb-f684-40e0-8333-9782882e80fd",
  6230. "__expectedType__": "cc.Material"
  6231. }
  6232. ],
  6233. "_visFlags": 0,
  6234. "lightmapSettings": {
  6235. "__id__": 249
  6236. },
  6237. "_mesh": {
  6238. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  6239. "__expectedType__": "cc.Mesh"
  6240. },
  6241. "_shadowCastingMode": 0,
  6242. "_shadowReceivingMode": 1,
  6243. "_enableMorph": true,
  6244. "_id": "afTzM82IZEnKQLZDINVJ55"
  6245. },
  6246. {
  6247. "__type__": "cc.CompPrefabInfo",
  6248. "fileId": "94gaeBUJNA7aDHbIrYGVHf"
  6249. },
  6250. {
  6251. "__type__": "cc.ModelLightmapSettings",
  6252. "texture": null,
  6253. "uvParam": {
  6254. "__type__": "cc.Vec4",
  6255. "x": 0,
  6256. "y": 0,
  6257. "z": 0,
  6258. "w": 0
  6259. },
  6260. "_bakeable": false,
  6261. "_castShadow": false,
  6262. "_receiveShadow": false,
  6263. "_recieveShadow": false,
  6264. "_lightmapSize": 64
  6265. },
  6266. {
  6267. "__type__": "cc.Animation",
  6268. "_name": "",
  6269. "_objFlags": 0,
  6270. "node": {
  6271. "__id__": 245
  6272. },
  6273. "_enabled": true,
  6274. "__prefab": {
  6275. "__id__": 251
  6276. },
  6277. "playOnLoad": false,
  6278. "_clips": [
  6279. {
  6280. "__uuid__": "aa51f8b2-50ef-4d7f-a855-c417755804e8",
  6281. "__expectedType__": "cc.AnimationClip"
  6282. },
  6283. {
  6284. "__uuid__": "b775ab95-fd3b-40d4-8f07-264272e6a300",
  6285. "__expectedType__": "cc.AnimationClip"
  6286. }
  6287. ],
  6288. "_defaultClip": {
  6289. "__uuid__": "aa51f8b2-50ef-4d7f-a855-c417755804e8",
  6290. "__expectedType__": "cc.AnimationClip"
  6291. },
  6292. "_id": "73rvrFKyxBhpPEZYfxPEoX"
  6293. },
  6294. {
  6295. "__type__": "cc.CompPrefabInfo",
  6296. "fileId": "95rL3ID01Dz5hcgqgLRQ20"
  6297. },
  6298. {
  6299. "__type__": "cc.Node",
  6300. "_name": "board3",
  6301. "_objFlags": 0,
  6302. "_parent": {
  6303. "__id__": 73
  6304. },
  6305. "_children": [
  6306. {
  6307. "__id__": 253
  6308. }
  6309. ],
  6310. "_active": true,
  6311. "_components": [
  6312. {
  6313. "__id__": 257
  6314. }
  6315. ],
  6316. "_prefab": null,
  6317. "_lpos": {
  6318. "__type__": "cc.Vec3",
  6319. "x": 14.334,
  6320. "y": -3.796,
  6321. "z": -13.902
  6322. },
  6323. "_lrot": {
  6324. "__type__": "cc.Quat",
  6325. "x": 0,
  6326. "y": 0,
  6327. "z": 0,
  6328. "w": 1
  6329. },
  6330. "_lscale": {
  6331. "__type__": "cc.Vec3",
  6332. "x": 1,
  6333. "y": 1,
  6334. "z": 1
  6335. },
  6336. "_layer": 1073741824,
  6337. "_euler": {
  6338. "__type__": "cc.Vec3",
  6339. "x": 0,
  6340. "y": 0,
  6341. "z": 0
  6342. },
  6343. "_id": "94EPeEgKBK+qVtCxQd33tN"
  6344. },
  6345. {
  6346. "__type__": "cc.Node",
  6347. "_name": "big",
  6348. "_objFlags": 0,
  6349. "__editorExtras__": {
  6350. "mountedRoot": {
  6351. "__id__": 239
  6352. }
  6353. },
  6354. "_parent": {
  6355. "__id__": 252
  6356. },
  6357. "_children": [],
  6358. "_active": true,
  6359. "_components": [
  6360. {
  6361. "__id__": 254
  6362. }
  6363. ],
  6364. "_prefab": null,
  6365. "_lpos": {
  6366. "__type__": "cc.Vec3",
  6367. "x": 0,
  6368. "y": 0,
  6369. "z": 0
  6370. },
  6371. "_lrot": {
  6372. "__type__": "cc.Quat",
  6373. "x": 0.6677931972778275,
  6374. "y": -0.2324913883769817,
  6375. "z": 0.23249138837698163,
  6376. "w": 0.6677931972778276
  6377. },
  6378. "_lscale": {
  6379. "__type__": "cc.Vec3",
  6380. "x": 0.26,
  6381. "y": 1.0000000000000002,
  6382. "z": 1.3250000000000002
  6383. },
  6384. "_layer": 1073741824,
  6385. "_euler": {
  6386. "__type__": "cc.Vec3",
  6387. "x": 90,
  6388. "y": -38.391,
  6389. "z": 0
  6390. },
  6391. "_id": "d4K5FY9SFAV4TESmrsghiz"
  6392. },
  6393. {
  6394. "__type__": "cc.MeshRenderer",
  6395. "_name": "Plane<ModelComponent>",
  6396. "_objFlags": 0,
  6397. "node": {
  6398. "__id__": 253
  6399. },
  6400. "_enabled": true,
  6401. "__prefab": {
  6402. "__id__": 255
  6403. },
  6404. "_materials": [
  6405. {
  6406. "__uuid__": "e1d442cb-f684-40e0-8333-9782882e80fd",
  6407. "__expectedType__": "cc.Material"
  6408. }
  6409. ],
  6410. "_visFlags": 0,
  6411. "lightmapSettings": {
  6412. "__id__": 256
  6413. },
  6414. "_mesh": {
  6415. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  6416. "__expectedType__": "cc.Mesh"
  6417. },
  6418. "_shadowCastingMode": 0,
  6419. "_shadowReceivingMode": 1,
  6420. "_enableMorph": true,
  6421. "_id": "cfmS0xZsFMdplLJsJow5er"
  6422. },
  6423. {
  6424. "__type__": "cc.CompPrefabInfo",
  6425. "fileId": "74HNoMkBBI76lJZsxoQGLZ"
  6426. },
  6427. {
  6428. "__type__": "cc.ModelLightmapSettings",
  6429. "texture": null,
  6430. "uvParam": {
  6431. "__type__": "cc.Vec4",
  6432. "x": 0,
  6433. "y": 0,
  6434. "z": 0,
  6435. "w": 0
  6436. },
  6437. "_bakeable": false,
  6438. "_castShadow": false,
  6439. "_receiveShadow": false,
  6440. "_recieveShadow": false,
  6441. "_lightmapSize": 64
  6442. },
  6443. {
  6444. "__type__": "cc.Animation",
  6445. "_name": "",
  6446. "_objFlags": 0,
  6447. "node": {
  6448. "__id__": 252
  6449. },
  6450. "_enabled": true,
  6451. "__prefab": {
  6452. "__id__": 258
  6453. },
  6454. "playOnLoad": false,
  6455. "_clips": [
  6456. {
  6457. "__uuid__": "aa51f8b2-50ef-4d7f-a855-c417755804e8",
  6458. "__expectedType__": "cc.AnimationClip"
  6459. },
  6460. {
  6461. "__uuid__": "b775ab95-fd3b-40d4-8f07-264272e6a300",
  6462. "__expectedType__": "cc.AnimationClip"
  6463. }
  6464. ],
  6465. "_defaultClip": {
  6466. "__uuid__": "aa51f8b2-50ef-4d7f-a855-c417755804e8",
  6467. "__expectedType__": "cc.AnimationClip"
  6468. },
  6469. "_id": "25iYs7sBFHR4yrcfrpn13d"
  6470. },
  6471. {
  6472. "__type__": "cc.CompPrefabInfo",
  6473. "fileId": "27zUTA3MhNQpfRYhosNshf"
  6474. },
  6475. {
  6476. "__type__": "cc.Node",
  6477. "_name": "board4",
  6478. "_objFlags": 0,
  6479. "_parent": {
  6480. "__id__": 73
  6481. },
  6482. "_children": [
  6483. {
  6484. "__id__": 260
  6485. }
  6486. ],
  6487. "_active": true,
  6488. "_components": [
  6489. {
  6490. "__id__": 264
  6491. }
  6492. ],
  6493. "_prefab": null,
  6494. "_lpos": {
  6495. "__type__": "cc.Vec3",
  6496. "x": -14.304,
  6497. "y": -3.796,
  6498. "z": -13.918
  6499. },
  6500. "_lrot": {
  6501. "__type__": "cc.Quat",
  6502. "x": 0,
  6503. "y": 0,
  6504. "z": 0,
  6505. "w": 1
  6506. },
  6507. "_lscale": {
  6508. "__type__": "cc.Vec3",
  6509. "x": 1,
  6510. "y": 1,
  6511. "z": 1
  6512. },
  6513. "_layer": 1073741824,
  6514. "_euler": {
  6515. "__type__": "cc.Vec3",
  6516. "x": 0,
  6517. "y": 0,
  6518. "z": 0
  6519. },
  6520. "_id": "78+frH0LVHv5RJ/+AtsOzp"
  6521. },
  6522. {
  6523. "__type__": "cc.Node",
  6524. "_name": "big",
  6525. "_objFlags": 0,
  6526. "__editorExtras__": {
  6527. "mountedRoot": {
  6528. "__id__": 239
  6529. }
  6530. },
  6531. "_parent": {
  6532. "__id__": 259
  6533. },
  6534. "_children": [],
  6535. "_active": true,
  6536. "_components": [
  6537. {
  6538. "__id__": 261
  6539. }
  6540. ],
  6541. "_prefab": null,
  6542. "_lpos": {
  6543. "__type__": "cc.Vec3",
  6544. "x": 0,
  6545. "y": 0,
  6546. "z": 0
  6547. },
  6548. "_lrot": {
  6549. "__type__": "cc.Quat",
  6550. "x": 0.6672945981849224,
  6551. "y": 0.23391861668799005,
  6552. "z": -0.23391861668799002,
  6553. "w": 0.6672945981849225
  6554. },
  6555. "_lscale": {
  6556. "__type__": "cc.Vec3",
  6557. "x": 0.26,
  6558. "y": 1.0000000000000002,
  6559. "z": 1.3250000000000002
  6560. },
  6561. "_layer": 1073741824,
  6562. "_euler": {
  6563. "__type__": "cc.Vec3",
  6564. "x": 90,
  6565. "y": 38.636,
  6566. "z": 0
  6567. },
  6568. "_id": "63InSjTeRJ84N1HmvcS28V"
  6569. },
  6570. {
  6571. "__type__": "cc.MeshRenderer",
  6572. "_name": "Plane<ModelComponent>",
  6573. "_objFlags": 0,
  6574. "node": {
  6575. "__id__": 260
  6576. },
  6577. "_enabled": true,
  6578. "__prefab": {
  6579. "__id__": 262
  6580. },
  6581. "_materials": [
  6582. {
  6583. "__uuid__": "e1d442cb-f684-40e0-8333-9782882e80fd",
  6584. "__expectedType__": "cc.Material"
  6585. }
  6586. ],
  6587. "_visFlags": 0,
  6588. "lightmapSettings": {
  6589. "__id__": 263
  6590. },
  6591. "_mesh": {
  6592. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  6593. "__expectedType__": "cc.Mesh"
  6594. },
  6595. "_shadowCastingMode": 0,
  6596. "_shadowReceivingMode": 1,
  6597. "_enableMorph": true,
  6598. "_id": "7dpq3cLLRNAKqu+S+aCZo8"
  6599. },
  6600. {
  6601. "__type__": "cc.CompPrefabInfo",
  6602. "fileId": "81t41MeTdO5Y1HB+mxolet"
  6603. },
  6604. {
  6605. "__type__": "cc.ModelLightmapSettings",
  6606. "texture": null,
  6607. "uvParam": {
  6608. "__type__": "cc.Vec4",
  6609. "x": 0,
  6610. "y": 0,
  6611. "z": 0,
  6612. "w": 0
  6613. },
  6614. "_bakeable": false,
  6615. "_castShadow": false,
  6616. "_receiveShadow": false,
  6617. "_recieveShadow": false,
  6618. "_lightmapSize": 64
  6619. },
  6620. {
  6621. "__type__": "cc.Animation",
  6622. "_name": "",
  6623. "_objFlags": 0,
  6624. "node": {
  6625. "__id__": 259
  6626. },
  6627. "_enabled": true,
  6628. "__prefab": {
  6629. "__id__": 265
  6630. },
  6631. "playOnLoad": false,
  6632. "_clips": [
  6633. {
  6634. "__uuid__": "aa51f8b2-50ef-4d7f-a855-c417755804e8",
  6635. "__expectedType__": "cc.AnimationClip"
  6636. },
  6637. {
  6638. "__uuid__": "b775ab95-fd3b-40d4-8f07-264272e6a300",
  6639. "__expectedType__": "cc.AnimationClip"
  6640. }
  6641. ],
  6642. "_defaultClip": {
  6643. "__uuid__": "aa51f8b2-50ef-4d7f-a855-c417755804e8",
  6644. "__expectedType__": "cc.AnimationClip"
  6645. },
  6646. "_id": "32xAhxFmRMPqoLIT6VolJy"
  6647. },
  6648. {
  6649. "__type__": "cc.CompPrefabInfo",
  6650. "fileId": "36OdoatglINb4zJI0FnW3+"
  6651. },
  6652. {
  6653. "__type__": "cc.Node",
  6654. "_name": "tvShow",
  6655. "_objFlags": 0,
  6656. "_parent": {
  6657. "__id__": 73
  6658. },
  6659. "_children": [
  6660. {
  6661. "__id__": 267
  6662. },
  6663. {
  6664. "__id__": 271
  6665. },
  6666. {
  6667. "__id__": 275
  6668. }
  6669. ],
  6670. "_active": true,
  6671. "_components": [
  6672. {
  6673. "__id__": 280
  6674. }
  6675. ],
  6676. "_prefab": null,
  6677. "_lpos": {
  6678. "__type__": "cc.Vec3",
  6679. "x": 0,
  6680. "y": 3.257,
  6681. "z": -11.045
  6682. },
  6683. "_lrot": {
  6684. "__type__": "cc.Quat",
  6685. "x": -0.08821629267842303,
  6686. "y": 0,
  6687. "z": 0,
  6688. "w": 0.9961013430901873
  6689. },
  6690. "_lscale": {
  6691. "__type__": "cc.Vec3",
  6692. "x": 1,
  6693. "y": 1,
  6694. "z": 1
  6695. },
  6696. "_layer": 1073741824,
  6697. "_euler": {
  6698. "__type__": "cc.Vec3",
  6699. "x": -10.121999999999998,
  6700. "y": 0,
  6701. "z": 0
  6702. },
  6703. "_id": "f0DtWoK2tH3Ys1OuKoe1EY"
  6704. },
  6705. {
  6706. "__type__": "cc.Node",
  6707. "_name": "lightBlue02",
  6708. "_objFlags": 0,
  6709. "_parent": {
  6710. "__id__": 266
  6711. },
  6712. "_children": [],
  6713. "_active": true,
  6714. "_components": [
  6715. {
  6716. "__id__": 268
  6717. }
  6718. ],
  6719. "_prefab": null,
  6720. "_lpos": {
  6721. "__type__": "cc.Vec3",
  6722. "x": 0,
  6723. "y": 0,
  6724. "z": 0
  6725. },
  6726. "_lrot": {
  6727. "__type__": "cc.Quat",
  6728. "x": 0.7071067811865475,
  6729. "y": 0,
  6730. "z": 0,
  6731. "w": 0.7071067811865477
  6732. },
  6733. "_lscale": {
  6734. "__type__": "cc.Vec3",
  6735. "x": 0.62,
  6736. "y": 0.438,
  6737. "z": 0.303
  6738. },
  6739. "_layer": 1073741824,
  6740. "_euler": {
  6741. "__type__": "cc.Vec3",
  6742. "x": 89.99999999999999,
  6743. "y": 0,
  6744. "z": 0
  6745. },
  6746. "_id": "3b+JasVW5AT56/Y2LRT3oJ"
  6747. },
  6748. {
  6749. "__type__": "cc.MeshRenderer",
  6750. "_name": "Plane<ModelComponent>",
  6751. "_objFlags": 0,
  6752. "__editorExtras__": {},
  6753. "node": {
  6754. "__id__": 267
  6755. },
  6756. "_enabled": true,
  6757. "__prefab": {
  6758. "__id__": 269
  6759. },
  6760. "_materials": [
  6761. {
  6762. "__uuid__": "3b4e3e93-7978-489a-884e-b46d256052de",
  6763. "__expectedType__": "cc.Material"
  6764. }
  6765. ],
  6766. "_visFlags": 0,
  6767. "lightmapSettings": {
  6768. "__id__": 270
  6769. },
  6770. "_mesh": {
  6771. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  6772. "__expectedType__": "cc.Mesh"
  6773. },
  6774. "_shadowCastingMode": 0,
  6775. "_shadowReceivingMode": 1,
  6776. "_enableMorph": true,
  6777. "_id": "9bM6QFv7hCg60VlI/aNw4j"
  6778. },
  6779. {
  6780. "__type__": "cc.CompPrefabInfo",
  6781. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  6782. },
  6783. {
  6784. "__type__": "cc.ModelLightmapSettings",
  6785. "texture": null,
  6786. "uvParam": {
  6787. "__type__": "cc.Vec4",
  6788. "x": 0,
  6789. "y": 0,
  6790. "z": 0,
  6791. "w": 0
  6792. },
  6793. "_bakeable": false,
  6794. "_castShadow": false,
  6795. "_receiveShadow": false,
  6796. "_recieveShadow": false,
  6797. "_lightmapSize": 64
  6798. },
  6799. {
  6800. "__type__": "cc.Node",
  6801. "_name": "whiteLine01",
  6802. "_objFlags": 0,
  6803. "_parent": {
  6804. "__id__": 266
  6805. },
  6806. "_children": [],
  6807. "_active": true,
  6808. "_components": [
  6809. {
  6810. "__id__": 272
  6811. }
  6812. ],
  6813. "_prefab": null,
  6814. "_lpos": {
  6815. "__type__": "cc.Vec3",
  6816. "x": 0,
  6817. "y": 0,
  6818. "z": -1.7763568394002505e-15
  6819. },
  6820. "_lrot": {
  6821. "__type__": "cc.Quat",
  6822. "x": 0.7071067811865475,
  6823. "y": 0,
  6824. "z": 0,
  6825. "w": 0.7071067811865476
  6826. },
  6827. "_lscale": {
  6828. "__type__": "cc.Vec3",
  6829. "x": 0.617,
  6830. "y": 1,
  6831. "z": 0.225
  6832. },
  6833. "_layer": 1073741824,
  6834. "_euler": {
  6835. "__type__": "cc.Vec3",
  6836. "x": 89.99999999999999,
  6837. "y": 0,
  6838. "z": 0
  6839. },
  6840. "_id": "1bAOlPcQRFp6Jc81wu0lux"
  6841. },
  6842. {
  6843. "__type__": "cc.MeshRenderer",
  6844. "_name": "Plane<ModelComponent>",
  6845. "_objFlags": 0,
  6846. "__editorExtras__": {},
  6847. "node": {
  6848. "__id__": 271
  6849. },
  6850. "_enabled": true,
  6851. "__prefab": {
  6852. "__id__": 273
  6853. },
  6854. "_materials": [
  6855. {
  6856. "__uuid__": "cf9c0db7-a8aa-4ead-958e-c8f97f546ebd",
  6857. "__expectedType__": "cc.Material"
  6858. }
  6859. ],
  6860. "_visFlags": 0,
  6861. "lightmapSettings": {
  6862. "__id__": 274
  6863. },
  6864. "_mesh": {
  6865. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  6866. "__expectedType__": "cc.Mesh"
  6867. },
  6868. "_shadowCastingMode": 0,
  6869. "_shadowReceivingMode": 1,
  6870. "_enableMorph": true,
  6871. "_id": "56wJQJsflEKrL41Fn8VRxO"
  6872. },
  6873. {
  6874. "__type__": "cc.CompPrefabInfo",
  6875. "fileId": "e0uHCYkZ1D1I9glcT6oLf2"
  6876. },
  6877. {
  6878. "__type__": "cc.ModelLightmapSettings",
  6879. "texture": null,
  6880. "uvParam": {
  6881. "__type__": "cc.Vec4",
  6882. "x": 0,
  6883. "y": 0,
  6884. "z": 0,
  6885. "w": 0
  6886. },
  6887. "_bakeable": false,
  6888. "_castShadow": false,
  6889. "_receiveShadow": false,
  6890. "_recieveShadow": false,
  6891. "_lightmapSize": 64
  6892. },
  6893. {
  6894. "__type__": "cc.Node",
  6895. "_name": "lightY01",
  6896. "_objFlags": 0,
  6897. "__editorExtras__": {
  6898. "mountedRoot": {
  6899. "__id__": 276
  6900. }
  6901. },
  6902. "_parent": {
  6903. "__id__": 266
  6904. },
  6905. "_children": [],
  6906. "_active": true,
  6907. "_components": [
  6908. {
  6909. "__id__": 277
  6910. }
  6911. ],
  6912. "_prefab": null,
  6913. "_lpos": {
  6914. "__type__": "cc.Vec3",
  6915. "x": -0.027,
  6916. "y": 0,
  6917. "z": 0.34
  6918. },
  6919. "_lrot": {
  6920. "__type__": "cc.Quat",
  6921. "x": 0.7071067811865475,
  6922. "y": 0,
  6923. "z": 0,
  6924. "w": 0.7071067811865477
  6925. },
  6926. "_lscale": {
  6927. "__type__": "cc.Vec3",
  6928. "x": 0.748,
  6929. "y": 0.438,
  6930. "z": 0.438
  6931. },
  6932. "_layer": 1073741824,
  6933. "_euler": {
  6934. "__type__": "cc.Vec3",
  6935. "x": 89.99999999999999,
  6936. "y": 0,
  6937. "z": 0
  6938. },
  6939. "_id": "d1x3bfYoRP27kqehxmJ4x2"
  6940. },
  6941. {
  6942. "__type__": "cc.Node",
  6943. "_name": "tvShow",
  6944. "_objFlags": 0,
  6945. "_parent": null,
  6946. "_children": [],
  6947. "_active": true,
  6948. "_components": [],
  6949. "_prefab": null,
  6950. "_lpos": {
  6951. "__type__": "cc.Vec3",
  6952. "x": 0,
  6953. "y": 3.257,
  6954. "z": -11.045
  6955. },
  6956. "_lrot": {
  6957. "__type__": "cc.Quat",
  6958. "x": 0,
  6959. "y": 0,
  6960. "z": 0,
  6961. "w": 1
  6962. },
  6963. "_lscale": {
  6964. "__type__": "cc.Vec3",
  6965. "x": 1,
  6966. "y": 1,
  6967. "z": 1
  6968. },
  6969. "_layer": 1073741824,
  6970. "_euler": {
  6971. "__type__": "cc.Vec3",
  6972. "x": 0,
  6973. "y": 0,
  6974. "z": 0
  6975. },
  6976. "_id": "6ffQHAFJZHUZsxDC2M9IBc"
  6977. },
  6978. {
  6979. "__type__": "cc.MeshRenderer",
  6980. "_name": "Plane<ModelComponent>",
  6981. "_objFlags": 0,
  6982. "__editorExtras__": {},
  6983. "node": {
  6984. "__id__": 275
  6985. },
  6986. "_enabled": true,
  6987. "__prefab": {
  6988. "__id__": 278
  6989. },
  6990. "_materials": [
  6991. {
  6992. "__uuid__": "a7d7cfbb-6369-445e-8354-819c22110fe0",
  6993. "__expectedType__": "cc.Material"
  6994. }
  6995. ],
  6996. "_visFlags": 0,
  6997. "lightmapSettings": {
  6998. "__id__": 279
  6999. },
  7000. "_mesh": {
  7001. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e",
  7002. "__expectedType__": "cc.Mesh"
  7003. },
  7004. "_shadowCastingMode": 0,
  7005. "_shadowReceivingMode": 1,
  7006. "_enableMorph": true,
  7007. "_id": "c2dNqr8pFPcKL4K3p6XIF8"
  7008. },
  7009. {
  7010. "__type__": "cc.CompPrefabInfo",
  7011. "fileId": "c4DCwYBghPEIp+DjNpQojN"
  7012. },
  7013. {
  7014. "__type__": "cc.ModelLightmapSettings",
  7015. "texture": null,
  7016. "uvParam": {
  7017. "__type__": "cc.Vec4",
  7018. "x": 0,
  7019. "y": 0,
  7020. "z": 0,
  7021. "w": 0
  7022. },
  7023. "_bakeable": false,
  7024. "_castShadow": false,
  7025. "_receiveShadow": false,
  7026. "_recieveShadow": false,
  7027. "_lightmapSize": 64
  7028. },
  7029. {
  7030. "__type__": "cc.Animation",
  7031. "_name": "",
  7032. "_objFlags": 0,
  7033. "__editorExtras__": {},
  7034. "node": {
  7035. "__id__": 266
  7036. },
  7037. "_enabled": true,
  7038. "__prefab": {
  7039. "__id__": 281
  7040. },
  7041. "playOnLoad": false,
  7042. "_clips": [
  7043. {
  7044. "__uuid__": "8f24113b-6ae3-4981-9542-c74d3c0d563c",
  7045. "__expectedType__": "cc.AnimationClip"
  7046. },
  7047. {
  7048. "__uuid__": "7b5fb08a-3d39-4431-ba60-d611b9a0100f",
  7049. "__expectedType__": "cc.AnimationClip"
  7050. }
  7051. ],
  7052. "_defaultClip": null,
  7053. "_id": "82thFGEidG07pRwLJeNTrm"
  7054. },
  7055. {
  7056. "__type__": "cc.CompPrefabInfo",
  7057. "fileId": "f3PUhAc4FNr4r5gTuCPZqN"
  7058. },
  7059. {
  7060. "__type__": "cc.SceneGlobals",
  7061. "ambient": {
  7062. "__id__": 283
  7063. },
  7064. "shadows": {
  7065. "__id__": 284
  7066. },
  7067. "_skybox": {
  7068. "__id__": 285
  7069. },
  7070. "fog": {
  7071. "__id__": 286
  7072. }
  7073. },
  7074. {
  7075. "__type__": "cc.AmbientInfo",
  7076. "_skyColor": {
  7077. "__type__": "cc.Color",
  7078. "r": 162,
  7079. "g": 182,
  7080. "b": 202,
  7081. "a": 1
  7082. },
  7083. "_skyIllum": 60000,
  7084. "_groundAlbedo": {
  7085. "__type__": "cc.Color",
  7086. "r": 51,
  7087. "g": 51,
  7088. "b": 51,
  7089. "a": 255
  7090. }
  7091. },
  7092. {
  7093. "__type__": "cc.ShadowsInfo",
  7094. "_type": 1,
  7095. "_enabled": true,
  7096. "_normal": {
  7097. "__type__": "cc.Vec3",
  7098. "x": 0,
  7099. "y": 1,
  7100. "z": 0
  7101. },
  7102. "_distance": 0,
  7103. "_shadowColor": {
  7104. "__type__": "cc.Color",
  7105. "r": 76,
  7106. "g": 76,
  7107. "b": 76,
  7108. "a": 255
  7109. },
  7110. "_fixedArea": false,
  7111. "_pcf": 2,
  7112. "_bias": 0.1,
  7113. "_normalBias": 0,
  7114. "_near": 0.01,
  7115. "_far": 300,
  7116. "_shadowDistance": 100,
  7117. "_invisibleOcclusionRange": 200,
  7118. "_orthoSize": 20,
  7119. "_maxReceived": 6,
  7120. "_size": {
  7121. "__type__": "cc.Vec2",
  7122. "x": 512,
  7123. "y": 512
  7124. },
  7125. "_saturation": 1
  7126. },
  7127. {
  7128. "__type__": "cc.SkyboxInfo",
  7129. "_envmap": null,
  7130. "_isRGBE": false,
  7131. "_enabled": false,
  7132. "_useIBL": false
  7133. },
  7134. {
  7135. "__type__": "cc.FogInfo",
  7136. "_type": 0,
  7137. "_fogColor": {
  7138. "__type__": "cc.Color",
  7139. "r": 200,
  7140. "g": 200,
  7141. "b": 200,
  7142. "a": 255
  7143. },
  7144. "_enabled": false,
  7145. "_fogDensity": 0.3,
  7146. "_fogStart": 0.5,
  7147. "_fogEnd": 300,
  7148. "_fogAtten": 5,
  7149. "_fogTop": 1.5,
  7150. "_fogRange": 1.2
  7151. }
  7152. ]