mainscene2.ls 202 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990
  1. {
  2. "version":"LAYASCENE3D:02",
  3. "data":{
  4. "type":"Scene3D",
  5. "props":{
  6. "name":"mainscene2",
  7. "ambientColor":[
  8. 0.212,
  9. 0.227,
  10. 0.259
  11. ],
  12. "lightmaps":[],
  13. "enableFog":false,
  14. "fogStart":0,
  15. "fogRange":300,
  16. "fogColor":[
  17. 0.5629866,
  18. 0.8602941,
  19. 0.823387
  20. ]
  21. },
  22. "child":[
  23. {
  24. "type":"Camera",
  25. "instanceID":0,
  26. "props":{
  27. "name":"Main Camera",
  28. "active":true,
  29. "isStatic":false,
  30. "layer":0,
  31. "position":[
  32. -3.78,
  33. 4.87,
  34. -4.46
  35. ],
  36. "rotation":[
  37. 0.06252024,
  38. 0.932876,
  39. 0.1982889,
  40. -0.2941346
  41. ],
  42. "scale":[
  43. 1,
  44. 1,
  45. 1
  46. ],
  47. "clearFlag":0,
  48. "orthographic":false,
  49. "orthographicVerticalSize":10,
  50. "fieldOfView":63.9,
  51. "enableHDR":true,
  52. "nearPlane":0.01,
  53. "farPlane":1000,
  54. "viewport":[
  55. 0,
  56. 0,
  57. 1,
  58. 1
  59. ],
  60. "clearColor":[
  61. 0.0951557,
  62. 0.8088235,
  63. 0.7792923,
  64. 0
  65. ]
  66. },
  67. "components":[],
  68. "child":[]
  69. },
  70. {
  71. "type":"Sprite3D",
  72. "instanceID":1,
  73. "props":{
  74. "name":"Castle01",
  75. "active":true,
  76. "isStatic":false,
  77. "layer":0,
  78. "position":[
  79. -30.23,
  80. -1.45,
  81. 91.77
  82. ],
  83. "rotation":[
  84. 0,
  85. 1,
  86. 0,
  87. 0
  88. ],
  89. "scale":[
  90. 1,
  91. 1,
  92. 1
  93. ]
  94. },
  95. "components":[],
  96. "child":[
  97. {
  98. "type":"MeshSprite3D",
  99. "instanceID":2,
  100. "props":{
  101. "name":"Castle01_0",
  102. "active":true,
  103. "isStatic":false,
  104. "layer":0,
  105. "position":[
  106. 0,
  107. 0,
  108. 0
  109. ],
  110. "rotation":[
  111. 0,
  112. 0,
  113. 0,
  114. -1
  115. ],
  116. "scale":[
  117. 1,
  118. 1,
  119. 1
  120. ],
  121. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_0.lm",
  122. "enableRender":true,
  123. "materials":[
  124. {
  125. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_0Mat.lmat"
  126. }
  127. ]
  128. },
  129. "components":[],
  130. "child":[]
  131. },
  132. {
  133. "type":"MeshSprite3D",
  134. "instanceID":3,
  135. "props":{
  136. "name":"Castle01_1",
  137. "active":true,
  138. "isStatic":false,
  139. "layer":0,
  140. "position":[
  141. 0,
  142. 0,
  143. 0
  144. ],
  145. "rotation":[
  146. 0,
  147. 0,
  148. 0,
  149. -1
  150. ],
  151. "scale":[
  152. 1,
  153. 1,
  154. 1
  155. ],
  156. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_1.lm",
  157. "enableRender":true,
  158. "materials":[
  159. {
  160. "type":"Laya.BlinnPhongMaterial",
  161. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_1Mat.lmat"
  162. }
  163. ]
  164. },
  165. "components":[],
  166. "child":[]
  167. },
  168. {
  169. "type":"MeshSprite3D",
  170. "instanceID":4,
  171. "props":{
  172. "name":"Castle01_2",
  173. "active":true,
  174. "isStatic":false,
  175. "layer":0,
  176. "position":[
  177. 0,
  178. 0,
  179. 0
  180. ],
  181. "rotation":[
  182. 0,
  183. 0,
  184. 0,
  185. -1
  186. ],
  187. "scale":[
  188. 1,
  189. 1,
  190. 1
  191. ],
  192. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_2.lm",
  193. "enableRender":true,
  194. "materials":[
  195. {
  196. "type":"Laya.BlinnPhongMaterial",
  197. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_2Mat.lmat"
  198. }
  199. ]
  200. },
  201. "components":[],
  202. "child":[]
  203. },
  204. {
  205. "type":"MeshSprite3D",
  206. "instanceID":5,
  207. "props":{
  208. "name":"Castle01_3",
  209. "active":true,
  210. "isStatic":false,
  211. "layer":0,
  212. "position":[
  213. 0,
  214. 0,
  215. 0
  216. ],
  217. "rotation":[
  218. 0,
  219. 0,
  220. 0,
  221. -1
  222. ],
  223. "scale":[
  224. 1,
  225. 1,
  226. 1
  227. ],
  228. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_3.lm",
  229. "enableRender":true,
  230. "materials":[
  231. {
  232. "type":"Laya.BlinnPhongMaterial",
  233. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_3Mat.lmat"
  234. }
  235. ]
  236. },
  237. "components":[],
  238. "child":[]
  239. },
  240. {
  241. "type":"MeshSprite3D",
  242. "instanceID":6,
  243. "props":{
  244. "name":"Castle01_4",
  245. "active":true,
  246. "isStatic":false,
  247. "layer":0,
  248. "position":[
  249. 0,
  250. 0,
  251. 0
  252. ],
  253. "rotation":[
  254. 0,
  255. 0,
  256. 0,
  257. -1
  258. ],
  259. "scale":[
  260. 1,
  261. 1,
  262. 1
  263. ],
  264. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_4.lm",
  265. "enableRender":true,
  266. "materials":[
  267. {
  268. "type":"Laya.BlinnPhongMaterial",
  269. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_4Mat.lmat"
  270. }
  271. ]
  272. },
  273. "components":[],
  274. "child":[]
  275. },
  276. {
  277. "type":"MeshSprite3D",
  278. "instanceID":7,
  279. "props":{
  280. "name":"Castle01_5",
  281. "active":true,
  282. "isStatic":false,
  283. "layer":0,
  284. "position":[
  285. 0,
  286. 0,
  287. 0
  288. ],
  289. "rotation":[
  290. 0,
  291. 0,
  292. 0,
  293. -1
  294. ],
  295. "scale":[
  296. 1,
  297. 1,
  298. 1
  299. ],
  300. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_5.lm",
  301. "enableRender":true,
  302. "materials":[
  303. {
  304. "type":"Laya.BlinnPhongMaterial",
  305. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_5Mat.lmat"
  306. }
  307. ]
  308. },
  309. "components":[],
  310. "child":[]
  311. },
  312. {
  313. "type":"MeshSprite3D",
  314. "instanceID":8,
  315. "props":{
  316. "name":"Castle01_7",
  317. "active":true,
  318. "isStatic":false,
  319. "layer":0,
  320. "position":[
  321. 0,
  322. 0,
  323. 0
  324. ],
  325. "rotation":[
  326. 0,
  327. 0,
  328. 0,
  329. -1
  330. ],
  331. "scale":[
  332. 1,
  333. 1,
  334. 1
  335. ],
  336. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_7.lm",
  337. "enableRender":true,
  338. "materials":[
  339. {
  340. "type":"Laya.BlinnPhongMaterial",
  341. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_7Mat.lmat"
  342. }
  343. ]
  344. },
  345. "components":[],
  346. "child":[]
  347. },
  348. {
  349. "type":"MeshSprite3D",
  350. "instanceID":9,
  351. "props":{
  352. "name":"Castle01_8",
  353. "active":true,
  354. "isStatic":false,
  355. "layer":0,
  356. "position":[
  357. 0,
  358. 0,
  359. 0
  360. ],
  361. "rotation":[
  362. 0,
  363. 0,
  364. 0,
  365. -1
  366. ],
  367. "scale":[
  368. 1,
  369. 1,
  370. 1
  371. ],
  372. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_8.lm",
  373. "enableRender":true,
  374. "materials":[
  375. {
  376. "type":"Laya.BlinnPhongMaterial",
  377. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_8Mat.lmat"
  378. }
  379. ]
  380. },
  381. "components":[],
  382. "child":[]
  383. },
  384. {
  385. "type":"MeshSprite3D",
  386. "instanceID":10,
  387. "props":{
  388. "name":"Castle01_9",
  389. "active":true,
  390. "isStatic":false,
  391. "layer":0,
  392. "position":[
  393. 0,
  394. 0,
  395. 0
  396. ],
  397. "rotation":[
  398. 0,
  399. 0,
  400. 0,
  401. -1
  402. ],
  403. "scale":[
  404. 1,
  405. 1,
  406. 1
  407. ],
  408. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_9.lm",
  409. "enableRender":true,
  410. "materials":[
  411. {
  412. "type":"Laya.BlinnPhongMaterial",
  413. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_9Mat.lmat"
  414. }
  415. ]
  416. },
  417. "components":[],
  418. "child":[]
  419. },
  420. {
  421. "type":"MeshSprite3D",
  422. "instanceID":11,
  423. "props":{
  424. "name":"Castle01_10",
  425. "active":true,
  426. "isStatic":false,
  427. "layer":0,
  428. "position":[
  429. 0,
  430. 0,
  431. 0
  432. ],
  433. "rotation":[
  434. 0,
  435. 0,
  436. 0,
  437. -1
  438. ],
  439. "scale":[
  440. 1,
  441. 1,
  442. 1
  443. ],
  444. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_10.lm",
  445. "enableRender":true,
  446. "materials":[
  447. {
  448. "type":"Laya.BlinnPhongMaterial",
  449. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_10Mat.lmat"
  450. }
  451. ]
  452. },
  453. "components":[],
  454. "child":[]
  455. },
  456. {
  457. "type":"MeshSprite3D",
  458. "instanceID":12,
  459. "props":{
  460. "name":"Castle01_11",
  461. "active":true,
  462. "isStatic":false,
  463. "layer":0,
  464. "position":[
  465. 0,
  466. 0,
  467. 0
  468. ],
  469. "rotation":[
  470. 0,
  471. 0,
  472. 0,
  473. -1
  474. ],
  475. "scale":[
  476. 1,
  477. 1,
  478. 1
  479. ],
  480. "meshPath":"Assets/UnityAsset/Mesh/Castle01-Castle01_11.lm",
  481. "enableRender":true,
  482. "materials":[
  483. {
  484. "type":"Laya.BlinnPhongMaterial",
  485. "path":"Assets/UnityAsset/Mesh/Materials/Castle01_11Mat.lmat"
  486. }
  487. ]
  488. },
  489. "components":[],
  490. "child":[]
  491. }
  492. ]
  493. },
  494. {
  495. "type":"DirectionLight",
  496. "instanceID":13,
  497. "props":{
  498. "name":"Directional Light",
  499. "active":true,
  500. "isStatic":false,
  501. "layer":0,
  502. "position":[
  503. 0,
  504. 3,
  505. 0
  506. ],
  507. "rotation":[
  508. -0.1538601,
  509. 0.8441114,
  510. 0.3936156,
  511. 0.3299541
  512. ],
  513. "scale":[
  514. 1,
  515. 1,
  516. 1
  517. ],
  518. "intensity":1,
  519. "lightmapBakedType":0,
  520. "color":[
  521. 1,
  522. 1,
  523. 1
  524. ]
  525. },
  526. "components":[],
  527. "child":[]
  528. },
  529. {
  530. "type":"Sprite3D",
  531. "instanceID":14,
  532. "props":{
  533. "name":"decorate",
  534. "active":true,
  535. "isStatic":false,
  536. "layer":0,
  537. "position":[
  538. -35.83186,
  539. -22.39915,
  540. 98.70051
  541. ],
  542. "rotation":[
  543. 0,
  544. 0,
  545. 0,
  546. -1
  547. ],
  548. "scale":[
  549. 1,
  550. 1,
  551. 1
  552. ]
  553. },
  554. "components":[],
  555. "child":[
  556. {
  557. "type":"Sprite3D",
  558. "instanceID":15,
  559. "props":{
  560. "name":"Combined Mesh (root_ scene) #311810",
  561. "active":true,
  562. "isStatic":false,
  563. "layer":0,
  564. "position":[
  565. 55.73186,
  566. 0.5991554,
  567. -98.70051
  568. ],
  569. "rotation":[
  570. 0,
  571. 0.4938496,
  572. 0,
  573. -0.8695474
  574. ],
  575. "scale":[
  576. 1,
  577. 1,
  578. 1
  579. ]
  580. },
  581. "components":[],
  582. "child":[
  583. {
  584. "type":"MeshSprite3D",
  585. "instanceID":16,
  586. "props":{
  587. "name":"Combined_Mesh_(root:_scene)_0",
  588. "active":true,
  589. "isStatic":false,
  590. "layer":0,
  591. "position":[
  592. 13.9,
  593. 0,
  594. -43.9
  595. ],
  596. "rotation":[
  597. 0,
  598. 0,
  599. 0,
  600. -1
  601. ],
  602. "scale":[
  603. 1,
  604. 1,
  605. 1
  606. ],
  607. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_0.lm",
  608. "enableRender":true,
  609. "materials":[
  610. {
  611. "path":"Assets/yiqilang_mat/bulding.lmat"
  612. }
  613. ]
  614. },
  615. "components":[],
  616. "child":[]
  617. },
  618. {
  619. "type":"MeshSprite3D",
  620. "instanceID":17,
  621. "props":{
  622. "name":"Combined_Mesh_(root:_scene)_1",
  623. "active":true,
  624. "isStatic":false,
  625. "layer":0,
  626. "position":[
  627. -33.6,
  628. -10.9,
  629. 6.8
  630. ],
  631. "rotation":[
  632. 0,
  633. 0,
  634. 0,
  635. -1
  636. ],
  637. "scale":[
  638. 1,
  639. 1,
  640. 1
  641. ],
  642. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_1.lm",
  643. "enableRender":true,
  644. "materials":[
  645. {
  646. "path":"Assets/yiqilang_mat/bulding.lmat"
  647. }
  648. ]
  649. },
  650. "components":[],
  651. "child":[]
  652. },
  653. {
  654. "type":"MeshSprite3D",
  655. "instanceID":18,
  656. "props":{
  657. "name":"Combined_Mesh_(root:_scene)_2",
  658. "active":true,
  659. "isStatic":false,
  660. "layer":0,
  661. "position":[
  662. -55.7,
  663. -26.5,
  664. 7.3
  665. ],
  666. "rotation":[
  667. 0,
  668. 0,
  669. 0,
  670. -1
  671. ],
  672. "scale":[
  673. 1,
  674. 1,
  675. 1
  676. ],
  677. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_2.lm",
  678. "enableRender":true,
  679. "materials":[
  680. {
  681. "path":"Assets/yiqilang_mat/bulding.lmat"
  682. }
  683. ]
  684. },
  685. "components":[],
  686. "child":[]
  687. },
  688. {
  689. "type":"MeshSprite3D",
  690. "instanceID":19,
  691. "props":{
  692. "name":"Combined_Mesh_(root:_scene)_3",
  693. "active":true,
  694. "isStatic":false,
  695. "layer":0,
  696. "position":[
  697. -9.8,
  698. -12.7,
  699. 18.9
  700. ],
  701. "rotation":[
  702. 0,
  703. 0,
  704. 0,
  705. -1
  706. ],
  707. "scale":[
  708. 1,
  709. 1,
  710. 1
  711. ],
  712. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_3.lm",
  713. "enableRender":true,
  714. "materials":[
  715. {
  716. "path":"Assets/yiqilang_mat/bulding.lmat"
  717. }
  718. ]
  719. },
  720. "components":[],
  721. "child":[]
  722. },
  723. {
  724. "type":"MeshSprite3D",
  725. "instanceID":20,
  726. "props":{
  727. "name":"Combined_Mesh_(root:_scene)_4",
  728. "active":true,
  729. "isStatic":false,
  730. "layer":0,
  731. "position":[
  732. -33.6,
  733. -10.9,
  734. 6.8
  735. ],
  736. "rotation":[
  737. 0,
  738. 0,
  739. 0,
  740. -1
  741. ],
  742. "scale":[
  743. 1,
  744. 1,
  745. 1
  746. ],
  747. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_4.lm",
  748. "enableRender":true,
  749. "materials":[
  750. {
  751. "path":"Assets/yiqilang_mat/bulding.lmat"
  752. }
  753. ]
  754. },
  755. "components":[],
  756. "child":[]
  757. },
  758. {
  759. "type":"MeshSprite3D",
  760. "instanceID":21,
  761. "props":{
  762. "name":"Combined_Mesh_(root:_scene)_5",
  763. "active":true,
  764. "isStatic":false,
  765. "layer":0,
  766. "position":[
  767. 13.9,
  768. 0,
  769. -43.9
  770. ],
  771. "rotation":[
  772. 0,
  773. 0,
  774. 0,
  775. -1
  776. ],
  777. "scale":[
  778. 1,
  779. 1,
  780. 1
  781. ],
  782. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_5.lm",
  783. "enableRender":true,
  784. "materials":[
  785. {
  786. "path":"Assets/yiqilang_mat/bulding.lmat"
  787. }
  788. ]
  789. },
  790. "components":[],
  791. "child":[]
  792. },
  793. {
  794. "type":"MeshSprite3D",
  795. "instanceID":22,
  796. "props":{
  797. "name":"Combined_Mesh_(root:_scene)_6",
  798. "active":true,
  799. "isStatic":false,
  800. "layer":0,
  801. "position":[
  802. 164.5,
  803. 0,
  804. 10.9
  805. ],
  806. "rotation":[
  807. 0,
  808. 0,
  809. 0,
  810. -1
  811. ],
  812. "scale":[
  813. 1,
  814. 1,
  815. 1
  816. ],
  817. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_6.lm",
  818. "enableRender":true,
  819. "materials":[
  820. {
  821. "path":"Assets/yiqilang_mat/bulding.lmat"
  822. }
  823. ]
  824. },
  825. "components":[],
  826. "child":[]
  827. },
  828. {
  829. "type":"MeshSprite3D",
  830. "instanceID":23,
  831. "props":{
  832. "name":"Combined_Mesh_(root:_scene)_7",
  833. "active":true,
  834. "isStatic":false,
  835. "layer":0,
  836. "position":[
  837. 92.3,
  838. -7.6,
  839. 3.9
  840. ],
  841. "rotation":[
  842. 0,
  843. 0,
  844. 0,
  845. -1
  846. ],
  847. "scale":[
  848. 1,
  849. 1,
  850. 1
  851. ],
  852. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_7.lm",
  853. "enableRender":true,
  854. "materials":[
  855. {
  856. "path":"Assets/yiqilang_mat/bulding.lmat"
  857. }
  858. ]
  859. },
  860. "components":[],
  861. "child":[]
  862. },
  863. {
  864. "type":"MeshSprite3D",
  865. "instanceID":24,
  866. "props":{
  867. "name":"Combined_Mesh_(root:_scene)_8",
  868. "active":true,
  869. "isStatic":false,
  870. "layer":0,
  871. "position":[
  872. -3.5,
  873. 27.4,
  874. -84.1
  875. ],
  876. "rotation":[
  877. 0,
  878. -0.4046726,
  879. 0,
  880. -0.9144617
  881. ],
  882. "scale":[
  883. 1,
  884. 1,
  885. 1
  886. ],
  887. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_8.lm",
  888. "enableRender":true,
  889. "materials":[
  890. {
  891. "path":"Assets/yiqilang_mat/bulding.lmat"
  892. }
  893. ]
  894. },
  895. "components":[],
  896. "child":[]
  897. },
  898. {
  899. "type":"MeshSprite3D",
  900. "instanceID":25,
  901. "props":{
  902. "name":"Combined_Mesh_(root:_scene)_9",
  903. "active":true,
  904. "isStatic":false,
  905. "layer":0,
  906. "position":[
  907. -9.8,
  908. -12.7,
  909. 18.9
  910. ],
  911. "rotation":[
  912. 0,
  913. 0,
  914. 0,
  915. -1
  916. ],
  917. "scale":[
  918. 1,
  919. 1,
  920. 1
  921. ],
  922. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_9.lm",
  923. "enableRender":true,
  924. "materials":[
  925. {
  926. "path":"Assets/yiqilang_mat/bulding.lmat"
  927. }
  928. ]
  929. },
  930. "components":[],
  931. "child":[]
  932. },
  933. {
  934. "type":"MeshSprite3D",
  935. "instanceID":26,
  936. "props":{
  937. "name":"Combined_Mesh_(root:_scene)_10",
  938. "active":true,
  939. "isStatic":false,
  940. "layer":0,
  941. "position":[
  942. 164.5,
  943. 0,
  944. 10.9
  945. ],
  946. "rotation":[
  947. 0,
  948. 0,
  949. 0,
  950. -1
  951. ],
  952. "scale":[
  953. 1,
  954. 1,
  955. 1
  956. ],
  957. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_10.lm",
  958. "enableRender":true,
  959. "materials":[
  960. {
  961. "path":"Assets/yiqilang_mat/bulding.lmat"
  962. }
  963. ]
  964. },
  965. "components":[],
  966. "child":[]
  967. },
  968. {
  969. "type":"MeshSprite3D",
  970. "instanceID":27,
  971. "props":{
  972. "name":"Combined_Mesh_(root:_scene)_11",
  973. "active":true,
  974. "isStatic":false,
  975. "layer":0,
  976. "position":[
  977. -9.8,
  978. -12.7,
  979. 18.9
  980. ],
  981. "rotation":[
  982. 0,
  983. 0,
  984. 0,
  985. -1
  986. ],
  987. "scale":[
  988. 1,
  989. 1,
  990. 1
  991. ],
  992. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_11.lm",
  993. "enableRender":true,
  994. "materials":[
  995. {
  996. "path":"Assets/yiqilang_mat/bulding.lmat"
  997. }
  998. ]
  999. },
  1000. "components":[],
  1001. "child":[]
  1002. },
  1003. {
  1004. "type":"MeshSprite3D",
  1005. "instanceID":28,
  1006. "props":{
  1007. "name":"Combined_Mesh_(root:_scene)_12",
  1008. "active":true,
  1009. "isStatic":false,
  1010. "layer":0,
  1011. "position":[
  1012. -9.8,
  1013. -12.7,
  1014. 18.9
  1015. ],
  1016. "rotation":[
  1017. 0,
  1018. 0,
  1019. 0,
  1020. -1
  1021. ],
  1022. "scale":[
  1023. 1,
  1024. 1,
  1025. 1
  1026. ],
  1027. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_12.lm",
  1028. "enableRender":true,
  1029. "materials":[
  1030. {
  1031. "path":"Assets/yiqilang_mat/bulding.lmat"
  1032. }
  1033. ]
  1034. },
  1035. "components":[],
  1036. "child":[]
  1037. },
  1038. {
  1039. "type":"MeshSprite3D",
  1040. "instanceID":29,
  1041. "props":{
  1042. "name":"Combined_Mesh_(root:_scene)_13",
  1043. "active":true,
  1044. "isStatic":false,
  1045. "layer":0,
  1046. "position":[
  1047. -33.6,
  1048. -10.9,
  1049. 6.8
  1050. ],
  1051. "rotation":[
  1052. 0,
  1053. 0,
  1054. 0,
  1055. -1
  1056. ],
  1057. "scale":[
  1058. 1,
  1059. 1,
  1060. 1
  1061. ],
  1062. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_13.lm",
  1063. "enableRender":true,
  1064. "materials":[
  1065. {
  1066. "path":"Assets/yiqilang_mat/bulding.lmat"
  1067. }
  1068. ]
  1069. },
  1070. "components":[],
  1071. "child":[]
  1072. },
  1073. {
  1074. "type":"MeshSprite3D",
  1075. "instanceID":30,
  1076. "props":{
  1077. "name":"Combined_Mesh_(root:_scene)_14",
  1078. "active":true,
  1079. "isStatic":false,
  1080. "layer":0,
  1081. "position":[
  1082. -55.7,
  1083. -26.5,
  1084. 7.3
  1085. ],
  1086. "rotation":[
  1087. 0,
  1088. 0,
  1089. 0,
  1090. -1
  1091. ],
  1092. "scale":[
  1093. 1,
  1094. 1,
  1095. 1
  1096. ],
  1097. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_14.lm",
  1098. "enableRender":true,
  1099. "materials":[
  1100. {
  1101. "path":"Assets/yiqilang_mat/bulding.lmat"
  1102. }
  1103. ]
  1104. },
  1105. "components":[],
  1106. "child":[]
  1107. },
  1108. {
  1109. "type":"MeshSprite3D",
  1110. "instanceID":31,
  1111. "props":{
  1112. "name":"Combined_Mesh_(root:_scene)_15",
  1113. "active":true,
  1114. "isStatic":false,
  1115. "layer":0,
  1116. "position":[
  1117. -3.5,
  1118. 27.4,
  1119. -84.1
  1120. ],
  1121. "rotation":[
  1122. 0,
  1123. -0.4046726,
  1124. 0,
  1125. -0.9144617
  1126. ],
  1127. "scale":[
  1128. 1,
  1129. 1,
  1130. 1
  1131. ],
  1132. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_15.lm",
  1133. "enableRender":true,
  1134. "materials":[
  1135. {
  1136. "path":"Assets/yiqilang_mat/bulding.lmat"
  1137. }
  1138. ]
  1139. },
  1140. "components":[],
  1141. "child":[]
  1142. },
  1143. {
  1144. "type":"MeshSprite3D",
  1145. "instanceID":32,
  1146. "props":{
  1147. "name":"Combined_Mesh_(root:_scene)_16",
  1148. "active":true,
  1149. "isStatic":false,
  1150. "layer":0,
  1151. "position":[
  1152. -33.6,
  1153. -10.9,
  1154. 6.8
  1155. ],
  1156. "rotation":[
  1157. 0,
  1158. 0,
  1159. 0,
  1160. -1
  1161. ],
  1162. "scale":[
  1163. 1,
  1164. 1,
  1165. 1
  1166. ],
  1167. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_16.lm",
  1168. "enableRender":true,
  1169. "materials":[
  1170. {
  1171. "path":"Assets/yiqilang_mat/bulding.lmat"
  1172. }
  1173. ]
  1174. },
  1175. "components":[],
  1176. "child":[]
  1177. },
  1178. {
  1179. "type":"MeshSprite3D",
  1180. "instanceID":33,
  1181. "props":{
  1182. "name":"Combined_Mesh_(root:_scene)_17",
  1183. "active":true,
  1184. "isStatic":false,
  1185. "layer":0,
  1186. "position":[
  1187. -9.8,
  1188. -12.7,
  1189. 18.9
  1190. ],
  1191. "rotation":[
  1192. 0,
  1193. 0,
  1194. 0,
  1195. -1
  1196. ],
  1197. "scale":[
  1198. 1,
  1199. 1,
  1200. 1
  1201. ],
  1202. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_17.lm",
  1203. "enableRender":true,
  1204. "materials":[
  1205. {
  1206. "path":"Assets/yiqilang_mat/bulding.lmat"
  1207. }
  1208. ]
  1209. },
  1210. "components":[],
  1211. "child":[]
  1212. },
  1213. {
  1214. "type":"MeshSprite3D",
  1215. "instanceID":34,
  1216. "props":{
  1217. "name":"Combined_Mesh_(root:_scene)_18",
  1218. "active":true,
  1219. "isStatic":false,
  1220. "layer":0,
  1221. "position":[
  1222. 92.3,
  1223. -7.6,
  1224. 3.9
  1225. ],
  1226. "rotation":[
  1227. 0,
  1228. 0,
  1229. 0,
  1230. -1
  1231. ],
  1232. "scale":[
  1233. 1,
  1234. 1,
  1235. 1
  1236. ],
  1237. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_18.lm",
  1238. "enableRender":true,
  1239. "materials":[
  1240. {
  1241. "path":"Assets/yiqilang_mat/bulding.lmat"
  1242. }
  1243. ]
  1244. },
  1245. "components":[],
  1246. "child":[]
  1247. },
  1248. {
  1249. "type":"MeshSprite3D",
  1250. "instanceID":35,
  1251. "props":{
  1252. "name":"Combined_Mesh_(root:_scene)_19",
  1253. "active":true,
  1254. "isStatic":false,
  1255. "layer":0,
  1256. "position":[
  1257. 92.3,
  1258. -7.6,
  1259. 3.9
  1260. ],
  1261. "rotation":[
  1262. 0,
  1263. 0,
  1264. 0,
  1265. -1
  1266. ],
  1267. "scale":[
  1268. 1,
  1269. 1,
  1270. 1
  1271. ],
  1272. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_19.lm",
  1273. "enableRender":true,
  1274. "materials":[
  1275. {
  1276. "path":"Assets/yiqilang_mat/bulding.lmat"
  1277. }
  1278. ]
  1279. },
  1280. "components":[],
  1281. "child":[]
  1282. },
  1283. {
  1284. "type":"MeshSprite3D",
  1285. "instanceID":36,
  1286. "props":{
  1287. "name":"Combined_Mesh_(root:_scene)_20",
  1288. "active":true,
  1289. "isStatic":false,
  1290. "layer":0,
  1291. "position":[
  1292. 55.1,
  1293. 44.9,
  1294. 62
  1295. ],
  1296. "rotation":[
  1297. 0,
  1298. 0,
  1299. 0,
  1300. -1
  1301. ],
  1302. "scale":[
  1303. 1,
  1304. 1,
  1305. 1
  1306. ],
  1307. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_20.lm",
  1308. "enableRender":true,
  1309. "materials":[
  1310. {
  1311. "path":"Assets/yiqilang_mat/bulding.lmat"
  1312. }
  1313. ]
  1314. },
  1315. "components":[],
  1316. "child":[]
  1317. },
  1318. {
  1319. "type":"MeshSprite3D",
  1320. "instanceID":37,
  1321. "props":{
  1322. "name":"Combined_Mesh_(root:_scene)_21",
  1323. "active":true,
  1324. "isStatic":false,
  1325. "layer":0,
  1326. "position":[
  1327. -55.7,
  1328. -26.5,
  1329. 7.3
  1330. ],
  1331. "rotation":[
  1332. 0,
  1333. 0,
  1334. 0,
  1335. -1
  1336. ],
  1337. "scale":[
  1338. 1,
  1339. 1,
  1340. 1
  1341. ],
  1342. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_21.lm",
  1343. "enableRender":true,
  1344. "materials":[
  1345. {
  1346. "path":"Assets/yiqilang_mat/bulding.lmat"
  1347. }
  1348. ]
  1349. },
  1350. "components":[],
  1351. "child":[]
  1352. },
  1353. {
  1354. "type":"MeshSprite3D",
  1355. "instanceID":38,
  1356. "props":{
  1357. "name":"Combined_Mesh_(root:_scene)_22",
  1358. "active":true,
  1359. "isStatic":false,
  1360. "layer":0,
  1361. "position":[
  1362. -33.6,
  1363. -10.9,
  1364. 6.8
  1365. ],
  1366. "rotation":[
  1367. 0,
  1368. 0,
  1369. 0,
  1370. -1
  1371. ],
  1372. "scale":[
  1373. 1,
  1374. 1,
  1375. 1
  1376. ],
  1377. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_22.lm",
  1378. "enableRender":true,
  1379. "materials":[
  1380. {
  1381. "path":"Assets/yiqilang_mat/bulding.lmat"
  1382. }
  1383. ]
  1384. },
  1385. "components":[],
  1386. "child":[]
  1387. },
  1388. {
  1389. "type":"MeshSprite3D",
  1390. "instanceID":39,
  1391. "props":{
  1392. "name":"Combined_Mesh_(root:_scene)_23",
  1393. "active":true,
  1394. "isStatic":false,
  1395. "layer":0,
  1396. "position":[
  1397. 55.1,
  1398. 44.9,
  1399. 62
  1400. ],
  1401. "rotation":[
  1402. 0,
  1403. 0,
  1404. 0,
  1405. -1
  1406. ],
  1407. "scale":[
  1408. 1,
  1409. 1,
  1410. 1
  1411. ],
  1412. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_23.lm",
  1413. "enableRender":true,
  1414. "materials":[
  1415. {
  1416. "path":"Assets/yiqilang_mat/bulding.lmat"
  1417. }
  1418. ]
  1419. },
  1420. "components":[],
  1421. "child":[]
  1422. },
  1423. {
  1424. "type":"MeshSprite3D",
  1425. "instanceID":40,
  1426. "props":{
  1427. "name":"Combined_Mesh_(root:_scene)_24",
  1428. "active":true,
  1429. "isStatic":false,
  1430. "layer":0,
  1431. "position":[
  1432. 92.3,
  1433. -7.6,
  1434. 3.9
  1435. ],
  1436. "rotation":[
  1437. 0,
  1438. 0,
  1439. 0,
  1440. -1
  1441. ],
  1442. "scale":[
  1443. 1,
  1444. 1,
  1445. 1
  1446. ],
  1447. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_24.lm",
  1448. "enableRender":true,
  1449. "materials":[
  1450. {
  1451. "path":"Assets/yiqilang_mat/bulding.lmat"
  1452. }
  1453. ]
  1454. },
  1455. "components":[],
  1456. "child":[]
  1457. },
  1458. {
  1459. "type":"MeshSprite3D",
  1460. "instanceID":41,
  1461. "props":{
  1462. "name":"Combined_Mesh_(root:_scene)_25",
  1463. "active":true,
  1464. "isStatic":false,
  1465. "layer":0,
  1466. "position":[
  1467. 13.9,
  1468. 0,
  1469. -43.9
  1470. ],
  1471. "rotation":[
  1472. 0,
  1473. 0,
  1474. 0,
  1475. -1
  1476. ],
  1477. "scale":[
  1478. 1,
  1479. 1,
  1480. 1
  1481. ],
  1482. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_25.lm",
  1483. "enableRender":true,
  1484. "materials":[
  1485. {
  1486. "path":"Assets/yiqilang_mat/bulding.lmat"
  1487. }
  1488. ]
  1489. },
  1490. "components":[],
  1491. "child":[]
  1492. },
  1493. {
  1494. "type":"MeshSprite3D",
  1495. "instanceID":42,
  1496. "props":{
  1497. "name":"Combined_Mesh_(root:_scene)_26",
  1498. "active":true,
  1499. "isStatic":false,
  1500. "layer":0,
  1501. "position":[
  1502. -55.7,
  1503. -26.5,
  1504. 7.3
  1505. ],
  1506. "rotation":[
  1507. 0,
  1508. 0,
  1509. 0,
  1510. -1
  1511. ],
  1512. "scale":[
  1513. 1,
  1514. 1,
  1515. 1
  1516. ],
  1517. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_26.lm",
  1518. "enableRender":true,
  1519. "materials":[
  1520. {
  1521. "path":"Assets/yiqilang_mat/bulding.lmat"
  1522. }
  1523. ]
  1524. },
  1525. "components":[],
  1526. "child":[]
  1527. },
  1528. {
  1529. "type":"MeshSprite3D",
  1530. "instanceID":43,
  1531. "props":{
  1532. "name":"Combined_Mesh_(root:_scene)_27",
  1533. "active":true,
  1534. "isStatic":false,
  1535. "layer":0,
  1536. "position":[
  1537. 164.5,
  1538. 0,
  1539. 10.9
  1540. ],
  1541. "rotation":[
  1542. 0,
  1543. 0,
  1544. 0,
  1545. -1
  1546. ],
  1547. "scale":[
  1548. 1,
  1549. 1,
  1550. 1
  1551. ],
  1552. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_27.lm",
  1553. "enableRender":true,
  1554. "materials":[
  1555. {
  1556. "path":"Assets/yiqilang_mat/bulding.lmat"
  1557. }
  1558. ]
  1559. },
  1560. "components":[],
  1561. "child":[]
  1562. },
  1563. {
  1564. "type":"MeshSprite3D",
  1565. "instanceID":44,
  1566. "props":{
  1567. "name":"Combined_Mesh_(root:_scene)_28",
  1568. "active":true,
  1569. "isStatic":false,
  1570. "layer":0,
  1571. "position":[
  1572. -83.7,
  1573. 0,
  1574. -61.7
  1575. ],
  1576. "rotation":[
  1577. 0,
  1578. -0.4046726,
  1579. 0,
  1580. -0.9144617
  1581. ],
  1582. "scale":[
  1583. 1,
  1584. 1,
  1585. 1
  1586. ],
  1587. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_28.lm",
  1588. "enableRender":true,
  1589. "materials":[
  1590. {
  1591. "path":"Assets/yiqilang_mat/bulding.lmat"
  1592. }
  1593. ]
  1594. },
  1595. "components":[],
  1596. "child":[]
  1597. },
  1598. {
  1599. "type":"MeshSprite3D",
  1600. "instanceID":45,
  1601. "props":{
  1602. "name":"Combined_Mesh_(root:_scene)_29",
  1603. "active":true,
  1604. "isStatic":false,
  1605. "layer":0,
  1606. "position":[
  1607. -55.7,
  1608. -26.5,
  1609. 7.3
  1610. ],
  1611. "rotation":[
  1612. 0,
  1613. 0,
  1614. 0,
  1615. -1
  1616. ],
  1617. "scale":[
  1618. 1,
  1619. 1,
  1620. 1
  1621. ],
  1622. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_29.lm",
  1623. "enableRender":true,
  1624. "materials":[
  1625. {
  1626. "path":"Assets/yiqilang_mat/bulding.lmat"
  1627. }
  1628. ]
  1629. },
  1630. "components":[],
  1631. "child":[]
  1632. },
  1633. {
  1634. "type":"MeshSprite3D",
  1635. "instanceID":46,
  1636. "props":{
  1637. "name":"Combined_Mesh_(root:_scene)_30",
  1638. "active":true,
  1639. "isStatic":false,
  1640. "layer":0,
  1641. "position":[
  1642. 13.9,
  1643. 0,
  1644. -43.9
  1645. ],
  1646. "rotation":[
  1647. 0,
  1648. 0,
  1649. 0,
  1650. -1
  1651. ],
  1652. "scale":[
  1653. 1,
  1654. 1,
  1655. 1
  1656. ],
  1657. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_30.lm",
  1658. "enableRender":true,
  1659. "materials":[
  1660. {
  1661. "path":"Assets/yiqilang_mat/bulding.lmat"
  1662. }
  1663. ]
  1664. },
  1665. "components":[],
  1666. "child":[]
  1667. },
  1668. {
  1669. "type":"MeshSprite3D",
  1670. "instanceID":47,
  1671. "props":{
  1672. "name":"Combined_Mesh_(root:_scene)_31",
  1673. "active":true,
  1674. "isStatic":false,
  1675. "layer":0,
  1676. "position":[
  1677. 92.3,
  1678. -7.6,
  1679. 3.9
  1680. ],
  1681. "rotation":[
  1682. 0,
  1683. 0,
  1684. 0,
  1685. -1
  1686. ],
  1687. "scale":[
  1688. 1,
  1689. 1,
  1690. 1
  1691. ],
  1692. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_31.lm",
  1693. "enableRender":true,
  1694. "materials":[
  1695. {
  1696. "path":"Assets/yiqilang_mat/bulding.lmat"
  1697. }
  1698. ]
  1699. },
  1700. "components":[],
  1701. "child":[]
  1702. },
  1703. {
  1704. "type":"MeshSprite3D",
  1705. "instanceID":48,
  1706. "props":{
  1707. "name":"Combined_Mesh_(root:_scene)_32",
  1708. "active":true,
  1709. "isStatic":false,
  1710. "layer":0,
  1711. "position":[
  1712. -9.8,
  1713. -12.7,
  1714. 18.9
  1715. ],
  1716. "rotation":[
  1717. 0,
  1718. 0,
  1719. 0,
  1720. -1
  1721. ],
  1722. "scale":[
  1723. 1,
  1724. 1,
  1725. 1
  1726. ],
  1727. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_32.lm",
  1728. "enableRender":true,
  1729. "materials":[
  1730. {
  1731. "path":"Assets/yiqilang_mat/bulding.lmat"
  1732. }
  1733. ]
  1734. },
  1735. "components":[],
  1736. "child":[]
  1737. },
  1738. {
  1739. "type":"MeshSprite3D",
  1740. "instanceID":49,
  1741. "props":{
  1742. "name":"Combined_Mesh_(root:_scene)_33",
  1743. "active":true,
  1744. "isStatic":false,
  1745. "layer":0,
  1746. "position":[
  1747. 13.9,
  1748. 0,
  1749. -43.9
  1750. ],
  1751. "rotation":[
  1752. 0,
  1753. 0,
  1754. 0,
  1755. -1
  1756. ],
  1757. "scale":[
  1758. 1,
  1759. 1,
  1760. 1
  1761. ],
  1762. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_33.lm",
  1763. "enableRender":true,
  1764. "materials":[
  1765. {
  1766. "path":"Assets/yiqilang_mat/bulding.lmat"
  1767. }
  1768. ]
  1769. },
  1770. "components":[],
  1771. "child":[]
  1772. },
  1773. {
  1774. "type":"MeshSprite3D",
  1775. "instanceID":50,
  1776. "props":{
  1777. "name":"Combined_Mesh_(root:_scene)_34",
  1778. "active":true,
  1779. "isStatic":false,
  1780. "layer":0,
  1781. "position":[
  1782. -83.7,
  1783. 0,
  1784. -61.7
  1785. ],
  1786. "rotation":[
  1787. 0,
  1788. -0.4046726,
  1789. 0,
  1790. -0.9144617
  1791. ],
  1792. "scale":[
  1793. 1,
  1794. 1,
  1795. 1
  1796. ],
  1797. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_34.lm",
  1798. "enableRender":true,
  1799. "materials":[
  1800. {
  1801. "path":"Assets/yiqilang_mat/bulding.lmat"
  1802. }
  1803. ]
  1804. },
  1805. "components":[],
  1806. "child":[]
  1807. },
  1808. {
  1809. "type":"MeshSprite3D",
  1810. "instanceID":51,
  1811. "props":{
  1812. "name":"Combined_Mesh_(root:_scene)_35",
  1813. "active":true,
  1814. "isStatic":false,
  1815. "layer":0,
  1816. "position":[
  1817. 92.3,
  1818. -7.6,
  1819. 3.9
  1820. ],
  1821. "rotation":[
  1822. 0,
  1823. 0,
  1824. 0,
  1825. -1
  1826. ],
  1827. "scale":[
  1828. 1,
  1829. 1,
  1830. 1
  1831. ],
  1832. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_35.lm",
  1833. "enableRender":true,
  1834. "materials":[
  1835. {
  1836. "path":"Assets/yiqilang_mat/bulding.lmat"
  1837. }
  1838. ]
  1839. },
  1840. "components":[],
  1841. "child":[]
  1842. },
  1843. {
  1844. "type":"MeshSprite3D",
  1845. "instanceID":52,
  1846. "props":{
  1847. "name":"Combined_Mesh_(root:_scene)_36",
  1848. "active":true,
  1849. "isStatic":false,
  1850. "layer":0,
  1851. "position":[
  1852. -83.7,
  1853. 0,
  1854. -61.7
  1855. ],
  1856. "rotation":[
  1857. 0,
  1858. -0.4046726,
  1859. 0,
  1860. -0.9144617
  1861. ],
  1862. "scale":[
  1863. 1,
  1864. 1,
  1865. 1
  1866. ],
  1867. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_36.lm",
  1868. "enableRender":true,
  1869. "materials":[
  1870. {
  1871. "path":"Assets/yiqilang_mat/bulding.lmat"
  1872. }
  1873. ]
  1874. },
  1875. "components":[],
  1876. "child":[]
  1877. },
  1878. {
  1879. "type":"MeshSprite3D",
  1880. "instanceID":53,
  1881. "props":{
  1882. "name":"Combined_Mesh_(root:_scene)_37",
  1883. "active":true,
  1884. "isStatic":false,
  1885. "layer":0,
  1886. "position":[
  1887. 13.9,
  1888. 0,
  1889. -43.9
  1890. ],
  1891. "rotation":[
  1892. 0,
  1893. 0,
  1894. 0,
  1895. -1
  1896. ],
  1897. "scale":[
  1898. 1,
  1899. 1,
  1900. 1
  1901. ],
  1902. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_37.lm",
  1903. "enableRender":true,
  1904. "materials":[
  1905. {
  1906. "path":"Assets/yiqilang_mat/bulding.lmat"
  1907. }
  1908. ]
  1909. },
  1910. "components":[],
  1911. "child":[]
  1912. },
  1913. {
  1914. "type":"MeshSprite3D",
  1915. "instanceID":54,
  1916. "props":{
  1917. "name":"Combined_Mesh_(root:_scene)_38",
  1918. "active":true,
  1919. "isStatic":false,
  1920. "layer":0,
  1921. "position":[
  1922. -55.7,
  1923. -26.5,
  1924. 7.3
  1925. ],
  1926. "rotation":[
  1927. 0,
  1928. 0,
  1929. 0,
  1930. -1
  1931. ],
  1932. "scale":[
  1933. 1,
  1934. 1,
  1935. 1
  1936. ],
  1937. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_38.lm",
  1938. "enableRender":true,
  1939. "materials":[
  1940. {
  1941. "path":"Assets/yiqilang_mat/bulding.lmat"
  1942. }
  1943. ]
  1944. },
  1945. "components":[],
  1946. "child":[]
  1947. },
  1948. {
  1949. "type":"MeshSprite3D",
  1950. "instanceID":55,
  1951. "props":{
  1952. "name":"Combined_Mesh_(root:_scene)_39",
  1953. "active":true,
  1954. "isStatic":false,
  1955. "layer":0,
  1956. "position":[
  1957. 164.5,
  1958. 0,
  1959. 10.9
  1960. ],
  1961. "rotation":[
  1962. 0,
  1963. 0,
  1964. 0,
  1965. -1
  1966. ],
  1967. "scale":[
  1968. 1,
  1969. 1,
  1970. 1
  1971. ],
  1972. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_39.lm",
  1973. "enableRender":true,
  1974. "materials":[
  1975. {
  1976. "path":"Assets/yiqilang_mat/bulding.lmat"
  1977. }
  1978. ]
  1979. },
  1980. "components":[],
  1981. "child":[]
  1982. },
  1983. {
  1984. "type":"MeshSprite3D",
  1985. "instanceID":56,
  1986. "props":{
  1987. "name":"Combined_Mesh_(root:_scene)_40",
  1988. "active":true,
  1989. "isStatic":false,
  1990. "layer":0,
  1991. "position":[
  1992. -3.5,
  1993. 27.4,
  1994. -84.1
  1995. ],
  1996. "rotation":[
  1997. 0,
  1998. -0.4046726,
  1999. 0,
  2000. -0.9144617
  2001. ],
  2002. "scale":[
  2003. 1,
  2004. 1,
  2005. 1
  2006. ],
  2007. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_40.lm",
  2008. "enableRender":true,
  2009. "materials":[
  2010. {
  2011. "path":"Assets/yiqilang_mat/bulding.lmat"
  2012. }
  2013. ]
  2014. },
  2015. "components":[],
  2016. "child":[]
  2017. },
  2018. {
  2019. "type":"MeshSprite3D",
  2020. "instanceID":57,
  2021. "props":{
  2022. "name":"Combined_Mesh_(root:_scene)_41",
  2023. "active":true,
  2024. "isStatic":false,
  2025. "layer":0,
  2026. "position":[
  2027. -33.6,
  2028. -10.9,
  2029. 6.8
  2030. ],
  2031. "rotation":[
  2032. 0,
  2033. 0,
  2034. 0,
  2035. -1
  2036. ],
  2037. "scale":[
  2038. 1,
  2039. 1,
  2040. 1
  2041. ],
  2042. "meshPath":"Assets/RubikCubeAsset/Mesh/Combined Mesh (root_ scene) _311810-Combined_Mesh_(root__scene)_41.lm",
  2043. "enableRender":true,
  2044. "materials":[
  2045. {
  2046. "path":"Assets/yiqilang_mat/bulding.lmat"
  2047. }
  2048. ]
  2049. },
  2050. "components":[],
  2051. "child":[]
  2052. }
  2053. ]
  2054. },
  2055. {
  2056. "type":"MeshSprite3D",
  2057. "instanceID":58,
  2058. "props":{
  2059. "name":"Plane",
  2060. "active":true,
  2061. "isStatic":false,
  2062. "layer":0,
  2063. "position":[
  2064. 35.33186,
  2065. -1.000845,
  2066. -74.40051
  2067. ],
  2068. "rotation":[
  2069. 0.1141057,
  2070. -0.9080608,
  2071. -0.2866855,
  2072. 0.283226
  2073. ],
  2074. "scale":[
  2075. 6.353818,
  2076. 1,
  2077. 9.774346
  2078. ],
  2079. "meshPath":"Library/unity default resources-Plane.lm",
  2080. "enableRender":true,
  2081. "materials":[
  2082. {
  2083. "path":"Assets/yiqilang_mat/light.lmat"
  2084. }
  2085. ]
  2086. },
  2087. "components":[
  2088. {
  2089. "type":"PhysicsCollider",
  2090. "restitution":0,
  2091. "friction":0.5,
  2092. "rollingFriction":0,
  2093. "shapes":[
  2094. {
  2095. "type":"MeshColliderShape",
  2096. "mesh":"Library/unity default resources-Plane.lm"
  2097. }
  2098. ],
  2099. "isTrigger":false
  2100. }
  2101. ],
  2102. "child":[]
  2103. },
  2104. {
  2105. "type":"MeshSprite3D",
  2106. "instanceID":59,
  2107. "props":{
  2108. "name":"Plane",
  2109. "active":true,
  2110. "isStatic":false,
  2111. "layer":0,
  2112. "position":[
  2113. 57.03187,
  2114. -24.40084,
  2115. -19.80051
  2116. ],
  2117. "rotation":[
  2118. -0.1070025,
  2119. 0.7430005,
  2120. -0.2126669,
  2121. -0.6255187
  2122. ],
  2123. "scale":[
  2124. 6.353814,
  2125. 1,
  2126. 9.774343
  2127. ],
  2128. "meshPath":"Library/unity default resources-Plane.lm",
  2129. "enableRender":true,
  2130. "materials":[
  2131. {
  2132. "path":"Assets/yiqilang_mat/light.lmat"
  2133. }
  2134. ]
  2135. },
  2136. "components":[
  2137. {
  2138. "type":"PhysicsCollider",
  2139. "restitution":0,
  2140. "friction":0.5,
  2141. "rollingFriction":0,
  2142. "shapes":[
  2143. {
  2144. "type":"MeshColliderShape",
  2145. "mesh":"Library/unity default resources-Plane.lm"
  2146. }
  2147. ],
  2148. "isTrigger":false
  2149. }
  2150. ],
  2151. "child":[]
  2152. },
  2153. {
  2154. "type":"MeshSprite3D",
  2155. "instanceID":60,
  2156. "props":{
  2157. "name":"Plane",
  2158. "active":true,
  2159. "isStatic":false,
  2160. "layer":0,
  2161. "position":[
  2162. 4.231863,
  2163. -9.500845,
  2164. -19.80051
  2165. ],
  2166. "rotation":[
  2167. -0.05973899,
  2168. 0.6861536,
  2169. -0.517113,
  2170. -0.5081523
  2171. ],
  2172. "scale":[
  2173. 6.353814,
  2174. 1,
  2175. 9.77434
  2176. ],
  2177. "meshPath":"Library/unity default resources-Plane.lm",
  2178. "enableRender":true,
  2179. "materials":[
  2180. {
  2181. "path":"Assets/yiqilang_mat/light.lmat"
  2182. }
  2183. ]
  2184. },
  2185. "components":[
  2186. {
  2187. "type":"PhysicsCollider",
  2188. "restitution":0,
  2189. "friction":0.5,
  2190. "rollingFriction":0,
  2191. "shapes":[
  2192. {
  2193. "type":"MeshColliderShape",
  2194. "mesh":"Library/unity default resources-Plane.lm"
  2195. }
  2196. ],
  2197. "isTrigger":false
  2198. }
  2199. ],
  2200. "child":[]
  2201. },
  2202. {
  2203. "type":"MeshSprite3D",
  2204. "instanceID":61,
  2205. "props":{
  2206. "name":"Plane",
  2207. "active":true,
  2208. "isStatic":false,
  2209. "layer":0,
  2210. "position":[
  2211. 4.231863,
  2212. -3.000845,
  2213. -19.80051
  2214. ],
  2215. "rotation":[
  2216. 0.3916828,
  2217. 0.9186113,
  2218. -0.04454352,
  2219. -0.02745621
  2220. ],
  2221. "scale":[
  2222. 6.353814,
  2223. 1,
  2224. 9.774343
  2225. ],
  2226. "meshPath":"Library/unity default resources-Plane.lm",
  2227. "enableRender":true,
  2228. "materials":[
  2229. {
  2230. "path":"Assets/yiqilang_mat/light.lmat"
  2231. }
  2232. ]
  2233. },
  2234. "components":[
  2235. {
  2236. "type":"PhysicsCollider",
  2237. "restitution":0,
  2238. "friction":0.5,
  2239. "rollingFriction":0,
  2240. "shapes":[
  2241. {
  2242. "type":"MeshColliderShape",
  2243. "mesh":"Library/unity default resources-Plane.lm"
  2244. }
  2245. ],
  2246. "isTrigger":false
  2247. }
  2248. ],
  2249. "child":[]
  2250. }
  2251. ]
  2252. },
  2253. {
  2254. "type":"Sprite3D",
  2255. "instanceID":62,
  2256. "props":{
  2257. "name":"levelgg",
  2258. "active":true,
  2259. "isStatic":false,
  2260. "layer":0,
  2261. "position":[
  2262. 0,
  2263. 0,
  2264. 0
  2265. ],
  2266. "rotation":[
  2267. 0,
  2268. 0,
  2269. 0,
  2270. -1
  2271. ],
  2272. "scale":[
  2273. 1,
  2274. 1,
  2275. 1
  2276. ]
  2277. },
  2278. "components":[],
  2279. "child":[
  2280. {
  2281. "type":"Sprite3D",
  2282. "instanceID":63,
  2283. "props":{
  2284. "name":"level1",
  2285. "active":true,
  2286. "isStatic":false,
  2287. "layer":0,
  2288. "position":[
  2289. 0,
  2290. 0,
  2291. 0
  2292. ],
  2293. "rotation":[
  2294. 0,
  2295. 0,
  2296. 0,
  2297. -1
  2298. ],
  2299. "scale":[
  2300. 1,
  2301. 1,
  2302. 1
  2303. ]
  2304. },
  2305. "components":[],
  2306. "child":[
  2307. {
  2308. "type":"MeshSprite3D",
  2309. "instanceID":64,
  2310. "props":{
  2311. "name":"ground",
  2312. "active":true,
  2313. "isStatic":false,
  2314. "layer":0,
  2315. "position":[
  2316. -0.193,
  2317. -8.3447E-07,
  2318. 3.28
  2319. ],
  2320. "rotation":[
  2321. 0,
  2322. 0.7071068,
  2323. 0.7071068,
  2324. 0
  2325. ],
  2326. "scale":[
  2327. 2.05,
  2328. 12.7386,
  2329. 1
  2330. ],
  2331. "meshPath":"Assets/model/ground-ground.lm",
  2332. "enableRender":true,
  2333. "materials":[
  2334. {
  2335. "path":"Assets/yiqilang_mat/ground.lmat"
  2336. },
  2337. {
  2338. "path":"Assets/yiqilang_mat/ground.lmat"
  2339. }
  2340. ]
  2341. },
  2342. "components":[
  2343. {
  2344. "type":"Animator",
  2345. "layers":[],
  2346. "cullingMode":0,
  2347. "playOnWake":true
  2348. }
  2349. ],
  2350. "child":[
  2351. {
  2352. "type":"Sprite3D",
  2353. "instanceID":65,
  2354. "props":{
  2355. "name":"GameObject",
  2356. "active":true,
  2357. "isStatic":false,
  2358. "layer":0,
  2359. "position":[
  2360. 0,
  2361. 0,
  2362. 0.5
  2363. ],
  2364. "rotation":[
  2365. 0,
  2366. 0,
  2367. 0,
  2368. -1
  2369. ],
  2370. "scale":[
  2371. 1,
  2372. 1,
  2373. 1
  2374. ]
  2375. },
  2376. "components":[
  2377. {
  2378. "type":"PhysicsCollider",
  2379. "restitution":0,
  2380. "friction":0.5,
  2381. "rollingFriction":0,
  2382. "shapes":[
  2383. {
  2384. "type":"BoxColliderShape",
  2385. "center":[
  2386. 0,
  2387. 0,
  2388. 0
  2389. ],
  2390. "size":[
  2391. 1,
  2392. 1,
  2393. 1
  2394. ]
  2395. }
  2396. ],
  2397. "isTrigger":false
  2398. }
  2399. ],
  2400. "child":[]
  2401. }
  2402. ]
  2403. },
  2404. {
  2405. "type":"Sprite3D",
  2406. "instanceID":66,
  2407. "props":{
  2408. "name":"barrier",
  2409. "active":true,
  2410. "isStatic":false,
  2411. "layer":0,
  2412. "position":[
  2413. 0.607,
  2414. 1.209,
  2415. 2.89
  2416. ],
  2417. "rotation":[
  2418. 0,
  2419. 0,
  2420. 0,
  2421. -1
  2422. ],
  2423. "scale":[
  2424. 2,
  2425. 2,
  2426. 2
  2427. ]
  2428. },
  2429. "components":[],
  2430. "child":[]
  2431. },
  2432. {
  2433. "type":"Sprite3D",
  2434. "instanceID":67,
  2435. "props":{
  2436. "name":"Coin",
  2437. "active":true,
  2438. "isStatic":false,
  2439. "layer":0,
  2440. "position":[
  2441. -3.68,
  2442. 1.014,
  2443. 10.55
  2444. ],
  2445. "rotation":[
  2446. 0,
  2447. 0,
  2448. 0,
  2449. -1
  2450. ],
  2451. "scale":[
  2452. 1.5,
  2453. 1.5,
  2454. 1.5
  2455. ]
  2456. },
  2457. "components":[],
  2458. "child":[]
  2459. },
  2460. {
  2461. "type":"Sprite3D",
  2462. "instanceID":68,
  2463. "props":{
  2464. "name":"barrier",
  2465. "active":true,
  2466. "isStatic":false,
  2467. "layer":0,
  2468. "position":[
  2469. -1.041,
  2470. 1.209,
  2471. 2.89
  2472. ],
  2473. "rotation":[
  2474. 0,
  2475. 0,
  2476. 0,
  2477. -1
  2478. ],
  2479. "scale":[
  2480. 2,
  2481. 2,
  2482. 2
  2483. ]
  2484. },
  2485. "components":[],
  2486. "child":[]
  2487. },
  2488. {
  2489. "type":"MeshSprite3D",
  2490. "instanceID":69,
  2491. "props":{
  2492. "name":"ground",
  2493. "active":true,
  2494. "isStatic":false,
  2495. "layer":0,
  2496. "position":[
  2497. -0.193,
  2498. 0,
  2499. 10.674
  2500. ],
  2501. "rotation":[
  2502. 0,
  2503. 0.7071068,
  2504. 0.7071068,
  2505. 0
  2506. ],
  2507. "scale":[
  2508. 2.05,
  2509. 2.05,
  2510. 1
  2511. ],
  2512. "meshPath":"Assets/model/ground-ground.lm",
  2513. "enableRender":true,
  2514. "materials":[
  2515. {
  2516. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  2517. }
  2518. ]
  2519. },
  2520. "components":[
  2521. {
  2522. "type":"Animator",
  2523. "layers":[],
  2524. "cullingMode":0,
  2525. "playOnWake":true
  2526. }
  2527. ],
  2528. "child":[
  2529. {
  2530. "type":"Sprite3D",
  2531. "instanceID":70,
  2532. "props":{
  2533. "name":"GameObject",
  2534. "active":true,
  2535. "isStatic":false,
  2536. "layer":0,
  2537. "position":[
  2538. 0,
  2539. 0,
  2540. 0.5
  2541. ],
  2542. "rotation":[
  2543. 0,
  2544. 0,
  2545. 0,
  2546. -1
  2547. ],
  2548. "scale":[
  2549. 1,
  2550. 1,
  2551. 1
  2552. ]
  2553. },
  2554. "components":[
  2555. {
  2556. "type":"PhysicsCollider",
  2557. "restitution":0,
  2558. "friction":0.5,
  2559. "rollingFriction":0,
  2560. "shapes":[
  2561. {
  2562. "type":"BoxColliderShape",
  2563. "center":[
  2564. 0,
  2565. 0,
  2566. 0
  2567. ],
  2568. "size":[
  2569. 1,
  2570. 1,
  2571. 1
  2572. ]
  2573. }
  2574. ],
  2575. "isTrigger":false
  2576. }
  2577. ],
  2578. "child":[]
  2579. }
  2580. ]
  2581. },
  2582. {
  2583. "type":"MeshSprite3D",
  2584. "instanceID":71,
  2585. "props":{
  2586. "name":"ground",
  2587. "active":true,
  2588. "isStatic":false,
  2589. "layer":0,
  2590. "position":[
  2591. -10.88,
  2592. 0,
  2593. 18.06
  2594. ],
  2595. "rotation":[
  2596. 0.7071068,
  2597. 0,
  2598. 0,
  2599. -0.7071068
  2600. ],
  2601. "scale":[
  2602. 2.05,
  2603. 12.73861,
  2604. 1
  2605. ],
  2606. "meshPath":"Assets/model/ground-ground.lm",
  2607. "enableRender":true,
  2608. "materials":[
  2609. {
  2610. "path":"Assets/yiqilang_mat/ground.lmat"
  2611. }
  2612. ]
  2613. },
  2614. "components":[
  2615. {
  2616. "type":"Animator",
  2617. "layers":[],
  2618. "cullingMode":0,
  2619. "playOnWake":true
  2620. }
  2621. ],
  2622. "child":[
  2623. {
  2624. "type":"Sprite3D",
  2625. "instanceID":72,
  2626. "props":{
  2627. "name":"GameObject",
  2628. "active":true,
  2629. "isStatic":false,
  2630. "layer":0,
  2631. "position":[
  2632. 0,
  2633. 0,
  2634. 0.5
  2635. ],
  2636. "rotation":[
  2637. 0,
  2638. 0,
  2639. 0,
  2640. -1
  2641. ],
  2642. "scale":[
  2643. 1,
  2644. 1,
  2645. 1
  2646. ]
  2647. },
  2648. "components":[
  2649. {
  2650. "type":"PhysicsCollider",
  2651. "restitution":0,
  2652. "friction":0.5,
  2653. "rollingFriction":0,
  2654. "shapes":[
  2655. {
  2656. "type":"BoxColliderShape",
  2657. "center":[
  2658. 0,
  2659. 0,
  2660. 0
  2661. ],
  2662. "size":[
  2663. 1,
  2664. 1,
  2665. 1
  2666. ]
  2667. }
  2668. ],
  2669. "isTrigger":false
  2670. }
  2671. ],
  2672. "child":[]
  2673. }
  2674. ]
  2675. },
  2676. {
  2677. "type":"MeshSprite3D",
  2678. "instanceID":73,
  2679. "props":{
  2680. "name":"ground",
  2681. "active":true,
  2682. "isStatic":false,
  2683. "layer":0,
  2684. "position":[
  2685. -14.46,
  2686. 0,
  2687. 25.45
  2688. ],
  2689. "rotation":[
  2690. 0.5,
  2691. 0.5,
  2692. 0.5,
  2693. -0.5
  2694. ],
  2695. "scale":[
  2696. 2.05,
  2697. 5.161738,
  2698. 1
  2699. ],
  2700. "meshPath":"Assets/model/ground-ground.lm",
  2701. "enableRender":true,
  2702. "materials":[
  2703. {
  2704. "path":"Assets/yiqilang_mat/ground.lmat"
  2705. }
  2706. ]
  2707. },
  2708. "components":[
  2709. {
  2710. "type":"Animator",
  2711. "layers":[],
  2712. "cullingMode":0,
  2713. "playOnWake":true
  2714. }
  2715. ],
  2716. "child":[
  2717. {
  2718. "type":"Sprite3D",
  2719. "instanceID":74,
  2720. "props":{
  2721. "name":"GameObject",
  2722. "active":true,
  2723. "isStatic":false,
  2724. "layer":0,
  2725. "position":[
  2726. 0,
  2727. 0,
  2728. 0.5
  2729. ],
  2730. "rotation":[
  2731. 0,
  2732. 0,
  2733. 0,
  2734. -1
  2735. ],
  2736. "scale":[
  2737. 1,
  2738. 1,
  2739. 1
  2740. ]
  2741. },
  2742. "components":[
  2743. {
  2744. "type":"PhysicsCollider",
  2745. "restitution":0,
  2746. "friction":0.5,
  2747. "rollingFriction":0,
  2748. "shapes":[
  2749. {
  2750. "type":"BoxColliderShape",
  2751. "center":[
  2752. 0,
  2753. 0,
  2754. 0
  2755. ],
  2756. "size":[
  2757. 1,
  2758. 1,
  2759. 1
  2760. ]
  2761. }
  2762. ],
  2763. "isTrigger":false
  2764. }
  2765. ],
  2766. "child":[]
  2767. }
  2768. ]
  2769. },
  2770. {
  2771. "type":"MeshSprite3D",
  2772. "instanceID":75,
  2773. "props":{
  2774. "name":"ground",
  2775. "active":true,
  2776. "isStatic":false,
  2777. "layer":0,
  2778. "position":[
  2779. -18.04,
  2780. 0,
  2781. 31.21
  2782. ],
  2783. "rotation":[
  2784. 0.7071068,
  2785. 0,
  2786. 0,
  2787. -0.7071068
  2788. ],
  2789. "scale":[
  2790. 2.05,
  2791. 9.471806,
  2792. 1
  2793. ],
  2794. "meshPath":"Assets/model/ground-ground.lm",
  2795. "enableRender":true,
  2796. "materials":[
  2797. {
  2798. "path":"Assets/yiqilang_mat/ground.lmat"
  2799. }
  2800. ]
  2801. },
  2802. "components":[
  2803. {
  2804. "type":"Animator",
  2805. "layers":[],
  2806. "cullingMode":0,
  2807. "playOnWake":true
  2808. }
  2809. ],
  2810. "child":[
  2811. {
  2812. "type":"Sprite3D",
  2813. "instanceID":76,
  2814. "props":{
  2815. "name":"GameObject",
  2816. "active":true,
  2817. "isStatic":false,
  2818. "layer":0,
  2819. "position":[
  2820. 0,
  2821. 0,
  2822. 0.5
  2823. ],
  2824. "rotation":[
  2825. 0,
  2826. 0,
  2827. 0,
  2828. -1
  2829. ],
  2830. "scale":[
  2831. 1,
  2832. 1,
  2833. 1
  2834. ]
  2835. },
  2836. "components":[
  2837. {
  2838. "type":"PhysicsCollider",
  2839. "restitution":0,
  2840. "friction":0.5,
  2841. "rollingFriction":0,
  2842. "shapes":[
  2843. {
  2844. "type":"BoxColliderShape",
  2845. "center":[
  2846. 0,
  2847. 0,
  2848. 0
  2849. ],
  2850. "size":[
  2851. 1,
  2852. 1,
  2853. 1
  2854. ]
  2855. }
  2856. ],
  2857. "isTrigger":false
  2858. }
  2859. ],
  2860. "child":[]
  2861. }
  2862. ]
  2863. },
  2864. {
  2865. "type":"MeshSprite3D",
  2866. "instanceID":77,
  2867. "props":{
  2868. "name":"ground",
  2869. "active":true,
  2870. "isStatic":false,
  2871. "layer":0,
  2872. "position":[
  2873. -19.51,
  2874. 0,
  2875. 36.97
  2876. ],
  2877. "rotation":[
  2878. 0.5,
  2879. 0.5,
  2880. 0.5,
  2881. -0.5
  2882. ],
  2883. "scale":[
  2884. 2.05,
  2885. 1.061787,
  2886. 1
  2887. ],
  2888. "meshPath":"Assets/model/ground-ground.lm",
  2889. "enableRender":true,
  2890. "materials":[
  2891. {
  2892. "path":"Assets/yiqilang_mat/ground.lmat"
  2893. }
  2894. ]
  2895. },
  2896. "components":[
  2897. {
  2898. "type":"Animator",
  2899. "layers":[],
  2900. "cullingMode":0,
  2901. "playOnWake":true
  2902. }
  2903. ],
  2904. "child":[
  2905. {
  2906. "type":"Sprite3D",
  2907. "instanceID":78,
  2908. "props":{
  2909. "name":"GameObject",
  2910. "active":true,
  2911. "isStatic":false,
  2912. "layer":0,
  2913. "position":[
  2914. 0,
  2915. 0,
  2916. 0.5
  2917. ],
  2918. "rotation":[
  2919. 0,
  2920. 0,
  2921. 0,
  2922. -1
  2923. ],
  2924. "scale":[
  2925. 1,
  2926. 1,
  2927. 1
  2928. ]
  2929. },
  2930. "components":[
  2931. {
  2932. "type":"PhysicsCollider",
  2933. "restitution":0,
  2934. "friction":0.5,
  2935. "rollingFriction":0,
  2936. "shapes":[
  2937. {
  2938. "type":"BoxColliderShape",
  2939. "center":[
  2940. 0,
  2941. 0,
  2942. 0
  2943. ],
  2944. "size":[
  2945. 1,
  2946. 1,
  2947. 1
  2948. ]
  2949. }
  2950. ],
  2951. "isTrigger":false
  2952. }
  2953. ],
  2954. "child":[]
  2955. }
  2956. ]
  2957. },
  2958. {
  2959. "type":"MeshSprite3D",
  2960. "instanceID":79,
  2961. "props":{
  2962. "name":"ground",
  2963. "active":true,
  2964. "isStatic":false,
  2965. "layer":0,
  2966. "position":[
  2967. -20.98,
  2968. 0,
  2969. 41.33
  2970. ],
  2971. "rotation":[
  2972. 0.7071068,
  2973. 0,
  2974. 0,
  2975. -0.7071068
  2976. ],
  2977. "scale":[
  2978. 2.05,
  2979. 6.80676,
  2980. 1
  2981. ],
  2982. "meshPath":"Assets/model/ground-ground.lm",
  2983. "enableRender":true,
  2984. "materials":[
  2985. {
  2986. "path":"Assets/yiqilang_mat/ground.lmat"
  2987. }
  2988. ]
  2989. },
  2990. "components":[
  2991. {
  2992. "type":"Animator",
  2993. "layers":[],
  2994. "cullingMode":0,
  2995. "playOnWake":true
  2996. }
  2997. ],
  2998. "child":[
  2999. {
  3000. "type":"Sprite3D",
  3001. "instanceID":80,
  3002. "props":{
  3003. "name":"GameObject",
  3004. "active":true,
  3005. "isStatic":false,
  3006. "layer":0,
  3007. "position":[
  3008. 0,
  3009. 0,
  3010. 0.5
  3011. ],
  3012. "rotation":[
  3013. 0,
  3014. 0,
  3015. 0,
  3016. -1
  3017. ],
  3018. "scale":[
  3019. 1,
  3020. 1,
  3021. 1
  3022. ]
  3023. },
  3024. "components":[
  3025. {
  3026. "type":"PhysicsCollider",
  3027. "restitution":0,
  3028. "friction":0.5,
  3029. "rollingFriction":0,
  3030. "shapes":[
  3031. {
  3032. "type":"BoxColliderShape",
  3033. "center":[
  3034. 0,
  3035. 0,
  3036. 0
  3037. ],
  3038. "size":[
  3039. 1,
  3040. 1,
  3041. 1
  3042. ]
  3043. }
  3044. ],
  3045. "isTrigger":false
  3046. }
  3047. ],
  3048. "child":[]
  3049. }
  3050. ]
  3051. },
  3052. {
  3053. "type":"MeshSprite3D",
  3054. "instanceID":81,
  3055. "props":{
  3056. "name":"ground",
  3057. "active":true,
  3058. "isStatic":false,
  3059. "layer":0,
  3060. "position":[
  3061. -20.98,
  3062. -1.66,
  3063. 49.6
  3064. ],
  3065. "rotation":[
  3066. 0.7071068,
  3067. 0,
  3068. 0,
  3069. -0.7071068
  3070. ],
  3071. "scale":[
  3072. 2.05,
  3073. 8.236071,
  3074. 1
  3075. ],
  3076. "meshPath":"Assets/model/ground-ground.lm",
  3077. "enableRender":true,
  3078. "materials":[
  3079. {
  3080. "path":"Assets/yiqilang_mat/ground.lmat"
  3081. }
  3082. ]
  3083. },
  3084. "components":[
  3085. {
  3086. "type":"Animator",
  3087. "layers":[],
  3088. "cullingMode":0,
  3089. "playOnWake":true
  3090. }
  3091. ],
  3092. "child":[
  3093. {
  3094. "type":"Sprite3D",
  3095. "instanceID":82,
  3096. "props":{
  3097. "name":"GameObject",
  3098. "active":true,
  3099. "isStatic":false,
  3100. "layer":0,
  3101. "position":[
  3102. 0,
  3103. 0,
  3104. 0.5
  3105. ],
  3106. "rotation":[
  3107. 0,
  3108. 0,
  3109. 0,
  3110. -1
  3111. ],
  3112. "scale":[
  3113. 1,
  3114. 1,
  3115. 1
  3116. ]
  3117. },
  3118. "components":[
  3119. {
  3120. "type":"PhysicsCollider",
  3121. "restitution":0,
  3122. "friction":0.5,
  3123. "rollingFriction":0,
  3124. "shapes":[
  3125. {
  3126. "type":"BoxColliderShape",
  3127. "center":[
  3128. 0,
  3129. 0,
  3130. 0
  3131. ],
  3132. "size":[
  3133. 1,
  3134. 1,
  3135. 1
  3136. ]
  3137. }
  3138. ],
  3139. "isTrigger":false
  3140. }
  3141. ],
  3142. "child":[]
  3143. }
  3144. ]
  3145. },
  3146. {
  3147. "type":"MeshSprite3D",
  3148. "instanceID":83,
  3149. "props":{
  3150. "name":"ground",
  3151. "active":true,
  3152. "isStatic":false,
  3153. "layer":0,
  3154. "position":[
  3155. -22.45,
  3156. -1.66,
  3157. 54.74
  3158. ],
  3159. "rotation":[
  3160. 0.5,
  3161. 0.5,
  3162. 0.5,
  3163. -0.5
  3164. ],
  3165. "scale":[
  3166. 2.05,
  3167. 1.037463,
  3168. 1
  3169. ],
  3170. "meshPath":"Assets/model/ground-ground.lm",
  3171. "enableRender":true,
  3172. "materials":[
  3173. {
  3174. "path":"Assets/yiqilang_mat/ground.lmat"
  3175. }
  3176. ]
  3177. },
  3178. "components":[
  3179. {
  3180. "type":"Animator",
  3181. "layers":[],
  3182. "cullingMode":0,
  3183. "playOnWake":true
  3184. }
  3185. ],
  3186. "child":[
  3187. {
  3188. "type":"Sprite3D",
  3189. "instanceID":84,
  3190. "props":{
  3191. "name":"GameObject",
  3192. "active":true,
  3193. "isStatic":false,
  3194. "layer":0,
  3195. "position":[
  3196. 0,
  3197. 0,
  3198. 0.5
  3199. ],
  3200. "rotation":[
  3201. 0,
  3202. 0,
  3203. 0,
  3204. -1
  3205. ],
  3206. "scale":[
  3207. 1,
  3208. 1,
  3209. 1
  3210. ]
  3211. },
  3212. "components":[
  3213. {
  3214. "type":"PhysicsCollider",
  3215. "restitution":0,
  3216. "friction":0.5,
  3217. "rollingFriction":0,
  3218. "shapes":[
  3219. {
  3220. "type":"BoxColliderShape",
  3221. "center":[
  3222. 0,
  3223. 0,
  3224. 0
  3225. ],
  3226. "size":[
  3227. 1,
  3228. 1,
  3229. 1
  3230. ]
  3231. }
  3232. ],
  3233. "isTrigger":false
  3234. }
  3235. ],
  3236. "child":[]
  3237. }
  3238. ]
  3239. },
  3240. {
  3241. "type":"MeshSprite3D",
  3242. "instanceID":85,
  3243. "props":{
  3244. "name":"ground",
  3245. "active":true,
  3246. "isStatic":false,
  3247. "layer":0,
  3248. "position":[
  3249. -23.92,
  3250. -1.66,
  3251. 59.88
  3252. ],
  3253. "rotation":[
  3254. 0.7071068,
  3255. 0,
  3256. 0,
  3257. -0.7071068
  3258. ],
  3259. "scale":[
  3260. 2.05,
  3261. 8.236073,
  3262. 1
  3263. ],
  3264. "meshPath":"Assets/model/ground-ground.lm",
  3265. "enableRender":true,
  3266. "materials":[
  3267. {
  3268. "path":"Assets/yiqilang_mat/ground.lmat"
  3269. }
  3270. ]
  3271. },
  3272. "components":[
  3273. {
  3274. "type":"Animator",
  3275. "layers":[],
  3276. "cullingMode":0,
  3277. "playOnWake":true
  3278. }
  3279. ],
  3280. "child":[
  3281. {
  3282. "type":"Sprite3D",
  3283. "instanceID":86,
  3284. "props":{
  3285. "name":"GameObject",
  3286. "active":true,
  3287. "isStatic":false,
  3288. "layer":0,
  3289. "position":[
  3290. 0,
  3291. 0,
  3292. 0.5
  3293. ],
  3294. "rotation":[
  3295. 0,
  3296. 0,
  3297. 0,
  3298. -1
  3299. ],
  3300. "scale":[
  3301. 1,
  3302. 1,
  3303. 1
  3304. ]
  3305. },
  3306. "components":[
  3307. {
  3308. "type":"PhysicsCollider",
  3309. "restitution":0,
  3310. "friction":0.5,
  3311. "rollingFriction":0,
  3312. "shapes":[
  3313. {
  3314. "type":"BoxColliderShape",
  3315. "center":[
  3316. 0,
  3317. 0,
  3318. 0
  3319. ],
  3320. "size":[
  3321. 1,
  3322. 1,
  3323. 1
  3324. ]
  3325. }
  3326. ],
  3327. "isTrigger":false
  3328. }
  3329. ],
  3330. "child":[]
  3331. }
  3332. ]
  3333. },
  3334. {
  3335. "type":"MeshSprite3D",
  3336. "instanceID":87,
  3337. "props":{
  3338. "name":"ground",
  3339. "active":true,
  3340. "isStatic":false,
  3341. "layer":0,
  3342. "position":[
  3343. -26.91,
  3344. -1.66,
  3345. 65.02
  3346. ],
  3347. "rotation":[
  3348. 0.5,
  3349. 0.5,
  3350. 0.5,
  3351. -0.5
  3352. ],
  3353. "scale":[
  3354. 2.05,
  3355. 3.933355,
  3356. 1
  3357. ],
  3358. "meshPath":"Assets/model/ground-ground.lm",
  3359. "enableRender":true,
  3360. "materials":[
  3361. {
  3362. "path":"Assets/yiqilang_mat/ground.lmat"
  3363. }
  3364. ]
  3365. },
  3366. "components":[
  3367. {
  3368. "type":"Animator",
  3369. "layers":[],
  3370. "cullingMode":0,
  3371. "playOnWake":true
  3372. }
  3373. ],
  3374. "child":[
  3375. {
  3376. "type":"Sprite3D",
  3377. "instanceID":88,
  3378. "props":{
  3379. "name":"GameObject",
  3380. "active":true,
  3381. "isStatic":false,
  3382. "layer":0,
  3383. "position":[
  3384. 0,
  3385. 0,
  3386. 0.5
  3387. ],
  3388. "rotation":[
  3389. 0,
  3390. 0,
  3391. 0,
  3392. -1
  3393. ],
  3394. "scale":[
  3395. 1,
  3396. 1,
  3397. 1
  3398. ]
  3399. },
  3400. "components":[
  3401. {
  3402. "type":"PhysicsCollider",
  3403. "restitution":0,
  3404. "friction":0.5,
  3405. "rollingFriction":0,
  3406. "shapes":[
  3407. {
  3408. "type":"BoxColliderShape",
  3409. "center":[
  3410. 0,
  3411. 0,
  3412. 0
  3413. ],
  3414. "size":[
  3415. 1,
  3416. 1,
  3417. 1
  3418. ]
  3419. }
  3420. ],
  3421. "isTrigger":false
  3422. }
  3423. ],
  3424. "child":[]
  3425. }
  3426. ]
  3427. },
  3428. {
  3429. "type":"MeshSprite3D",
  3430. "instanceID":89,
  3431. "props":{
  3432. "name":"ground",
  3433. "active":true,
  3434. "isStatic":false,
  3435. "layer":0,
  3436. "position":[
  3437. -29.902,
  3438. -1.66,
  3439. 74.056
  3440. ],
  3441. "rotation":[
  3442. 0.7071068,
  3443. 0,
  3444. 0,
  3445. -0.7071068
  3446. ],
  3447. "scale":[
  3448. 2.05,
  3449. 16.02262,
  3450. 1
  3451. ],
  3452. "meshPath":"Assets/model/ground-ground.lm",
  3453. "enableRender":true,
  3454. "materials":[
  3455. {
  3456. "path":"Assets/yiqilang_mat/ground.lmat"
  3457. }
  3458. ]
  3459. },
  3460. "components":[
  3461. {
  3462. "type":"Animator",
  3463. "layers":[],
  3464. "cullingMode":0,
  3465. "playOnWake":true
  3466. }
  3467. ],
  3468. "child":[
  3469. {
  3470. "type":"Sprite3D",
  3471. "instanceID":90,
  3472. "props":{
  3473. "name":"GameObject",
  3474. "active":true,
  3475. "isStatic":false,
  3476. "layer":0,
  3477. "position":[
  3478. 0,
  3479. 0,
  3480. 0.5
  3481. ],
  3482. "rotation":[
  3483. 0,
  3484. 0,
  3485. 0,
  3486. -1
  3487. ],
  3488. "scale":[
  3489. 1,
  3490. 1,
  3491. 1
  3492. ]
  3493. },
  3494. "components":[
  3495. {
  3496. "type":"PhysicsCollider",
  3497. "restitution":0,
  3498. "friction":0.5,
  3499. "rollingFriction":0,
  3500. "shapes":[
  3501. {
  3502. "type":"BoxColliderShape",
  3503. "center":[
  3504. 0,
  3505. 0,
  3506. 0
  3507. ],
  3508. "size":[
  3509. 1,
  3510. 1,
  3511. 1
  3512. ]
  3513. }
  3514. ],
  3515. "isTrigger":false
  3516. }
  3517. ],
  3518. "child":[]
  3519. }
  3520. ]
  3521. },
  3522. {
  3523. "type":"Sprite3D",
  3524. "instanceID":91,
  3525. "props":{
  3526. "name":"barrier",
  3527. "active":true,
  3528. "isStatic":false,
  3529. "layer":0,
  3530. "position":[
  3531. -0.627,
  3532. 1.209,
  3533. 7.26
  3534. ],
  3535. "rotation":[
  3536. 0,
  3537. 0,
  3538. 0,
  3539. -1
  3540. ],
  3541. "scale":[
  3542. 2,
  3543. 2,
  3544. 2
  3545. ]
  3546. },
  3547. "components":[],
  3548. "child":[]
  3549. },
  3550. {
  3551. "type":"Sprite3D",
  3552. "instanceID":92,
  3553. "props":{
  3554. "name":"barrier",
  3555. "active":true,
  3556. "isStatic":false,
  3557. "layer":0,
  3558. "position":[
  3559. 0.198,
  3560. 1.209,
  3561. 7.26
  3562. ],
  3563. "rotation":[
  3564. 0,
  3565. 0,
  3566. 0,
  3567. -1
  3568. ],
  3569. "scale":[
  3570. 2,
  3571. 2,
  3572. 2
  3573. ]
  3574. },
  3575. "components":[],
  3576. "child":[]
  3577. },
  3578. {
  3579. "type":"Sprite3D",
  3580. "instanceID":93,
  3581. "props":{
  3582. "name":"barrier",
  3583. "active":true,
  3584. "isStatic":false,
  3585. "layer":0,
  3586. "position":[
  3587. -10.869,
  3588. 1.209,
  3589. 13.38
  3590. ],
  3591. "rotation":[
  3592. 0,
  3593. 0,
  3594. 0,
  3595. -1
  3596. ],
  3597. "scale":[
  3598. 2,
  3599. 2,
  3600. 2
  3601. ]
  3602. },
  3603. "components":[],
  3604. "child":[]
  3605. },
  3606. {
  3607. "type":"Sprite3D",
  3608. "instanceID":94,
  3609. "props":{
  3610. "name":"barrier",
  3611. "active":true,
  3612. "isStatic":false,
  3613. "layer":0,
  3614. "position":[
  3615. -11.279,
  3616. 1.209,
  3617. 13.38
  3618. ],
  3619. "rotation":[
  3620. 0,
  3621. 0,
  3622. 0,
  3623. -1
  3624. ],
  3625. "scale":[
  3626. 2,
  3627. 2,
  3628. 2
  3629. ]
  3630. },
  3631. "components":[],
  3632. "child":[]
  3633. },
  3634. {
  3635. "type":"Sprite3D",
  3636. "instanceID":95,
  3637. "props":{
  3638. "name":"barrier",
  3639. "active":true,
  3640. "isStatic":false,
  3641. "layer":0,
  3642. "position":[
  3643. -11.689,
  3644. 1.209,
  3645. 13.38
  3646. ],
  3647. "rotation":[
  3648. 0,
  3649. 0,
  3650. 0,
  3651. -1
  3652. ],
  3653. "scale":[
  3654. 2,
  3655. 2,
  3656. 2
  3657. ]
  3658. },
  3659. "components":[],
  3660. "child":[]
  3661. },
  3662. {
  3663. "type":"Sprite3D",
  3664. "instanceID":96,
  3665. "props":{
  3666. "name":"barrier",
  3667. "active":true,
  3668. "isStatic":false,
  3669. "layer":0,
  3670. "position":[
  3671. -11.279,
  3672. 1.614,
  3673. 13.38
  3674. ],
  3675. "rotation":[
  3676. 0,
  3677. 0,
  3678. 0,
  3679. -1
  3680. ],
  3681. "scale":[
  3682. 2,
  3683. 2,
  3684. 2
  3685. ]
  3686. },
  3687. "components":[],
  3688. "child":[]
  3689. },
  3690. {
  3691. "type":"Sprite3D",
  3692. "instanceID":97,
  3693. "props":{
  3694. "name":"barrier",
  3695. "active":true,
  3696. "isStatic":false,
  3697. "layer":0,
  3698. "position":[
  3699. -10.459,
  3700. 2.008,
  3701. 21.52
  3702. ],
  3703. "rotation":[
  3704. 0,
  3705. 0,
  3706. 0,
  3707. -1
  3708. ],
  3709. "scale":[
  3710. 2,
  3711. 2,
  3712. 2
  3713. ]
  3714. },
  3715. "components":[],
  3716. "child":[]
  3717. },
  3718. {
  3719. "type":"Sprite3D",
  3720. "instanceID":98,
  3721. "props":{
  3722. "name":"barrier",
  3723. "active":true,
  3724. "isStatic":false,
  3725. "layer":0,
  3726. "position":[
  3727. -10.049,
  3728. 1.614,
  3729. 21.52
  3730. ],
  3731. "rotation":[
  3732. 0,
  3733. 0,
  3734. 0,
  3735. -1
  3736. ],
  3737. "scale":[
  3738. 2,
  3739. 2,
  3740. 2
  3741. ]
  3742. },
  3743. "components":[],
  3744. "child":[]
  3745. },
  3746. {
  3747. "type":"Sprite3D",
  3748. "instanceID":99,
  3749. "props":{
  3750. "name":"barrier",
  3751. "active":true,
  3752. "isStatic":false,
  3753. "layer":0,
  3754. "position":[
  3755. -10.459,
  3756. 1.614,
  3757. 21.52
  3758. ],
  3759. "rotation":[
  3760. 0,
  3761. 0,
  3762. 0,
  3763. -1
  3764. ],
  3765. "scale":[
  3766. 2,
  3767. 2,
  3768. 2
  3769. ]
  3770. },
  3771. "components":[],
  3772. "child":[]
  3773. },
  3774. {
  3775. "type":"Sprite3D",
  3776. "instanceID":100,
  3777. "props":{
  3778. "name":"barrier",
  3779. "active":true,
  3780. "isStatic":false,
  3781. "layer":0,
  3782. "position":[
  3783. -10.869,
  3784. 1.209,
  3785. 21.52
  3786. ],
  3787. "rotation":[
  3788. 0,
  3789. 0,
  3790. 0,
  3791. -1
  3792. ],
  3793. "scale":[
  3794. 2,
  3795. 2,
  3796. 2
  3797. ]
  3798. },
  3799. "components":[],
  3800. "child":[]
  3801. },
  3802. {
  3803. "type":"Sprite3D",
  3804. "instanceID":101,
  3805. "props":{
  3806. "name":"barrier",
  3807. "active":true,
  3808. "isStatic":false,
  3809. "layer":0,
  3810. "position":[
  3811. -10.459,
  3812. 1.209,
  3813. 21.52
  3814. ],
  3815. "rotation":[
  3816. 0,
  3817. 0,
  3818. 0,
  3819. -1
  3820. ],
  3821. "scale":[
  3822. 2,
  3823. 2,
  3824. 2
  3825. ]
  3826. },
  3827. "components":[],
  3828. "child":[]
  3829. },
  3830. {
  3831. "type":"Sprite3D",
  3832. "instanceID":102,
  3833. "props":{
  3834. "name":"barrier",
  3835. "active":true,
  3836. "isStatic":false,
  3837. "layer":0,
  3838. "position":[
  3839. -10.049,
  3840. 1.209,
  3841. 21.52
  3842. ],
  3843. "rotation":[
  3844. 0,
  3845. 0,
  3846. 0,
  3847. -1
  3848. ],
  3849. "scale":[
  3850. 2,
  3851. 2,
  3852. 2
  3853. ]
  3854. },
  3855. "components":[],
  3856. "child":[]
  3857. },
  3858. {
  3859. "type":"Sprite3D",
  3860. "instanceID":103,
  3861. "props":{
  3862. "name":"barrier",
  3863. "active":true,
  3864. "isStatic":false,
  3865. "layer":0,
  3866. "position":[
  3867. -17.209,
  3868. 1.209,
  3869. 27.32
  3870. ],
  3871. "rotation":[
  3872. 0,
  3873. 0,
  3874. 0,
  3875. -1
  3876. ],
  3877. "scale":[
  3878. 2,
  3879. 2,
  3880. 2
  3881. ]
  3882. },
  3883. "components":[],
  3884. "child":[]
  3885. },
  3886. {
  3887. "type":"Sprite3D",
  3888. "instanceID":104,
  3889. "props":{
  3890. "name":"barrier",
  3891. "active":true,
  3892. "isStatic":false,
  3893. "layer":0,
  3894. "position":[
  3895. -17.619,
  3896. 1.209,
  3897. 27.32
  3898. ],
  3899. "rotation":[
  3900. 0,
  3901. 0,
  3902. 0,
  3903. -1
  3904. ],
  3905. "scale":[
  3906. 2,
  3907. 2,
  3908. 2
  3909. ]
  3910. },
  3911. "components":[],
  3912. "child":[]
  3913. },
  3914. {
  3915. "type":"Sprite3D",
  3916. "instanceID":105,
  3917. "props":{
  3918. "name":"barrier",
  3919. "active":true,
  3920. "isStatic":false,
  3921. "layer":0,
  3922. "position":[
  3923. -18.029,
  3924. 1.209,
  3925. 27.32
  3926. ],
  3927. "rotation":[
  3928. 0,
  3929. 0,
  3930. 0,
  3931. -1
  3932. ],
  3933. "scale":[
  3934. 2,
  3935. 2,
  3936. 2
  3937. ]
  3938. },
  3939. "components":[],
  3940. "child":[]
  3941. },
  3942. {
  3943. "type":"Sprite3D",
  3944. "instanceID":106,
  3945. "props":{
  3946. "name":"barrier",
  3947. "active":true,
  3948. "isStatic":false,
  3949. "layer":0,
  3950. "position":[
  3951. -18.439,
  3952. 1.209,
  3953. 27.32
  3954. ],
  3955. "rotation":[
  3956. 0,
  3957. 0,
  3958. 0,
  3959. -1
  3960. ],
  3961. "scale":[
  3962. 2,
  3963. 2,
  3964. 2
  3965. ]
  3966. },
  3967. "components":[],
  3968. "child":[]
  3969. },
  3970. {
  3971. "type":"Sprite3D",
  3972. "instanceID":107,
  3973. "props":{
  3974. "name":"barrier",
  3975. "active":true,
  3976. "isStatic":false,
  3977. "layer":0,
  3978. "position":[
  3979. -18.849,
  3980. 1.209,
  3981. 27.32
  3982. ],
  3983. "rotation":[
  3984. 0,
  3985. 0,
  3986. 0,
  3987. -1
  3988. ],
  3989. "scale":[
  3990. 2,
  3991. 2,
  3992. 2
  3993. ]
  3994. },
  3995. "components":[],
  3996. "child":[]
  3997. },
  3998. {
  3999. "type":"Sprite3D",
  4000. "instanceID":108,
  4001. "props":{
  4002. "name":"barrier",
  4003. "active":true,
  4004. "isStatic":false,
  4005. "layer":0,
  4006. "position":[
  4007. -17.209,
  4008. 1.614,
  4009. 27.32
  4010. ],
  4011. "rotation":[
  4012. 0,
  4013. 0,
  4014. 0,
  4015. -1
  4016. ],
  4017. "scale":[
  4018. 2,
  4019. 2,
  4020. 2
  4021. ]
  4022. },
  4023. "components":[],
  4024. "child":[]
  4025. },
  4026. {
  4027. "type":"Sprite3D",
  4028. "instanceID":109,
  4029. "props":{
  4030. "name":"barrier",
  4031. "active":true,
  4032. "isStatic":false,
  4033. "layer":0,
  4034. "position":[
  4035. -17.209,
  4036. 2.413,
  4037. 27.32
  4038. ],
  4039. "rotation":[
  4040. 0,
  4041. 0,
  4042. 0,
  4043. -1
  4044. ],
  4045. "scale":[
  4046. 2,
  4047. 2,
  4048. 2
  4049. ]
  4050. },
  4051. "components":[],
  4052. "child":[]
  4053. },
  4054. {
  4055. "type":"Sprite3D",
  4056. "instanceID":110,
  4057. "props":{
  4058. "name":"barrier",
  4059. "active":true,
  4060. "isStatic":false,
  4061. "layer":0,
  4062. "position":[
  4063. -17.209,
  4064. 2.008,
  4065. 27.32
  4066. ],
  4067. "rotation":[
  4068. 0,
  4069. 0,
  4070. 0,
  4071. -1
  4072. ],
  4073. "scale":[
  4074. 2,
  4075. 2,
  4076. 2
  4077. ]
  4078. },
  4079. "components":[],
  4080. "child":[]
  4081. },
  4082. {
  4083. "type":"Sprite3D",
  4084. "instanceID":111,
  4085. "props":{
  4086. "name":"barrier",
  4087. "active":true,
  4088. "isStatic":false,
  4089. "layer":0,
  4090. "position":[
  4091. -17.209,
  4092. 2.008,
  4093. 34.05
  4094. ],
  4095. "rotation":[
  4096. 0,
  4097. 0,
  4098. 0,
  4099. -1
  4100. ],
  4101. "scale":[
  4102. 2,
  4103. 2,
  4104. 2
  4105. ]
  4106. },
  4107. "components":[],
  4108. "child":[]
  4109. },
  4110. {
  4111. "type":"Sprite3D",
  4112. "instanceID":112,
  4113. "props":{
  4114. "name":"barrier",
  4115. "active":true,
  4116. "isStatic":false,
  4117. "layer":0,
  4118. "position":[
  4119. -18.849,
  4120. 2.008,
  4121. 34.05
  4122. ],
  4123. "rotation":[
  4124. 0,
  4125. 0,
  4126. 0,
  4127. -1
  4128. ],
  4129. "scale":[
  4130. 2,
  4131. 2,
  4132. 2
  4133. ]
  4134. },
  4135. "components":[],
  4136. "child":[]
  4137. },
  4138. {
  4139. "type":"Sprite3D",
  4140. "instanceID":113,
  4141. "props":{
  4142. "name":"barrier",
  4143. "active":true,
  4144. "isStatic":false,
  4145. "layer":0,
  4146. "position":[
  4147. -17.209,
  4148. 2.413,
  4149. 34.05
  4150. ],
  4151. "rotation":[
  4152. 0,
  4153. 0,
  4154. 0,
  4155. -1
  4156. ],
  4157. "scale":[
  4158. 2,
  4159. 2,
  4160. 2
  4161. ]
  4162. },
  4163. "components":[],
  4164. "child":[]
  4165. },
  4166. {
  4167. "type":"Sprite3D",
  4168. "instanceID":114,
  4169. "props":{
  4170. "name":"barrier",
  4171. "active":true,
  4172. "isStatic":false,
  4173. "layer":0,
  4174. "position":[
  4175. -17.209,
  4176. 1.614,
  4177. 34.05
  4178. ],
  4179. "rotation":[
  4180. 0,
  4181. 0,
  4182. 0,
  4183. -1
  4184. ],
  4185. "scale":[
  4186. 2,
  4187. 2,
  4188. 2
  4189. ]
  4190. },
  4191. "components":[],
  4192. "child":[]
  4193. },
  4194. {
  4195. "type":"Sprite3D",
  4196. "instanceID":115,
  4197. "props":{
  4198. "name":"barrier",
  4199. "active":true,
  4200. "isStatic":false,
  4201. "layer":0,
  4202. "position":[
  4203. -17.619,
  4204. 1.614,
  4205. 34.05
  4206. ],
  4207. "rotation":[
  4208. 0,
  4209. 0,
  4210. 0,
  4211. -1
  4212. ],
  4213. "scale":[
  4214. 2,
  4215. 2,
  4216. 2
  4217. ]
  4218. },
  4219. "components":[],
  4220. "child":[]
  4221. },
  4222. {
  4223. "type":"Sprite3D",
  4224. "instanceID":116,
  4225. "props":{
  4226. "name":"barrier",
  4227. "active":true,
  4228. "isStatic":false,
  4229. "layer":0,
  4230. "position":[
  4231. -18.849,
  4232. 1.614,
  4233. 34.05
  4234. ],
  4235. "rotation":[
  4236. 0,
  4237. 0,
  4238. 0,
  4239. -1
  4240. ],
  4241. "scale":[
  4242. 2,
  4243. 2,
  4244. 2
  4245. ]
  4246. },
  4247. "components":[],
  4248. "child":[]
  4249. },
  4250. {
  4251. "type":"Sprite3D",
  4252. "instanceID":117,
  4253. "props":{
  4254. "name":"barrier",
  4255. "active":true,
  4256. "isStatic":false,
  4257. "layer":0,
  4258. "position":[
  4259. -18.849,
  4260. 1.209,
  4261. 34.05
  4262. ],
  4263. "rotation":[
  4264. 0,
  4265. 0,
  4266. 0,
  4267. -1
  4268. ],
  4269. "scale":[
  4270. 2,
  4271. 2,
  4272. 2
  4273. ]
  4274. },
  4275. "components":[],
  4276. "child":[]
  4277. },
  4278. {
  4279. "type":"Sprite3D",
  4280. "instanceID":118,
  4281. "props":{
  4282. "name":"barrier",
  4283. "active":true,
  4284. "isStatic":false,
  4285. "layer":0,
  4286. "position":[
  4287. -18.439,
  4288. 1.209,
  4289. 34.05
  4290. ],
  4291. "rotation":[
  4292. 0,
  4293. 0,
  4294. 0,
  4295. -1
  4296. ],
  4297. "scale":[
  4298. 2,
  4299. 2,
  4300. 2
  4301. ]
  4302. },
  4303. "components":[],
  4304. "child":[]
  4305. },
  4306. {
  4307. "type":"Sprite3D",
  4308. "instanceID":119,
  4309. "props":{
  4310. "name":"barrier",
  4311. "active":true,
  4312. "isStatic":false,
  4313. "layer":0,
  4314. "position":[
  4315. -18.029,
  4316. 1.209,
  4317. 34.05
  4318. ],
  4319. "rotation":[
  4320. 0,
  4321. 0,
  4322. 0,
  4323. -1
  4324. ],
  4325. "scale":[
  4326. 2,
  4327. 2,
  4328. 2
  4329. ]
  4330. },
  4331. "components":[],
  4332. "child":[]
  4333. },
  4334. {
  4335. "type":"Sprite3D",
  4336. "instanceID":120,
  4337. "props":{
  4338. "name":"barrier",
  4339. "active":true,
  4340. "isStatic":false,
  4341. "layer":0,
  4342. "position":[
  4343. -17.619,
  4344. 1.209,
  4345. 34.05
  4346. ],
  4347. "rotation":[
  4348. 0,
  4349. 0,
  4350. 0,
  4351. -1
  4352. ],
  4353. "scale":[
  4354. 2,
  4355. 2,
  4356. 2
  4357. ]
  4358. },
  4359. "components":[],
  4360. "child":[]
  4361. },
  4362. {
  4363. "type":"Sprite3D",
  4364. "instanceID":121,
  4365. "props":{
  4366. "name":"barrier",
  4367. "active":true,
  4368. "isStatic":false,
  4369. "layer":0,
  4370. "position":[
  4371. -17.209,
  4372. 1.209,
  4373. 34.05
  4374. ],
  4375. "rotation":[
  4376. 0,
  4377. 0,
  4378. 0,
  4379. -1
  4380. ],
  4381. "scale":[
  4382. 2,
  4383. 2,
  4384. 2
  4385. ]
  4386. },
  4387. "components":[],
  4388. "child":[]
  4389. },
  4390. {
  4391. "type":"Sprite3D",
  4392. "instanceID":122,
  4393. "props":{
  4394. "name":"barrier",
  4395. "active":true,
  4396. "isStatic":false,
  4397. "layer":0,
  4398. "position":[
  4399. -20.191,
  4400. 1.209,
  4401. 40.63
  4402. ],
  4403. "rotation":[
  4404. 0,
  4405. 0,
  4406. 0,
  4407. -1
  4408. ],
  4409. "scale":[
  4410. 2,
  4411. 2,
  4412. 2
  4413. ]
  4414. },
  4415. "components":[],
  4416. "child":[]
  4417. },
  4418. {
  4419. "type":"Sprite3D",
  4420. "instanceID":123,
  4421. "props":{
  4422. "name":"barrier",
  4423. "active":true,
  4424. "isStatic":false,
  4425. "layer":0,
  4426. "position":[
  4427. -20.601,
  4428. 1.209,
  4429. 40.63
  4430. ],
  4431. "rotation":[
  4432. 0,
  4433. 0,
  4434. 0,
  4435. -1
  4436. ],
  4437. "scale":[
  4438. 2,
  4439. 2,
  4440. 2
  4441. ]
  4442. },
  4443. "components":[],
  4444. "child":[]
  4445. },
  4446. {
  4447. "type":"Sprite3D",
  4448. "instanceID":124,
  4449. "props":{
  4450. "name":"barrier",
  4451. "active":true,
  4452. "isStatic":false,
  4453. "layer":0,
  4454. "position":[
  4455. -21.421,
  4456. 1.209,
  4457. 40.63
  4458. ],
  4459. "rotation":[
  4460. 0,
  4461. 0,
  4462. 0,
  4463. -1
  4464. ],
  4465. "scale":[
  4466. 2,
  4467. 2,
  4468. 2
  4469. ]
  4470. },
  4471. "components":[],
  4472. "child":[]
  4473. },
  4474. {
  4475. "type":"Sprite3D",
  4476. "instanceID":125,
  4477. "props":{
  4478. "name":"barrier",
  4479. "active":true,
  4480. "isStatic":false,
  4481. "layer":0,
  4482. "position":[
  4483. -21.831,
  4484. 1.209,
  4485. 40.63
  4486. ],
  4487. "rotation":[
  4488. 0,
  4489. 0,
  4490. 0,
  4491. -1
  4492. ],
  4493. "scale":[
  4494. 2,
  4495. 2,
  4496. 2
  4497. ]
  4498. },
  4499. "components":[],
  4500. "child":[]
  4501. },
  4502. {
  4503. "type":"Sprite3D",
  4504. "instanceID":126,
  4505. "props":{
  4506. "name":"barrier",
  4507. "active":true,
  4508. "isStatic":false,
  4509. "layer":0,
  4510. "position":[
  4511. -21.831,
  4512. 1.614,
  4513. 40.63
  4514. ],
  4515. "rotation":[
  4516. 0,
  4517. 0,
  4518. 0,
  4519. -1
  4520. ],
  4521. "scale":[
  4522. 2,
  4523. 2,
  4524. 2
  4525. ]
  4526. },
  4527. "components":[],
  4528. "child":[]
  4529. },
  4530. {
  4531. "type":"Sprite3D",
  4532. "instanceID":127,
  4533. "props":{
  4534. "name":"barrier",
  4535. "active":true,
  4536. "isStatic":false,
  4537. "layer":0,
  4538. "position":[
  4539. -20.191,
  4540. 1.614,
  4541. 40.63
  4542. ],
  4543. "rotation":[
  4544. 0,
  4545. 0,
  4546. 0,
  4547. -1
  4548. ],
  4549. "scale":[
  4550. 2,
  4551. 2,
  4552. 2
  4553. ]
  4554. },
  4555. "components":[],
  4556. "child":[]
  4557. },
  4558. {
  4559. "type":"Sprite3D",
  4560. "instanceID":128,
  4561. "props":{
  4562. "name":"barrier",
  4563. "active":true,
  4564. "isStatic":false,
  4565. "layer":0,
  4566. "position":[
  4567. -21.831,
  4568. 0.358,
  4569. 53.22
  4570. ],
  4571. "rotation":[
  4572. 0,
  4573. 0,
  4574. 0,
  4575. -1
  4576. ],
  4577. "scale":[
  4578. 2,
  4579. 2,
  4580. 2
  4581. ]
  4582. },
  4583. "components":[],
  4584. "child":[]
  4585. },
  4586. {
  4587. "type":"Sprite3D",
  4588. "instanceID":129,
  4589. "props":{
  4590. "name":"barrier",
  4591. "active":true,
  4592. "isStatic":false,
  4593. "layer":0,
  4594. "position":[
  4595. -21.011,
  4596. -0.032,
  4597. 53.22
  4598. ],
  4599. "rotation":[
  4600. 0,
  4601. 0,
  4602. 0,
  4603. -1
  4604. ],
  4605. "scale":[
  4606. 2,
  4607. 2,
  4608. 2
  4609. ]
  4610. },
  4611. "components":[],
  4612. "child":[]
  4613. },
  4614. {
  4615. "type":"Sprite3D",
  4616. "instanceID":130,
  4617. "props":{
  4618. "name":"barrier",
  4619. "active":true,
  4620. "isStatic":false,
  4621. "layer":0,
  4622. "position":[
  4623. -21.831,
  4624. -0.032,
  4625. 53.22
  4626. ],
  4627. "rotation":[
  4628. 0,
  4629. 0,
  4630. 0,
  4631. -1
  4632. ],
  4633. "scale":[
  4634. 2,
  4635. 2,
  4636. 2
  4637. ]
  4638. },
  4639. "components":[],
  4640. "child":[]
  4641. },
  4642. {
  4643. "type":"Sprite3D",
  4644. "instanceID":131,
  4645. "props":{
  4646. "name":"barrier",
  4647. "active":true,
  4648. "isStatic":false,
  4649. "layer":0,
  4650. "position":[
  4651. -21.831,
  4652. -0.442,
  4653. 53.22
  4654. ],
  4655. "rotation":[
  4656. 0,
  4657. 0,
  4658. 0,
  4659. -1
  4660. ],
  4661. "scale":[
  4662. 2,
  4663. 2,
  4664. 2
  4665. ]
  4666. },
  4667. "components":[],
  4668. "child":[]
  4669. },
  4670. {
  4671. "type":"Sprite3D",
  4672. "instanceID":132,
  4673. "props":{
  4674. "name":"barrier",
  4675. "active":true,
  4676. "isStatic":false,
  4677. "layer":0,
  4678. "position":[
  4679. -21.011,
  4680. -0.442,
  4681. 53.22
  4682. ],
  4683. "rotation":[
  4684. 0,
  4685. 0,
  4686. 0,
  4687. -1
  4688. ],
  4689. "scale":[
  4690. 2,
  4691. 2,
  4692. 2
  4693. ]
  4694. },
  4695. "components":[],
  4696. "child":[]
  4697. },
  4698. {
  4699. "type":"Sprite3D",
  4700. "instanceID":133,
  4701. "props":{
  4702. "name":"barrier",
  4703. "active":true,
  4704. "isStatic":false,
  4705. "layer":0,
  4706. "position":[
  4707. -20.601,
  4708. -0.442,
  4709. 53.22
  4710. ],
  4711. "rotation":[
  4712. 0,
  4713. 0,
  4714. 0,
  4715. -1
  4716. ],
  4717. "scale":[
  4718. 2,
  4719. 2,
  4720. 2
  4721. ]
  4722. },
  4723. "components":[],
  4724. "child":[]
  4725. },
  4726. {
  4727. "type":"Sprite3D",
  4728. "instanceID":134,
  4729. "props":{
  4730. "name":"barrier",
  4731. "active":true,
  4732. "isStatic":false,
  4733. "layer":0,
  4734. "position":[
  4735. -20.191,
  4736. -0.442,
  4737. 53.22
  4738. ],
  4739. "rotation":[
  4740. 0,
  4741. 0,
  4742. 0,
  4743. -1
  4744. ],
  4745. "scale":[
  4746. 2,
  4747. 2,
  4748. 2
  4749. ]
  4750. },
  4751. "components":[],
  4752. "child":[]
  4753. },
  4754. {
  4755. "type":"Sprite3D",
  4756. "instanceID":135,
  4757. "props":{
  4758. "name":"barrier",
  4759. "active":true,
  4760. "isStatic":false,
  4761. "layer":0,
  4762. "position":[
  4763. -23.099,
  4764. -0.442,
  4765. 61.35
  4766. ],
  4767. "rotation":[
  4768. 0,
  4769. 0,
  4770. 0,
  4771. -1
  4772. ],
  4773. "scale":[
  4774. 2,
  4775. 2,
  4776. 2
  4777. ]
  4778. },
  4779. "components":[],
  4780. "child":[]
  4781. },
  4782. {
  4783. "type":"Sprite3D",
  4784. "instanceID":136,
  4785. "props":{
  4786. "name":"barrier",
  4787. "active":true,
  4788. "isStatic":false,
  4789. "layer":0,
  4790. "position":[
  4791. -23.509,
  4792. -0.442,
  4793. 61.35
  4794. ],
  4795. "rotation":[
  4796. 0,
  4797. 0,
  4798. 0,
  4799. -1
  4800. ],
  4801. "scale":[
  4802. 2,
  4803. 2,
  4804. 2
  4805. ]
  4806. },
  4807. "components":[],
  4808. "child":[]
  4809. },
  4810. {
  4811. "type":"Sprite3D",
  4812. "instanceID":137,
  4813. "props":{
  4814. "name":"barrier",
  4815. "active":true,
  4816. "isStatic":false,
  4817. "layer":0,
  4818. "position":[
  4819. -23.919,
  4820. -0.442,
  4821. 61.35
  4822. ],
  4823. "rotation":[
  4824. 0,
  4825. 0,
  4826. 0,
  4827. -1
  4828. ],
  4829. "scale":[
  4830. 2,
  4831. 2,
  4832. 2
  4833. ]
  4834. },
  4835. "components":[],
  4836. "child":[]
  4837. },
  4838. {
  4839. "type":"Sprite3D",
  4840. "instanceID":138,
  4841. "props":{
  4842. "name":"barrier",
  4843. "active":true,
  4844. "isStatic":false,
  4845. "layer":0,
  4846. "position":[
  4847. -24.739,
  4848. -0.442,
  4849. 61.35
  4850. ],
  4851. "rotation":[
  4852. 0,
  4853. 0,
  4854. 0,
  4855. -1
  4856. ],
  4857. "scale":[
  4858. 2,
  4859. 2,
  4860. 2
  4861. ]
  4862. },
  4863. "components":[],
  4864. "child":[]
  4865. },
  4866. {
  4867. "type":"Sprite3D",
  4868. "instanceID":139,
  4869. "props":{
  4870. "name":"barrier",
  4871. "active":true,
  4872. "isStatic":false,
  4873. "layer":0,
  4874. "position":[
  4875. -23.509,
  4876. -0.032,
  4877. 61.35
  4878. ],
  4879. "rotation":[
  4880. 0,
  4881. 0,
  4882. 0,
  4883. -1
  4884. ],
  4885. "scale":[
  4886. 2,
  4887. 2,
  4888. 2
  4889. ]
  4890. },
  4891. "components":[],
  4892. "child":[]
  4893. },
  4894. {
  4895. "type":"Sprite3D",
  4896. "instanceID":140,
  4897. "props":{
  4898. "name":"barrier",
  4899. "active":true,
  4900. "isStatic":false,
  4901. "layer":0,
  4902. "position":[
  4903. -23.099,
  4904. -0.032,
  4905. 61.35
  4906. ],
  4907. "rotation":[
  4908. 0,
  4909. 0,
  4910. 0,
  4911. -1
  4912. ],
  4913. "scale":[
  4914. 2,
  4915. 2,
  4916. 2
  4917. ]
  4918. },
  4919. "components":[],
  4920. "child":[]
  4921. },
  4922. {
  4923. "type":"Sprite3D",
  4924. "instanceID":141,
  4925. "props":{
  4926. "name":"barrier",
  4927. "active":true,
  4928. "isStatic":false,
  4929. "layer":0,
  4930. "position":[
  4931. -29.319,
  4932. 0.358,
  4933. 67.87
  4934. ],
  4935. "rotation":[
  4936. 0,
  4937. 0,
  4938. 0,
  4939. -1
  4940. ],
  4941. "scale":[
  4942. 2,
  4943. 2,
  4944. 2
  4945. ]
  4946. },
  4947. "components":[],
  4948. "child":[]
  4949. },
  4950. {
  4951. "type":"Sprite3D",
  4952. "instanceID":142,
  4953. "props":{
  4954. "name":"barrier",
  4955. "active":true,
  4956. "isStatic":false,
  4957. "layer":0,
  4958. "position":[
  4959. -29.319,
  4960. 0.768,
  4961. 67.87
  4962. ],
  4963. "rotation":[
  4964. 0,
  4965. 0,
  4966. 0,
  4967. -1
  4968. ],
  4969. "scale":[
  4970. 2,
  4971. 2,
  4972. 2
  4973. ]
  4974. },
  4975. "components":[],
  4976. "child":[]
  4977. },
  4978. {
  4979. "type":"Sprite3D",
  4980. "instanceID":143,
  4981. "props":{
  4982. "name":"barrier",
  4983. "active":true,
  4984. "isStatic":false,
  4985. "layer":0,
  4986. "position":[
  4987. -29.319,
  4988. -0.032,
  4989. 67.87
  4990. ],
  4991. "rotation":[
  4992. 0,
  4993. 0,
  4994. 0,
  4995. -1
  4996. ],
  4997. "scale":[
  4998. 2,
  4999. 2,
  5000. 2
  5001. ]
  5002. },
  5003. "components":[],
  5004. "child":[]
  5005. },
  5006. {
  5007. "type":"Sprite3D",
  5008. "instanceID":144,
  5009. "props":{
  5010. "name":"barrier",
  5011. "active":true,
  5012. "isStatic":false,
  5013. "layer":0,
  5014. "position":[
  5015. -30.139,
  5016. -0.032,
  5017. 67.87
  5018. ],
  5019. "rotation":[
  5020. 0,
  5021. 0,
  5022. 0,
  5023. -1
  5024. ],
  5025. "scale":[
  5026. 2,
  5027. 2,
  5028. 2
  5029. ]
  5030. },
  5031. "components":[],
  5032. "child":[]
  5033. },
  5034. {
  5035. "type":"Sprite3D",
  5036. "instanceID":145,
  5037. "props":{
  5038. "name":"barrier",
  5039. "active":true,
  5040. "isStatic":false,
  5041. "layer":0,
  5042. "position":[
  5043. -30.139,
  5044. -0.442,
  5045. 67.87
  5046. ],
  5047. "rotation":[
  5048. 0,
  5049. 0,
  5050. 0,
  5051. -1
  5052. ],
  5053. "scale":[
  5054. 2,
  5055. 2,
  5056. 2
  5057. ]
  5058. },
  5059. "components":[],
  5060. "child":[]
  5061. },
  5062. {
  5063. "type":"Sprite3D",
  5064. "instanceID":146,
  5065. "props":{
  5066. "name":"barrier",
  5067. "active":true,
  5068. "isStatic":false,
  5069. "layer":0,
  5070. "position":[
  5071. -29.729,
  5072. -0.442,
  5073. 67.87
  5074. ],
  5075. "rotation":[
  5076. 0,
  5077. 0,
  5078. 0,
  5079. -1
  5080. ],
  5081. "scale":[
  5082. 2,
  5083. 2,
  5084. 2
  5085. ]
  5086. },
  5087. "components":[],
  5088. "child":[]
  5089. },
  5090. {
  5091. "type":"Sprite3D",
  5092. "instanceID":147,
  5093. "props":{
  5094. "name":"barrier",
  5095. "active":true,
  5096. "isStatic":false,
  5097. "layer":0,
  5098. "position":[
  5099. -29.319,
  5100. -0.442,
  5101. 67.87
  5102. ],
  5103. "rotation":[
  5104. 0,
  5105. 0,
  5106. 0,
  5107. -1
  5108. ],
  5109. "scale":[
  5110. 2,
  5111. 2,
  5112. 2
  5113. ]
  5114. },
  5115. "components":[],
  5116. "child":[]
  5117. },
  5118. {
  5119. "type":"Sprite3D",
  5120. "instanceID":148,
  5121. "props":{
  5122. "name":"barrier",
  5123. "active":true,
  5124. "isStatic":false,
  5125. "layer":0,
  5126. "position":[
  5127. -6.03,
  5128. 1.209,
  5129. 11.487
  5130. ],
  5131. "rotation":[
  5132. 0,
  5133. 0,
  5134. 0,
  5135. -1
  5136. ],
  5137. "scale":[
  5138. 2,
  5139. 2,
  5140. 2
  5141. ]
  5142. },
  5143. "components":[],
  5144. "child":[]
  5145. },
  5146. {
  5147. "type":"Sprite3D",
  5148. "instanceID":149,
  5149. "props":{
  5150. "name":"barrier",
  5151. "active":true,
  5152. "isStatic":false,
  5153. "layer":0,
  5154. "position":[
  5155. -6.03,
  5156. 1.209,
  5157. 11.082
  5158. ],
  5159. "rotation":[
  5160. 0,
  5161. 0,
  5162. 0,
  5163. -1
  5164. ],
  5165. "scale":[
  5166. 2,
  5167. 2,
  5168. 2
  5169. ]
  5170. },
  5171. "components":[],
  5172. "child":[]
  5173. },
  5174. {
  5175. "type":"Sprite3D",
  5176. "instanceID":150,
  5177. "props":{
  5178. "name":"FinishCircle",
  5179. "active":true,
  5180. "isStatic":false,
  5181. "layer":0,
  5182. "position":[
  5183. -29.91,
  5184. 0.09,
  5185. 78.66
  5186. ],
  5187. "rotation":[
  5188. 0,
  5189. 1,
  5190. 0,
  5191. 0
  5192. ],
  5193. "scale":[
  5194. 1,
  5195. 1,
  5196. 1
  5197. ]
  5198. },
  5199. "components":[],
  5200. "child":[]
  5201. },
  5202. {
  5203. "type":"Sprite3D",
  5204. "instanceID":151,
  5205. "props":{
  5206. "name":"barrier",
  5207. "active":true,
  5208. "isStatic":false,
  5209. "layer":0,
  5210. "position":[
  5211. -6.03,
  5212. 1.209,
  5213. 10.268
  5214. ],
  5215. "rotation":[
  5216. 0,
  5217. 0,
  5218. 0,
  5219. -1
  5220. ],
  5221. "scale":[
  5222. 2,
  5223. 2,
  5224. 2
  5225. ]
  5226. },
  5227. "components":[],
  5228. "child":[]
  5229. },
  5230. {
  5231. "type":"Sprite3D",
  5232. "instanceID":152,
  5233. "props":{
  5234. "name":"barrier",
  5235. "active":true,
  5236. "isStatic":false,
  5237. "layer":0,
  5238. "position":[
  5239. -6.03,
  5240. 1.209,
  5241. 9.855
  5242. ],
  5243. "rotation":[
  5244. 0,
  5245. 0,
  5246. 0,
  5247. -1
  5248. ],
  5249. "scale":[
  5250. 2,
  5251. 2,
  5252. 2
  5253. ]
  5254. },
  5255. "components":[],
  5256. "child":[]
  5257. },
  5258. {
  5259. "type":"Sprite3D",
  5260. "instanceID":153,
  5261. "props":{
  5262. "name":"barrier",
  5263. "active":true,
  5264. "isStatic":false,
  5265. "layer":0,
  5266. "position":[
  5267. -6.03,
  5268. 1.602,
  5269. 9.855
  5270. ],
  5271. "rotation":[
  5272. 0,
  5273. 0,
  5274. 0,
  5275. -1
  5276. ],
  5277. "scale":[
  5278. 2,
  5279. 2,
  5280. 2
  5281. ]
  5282. },
  5283. "components":[],
  5284. "child":[]
  5285. },
  5286. {
  5287. "type":"Sprite3D",
  5288. "instanceID":154,
  5289. "props":{
  5290. "name":"barrier",
  5291. "active":true,
  5292. "isStatic":false,
  5293. "layer":0,
  5294. "position":[
  5295. -6.03,
  5296. 1.602,
  5297. 11.082
  5298. ],
  5299. "rotation":[
  5300. 0,
  5301. 0,
  5302. 0,
  5303. -1
  5304. ],
  5305. "scale":[
  5306. 2,
  5307. 2,
  5308. 2
  5309. ]
  5310. },
  5311. "components":[],
  5312. "child":[]
  5313. },
  5314. {
  5315. "type":"Sprite3D",
  5316. "instanceID":155,
  5317. "props":{
  5318. "name":"barrier",
  5319. "active":true,
  5320. "isStatic":false,
  5321. "layer":0,
  5322. "position":[
  5323. -6.03,
  5324. 1.602,
  5325. 11.487
  5326. ],
  5327. "rotation":[
  5328. 0,
  5329. 0,
  5330. 0,
  5331. -1
  5332. ],
  5333. "scale":[
  5334. 2,
  5335. 2,
  5336. 2
  5337. ]
  5338. },
  5339. "components":[],
  5340. "child":[]
  5341. },
  5342. {
  5343. "type":"Sprite3D",
  5344. "instanceID":156,
  5345. "props":{
  5346. "name":"barrier",
  5347. "active":true,
  5348. "isStatic":false,
  5349. "layer":0,
  5350. "position":[
  5351. -14.93,
  5352. 1.602,
  5353. 25.463
  5354. ],
  5355. "rotation":[
  5356. 0,
  5357. 0,
  5358. 0,
  5359. -1
  5360. ],
  5361. "scale":[
  5362. 2,
  5363. 2,
  5364. 2
  5365. ]
  5366. },
  5367. "components":[],
  5368. "child":[]
  5369. },
  5370. {
  5371. "type":"Sprite3D",
  5372. "instanceID":157,
  5373. "props":{
  5374. "name":"barrier",
  5375. "active":true,
  5376. "isStatic":false,
  5377. "layer":0,
  5378. "position":[
  5379. -14.93,
  5380. 1.209,
  5381. 25.053
  5382. ],
  5383. "rotation":[
  5384. 0,
  5385. 0,
  5386. 0,
  5387. -1
  5388. ],
  5389. "scale":[
  5390. 2,
  5391. 2,
  5392. 2
  5393. ]
  5394. },
  5395. "components":[],
  5396. "child":[]
  5397. },
  5398. {
  5399. "type":"Sprite3D",
  5400. "instanceID":158,
  5401. "props":{
  5402. "name":"barrier",
  5403. "active":true,
  5404. "isStatic":false,
  5405. "layer":0,
  5406. "position":[
  5407. -14.93,
  5408. 1.209,
  5409. 25.463
  5410. ],
  5411. "rotation":[
  5412. 0,
  5413. 0,
  5414. 0,
  5415. -1
  5416. ],
  5417. "scale":[
  5418. 2,
  5419. 2,
  5420. 2
  5421. ]
  5422. },
  5423. "components":[],
  5424. "child":[]
  5425. },
  5426. {
  5427. "type":"Sprite3D",
  5428. "instanceID":159,
  5429. "props":{
  5430. "name":"barrier",
  5431. "active":true,
  5432. "isStatic":false,
  5433. "layer":0,
  5434. "position":[
  5435. -27.87,
  5436. -0.456,
  5437. 65.822
  5438. ],
  5439. "rotation":[
  5440. 0,
  5441. 0,
  5442. 0,
  5443. -1
  5444. ],
  5445. "scale":[
  5446. 2,
  5447. 2,
  5448. 2
  5449. ]
  5450. },
  5451. "components":[],
  5452. "child":[]
  5453. },
  5454. {
  5455. "type":"Sprite3D",
  5456. "instanceID":160,
  5457. "props":{
  5458. "name":"barrier",
  5459. "active":true,
  5460. "isStatic":false,
  5461. "layer":0,
  5462. "position":[
  5463. -27.87,
  5464. -0.456,
  5465. 65.412
  5466. ],
  5467. "rotation":[
  5468. 0,
  5469. 0,
  5470. 0,
  5471. -1
  5472. ],
  5473. "scale":[
  5474. 2,
  5475. 2,
  5476. 2
  5477. ]
  5478. },
  5479. "components":[],
  5480. "child":[]
  5481. },
  5482. {
  5483. "type":"Sprite3D",
  5484. "instanceID":161,
  5485. "props":{
  5486. "name":"barrier",
  5487. "active":true,
  5488. "isStatic":false,
  5489. "layer":0,
  5490. "position":[
  5491. -27.87,
  5492. -0.456,
  5493. 65.012
  5494. ],
  5495. "rotation":[
  5496. 0,
  5497. 0,
  5498. 0,
  5499. -1
  5500. ],
  5501. "scale":[
  5502. 2,
  5503. 2,
  5504. 2
  5505. ]
  5506. },
  5507. "components":[],
  5508. "child":[]
  5509. },
  5510. {
  5511. "type":"Sprite3D",
  5512. "instanceID":162,
  5513. "props":{
  5514. "name":"barrier",
  5515. "active":true,
  5516. "isStatic":false,
  5517. "layer":0,
  5518. "position":[
  5519. -27.87,
  5520. -0.456,
  5521. 64.602
  5522. ],
  5523. "rotation":[
  5524. 0,
  5525. 0,
  5526. 0,
  5527. -1
  5528. ],
  5529. "scale":[
  5530. 2,
  5531. 2,
  5532. 2
  5533. ]
  5534. },
  5535. "components":[],
  5536. "child":[]
  5537. },
  5538. {
  5539. "type":"Sprite3D",
  5540. "instanceID":163,
  5541. "props":{
  5542. "name":"barrier",
  5543. "active":true,
  5544. "isStatic":false,
  5545. "layer":0,
  5546. "position":[
  5547. -27.87,
  5548. -0.456,
  5549. 64.192
  5550. ],
  5551. "rotation":[
  5552. 0,
  5553. 0,
  5554. 0,
  5555. -1
  5556. ],
  5557. "scale":[
  5558. 2,
  5559. 2,
  5560. 2
  5561. ]
  5562. },
  5563. "components":[],
  5564. "child":[]
  5565. },
  5566. {
  5567. "type":"Sprite3D",
  5568. "instanceID":164,
  5569. "props":{
  5570. "name":"barrier",
  5571. "active":true,
  5572. "isStatic":false,
  5573. "layer":0,
  5574. "position":[
  5575. -27.87,
  5576. -0.066,
  5577. 64.602
  5578. ],
  5579. "rotation":[
  5580. 0,
  5581. 0,
  5582. 0,
  5583. -1
  5584. ],
  5585. "scale":[
  5586. 2,
  5587. 2,
  5588. 2
  5589. ]
  5590. },
  5591. "components":[],
  5592. "child":[]
  5593. },
  5594. {
  5595. "type":"Sprite3D",
  5596. "instanceID":165,
  5597. "props":{
  5598. "name":"barrier",
  5599. "active":true,
  5600. "isStatic":false,
  5601. "layer":0,
  5602. "position":[
  5603. -27.87,
  5604. -0.066,
  5605. 65.412
  5606. ],
  5607. "rotation":[
  5608. 0,
  5609. 0,
  5610. 0,
  5611. -1
  5612. ],
  5613. "scale":[
  5614. 2,
  5615. 2,
  5616. 2
  5617. ]
  5618. },
  5619. "components":[],
  5620. "child":[]
  5621. },
  5622. {
  5623. "type":"Sprite3D",
  5624. "instanceID":166,
  5625. "props":{
  5626. "name":"barrier",
  5627. "active":true,
  5628. "isStatic":false,
  5629. "layer":0,
  5630. "position":[
  5631. -27.87,
  5632. -0.066,
  5633. 65.822
  5634. ],
  5635. "rotation":[
  5636. 0,
  5637. 0,
  5638. 0,
  5639. -1
  5640. ],
  5641. "scale":[
  5642. 2,
  5643. 2,
  5644. 2
  5645. ]
  5646. },
  5647. "components":[],
  5648. "child":[]
  5649. },
  5650. {
  5651. "type":"Sprite3D",
  5652. "instanceID":167,
  5653. "props":{
  5654. "name":"player",
  5655. "active":true,
  5656. "isStatic":false,
  5657. "layer":0,
  5658. "position":[
  5659. -0.066,
  5660. 0.988,
  5661. 0
  5662. ],
  5663. "rotation":[
  5664. 0,
  5665. 0,
  5666. 0,
  5667. -1
  5668. ],
  5669. "scale":[
  5670. 1,
  5671. 1,
  5672. 1
  5673. ]
  5674. },
  5675. "components":[],
  5676. "child":[]
  5677. },
  5678. {
  5679. "type":"Sprite3D",
  5680. "instanceID":168,
  5681. "props":{
  5682. "name":"role",
  5683. "active":true,
  5684. "isStatic":false,
  5685. "layer":0,
  5686. "position":[
  5687. -0.127,
  5688. 0.988,
  5689. 4.079767
  5690. ],
  5691. "rotation":[
  5692. 0,
  5693. -0.5841185,
  5694. 0,
  5695. -0.8116685
  5696. ],
  5697. "scale":[
  5698. 1,
  5699. 1,
  5700. 1
  5701. ]
  5702. },
  5703. "components":[],
  5704. "child":[]
  5705. },
  5706. {
  5707. "type":"Sprite3D",
  5708. "instanceID":169,
  5709. "props":{
  5710. "name":"role",
  5711. "active":true,
  5712. "isStatic":false,
  5713. "layer":0,
  5714. "position":[
  5715. -0.175,
  5716. 0.988,
  5717. 6.054173
  5718. ],
  5719. "rotation":[
  5720. 0,
  5721. -0.4314001,
  5722. 0,
  5723. -0.9021608
  5724. ],
  5725. "scale":[
  5726. 1,
  5727. 1,
  5728. 1
  5729. ]
  5730. },
  5731. "components":[],
  5732. "child":[]
  5733. },
  5734. {
  5735. "type":"Sprite3D",
  5736. "instanceID":170,
  5737. "props":{
  5738. "name":"role",
  5739. "active":true,
  5740. "isStatic":false,
  5741. "layer":0,
  5742. "position":[
  5743. -0.1810386,
  5744. 0.988,
  5745. 9.639342
  5746. ],
  5747. "rotation":[
  5748. 0,
  5749. 0.1608191,
  5750. 0,
  5751. -0.986984
  5752. ],
  5753. "scale":[
  5754. 1,
  5755. 1,
  5756. 1
  5757. ]
  5758. },
  5759. "components":[],
  5760. "child":[]
  5761. },
  5762. {
  5763. "type":"Sprite3D",
  5764. "instanceID":171,
  5765. "props":{
  5766. "name":"role",
  5767. "active":true,
  5768. "isStatic":false,
  5769. "layer":0,
  5770. "position":[
  5771. -1.69,
  5772. 0.988,
  5773. 9.9
  5774. ],
  5775. "rotation":[
  5776. 0,
  5777. 0.1608191,
  5778. 0,
  5779. -0.986984
  5780. ],
  5781. "scale":[
  5782. 1,
  5783. 1,
  5784. 1
  5785. ]
  5786. },
  5787. "components":[],
  5788. "child":[]
  5789. },
  5790. {
  5791. "type":"Sprite3D",
  5792. "instanceID":172,
  5793. "props":{
  5794. "name":"role",
  5795. "active":true,
  5796. "isStatic":false,
  5797. "layer":0,
  5798. "position":[
  5799. -3.57,
  5800. 0.988,
  5801. 11.24
  5802. ],
  5803. "rotation":[
  5804. 0,
  5805. 0.1608191,
  5806. 0,
  5807. -0.986984
  5808. ],
  5809. "scale":[
  5810. 1,
  5811. 1,
  5812. 1
  5813. ]
  5814. },
  5815. "components":[],
  5816. "child":[]
  5817. },
  5818. {
  5819. "type":"Sprite3D",
  5820. "instanceID":173,
  5821. "props":{
  5822. "name":"role",
  5823. "active":true,
  5824. "isStatic":false,
  5825. "layer":0,
  5826. "position":[
  5827. -4.98,
  5828. 0.988,
  5829. 10.653
  5830. ],
  5831. "rotation":[
  5832. 0,
  5833. 0.1608191,
  5834. 0,
  5835. -0.986984
  5836. ],
  5837. "scale":[
  5838. 1,
  5839. 1,
  5840. 1
  5841. ]
  5842. },
  5843. "components":[],
  5844. "child":[]
  5845. },
  5846. {
  5847. "type":"Sprite3D",
  5848. "instanceID":174,
  5849. "props":{
  5850. "name":"role",
  5851. "active":true,
  5852. "isStatic":false,
  5853. "layer":0,
  5854. "position":[
  5855. -7.74,
  5856. 0.988,
  5857. 10.653
  5858. ],
  5859. "rotation":[
  5860. 0,
  5861. 0.1608191,
  5862. 0,
  5863. -0.986984
  5864. ],
  5865. "scale":[
  5866. 1,
  5867. 1,
  5868. 1
  5869. ]
  5870. },
  5871. "components":[],
  5872. "child":[]
  5873. },
  5874. {
  5875. "type":"Sprite3D",
  5876. "instanceID":175,
  5877. "props":{
  5878. "name":"role",
  5879. "active":true,
  5880. "isStatic":false,
  5881. "layer":0,
  5882. "position":[
  5883. -9.738423,
  5884. 0.988,
  5885. 9.94
  5886. ],
  5887. "rotation":[
  5888. 0,
  5889. 0.8142435,
  5890. 0,
  5891. -0.5805235
  5892. ],
  5893. "scale":[
  5894. 1,
  5895. 1,
  5896. 1
  5897. ]
  5898. },
  5899. "components":[],
  5900. "child":[]
  5901. },
  5902. {
  5903. "type":"Sprite3D",
  5904. "instanceID":176,
  5905. "props":{
  5906. "name":"role",
  5907. "active":true,
  5908. "isStatic":false,
  5909. "layer":0,
  5910. "position":[
  5911. -11.22,
  5912. 0.988,
  5913. 10.62
  5914. ],
  5915. "rotation":[
  5916. 0,
  5917. 0.8142435,
  5918. 0,
  5919. -0.5805235
  5920. ],
  5921. "scale":[
  5922. 1,
  5923. 1,
  5924. 1
  5925. ]
  5926. },
  5927. "components":[],
  5928. "child":[]
  5929. },
  5930. {
  5931. "type":"Sprite3D",
  5932. "instanceID":177,
  5933. "props":{
  5934. "name":"role",
  5935. "active":true,
  5936. "isStatic":false,
  5937. "layer":0,
  5938. "position":[
  5939. -11.63,
  5940. 0.988,
  5941. 12.66
  5942. ],
  5943. "rotation":[
  5944. 0,
  5945. 0.8142435,
  5946. 0,
  5947. -0.5805235
  5948. ],
  5949. "scale":[
  5950. 1,
  5951. 1,
  5952. 1
  5953. ]
  5954. },
  5955. "components":[],
  5956. "child":[]
  5957. },
  5958. {
  5959. "type":"Sprite3D",
  5960. "instanceID":178,
  5961. "props":{
  5962. "name":"role",
  5963. "active":true,
  5964. "isStatic":false,
  5965. "layer":0,
  5966. "position":[
  5967. -10.31,
  5968. 0.988,
  5969. 12.66
  5970. ],
  5971. "rotation":[
  5972. 0,
  5973. 0.8142435,
  5974. 0,
  5975. -0.5805235
  5976. ],
  5977. "scale":[
  5978. 1,
  5979. 1,
  5980. 1
  5981. ]
  5982. },
  5983. "components":[],
  5984. "child":[]
  5985. },
  5986. {
  5987. "type":"Sprite3D",
  5988. "instanceID":179,
  5989. "props":{
  5990. "name":"role",
  5991. "active":true,
  5992. "isStatic":false,
  5993. "layer":0,
  5994. "position":[
  5995. -10.31,
  5996. 0.988,
  5997. 16.59
  5998. ],
  5999. "rotation":[
  6000. 0,
  6001. 0.8142435,
  6002. 0,
  6003. -0.5805235
  6004. ],
  6005. "scale":[
  6006. 1,
  6007. 1,
  6008. 1
  6009. ]
  6010. },
  6011. "components":[],
  6012. "child":[]
  6013. },
  6014. {
  6015. "type":"Sprite3D",
  6016. "instanceID":180,
  6017. "props":{
  6018. "name":"role",
  6019. "active":true,
  6020. "isStatic":false,
  6021. "layer":0,
  6022. "position":[
  6023. -11.62532,
  6024. 0.988,
  6025. 17.215
  6026. ],
  6027. "rotation":[
  6028. 0,
  6029. -0.191495,
  6030. 0,
  6031. -0.9814936
  6032. ],
  6033. "scale":[
  6034. 1,
  6035. 1,
  6036. 1
  6037. ]
  6038. },
  6039. "components":[],
  6040. "child":[]
  6041. },
  6042. {
  6043. "type":"Sprite3D",
  6044. "instanceID":181,
  6045. "props":{
  6046. "name":"role",
  6047. "active":true,
  6048. "isStatic":false,
  6049. "layer":0,
  6050. "position":[
  6051. -11.62532,
  6052. 0.988,
  6053. 19.801
  6054. ],
  6055. "rotation":[
  6056. 0,
  6057. -0.191495,
  6058. 0,
  6059. -0.9814936
  6060. ],
  6061. "scale":[
  6062. 1,
  6063. 1,
  6064. 1
  6065. ]
  6066. },
  6067. "components":[],
  6068. "child":[]
  6069. },
  6070. {
  6071. "type":"Sprite3D",
  6072. "instanceID":182,
  6073. "props":{
  6074. "name":"role",
  6075. "active":true,
  6076. "isStatic":false,
  6077. "layer":0,
  6078. "position":[
  6079. -10.53696,
  6080. 0.988,
  6081. 19.70327
  6082. ],
  6083. "rotation":[
  6084. 0,
  6085. -0.6073738,
  6086. 0,
  6087. -0.7944162
  6088. ],
  6089. "scale":[
  6090. 1,
  6091. 1,
  6092. 1
  6093. ]
  6094. },
  6095. "components":[],
  6096. "child":[]
  6097. },
  6098. {
  6099. "type":"Sprite3D",
  6100. "instanceID":183,
  6101. "props":{
  6102. "name":"role",
  6103. "active":true,
  6104. "isStatic":false,
  6105. "layer":0,
  6106. "position":[
  6107. -11.73,
  6108. 0.988,
  6109. 23.8
  6110. ],
  6111. "rotation":[
  6112. 0,
  6113. -0.6073738,
  6114. 0,
  6115. -0.7944162
  6116. ],
  6117. "scale":[
  6118. 0.9999998,
  6119. 1,
  6120. 0.9999998
  6121. ]
  6122. },
  6123. "components":[],
  6124. "child":[]
  6125. },
  6126. {
  6127. "type":"Sprite3D",
  6128. "instanceID":184,
  6129. "props":{
  6130. "name":"role",
  6131. "active":true,
  6132. "isStatic":false,
  6133. "layer":0,
  6134. "position":[
  6135. -13.29039,
  6136. 0.988,
  6137. 25.112
  6138. ],
  6139. "rotation":[
  6140. 0,
  6141. -0.9683183,
  6142. 0,
  6143. -0.2497192
  6144. ],
  6145. "scale":[
  6146. 1,
  6147. 1,
  6148. 1
  6149. ]
  6150. },
  6151. "components":[],
  6152. "child":[]
  6153. },
  6154. {
  6155. "type":"Sprite3D",
  6156. "instanceID":185,
  6157. "props":{
  6158. "name":"role",
  6159. "active":true,
  6160. "isStatic":false,
  6161. "layer":0,
  6162. "position":[
  6163. -16.51,
  6164. 0.988,
  6165. 26.07
  6166. ],
  6167. "rotation":[
  6168. 0,
  6169. -0.9683183,
  6170. 0,
  6171. -0.2497192
  6172. ],
  6173. "scale":[
  6174. 1,
  6175. 1,
  6176. 1
  6177. ]
  6178. },
  6179. "components":[],
  6180. "child":[]
  6181. },
  6182. {
  6183. "type":"Sprite3D",
  6184. "instanceID":186,
  6185. "props":{
  6186. "name":"role",
  6187. "active":true,
  6188. "isStatic":false,
  6189. "layer":0,
  6190. "position":[
  6191. -18.83287,
  6192. 0.988,
  6193. 26.06088
  6194. ],
  6195. "rotation":[
  6196. 0,
  6197. -1,
  6198. 0,
  6199. 4.988234E-05
  6200. ],
  6201. "scale":[
  6202. 1,
  6203. 1,
  6204. 1
  6205. ]
  6206. },
  6207. "components":[],
  6208. "child":[]
  6209. },
  6210. {
  6211. "type":"Sprite3D",
  6212. "instanceID":187,
  6213. "props":{
  6214. "name":"role",
  6215. "active":true,
  6216. "isStatic":false,
  6217. "layer":0,
  6218. "position":[
  6219. -18.02,
  6220. 0.988,
  6221. 29.4
  6222. ],
  6223. "rotation":[
  6224. 0,
  6225. -1,
  6226. 0,
  6227. 4.988234E-05
  6228. ],
  6229. "scale":[
  6230. 1,
  6231. 1,
  6232. 1
  6233. ]
  6234. },
  6235. "components":[],
  6236. "child":[]
  6237. },
  6238. {
  6239. "type":"Sprite3D",
  6240. "instanceID":188,
  6241. "props":{
  6242. "name":"role",
  6243. "active":true,
  6244. "isStatic":false,
  6245. "layer":0,
  6246. "position":[
  6247. -18.77458,
  6248. 0.988,
  6249. 30.74093
  6250. ],
  6251. "rotation":[
  6252. 0,
  6253. -0.9785604,
  6254. 0,
  6255. 0.2059601
  6256. ],
  6257. "scale":[
  6258. 1,
  6259. 1,
  6260. 1
  6261. ]
  6262. },
  6263. "components":[],
  6264. "child":[]
  6265. },
  6266. {
  6267. "type":"Sprite3D",
  6268. "instanceID":189,
  6269. "props":{
  6270. "name":"role",
  6271. "active":true,
  6272. "isStatic":false,
  6273. "layer":0,
  6274. "position":[
  6275. -18.78854,
  6276. 0.988,
  6277. 32.81826
  6278. ],
  6279. "rotation":[
  6280. 0,
  6281. -0.9847428,
  6282. 0,
  6283. -0.1740162
  6284. ],
  6285. "scale":[
  6286. 1.000001,
  6287. 1,
  6288. 1.000001
  6289. ]
  6290. },
  6291. "components":[],
  6292. "child":[]
  6293. },
  6294. {
  6295. "type":"Sprite3D",
  6296. "instanceID":190,
  6297. "props":{
  6298. "name":"role",
  6299. "active":true,
  6300. "isStatic":false,
  6301. "layer":0,
  6302. "position":[
  6303. -19.94,
  6304. 0.988,
  6305. 36.62
  6306. ],
  6307. "rotation":[
  6308. 0,
  6309. -0.9847428,
  6310. 0,
  6311. -0.1740162
  6312. ],
  6313. "scale":[
  6314. 1,
  6315. 1,
  6316. 1
  6317. ]
  6318. },
  6319. "components":[],
  6320. "child":[]
  6321. },
  6322. {
  6323. "type":"Sprite3D",
  6324. "instanceID":191,
  6325. "props":{
  6326. "name":"role",
  6327. "active":true,
  6328. "isStatic":false,
  6329. "layer":0,
  6330. "position":[
  6331. -20.73951,
  6332. 0.988,
  6333. 39.62736
  6334. ],
  6335. "rotation":[
  6336. 0,
  6337. -0.7484983,
  6338. 0,
  6339. 0.6631367
  6340. ],
  6341. "scale":[
  6342. 1,
  6343. 1,
  6344. 1
  6345. ]
  6346. },
  6347. "components":[],
  6348. "child":[]
  6349. },
  6350. {
  6351. "type":"Sprite3D",
  6352. "instanceID":192,
  6353. "props":{
  6354. "name":"role",
  6355. "active":true,
  6356. "isStatic":false,
  6357. "layer":0,
  6358. "position":[
  6359. -20.216,
  6360. 0.988,
  6361. 42.11311
  6362. ],
  6363. "rotation":[
  6364. 0,
  6365. -0.9666875,
  6366. 0,
  6367. 0.2559597
  6368. ],
  6369. "scale":[
  6370. 0.9999998,
  6371. 1,
  6372. 0.9999998
  6373. ]
  6374. },
  6375. "components":[],
  6376. "child":[]
  6377. },
  6378. {
  6379. "type":"Sprite3D",
  6380. "instanceID":193,
  6381. "props":{
  6382. "name":"role",
  6383. "active":true,
  6384. "isStatic":false,
  6385. "layer":0,
  6386. "position":[
  6387. -21.13611,
  6388. 0.988,
  6389. 44.07636
  6390. ],
  6391. "rotation":[
  6392. 0,
  6393. -0.9968767,
  6394. 0,
  6395. -0.07897383
  6396. ],
  6397. "scale":[
  6398. 1,
  6399. 1,
  6400. 1
  6401. ]
  6402. },
  6403. "components":[],
  6404. "child":[]
  6405. },
  6406. {
  6407. "type":"Sprite3D",
  6408. "instanceID":194,
  6409. "props":{
  6410. "name":"role",
  6411. "active":true,
  6412. "isStatic":false,
  6413. "layer":0,
  6414. "position":[
  6415. -21.526,
  6416. -0.67,
  6417. 51.258
  6418. ],
  6419. "rotation":[
  6420. 0,
  6421. -0.9968767,
  6422. 0,
  6423. -0.07897383
  6424. ],
  6425. "scale":[
  6426. 1,
  6427. 1,
  6428. 1
  6429. ]
  6430. },
  6431. "components":[],
  6432. "child":[]
  6433. },
  6434. {
  6435. "type":"Sprite3D",
  6436. "instanceID":195,
  6437. "props":{
  6438. "name":"role",
  6439. "active":true,
  6440. "isStatic":false,
  6441. "layer":0,
  6442. "position":[
  6443. -20.58,
  6444. -0.67,
  6445. 52.572
  6446. ],
  6447. "rotation":[
  6448. 0,
  6449. -0.9968767,
  6450. 0,
  6451. -0.07897383
  6452. ],
  6453. "scale":[
  6454. 1,
  6455. 1,
  6456. 1
  6457. ]
  6458. },
  6459. "components":[],
  6460. "child":[]
  6461. },
  6462. {
  6463. "type":"Sprite3D",
  6464. "instanceID":196,
  6465. "props":{
  6466. "name":"role",
  6467. "active":true,
  6468. "isStatic":false,
  6469. "layer":0,
  6470. "position":[
  6471. -22.03969,
  6472. -0.67,
  6473. 54.62778
  6474. ],
  6475. "rotation":[
  6476. 0,
  6477. -0.8789921,
  6478. 0,
  6479. -0.4768365
  6480. ],
  6481. "scale":[
  6482. 1,
  6483. 1,
  6484. 1
  6485. ]
  6486. },
  6487. "components":[],
  6488. "child":[]
  6489. },
  6490. {
  6491. "type":"Sprite3D",
  6492. "instanceID":197,
  6493. "props":{
  6494. "name":"role",
  6495. "active":true,
  6496. "isStatic":false,
  6497. "layer":0,
  6498. "position":[
  6499. -23.38,
  6500. -0.67,
  6501. 54.28
  6502. ],
  6503. "rotation":[
  6504. 0,
  6505. -0.8789921,
  6506. 0,
  6507. -0.4768365
  6508. ],
  6509. "scale":[
  6510. 1.000001,
  6511. 1,
  6512. 1.000001
  6513. ]
  6514. },
  6515. "components":[],
  6516. "child":[]
  6517. },
  6518. {
  6519. "type":"Sprite3D",
  6520. "instanceID":198,
  6521. "props":{
  6522. "name":"role",
  6523. "active":true,
  6524. "isStatic":false,
  6525. "layer":0,
  6526. "position":[
  6527. -23.38,
  6528. -0.67,
  6529. 55.84
  6530. ],
  6531. "rotation":[
  6532. 0,
  6533. -0.8789921,
  6534. 0,
  6535. -0.4768365
  6536. ],
  6537. "scale":[
  6538. 1.000001,
  6539. 1,
  6540. 1.000001
  6541. ]
  6542. },
  6543. "components":[],
  6544. "child":[]
  6545. },
  6546. {
  6547. "type":"Sprite3D",
  6548. "instanceID":199,
  6549. "props":{
  6550. "name":"role",
  6551. "active":true,
  6552. "isStatic":false,
  6553. "layer":0,
  6554. "position":[
  6555. -24.683,
  6556. -0.67,
  6557. 60.324
  6558. ],
  6559. "rotation":[
  6560. 0,
  6561. -0.8789921,
  6562. 0,
  6563. -0.4768365
  6564. ],
  6565. "scale":[
  6566. 1.000001,
  6567. 1,
  6568. 1.000001
  6569. ]
  6570. },
  6571. "components":[],
  6572. "child":[]
  6573. },
  6574. {
  6575. "type":"Sprite3D",
  6576. "instanceID":200,
  6577. "props":{
  6578. "name":"role",
  6579. "active":true,
  6580. "isStatic":false,
  6581. "layer":0,
  6582. "position":[
  6583. -23.77,
  6584. -0.67,
  6585. 64.05505
  6586. ],
  6587. "rotation":[
  6588. 0,
  6589. -0.2677404,
  6590. 0,
  6591. -0.9634911
  6592. ],
  6593. "scale":[
  6594. 1.000001,
  6595. 1,
  6596. 1.000001
  6597. ]
  6598. },
  6599. "components":[],
  6600. "child":[]
  6601. },
  6602. {
  6603. "type":"Sprite3D",
  6604. "instanceID":201,
  6605. "props":{
  6606. "name":"role",
  6607. "active":true,
  6608. "isStatic":false,
  6609. "layer":0,
  6610. "position":[
  6611. -26.39,
  6612. -0.67,
  6613. 65.02
  6614. ],
  6615. "rotation":[
  6616. 0,
  6617. -0.2677404,
  6618. 0,
  6619. -0.9634911
  6620. ],
  6621. "scale":[
  6622. 1,
  6623. 1,
  6624. 1
  6625. ]
  6626. },
  6627. "components":[],
  6628. "child":[]
  6629. },
  6630. {
  6631. "type":"Sprite3D",
  6632. "instanceID":202,
  6633. "props":{
  6634. "name":"role",
  6635. "active":true,
  6636. "isStatic":false,
  6637. "layer":0,
  6638. "position":[
  6639. -26.39,
  6640. -0.67,
  6641. 64.256
  6642. ],
  6643. "rotation":[
  6644. 0,
  6645. -0.2677404,
  6646. 0,
  6647. -0.9634911
  6648. ],
  6649. "scale":[
  6650. 1,
  6651. 1,
  6652. 1
  6653. ]
  6654. },
  6655. "components":[],
  6656. "child":[]
  6657. },
  6658. {
  6659. "type":"Sprite3D",
  6660. "instanceID":203,
  6661. "props":{
  6662. "name":"role",
  6663. "active":true,
  6664. "isStatic":false,
  6665. "layer":0,
  6666. "position":[
  6667. -30.34,
  6668. -0.67,
  6669. 64.643
  6670. ],
  6671. "rotation":[
  6672. 0,
  6673. -0.2677404,
  6674. 0,
  6675. -0.9634911
  6676. ],
  6677. "scale":[
  6678. 1,
  6679. 1,
  6680. 1
  6681. ]
  6682. },
  6683. "components":[],
  6684. "child":[]
  6685. },
  6686. {
  6687. "type":"Sprite3D",
  6688. "instanceID":204,
  6689. "props":{
  6690. "name":"role",
  6691. "active":true,
  6692. "isStatic":false,
  6693. "layer":0,
  6694. "position":[
  6695. -29.7868,
  6696. -0.67,
  6697. 66.31016
  6698. ],
  6699. "rotation":[
  6700. 0,
  6701. -0.5035926,
  6702. 0,
  6703. -0.8639413
  6704. ],
  6705. "scale":[
  6706. 1,
  6707. 1,
  6708. 1
  6709. ]
  6710. },
  6711. "components":[],
  6712. "child":[]
  6713. },
  6714. {
  6715. "type":"Sprite3D",
  6716. "instanceID":205,
  6717. "props":{
  6718. "name":"role",
  6719. "active":true,
  6720. "isStatic":false,
  6721. "layer":0,
  6722. "position":[
  6723. -30.529,
  6724. -0.67,
  6725. 67.503
  6726. ],
  6727. "rotation":[
  6728. 0,
  6729. -0.9999987,
  6730. 0,
  6731. 0.001644815
  6732. ],
  6733. "scale":[
  6734. 1,
  6735. 1,
  6736. 1
  6737. ]
  6738. },
  6739. "components":[],
  6740. "child":[]
  6741. },
  6742. {
  6743. "type":"Sprite3D",
  6744. "instanceID":206,
  6745. "props":{
  6746. "name":"Coin",
  6747. "active":true,
  6748. "isStatic":false,
  6749. "layer":0,
  6750. "position":[
  6751. -2.84,
  6752. 1.014,
  6753. 10.55
  6754. ],
  6755. "rotation":[
  6756. 0,
  6757. 0,
  6758. 0,
  6759. -1
  6760. ],
  6761. "scale":[
  6762. 1.5,
  6763. 1.5,
  6764. 1.5
  6765. ]
  6766. },
  6767. "components":[],
  6768. "child":[]
  6769. },
  6770. {
  6771. "type":"Sprite3D",
  6772. "instanceID":207,
  6773. "props":{
  6774. "name":"Coin",
  6775. "active":true,
  6776. "isStatic":false,
  6777. "layer":0,
  6778. "position":[
  6779. -2.05,
  6780. 1.014,
  6781. 10.55
  6782. ],
  6783. "rotation":[
  6784. 0,
  6785. 0,
  6786. 0,
  6787. -1
  6788. ],
  6789. "scale":[
  6790. 1.5,
  6791. 1.5,
  6792. 1.5
  6793. ]
  6794. },
  6795. "components":[],
  6796. "child":[]
  6797. },
  6798. {
  6799. "type":"Sprite3D",
  6800. "instanceID":208,
  6801. "props":{
  6802. "name":"Coin",
  6803. "active":true,
  6804. "isStatic":false,
  6805. "layer":0,
  6806. "position":[
  6807. -11.59,
  6808. 1.014,
  6809. 17.62
  6810. ],
  6811. "rotation":[
  6812. 0,
  6813. 0,
  6814. 0,
  6815. -1
  6816. ],
  6817. "scale":[
  6818. 1.5,
  6819. 1.5,
  6820. 1.5
  6821. ]
  6822. },
  6823. "components":[],
  6824. "child":[]
  6825. },
  6826. {
  6827. "type":"Sprite3D",
  6828. "instanceID":209,
  6829. "props":{
  6830. "name":"Coin",
  6831. "active":true,
  6832. "isStatic":false,
  6833. "layer":0,
  6834. "position":[
  6835. -11.59,
  6836. 1.014,
  6837. 18.6
  6838. ],
  6839. "rotation":[
  6840. 0,
  6841. 0,
  6842. 0,
  6843. -1
  6844. ],
  6845. "scale":[
  6846. 1.5,
  6847. 1.5,
  6848. 1.5
  6849. ]
  6850. },
  6851. "components":[],
  6852. "child":[]
  6853. },
  6854. {
  6855. "type":"Sprite3D",
  6856. "instanceID":210,
  6857. "props":{
  6858. "name":"Coin",
  6859. "active":true,
  6860. "isStatic":false,
  6861. "layer":0,
  6862. "position":[
  6863. -11.59,
  6864. 1.014,
  6865. 19.45
  6866. ],
  6867. "rotation":[
  6868. 0,
  6869. 0,
  6870. 0,
  6871. -1
  6872. ],
  6873. "scale":[
  6874. 1.5,
  6875. 1.5,
  6876. 1.5
  6877. ]
  6878. },
  6879. "components":[],
  6880. "child":[]
  6881. },
  6882. {
  6883. "type":"Sprite3D",
  6884. "instanceID":211,
  6885. "props":{
  6886. "name":"Coin",
  6887. "active":true,
  6888. "isStatic":false,
  6889. "layer":0,
  6890. "position":[
  6891. -12.069,
  6892. 1.014,
  6893. 24.72
  6894. ],
  6895. "rotation":[
  6896. 0,
  6897. 0,
  6898. 0,
  6899. -1
  6900. ],
  6901. "scale":[
  6902. 1.5,
  6903. 1.5,
  6904. 1.5
  6905. ]
  6906. },
  6907. "components":[],
  6908. "child":[]
  6909. },
  6910. {
  6911. "type":"Sprite3D",
  6912. "instanceID":212,
  6913. "props":{
  6914. "name":"Coin",
  6915. "active":true,
  6916. "isStatic":false,
  6917. "layer":0,
  6918. "position":[
  6919. -13.665,
  6920. 1.014,
  6921. 24.751
  6922. ],
  6923. "rotation":[
  6924. 0,
  6925. 0,
  6926. 0,
  6927. -1
  6928. ],
  6929. "scale":[
  6930. 1.5,
  6931. 1.5,
  6932. 1.5
  6933. ]
  6934. },
  6935. "components":[],
  6936. "child":[]
  6937. },
  6938. {
  6939. "type":"Sprite3D",
  6940. "instanceID":213,
  6941. "props":{
  6942. "name":"Coin",
  6943. "active":true,
  6944. "isStatic":false,
  6945. "layer":0,
  6946. "position":[
  6947. -16.02,
  6948. 1.014,
  6949. 24.72
  6950. ],
  6951. "rotation":[
  6952. 0,
  6953. 0,
  6954. 0,
  6955. -1
  6956. ],
  6957. "scale":[
  6958. 1.5,
  6959. 1.5,
  6960. 1.5
  6961. ]
  6962. },
  6963. "components":[],
  6964. "child":[]
  6965. },
  6966. {
  6967. "type":"Sprite3D",
  6968. "instanceID":214,
  6969. "props":{
  6970. "name":"Coin",
  6971. "active":true,
  6972. "isStatic":false,
  6973. "layer":0,
  6974. "position":[
  6975. -18.5,
  6976. 1.014,
  6977. 29.51
  6978. ],
  6979. "rotation":[
  6980. 0,
  6981. 0,
  6982. 0,
  6983. -1
  6984. ],
  6985. "scale":[
  6986. 1.5,
  6987. 1.5,
  6988. 1.5
  6989. ]
  6990. },
  6991. "components":[],
  6992. "child":[]
  6993. },
  6994. {
  6995. "type":"Sprite3D",
  6996. "instanceID":215,
  6997. "props":{
  6998. "name":"Coin",
  6999. "active":true,
  7000. "isStatic":false,
  7001. "layer":0,
  7002. "position":[
  7003. -18.5,
  7004. 1.014,
  7005. 30.44
  7006. ],
  7007. "rotation":[
  7008. 0,
  7009. 0,
  7010. 0,
  7011. -1
  7012. ],
  7013. "scale":[
  7014. 1.5,
  7015. 1.5,
  7016. 1.5
  7017. ]
  7018. },
  7019. "components":[],
  7020. "child":[]
  7021. },
  7022. {
  7023. "type":"Sprite3D",
  7024. "instanceID":216,
  7025. "props":{
  7026. "name":"Coin",
  7027. "active":true,
  7028. "isStatic":false,
  7029. "layer":0,
  7030. "position":[
  7031. -18.5,
  7032. 1.014,
  7033. 31.51
  7034. ],
  7035. "rotation":[
  7036. 0,
  7037. 0,
  7038. 0,
  7039. -1
  7040. ],
  7041. "scale":[
  7042. 1.5,
  7043. 1.5,
  7044. 1.5
  7045. ]
  7046. },
  7047. "components":[],
  7048. "child":[]
  7049. },
  7050. {
  7051. "type":"Sprite3D",
  7052. "instanceID":217,
  7053. "props":{
  7054. "name":"Coin",
  7055. "active":true,
  7056. "isStatic":false,
  7057. "layer":0,
  7058. "position":[
  7059. -21.046,
  7060. 1.014,
  7061. 37.54
  7062. ],
  7063. "rotation":[
  7064. 0,
  7065. 0,
  7066. 0,
  7067. -1
  7068. ],
  7069. "scale":[
  7070. 1.5,
  7071. 1.5,
  7072. 1.5
  7073. ]
  7074. },
  7075. "components":[],
  7076. "child":[]
  7077. },
  7078. {
  7079. "type":"Sprite3D",
  7080. "instanceID":218,
  7081. "props":{
  7082. "name":"Coin",
  7083. "active":true,
  7084. "isStatic":false,
  7085. "layer":0,
  7086. "position":[
  7087. -21.021,
  7088. 1.014,
  7089. 38.441
  7090. ],
  7091. "rotation":[
  7092. 0,
  7093. 0,
  7094. 0,
  7095. -1
  7096. ],
  7097. "scale":[
  7098. 1.5,
  7099. 1.5,
  7100. 1.5
  7101. ]
  7102. },
  7103. "components":[],
  7104. "child":[]
  7105. },
  7106. {
  7107. "type":"Sprite3D",
  7108. "instanceID":219,
  7109. "props":{
  7110. "name":"Coin",
  7111. "active":true,
  7112. "isStatic":false,
  7113. "layer":0,
  7114. "position":[
  7115. -21.021,
  7116. 1.014,
  7117. 39.225
  7118. ],
  7119. "rotation":[
  7120. 0,
  7121. 0,
  7122. 0,
  7123. -1
  7124. ],
  7125. "scale":[
  7126. 1.5,
  7127. 1.5,
  7128. 1.5
  7129. ]
  7130. },
  7131. "components":[],
  7132. "child":[]
  7133. },
  7134. {
  7135. "type":"Sprite3D",
  7136. "instanceID":220,
  7137. "props":{
  7138. "name":"Coin",
  7139. "active":true,
  7140. "isStatic":false,
  7141. "layer":0,
  7142. "position":[
  7143. -30.505,
  7144. -0.662,
  7145. 70.381
  7146. ],
  7147. "rotation":[
  7148. 0,
  7149. 0,
  7150. 0,
  7151. -1
  7152. ],
  7153. "scale":[
  7154. 1.5,
  7155. 1.5,
  7156. 1.5
  7157. ]
  7158. },
  7159. "components":[],
  7160. "child":[]
  7161. },
  7162. {
  7163. "type":"Sprite3D",
  7164. "instanceID":221,
  7165. "props":{
  7166. "name":"Coin",
  7167. "active":true,
  7168. "isStatic":false,
  7169. "layer":0,
  7170. "position":[
  7171. -30.505,
  7172. -0.662,
  7173. 69.53
  7174. ],
  7175. "rotation":[
  7176. 0,
  7177. 0,
  7178. 0,
  7179. -1
  7180. ],
  7181. "scale":[
  7182. 1.5,
  7183. 1.5,
  7184. 1.5
  7185. ]
  7186. },
  7187. "components":[],
  7188. "child":[]
  7189. },
  7190. {
  7191. "type":"Sprite3D",
  7192. "instanceID":222,
  7193. "props":{
  7194. "name":"Coin",
  7195. "active":true,
  7196. "isStatic":false,
  7197. "layer":0,
  7198. "position":[
  7199. -30.505,
  7200. -0.662,
  7201. 71.25
  7202. ],
  7203. "rotation":[
  7204. 0,
  7205. 0,
  7206. 0,
  7207. -1
  7208. ],
  7209. "scale":[
  7210. 1.5,
  7211. 1.5,
  7212. 1.5
  7213. ]
  7214. },
  7215. "components":[],
  7216. "child":[]
  7217. },
  7218. {
  7219. "type":"Sprite3D",
  7220. "instanceID":223,
  7221. "props":{
  7222. "name":"Coin",
  7223. "active":true,
  7224. "isStatic":false,
  7225. "layer":0,
  7226. "position":[
  7227. -30.505,
  7228. -0.662,
  7229. 72.17
  7230. ],
  7231. "rotation":[
  7232. 0,
  7233. 0,
  7234. 0,
  7235. -1
  7236. ],
  7237. "scale":[
  7238. 1.5,
  7239. 1.5,
  7240. 1.5
  7241. ]
  7242. },
  7243. "components":[],
  7244. "child":[]
  7245. },
  7246. {
  7247. "type":"Sprite3D",
  7248. "instanceID":224,
  7249. "props":{
  7250. "name":"Coin",
  7251. "active":true,
  7252. "isStatic":false,
  7253. "layer":0,
  7254. "position":[
  7255. -30.505,
  7256. -0.662,
  7257. 73.51
  7258. ],
  7259. "rotation":[
  7260. 0,
  7261. 0,
  7262. 0,
  7263. -1
  7264. ],
  7265. "scale":[
  7266. 1.5,
  7267. 1.5,
  7268. 1.5
  7269. ]
  7270. },
  7271. "components":[],
  7272. "child":[]
  7273. },
  7274. {
  7275. "type":"Sprite3D",
  7276. "instanceID":225,
  7277. "props":{
  7278. "name":"Coin",
  7279. "active":true,
  7280. "isStatic":false,
  7281. "layer":0,
  7282. "position":[
  7283. -30.505,
  7284. -0.662,
  7285. 74.946
  7286. ],
  7287. "rotation":[
  7288. 0,
  7289. 0,
  7290. 0,
  7291. -1
  7292. ],
  7293. "scale":[
  7294. 1.5,
  7295. 1.5,
  7296. 1.5
  7297. ]
  7298. },
  7299. "components":[],
  7300. "child":[]
  7301. },
  7302. {
  7303. "type":"Sprite3D",
  7304. "instanceID":226,
  7305. "props":{
  7306. "name":"speed",
  7307. "active":true,
  7308. "isStatic":false,
  7309. "layer":0,
  7310. "position":[
  7311. -24.39,
  7312. -0.676,
  7313. 56.37
  7314. ],
  7315. "rotation":[
  7316. 0,
  7317. 0.7071068,
  7318. 0.7071068,
  7319. 0
  7320. ],
  7321. "scale":[
  7322. 1,
  7323. 1,
  7324. 1
  7325. ]
  7326. },
  7327. "components":[],
  7328. "child":[]
  7329. },
  7330. {
  7331. "type":"MeshSprite3D",
  7332. "instanceID":227,
  7333. "props":{
  7334. "name":"ground",
  7335. "active":true,
  7336. "isStatic":false,
  7337. "layer":0,
  7338. "position":[
  7339. -5.64,
  7340. 0,
  7341. 10.67
  7342. ],
  7343. "rotation":[
  7344. -0.5,
  7345. 0.5,
  7346. 0.5,
  7347. 0.5
  7348. ],
  7349. "scale":[
  7350. 2.050002,
  7351. 8.842571,
  7352. 1
  7353. ],
  7354. "meshPath":"Assets/model/ground-ground.lm",
  7355. "enableRender":true,
  7356. "materials":[
  7357. {
  7358. "path":"Assets/yiqilang_mat/ground.lmat"
  7359. },
  7360. {
  7361. "path":"Assets/yiqilang_mat/ground.lmat"
  7362. }
  7363. ]
  7364. },
  7365. "components":[
  7366. {
  7367. "type":"Animator",
  7368. "layers":[],
  7369. "cullingMode":0,
  7370. "playOnWake":true
  7371. }
  7372. ],
  7373. "child":[
  7374. {
  7375. "type":"Sprite3D",
  7376. "instanceID":228,
  7377. "props":{
  7378. "name":"GameObject",
  7379. "active":true,
  7380. "isStatic":false,
  7381. "layer":0,
  7382. "position":[
  7383. 0,
  7384. 0,
  7385. 0.5
  7386. ],
  7387. "rotation":[
  7388. 0,
  7389. 0,
  7390. 0,
  7391. -1
  7392. ],
  7393. "scale":[
  7394. 1,
  7395. 1,
  7396. 1
  7397. ]
  7398. },
  7399. "components":[
  7400. {
  7401. "type":"PhysicsCollider",
  7402. "restitution":0,
  7403. "friction":0.5,
  7404. "rollingFriction":0,
  7405. "shapes":[
  7406. {
  7407. "type":"BoxColliderShape",
  7408. "center":[
  7409. 0,
  7410. 0,
  7411. 0
  7412. ],
  7413. "size":[
  7414. 1,
  7415. 1,
  7416. 1
  7417. ]
  7418. }
  7419. ],
  7420. "isTrigger":false
  7421. }
  7422. ],
  7423. "child":[]
  7424. }
  7425. ]
  7426. },
  7427. {
  7428. "type":"MeshSprite3D",
  7429. "instanceID":229,
  7430. "props":{
  7431. "name":"ground",
  7432. "active":true,
  7433. "isStatic":false,
  7434. "layer":0,
  7435. "position":[
  7436. -10.88,
  7437. 0,
  7438. 10.67
  7439. ],
  7440. "rotation":[
  7441. 0.7071068,
  7442. 0,
  7443. 0,
  7444. -0.7071068
  7445. ],
  7446. "scale":[
  7447. 2.050002,
  7448. 2.050001,
  7449. 1
  7450. ],
  7451. "meshPath":"Assets/model/ground-ground.lm",
  7452. "enableRender":true,
  7453. "materials":[
  7454. {
  7455. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  7456. }
  7457. ]
  7458. },
  7459. "components":[
  7460. {
  7461. "type":"Animator",
  7462. "layers":[],
  7463. "cullingMode":0,
  7464. "playOnWake":true
  7465. }
  7466. ],
  7467. "child":[
  7468. {
  7469. "type":"Sprite3D",
  7470. "instanceID":230,
  7471. "props":{
  7472. "name":"GameObject",
  7473. "active":true,
  7474. "isStatic":false,
  7475. "layer":0,
  7476. "position":[
  7477. 0,
  7478. 0,
  7479. 0.5
  7480. ],
  7481. "rotation":[
  7482. 0,
  7483. 0,
  7484. 0,
  7485. -1
  7486. ],
  7487. "scale":[
  7488. 1,
  7489. 1,
  7490. 1
  7491. ]
  7492. },
  7493. "components":[
  7494. {
  7495. "type":"PhysicsCollider",
  7496. "restitution":0,
  7497. "friction":0.5,
  7498. "rollingFriction":0,
  7499. "shapes":[
  7500. {
  7501. "type":"BoxColliderShape",
  7502. "center":[
  7503. 0,
  7504. 0,
  7505. 0
  7506. ],
  7507. "size":[
  7508. 1,
  7509. 1,
  7510. 1
  7511. ]
  7512. }
  7513. ],
  7514. "isTrigger":false
  7515. }
  7516. ],
  7517. "child":[]
  7518. }
  7519. ]
  7520. },
  7521. {
  7522. "type":"MeshSprite3D",
  7523. "instanceID":231,
  7524. "props":{
  7525. "name":"ground",
  7526. "active":true,
  7527. "isStatic":false,
  7528. "layer":0,
  7529. "position":[
  7530. -10.88,
  7531. 0,
  7532. 25.45
  7533. ],
  7534. "rotation":[
  7535. 0,
  7536. 0.7071068,
  7537. 0.7071068,
  7538. 0
  7539. ],
  7540. "scale":[
  7541. 2.050002,
  7542. 2.050001,
  7543. 1
  7544. ],
  7545. "meshPath":"Assets/model/ground-ground.lm",
  7546. "enableRender":true,
  7547. "materials":[
  7548. {
  7549. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  7550. }
  7551. ]
  7552. },
  7553. "components":[
  7554. {
  7555. "type":"Animator",
  7556. "layers":[],
  7557. "cullingMode":0,
  7558. "playOnWake":true
  7559. }
  7560. ],
  7561. "child":[
  7562. {
  7563. "type":"Sprite3D",
  7564. "instanceID":232,
  7565. "props":{
  7566. "name":"GameObject",
  7567. "active":true,
  7568. "isStatic":false,
  7569. "layer":0,
  7570. "position":[
  7571. 0,
  7572. 0,
  7573. 0.5
  7574. ],
  7575. "rotation":[
  7576. 0,
  7577. 0,
  7578. 0,
  7579. -1
  7580. ],
  7581. "scale":[
  7582. 1,
  7583. 1,
  7584. 1
  7585. ]
  7586. },
  7587. "components":[
  7588. {
  7589. "type":"PhysicsCollider",
  7590. "restitution":0,
  7591. "friction":0.5,
  7592. "rollingFriction":0,
  7593. "shapes":[
  7594. {
  7595. "type":"BoxColliderShape",
  7596. "center":[
  7597. 0,
  7598. 0,
  7599. 0
  7600. ],
  7601. "size":[
  7602. 1,
  7603. 1,
  7604. 1
  7605. ]
  7606. }
  7607. ],
  7608. "isTrigger":false
  7609. }
  7610. ],
  7611. "child":[]
  7612. }
  7613. ]
  7614. },
  7615. {
  7616. "type":"MeshSprite3D",
  7617. "instanceID":233,
  7618. "props":{
  7619. "name":"ground",
  7620. "active":true,
  7621. "isStatic":false,
  7622. "layer":0,
  7623. "position":[
  7624. -18.04,
  7625. 0,
  7626. 25.45
  7627. ],
  7628. "rotation":[
  7629. 0.7071068,
  7630. 0,
  7631. 0,
  7632. -0.7071068
  7633. ],
  7634. "scale":[
  7635. 2.05,
  7636. 2.050001,
  7637. 1
  7638. ],
  7639. "meshPath":"Assets/model/ground-ground.lm",
  7640. "enableRender":true,
  7641. "materials":[
  7642. {
  7643. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  7644. }
  7645. ]
  7646. },
  7647. "components":[
  7648. {
  7649. "type":"Animator",
  7650. "layers":[],
  7651. "cullingMode":0,
  7652. "playOnWake":true
  7653. }
  7654. ],
  7655. "child":[
  7656. {
  7657. "type":"Sprite3D",
  7658. "instanceID":234,
  7659. "props":{
  7660. "name":"GameObject",
  7661. "active":true,
  7662. "isStatic":false,
  7663. "layer":0,
  7664. "position":[
  7665. 0,
  7666. 0,
  7667. 0.5
  7668. ],
  7669. "rotation":[
  7670. 0,
  7671. 0,
  7672. 0,
  7673. -1
  7674. ],
  7675. "scale":[
  7676. 1,
  7677. 1,
  7678. 1
  7679. ]
  7680. },
  7681. "components":[
  7682. {
  7683. "type":"PhysicsCollider",
  7684. "restitution":0,
  7685. "friction":0.5,
  7686. "rollingFriction":0,
  7687. "shapes":[
  7688. {
  7689. "type":"BoxColliderShape",
  7690. "center":[
  7691. 0,
  7692. 0,
  7693. 0
  7694. ],
  7695. "size":[
  7696. 1,
  7697. 1,
  7698. 1
  7699. ]
  7700. }
  7701. ],
  7702. "isTrigger":false
  7703. }
  7704. ],
  7705. "child":[]
  7706. }
  7707. ]
  7708. },
  7709. {
  7710. "type":"MeshSprite3D",
  7711. "instanceID":235,
  7712. "props":{
  7713. "name":"ground",
  7714. "active":true,
  7715. "isStatic":false,
  7716. "layer":0,
  7717. "position":[
  7718. -18.05,
  7719. 0,
  7720. 36.97
  7721. ],
  7722. "rotation":[
  7723. 0,
  7724. 0.7071068,
  7725. 0.7071068,
  7726. 0
  7727. ],
  7728. "scale":[
  7729. 2.050002,
  7730. 2.050001,
  7731. 1
  7732. ],
  7733. "meshPath":"Assets/model/ground-ground.lm",
  7734. "enableRender":true,
  7735. "materials":[
  7736. {
  7737. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  7738. }
  7739. ]
  7740. },
  7741. "components":[
  7742. {
  7743. "type":"Animator",
  7744. "layers":[],
  7745. "cullingMode":0,
  7746. "playOnWake":true
  7747. }
  7748. ],
  7749. "child":[
  7750. {
  7751. "type":"Sprite3D",
  7752. "instanceID":236,
  7753. "props":{
  7754. "name":"GameObject",
  7755. "active":true,
  7756. "isStatic":false,
  7757. "layer":0,
  7758. "position":[
  7759. 0,
  7760. 0,
  7761. 0.5
  7762. ],
  7763. "rotation":[
  7764. 0,
  7765. 0,
  7766. 0,
  7767. -1
  7768. ],
  7769. "scale":[
  7770. 1,
  7771. 1,
  7772. 1
  7773. ]
  7774. },
  7775. "components":[
  7776. {
  7777. "type":"PhysicsCollider",
  7778. "restitution":0,
  7779. "friction":0.5,
  7780. "rollingFriction":0,
  7781. "shapes":[
  7782. {
  7783. "type":"BoxColliderShape",
  7784. "center":[
  7785. 0,
  7786. 0,
  7787. 0
  7788. ],
  7789. "size":[
  7790. 1,
  7791. 1,
  7792. 1
  7793. ]
  7794. }
  7795. ],
  7796. "isTrigger":false
  7797. }
  7798. ],
  7799. "child":[]
  7800. }
  7801. ]
  7802. },
  7803. {
  7804. "type":"MeshSprite3D",
  7805. "instanceID":237,
  7806. "props":{
  7807. "name":"ground",
  7808. "active":true,
  7809. "isStatic":false,
  7810. "layer":0,
  7811. "position":[
  7812. -20.98,
  7813. 0,
  7814. 36.967
  7815. ],
  7816. "rotation":[
  7817. 0.7071068,
  7818. 0,
  7819. 0,
  7820. -0.7071068
  7821. ],
  7822. "scale":[
  7823. 2.05,
  7824. 2.050001,
  7825. 1
  7826. ],
  7827. "meshPath":"Assets/model/ground-ground.lm",
  7828. "enableRender":true,
  7829. "materials":[
  7830. {
  7831. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  7832. }
  7833. ]
  7834. },
  7835. "components":[
  7836. {
  7837. "type":"Animator",
  7838. "layers":[],
  7839. "cullingMode":0,
  7840. "playOnWake":true
  7841. }
  7842. ],
  7843. "child":[
  7844. {
  7845. "type":"Sprite3D",
  7846. "instanceID":238,
  7847. "props":{
  7848. "name":"GameObject",
  7849. "active":true,
  7850. "isStatic":false,
  7851. "layer":0,
  7852. "position":[
  7853. 0,
  7854. 0,
  7855. 0.5
  7856. ],
  7857. "rotation":[
  7858. 0,
  7859. 0,
  7860. 0,
  7861. -1
  7862. ],
  7863. "scale":[
  7864. 1,
  7865. 1,
  7866. 1
  7867. ]
  7868. },
  7869. "components":[
  7870. {
  7871. "type":"PhysicsCollider",
  7872. "restitution":0,
  7873. "friction":0.5,
  7874. "rollingFriction":0,
  7875. "shapes":[
  7876. {
  7877. "type":"BoxColliderShape",
  7878. "center":[
  7879. 0,
  7880. 0,
  7881. 0
  7882. ],
  7883. "size":[
  7884. 1,
  7885. 1,
  7886. 1
  7887. ]
  7888. }
  7889. ],
  7890. "isTrigger":false
  7891. }
  7892. ],
  7893. "child":[]
  7894. }
  7895. ]
  7896. },
  7897. {
  7898. "type":"MeshSprite3D",
  7899. "instanceID":239,
  7900. "props":{
  7901. "name":"ground",
  7902. "active":true,
  7903. "isStatic":false,
  7904. "layer":0,
  7905. "position":[
  7906. -20.98,
  7907. -1.66,
  7908. 54.74
  7909. ],
  7910. "rotation":[
  7911. 0,
  7912. 0.7071068,
  7913. 0.7071068,
  7914. 0
  7915. ],
  7916. "scale":[
  7917. 2.050002,
  7918. 2.050001,
  7919. 1
  7920. ],
  7921. "meshPath":"Assets/model/ground-ground.lm",
  7922. "enableRender":true,
  7923. "materials":[
  7924. {
  7925. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  7926. }
  7927. ]
  7928. },
  7929. "components":[
  7930. {
  7931. "type":"Animator",
  7932. "layers":[],
  7933. "cullingMode":0,
  7934. "playOnWake":true
  7935. }
  7936. ],
  7937. "child":[
  7938. {
  7939. "type":"Sprite3D",
  7940. "instanceID":240,
  7941. "props":{
  7942. "name":"GameObject",
  7943. "active":true,
  7944. "isStatic":false,
  7945. "layer":0,
  7946. "position":[
  7947. 0,
  7948. 0,
  7949. 0.5
  7950. ],
  7951. "rotation":[
  7952. 0,
  7953. 0,
  7954. 0,
  7955. -1
  7956. ],
  7957. "scale":[
  7958. 1,
  7959. 1,
  7960. 1
  7961. ]
  7962. },
  7963. "components":[
  7964. {
  7965. "type":"PhysicsCollider",
  7966. "restitution":0,
  7967. "friction":0.5,
  7968. "rollingFriction":0,
  7969. "shapes":[
  7970. {
  7971. "type":"BoxColliderShape",
  7972. "center":[
  7973. 0,
  7974. 0,
  7975. 0
  7976. ],
  7977. "size":[
  7978. 1,
  7979. 1,
  7980. 1
  7981. ]
  7982. }
  7983. ],
  7984. "isTrigger":false
  7985. }
  7986. ],
  7987. "child":[]
  7988. }
  7989. ]
  7990. },
  7991. {
  7992. "type":"MeshSprite3D",
  7993. "instanceID":241,
  7994. "props":{
  7995. "name":"ground",
  7996. "active":true,
  7997. "isStatic":false,
  7998. "layer":0,
  7999. "position":[
  8000. -23.92,
  8001. -1.66,
  8002. 54.74
  8003. ],
  8004. "rotation":[
  8005. 0.7071068,
  8006. 0,
  8007. 0,
  8008. -0.7071068
  8009. ],
  8010. "scale":[
  8011. 2.05,
  8012. 2.050001,
  8013. 1
  8014. ],
  8015. "meshPath":"Assets/model/ground-ground.lm",
  8016. "enableRender":true,
  8017. "materials":[
  8018. {
  8019. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  8020. }
  8021. ]
  8022. },
  8023. "components":[
  8024. {
  8025. "type":"Animator",
  8026. "layers":[],
  8027. "cullingMode":0,
  8028. "playOnWake":true
  8029. }
  8030. ],
  8031. "child":[
  8032. {
  8033. "type":"Sprite3D",
  8034. "instanceID":242,
  8035. "props":{
  8036. "name":"GameObject",
  8037. "active":true,
  8038. "isStatic":false,
  8039. "layer":0,
  8040. "position":[
  8041. 0,
  8042. 0,
  8043. 0.5
  8044. ],
  8045. "rotation":[
  8046. 0,
  8047. 0,
  8048. 0,
  8049. -1
  8050. ],
  8051. "scale":[
  8052. 1,
  8053. 1,
  8054. 1
  8055. ]
  8056. },
  8057. "components":[
  8058. {
  8059. "type":"PhysicsCollider",
  8060. "restitution":0,
  8061. "friction":0.5,
  8062. "rollingFriction":0,
  8063. "shapes":[
  8064. {
  8065. "type":"BoxColliderShape",
  8066. "center":[
  8067. 0,
  8068. 0,
  8069. 0
  8070. ],
  8071. "size":[
  8072. 1,
  8073. 1,
  8074. 1
  8075. ]
  8076. }
  8077. ],
  8078. "isTrigger":false
  8079. }
  8080. ],
  8081. "child":[]
  8082. }
  8083. ]
  8084. },
  8085. {
  8086. "type":"MeshSprite3D",
  8087. "instanceID":243,
  8088. "props":{
  8089. "name":"ground",
  8090. "active":true,
  8091. "isStatic":false,
  8092. "layer":0,
  8093. "position":[
  8094. -29.902,
  8095. -1.66,
  8096. 65.02
  8097. ],
  8098. "rotation":[
  8099. 0.7071068,
  8100. 0,
  8101. 0,
  8102. -0.7071068
  8103. ],
  8104. "scale":[
  8105. 2.05,
  8106. 2.050001,
  8107. 1
  8108. ],
  8109. "meshPath":"Assets/model/ground-ground.lm",
  8110. "enableRender":true,
  8111. "materials":[
  8112. {
  8113. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  8114. }
  8115. ]
  8116. },
  8117. "components":[
  8118. {
  8119. "type":"Animator",
  8120. "layers":[],
  8121. "cullingMode":0,
  8122. "playOnWake":true
  8123. }
  8124. ],
  8125. "child":[
  8126. {
  8127. "type":"Sprite3D",
  8128. "instanceID":244,
  8129. "props":{
  8130. "name":"GameObject",
  8131. "active":true,
  8132. "isStatic":false,
  8133. "layer":0,
  8134. "position":[
  8135. 0,
  8136. 0,
  8137. 0.5
  8138. ],
  8139. "rotation":[
  8140. 0,
  8141. 0,
  8142. 0,
  8143. -1
  8144. ],
  8145. "scale":[
  8146. 1,
  8147. 1,
  8148. 1
  8149. ]
  8150. },
  8151. "components":[
  8152. {
  8153. "type":"PhysicsCollider",
  8154. "restitution":0,
  8155. "friction":0.5,
  8156. "rollingFriction":0,
  8157. "shapes":[
  8158. {
  8159. "type":"BoxColliderShape",
  8160. "center":[
  8161. 0,
  8162. 0,
  8163. 0
  8164. ],
  8165. "size":[
  8166. 1,
  8167. 1,
  8168. 1
  8169. ]
  8170. }
  8171. ],
  8172. "isTrigger":false
  8173. }
  8174. ],
  8175. "child":[]
  8176. }
  8177. ]
  8178. },
  8179. {
  8180. "type":"MeshSprite3D",
  8181. "instanceID":245,
  8182. "props":{
  8183. "name":"ground",
  8184. "active":true,
  8185. "isStatic":false,
  8186. "layer":0,
  8187. "position":[
  8188. -23.92,
  8189. -1.66,
  8190. 65.02
  8191. ],
  8192. "rotation":[
  8193. 0,
  8194. 0.7071068,
  8195. 0.7071068,
  8196. 0
  8197. ],
  8198. "scale":[
  8199. 2.050002,
  8200. 2.050001,
  8201. 1
  8202. ],
  8203. "meshPath":"Assets/model/ground-ground.lm",
  8204. "enableRender":true,
  8205. "materials":[
  8206. {
  8207. "path":"Assets/yiqilang_mat/ground _wan.lmat"
  8208. }
  8209. ]
  8210. },
  8211. "components":[
  8212. {
  8213. "type":"Animator",
  8214. "layers":[],
  8215. "cullingMode":0,
  8216. "playOnWake":true
  8217. }
  8218. ],
  8219. "child":[
  8220. {
  8221. "type":"Sprite3D",
  8222. "instanceID":246,
  8223. "props":{
  8224. "name":"GameObject",
  8225. "active":true,
  8226. "isStatic":false,
  8227. "layer":0,
  8228. "position":[
  8229. 0,
  8230. 0,
  8231. 0.5
  8232. ],
  8233. "rotation":[
  8234. 0,
  8235. 0,
  8236. 0,
  8237. -1
  8238. ],
  8239. "scale":[
  8240. 1,
  8241. 1,
  8242. 1
  8243. ]
  8244. },
  8245. "components":[
  8246. {
  8247. "type":"PhysicsCollider",
  8248. "restitution":0,
  8249. "friction":0.5,
  8250. "rollingFriction":0,
  8251. "shapes":[
  8252. {
  8253. "type":"BoxColliderShape",
  8254. "center":[
  8255. 0,
  8256. 0,
  8257. 0
  8258. ],
  8259. "size":[
  8260. 1,
  8261. 1,
  8262. 1
  8263. ]
  8264. }
  8265. ],
  8266. "isTrigger":false
  8267. }
  8268. ],
  8269. "child":[]
  8270. }
  8271. ]
  8272. },
  8273. {
  8274. "type":"MeshSprite3D",
  8275. "instanceID":247,
  8276. "props":{
  8277. "name":"ground",
  8278. "active":true,
  8279. "isStatic":false,
  8280. "layer":0,
  8281. "position":[
  8282. -29.902,
  8283. -1.66,
  8284. 85.081
  8285. ],
  8286. "rotation":[
  8287. 0.7071068,
  8288. 0,
  8289. 0,
  8290. -0.7071068
  8291. ],
  8292. "scale":[
  8293. 10,
  8294. 6.020283,
  8295. 1
  8296. ],
  8297. "meshPath":"Assets/model/ground-ground.lm",
  8298. "enableRender":true,
  8299. "materials":[
  8300. {
  8301. "path":"Assets/yiqilang_mat/ground_chun.lmat"
  8302. }
  8303. ]
  8304. },
  8305. "components":[
  8306. {
  8307. "type":"Animator",
  8308. "layers":[],
  8309. "cullingMode":0,
  8310. "playOnWake":true
  8311. }
  8312. ],
  8313. "child":[
  8314. {
  8315. "type":"Sprite3D",
  8316. "instanceID":248,
  8317. "props":{
  8318. "name":"GameObject",
  8319. "active":true,
  8320. "isStatic":false,
  8321. "layer":0,
  8322. "position":[
  8323. 0,
  8324. 0,
  8325. 0.5
  8326. ],
  8327. "rotation":[
  8328. 0,
  8329. 0,
  8330. 0,
  8331. -1
  8332. ],
  8333. "scale":[
  8334. 1,
  8335. 1,
  8336. 1
  8337. ]
  8338. },
  8339. "components":[
  8340. {
  8341. "type":"PhysicsCollider",
  8342. "restitution":0,
  8343. "friction":0.5,
  8344. "rollingFriction":0,
  8345. "shapes":[
  8346. {
  8347. "type":"BoxColliderShape",
  8348. "center":[
  8349. 0,
  8350. 0,
  8351. 0
  8352. ],
  8353. "size":[
  8354. 1,
  8355. 1,
  8356. 1
  8357. ]
  8358. }
  8359. ],
  8360. "isTrigger":false
  8361. }
  8362. ],
  8363. "child":[]
  8364. }
  8365. ]
  8366. },
  8367. {
  8368. "type":"Sprite3D",
  8369. "instanceID":249,
  8370. "props":{
  8371. "name":"AttackPoint",
  8372. "active":true,
  8373. "isStatic":false,
  8374. "layer":0,
  8375. "position":[
  8376. -29.702,
  8377. -0.654,
  8378. 85.98
  8379. ],
  8380. "rotation":[
  8381. 0,
  8382. 0,
  8383. 0,
  8384. -1
  8385. ],
  8386. "scale":[
  8387. 1,
  8388. 1,
  8389. 1
  8390. ]
  8391. },
  8392. "components":[],
  8393. "child":[
  8394. {
  8395. "type":"Sprite3D",
  8396. "instanceID":250,
  8397. "props":{
  8398. "name":"collider",
  8399. "active":true,
  8400. "isStatic":false,
  8401. "layer":0,
  8402. "position":[
  8403. 0,
  8404. 0,
  8405. 0
  8406. ],
  8407. "rotation":[
  8408. 0,
  8409. 0,
  8410. 0,
  8411. -1
  8412. ],
  8413. "scale":[
  8414. 10,
  8415. 1,
  8416. 1
  8417. ]
  8418. },
  8419. "components":[
  8420. {
  8421. "type":"PhysicsCollider",
  8422. "restitution":0,
  8423. "friction":0.5,
  8424. "rollingFriction":0,
  8425. "shapes":[
  8426. {
  8427. "type":"BoxColliderShape",
  8428. "center":[
  8429. 0,
  8430. 0,
  8431. 0
  8432. ],
  8433. "size":[
  8434. 1,
  8435. 1,
  8436. 1
  8437. ]
  8438. }
  8439. ],
  8440. "isTrigger":false
  8441. }
  8442. ],
  8443. "child":[]
  8444. }
  8445. ]
  8446. },
  8447. {
  8448. "type":"Sprite3D",
  8449. "instanceID":251,
  8450. "props":{
  8451. "name":"Boss",
  8452. "active":true,
  8453. "isStatic":false,
  8454. "layer":0,
  8455. "position":[
  8456. -29.56537,
  8457. -0.6599995,
  8458. 87.375
  8459. ],
  8460. "rotation":[
  8461. 0,
  8462. 1,
  8463. 0,
  8464. 0
  8465. ],
  8466. "scale":[
  8467. 2.5,
  8468. 2.5,
  8469. 2.5
  8470. ]
  8471. },
  8472. "components":[
  8473. {
  8474. "type":"Animator",
  8475. "layers":[
  8476. {
  8477. "name":"Base Layer",
  8478. "weight":0,
  8479. "blendingMode":0,
  8480. "states":[
  8481. {
  8482. "name":"idle",
  8483. "clipPath":"Assets/model/role_1-idle.lani"
  8484. },
  8485. {
  8486. "name":"atk",
  8487. "clipPath":"Assets/model/role_1-atk.lani"
  8488. },
  8489. {
  8490. "name":"die2",
  8491. "clipPath":"Assets/model/role_1-die2.lani"
  8492. },
  8493. {
  8494. "name":"idle 0",
  8495. "clipPath":"Assets/model/role_1-idle.lani"
  8496. },
  8497. {
  8498. "name":"jump",
  8499. "clipPath":"Assets/model/role_1-jump.lani"
  8500. },
  8501. {
  8502. "name":"land",
  8503. "clipPath":"Assets/model/role_1-land.lani"
  8504. },
  8505. {
  8506. "name":"land2",
  8507. "clipPath":"Assets/model/role_1-land2.lani"
  8508. },
  8509. {
  8510. "name":"run",
  8511. "clipPath":"Assets/model/role_1-run.lani"
  8512. },
  8513. {
  8514. "name":"sky",
  8515. "clipPath":"Assets/model/role_1-sky.lani"
  8516. },
  8517. {
  8518. "name":"stand",
  8519. "clipPath":"Assets/model/role_1-stand.lani"
  8520. },
  8521. {
  8522. "name":"win",
  8523. "clipPath":"Assets/model/role_1-win.lani"
  8524. }
  8525. ]
  8526. }
  8527. ],
  8528. "cullingMode":0,
  8529. "playOnWake":true
  8530. }
  8531. ],
  8532. "child":[
  8533. {
  8534. "type":"Sprite3D",
  8535. "instanceID":252,
  8536. "props":{
  8537. "name":"Bip001",
  8538. "active":true,
  8539. "isStatic":false,
  8540. "layer":0,
  8541. "position":[
  8542. 3.432238E-06,
  8543. 0.1453734,
  8544. 2.570152E-06
  8545. ],
  8546. "rotation":[
  8547. 0.539687,
  8548. 0.4568784,
  8549. 0.4568784,
  8550. -0.539687
  8551. ],
  8552. "scale":[
  8553. 1,
  8554. 1,
  8555. 1
  8556. ]
  8557. },
  8558. "components":[],
  8559. "child":[
  8560. {
  8561. "type":"Sprite3D",
  8562. "instanceID":253,
  8563. "props":{
  8564. "name":"Bip001 Pelvis",
  8565. "active":true,
  8566. "isStatic":false,
  8567. "layer":0,
  8568. "position":[
  8569. 0,
  8570. 0,
  8571. 0
  8572. ],
  8573. "rotation":[
  8574. 0.4999997,
  8575. 0.5000004,
  8576. 0.4999997,
  8577. -0.5000004
  8578. ],
  8579. "scale":[
  8580. 1,
  8581. 0.9999999,
  8582. 0.9999999
  8583. ]
  8584. },
  8585. "components":[],
  8586. "child":[
  8587. {
  8588. "type":"Sprite3D",
  8589. "instanceID":254,
  8590. "props":{
  8591. "name":"Bip001 Spine",
  8592. "active":true,
  8593. "isStatic":false,
  8594. "layer":0,
  8595. "position":[
  8596. 0.01267686,
  8597. -2.403206E-05,
  8598. 1.647277E-08
  8599. ],
  8600. "rotation":[
  8601. 2.07154E-06,
  8602. 6.858751E-07,
  8603. -0.0003981372,
  8604. -0.9999999
  8605. ],
  8606. "scale":[
  8607. 1,
  8608. 1,
  8609. 1
  8610. ]
  8611. },
  8612. "components":[],
  8613. "child":[
  8614. {
  8615. "type":"Sprite3D",
  8616. "instanceID":255,
  8617. "props":{
  8618. "name":"Bip001 L Thigh",
  8619. "active":true,
  8620. "isStatic":false,
  8621. "layer":0,
  8622. "position":[
  8623. -0.01267683,
  8624. 3.404213E-05,
  8625. 0.03318052
  8626. ],
  8627. "rotation":[
  8628. 0.06603933,
  8629. 0.9976457,
  8630. -0.00123704,
  8631. -0.01845037
  8632. ],
  8633. "scale":[
  8634. 1,
  8635. 1,
  8636. 0.9999999
  8637. ]
  8638. },
  8639. "components":[],
  8640. "child":[
  8641. {
  8642. "type":"Sprite3D",
  8643. "instanceID":256,
  8644. "props":{
  8645. "name":"Bip001 L Calf",
  8646. "active":true,
  8647. "isStatic":false,
  8648. "layer":0,
  8649. "position":[
  8650. 0.07128301,
  8651. -1.192093E-09,
  8652. 2.384186E-09
  8653. ],
  8654. "rotation":[
  8655. -7.000431E-09,
  8656. -4.34339E-09,
  8657. 0.1889587,
  8658. -0.981985
  8659. ],
  8660. "scale":[
  8661. 0.9999999,
  8662. 1,
  8663. 1
  8664. ]
  8665. },
  8666. "components":[],
  8667. "child":[
  8668. {
  8669. "type":"Sprite3D",
  8670. "instanceID":257,
  8671. "props":{
  8672. "name":"Bip001 L Foot",
  8673. "active":true,
  8674. "isStatic":false,
  8675. "layer":0,
  8676. "position":[
  8677. 0.05177579,
  8678. 0,
  8679. 2.384186E-09
  8680. ],
  8681. "rotation":[
  8682. 0.01938008,
  8683. 0.02105466,
  8684. -0.1236293,
  8685. -0.9919158
  8686. ],
  8687. "scale":[
  8688. 0.9999999,
  8689. 0.9999999,
  8690. 1
  8691. ]
  8692. },
  8693. "components":[],
  8694. "child":[
  8695. {
  8696. "type":"Sprite3D",
  8697. "instanceID":258,
  8698. "props":{
  8699. "name":"Bip001 L Toe0",
  8700. "active":true,
  8701. "isStatic":false,
  8702. "layer":0,
  8703. "position":[
  8704. 0.02458071,
  8705. 0.02109976,
  8706. 2.384186E-09
  8707. ],
  8708. "rotation":[
  8709. 1.780147E-07,
  8710. -1.064766E-07,
  8711. -0.7071067,
  8712. -0.7071069
  8713. ],
  8714. "scale":[
  8715. 1,
  8716. 1,
  8717. 1
  8718. ]
  8719. },
  8720. "components":[],
  8721. "child":[
  8722. {
  8723. "type":"Sprite3D",
  8724. "instanceID":259,
  8725. "props":{
  8726. "name":"Bip001 L Toe0Nub",
  8727. "active":true,
  8728. "isStatic":false,
  8729. "layer":0,
  8730. "position":[
  8731. 0.02325197,
  8732. -2.328306E-12,
  8733. 0
  8734. ],
  8735. "rotation":[
  8736. 1.448053E-16,
  8737. 1.110223E-16,
  8738. 1,
  8739. 1.427209E-14
  8740. ],
  8741. "scale":[
  8742. -0.9999999,
  8743. -1,
  8744. -0.9999999
  8745. ]
  8746. },
  8747. "components":[],
  8748. "child":[]
  8749. }
  8750. ]
  8751. }
  8752. ]
  8753. }
  8754. ]
  8755. }
  8756. ]
  8757. },
  8758. {
  8759. "type":"Sprite3D",
  8760. "instanceID":260,
  8761. "props":{
  8762. "name":"Bip001 R Thigh",
  8763. "active":true,
  8764. "isStatic":false,
  8765. "layer":0,
  8766. "position":[
  8767. -0.01267683,
  8768. 3.422393E-05,
  8769. -0.03318051
  8770. ],
  8771. "rotation":[
  8772. -0.07035351,
  8773. 0.9775978,
  8774. -0.1889362,
  8775. 0.06046546
  8776. ],
  8777. "scale":[
  8778. 0.9999999,
  8779. 1,
  8780. 1
  8781. ]
  8782. },
  8783. "components":[],
  8784. "child":[
  8785. {
  8786. "type":"Sprite3D",
  8787. "instanceID":261,
  8788. "props":{
  8789. "name":"Bip001 R Calf",
  8790. "active":true,
  8791. "isStatic":false,
  8792. "layer":0,
  8793. "position":[
  8794. 0.07128303,
  8795. -2.384186E-09,
  8796. -4.768371E-09
  8797. ],
  8798. "rotation":[
  8799. 4.352191E-09,
  8800. -7.632406E-09,
  8801. 0.04034971,
  8802. -0.9991856
  8803. ],
  8804. "scale":[
  8805. 1,
  8806. 1,
  8807. 1
  8808. ]
  8809. },
  8810. "components":[],
  8811. "child":[
  8812. {
  8813. "type":"Sprite3D",
  8814. "instanceID":262,
  8815. "props":{
  8816. "name":"Bip001 R Foot",
  8817. "active":true,
  8818. "isStatic":false,
  8819. "layer":0,
  8820. "position":[
  8821. 0.05177579,
  8822. 2.384186E-09,
  8823. 0
  8824. ],
  8825. "rotation":[
  8826. 0.003361919,
  8827. -0.07276239,
  8828. -0.09812893,
  8829. -0.9925044
  8830. ],
  8831. "scale":[
  8832. 1,
  8833. 0.9999999,
  8834. 1
  8835. ]
  8836. },
  8837. "components":[],
  8838. "child":[
  8839. {
  8840. "type":"Sprite3D",
  8841. "instanceID":263,
  8842. "props":{
  8843. "name":"Bip001 R Toe0",
  8844. "active":true,
  8845. "isStatic":false,
  8846. "layer":0,
  8847. "position":[
  8848. 0.02458072,
  8849. 0.02109977,
  8850. 4.768371E-09
  8851. ],
  8852. "rotation":[
  8853. -3.640778E-08,
  8854. 2.902303E-07,
  8855. -0.7071068,
  8856. -0.7071067
  8857. ],
  8858. "scale":[
  8859. 0.9999999,
  8860. 1,
  8861. 0.9999999
  8862. ]
  8863. },
  8864. "components":[],
  8865. "child":[
  8866. {
  8867. "type":"Sprite3D",
  8868. "instanceID":264,
  8869. "props":{
  8870. "name":"Bip001 R Toe0Nub",
  8871. "active":true,
  8872. "isStatic":false,
  8873. "layer":0,
  8874. "position":[
  8875. 0.02325197,
  8876. -3.72529E-11,
  8877. 4.768371E-09
  8878. ],
  8879. "rotation":[
  8880. 0,
  8881. -7.450577E-09,
  8882. 0,
  8883. -1
  8884. ],
  8885. "scale":[
  8886. 0.9999999,
  8887. 1,
  8888. 0.9999999
  8889. ]
  8890. },
  8891. "components":[],
  8892. "child":[]
  8893. }
  8894. ]
  8895. }
  8896. ]
  8897. }
  8898. ]
  8899. }
  8900. ]
  8901. },
  8902. {
  8903. "type":"Sprite3D",
  8904. "instanceID":265,
  8905. "props":{
  8906. "name":"Bip001 Spine1",
  8907. "active":true,
  8908. "isStatic":false,
  8909. "layer":0,
  8910. "position":[
  8911. 0.03019377,
  8912. -3.177297E-05,
  8913. -1.629815E-11
  8914. ],
  8915. "rotation":[
  8916. 3.203235E-09,
  8917. 2.35898E-07,
  8918. -0.08609767,
  8919. -0.9962867
  8920. ],
  8921. "scale":[
  8922. 1,
  8923. 1,
  8924. 1
  8925. ]
  8926. },
  8927. "components":[],
  8928. "child":[
  8929. {
  8930. "type":"Sprite3D",
  8931. "instanceID":266,
  8932. "props":{
  8933. "name":"Bip001 Spine2",
  8934. "active":true,
  8935. "isStatic":false,
  8936. "layer":0,
  8937. "position":[
  8938. 0.04049068,
  8939. -5.649328E-05,
  8940. -1.554144E-10
  8941. ],
  8942. "rotation":[
  8943. -5.822303E-09,
  8944. -2.248795E-07,
  8945. 0.08115915,
  8946. -0.9967012
  8947. ],
  8948. "scale":[
  8949. 1,
  8950. 0.9999999,
  8951. 1
  8952. ]
  8953. },
  8954. "components":[],
  8955. "child":[
  8956. {
  8957. "type":"Sprite3D",
  8958. "instanceID":267,
  8959. "props":{
  8960. "name":"Bip001 Neck",
  8961. "active":true,
  8962. "isStatic":false,
  8963. "layer":0,
  8964. "position":[
  8965. 0.06798971,
  8966. -5.403459E-06,
  8967. -4.48199E-11
  8968. ],
  8969. "rotation":[
  8970. 7.400095E-09,
  8971. -1.161445E-10,
  8972. -4.423782E-08,
  8973. -1
  8974. ],
  8975. "scale":[
  8976. 1,
  8977. 1,
  8978. 1
  8979. ]
  8980. },
  8981. "components":[],
  8982. "child":[
  8983. {
  8984. "type":"Sprite3D",
  8985. "instanceID":268,
  8986. "props":{
  8987. "name":"Bip001 Head",
  8988. "active":true,
  8989. "isStatic":false,
  8990. "layer":0,
  8991. "position":[
  8992. 0.01069244,
  8993. -2.980232E-10,
  8994. -1.009903E-10
  8995. ],
  8996. "rotation":[
  8997. 2.760675E-08,
  8998. 7.564539E-08,
  8999. -0.02531991,
  9000. -0.9996794
  9001. ],
  9002. "scale":[
  9003. 0.9999999,
  9004. 1,
  9005. 0.9999999
  9006. ]
  9007. },
  9008. "components":[],
  9009. "child":[
  9010. {
  9011. "type":"Sprite3D",
  9012. "instanceID":269,
  9013. "props":{
  9014. "name":"Bip001 HeadNub",
  9015. "active":true,
  9016. "isStatic":false,
  9017. "layer":0,
  9018. "position":[
  9019. 0.1553113,
  9020. -1.192093E-09,
  9021. 2.110028E-10
  9022. ],
  9023. "rotation":[
  9024. 2.482538E-09,
  9025. 1.52454E-10,
  9026. 3.784729E-19,
  9027. -1
  9028. ],
  9029. "scale":[
  9030. 1,
  9031. 1,
  9032. 1
  9033. ]
  9034. },
  9035. "components":[],
  9036. "child":[]
  9037. }
  9038. ]
  9039. },
  9040. {
  9041. "type":"Sprite3D",
  9042. "instanceID":270,
  9043. "props":{
  9044. "name":"Bip001 L Clavicle",
  9045. "active":true,
  9046. "isStatic":false,
  9047. "layer":0,
  9048. "position":[
  9049. -0.03100321,
  9050. 3.306955E-05,
  9051. 0.03599024
  9052. ],
  9053. "rotation":[
  9054. -0.7071068,
  9055. 0.0002815294,
  9056. -0.7071068,
  9057. -0.0002815294
  9058. ],
  9059. "scale":[
  9060. 0.9999999,
  9061. 1,
  9062. 0.9999999
  9063. ]
  9064. },
  9065. "components":[],
  9066. "child":[
  9067. {
  9068. "type":"Sprite3D",
  9069. "instanceID":271,
  9070. "props":{
  9071. "name":"Bip001 L UpperArm",
  9072. "active":true,
  9073. "isStatic":false,
  9074. "layer":0,
  9075. "position":[
  9076. 0.01853357,
  9077. 5.960464E-10,
  9078. 0
  9079. ],
  9080. "rotation":[
  9081. 0.0393411,
  9082. -0.5502745,
  9083. -0.024352,
  9084. -0.833701
  9085. ],
  9086. "scale":[
  9087. 0.9999999,
  9088. 1,
  9089. 1
  9090. ]
  9091. },
  9092. "components":[],
  9093. "child":[
  9094. {
  9095. "type":"Sprite3D",
  9096. "instanceID":272,
  9097. "props":{
  9098. "name":"Bip001 L Forearm",
  9099. "active":true,
  9100. "isStatic":false,
  9101. "layer":0,
  9102. "position":[
  9103. 0.04276979,
  9104. 0,
  9105. 9.536743E-09
  9106. ],
  9107. "rotation":[
  9108. -2.790194E-09,
  9109. -1.451721E-10,
  9110. -0.05195911,
  9111. -0.9986492
  9112. ],
  9113. "scale":[
  9114. 1,
  9115. 0.9999999,
  9116. 0.9999999
  9117. ]
  9118. },
  9119. "components":[],
  9120. "child":[
  9121. {
  9122. "type":"Sprite3D",
  9123. "instanceID":273,
  9124. "props":{
  9125. "name":"Bip001 L Hand",
  9126. "active":true,
  9127. "isStatic":false,
  9128. "layer":0,
  9129. "position":[
  9130. 0.04557498,
  9131. 0,
  9132. -9.536743E-09
  9133. ],
  9134. "rotation":[
  9135. 0.7068252,
  9136. 1.316565E-09,
  9137. -1.317613E-09,
  9138. -0.7073883
  9139. ],
  9140. "scale":[
  9141. 1,
  9142. 1,
  9143. 1
  9144. ]
  9145. },
  9146. "components":[],
  9147. "child":[
  9148. {
  9149. "type":"Sprite3D",
  9150. "instanceID":274,
  9151. "props":{
  9152. "name":"Bip001 L Finger0",
  9153. "active":true,
  9154. "isStatic":false,
  9155. "layer":0,
  9156. "position":[
  9157. 0.009357376,
  9158. 0.0002792072,
  9159. -0.01715952
  9160. ],
  9161. "rotation":[
  9162. -0.5744396,
  9163. -0.5209406,
  9164. 0.09552524,
  9165. -0.6241114
  9166. ],
  9167. "scale":[
  9168. 1,
  9169. 1,
  9170. 1
  9171. ]
  9172. },
  9173. "components":[],
  9174. "child":[
  9175. {
  9176. "type":"Sprite3D",
  9177. "instanceID":275,
  9178. "props":{
  9179. "name":"Bip001 L Finger01",
  9180. "active":true,
  9181. "isStatic":false,
  9182. "layer":0,
  9183. "position":[
  9184. 0.007535105,
  9185. 0,
  9186. -9.536743E-09
  9187. ],
  9188. "rotation":[
  9189. -7.450581E-09,
  9190. 2.220446E-16,
  9191. 2.980232E-08,
  9192. -1
  9193. ],
  9194. "scale":[
  9195. 1,
  9196. 1,
  9197. 0.9999999
  9198. ]
  9199. },
  9200. "components":[],
  9201. "child":[
  9202. {
  9203. "type":"Sprite3D",
  9204. "instanceID":276,
  9205. "props":{
  9206. "name":"Bip001 L Finger0Nub",
  9207. "active":true,
  9208. "isStatic":false,
  9209. "layer":0,
  9210. "position":[
  9211. 0.007535095,
  9212. 0,
  9213. 0
  9214. ],
  9215. "rotation":[
  9216. -7.450581E-09,
  9217. 2.220446E-16,
  9218. 2.980232E-08,
  9219. -1
  9220. ],
  9221. "scale":[
  9222. 1,
  9223. 1,
  9224. 0.9999999
  9225. ]
  9226. },
  9227. "components":[],
  9228. "child":[]
  9229. }
  9230. ]
  9231. }
  9232. ]
  9233. },
  9234. {
  9235. "type":"Sprite3D",
  9236. "instanceID":277,
  9237. "props":{
  9238. "name":"Bip001 L Finger1",
  9239. "active":true,
  9240. "isStatic":false,
  9241. "layer":0,
  9242. "position":[
  9243. 0.01593346,
  9244. -1.907349E-08,
  9245. -1.192093E-09
  9246. ],
  9247. "rotation":[
  9248. 0.0003858685,
  9249. -9.822465E-05,
  9250. -0.2467165,
  9251. -0.9690877
  9252. ],
  9253. "scale":[
  9254. 1,
  9255. 0.9999999,
  9256. 1
  9257. ]
  9258. },
  9259. "components":[],
  9260. "child":[
  9261. {
  9262. "type":"Sprite3D",
  9263. "instanceID":278,
  9264. "props":{
  9265. "name":"Bip001 L Finger11",
  9266. "active":true,
  9267. "isStatic":false,
  9268. "layer":0,
  9269. "position":[
  9270. 0.01255411,
  9271. 4.768371E-09,
  9272. 1.192093E-09
  9273. ],
  9274. "rotation":[
  9275. -1.303852E-08,
  9276. 0,
  9277. 0,
  9278. -1
  9279. ],
  9280. "scale":[
  9281. 1,
  9282. 1,
  9283. 1
  9284. ]
  9285. },
  9286. "components":[],
  9287. "child":[
  9288. {
  9289. "type":"Sprite3D",
  9290. "instanceID":279,
  9291. "props":{
  9292. "name":"Bip001 L Finger1Nub",
  9293. "active":true,
  9294. "isStatic":false,
  9295. "layer":0,
  9296. "position":[
  9297. 0.01212451,
  9298. -9.536743E-09,
  9299. 0
  9300. ],
  9301. "rotation":[
  9302. -1.303852E-08,
  9303. 0,
  9304. 0,
  9305. -1
  9306. ],
  9307. "scale":[
  9308. 1,
  9309. 1,
  9310. 1
  9311. ]
  9312. },
  9313. "components":[],
  9314. "child":[]
  9315. }
  9316. ]
  9317. }
  9318. ]
  9319. }
  9320. ]
  9321. }
  9322. ]
  9323. }
  9324. ]
  9325. }
  9326. ]
  9327. },
  9328. {
  9329. "type":"Sprite3D",
  9330. "instanceID":280,
  9331. "props":{
  9332. "name":"Bip001 R Clavicle",
  9333. "active":true,
  9334. "isStatic":false,
  9335. "layer":0,
  9336. "position":[
  9337. -0.03100321,
  9338. 3.326923E-05,
  9339. -0.03599024
  9340. ],
  9341. "rotation":[
  9342. -0.7071068,
  9343. 0.0002815294,
  9344. 0.7071068,
  9345. 0.0002815294
  9346. ],
  9347. "scale":[
  9348. 0.9999999,
  9349. 1,
  9350. 0.9999999
  9351. ]
  9352. },
  9353. "components":[],
  9354. "child":[
  9355. {
  9356. "type":"Sprite3D",
  9357. "instanceID":281,
  9358. "props":{
  9359. "name":"Bip001 R UpperArm",
  9360. "active":true,
  9361. "isStatic":false,
  9362. "layer":0,
  9363. "position":[
  9364. 0.01853357,
  9365. 5.960464E-10,
  9366. 0
  9367. ],
  9368. "rotation":[
  9369. 0.07968135,
  9370. 0.5555559,
  9371. -0.1991241,
  9372. -0.8033418
  9373. ],
  9374. "scale":[
  9375. 0.9999999,
  9376. 1,
  9377. 1
  9378. ]
  9379. },
  9380. "components":[],
  9381. "child":[
  9382. {
  9383. "type":"Sprite3D",
  9384. "instanceID":282,
  9385. "props":{
  9386. "name":"Bip001 R Forearm",
  9387. "active":true,
  9388. "isStatic":false,
  9389. "layer":0,
  9390. "position":[
  9391. 0.04276979,
  9392. 0,
  9393. 0
  9394. ],
  9395. "rotation":[
  9396. 1.263066E-08,
  9397. -3.235616E-09,
  9398. 0.2481584,
  9399. -0.9687195
  9400. ],
  9401. "scale":[
  9402. 1,
  9403. 1,
  9404. 1
  9405. ]
  9406. },
  9407. "components":[],
  9408. "child":[
  9409. {
  9410. "type":"Sprite3D",
  9411. "instanceID":283,
  9412. "props":{
  9413. "name":"Bip001 R Hand",
  9414. "active":true,
  9415. "isStatic":false,
  9416. "layer":0,
  9417. "position":[
  9418. 0.04557498,
  9419. 1.192093E-09,
  9420. 0
  9421. ],
  9422. "rotation":[
  9423. -0.7068252,
  9424. 1.317404E-08,
  9425. -7.89729E-09,
  9426. -0.7073883
  9427. ],
  9428. "scale":[
  9429. 1,
  9430. 0.9999999,
  9431. 0.9999999
  9432. ]
  9433. },
  9434. "components":[],
  9435. "child":[
  9436. {
  9437. "type":"Sprite3D",
  9438. "instanceID":284,
  9439. "props":{
  9440. "name":"Bip001 R Finger0",
  9441. "active":true,
  9442. "isStatic":false,
  9443. "layer":0,
  9444. "position":[
  9445. 0.009357385,
  9446. 0.0002792168,
  9447. 0.01715952
  9448. ],
  9449. "rotation":[
  9450. 0.5744396,
  9451. 0.5209406,
  9452. 0.09552519,
  9453. -0.6241114
  9454. ],
  9455. "scale":[
  9456. 1,
  9457. 1,
  9458. 1
  9459. ]
  9460. },
  9461. "components":[],
  9462. "child":[
  9463. {
  9464. "type":"Sprite3D",
  9465. "instanceID":285,
  9466. "props":{
  9467. "name":"Bip001 R Finger01",
  9468. "active":true,
  9469. "isStatic":false,
  9470. "layer":0,
  9471. "position":[
  9472. 0.007535105,
  9473. -1.907349E-08,
  9474. 4.768371E-09
  9475. ],
  9476. "rotation":[
  9477. -7.45058E-09,
  9478. -1.490116E-08,
  9479. 1.110223E-16,
  9480. -1
  9481. ],
  9482. "scale":[
  9483. 1,
  9484. 1,
  9485. 1
  9486. ]
  9487. },
  9488. "components":[],
  9489. "child":[
  9490. {
  9491. "type":"Sprite3D",
  9492. "instanceID":286,
  9493. "props":{
  9494. "name":"Bip001 R Finger0Nub",
  9495. "active":true,
  9496. "isStatic":false,
  9497. "layer":0,
  9498. "position":[
  9499. 0.007535105,
  9500. 0,
  9501. 0
  9502. ],
  9503. "rotation":[
  9504. 1.490116E-08,
  9505. -7.45058E-09,
  9506. 1,
  9507. 4.978994E-17
  9508. ],
  9509. "scale":[
  9510. -1,
  9511. -1,
  9512. -1
  9513. ]
  9514. },
  9515. "components":[],
  9516. "child":[]
  9517. }
  9518. ]
  9519. }
  9520. ]
  9521. },
  9522. {
  9523. "type":"Sprite3D",
  9524. "instanceID":287,
  9525. "props":{
  9526. "name":"Bip001 R Finger1",
  9527. "active":true,
  9528. "isStatic":false,
  9529. "layer":0,
  9530. "position":[
  9531. 0.01593344,
  9532. 1.907349E-08,
  9533. 1.192093E-09
  9534. ],
  9535. "rotation":[
  9536. -0.000385848,
  9537. 9.823755E-05,
  9538. -0.2467165,
  9539. -0.9690877
  9540. ],
  9541. "scale":[
  9542. 1,
  9543. 1,
  9544. 1
  9545. ]
  9546. },
  9547. "components":[],
  9548. "child":[
  9549. {
  9550. "type":"Sprite3D",
  9551. "instanceID":288,
  9552. "props":{
  9553. "name":"Bip001 R Finger11",
  9554. "active":true,
  9555. "isStatic":false,
  9556. "layer":0,
  9557. "position":[
  9558. 0.01255411,
  9559. -4.768371E-09,
  9560. 0
  9561. ],
  9562. "rotation":[
  9563. -4.656613E-10,
  9564. -3.72529E-09,
  9565. 1.734723E-18,
  9566. -1
  9567. ],
  9568. "scale":[
  9569. 1,
  9570. 1,
  9571. 1
  9572. ]
  9573. },
  9574. "components":[],
  9575. "child":[
  9576. {
  9577. "type":"Sprite3D",
  9578. "instanceID":289,
  9579. "props":{
  9580. "name":"Bip001 R Finger1Nub",
  9581. "active":true,
  9582. "isStatic":false,
  9583. "layer":0,
  9584. "position":[
  9585. 0.01212451,
  9586. 9.536743E-09,
  9587. 1.192093E-09
  9588. ],
  9589. "rotation":[
  9590. 3.72529E-09,
  9591. -4.656613E-10,
  9592. 1,
  9593. -5.949762E-17
  9594. ],
  9595. "scale":[
  9596. -1,
  9597. -1,
  9598. -1
  9599. ]
  9600. },
  9601. "components":[],
  9602. "child":[]
  9603. }
  9604. ]
  9605. }
  9606. ]
  9607. }
  9608. ]
  9609. }
  9610. ]
  9611. }
  9612. ]
  9613. }
  9614. ]
  9615. }
  9616. ]
  9617. }
  9618. ]
  9619. }
  9620. ]
  9621. }
  9622. ]
  9623. }
  9624. ]
  9625. }
  9626. ]
  9627. },
  9628. {
  9629. "type":"SkinnedMeshSprite3D",
  9630. "instanceID":290,
  9631. "props":{
  9632. "name":"role_1",
  9633. "active":true,
  9634. "isStatic":false,
  9635. "layer":0,
  9636. "position":[
  9637. 2.864726E-09,
  9638. 0,
  9639. 0
  9640. ],
  9641. "rotation":[
  9642. 0.7071068,
  9643. 0,
  9644. 0,
  9645. -0.7071068
  9646. ],
  9647. "scale":[
  9648. 1,
  9649. 1,
  9650. 1
  9651. ],
  9652. "rootBone":253,
  9653. "boundBox":{
  9654. "min":[
  9655. -0.1462127,
  9656. -0.07811801,
  9657. -0.1017821
  9658. ],
  9659. "max":[
  9660. 0.344201,
  9661. 0.1042588,
  9662. 0.107139
  9663. ]
  9664. },
  9665. "boundSphere":{
  9666. "center":[
  9667. 0.09899414,
  9668. 0.01307038,
  9669. 0.002678465
  9670. ],
  9671. "radius":0.281698
  9672. },
  9673. "bones":[
  9674. 266,
  9675. 270,
  9676. 271,
  9677. 267,
  9678. 268,
  9679. 280,
  9680. 281,
  9681. 282,
  9682. 283,
  9683. 287,
  9684. 288,
  9685. 265,
  9686. 254,
  9687. 253,
  9688. 255,
  9689. 256,
  9690. 257,
  9691. 258,
  9692. 273,
  9693. 272,
  9694. 277,
  9695. 278,
  9696. 260,
  9697. 261,
  9698. 262,
  9699. 274,
  9700. 275,
  9701. 284,
  9702. 285,
  9703. 263
  9704. ],
  9705. "materials":[
  9706. {
  9707. "path":"Assets/yiqilang_mat/role_3.lmat"
  9708. }
  9709. ],
  9710. "meshPath":"Assets/model/role_1-role_1.lm"
  9711. },
  9712. "components":[],
  9713. "child":[]
  9714. },
  9715. {
  9716. "type":"Sprite3D",
  9717. "instanceID":291,
  9718. "props":{
  9719. "name":"collider",
  9720. "active":true,
  9721. "isStatic":false,
  9722. "layer":0,
  9723. "position":[
  9724. 0,
  9725. 0,
  9726. 0
  9727. ],
  9728. "rotation":[
  9729. 0,
  9730. 0,
  9731. 0,
  9732. -1
  9733. ],
  9734. "scale":[
  9735. 1,
  9736. 1,
  9737. 1
  9738. ]
  9739. },
  9740. "components":[
  9741. {
  9742. "type":"PhysicsCollider",
  9743. "restitution":0,
  9744. "friction":0.5,
  9745. "rollingFriction":0,
  9746. "shapes":[
  9747. {
  9748. "type":"BoxColliderShape",
  9749. "center":[
  9750. 0.01346263,
  9751. 0.2267574,
  9752. 0
  9753. ],
  9754. "size":[
  9755. 0.3607907,
  9756. 0.5101776,
  9757. 0.1
  9758. ]
  9759. }
  9760. ],
  9761. "isTrigger":false
  9762. }
  9763. ],
  9764. "child":[]
  9765. },
  9766. {
  9767. "type":"Sprite3D",
  9768. "instanceID":292,
  9769. "props":{
  9770. "name":"followpos",
  9771. "active":true,
  9772. "isStatic":false,
  9773. "layer":0,
  9774. "position":[
  9775. 0,
  9776. 0,
  9777. -0.2
  9778. ],
  9779. "rotation":[
  9780. 0,
  9781. 0,
  9782. 0,
  9783. -1
  9784. ],
  9785. "scale":[
  9786. 0,
  9787. 0,
  9788. 0
  9789. ]
  9790. },
  9791. "components":[],
  9792. "child":[]
  9793. },
  9794. {
  9795. "type":"Sprite3D",
  9796. "instanceID":293,
  9797. "props":{
  9798. "name":"UiPos",
  9799. "active":true,
  9800. "isStatic":false,
  9801. "layer":0,
  9802. "position":[
  9803. 0,
  9804. 0.453,
  9805. 0
  9806. ],
  9807. "rotation":[
  9808. 0,
  9809. 0,
  9810. 0,
  9811. -1
  9812. ],
  9813. "scale":[
  9814. 1,
  9815. 1,
  9816. 1
  9817. ]
  9818. },
  9819. "components":[],
  9820. "child":[]
  9821. }
  9822. ]
  9823. },
  9824. {
  9825. "type":"Sprite3D",
  9826. "instanceID":294,
  9827. "props":{
  9828. "name":"roleguide",
  9829. "active":true,
  9830. "isStatic":false,
  9831. "layer":0,
  9832. "position":[
  9833. -0.192,
  9834. 1.193,
  9835. 3.1
  9836. ],
  9837. "rotation":[
  9838. 0,
  9839. 0,
  9840. 0,
  9841. -1
  9842. ],
  9843. "scale":[
  9844. 1,
  9845. 1,
  9846. 1
  9847. ]
  9848. },
  9849. "components":[],
  9850. "child":[
  9851. {
  9852. "type":"Sprite3D",
  9853. "instanceID":295,
  9854. "props":{
  9855. "name":"roleguide",
  9856. "active":true,
  9857. "isStatic":false,
  9858. "layer":0,
  9859. "position":[
  9860. 0,
  9861. 0,
  9862. 0
  9863. ],
  9864. "rotation":[
  9865. 0,
  9866. 0,
  9867. 0,
  9868. -1
  9869. ],
  9870. "scale":[
  9871. 2.265659,
  9872. 0.4,
  9873. 0.06762925
  9874. ]
  9875. },
  9876. "components":[
  9877. {
  9878. "type":"PhysicsCollider",
  9879. "restitution":0,
  9880. "friction":0.5,
  9881. "rollingFriction":0,
  9882. "shapes":[
  9883. {
  9884. "type":"BoxColliderShape",
  9885. "center":[
  9886. 0,
  9887. 0,
  9888. 0
  9889. ],
  9890. "size":[
  9891. 1,
  9892. 1,
  9893. 1
  9894. ]
  9895. }
  9896. ],
  9897. "isTrigger":false
  9898. }
  9899. ],
  9900. "child":[]
  9901. }
  9902. ]
  9903. },
  9904. {
  9905. "type":"Sprite3D",
  9906. "instanceID":296,
  9907. "props":{
  9908. "name":"rotateguide",
  9909. "active":true,
  9910. "isStatic":false,
  9911. "layer":0,
  9912. "position":[
  9913. -0.381,
  9914. 1.167,
  9915. 10.331
  9916. ],
  9917. "rotation":[
  9918. 0,
  9919. 0,
  9920. 0,
  9921. -1
  9922. ],
  9923. "scale":[
  9924. 1,
  9925. 1,
  9926. 1
  9927. ]
  9928. },
  9929. "components":[],
  9930. "child":[
  9931. {
  9932. "type":"Sprite3D",
  9933. "instanceID":297,
  9934. "props":{
  9935. "name":"roleguide",
  9936. "active":true,
  9937. "isStatic":false,
  9938. "layer":0,
  9939. "position":[
  9940. 0,
  9941. 0,
  9942. 0
  9943. ],
  9944. "rotation":[
  9945. 0,
  9946. 0,
  9947. 0,
  9948. -1
  9949. ],
  9950. "scale":[
  9951. 2.265659,
  9952. 0.4,
  9953. 0.06762925
  9954. ]
  9955. },
  9956. "components":[
  9957. {
  9958. "type":"PhysicsCollider",
  9959. "restitution":0,
  9960. "friction":0.5,
  9961. "rollingFriction":0,
  9962. "shapes":[
  9963. {
  9964. "type":"BoxColliderShape",
  9965. "center":[
  9966. 0,
  9967. 0,
  9968. 0
  9969. ],
  9970. "size":[
  9971. 1,
  9972. 1,
  9973. 1
  9974. ]
  9975. }
  9976. ],
  9977. "isTrigger":false
  9978. }
  9979. ],
  9980. "child":[]
  9981. }
  9982. ]
  9983. }
  9984. ]
  9985. }
  9986. ]
  9987. }
  9988. ]
  9989. }
  9990. }