Model3.lh 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566
  1. {
  2. "version":"LAYAHIERARCHY:01",
  3. "data":{
  4. "type":"Sprite3D",
  5. "props":{
  6. "name":"Model3",
  7. "active":true,
  8. "isStatic":false,
  9. "layer":0,
  10. "position":[
  11. 0,
  12. 0,
  13. 0
  14. ],
  15. "rotation":[
  16. 0,
  17. 1,
  18. 0,
  19. 0
  20. ],
  21. "scale":[
  22. 100,
  23. 100,
  24. 100
  25. ]
  26. },
  27. "components":[],
  28. "child":[
  29. {
  30. "type":"Sprite3D",
  31. "props":{
  32. "name":"Blocks",
  33. "active":true,
  34. "isStatic":false,
  35. "layer":0,
  36. "position":[
  37. 0,
  38. 0,
  39. 0
  40. ],
  41. "rotation":[
  42. 0,
  43. 0,
  44. 0,
  45. -1
  46. ],
  47. "scale":[
  48. 1,
  49. 1,
  50. 1
  51. ]
  52. },
  53. "components":[],
  54. "child":[
  55. {
  56. "type":"MeshSprite3D",
  57. "props":{
  58. "name":"build_all_0",
  59. "active":true,
  60. "isStatic":false,
  61. "layer":0,
  62. "position":[
  63. 0,
  64. -0.6,
  65. 0.472
  66. ],
  67. "rotation":[
  68. 0,
  69. 0.7071068,
  70. 0,
  71. -0.7071068
  72. ],
  73. "scale":[
  74. 26.492,
  75. 23,
  76. 5.5
  77. ],
  78. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (2).lm",
  79. "enableRender":true,
  80. "materials":[
  81. {
  82. "path":"Assets/Scenes/Materials/scene_mat/Build_3.lmat"
  83. },
  84. {
  85. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  86. }
  87. ]
  88. },
  89. "components":[
  90. {
  91. "type":"PhysicsCollider",
  92. "restitution":0,
  93. "friction":0.5,
  94. "rollingFriction":0,
  95. "shapes":[
  96. {
  97. "type":"BoxColliderShape",
  98. "center":[
  99. -1.862645E-09,
  100. 0.0127,
  101. 0
  102. ],
  103. "size":[
  104. 0.025654,
  105. 0.0254,
  106. 0.025654
  107. ]
  108. },
  109. {
  110. "type":"MeshColliderShape",
  111. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (2).lm"
  112. }
  113. ],
  114. "isTrigger":false
  115. }
  116. ],
  117. "child":[
  118. {
  119. "type":"Sprite3D",
  120. "props":{
  121. "name":"child_pos",
  122. "active":true,
  123. "isStatic":false,
  124. "layer":0,
  125. "position":[
  126. 0.01246,
  127. 0.0254,
  128. -0.00042
  129. ],
  130. "rotation":[
  131. 0,
  132. 0,
  133. 0,
  134. -1
  135. ],
  136. "scale":[
  137. 1.0625,
  138. 1.086957,
  139. 0.5909091
  140. ]
  141. },
  142. "components":[],
  143. "child":[]
  144. }
  145. ]
  146. },
  147. {
  148. "type":"MeshSprite3D",
  149. "props":{
  150. "name":"build_all_1",
  151. "active":true,
  152. "isStatic":false,
  153. "layer":0,
  154. "position":[
  155. 0,
  156. -0.6,
  157. 1.2617
  158. ],
  159. "rotation":[
  160. 0,
  161. 0.7071068,
  162. 0,
  163. -0.7071068
  164. ],
  165. "scale":[
  166. 36.55896,
  167. 23,
  168. 5.5
  169. ],
  170. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (5).lm",
  171. "enableRender":true,
  172. "materials":[
  173. {
  174. "path":"Assets/Scenes/Materials/scene_mat/Build_3.lmat"
  175. },
  176. {
  177. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  178. }
  179. ]
  180. },
  181. "components":[
  182. {
  183. "type":"PhysicsCollider",
  184. "restitution":0,
  185. "friction":0.5,
  186. "rollingFriction":0,
  187. "shapes":[
  188. {
  189. "type":"BoxColliderShape",
  190. "center":[
  191. 0,
  192. 0.0127,
  193. 1.776357E-15
  194. ],
  195. "size":[
  196. 0.025654,
  197. 0.0254,
  198. 0.025654
  199. ]
  200. },
  201. {
  202. "type":"MeshColliderShape",
  203. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (5).lm"
  204. }
  205. ],
  206. "isTrigger":false
  207. }
  208. ],
  209. "child":[
  210. {
  211. "type":"Sprite3D",
  212. "props":{
  213. "name":"child_pos",
  214. "active":true,
  215. "isStatic":false,
  216. "layer":0,
  217. "position":[
  218. 0.01268,
  219. 0.02542,
  220. 0
  221. ],
  222. "rotation":[
  223. 0,
  224. 0,
  225. 0,
  226. -1
  227. ],
  228. "scale":[
  229. 1.0625,
  230. 1.086957,
  231. 0.5909091
  232. ]
  233. },
  234. "components":[],
  235. "child":[]
  236. }
  237. ]
  238. },
  239. {
  240. "type":"MeshSprite3D",
  241. "props":{
  242. "name":"build_all_2",
  243. "active":true,
  244. "isStatic":false,
  245. "layer":0,
  246. "position":[
  247. 0,
  248. -0.0159,
  249. 1.03
  250. ],
  251. "rotation":[
  252. 0,
  253. -0.7071068,
  254. 0,
  255. -0.7071068
  256. ],
  257. "scale":[
  258. 1.500001,
  259. 1.5,
  260. 1.500001
  261. ],
  262. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-SC_Prop_Roof_Entrance (1).lm",
  263. "enableRender":true,
  264. "materials":[
  265. {
  266. "path":"Assets/Scenes/Materials/scene_mat/roof_room.lmat"
  267. }
  268. ]
  269. },
  270. "components":[
  271. {
  272. "type":"PhysicsCollider",
  273. "restitution":0,
  274. "friction":0.5,
  275. "rollingFriction":0,
  276. "shapes":[
  277. {
  278. "type":"BoxColliderShape",
  279. "center":[
  280. -2.646978E-23,
  281. 0.02863079,
  282. 1.862646E-09
  283. ],
  284. "size":[
  285. 0.09922991,
  286. 0.05726157,
  287. 0.09922995
  288. ]
  289. },
  290. {
  291. "type":"MeshColliderShape",
  292. "mesh":"Assets/Allmodel/Pattern3/Pattern3-SC_Prop_Roof_Entrance (1).lm"
  293. }
  294. ],
  295. "isTrigger":false
  296. }
  297. ],
  298. "child":[
  299. {
  300. "type":"Sprite3D",
  301. "props":{
  302. "name":"child_pos",
  303. "active":true,
  304. "isStatic":false,
  305. "layer":0,
  306. "position":[
  307. -0.045,
  308. 0.0572,
  309. -0.0037
  310. ],
  311. "rotation":[
  312. 0,
  313. 0,
  314. 0,
  315. -1
  316. ],
  317. "scale":[
  318. 8.5,
  319. 25,
  320. 3.25
  321. ]
  322. },
  323. "components":[],
  324. "child":[]
  325. }
  326. ]
  327. },
  328. {
  329. "type":"MeshSprite3D",
  330. "props":{
  331. "name":"build_front_0",
  332. "active":true,
  333. "isStatic":false,
  334. "layer":0,
  335. "position":[
  336. 0,
  337. -0.6,
  338. 0.07
  339. ],
  340. "rotation":[
  341. 0,
  342. 0,
  343. 0,
  344. -1
  345. ],
  346. "scale":[
  347. 20,
  348. 23,
  349. 5.5
  350. ],
  351. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4.lm",
  352. "enableRender":true,
  353. "materials":[
  354. {
  355. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  356. },
  357. {
  358. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  359. }
  360. ]
  361. },
  362. "components":[
  363. {
  364. "type":"PhysicsCollider",
  365. "restitution":0,
  366. "friction":0.5,
  367. "rollingFriction":0,
  368. "shapes":[
  369. {
  370. "type":"BoxColliderShape",
  371. "center":[
  372. 0,
  373. 0.0127,
  374. 0
  375. ],
  376. "size":[
  377. 0.025654,
  378. 0.0254,
  379. 0.025654
  380. ]
  381. },
  382. {
  383. "type":"MeshColliderShape",
  384. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4.lm"
  385. }
  386. ],
  387. "isTrigger":false
  388. }
  389. ],
  390. "child":[
  391. {
  392. "type":"Sprite3D",
  393. "props":{
  394. "name":"child_pos",
  395. "active":true,
  396. "isStatic":false,
  397. "layer":0,
  398. "position":[
  399. 1E-05,
  400. 0.02541,
  401. 0.0106
  402. ],
  403. "rotation":[
  404. 0,
  405. 0,
  406. 0,
  407. -1
  408. ],
  409. "scale":[
  410. 1.0625,
  411. 1.086957,
  412. 0.5909091
  413. ]
  414. },
  415. "components":[],
  416. "child":[]
  417. }
  418. ]
  419. },
  420. {
  421. "type":"MeshSprite3D",
  422. "props":{
  423. "name":"build_front_1",
  424. "active":true,
  425. "isStatic":false,
  426. "layer":0,
  427. "position":[
  428. 0,
  429. -0.625,
  430. 1.822
  431. ],
  432. "rotation":[
  433. 0,
  434. -0.3826834,
  435. 0,
  436. -0.9238796
  437. ],
  438. "scale":[
  439. 5.5,
  440. 23,
  441. 5.5
  442. ],
  443. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (9).lm",
  444. "enableRender":true,
  445. "materials":[
  446. {
  447. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  448. },
  449. {
  450. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  451. }
  452. ]
  453. },
  454. "components":[
  455. {
  456. "type":"PhysicsCollider",
  457. "restitution":0,
  458. "friction":0.5,
  459. "rollingFriction":0,
  460. "shapes":[
  461. {
  462. "type":"BoxColliderShape",
  463. "center":[
  464. 1.490116E-08,
  465. 0.0127,
  466. 1.490116E-08
  467. ],
  468. "size":[
  469. 0.02565399,
  470. 0.0254,
  471. 0.02565399
  472. ]
  473. },
  474. {
  475. "type":"MeshColliderShape",
  476. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (9).lm"
  477. }
  478. ],
  479. "isTrigger":false
  480. }
  481. ],
  482. "child":[
  483. {
  484. "type":"Sprite3D",
  485. "props":{
  486. "name":"child_pos",
  487. "active":true,
  488. "isStatic":false,
  489. "layer":0,
  490. "position":[
  491. -0.00045,
  492. 0.025414,
  493. 0
  494. ],
  495. "rotation":[
  496. 0,
  497. 0,
  498. 0,
  499. -1
  500. ],
  501. "scale":[
  502. 1.0625,
  503. 1.086957,
  504. 0.5909091
  505. ]
  506. },
  507. "components":[],
  508. "child":[]
  509. }
  510. ]
  511. },
  512. {
  513. "type":"MeshSprite3D",
  514. "props":{
  515. "name":"build_front_2",
  516. "active":true,
  517. "isStatic":false,
  518. "layer":0,
  519. "position":[
  520. 0,
  521. -0.605,
  522. 1.917
  523. ],
  524. "rotation":[
  525. 0,
  526. -0.3826834,
  527. 0,
  528. -0.9238796
  529. ],
  530. "scale":[
  531. 5.5,
  532. 23,
  533. 5.5
  534. ],
  535. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (10).lm",
  536. "enableRender":true,
  537. "materials":[
  538. {
  539. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  540. },
  541. {
  542. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  543. }
  544. ]
  545. },
  546. "components":[
  547. {
  548. "type":"PhysicsCollider",
  549. "restitution":0,
  550. "friction":0.5,
  551. "rollingFriction":0,
  552. "shapes":[
  553. {
  554. "type":"BoxColliderShape",
  555. "center":[
  556. 1.490116E-08,
  557. 0.0127,
  558. 0
  559. ],
  560. "size":[
  561. 0.02565399,
  562. 0.0254,
  563. 0.02565399
  564. ]
  565. },
  566. {
  567. "type":"MeshColliderShape",
  568. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (10).lm"
  569. }
  570. ],
  571. "isTrigger":false
  572. }
  573. ],
  574. "child":[
  575. {
  576. "type":"Sprite3D",
  577. "props":{
  578. "name":"child_pos",
  579. "active":true,
  580. "isStatic":false,
  581. "layer":0,
  582. "position":[
  583. -0.0109,
  584. 0.025444,
  585. 0.0056
  586. ],
  587. "rotation":[
  588. 0,
  589. 0,
  590. 0,
  591. -1
  592. ],
  593. "scale":[
  594. 1.0625,
  595. 1.086957,
  596. 0.5909091
  597. ]
  598. },
  599. "components":[],
  600. "child":[]
  601. }
  602. ]
  603. },
  604. {
  605. "type":"MeshSprite3D",
  606. "props":{
  607. "name":"build_front_3",
  608. "active":true,
  609. "isStatic":false,
  610. "layer":0,
  611. "position":[
  612. 0,
  613. -0.585,
  614. 2.052
  615. ],
  616. "rotation":[
  617. 0,
  618. -0.3826834,
  619. 0,
  620. -0.9238796
  621. ],
  622. "scale":[
  623. 5.5,
  624. 23,
  625. 5.5
  626. ],
  627. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (11).lm",
  628. "enableRender":true,
  629. "materials":[
  630. {
  631. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  632. },
  633. {
  634. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  635. }
  636. ]
  637. },
  638. "components":[
  639. {
  640. "type":"PhysicsCollider",
  641. "restitution":0,
  642. "friction":0.5,
  643. "rollingFriction":0,
  644. "shapes":[
  645. {
  646. "type":"BoxColliderShape",
  647. "center":[
  648. 0,
  649. 0.0127,
  650. 0
  651. ],
  652. "size":[
  653. 0.02565399,
  654. 0.0254,
  655. 0.02565399
  656. ]
  657. },
  658. {
  659. "type":"MeshColliderShape",
  660. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (11).lm"
  661. }
  662. ],
  663. "isTrigger":false
  664. }
  665. ],
  666. "child":[
  667. {
  668. "type":"Sprite3D",
  669. "props":{
  670. "name":"child_pos",
  671. "active":true,
  672. "isStatic":false,
  673. "layer":0,
  674. "position":[
  675. -0.0119,
  676. 0.025412,
  677. 0.0079
  678. ],
  679. "rotation":[
  680. 0,
  681. 0,
  682. 0,
  683. -1
  684. ],
  685. "scale":[
  686. 1.0625,
  687. 1.086957,
  688. 0.5909091
  689. ]
  690. },
  691. "components":[],
  692. "child":[]
  693. }
  694. ]
  695. },
  696. {
  697. "type":"MeshSprite3D",
  698. "props":{
  699. "name":"build_front_4",
  700. "active":true,
  701. "isStatic":false,
  702. "layer":0,
  703. "position":[
  704. 0.18,
  705. -0.015,
  706. 1.01
  707. ],
  708. "rotation":[
  709. 0,
  710. 0.7071068,
  711. 0,
  712. -0.7071068
  713. ],
  714. "scale":[
  715. 1,
  716. 1,
  717. 1
  718. ],
  719. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-SC_Prop_Construction_Scaffolding.lm",
  720. "enableRender":true,
  721. "materials":[
  722. {
  723. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  724. }
  725. ]
  726. },
  727. "components":[
  728. {
  729. "type":"PhysicsCollider",
  730. "restitution":0,
  731. "friction":0.5,
  732. "rollingFriction":0,
  733. "shapes":[
  734. {
  735. "type":"BoxColliderShape",
  736. "center":[
  737. -2.793968E-08,
  738. 0.03814036,
  739. -3.539026E-08
  740. ],
  741. "size":[
  742. 0.04638663,
  743. 0.069,
  744. 0.1040912
  745. ]
  746. },
  747. {
  748. "type":"MeshColliderShape",
  749. "mesh":"Assets/Allmodel/Pattern3/Pattern3-SC_Prop_Construction_Scaffolding.lm"
  750. }
  751. ],
  752. "isTrigger":false
  753. }
  754. ],
  755. "child":[
  756. {
  757. "type":"Sprite3D",
  758. "props":{
  759. "name":"child_pos",
  760. "active":true,
  761. "isStatic":false,
  762. "layer":0,
  763. "position":[
  764. 0.017,
  765. 0.0724,
  766. -0.002
  767. ],
  768. "rotation":[
  769. 0,
  770. 0,
  771. 0,
  772. -1
  773. ],
  774. "scale":[
  775. 8.5,
  776. 25,
  777. 3.25
  778. ]
  779. },
  780. "components":[],
  781. "child":[]
  782. }
  783. ]
  784. },
  785. {
  786. "type":"MeshSprite3D",
  787. "props":{
  788. "name":"build_left_0",
  789. "active":true,
  790. "isStatic":false,
  791. "layer":0,
  792. "position":[
  793. -0.14,
  794. -0.625,
  795. 1.682
  796. ],
  797. "rotation":[
  798. 0,
  799. 0.3826834,
  800. 0,
  801. -0.9238796
  802. ],
  803. "scale":[
  804. 10,
  805. 23,
  806. 5.5
  807. ],
  808. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (7).lm",
  809. "enableRender":true,
  810. "materials":[
  811. {
  812. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  813. },
  814. {
  815. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  816. }
  817. ]
  818. },
  819. "components":[
  820. {
  821. "type":"PhysicsCollider",
  822. "restitution":0,
  823. "friction":0.5,
  824. "rollingFriction":0,
  825. "shapes":[
  826. {
  827. "type":"BoxColliderShape",
  828. "center":[
  829. 0,
  830. 0.0127,
  831. 0
  832. ],
  833. "size":[
  834. 0.02565399,
  835. 0.0254,
  836. 0.02565399
  837. ]
  838. },
  839. {
  840. "type":"MeshColliderShape",
  841. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (7).lm"
  842. }
  843. ],
  844. "isTrigger":false
  845. }
  846. ],
  847. "child":[
  848. {
  849. "type":"Sprite3D",
  850. "props":{
  851. "name":"child_pos",
  852. "active":true,
  853. "isStatic":false,
  854. "layer":0,
  855. "position":[
  856. 0.0103,
  857. 0.02548,
  858. 0.0099
  859. ],
  860. "rotation":[
  861. 0,
  862. 0,
  863. 0,
  864. -1
  865. ],
  866. "scale":[
  867. 1.0625,
  868. 1.086957,
  869. 0.5909091
  870. ]
  871. },
  872. "components":[],
  873. "child":[]
  874. }
  875. ]
  876. },
  877. {
  878. "type":"MeshSprite3D",
  879. "props":{
  880. "name":"build_right_0",
  881. "active":true,
  882. "isStatic":false,
  883. "layer":0,
  884. "position":[
  885. 0.14,
  886. -0.625,
  887. 1.682
  888. ],
  889. "rotation":[
  890. 0,
  891. -0.3826834,
  892. 0,
  893. -0.9238796
  894. ],
  895. "scale":[
  896. 10,
  897. 23,
  898. 5.5
  899. ],
  900. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (8).lm",
  901. "enableRender":true,
  902. "materials":[
  903. {
  904. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  905. },
  906. {
  907. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  908. }
  909. ]
  910. },
  911. "components":[
  912. {
  913. "type":"PhysicsCollider",
  914. "restitution":0,
  915. "friction":0.5,
  916. "rollingFriction":0,
  917. "shapes":[
  918. {
  919. "type":"BoxColliderShape",
  920. "center":[
  921. 0,
  922. 0.0127,
  923. 0
  924. ],
  925. "size":[
  926. 0.02565399,
  927. 0.0254,
  928. 0.02565399
  929. ]
  930. },
  931. {
  932. "type":"MeshColliderShape",
  933. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (8).lm"
  934. }
  935. ],
  936. "isTrigger":false
  937. }
  938. ],
  939. "child":[
  940. {
  941. "type":"Sprite3D",
  942. "props":{
  943. "name":"child_pos",
  944. "active":true,
  945. "isStatic":false,
  946. "layer":0,
  947. "position":[
  948. -0.0116,
  949. 0.02546,
  950. 0.0074
  951. ],
  952. "rotation":[
  953. 0,
  954. 0,
  955. 0,
  956. -1
  957. ],
  958. "scale":[
  959. 1.0625,
  960. 1.086957,
  961. 0.5909091
  962. ]
  963. },
  964. "components":[],
  965. "child":[]
  966. }
  967. ]
  968. },
  969. {
  970. "type":"MeshSprite3D",
  971. "props":{
  972. "name":"build_frontleft_0",
  973. "active":true,
  974. "isStatic":false,
  975. "layer":0,
  976. "position":[
  977. -0.185,
  978. -0.6,
  979. 0.472
  980. ],
  981. "rotation":[
  982. 0,
  983. 0.7071068,
  984. 0,
  985. -0.7071068
  986. ],
  987. "scale":[
  988. 26.492,
  989. 23,
  990. 5.5
  991. ],
  992. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (3).lm",
  993. "enableRender":true,
  994. "materials":[
  995. {
  996. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  997. },
  998. {
  999. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  1000. }
  1001. ]
  1002. },
  1003. "components":[
  1004. {
  1005. "type":"PhysicsCollider",
  1006. "restitution":0,
  1007. "friction":0.5,
  1008. "rollingFriction":0,
  1009. "shapes":[
  1010. {
  1011. "type":"BoxColliderShape",
  1012. "center":[
  1013. -1.862645E-09,
  1014. 0.0127,
  1015. 0
  1016. ],
  1017. "size":[
  1018. 0.025654,
  1019. 0.0254,
  1020. 0.025654
  1021. ]
  1022. },
  1023. {
  1024. "type":"MeshColliderShape",
  1025. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (3).lm"
  1026. }
  1027. ],
  1028. "isTrigger":false
  1029. }
  1030. ],
  1031. "child":[
  1032. {
  1033. "type":"Sprite3D",
  1034. "props":{
  1035. "name":"child_pos",
  1036. "active":true,
  1037. "isStatic":false,
  1038. "layer":0,
  1039. "position":[
  1040. 0.01245,
  1041. 0.02541,
  1042. 0.0005
  1043. ],
  1044. "rotation":[
  1045. 0,
  1046. 0,
  1047. 0,
  1048. -1
  1049. ],
  1050. "scale":[
  1051. 1.0625,
  1052. 1.086957,
  1053. 0.5909091
  1054. ]
  1055. },
  1056. "components":[],
  1057. "child":[]
  1058. }
  1059. ]
  1060. },
  1061. {
  1062. "type":"MeshSprite3D",
  1063. "props":{
  1064. "name":"build_frontleft_1",
  1065. "active":true,
  1066. "isStatic":false,
  1067. "layer":0,
  1068. "position":[
  1069. -0.185,
  1070. -0.6,
  1071. 1.132
  1072. ],
  1073. "rotation":[
  1074. 0,
  1075. 0.7071068,
  1076. 0,
  1077. -0.7071068
  1078. ],
  1079. "scale":[
  1080. 26.492,
  1081. 23,
  1082. 5.5
  1083. ],
  1084. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (6).lm",
  1085. "enableRender":true,
  1086. "materials":[
  1087. {
  1088. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  1089. },
  1090. {
  1091. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  1092. }
  1093. ]
  1094. },
  1095. "components":[
  1096. {
  1097. "type":"PhysicsCollider",
  1098. "restitution":0,
  1099. "friction":0.5,
  1100. "rollingFriction":0,
  1101. "shapes":[
  1102. {
  1103. "type":"BoxColliderShape",
  1104. "center":[
  1105. -3.72529E-09,
  1106. 0.0127,
  1107. 0
  1108. ],
  1109. "size":[
  1110. 0.025654,
  1111. 0.0254,
  1112. 0.025654
  1113. ]
  1114. },
  1115. {
  1116. "type":"MeshColliderShape",
  1117. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (6).lm"
  1118. }
  1119. ],
  1120. "isTrigger":false
  1121. }
  1122. ],
  1123. "child":[
  1124. {
  1125. "type":"Sprite3D",
  1126. "props":{
  1127. "name":"child_pos",
  1128. "active":true,
  1129. "isStatic":false,
  1130. "layer":0,
  1131. "position":[
  1132. 0.01265,
  1133. 0.025406,
  1134. 0.00034
  1135. ],
  1136. "rotation":[
  1137. 0,
  1138. 0,
  1139. 0,
  1140. -1
  1141. ],
  1142. "scale":[
  1143. 1.0625,
  1144. 1.086957,
  1145. 0.5909091
  1146. ]
  1147. },
  1148. "components":[],
  1149. "child":[]
  1150. }
  1151. ]
  1152. },
  1153. {
  1154. "type":"MeshSprite3D",
  1155. "props":{
  1156. "name":"build_frontleft_2",
  1157. "active":true,
  1158. "isStatic":false,
  1159. "layer":0,
  1160. "position":[
  1161. -0.165,
  1162. -0.0159,
  1163. 0.19
  1164. ],
  1165. "rotation":[
  1166. 0,
  1167. -0.7071068,
  1168. 0,
  1169. -0.7071068
  1170. ],
  1171. "scale":[
  1172. 1.500001,
  1173. 1.5,
  1174. 1.500001
  1175. ],
  1176. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-SC_Prop_Roof_Entrance.lm",
  1177. "enableRender":true,
  1178. "materials":[
  1179. {
  1180. "path":"Assets/Scenes/Materials/scene_mat/roof_room.lmat"
  1181. }
  1182. ]
  1183. },
  1184. "components":[
  1185. {
  1186. "type":"PhysicsCollider",
  1187. "restitution":0,
  1188. "friction":0.5,
  1189. "rollingFriction":0,
  1190. "shapes":[
  1191. {
  1192. "type":"BoxColliderShape",
  1193. "center":[
  1194. -2.646978E-23,
  1195. 0.02863079,
  1196. 1.862646E-09
  1197. ],
  1198. "size":[
  1199. 0.09922991,
  1200. 0.05726157,
  1201. 0.09922995
  1202. ]
  1203. },
  1204. {
  1205. "type":"MeshColliderShape",
  1206. "mesh":"Assets/Allmodel/Pattern3/Pattern3-SC_Prop_Roof_Entrance.lm"
  1207. }
  1208. ],
  1209. "isTrigger":false
  1210. }
  1211. ],
  1212. "child":[
  1213. {
  1214. "type":"Sprite3D",
  1215. "props":{
  1216. "name":"child_pos",
  1217. "active":true,
  1218. "isStatic":false,
  1219. "layer":0,
  1220. "position":[
  1221. -0.041,
  1222. 0.0575,
  1223. -0.003
  1224. ],
  1225. "rotation":[
  1226. 0,
  1227. 0,
  1228. 0,
  1229. -1
  1230. ],
  1231. "scale":[
  1232. 8.5,
  1233. 25,
  1234. 3.25
  1235. ]
  1236. },
  1237. "components":[],
  1238. "child":[]
  1239. }
  1240. ]
  1241. },
  1242. {
  1243. "type":"MeshSprite3D",
  1244. "props":{
  1245. "name":"build_frontright_0",
  1246. "active":true,
  1247. "isStatic":false,
  1248. "layer":0,
  1249. "position":[
  1250. 0.185,
  1251. -0.6,
  1252. 0.472
  1253. ],
  1254. "rotation":[
  1255. 0,
  1256. 0.7071068,
  1257. 0,
  1258. -0.7071068
  1259. ],
  1260. "scale":[
  1261. 26.492,
  1262. 23,
  1263. 5.5
  1264. ],
  1265. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (1).lm",
  1266. "enableRender":true,
  1267. "materials":[
  1268. {
  1269. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  1270. },
  1271. {
  1272. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  1273. }
  1274. ]
  1275. },
  1276. "components":[
  1277. {
  1278. "type":"PhysicsCollider",
  1279. "restitution":0,
  1280. "friction":0.5,
  1281. "rollingFriction":0,
  1282. "shapes":[
  1283. {
  1284. "type":"BoxColliderShape",
  1285. "center":[
  1286. -1.862645E-09,
  1287. 0.0127,
  1288. 0
  1289. ],
  1290. "size":[
  1291. 0.025654,
  1292. 0.0254,
  1293. 0.025654
  1294. ]
  1295. },
  1296. {
  1297. "type":"MeshColliderShape",
  1298. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (1).lm"
  1299. }
  1300. ],
  1301. "isTrigger":false
  1302. }
  1303. ],
  1304. "child":[
  1305. {
  1306. "type":"Sprite3D",
  1307. "props":{
  1308. "name":"child_pos",
  1309. "active":true,
  1310. "isStatic":false,
  1311. "layer":0,
  1312. "position":[
  1313. 0.01224,
  1314. 0.025406,
  1315. 0
  1316. ],
  1317. "rotation":[
  1318. 0,
  1319. 0,
  1320. 0,
  1321. -1
  1322. ],
  1323. "scale":[
  1324. 1.0625,
  1325. 1.086957,
  1326. 0.5909091
  1327. ]
  1328. },
  1329. "components":[],
  1330. "child":[]
  1331. }
  1332. ]
  1333. },
  1334. {
  1335. "type":"MeshSprite3D",
  1336. "props":{
  1337. "name":"build_frontright_1",
  1338. "active":true,
  1339. "isStatic":false,
  1340. "layer":0,
  1341. "position":[
  1342. 0.185,
  1343. -0.6,
  1344. 1.132
  1345. ],
  1346. "rotation":[
  1347. 0,
  1348. 0.7071068,
  1349. 0,
  1350. -0.7071068
  1351. ],
  1352. "scale":[
  1353. 26.492,
  1354. 23,
  1355. 5.5
  1356. ],
  1357. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (4).lm",
  1358. "enableRender":true,
  1359. "materials":[
  1360. {
  1361. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  1362. },
  1363. {
  1364. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  1365. }
  1366. ]
  1367. },
  1368. "components":[
  1369. {
  1370. "type":"PhysicsCollider",
  1371. "restitution":0,
  1372. "friction":0.5,
  1373. "rollingFriction":0,
  1374. "shapes":[
  1375. {
  1376. "type":"BoxColliderShape",
  1377. "center":[
  1378. -3.72529E-09,
  1379. 0.0127,
  1380. 0
  1381. ],
  1382. "size":[
  1383. 0.025654,
  1384. 0.0254,
  1385. 0.025654
  1386. ]
  1387. },
  1388. {
  1389. "type":"MeshColliderShape",
  1390. "mesh":"Assets/Allmodel/Pattern3/Pattern3-Building 4 (4).lm"
  1391. }
  1392. ],
  1393. "isTrigger":false
  1394. }
  1395. ],
  1396. "child":[
  1397. {
  1398. "type":"Sprite3D",
  1399. "props":{
  1400. "name":"child_pos",
  1401. "active":true,
  1402. "isStatic":false,
  1403. "layer":0,
  1404. "position":[
  1405. 0.01227,
  1406. 0.02541,
  1407. -0.0012
  1408. ],
  1409. "rotation":[
  1410. 0,
  1411. 0,
  1412. 0,
  1413. -1
  1414. ],
  1415. "scale":[
  1416. 1.0625,
  1417. 1.086957,
  1418. 0.5909091
  1419. ]
  1420. },
  1421. "components":[],
  1422. "child":[]
  1423. }
  1424. ]
  1425. }
  1426. ]
  1427. },
  1428. {
  1429. "type":"Sprite3D",
  1430. "props":{
  1431. "name":"END",
  1432. "active":true,
  1433. "isStatic":false,
  1434. "layer":0,
  1435. "position":[
  1436. 0,
  1437. 0,
  1438. 2.224
  1439. ],
  1440. "rotation":[
  1441. 0,
  1442. 0,
  1443. 0,
  1444. -1
  1445. ],
  1446. "scale":[
  1447. 1,
  1448. 1,
  1449. 1
  1450. ]
  1451. },
  1452. "components":[],
  1453. "child":[]
  1454. },
  1455. {
  1456. "type":"Sprite3D",
  1457. "props":{
  1458. "name":"Props",
  1459. "active":true,
  1460. "isStatic":false,
  1461. "layer":0,
  1462. "position":[
  1463. 0,
  1464. 0,
  1465. 0
  1466. ],
  1467. "rotation":[
  1468. 0,
  1469. 0,
  1470. 0,
  1471. -1
  1472. ],
  1473. "scale":[
  1474. 1,
  1475. 1,
  1476. 1
  1477. ]
  1478. },
  1479. "components":[],
  1480. "child":[
  1481. {
  1482. "type":"Sprite3D",
  1483. "props":{
  1484. "name":"grilling_0",
  1485. "active":true,
  1486. "isStatic":false,
  1487. "layer":0,
  1488. "position":[
  1489. 0.03,
  1490. -0.0121,
  1491. 0.34
  1492. ],
  1493. "rotation":[
  1494. 0,
  1495. 0.7071068,
  1496. 0,
  1497. -0.7071068
  1498. ],
  1499. "scale":[
  1500. 0.8,
  1501. 0.8,
  1502. 0.8
  1503. ]
  1504. },
  1505. "components":[],
  1506. "child":[
  1507. {
  1508. "type":"MeshSprite3D",
  1509. "props":{
  1510. "name":"irongauze",
  1511. "active":true,
  1512. "isStatic":false,
  1513. "layer":0,
  1514. "position":[
  1515. 0,
  1516. 0,
  1517. 0
  1518. ],
  1519. "rotation":[
  1520. 0.5,
  1521. 0.5,
  1522. 0.5,
  1523. -0.5
  1524. ],
  1525. "scale":[
  1526. 1,
  1527. 1,
  1528. 2.5
  1529. ],
  1530. "meshPath":"Assets/Models/iron gauze-iron gauze.lm",
  1531. "enableRender":true,
  1532. "materials":[
  1533. {
  1534. "path":"Assets/Models/iron mat.lmat"
  1535. }
  1536. ]
  1537. },
  1538. "components":[
  1539. {
  1540. "type":"PhysicsCollider",
  1541. "restitution":0,
  1542. "friction":0.5,
  1543. "rollingFriction":0,
  1544. "shapes":[
  1545. {
  1546. "type":"BoxColliderShape",
  1547. "center":[
  1548. 0,
  1549. 6.64075E-11,
  1550. 0.01111413
  1551. ],
  1552. "size":[
  1553. 0.08000001,
  1554. 1.32815E-10,
  1555. 0.02222827
  1556. ]
  1557. },
  1558. {
  1559. "type":"MeshColliderShape",
  1560. "mesh":"Assets/Models/iron gauze-iron gauze.lm"
  1561. }
  1562. ],
  1563. "isTrigger":false
  1564. },
  1565. {
  1566. "type":"Animator",
  1567. "avatar":{
  1568. "path":"Assets/Models/iron gauze-irongauze-iron gauzeAvatar.lav",
  1569. "linkSprites":{}
  1570. },
  1571. "layers":[],
  1572. "cullingMode":0,
  1573. "playOnWake":true
  1574. }
  1575. ],
  1576. "child":[]
  1577. },
  1578. {
  1579. "type":"MeshSprite3D",
  1580. "props":{
  1581. "name":"Cube",
  1582. "active":true,
  1583. "isStatic":false,
  1584. "layer":0,
  1585. "position":[
  1586. 0,
  1587. 0.03,
  1588. -0.0385
  1589. ],
  1590. "rotation":[
  1591. 0,
  1592. 0,
  1593. 0,
  1594. -1
  1595. ],
  1596. "scale":[
  1597. 0.3,
  1598. 7,
  1599. 0.3
  1600. ],
  1601. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube.lm",
  1602. "enableRender":true,
  1603. "materials":[
  1604. {
  1605. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  1606. }
  1607. ]
  1608. },
  1609. "components":[],
  1610. "child":[]
  1611. },
  1612. {
  1613. "type":"MeshSprite3D",
  1614. "props":{
  1615. "name":"Cube (1)",
  1616. "active":true,
  1617. "isStatic":false,
  1618. "layer":0,
  1619. "position":[
  1620. 0,
  1621. 0.03,
  1622. 0.0385
  1623. ],
  1624. "rotation":[
  1625. 0,
  1626. 0,
  1627. 0,
  1628. -1
  1629. ],
  1630. "scale":[
  1631. 0.3,
  1632. 7,
  1633. 0.3
  1634. ],
  1635. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube (1).lm",
  1636. "enableRender":true,
  1637. "materials":[
  1638. {
  1639. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  1640. }
  1641. ]
  1642. },
  1643. "components":[],
  1644. "child":[]
  1645. },
  1646. {
  1647. "type":"Sprite3D",
  1648. "props":{
  1649. "name":"Sprite_form_frame 1",
  1650. "active":true,
  1651. "isStatic":false,
  1652. "layer":0,
  1653. "position":[
  1654. 0,
  1655. 0.03,
  1656. 0
  1657. ],
  1658. "rotation":[
  1659. 0,
  1660. 0.7071066,
  1661. 0,
  1662. -0.7071069
  1663. ],
  1664. "scale":[
  1665. 0.2,
  1666. 0.2,
  1667. 0.2
  1668. ]
  1669. },
  1670. "components":[],
  1671. "child":[]
  1672. },
  1673. {
  1674. "type":"Sprite3D",
  1675. "props":{
  1676. "name":"Sprite_form_frame 1 (1)",
  1677. "active":true,
  1678. "isStatic":false,
  1679. "layer":0,
  1680. "position":[
  1681. 0,
  1682. 0.025,
  1683. 0
  1684. ],
  1685. "rotation":[
  1686. 0,
  1687. 0.7071066,
  1688. 0,
  1689. -0.7071069
  1690. ],
  1691. "scale":[
  1692. 0.2,
  1693. 0.2,
  1694. 0.2
  1695. ]
  1696. },
  1697. "components":[],
  1698. "child":[]
  1699. },
  1700. {
  1701. "type":"Sprite3D",
  1702. "props":{
  1703. "name":"child_pos",
  1704. "active":true,
  1705. "isStatic":false,
  1706. "layer":0,
  1707. "position":[
  1708. 0,
  1709. 0.0539,
  1710. 0
  1711. ],
  1712. "rotation":[
  1713. 0,
  1714. 0,
  1715. 0,
  1716. -1
  1717. ],
  1718. "scale":[
  1719. 1,
  1720. 1,
  1721. 1
  1722. ]
  1723. },
  1724. "components":[],
  1725. "child":[]
  1726. }
  1727. ]
  1728. },
  1729. {
  1730. "type":"Sprite3D",
  1731. "props":{
  1732. "name":"grilling_1",
  1733. "active":true,
  1734. "isStatic":false,
  1735. "layer":0,
  1736. "position":[
  1737. -0.0321,
  1738. -0.0121,
  1739. 0.34
  1740. ],
  1741. "rotation":[
  1742. 0,
  1743. 0.7071068,
  1744. 0,
  1745. -0.7071068
  1746. ],
  1747. "scale":[
  1748. 0.8,
  1749. 0.8,
  1750. 0.8
  1751. ]
  1752. },
  1753. "components":[],
  1754. "child":[
  1755. {
  1756. "type":"MeshSprite3D",
  1757. "props":{
  1758. "name":"irongauze",
  1759. "active":true,
  1760. "isStatic":false,
  1761. "layer":0,
  1762. "position":[
  1763. 0,
  1764. 0,
  1765. 0
  1766. ],
  1767. "rotation":[
  1768. 0.5,
  1769. 0.5,
  1770. 0.5,
  1771. -0.5
  1772. ],
  1773. "scale":[
  1774. 1,
  1775. 1,
  1776. 2.5
  1777. ],
  1778. "meshPath":"Assets/Models/iron gauze-iron gauze.lm",
  1779. "enableRender":true,
  1780. "materials":[
  1781. {
  1782. "path":"Assets/Models/iron mat.lmat"
  1783. }
  1784. ]
  1785. },
  1786. "components":[
  1787. {
  1788. "type":"PhysicsCollider",
  1789. "restitution":0,
  1790. "friction":0.5,
  1791. "rollingFriction":0,
  1792. "shapes":[
  1793. {
  1794. "type":"BoxColliderShape",
  1795. "center":[
  1796. 0,
  1797. 6.64075E-11,
  1798. 0.01111413
  1799. ],
  1800. "size":[
  1801. 0.08000001,
  1802. 1.32815E-10,
  1803. 0.02222827
  1804. ]
  1805. },
  1806. {
  1807. "type":"MeshColliderShape",
  1808. "mesh":"Assets/Models/iron gauze-iron gauze.lm"
  1809. }
  1810. ],
  1811. "isTrigger":false
  1812. },
  1813. {
  1814. "type":"Animator",
  1815. "avatar":{
  1816. "path":"Assets/Models/iron gauze-irongauze-iron gauzeAvatar.lav",
  1817. "linkSprites":{}
  1818. },
  1819. "layers":[],
  1820. "cullingMode":0,
  1821. "playOnWake":true
  1822. }
  1823. ],
  1824. "child":[]
  1825. },
  1826. {
  1827. "type":"MeshSprite3D",
  1828. "props":{
  1829. "name":"Cube (1) 1",
  1830. "active":true,
  1831. "isStatic":false,
  1832. "layer":0,
  1833. "position":[
  1834. 0,
  1835. 0.03,
  1836. 0.0385
  1837. ],
  1838. "rotation":[
  1839. 0,
  1840. 0,
  1841. 0,
  1842. -1
  1843. ],
  1844. "scale":[
  1845. 0.3,
  1846. 7,
  1847. 0.3
  1848. ],
  1849. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube (1)-copy.lm",
  1850. "enableRender":true,
  1851. "materials":[
  1852. {
  1853. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  1854. }
  1855. ]
  1856. },
  1857. "components":[],
  1858. "child":[]
  1859. },
  1860. {
  1861. "type":"MeshSprite3D",
  1862. "props":{
  1863. "name":"Cube 1",
  1864. "active":true,
  1865. "isStatic":false,
  1866. "layer":0,
  1867. "position":[
  1868. 0,
  1869. 0.03,
  1870. -0.0385
  1871. ],
  1872. "rotation":[
  1873. 0,
  1874. 0,
  1875. 0,
  1876. -1
  1877. ],
  1878. "scale":[
  1879. 0.3,
  1880. 7,
  1881. 0.3
  1882. ],
  1883. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube-copy.lm",
  1884. "enableRender":true,
  1885. "materials":[
  1886. {
  1887. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  1888. }
  1889. ]
  1890. },
  1891. "components":[],
  1892. "child":[]
  1893. },
  1894. {
  1895. "type":"Sprite3D",
  1896. "props":{
  1897. "name":"Sprite_form_frame 1 (1) 1",
  1898. "active":true,
  1899. "isStatic":false,
  1900. "layer":0,
  1901. "position":[
  1902. 0,
  1903. 0.025,
  1904. 0
  1905. ],
  1906. "rotation":[
  1907. 0,
  1908. 0.7071066,
  1909. 0,
  1910. -0.7071069
  1911. ],
  1912. "scale":[
  1913. 0.2,
  1914. 0.2,
  1915. 0.2
  1916. ]
  1917. },
  1918. "components":[],
  1919. "child":[]
  1920. },
  1921. {
  1922. "type":"Sprite3D",
  1923. "props":{
  1924. "name":"Sprite_form_frame 1 1",
  1925. "active":true,
  1926. "isStatic":false,
  1927. "layer":0,
  1928. "position":[
  1929. 0,
  1930. 0.03,
  1931. 0
  1932. ],
  1933. "rotation":[
  1934. 0,
  1935. 0.7071066,
  1936. 0,
  1937. -0.7071069
  1938. ],
  1939. "scale":[
  1940. 0.2,
  1941. 0.2,
  1942. 0.2
  1943. ]
  1944. },
  1945. "components":[],
  1946. "child":[]
  1947. },
  1948. {
  1949. "type":"Sprite3D",
  1950. "props":{
  1951. "name":"child_pos",
  1952. "active":true,
  1953. "isStatic":false,
  1954. "layer":0,
  1955. "position":[
  1956. 0,
  1957. 0.0539,
  1958. 0
  1959. ],
  1960. "rotation":[
  1961. 0,
  1962. 0,
  1963. 0,
  1964. -1
  1965. ],
  1966. "scale":[
  1967. 1,
  1968. 1,
  1969. 1
  1970. ]
  1971. },
  1972. "components":[],
  1973. "child":[]
  1974. }
  1975. ]
  1976. },
  1977. {
  1978. "type":"Sprite3D",
  1979. "props":{
  1980. "name":"grilling_2",
  1981. "active":true,
  1982. "isStatic":false,
  1983. "layer":0,
  1984. "position":[
  1985. 0.2129,
  1986. -0.0121,
  1987. 0.34
  1988. ],
  1989. "rotation":[
  1990. 0,
  1991. 0.7071068,
  1992. 0,
  1993. -0.7071068
  1994. ],
  1995. "scale":[
  1996. 0.8,
  1997. 0.8,
  1998. 0.8
  1999. ]
  2000. },
  2001. "components":[],
  2002. "child":[
  2003. {
  2004. "type":"MeshSprite3D",
  2005. "props":{
  2006. "name":"irongauze",
  2007. "active":true,
  2008. "isStatic":false,
  2009. "layer":0,
  2010. "position":[
  2011. 0,
  2012. 0,
  2013. 0
  2014. ],
  2015. "rotation":[
  2016. 0.5,
  2017. 0.5,
  2018. 0.5,
  2019. -0.5
  2020. ],
  2021. "scale":[
  2022. 1,
  2023. 1,
  2024. 2.500002
  2025. ],
  2026. "meshPath":"Assets/Models/iron gauze-iron gauze.lm",
  2027. "enableRender":true,
  2028. "materials":[
  2029. {
  2030. "path":"Assets/Models/iron mat.lmat"
  2031. }
  2032. ]
  2033. },
  2034. "components":[
  2035. {
  2036. "type":"PhysicsCollider",
  2037. "restitution":0,
  2038. "friction":0.5,
  2039. "rollingFriction":0,
  2040. "shapes":[
  2041. {
  2042. "type":"BoxColliderShape",
  2043. "center":[
  2044. 0,
  2045. 6.64075E-11,
  2046. 0.01111413
  2047. ],
  2048. "size":[
  2049. 0.08000001,
  2050. 1.32815E-10,
  2051. 0.02222827
  2052. ]
  2053. },
  2054. {
  2055. "type":"MeshColliderShape",
  2056. "mesh":"Assets/Models/iron gauze-iron gauze.lm"
  2057. }
  2058. ],
  2059. "isTrigger":false
  2060. },
  2061. {
  2062. "type":"Animator",
  2063. "avatar":{
  2064. "path":"Assets/Models/iron gauze-irongauze-iron gauzeAvatar.lav",
  2065. "linkSprites":{}
  2066. },
  2067. "layers":[],
  2068. "cullingMode":0,
  2069. "playOnWake":true
  2070. }
  2071. ],
  2072. "child":[]
  2073. },
  2074. {
  2075. "type":"MeshSprite3D",
  2076. "props":{
  2077. "name":"Cube (1) 2",
  2078. "active":true,
  2079. "isStatic":false,
  2080. "layer":0,
  2081. "position":[
  2082. 0,
  2083. 0.03,
  2084. 0.0385
  2085. ],
  2086. "rotation":[
  2087. 0,
  2088. 0,
  2089. 0,
  2090. -1
  2091. ],
  2092. "scale":[
  2093. 0.3,
  2094. 7,
  2095. 0.3
  2096. ],
  2097. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube (1)-copy-copy.lm",
  2098. "enableRender":true,
  2099. "materials":[
  2100. {
  2101. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  2102. }
  2103. ]
  2104. },
  2105. "components":[],
  2106. "child":[]
  2107. },
  2108. {
  2109. "type":"MeshSprite3D",
  2110. "props":{
  2111. "name":"Cube 2",
  2112. "active":true,
  2113. "isStatic":false,
  2114. "layer":0,
  2115. "position":[
  2116. 0,
  2117. 0.03,
  2118. -0.0385
  2119. ],
  2120. "rotation":[
  2121. 0,
  2122. 0,
  2123. 0,
  2124. -1
  2125. ],
  2126. "scale":[
  2127. 0.3,
  2128. 7,
  2129. 0.3
  2130. ],
  2131. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube-copy-copy.lm",
  2132. "enableRender":true,
  2133. "materials":[
  2134. {
  2135. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  2136. }
  2137. ]
  2138. },
  2139. "components":[],
  2140. "child":[]
  2141. },
  2142. {
  2143. "type":"Sprite3D",
  2144. "props":{
  2145. "name":"Sprite_form_frame 1 (1) 2",
  2146. "active":true,
  2147. "isStatic":false,
  2148. "layer":0,
  2149. "position":[
  2150. 0,
  2151. 0.025,
  2152. 0
  2153. ],
  2154. "rotation":[
  2155. 0,
  2156. 0.7071066,
  2157. 0,
  2158. -0.7071069
  2159. ],
  2160. "scale":[
  2161. 0.2,
  2162. 0.2,
  2163. 0.2
  2164. ]
  2165. },
  2166. "components":[],
  2167. "child":[]
  2168. },
  2169. {
  2170. "type":"Sprite3D",
  2171. "props":{
  2172. "name":"Sprite_form_frame 1 2",
  2173. "active":true,
  2174. "isStatic":false,
  2175. "layer":0,
  2176. "position":[
  2177. 0,
  2178. 0.03,
  2179. 0
  2180. ],
  2181. "rotation":[
  2182. 0,
  2183. 0.7071066,
  2184. 0,
  2185. -0.7071069
  2186. ],
  2187. "scale":[
  2188. 0.2,
  2189. 0.2,
  2190. 0.2
  2191. ]
  2192. },
  2193. "components":[],
  2194. "child":[]
  2195. },
  2196. {
  2197. "type":"Sprite3D",
  2198. "props":{
  2199. "name":"child_pos",
  2200. "active":true,
  2201. "isStatic":false,
  2202. "layer":0,
  2203. "position":[
  2204. 0,
  2205. 0.0539,
  2206. 0
  2207. ],
  2208. "rotation":[
  2209. 0,
  2210. 0,
  2211. 0,
  2212. -1
  2213. ],
  2214. "scale":[
  2215. 1,
  2216. 1,
  2217. 1
  2218. ]
  2219. },
  2220. "components":[],
  2221. "child":[]
  2222. }
  2223. ]
  2224. },
  2225. {
  2226. "type":"Sprite3D",
  2227. "props":{
  2228. "name":"grilling_3",
  2229. "active":true,
  2230. "isStatic":false,
  2231. "layer":0,
  2232. "position":[
  2233. 0.153,
  2234. -0.0121,
  2235. 0.675
  2236. ],
  2237. "rotation":[
  2238. 0,
  2239. 0.7071068,
  2240. 0,
  2241. -0.7071068
  2242. ],
  2243. "scale":[
  2244. 0.8,
  2245. 0.8,
  2246. 0.8
  2247. ]
  2248. },
  2249. "components":[],
  2250. "child":[
  2251. {
  2252. "type":"MeshSprite3D",
  2253. "props":{
  2254. "name":"irongauze",
  2255. "active":true,
  2256. "isStatic":false,
  2257. "layer":0,
  2258. "position":[
  2259. 0,
  2260. 0,
  2261. 0
  2262. ],
  2263. "rotation":[
  2264. 0.5,
  2265. 0.5,
  2266. 0.5,
  2267. -0.5
  2268. ],
  2269. "scale":[
  2270. 1,
  2271. 1,
  2272. 2.500004
  2273. ],
  2274. "meshPath":"Assets/Models/iron gauze-iron gauze.lm",
  2275. "enableRender":true,
  2276. "materials":[
  2277. {
  2278. "path":"Assets/Models/iron mat.lmat"
  2279. }
  2280. ]
  2281. },
  2282. "components":[
  2283. {
  2284. "type":"PhysicsCollider",
  2285. "restitution":0,
  2286. "friction":0.5,
  2287. "rollingFriction":0,
  2288. "shapes":[
  2289. {
  2290. "type":"BoxColliderShape",
  2291. "center":[
  2292. 0,
  2293. 6.64075E-11,
  2294. 0.01111413
  2295. ],
  2296. "size":[
  2297. 0.08000001,
  2298. 1.32815E-10,
  2299. 0.02222827
  2300. ]
  2301. },
  2302. {
  2303. "type":"MeshColliderShape",
  2304. "mesh":"Assets/Models/iron gauze-iron gauze.lm"
  2305. }
  2306. ],
  2307. "isTrigger":false
  2308. },
  2309. {
  2310. "type":"Animator",
  2311. "avatar":{
  2312. "path":"Assets/Models/iron gauze-irongauze-iron gauzeAvatar.lav",
  2313. "linkSprites":{}
  2314. },
  2315. "layers":[],
  2316. "cullingMode":0,
  2317. "playOnWake":true
  2318. }
  2319. ],
  2320. "child":[]
  2321. },
  2322. {
  2323. "type":"MeshSprite3D",
  2324. "props":{
  2325. "name":"Cube (1) 3",
  2326. "active":true,
  2327. "isStatic":false,
  2328. "layer":0,
  2329. "position":[
  2330. 0,
  2331. 0.03,
  2332. 0.0385
  2333. ],
  2334. "rotation":[
  2335. 0,
  2336. 0,
  2337. 0,
  2338. -1
  2339. ],
  2340. "scale":[
  2341. 0.3,
  2342. 7,
  2343. 0.3
  2344. ],
  2345. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube (1)-copy-copy-copy.lm",
  2346. "enableRender":true,
  2347. "materials":[
  2348. {
  2349. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  2350. }
  2351. ]
  2352. },
  2353. "components":[],
  2354. "child":[]
  2355. },
  2356. {
  2357. "type":"MeshSprite3D",
  2358. "props":{
  2359. "name":"Cube 3",
  2360. "active":true,
  2361. "isStatic":false,
  2362. "layer":0,
  2363. "position":[
  2364. 0,
  2365. 0.03,
  2366. -0.0385
  2367. ],
  2368. "rotation":[
  2369. 0,
  2370. 0,
  2371. 0,
  2372. -1
  2373. ],
  2374. "scale":[
  2375. 0.3,
  2376. 7,
  2377. 0.3
  2378. ],
  2379. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube-copy-copy-copy.lm",
  2380. "enableRender":true,
  2381. "materials":[
  2382. {
  2383. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  2384. }
  2385. ]
  2386. },
  2387. "components":[],
  2388. "child":[]
  2389. },
  2390. {
  2391. "type":"Sprite3D",
  2392. "props":{
  2393. "name":"Sprite_form_frame 1 (1) 3",
  2394. "active":true,
  2395. "isStatic":false,
  2396. "layer":0,
  2397. "position":[
  2398. 0,
  2399. 0.025,
  2400. 0
  2401. ],
  2402. "rotation":[
  2403. 0,
  2404. 0.7071066,
  2405. 0,
  2406. -0.7071069
  2407. ],
  2408. "scale":[
  2409. 0.2,
  2410. 0.2,
  2411. 0.2
  2412. ]
  2413. },
  2414. "components":[],
  2415. "child":[]
  2416. },
  2417. {
  2418. "type":"Sprite3D",
  2419. "props":{
  2420. "name":"Sprite_form_frame 1 3",
  2421. "active":true,
  2422. "isStatic":false,
  2423. "layer":0,
  2424. "position":[
  2425. 0,
  2426. 0.03,
  2427. 0
  2428. ],
  2429. "rotation":[
  2430. 0,
  2431. 0.7071066,
  2432. 0,
  2433. -0.7071069
  2434. ],
  2435. "scale":[
  2436. 0.2,
  2437. 0.2,
  2438. 0.2
  2439. ]
  2440. },
  2441. "components":[],
  2442. "child":[]
  2443. },
  2444. {
  2445. "type":"Sprite3D",
  2446. "props":{
  2447. "name":"child_pos",
  2448. "active":true,
  2449. "isStatic":false,
  2450. "layer":0,
  2451. "position":[
  2452. 0,
  2453. 0.0539,
  2454. 0
  2455. ],
  2456. "rotation":[
  2457. 0,
  2458. 0,
  2459. 0,
  2460. -1
  2461. ],
  2462. "scale":[
  2463. 1,
  2464. 1,
  2465. 1
  2466. ]
  2467. },
  2468. "components":[],
  2469. "child":[]
  2470. }
  2471. ]
  2472. },
  2473. {
  2474. "type":"Sprite3D",
  2475. "props":{
  2476. "name":"grilling_4",
  2477. "active":true,
  2478. "isStatic":false,
  2479. "layer":0,
  2480. "position":[
  2481. 0.2151,
  2482. -0.0121,
  2483. 0.675
  2484. ],
  2485. "rotation":[
  2486. 0,
  2487. 0.7071068,
  2488. 0,
  2489. -0.7071068
  2490. ],
  2491. "scale":[
  2492. 0.8,
  2493. 0.8,
  2494. 0.8
  2495. ]
  2496. },
  2497. "components":[],
  2498. "child":[
  2499. {
  2500. "type":"MeshSprite3D",
  2501. "props":{
  2502. "name":"irongauze",
  2503. "active":true,
  2504. "isStatic":false,
  2505. "layer":0,
  2506. "position":[
  2507. 0,
  2508. 0,
  2509. 0
  2510. ],
  2511. "rotation":[
  2512. 0.5,
  2513. 0.5,
  2514. 0.5,
  2515. -0.5
  2516. ],
  2517. "scale":[
  2518. 1,
  2519. 1,
  2520. 2.500006
  2521. ],
  2522. "meshPath":"Assets/Models/iron gauze-iron gauze.lm",
  2523. "enableRender":true,
  2524. "materials":[
  2525. {
  2526. "path":"Assets/Models/iron mat.lmat"
  2527. }
  2528. ]
  2529. },
  2530. "components":[
  2531. {
  2532. "type":"PhysicsCollider",
  2533. "restitution":0,
  2534. "friction":0.5,
  2535. "rollingFriction":0,
  2536. "shapes":[
  2537. {
  2538. "type":"BoxColliderShape",
  2539. "center":[
  2540. 0,
  2541. 6.64075E-11,
  2542. 0.01111413
  2543. ],
  2544. "size":[
  2545. 0.08000001,
  2546. 1.32815E-10,
  2547. 0.02222827
  2548. ]
  2549. },
  2550. {
  2551. "type":"MeshColliderShape",
  2552. "mesh":"Assets/Models/iron gauze-iron gauze.lm"
  2553. }
  2554. ],
  2555. "isTrigger":false
  2556. },
  2557. {
  2558. "type":"Animator",
  2559. "avatar":{
  2560. "path":"Assets/Models/iron gauze-irongauze-iron gauzeAvatar.lav",
  2561. "linkSprites":{}
  2562. },
  2563. "layers":[],
  2564. "cullingMode":0,
  2565. "playOnWake":true
  2566. }
  2567. ],
  2568. "child":[]
  2569. },
  2570. {
  2571. "type":"MeshSprite3D",
  2572. "props":{
  2573. "name":"Cube (1) 4",
  2574. "active":true,
  2575. "isStatic":false,
  2576. "layer":0,
  2577. "position":[
  2578. 0,
  2579. 0.03,
  2580. 0.0385
  2581. ],
  2582. "rotation":[
  2583. 0,
  2584. 0,
  2585. 0,
  2586. -1
  2587. ],
  2588. "scale":[
  2589. 0.3,
  2590. 7,
  2591. 0.3
  2592. ],
  2593. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube (1)-copy-copy-copy-copy.lm",
  2594. "enableRender":true,
  2595. "materials":[
  2596. {
  2597. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  2598. }
  2599. ]
  2600. },
  2601. "components":[],
  2602. "child":[]
  2603. },
  2604. {
  2605. "type":"MeshSprite3D",
  2606. "props":{
  2607. "name":"Cube 4",
  2608. "active":true,
  2609. "isStatic":false,
  2610. "layer":0,
  2611. "position":[
  2612. 0,
  2613. 0.03,
  2614. -0.0385
  2615. ],
  2616. "rotation":[
  2617. 0,
  2618. 0,
  2619. 0,
  2620. -1
  2621. ],
  2622. "scale":[
  2623. 0.3,
  2624. 7,
  2625. 0.3
  2626. ],
  2627. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube-copy-copy-copy-copy.lm",
  2628. "enableRender":true,
  2629. "materials":[
  2630. {
  2631. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  2632. }
  2633. ]
  2634. },
  2635. "components":[],
  2636. "child":[]
  2637. },
  2638. {
  2639. "type":"Sprite3D",
  2640. "props":{
  2641. "name":"Sprite_form_frame 1 (1) 4",
  2642. "active":true,
  2643. "isStatic":false,
  2644. "layer":0,
  2645. "position":[
  2646. 0,
  2647. 0.025,
  2648. 0
  2649. ],
  2650. "rotation":[
  2651. 0,
  2652. 0.7071066,
  2653. 0,
  2654. -0.7071069
  2655. ],
  2656. "scale":[
  2657. 0.2,
  2658. 0.2,
  2659. 0.2
  2660. ]
  2661. },
  2662. "components":[],
  2663. "child":[]
  2664. },
  2665. {
  2666. "type":"Sprite3D",
  2667. "props":{
  2668. "name":"Sprite_form_frame 1 4",
  2669. "active":true,
  2670. "isStatic":false,
  2671. "layer":0,
  2672. "position":[
  2673. 0,
  2674. 0.03,
  2675. 0
  2676. ],
  2677. "rotation":[
  2678. 0,
  2679. 0.7071066,
  2680. 0,
  2681. -0.7071069
  2682. ],
  2683. "scale":[
  2684. 0.2,
  2685. 0.2,
  2686. 0.2
  2687. ]
  2688. },
  2689. "components":[],
  2690. "child":[]
  2691. },
  2692. {
  2693. "type":"Sprite3D",
  2694. "props":{
  2695. "name":"child_pos",
  2696. "active":true,
  2697. "isStatic":false,
  2698. "layer":0,
  2699. "position":[
  2700. 0,
  2701. 0.0539,
  2702. 0
  2703. ],
  2704. "rotation":[
  2705. 0,
  2706. 0,
  2707. 0,
  2708. -1
  2709. ],
  2710. "scale":[
  2711. 1,
  2712. 1,
  2713. 1
  2714. ]
  2715. },
  2716. "components":[],
  2717. "child":[]
  2718. }
  2719. ]
  2720. },
  2721. {
  2722. "type":"Sprite3D",
  2723. "props":{
  2724. "name":"grilling_5",
  2725. "active":true,
  2726. "isStatic":false,
  2727. "layer":0,
  2728. "position":[
  2729. -0.212,
  2730. -0.0121,
  2731. 0.675
  2732. ],
  2733. "rotation":[
  2734. 0,
  2735. 0.7071068,
  2736. 0,
  2737. -0.7071068
  2738. ],
  2739. "scale":[
  2740. 0.8,
  2741. 0.8,
  2742. 0.8
  2743. ]
  2744. },
  2745. "components":[],
  2746. "child":[
  2747. {
  2748. "type":"MeshSprite3D",
  2749. "props":{
  2750. "name":"irongauze",
  2751. "active":true,
  2752. "isStatic":false,
  2753. "layer":0,
  2754. "position":[
  2755. 0,
  2756. 0,
  2757. 0
  2758. ],
  2759. "rotation":[
  2760. 0.5,
  2761. 0.5,
  2762. 0.5,
  2763. -0.5
  2764. ],
  2765. "scale":[
  2766. 1,
  2767. 1,
  2768. 2.500009
  2769. ],
  2770. "meshPath":"Assets/Models/iron gauze-iron gauze.lm",
  2771. "enableRender":true,
  2772. "materials":[
  2773. {
  2774. "path":"Assets/Models/iron mat.lmat"
  2775. }
  2776. ]
  2777. },
  2778. "components":[
  2779. {
  2780. "type":"PhysicsCollider",
  2781. "restitution":0,
  2782. "friction":0.5,
  2783. "rollingFriction":0,
  2784. "shapes":[
  2785. {
  2786. "type":"BoxColliderShape",
  2787. "center":[
  2788. 0,
  2789. 6.64075E-11,
  2790. 0.01111413
  2791. ],
  2792. "size":[
  2793. 0.08000001,
  2794. 1.32815E-10,
  2795. 0.02222827
  2796. ]
  2797. },
  2798. {
  2799. "type":"MeshColliderShape",
  2800. "mesh":"Assets/Models/iron gauze-iron gauze.lm"
  2801. }
  2802. ],
  2803. "isTrigger":false
  2804. },
  2805. {
  2806. "type":"Animator",
  2807. "avatar":{
  2808. "path":"Assets/Models/iron gauze-irongauze-iron gauzeAvatar.lav",
  2809. "linkSprites":{}
  2810. },
  2811. "layers":[],
  2812. "cullingMode":0,
  2813. "playOnWake":true
  2814. }
  2815. ],
  2816. "child":[]
  2817. },
  2818. {
  2819. "type":"MeshSprite3D",
  2820. "props":{
  2821. "name":"Cube (1) 5",
  2822. "active":true,
  2823. "isStatic":false,
  2824. "layer":0,
  2825. "position":[
  2826. 0,
  2827. 0.03,
  2828. 0.0385
  2829. ],
  2830. "rotation":[
  2831. 0,
  2832. 0,
  2833. 0,
  2834. -1
  2835. ],
  2836. "scale":[
  2837. 0.3,
  2838. 7,
  2839. 0.3
  2840. ],
  2841. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube (1)-copy-copy-copy-copy-copy.lm",
  2842. "enableRender":true,
  2843. "materials":[
  2844. {
  2845. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  2846. }
  2847. ]
  2848. },
  2849. "components":[],
  2850. "child":[]
  2851. },
  2852. {
  2853. "type":"MeshSprite3D",
  2854. "props":{
  2855. "name":"Cube 5",
  2856. "active":true,
  2857. "isStatic":false,
  2858. "layer":0,
  2859. "position":[
  2860. 0,
  2861. 0.03,
  2862. -0.0385
  2863. ],
  2864. "rotation":[
  2865. 0,
  2866. 0,
  2867. 0,
  2868. -1
  2869. ],
  2870. "scale":[
  2871. 0.3,
  2872. 7,
  2873. 0.3
  2874. ],
  2875. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube-copy-copy-copy-copy-copy.lm",
  2876. "enableRender":true,
  2877. "materials":[
  2878. {
  2879. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  2880. }
  2881. ]
  2882. },
  2883. "components":[],
  2884. "child":[]
  2885. },
  2886. {
  2887. "type":"Sprite3D",
  2888. "props":{
  2889. "name":"Sprite_form_frame 1 (1) 5",
  2890. "active":true,
  2891. "isStatic":false,
  2892. "layer":0,
  2893. "position":[
  2894. 0,
  2895. 0.025,
  2896. 0
  2897. ],
  2898. "rotation":[
  2899. 0,
  2900. 0.7071066,
  2901. 0,
  2902. -0.7071069
  2903. ],
  2904. "scale":[
  2905. 0.2,
  2906. 0.2,
  2907. 0.2
  2908. ]
  2909. },
  2910. "components":[],
  2911. "child":[]
  2912. },
  2913. {
  2914. "type":"Sprite3D",
  2915. "props":{
  2916. "name":"Sprite_form_frame 1 5",
  2917. "active":true,
  2918. "isStatic":false,
  2919. "layer":0,
  2920. "position":[
  2921. 0,
  2922. 0.03,
  2923. 0
  2924. ],
  2925. "rotation":[
  2926. 0,
  2927. 0.7071066,
  2928. 0,
  2929. -0.7071069
  2930. ],
  2931. "scale":[
  2932. 0.2,
  2933. 0.2,
  2934. 0.2
  2935. ]
  2936. },
  2937. "components":[],
  2938. "child":[]
  2939. },
  2940. {
  2941. "type":"Sprite3D",
  2942. "props":{
  2943. "name":"child_pos",
  2944. "active":true,
  2945. "isStatic":false,
  2946. "layer":0,
  2947. "position":[
  2948. 0,
  2949. 0.0539,
  2950. 0
  2951. ],
  2952. "rotation":[
  2953. 0,
  2954. 0,
  2955. 0,
  2956. -1
  2957. ],
  2958. "scale":[
  2959. 1,
  2960. 1,
  2961. 1
  2962. ]
  2963. },
  2964. "components":[],
  2965. "child":[]
  2966. }
  2967. ]
  2968. },
  2969. {
  2970. "type":"Sprite3D",
  2971. "props":{
  2972. "name":"grilling_6",
  2973. "active":true,
  2974. "isStatic":false,
  2975. "layer":0,
  2976. "position":[
  2977. -0.1499,
  2978. -0.0121,
  2979. 0.675
  2980. ],
  2981. "rotation":[
  2982. 0,
  2983. 0.7071068,
  2984. 0,
  2985. -0.7071068
  2986. ],
  2987. "scale":[
  2988. 0.8,
  2989. 0.8,
  2990. 0.8
  2991. ]
  2992. },
  2993. "components":[],
  2994. "child":[
  2995. {
  2996. "type":"MeshSprite3D",
  2997. "props":{
  2998. "name":"irongauze",
  2999. "active":true,
  3000. "isStatic":false,
  3001. "layer":0,
  3002. "position":[
  3003. 0,
  3004. 0,
  3005. 0
  3006. ],
  3007. "rotation":[
  3008. 0.5,
  3009. 0.5,
  3010. 0.5,
  3011. -0.5
  3012. ],
  3013. "scale":[
  3014. 1,
  3015. 1,
  3016. 2.500009
  3017. ],
  3018. "meshPath":"Assets/Models/iron gauze-iron gauze.lm",
  3019. "enableRender":true,
  3020. "materials":[
  3021. {
  3022. "path":"Assets/Models/iron mat.lmat"
  3023. }
  3024. ]
  3025. },
  3026. "components":[
  3027. {
  3028. "type":"PhysicsCollider",
  3029. "restitution":0,
  3030. "friction":0.5,
  3031. "rollingFriction":0,
  3032. "shapes":[
  3033. {
  3034. "type":"BoxColliderShape",
  3035. "center":[
  3036. 0,
  3037. 6.64075E-11,
  3038. 0.01111413
  3039. ],
  3040. "size":[
  3041. 0.08000001,
  3042. 1.32815E-10,
  3043. 0.02222827
  3044. ]
  3045. },
  3046. {
  3047. "type":"MeshColliderShape",
  3048. "mesh":"Assets/Models/iron gauze-iron gauze.lm"
  3049. }
  3050. ],
  3051. "isTrigger":false
  3052. },
  3053. {
  3054. "type":"Animator",
  3055. "avatar":{
  3056. "path":"Assets/Models/iron gauze-irongauze-iron gauzeAvatar.lav",
  3057. "linkSprites":{}
  3058. },
  3059. "layers":[],
  3060. "cullingMode":0,
  3061. "playOnWake":true
  3062. }
  3063. ],
  3064. "child":[]
  3065. },
  3066. {
  3067. "type":"MeshSprite3D",
  3068. "props":{
  3069. "name":"Cube (1) 6",
  3070. "active":true,
  3071. "isStatic":false,
  3072. "layer":0,
  3073. "position":[
  3074. 0,
  3075. 0.03,
  3076. 0.0385
  3077. ],
  3078. "rotation":[
  3079. 0,
  3080. 0,
  3081. 0,
  3082. -1
  3083. ],
  3084. "scale":[
  3085. 0.3,
  3086. 7,
  3087. 0.3
  3088. ],
  3089. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube (1)-copy-copy-copy-copy-copy-copy.lm",
  3090. "enableRender":true,
  3091. "materials":[
  3092. {
  3093. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  3094. }
  3095. ]
  3096. },
  3097. "components":[],
  3098. "child":[]
  3099. },
  3100. {
  3101. "type":"MeshSprite3D",
  3102. "props":{
  3103. "name":"Cube 6",
  3104. "active":true,
  3105. "isStatic":false,
  3106. "layer":0,
  3107. "position":[
  3108. 0,
  3109. 0.03,
  3110. -0.0385
  3111. ],
  3112. "rotation":[
  3113. 0,
  3114. 0,
  3115. 0,
  3116. -1
  3117. ],
  3118. "scale":[
  3119. 0.3,
  3120. 7,
  3121. 0.3
  3122. ],
  3123. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube-copy-copy-copy-copy-copy-copy.lm",
  3124. "enableRender":true,
  3125. "materials":[
  3126. {
  3127. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  3128. }
  3129. ]
  3130. },
  3131. "components":[],
  3132. "child":[]
  3133. },
  3134. {
  3135. "type":"Sprite3D",
  3136. "props":{
  3137. "name":"Sprite_form_frame 1 (1) 6",
  3138. "active":true,
  3139. "isStatic":false,
  3140. "layer":0,
  3141. "position":[
  3142. 0,
  3143. 0.025,
  3144. 0
  3145. ],
  3146. "rotation":[
  3147. 0,
  3148. 0.7071066,
  3149. 0,
  3150. -0.7071069
  3151. ],
  3152. "scale":[
  3153. 0.2,
  3154. 0.2,
  3155. 0.2
  3156. ]
  3157. },
  3158. "components":[],
  3159. "child":[]
  3160. },
  3161. {
  3162. "type":"Sprite3D",
  3163. "props":{
  3164. "name":"Sprite_form_frame 1 6",
  3165. "active":true,
  3166. "isStatic":false,
  3167. "layer":0,
  3168. "position":[
  3169. 0,
  3170. 0.03,
  3171. 0
  3172. ],
  3173. "rotation":[
  3174. 0,
  3175. 0.7071066,
  3176. 0,
  3177. -0.7071069
  3178. ],
  3179. "scale":[
  3180. 0.2,
  3181. 0.2,
  3182. 0.2
  3183. ]
  3184. },
  3185. "components":[],
  3186. "child":[]
  3187. },
  3188. {
  3189. "type":"Sprite3D",
  3190. "props":{
  3191. "name":"child_pos",
  3192. "active":true,
  3193. "isStatic":false,
  3194. "layer":0,
  3195. "position":[
  3196. 0,
  3197. 0.0539,
  3198. 0
  3199. ],
  3200. "rotation":[
  3201. 0,
  3202. 0,
  3203. 0,
  3204. -1
  3205. ],
  3206. "scale":[
  3207. 1,
  3208. 1,
  3209. 1
  3210. ]
  3211. },
  3212. "components":[],
  3213. "child":[]
  3214. }
  3215. ]
  3216. },
  3217. {
  3218. "type":"Sprite3D",
  3219. "props":{
  3220. "name":"grilling_7",
  3221. "active":true,
  3222. "isStatic":false,
  3223. "layer":0,
  3224. "position":[
  3225. -0.0321,
  3226. -0.0121,
  3227. 0.675
  3228. ],
  3229. "rotation":[
  3230. 0,
  3231. 0.7071068,
  3232. 0,
  3233. -0.7071068
  3234. ],
  3235. "scale":[
  3236. 0.8,
  3237. 0.8,
  3238. 0.8
  3239. ]
  3240. },
  3241. "components":[],
  3242. "child":[
  3243. {
  3244. "type":"MeshSprite3D",
  3245. "props":{
  3246. "name":"irongauze",
  3247. "active":true,
  3248. "isStatic":false,
  3249. "layer":0,
  3250. "position":[
  3251. 0,
  3252. 0,
  3253. 0
  3254. ],
  3255. "rotation":[
  3256. 0.5,
  3257. 0.5,
  3258. 0.5,
  3259. -0.5
  3260. ],
  3261. "scale":[
  3262. 1,
  3263. 1,
  3264. 2.500009
  3265. ],
  3266. "meshPath":"Assets/Models/iron gauze-iron gauze.lm",
  3267. "enableRender":true,
  3268. "materials":[
  3269. {
  3270. "path":"Assets/Models/iron mat.lmat"
  3271. }
  3272. ]
  3273. },
  3274. "components":[
  3275. {
  3276. "type":"PhysicsCollider",
  3277. "restitution":0,
  3278. "friction":0.5,
  3279. "rollingFriction":0,
  3280. "shapes":[
  3281. {
  3282. "type":"BoxColliderShape",
  3283. "center":[
  3284. 0,
  3285. 6.64075E-11,
  3286. 0.01111413
  3287. ],
  3288. "size":[
  3289. 0.08000001,
  3290. 1.32815E-10,
  3291. 0.02222827
  3292. ]
  3293. },
  3294. {
  3295. "type":"MeshColliderShape",
  3296. "mesh":"Assets/Models/iron gauze-iron gauze.lm"
  3297. }
  3298. ],
  3299. "isTrigger":false
  3300. },
  3301. {
  3302. "type":"Animator",
  3303. "avatar":{
  3304. "path":"Assets/Models/iron gauze-irongauze-iron gauzeAvatar.lav",
  3305. "linkSprites":{}
  3306. },
  3307. "layers":[],
  3308. "cullingMode":0,
  3309. "playOnWake":true
  3310. }
  3311. ],
  3312. "child":[]
  3313. },
  3314. {
  3315. "type":"MeshSprite3D",
  3316. "props":{
  3317. "name":"Cube (1) 7",
  3318. "active":true,
  3319. "isStatic":false,
  3320. "layer":0,
  3321. "position":[
  3322. 0,
  3323. 0.03,
  3324. 0.0385
  3325. ],
  3326. "rotation":[
  3327. 0,
  3328. 0,
  3329. 0,
  3330. -1
  3331. ],
  3332. "scale":[
  3333. 0.3,
  3334. 7,
  3335. 0.3
  3336. ],
  3337. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube (1)-copy-copy-copy-copy-copy-copy-copy.lm",
  3338. "enableRender":true,
  3339. "materials":[
  3340. {
  3341. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  3342. }
  3343. ]
  3344. },
  3345. "components":[],
  3346. "child":[]
  3347. },
  3348. {
  3349. "type":"MeshSprite3D",
  3350. "props":{
  3351. "name":"Cube 7",
  3352. "active":true,
  3353. "isStatic":false,
  3354. "layer":0,
  3355. "position":[
  3356. 0,
  3357. 0.03,
  3358. -0.0385
  3359. ],
  3360. "rotation":[
  3361. 0,
  3362. 0,
  3363. 0,
  3364. -1
  3365. ],
  3366. "scale":[
  3367. 0.3,
  3368. 7,
  3369. 0.3
  3370. ],
  3371. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube-copy-copy-copy-copy-copy-copy-copy.lm",
  3372. "enableRender":true,
  3373. "materials":[
  3374. {
  3375. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  3376. }
  3377. ]
  3378. },
  3379. "components":[],
  3380. "child":[]
  3381. },
  3382. {
  3383. "type":"Sprite3D",
  3384. "props":{
  3385. "name":"Sprite_form_frame 1 (1) 7",
  3386. "active":true,
  3387. "isStatic":false,
  3388. "layer":0,
  3389. "position":[
  3390. 0,
  3391. 0.025,
  3392. 0
  3393. ],
  3394. "rotation":[
  3395. 0,
  3396. 0.7071066,
  3397. 0,
  3398. -0.7071069
  3399. ],
  3400. "scale":[
  3401. 0.2,
  3402. 0.2,
  3403. 0.2
  3404. ]
  3405. },
  3406. "components":[],
  3407. "child":[]
  3408. },
  3409. {
  3410. "type":"Sprite3D",
  3411. "props":{
  3412. "name":"Sprite_form_frame 1 7",
  3413. "active":true,
  3414. "isStatic":false,
  3415. "layer":0,
  3416. "position":[
  3417. 0,
  3418. 0.03,
  3419. 0
  3420. ],
  3421. "rotation":[
  3422. 0,
  3423. 0.7071066,
  3424. 0,
  3425. -0.7071069
  3426. ],
  3427. "scale":[
  3428. 0.2,
  3429. 0.2,
  3430. 0.2
  3431. ]
  3432. },
  3433. "components":[],
  3434. "child":[]
  3435. },
  3436. {
  3437. "type":"Sprite3D",
  3438. "props":{
  3439. "name":"child_pos",
  3440. "active":true,
  3441. "isStatic":false,
  3442. "layer":0,
  3443. "position":[
  3444. 0,
  3445. 0.0539,
  3446. 0
  3447. ],
  3448. "rotation":[
  3449. 0,
  3450. 0,
  3451. 0,
  3452. -1
  3453. ],
  3454. "scale":[
  3455. 1,
  3456. 1,
  3457. 1
  3458. ]
  3459. },
  3460. "components":[],
  3461. "child":[]
  3462. }
  3463. ]
  3464. },
  3465. {
  3466. "type":"Sprite3D",
  3467. "props":{
  3468. "name":"grilling_8",
  3469. "active":true,
  3470. "isStatic":false,
  3471. "layer":0,
  3472. "position":[
  3473. -0.2099,
  3474. -0.0121,
  3475. 1.12
  3476. ],
  3477. "rotation":[
  3478. 0,
  3479. 0.7071068,
  3480. 0,
  3481. -0.7071068
  3482. ],
  3483. "scale":[
  3484. 0.8,
  3485. 0.8,
  3486. 0.8
  3487. ]
  3488. },
  3489. "components":[],
  3490. "child":[
  3491. {
  3492. "type":"MeshSprite3D",
  3493. "props":{
  3494. "name":"irongauze",
  3495. "active":true,
  3496. "isStatic":false,
  3497. "layer":0,
  3498. "position":[
  3499. 0,
  3500. 0,
  3501. 0
  3502. ],
  3503. "rotation":[
  3504. 0.5,
  3505. 0.5,
  3506. 0.5,
  3507. -0.5
  3508. ],
  3509. "scale":[
  3510. 1,
  3511. 1,
  3512. 2.500011
  3513. ],
  3514. "meshPath":"Assets/Models/iron gauze-iron gauze.lm",
  3515. "enableRender":true,
  3516. "materials":[
  3517. {
  3518. "path":"Assets/Models/iron mat.lmat"
  3519. }
  3520. ]
  3521. },
  3522. "components":[
  3523. {
  3524. "type":"PhysicsCollider",
  3525. "restitution":0,
  3526. "friction":0.5,
  3527. "rollingFriction":0,
  3528. "shapes":[
  3529. {
  3530. "type":"BoxColliderShape",
  3531. "center":[
  3532. 0,
  3533. 6.64075E-11,
  3534. 0.01111413
  3535. ],
  3536. "size":[
  3537. 0.08000001,
  3538. 1.32815E-10,
  3539. 0.02222827
  3540. ]
  3541. },
  3542. {
  3543. "type":"MeshColliderShape",
  3544. "mesh":"Assets/Models/iron gauze-iron gauze.lm"
  3545. }
  3546. ],
  3547. "isTrigger":false
  3548. },
  3549. {
  3550. "type":"Animator",
  3551. "avatar":{
  3552. "path":"Assets/Models/iron gauze-irongauze-iron gauzeAvatar.lav",
  3553. "linkSprites":{}
  3554. },
  3555. "layers":[],
  3556. "cullingMode":0,
  3557. "playOnWake":true
  3558. }
  3559. ],
  3560. "child":[]
  3561. },
  3562. {
  3563. "type":"MeshSprite3D",
  3564. "props":{
  3565. "name":"Cube (1) 8",
  3566. "active":true,
  3567. "isStatic":false,
  3568. "layer":0,
  3569. "position":[
  3570. 0,
  3571. 0.03,
  3572. 0.0385
  3573. ],
  3574. "rotation":[
  3575. 0,
  3576. 0,
  3577. 0,
  3578. -1
  3579. ],
  3580. "scale":[
  3581. 0.3,
  3582. 7,
  3583. 0.3
  3584. ],
  3585. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube (1)-copy-copy-copy-copy-copy-copy-copy-copy.lm",
  3586. "enableRender":true,
  3587. "materials":[
  3588. {
  3589. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  3590. }
  3591. ]
  3592. },
  3593. "components":[],
  3594. "child":[]
  3595. },
  3596. {
  3597. "type":"MeshSprite3D",
  3598. "props":{
  3599. "name":"Cube 8",
  3600. "active":true,
  3601. "isStatic":false,
  3602. "layer":0,
  3603. "position":[
  3604. 0,
  3605. 0.03,
  3606. -0.0385
  3607. ],
  3608. "rotation":[
  3609. 0,
  3610. 0,
  3611. 0,
  3612. -1
  3613. ],
  3614. "scale":[
  3615. 0.3,
  3616. 7,
  3617. 0.3
  3618. ],
  3619. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-Cube-copy-copy-copy-copy-copy-copy-copy-copy.lm",
  3620. "enableRender":true,
  3621. "materials":[
  3622. {
  3623. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  3624. }
  3625. ]
  3626. },
  3627. "components":[],
  3628. "child":[]
  3629. },
  3630. {
  3631. "type":"Sprite3D",
  3632. "props":{
  3633. "name":"Sprite_form_frame 1 (1) 8",
  3634. "active":true,
  3635. "isStatic":false,
  3636. "layer":0,
  3637. "position":[
  3638. 0,
  3639. 0.025,
  3640. 0
  3641. ],
  3642. "rotation":[
  3643. 0,
  3644. 0.7071066,
  3645. 0,
  3646. -0.7071069
  3647. ],
  3648. "scale":[
  3649. 0.2,
  3650. 0.2,
  3651. 0.2
  3652. ]
  3653. },
  3654. "components":[],
  3655. "child":[]
  3656. },
  3657. {
  3658. "type":"Sprite3D",
  3659. "props":{
  3660. "name":"Sprite_form_frame 1 8",
  3661. "active":true,
  3662. "isStatic":false,
  3663. "layer":0,
  3664. "position":[
  3665. 0,
  3666. 0.03,
  3667. 0
  3668. ],
  3669. "rotation":[
  3670. 0,
  3671. 0.7071066,
  3672. 0,
  3673. -0.7071069
  3674. ],
  3675. "scale":[
  3676. 0.2,
  3677. 0.2,
  3678. 0.2
  3679. ]
  3680. },
  3681. "components":[],
  3682. "child":[]
  3683. },
  3684. {
  3685. "type":"Sprite3D",
  3686. "props":{
  3687. "name":"child_pos",
  3688. "active":true,
  3689. "isStatic":false,
  3690. "layer":0,
  3691. "position":[
  3692. 0,
  3693. 0.0539,
  3694. 0
  3695. ],
  3696. "rotation":[
  3697. 0,
  3698. 0,
  3699. 0,
  3700. -1
  3701. ],
  3702. "scale":[
  3703. 1,
  3704. 1,
  3705. 1
  3706. ]
  3707. },
  3708. "components":[],
  3709. "child":[]
  3710. }
  3711. ]
  3712. },
  3713. {
  3714. "type":"Sprite3D",
  3715. "props":{
  3716. "name":"JumpBoost_0",
  3717. "active":true,
  3718. "isStatic":false,
  3719. "layer":0,
  3720. "position":[
  3721. 0,
  3722. 0,
  3723. 2.13
  3724. ],
  3725. "rotation":[
  3726. 0,
  3727. 0,
  3728. 0,
  3729. -1
  3730. ],
  3731. "scale":[
  3732. 1,
  3733. 1,
  3734. 1
  3735. ]
  3736. },
  3737. "components":[],
  3738. "child":[
  3739. {
  3740. "type":"MeshSprite3D",
  3741. "props":{
  3742. "name":"panel_jump",
  3743. "active":true,
  3744. "isStatic":false,
  3745. "layer":0,
  3746. "position":[
  3747. 0.00064,
  3748. 0.01027,
  3749. -0.01451
  3750. ],
  3751. "rotation":[
  3752. 0.3007058,
  3753. 0,
  3754. 0,
  3755. -0.953717
  3756. ],
  3757. "scale":[
  3758. 2.78,
  3759. 0.1245064,
  3760. 3.1193
  3761. ],
  3762. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-JumpBoost.lm",
  3763. "enableRender":true,
  3764. "materials":[
  3765. {
  3766. "path":"Assets/Scenes/Materials/scene_mat/scene_orange.lmat"
  3767. }
  3768. ]
  3769. },
  3770. "components":[
  3771. {
  3772. "type":"PhysicsCollider",
  3773. "restitution":0,
  3774. "friction":0.5,
  3775. "rollingFriction":0,
  3776. "shapes":[
  3777. {
  3778. "type":"BoxColliderShape",
  3779. "center":[
  3780. 0,
  3781. 9.536743E-07,
  3782. 0
  3783. ],
  3784. "size":[
  3785. 0.009999999,
  3786. 0.01000001,
  3787. 0.01
  3788. ]
  3789. },
  3790. {
  3791. "type":"MeshColliderShape",
  3792. "mesh":"Assets/Allmodel/Pattern3/Pattern3-JumpBoost.lm"
  3793. }
  3794. ],
  3795. "isTrigger":false
  3796. }
  3797. ],
  3798. "child":[
  3799. {
  3800. "type":"MeshSprite3D",
  3801. "props":{
  3802. "name":"BoostArrow 4",
  3803. "active":true,
  3804. "isStatic":false,
  3805. "layer":0,
  3806. "position":[
  3807. 1.881645E-05,
  3808. 0.00636927,
  3809. 5.813438E-06
  3810. ],
  3811. "rotation":[
  3812. 2.235174E-08,
  3813. 0.7071067,
  3814. 2.235174E-08,
  3815. -0.7071068
  3816. ],
  3817. "scale":[
  3818. 0.08014619,
  3819. 1.40555,
  3820. 0.08232194
  3821. ],
  3822. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-BoostArrow.lm",
  3823. "enableRender":true,
  3824. "materials":[
  3825. {
  3826. "path":"Assets/Scenes/Materials/scene_mat/scene_yellow.lmat"
  3827. }
  3828. ]
  3829. },
  3830. "components":[],
  3831. "child":[]
  3832. }
  3833. ]
  3834. },
  3835. {
  3836. "type":"MeshSprite3D",
  3837. "props":{
  3838. "name":"SC_Prop_Construction_Beams",
  3839. "active":true,
  3840. "isStatic":false,
  3841. "layer":0,
  3842. "position":[
  3843. -0.00053,
  3844. 0.0011871,
  3845. -0.00092
  3846. ],
  3847. "rotation":[
  3848. 0,
  3849. 0.1052064,
  3850. 0,
  3851. -0.9944504
  3852. ],
  3853. "scale":[
  3854. 0.25,
  3855. 0.4,
  3856. 0.4
  3857. ],
  3858. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-SC_Prop_Construction_Beams.lm",
  3859. "enableRender":true,
  3860. "materials":[
  3861. {
  3862. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  3863. }
  3864. ]
  3865. },
  3866. "components":[],
  3867. "child":[]
  3868. }
  3869. ]
  3870. },
  3871. {
  3872. "type":"Sprite3D",
  3873. "props":{
  3874. "name":"JumpBoost_1",
  3875. "active":true,
  3876. "isStatic":false,
  3877. "layer":0,
  3878. "position":[
  3879. 0,
  3880. -0.0169,
  3881. 1.715
  3882. ],
  3883. "rotation":[
  3884. 0,
  3885. 0,
  3886. 0,
  3887. -1
  3888. ],
  3889. "scale":[
  3890. 1,
  3891. 1,
  3892. 1
  3893. ]
  3894. },
  3895. "components":[],
  3896. "child":[
  3897. {
  3898. "type":"MeshSprite3D",
  3899. "props":{
  3900. "name":"panel_jump",
  3901. "active":true,
  3902. "isStatic":false,
  3903. "layer":0,
  3904. "position":[
  3905. 0.00064,
  3906. 0.01027,
  3907. -0.01451
  3908. ],
  3909. "rotation":[
  3910. 0.3007058,
  3911. 0,
  3912. 0,
  3913. -0.953717
  3914. ],
  3915. "scale":[
  3916. 2.78,
  3917. 0.1245064,
  3918. 3.1193
  3919. ],
  3920. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-JumpBoost-copy.lm",
  3921. "enableRender":true,
  3922. "materials":[
  3923. {
  3924. "path":"Assets/Scenes/Materials/scene_mat/scene_orange.lmat"
  3925. }
  3926. ]
  3927. },
  3928. "components":[
  3929. {
  3930. "type":"PhysicsCollider",
  3931. "restitution":0,
  3932. "friction":0.5,
  3933. "rollingFriction":0,
  3934. "shapes":[
  3935. {
  3936. "type":"BoxColliderShape",
  3937. "center":[
  3938. 0,
  3939. 4.768372E-07,
  3940. -5.960464E-08
  3941. ],
  3942. "size":[
  3943. 0.009999999,
  3944. 0.01000001,
  3945. 0.01
  3946. ]
  3947. },
  3948. {
  3949. "type":"MeshColliderShape",
  3950. "mesh":"Assets/Allmodel/Pattern3/Pattern3-JumpBoost.lm"
  3951. }
  3952. ],
  3953. "isTrigger":false
  3954. }
  3955. ],
  3956. "child":[
  3957. {
  3958. "type":"MeshSprite3D",
  3959. "props":{
  3960. "name":"BoostArrow 3",
  3961. "active":true,
  3962. "isStatic":false,
  3963. "layer":0,
  3964. "position":[
  3965. 1.881645E-05,
  3966. 0.00636927,
  3967. 5.813438E-06
  3968. ],
  3969. "rotation":[
  3970. 2.235174E-08,
  3971. 0.7071067,
  3972. 2.235174E-08,
  3973. -0.7071068
  3974. ],
  3975. "scale":[
  3976. 0.08014619,
  3977. 1.40555,
  3978. 0.08232194
  3979. ],
  3980. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-BoostArrow-copy.lm",
  3981. "enableRender":true,
  3982. "materials":[
  3983. {
  3984. "path":"Assets/Scenes/Materials/scene_mat/scene_yellow.lmat"
  3985. }
  3986. ]
  3987. },
  3988. "components":[],
  3989. "child":[]
  3990. }
  3991. ]
  3992. },
  3993. {
  3994. "type":"MeshSprite3D",
  3995. "props":{
  3996. "name":"SC_Prop_Construction_Beams 1",
  3997. "active":true,
  3998. "isStatic":false,
  3999. "layer":0,
  4000. "position":[
  4001. -0.00053,
  4002. 0.0011871,
  4003. -0.00092
  4004. ],
  4005. "rotation":[
  4006. 0,
  4007. 0.1052064,
  4008. 0,
  4009. -0.9944504
  4010. ],
  4011. "scale":[
  4012. 0.25,
  4013. 0.4,
  4014. 0.4
  4015. ],
  4016. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-SC_Prop_Construction_Beams-copy.lm",
  4017. "enableRender":true,
  4018. "materials":[
  4019. {
  4020. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  4021. }
  4022. ]
  4023. },
  4024. "components":[],
  4025. "child":[]
  4026. }
  4027. ]
  4028. },
  4029. {
  4030. "type":"Sprite3D",
  4031. "props":{
  4032. "name":"SliderBoost_0",
  4033. "active":true,
  4034. "isStatic":false,
  4035. "layer":0,
  4036. "position":[
  4037. 0.15,
  4038. -0.017,
  4039. 0.34
  4040. ],
  4041. "rotation":[
  4042. 0,
  4043. 0,
  4044. 0,
  4045. -1
  4046. ],
  4047. "scale":[
  4048. 0.9,
  4049. 0.7,
  4050. 0.7
  4051. ]
  4052. },
  4053. "components":[],
  4054. "child":[
  4055. {
  4056. "type":"MeshSprite3D",
  4057. "props":{
  4058. "name":"panel_downslip",
  4059. "active":true,
  4060. "isStatic":false,
  4061. "layer":0,
  4062. "position":[
  4063. 0,
  4064. 0.0013,
  4065. -0.0142
  4066. ],
  4067. "rotation":[
  4068. 0,
  4069. 0.7071067,
  4070. 0,
  4071. -0.7071069
  4072. ],
  4073. "scale":[
  4074. 0.25,
  4075. 0.4615,
  4076. 0.4615001
  4077. ],
  4078. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-BoostArrow-copy-copy.lm",
  4079. "enableRender":true,
  4080. "materials":[
  4081. {
  4082. "path":"Assets/Scenes/Materials/scene_mat/scene_yellow.lmat"
  4083. }
  4084. ]
  4085. },
  4086. "components":[
  4087. {
  4088. "type":"PhysicsCollider",
  4089. "restitution":0,
  4090. "friction":0.5,
  4091. "rollingFriction":0,
  4092. "shapes":[
  4093. {
  4094. "type":"BoxColliderShape",
  4095. "center":[
  4096. 0,
  4097. 0,
  4098. 5.960464E-08
  4099. ],
  4100. "size":[
  4101. 0.09999999,
  4102. 2.220446E-18,
  4103. 0.09999999
  4104. ]
  4105. },
  4106. {
  4107. "type":"MeshColliderShape",
  4108. "mesh":"Assets/Allmodel/Pattern3/Pattern3-BoostArrow.lm"
  4109. }
  4110. ],
  4111. "isTrigger":false
  4112. }
  4113. ],
  4114. "child":[]
  4115. },
  4116. {
  4117. "type":"MeshSprite3D",
  4118. "props":{
  4119. "name":"box_Board",
  4120. "active":true,
  4121. "isStatic":false,
  4122. "layer":0,
  4123. "position":[
  4124. 0,
  4125. 0,
  4126. 0
  4127. ],
  4128. "rotation":[
  4129. 0,
  4130. 0,
  4131. 0,
  4132. -1
  4133. ],
  4134. "scale":[
  4135. 1.5,
  4136. 1.5,
  4137. 1.5
  4138. ],
  4139. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-SliderBoost.lm",
  4140. "enableRender":true,
  4141. "materials":[
  4142. {
  4143. "path":"Assets/Scenes/Materials/scene_mat/scene_orange.lmat"
  4144. }
  4145. ]
  4146. },
  4147. "components":[
  4148. {
  4149. "type":"PhysicsCollider",
  4150. "restitution":0,
  4151. "friction":0.5,
  4152. "rollingFriction":0,
  4153. "shapes":[
  4154. {
  4155. "type":"BoxColliderShape",
  4156. "center":[
  4157. -7.064255E-09,
  4158. 0.01264606,
  4159. 0
  4160. ],
  4161. "size":[
  4162. 0.0311456,
  4163. 0.008187335,
  4164. 0.005852965
  4165. ]
  4166. },
  4167. {
  4168. "type":"MeshColliderShape",
  4169. "mesh":"Assets/Allmodel/Pattern3/Pattern3-SliderBoost.lm"
  4170. }
  4171. ],
  4172. "isTrigger":false
  4173. }
  4174. ],
  4175. "child":[
  4176. {
  4177. "type":"Sprite3D",
  4178. "props":{
  4179. "name":"child_pos",
  4180. "active":true,
  4181. "isStatic":false,
  4182. "layer":0,
  4183. "position":[
  4184. 0,
  4185. 0.0165,
  4186. 0
  4187. ],
  4188. "rotation":[
  4189. 0,
  4190. 0,
  4191. 0,
  4192. -1
  4193. ],
  4194. "scale":[
  4195. 1,
  4196. 1,
  4197. 1
  4198. ]
  4199. },
  4200. "components":[],
  4201. "child":[]
  4202. }
  4203. ]
  4204. }
  4205. ]
  4206. },
  4207. {
  4208. "type":"Sprite3D",
  4209. "props":{
  4210. "name":"ObstacleBoost_0",
  4211. "active":true,
  4212. "isStatic":false,
  4213. "layer":0,
  4214. "position":[
  4215. -0.15,
  4216. -0.022,
  4217. 1.125
  4218. ],
  4219. "rotation":[
  4220. 0,
  4221. 0,
  4222. 0,
  4223. -1
  4224. ],
  4225. "scale":[
  4226. 1.3,
  4227. 1,
  4228. 1
  4229. ]
  4230. },
  4231. "components":[],
  4232. "child":[
  4233. {
  4234. "type":"MeshSprite3D",
  4235. "props":{
  4236. "name":"BoostArrow",
  4237. "active":true,
  4238. "isStatic":false,
  4239. "layer":0,
  4240. "position":[
  4241. 0,
  4242. 0.007,
  4243. -0.0201
  4244. ],
  4245. "rotation":[
  4246. 0,
  4247. 0.7071067,
  4248. 0,
  4249. -0.7071069
  4250. ],
  4251. "scale":[
  4252. 0.22,
  4253. 0.35,
  4254. 0.3500001
  4255. ],
  4256. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-BoostArrow-copy-copy-copy.lm",
  4257. "enableRender":true,
  4258. "materials":[
  4259. {
  4260. "path":"Assets/Scenes/Materials/scene_mat/scene_yellow.lmat"
  4261. }
  4262. ]
  4263. },
  4264. "components":[],
  4265. "child":[]
  4266. },
  4267. {
  4268. "type":"MeshSprite3D",
  4269. "props":{
  4270. "name":"box_Surmount",
  4271. "active":true,
  4272. "isStatic":false,
  4273. "layer":0,
  4274. "position":[
  4275. 0,
  4276. 0,
  4277. 0
  4278. ],
  4279. "rotation":[
  4280. 0,
  4281. 0.707049,
  4282. 0,
  4283. -0.7071645
  4284. ],
  4285. "scale":[
  4286. 0.3,
  4287. 0.3,
  4288. 0.5
  4289. ],
  4290. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-MeshCollider.lm",
  4291. "enableRender":true,
  4292. "materials":[
  4293. {
  4294. "path":"Assets/Scenes/Materials/scene_mat/scene_orange.lmat"
  4295. }
  4296. ]
  4297. },
  4298. "components":[
  4299. {
  4300. "type":"PhysicsCollider",
  4301. "restitution":0,
  4302. "friction":0.5,
  4303. "rollingFriction":0,
  4304. "shapes":[
  4305. {
  4306. "type":"BoxColliderShape",
  4307. "center":[
  4308. 0,
  4309. 0.03352647,
  4310. 0
  4311. ],
  4312. "size":[
  4313. 0.0631074,
  4314. 0.06705295,
  4315. 0.0719316
  4316. ]
  4317. },
  4318. {
  4319. "type":"MeshColliderShape",
  4320. "mesh":"Assets/Allmodel/Pattern3/Pattern3-MeshCollider.lm"
  4321. }
  4322. ],
  4323. "isTrigger":false
  4324. }
  4325. ],
  4326. "child":[]
  4327. }
  4328. ]
  4329. },
  4330. {
  4331. "type":"Sprite3D",
  4332. "props":{
  4333. "name":"ObstacleBoost_1",
  4334. "active":true,
  4335. "isStatic":false,
  4336. "layer":0,
  4337. "position":[
  4338. 0.035,
  4339. -0.017,
  4340. 0.675
  4341. ],
  4342. "rotation":[
  4343. 0,
  4344. 0,
  4345. 0,
  4346. -1
  4347. ],
  4348. "scale":[
  4349. 1.3,
  4350. 1,
  4351. 1
  4352. ]
  4353. },
  4354. "components":[],
  4355. "child":[
  4356. {
  4357. "type":"MeshSprite3D",
  4358. "props":{
  4359. "name":"BoostArrow 1",
  4360. "active":true,
  4361. "isStatic":false,
  4362. "layer":0,
  4363. "position":[
  4364. 0,
  4365. 0.002,
  4366. -0.0207
  4367. ],
  4368. "rotation":[
  4369. 0,
  4370. 0.7071066,
  4371. 0,
  4372. -0.7071069
  4373. ],
  4374. "scale":[
  4375. 0.23,
  4376. 0.3028252,
  4377. 0.3028254
  4378. ],
  4379. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-BoostArrow-copy-copy-copy-copy.lm",
  4380. "enableRender":true,
  4381. "materials":[
  4382. {
  4383. "path":"Assets/Scenes/Materials/scene_mat/scene_yellow.lmat"
  4384. }
  4385. ]
  4386. },
  4387. "components":[],
  4388. "child":[]
  4389. },
  4390. {
  4391. "type":"MeshSprite3D",
  4392. "props":{
  4393. "name":"box_Surmount",
  4394. "active":true,
  4395. "isStatic":false,
  4396. "layer":0,
  4397. "position":[
  4398. 0,
  4399. 0,
  4400. 0
  4401. ],
  4402. "rotation":[
  4403. 0,
  4404. 0,
  4405. 0,
  4406. -1
  4407. ],
  4408. "scale":[
  4409. 1,
  4410. 1,
  4411. 1
  4412. ],
  4413. "meshPath":"Assets/Allmodel/Pattern3/Pattern3-MeshCollider-copy.lm",
  4414. "enableRender":true,
  4415. "materials":[
  4416. {
  4417. "path":"Assets/Scenes/Materials/scene_mat/scene_orange.lmat"
  4418. }
  4419. ]
  4420. },
  4421. "components":[
  4422. {
  4423. "type":"PhysicsCollider",
  4424. "restitution":0,
  4425. "friction":0.5,
  4426. "rollingFriction":0,
  4427. "shapes":[
  4428. {
  4429. "type":"BoxColliderShape",
  4430. "center":[
  4431. -7.171184E-08,
  4432. 0.006437616,
  4433. 7.450581E-09
  4434. ],
  4435. "size":[
  4436. 0.03096215,
  4437. 0.01287523,
  4438. 0.015832
  4439. ]
  4440. },
  4441. {
  4442. "type":"MeshColliderShape",
  4443. "mesh":"Assets/Allmodel/Pattern3/Pattern3-MeshCollider.lm"
  4444. }
  4445. ],
  4446. "isTrigger":false
  4447. }
  4448. ],
  4449. "child":[]
  4450. }
  4451. ]
  4452. }
  4453. ]
  4454. },
  4455. {
  4456. "type":"Sprite3D",
  4457. "props":{
  4458. "name":"Spawns",
  4459. "active":true,
  4460. "isStatic":false,
  4461. "layer":0,
  4462. "position":[
  4463. 0,
  4464. 0,
  4465. 0
  4466. ],
  4467. "rotation":[
  4468. 0,
  4469. 0,
  4470. 0,
  4471. -1
  4472. ],
  4473. "scale":[
  4474. 1,
  4475. 1,
  4476. 1
  4477. ]
  4478. },
  4479. "components":[],
  4480. "child":[
  4481. {
  4482. "type":"Sprite3D",
  4483. "props":{
  4484. "name":"Spawn1",
  4485. "active":true,
  4486. "isStatic":false,
  4487. "layer":0,
  4488. "position":[
  4489. -0.163,
  4490. -0.01,
  4491. 0.29
  4492. ],
  4493. "rotation":[
  4494. 0,
  4495. 0,
  4496. 0,
  4497. -1
  4498. ],
  4499. "scale":[
  4500. 1,
  4501. 1,
  4502. 1
  4503. ]
  4504. },
  4505. "components":[],
  4506. "child":[]
  4507. },
  4508. {
  4509. "type":"Sprite3D",
  4510. "props":{
  4511. "name":"Spawn2",
  4512. "active":true,
  4513. "isStatic":false,
  4514. "layer":0,
  4515. "position":[
  4516. 0.04,
  4517. -0.005,
  4518. 0.728
  4519. ],
  4520. "rotation":[
  4521. 0,
  4522. 0,
  4523. 0,
  4524. -1
  4525. ],
  4526. "scale":[
  4527. 1,
  4528. 1,
  4529. 1
  4530. ]
  4531. },
  4532. "components":[],
  4533. "child":[]
  4534. },
  4535. {
  4536. "type":"Sprite3D",
  4537. "props":{
  4538. "name":"Spawn3",
  4539. "active":true,
  4540. "isStatic":false,
  4541. "layer":0,
  4542. "position":[
  4543. -0.15,
  4544. -0.01,
  4545. 0.878
  4546. ],
  4547. "rotation":[
  4548. 0,
  4549. 0,
  4550. 0,
  4551. -1
  4552. ],
  4553. "scale":[
  4554. 1,
  4555. 1,
  4556. 1
  4557. ]
  4558. },
  4559. "components":[],
  4560. "child":[]
  4561. }
  4562. ]
  4563. }
  4564. ]
  4565. }
  4566. }