road.lh 114 KB

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