Model0.lh 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. {
  2. "version":"LAYAHIERARCHY:01",
  3. "data":{
  4. "type":"Sprite3D",
  5. "props":{
  6. "name":"Model0",
  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. 1,
  23. 1,
  24. 1
  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_front_0",
  59. "active":true,
  60. "isStatic":false,
  61. "layer":0,
  62. "position":[
  63. 0,
  64. -63.5,
  65. 4
  66. ],
  67. "rotation":[
  68. 0,
  69. 0,
  70. 0,
  71. -1
  72. ],
  73. "scale":[
  74. 8.5,
  75. 25,
  76. 3.25
  77. ],
  78. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-Building 0.lm",
  79. "enableRender":true,
  80. "materials":[
  81. {
  82. "path":"Assets/Scenes/Materials/scene_mat/Build_1.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. 0,
  100. 1.27,
  101. 0
  102. ],
  103. "size":[
  104. 2.5654,
  105. 2.54,
  106. 2.5654
  107. ]
  108. },
  109. {
  110. "type":"MeshColliderShape",
  111. "mesh":"Assets/Allmodel/Pattern0/Pattern0-Building 0.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,
  127. 2.537,
  128. 1.1
  129. ],
  130. "rotation":[
  131. 0,
  132. 0,
  133. 0,
  134. -1
  135. ],
  136. "scale":[
  137. 1,
  138. 1,
  139. 1
  140. ]
  141. },
  142. "components":[],
  143. "child":[]
  144. }
  145. ]
  146. },
  147. {
  148. "type":"MeshSprite3D",
  149. "props":{
  150. "name":"build_front_1",
  151. "active":true,
  152. "isStatic":false,
  153. "layer":0,
  154. "position":[
  155. -3,
  156. -50,
  157. 87.073
  158. ],
  159. "rotation":[
  160. 0,
  161. 0,
  162. 0,
  163. -1
  164. ],
  165. "scale":[
  166. 5,
  167. 21,
  168. 10.1479
  169. ],
  170. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-Building 6.lm",
  171. "enableRender":true,
  172. "materials":[
  173. {
  174. "path":"Assets/Scenes/Materials/scene_mat/Build_1.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. 1.27,
  193. 0
  194. ],
  195. "size":[
  196. 2.5654,
  197. 2.54,
  198. 2.5654
  199. ]
  200. },
  201. {
  202. "type":"MeshColliderShape",
  203. "mesh":"Assets/Allmodel/Pattern0/Pattern0-Building 6.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,
  219. 2.54,
  220. 1.203
  221. ],
  222. "rotation":[
  223. 0,
  224. 0,
  225. 0,
  226. -1
  227. ],
  228. "scale":[
  229. 1.7,
  230. 1.190476,
  231. 0.4642857
  232. ]
  233. },
  234. "components":[],
  235. "child":[]
  236. }
  237. ]
  238. },
  239. {
  240. "type":"MeshSprite3D",
  241. "props":{
  242. "name":"build_front_2",
  243. "active":true,
  244. "isStatic":false,
  245. "layer":0,
  246. "position":[
  247. 0,
  248. -79.5,
  249. 120.5
  250. ],
  251. "rotation":[
  252. 0,
  253. 0.3826834,
  254. 0,
  255. -0.9238796
  256. ],
  257. "scale":[
  258. 6,
  259. 32,
  260. 9
  261. ],
  262. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-Building 7.lm",
  263. "enableRender":true,
  264. "materials":[
  265. {
  266. "path":"Assets/Scenes/Materials/scene_mat/Build_3.lmat"
  267. },
  268. {
  269. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  270. }
  271. ]
  272. },
  273. "components":[
  274. {
  275. "type":"PhysicsCollider",
  276. "restitution":0,
  277. "friction":0.5,
  278. "rollingFriction":0,
  279. "shapes":[
  280. {
  281. "type":"BoxColliderShape",
  282. "center":[
  283. 0,
  284. 1.27,
  285. 0
  286. ],
  287. "size":[
  288. 2.5654,
  289. 2.54,
  290. 2.5654
  291. ]
  292. },
  293. {
  294. "type":"MeshColliderShape",
  295. "mesh":"Assets/Allmodel/Pattern0/Pattern0-Building 7.lm"
  296. }
  297. ],
  298. "isTrigger":false
  299. }
  300. ],
  301. "child":[
  302. {
  303. "type":"Sprite3D",
  304. "props":{
  305. "name":"child_pos",
  306. "active":true,
  307. "isStatic":false,
  308. "layer":0,
  309. "position":[
  310. 0,
  311. 2.5399,
  312. 1.19
  313. ],
  314. "rotation":[
  315. 0,
  316. 0,
  317. 0,
  318. -1
  319. ],
  320. "scale":[
  321. 1.416667,
  322. 0.78125,
  323. 0.3611111
  324. ]
  325. },
  326. "components":[],
  327. "child":[]
  328. }
  329. ]
  330. },
  331. {
  332. "type":"MeshSprite3D",
  333. "props":{
  334. "name":"build_frontleft_0",
  335. "active":true,
  336. "isStatic":false,
  337. "layer":0,
  338. "position":[
  339. -4,
  340. -50,
  341. 29
  342. ],
  343. "rotation":[
  344. 0,
  345. 0.7071068,
  346. 0,
  347. -0.7071068
  348. ],
  349. "scale":[
  350. 13,
  351. 20,
  352. 5.500004
  353. ],
  354. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-Building 2.lm",
  355. "enableRender":true,
  356. "materials":[
  357. {
  358. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  359. },
  360. {
  361. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  362. }
  363. ]
  364. },
  365. "components":[
  366. {
  367. "type":"PhysicsCollider",
  368. "restitution":0,
  369. "friction":0.5,
  370. "rollingFriction":0,
  371. "shapes":[
  372. {
  373. "type":"BoxColliderShape",
  374. "center":[
  375. 0,
  376. 1.27,
  377. 0
  378. ],
  379. "size":[
  380. 2.565401,
  381. 2.54,
  382. 2.565401
  383. ]
  384. },
  385. {
  386. "type":"MeshColliderShape",
  387. "mesh":"Assets/Allmodel/Pattern0/Pattern0-Building 2.lm"
  388. }
  389. ],
  390. "isTrigger":false
  391. }
  392. ],
  393. "child":[
  394. {
  395. "type":"Sprite3D",
  396. "props":{
  397. "name":"child_pos",
  398. "active":true,
  399. "isStatic":false,
  400. "layer":0,
  401. "position":[
  402. 1.176,
  403. 2.538,
  404. 0
  405. ],
  406. "rotation":[
  407. 0,
  408. 0,
  409. 0,
  410. -1
  411. ],
  412. "scale":[
  413. 0.6538461,
  414. 1.25,
  415. 0.5909091
  416. ]
  417. },
  418. "components":[],
  419. "child":[]
  420. }
  421. ]
  422. },
  423. {
  424. "type":"MeshSprite3D",
  425. "props":{
  426. "name":"build_frontleft_1",
  427. "active":true,
  428. "isStatic":false,
  429. "layer":0,
  430. "position":[
  431. -7.5,
  432. -9,
  433. 59.18
  434. ],
  435. "rotation":[
  436. 0,
  437. 0,
  438. 0,
  439. -1
  440. ],
  441. "scale":[
  442. 5,
  443. 3,
  444. 12.358
  445. ],
  446. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-Building 6 (1).lm",
  447. "enableRender":true,
  448. "materials":[
  449. {
  450. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  451. },
  452. {
  453. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  454. }
  455. ]
  456. },
  457. "components":[
  458. {
  459. "type":"PhysicsCollider",
  460. "restitution":0,
  461. "friction":0.5,
  462. "rollingFriction":0,
  463. "shapes":[
  464. {
  465. "type":"BoxColliderShape",
  466. "center":[
  467. 0,
  468. 1.27,
  469. 0
  470. ],
  471. "size":[
  472. 2.5654,
  473. 2.54,
  474. 2.5654
  475. ]
  476. },
  477. {
  478. "type":"MeshColliderShape",
  479. "mesh":"Assets/Allmodel/Pattern0/Pattern0-Building 6 (1).lm"
  480. }
  481. ],
  482. "isTrigger":false
  483. }
  484. ],
  485. "child":[
  486. {
  487. "type":"Sprite3D",
  488. "props":{
  489. "name":"child_pos",
  490. "active":true,
  491. "isStatic":false,
  492. "layer":0,
  493. "position":[
  494. 0,
  495. 2.57,
  496. 1.116
  497. ],
  498. "rotation":[
  499. 0,
  500. 0,
  501. 0,
  502. -1
  503. ],
  504. "scale":[
  505. 1.7,
  506. 1.190476,
  507. 0.4642857
  508. ]
  509. },
  510. "components":[],
  511. "child":[]
  512. }
  513. ]
  514. },
  515. {
  516. "type":"MeshSprite3D",
  517. "props":{
  518. "name":"build_frontright_0",
  519. "active":true,
  520. "isStatic":false,
  521. "layer":0,
  522. "position":[
  523. 16.5,
  524. -56.26,
  525. 59
  526. ],
  527. "rotation":[
  528. 0,
  529. 0,
  530. 0,
  531. -1
  532. ],
  533. "scale":[
  534. 3,
  535. 28.165,
  536. 6
  537. ],
  538. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-Building 3.lm",
  539. "enableRender":true,
  540. "materials":[
  541. {
  542. "path":"Assets/Scenes/Materials/scene_mat/Build_3.lmat"
  543. },
  544. {
  545. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  546. }
  547. ]
  548. },
  549. "components":[
  550. {
  551. "type":"PhysicsCollider",
  552. "restitution":0,
  553. "friction":0.5,
  554. "rollingFriction":0,
  555. "shapes":[
  556. {
  557. "type":"BoxColliderShape",
  558. "center":[
  559. 0,
  560. 1.27,
  561. 0
  562. ],
  563. "size":[
  564. 2.5654,
  565. 2.54,
  566. 2.5654
  567. ]
  568. },
  569. {
  570. "type":"MeshColliderShape",
  571. "mesh":"Assets/Allmodel/Pattern0/Pattern0-Building 3.lm"
  572. }
  573. ],
  574. "isTrigger":false
  575. }
  576. ],
  577. "child":[
  578. {
  579. "type":"Sprite3D",
  580. "props":{
  581. "name":"child_pos",
  582. "active":true,
  583. "isStatic":false,
  584. "layer":0,
  585. "position":[
  586. 0,
  587. 2.54,
  588. 1.216
  589. ],
  590. "rotation":[
  591. 0,
  592. 0,
  593. 0,
  594. -1
  595. ],
  596. "scale":[
  597. 2.833333,
  598. 1.162791,
  599. 0.5416667
  600. ]
  601. },
  602. "components":[],
  603. "child":[]
  604. }
  605. ]
  606. },
  607. {
  608. "type":"MeshSprite3D",
  609. "props":{
  610. "name":"build_frontright_1",
  611. "active":true,
  612. "isStatic":false,
  613. "layer":0,
  614. "position":[
  615. 7,
  616. -50,
  617. 27
  618. ],
  619. "rotation":[
  620. 0,
  621. 0,
  622. 0,
  623. -1
  624. ],
  625. "scale":[
  626. 5,
  627. 17.5,
  628. 6
  629. ],
  630. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-Building 5.lm",
  631. "enableRender":true,
  632. "materials":[
  633. {
  634. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  635. },
  636. {
  637. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  638. }
  639. ]
  640. },
  641. "components":[
  642. {
  643. "type":"PhysicsCollider",
  644. "restitution":0,
  645. "friction":0.5,
  646. "rollingFriction":0,
  647. "shapes":[
  648. {
  649. "type":"BoxColliderShape",
  650. "center":[
  651. 0,
  652. 1.27,
  653. 0
  654. ],
  655. "size":[
  656. 2.5654,
  657. 2.54,
  658. 2.5654
  659. ]
  660. },
  661. {
  662. "type":"MeshColliderShape",
  663. "mesh":"Assets/Allmodel/Pattern0/Pattern0-Building 5.lm"
  664. }
  665. ],
  666. "isTrigger":false
  667. }
  668. ],
  669. "child":[
  670. {
  671. "type":"Sprite3D",
  672. "props":{
  673. "name":"child_pos",
  674. "active":true,
  675. "isStatic":false,
  676. "layer":0,
  677. "position":[
  678. 0,
  679. 2.533,
  680. 1.259
  681. ],
  682. "rotation":[
  683. 0,
  684. 0,
  685. 0,
  686. -1
  687. ],
  688. "scale":[
  689. 1.7,
  690. 1.428572,
  691. 0.9285713
  692. ]
  693. },
  694. "components":[],
  695. "child":[]
  696. }
  697. ]
  698. },
  699. {
  700. "type":"MeshSprite3D",
  701. "props":{
  702. "name":"build_frontright_2",
  703. "active":true,
  704. "isStatic":false,
  705. "layer":0,
  706. "position":[
  707. 7,
  708. -50,
  709. 70.273
  710. ],
  711. "rotation":[
  712. 0,
  713. 0,
  714. 0,
  715. -1
  716. ],
  717. "scale":[
  718. 5,
  719. 17.5,
  720. 8.743
  721. ],
  722. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-Building 5 (1).lm",
  723. "enableRender":true,
  724. "materials":[
  725. {
  726. "path":"Assets/Scenes/Materials/scene_mat/Build_2.lmat"
  727. },
  728. {
  729. "path":"Assets/Scenes/Materials/scene_mat/Roof.lmat"
  730. }
  731. ]
  732. },
  733. "components":[
  734. {
  735. "type":"PhysicsCollider",
  736. "restitution":0,
  737. "friction":0.5,
  738. "rollingFriction":0,
  739. "shapes":[
  740. {
  741. "type":"BoxColliderShape",
  742. "center":[
  743. 0,
  744. 1.27,
  745. 0
  746. ],
  747. "size":[
  748. 2.5654,
  749. 2.54,
  750. 2.5654
  751. ]
  752. },
  753. {
  754. "type":"MeshColliderShape",
  755. "mesh":"Assets/Allmodel/Pattern0/Pattern0-Building 5 (1).lm"
  756. }
  757. ],
  758. "isTrigger":false
  759. }
  760. ],
  761. "child":[
  762. {
  763. "type":"Sprite3D",
  764. "props":{
  765. "name":"child_pos",
  766. "active":true,
  767. "isStatic":false,
  768. "layer":0,
  769. "position":[
  770. 0,
  771. 2.536,
  772. 1.171
  773. ],
  774. "rotation":[
  775. 0,
  776. 0,
  777. 0,
  778. -1
  779. ],
  780. "scale":[
  781. 1.7,
  782. 1.428572,
  783. 0.9285713
  784. ]
  785. },
  786. "components":[],
  787. "child":[]
  788. }
  789. ]
  790. },
  791. {
  792. "type":"MeshSprite3D",
  793. "props":{
  794. "name":"build_frontright_3",
  795. "active":true,
  796. "isStatic":false,
  797. "layer":0,
  798. "position":[
  799. 16.5,
  800. 15,
  801. 58
  802. ],
  803. "rotation":[
  804. 0,
  805. -0.7071068,
  806. 0,
  807. -0.7071068
  808. ],
  809. "scale":[
  810. 0.7291669,
  811. 0.7,
  812. 0.7291667
  813. ],
  814. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-SC_Prop_Roof_Entrance.lm",
  815. "enableRender":true,
  816. "materials":[
  817. {
  818. "path":"Assets/Scenes/Materials/scene_mat/roof_room.lmat"
  819. }
  820. ]
  821. },
  822. "components":[
  823. {
  824. "type":"PhysicsCollider",
  825. "restitution":0,
  826. "friction":0.5,
  827. "rollingFriction":0,
  828. "shapes":[
  829. {
  830. "type":"BoxColliderShape",
  831. "center":[
  832. 0,
  833. 2.863078,
  834. 2.384186E-07
  835. ],
  836. "size":[
  837. 9.92299,
  838. 5.726157,
  839. 9.922994
  840. ]
  841. },
  842. {
  843. "type":"MeshColliderShape",
  844. "mesh":"Assets/Allmodel/Pattern0/Pattern0-SC_Prop_Roof_Entrance.lm"
  845. }
  846. ],
  847. "isTrigger":false
  848. }
  849. ],
  850. "child":[
  851. {
  852. "type":"Sprite3D",
  853. "props":{
  854. "name":"child_pos",
  855. "active":true,
  856. "isStatic":false,
  857. "layer":0,
  858. "position":[
  859. -4.7,
  860. 5.75,
  861. 0
  862. ],
  863. "rotation":[
  864. 0,
  865. 0,
  866. 0,
  867. -1
  868. ],
  869. "scale":[
  870. 8.5,
  871. 25,
  872. 3.25
  873. ]
  874. },
  875. "components":[],
  876. "child":[]
  877. }
  878. ]
  879. }
  880. ]
  881. },
  882. {
  883. "type":"Sprite3D",
  884. "props":{
  885. "name":"END",
  886. "active":true,
  887. "isStatic":false,
  888. "layer":0,
  889. "position":[
  890. 0,
  891. 0,
  892. 139.4
  893. ],
  894. "rotation":[
  895. 0,
  896. 0,
  897. 0,
  898. -1
  899. ],
  900. "scale":[
  901. 1,
  902. 1,
  903. 1
  904. ]
  905. },
  906. "components":[],
  907. "child":[]
  908. },
  909. {
  910. "type":"Sprite3D",
  911. "props":{
  912. "name":"Props",
  913. "active":true,
  914. "isStatic":false,
  915. "layer":0,
  916. "position":[
  917. 0,
  918. 0,
  919. 0
  920. ],
  921. "rotation":[
  922. 0,
  923. 0,
  924. 0,
  925. -1
  926. ],
  927. "scale":[
  928. 1,
  929. 1,
  930. 1
  931. ]
  932. },
  933. "components":[],
  934. "child":[
  935. {
  936. "type":"Sprite3D",
  937. "props":{
  938. "name":"grilling_0",
  939. "active":true,
  940. "isStatic":false,
  941. "layer":0,
  942. "position":[
  943. -7.5,
  944. 0,
  945. 28
  946. ],
  947. "rotation":[
  948. 0,
  949. 0.7071068,
  950. 0,
  951. -0.7071068
  952. ],
  953. "scale":[
  954. 0.7000005,
  955. 0.7,
  956. 0.7000005
  957. ]
  958. },
  959. "components":[],
  960. "child":[
  961. {
  962. "type":"MeshSprite3D",
  963. "props":{
  964. "name":"irongauze",
  965. "active":true,
  966. "isStatic":false,
  967. "layer":0,
  968. "position":[
  969. 0,
  970. 1.18,
  971. 0
  972. ],
  973. "rotation":[
  974. 0.5,
  975. 0.5,
  976. 0.4999998,
  977. -0.5000002
  978. ],
  979. "scale":[
  980. 100,
  981. 1,
  982. 200
  983. ],
  984. "meshPath":"Assets/Models/iron gauze-iron gauze.lm",
  985. "enableRender":true,
  986. "materials":[
  987. {
  988. "path":"Assets/Models/iron mat.lmat"
  989. }
  990. ]
  991. },
  992. "components":[
  993. {
  994. "type":"PhysicsCollider",
  995. "restitution":0,
  996. "friction":0.5,
  997. "rollingFriction":0,
  998. "shapes":[
  999. {
  1000. "type":"BoxColliderShape",
  1001. "center":[
  1002. 0,
  1003. 6.64075E-11,
  1004. 0.01111413
  1005. ],
  1006. "size":[
  1007. 0.08000001,
  1008. 1.32815E-10,
  1009. 0.02222827
  1010. ]
  1011. },
  1012. {
  1013. "type":"MeshColliderShape",
  1014. "mesh":"Assets/Models/iron gauze-iron gauze.lm"
  1015. }
  1016. ],
  1017. "isTrigger":false
  1018. },
  1019. {
  1020. "type":"Animator",
  1021. "avatar":{
  1022. "path":"Assets/Models/iron gauze-irongauze-iron gauzeAvatar.lav",
  1023. "linkSprites":{}
  1024. },
  1025. "layers":[],
  1026. "cullingMode":0,
  1027. "playOnWake":true
  1028. }
  1029. ],
  1030. "child":[]
  1031. },
  1032. {
  1033. "type":"MeshSprite3D",
  1034. "props":{
  1035. "name":"Cube",
  1036. "active":true,
  1037. "isStatic":false,
  1038. "layer":0,
  1039. "position":[
  1040. 0,
  1041. 3,
  1042. -3.85
  1043. ],
  1044. "rotation":[
  1045. 0,
  1046. 0,
  1047. 0,
  1048. -1
  1049. ],
  1050. "scale":[
  1051. 0.3,
  1052. 7,
  1053. 0.3
  1054. ],
  1055. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-Cube.lm",
  1056. "enableRender":true,
  1057. "materials":[
  1058. {
  1059. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  1060. }
  1061. ]
  1062. },
  1063. "components":[],
  1064. "child":[]
  1065. },
  1066. {
  1067. "type":"MeshSprite3D",
  1068. "props":{
  1069. "name":"Cube (1)",
  1070. "active":true,
  1071. "isStatic":false,
  1072. "layer":0,
  1073. "position":[
  1074. 0,
  1075. 3,
  1076. 3.85
  1077. ],
  1078. "rotation":[
  1079. 0,
  1080. 0,
  1081. 0,
  1082. -1
  1083. ],
  1084. "scale":[
  1085. 0.3,
  1086. 7,
  1087. 0.3
  1088. ],
  1089. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-Cube (1).lm",
  1090. "enableRender":true,
  1091. "materials":[
  1092. {
  1093. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  1094. }
  1095. ]
  1096. },
  1097. "components":[],
  1098. "child":[]
  1099. },
  1100. {
  1101. "type":"Sprite3D",
  1102. "props":{
  1103. "name":"Sprite_form_frame 1",
  1104. "active":true,
  1105. "isStatic":false,
  1106. "layer":0,
  1107. "position":[
  1108. 0,
  1109. 3,
  1110. 0
  1111. ],
  1112. "rotation":[
  1113. 0,
  1114. 0.7071066,
  1115. 0,
  1116. -0.7071069
  1117. ],
  1118. "scale":[
  1119. 0.2,
  1120. 0.2,
  1121. 0.2
  1122. ]
  1123. },
  1124. "components":[],
  1125. "child":[]
  1126. },
  1127. {
  1128. "type":"Sprite3D",
  1129. "props":{
  1130. "name":"Sprite_form_frame 1 (1)",
  1131. "active":true,
  1132. "isStatic":false,
  1133. "layer":0,
  1134. "position":[
  1135. 0,
  1136. 2.5,
  1137. 0
  1138. ],
  1139. "rotation":[
  1140. 0,
  1141. 0.7071066,
  1142. 0,
  1143. -0.7071069
  1144. ],
  1145. "scale":[
  1146. 0.2,
  1147. 0.2,
  1148. 0.2
  1149. ]
  1150. },
  1151. "components":[],
  1152. "child":[]
  1153. },
  1154. {
  1155. "type":"Sprite3D",
  1156. "props":{
  1157. "name":"child_pos",
  1158. "active":true,
  1159. "isStatic":false,
  1160. "layer":0,
  1161. "position":[
  1162. 0,
  1163. 5.42,
  1164. 0
  1165. ],
  1166. "rotation":[
  1167. 0,
  1168. 0,
  1169. 0,
  1170. -1
  1171. ],
  1172. "scale":[
  1173. 1,
  1174. 1,
  1175. 1
  1176. ]
  1177. },
  1178. "components":[],
  1179. "child":[]
  1180. }
  1181. ]
  1182. },
  1183. {
  1184. "type":"Sprite3D",
  1185. "props":{
  1186. "name":"WallBoost_0",
  1187. "active":true,
  1188. "isStatic":false,
  1189. "layer":0,
  1190. "position":[
  1191. 3.15,
  1192. -1.5,
  1193. 40
  1194. ],
  1195. "rotation":[
  1196. 0,
  1197. 0,
  1198. 0,
  1199. -1
  1200. ],
  1201. "scale":[
  1202. -1,
  1203. 1,
  1204. 1
  1205. ]
  1206. },
  1207. "components":[],
  1208. "child":[
  1209. {
  1210. "type":"MeshSprite3D",
  1211. "props":{
  1212. "name":"child",
  1213. "active":true,
  1214. "isStatic":false,
  1215. "layer":0,
  1216. "position":[
  1217. -1.18,
  1218. -4.38,
  1219. 0
  1220. ],
  1221. "rotation":[
  1222. 0,
  1223. -0.7071066,
  1224. 0,
  1225. -0.7071069
  1226. ],
  1227. "scale":[
  1228. 1.5,
  1229. 1.5,
  1230. 1.5
  1231. ],
  1232. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-billboard_mesh.lm",
  1233. "enableRender":true,
  1234. "materials":[
  1235. {
  1236. "path":"Assets/Scenes/Materials/scene_mat/scene_orange.lmat"
  1237. }
  1238. ]
  1239. },
  1240. "components":[],
  1241. "child":[
  1242. {
  1243. "type":"MeshSprite3D",
  1244. "props":{
  1245. "name":"box_sidejump",
  1246. "active":true,
  1247. "isStatic":false,
  1248. "layer":0,
  1249. "position":[
  1250. 0,
  1251. 2.92,
  1252. 0.6200001
  1253. ],
  1254. "rotation":[
  1255. -3.474767E-07,
  1256. 0.7071068,
  1257. -0.7071067,
  1258. -1.591628E-07
  1259. ],
  1260. "scale":[
  1261. 0.4073336,
  1262. 0.1166667,
  1263. 0.2380001
  1264. ],
  1265. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-BoostArrow.lm",
  1266. "enableRender":true,
  1267. "materials":[
  1268. {
  1269. "path":"Assets/Scenes/Materials/scene_mat/scene_yellow.lmat"
  1270. }
  1271. ]
  1272. },
  1273. "components":[
  1274. {
  1275. "type":"PhysicsCollider",
  1276. "restitution":0,
  1277. "friction":0.5,
  1278. "rollingFriction":0,
  1279. "shapes":[
  1280. {
  1281. "type":"BoxColliderShape",
  1282. "center":[
  1283. 0,
  1284. 0,
  1285. 0
  1286. ],
  1287. "size":[
  1288. 10,
  1289. 1.21594E-06,
  1290. 9.999999
  1291. ]
  1292. },
  1293. {
  1294. "type":"MeshColliderShape",
  1295. "mesh":"Assets/Allmodel/Pattern0/Pattern0-BoostArrow.lm"
  1296. }
  1297. ],
  1298. "isTrigger":false
  1299. }
  1300. ],
  1301. "child":[]
  1302. }
  1303. ]
  1304. }
  1305. ]
  1306. },
  1307. {
  1308. "type":"Sprite3D",
  1309. "props":{
  1310. "name":"WallBoost_1",
  1311. "active":true,
  1312. "isStatic":false,
  1313. "layer":0,
  1314. "position":[
  1315. 12.63,
  1316. 5,
  1317. 59
  1318. ],
  1319. "rotation":[
  1320. 0,
  1321. 0,
  1322. 0,
  1323. -1
  1324. ],
  1325. "scale":[
  1326. 1,
  1327. 1,
  1328. 1
  1329. ]
  1330. },
  1331. "components":[],
  1332. "child":[
  1333. {
  1334. "type":"MeshSprite3D",
  1335. "props":{
  1336. "name":"child",
  1337. "active":true,
  1338. "isStatic":false,
  1339. "layer":0,
  1340. "position":[
  1341. -1.18,
  1342. -4.38,
  1343. 0
  1344. ],
  1345. "rotation":[
  1346. 0,
  1347. -0.7071066,
  1348. 0,
  1349. -0.7071069
  1350. ],
  1351. "scale":[
  1352. 1.5,
  1353. 1.5,
  1354. 1.5
  1355. ],
  1356. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-billboard_mesh-copy.lm",
  1357. "enableRender":true,
  1358. "materials":[
  1359. {
  1360. "path":"Assets/Scenes/Materials/scene_mat/scene_orange.lmat"
  1361. }
  1362. ]
  1363. },
  1364. "components":[],
  1365. "child":[
  1366. {
  1367. "type":"MeshSprite3D",
  1368. "props":{
  1369. "name":"box_sidejump",
  1370. "active":true,
  1371. "isStatic":false,
  1372. "layer":0,
  1373. "position":[
  1374. 0,
  1375. 2.92,
  1376. 0.6200001
  1377. ],
  1378. "rotation":[
  1379. -3.474767E-07,
  1380. 0.7071068,
  1381. -0.7071067,
  1382. -1.591628E-07
  1383. ],
  1384. "scale":[
  1385. 0.4073336,
  1386. 0.1166667,
  1387. 0.2380001
  1388. ],
  1389. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-BoostArrow-copy.lm",
  1390. "enableRender":true,
  1391. "materials":[
  1392. {
  1393. "path":"Assets/Scenes/Materials/scene_mat/scene_yellow.lmat"
  1394. }
  1395. ]
  1396. },
  1397. "components":[
  1398. {
  1399. "type":"PhysicsCollider",
  1400. "restitution":0,
  1401. "friction":0.5,
  1402. "rollingFriction":0,
  1403. "shapes":[
  1404. {
  1405. "type":"BoxColliderShape",
  1406. "center":[
  1407. 0,
  1408. 0,
  1409. 0
  1410. ],
  1411. "size":[
  1412. 10,
  1413. 1.21594E-06,
  1414. 9.999999
  1415. ]
  1416. },
  1417. {
  1418. "type":"MeshColliderShape",
  1419. "mesh":"Assets/Allmodel/Pattern0/Pattern0-BoostArrow.lm"
  1420. }
  1421. ],
  1422. "isTrigger":false
  1423. }
  1424. ],
  1425. "child":[]
  1426. }
  1427. ]
  1428. }
  1429. ]
  1430. },
  1431. {
  1432. "type":"Sprite3D",
  1433. "props":{
  1434. "name":"JumpBoost_0",
  1435. "active":true,
  1436. "isStatic":false,
  1437. "layer":0,
  1438. "position":[
  1439. 7,
  1440. 0,
  1441. 7
  1442. ],
  1443. "rotation":[
  1444. 0,
  1445. 0,
  1446. 0,
  1447. -1
  1448. ],
  1449. "scale":[
  1450. 1,
  1451. 1,
  1452. 1
  1453. ]
  1454. },
  1455. "components":[],
  1456. "child":[
  1457. {
  1458. "type":"MeshSprite3D",
  1459. "props":{
  1460. "name":"panel_jump",
  1461. "active":true,
  1462. "isStatic":false,
  1463. "layer":0,
  1464. "position":[
  1465. 0.064,
  1466. 1.027,
  1467. -1.451
  1468. ],
  1469. "rotation":[
  1470. 0.3007058,
  1471. 0,
  1472. 0,
  1473. -0.953717
  1474. ],
  1475. "scale":[
  1476. 2.1258,
  1477. 0.1245064,
  1478. 3.1193
  1479. ],
  1480. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-JumpBoost.lm",
  1481. "enableRender":true,
  1482. "materials":[
  1483. {
  1484. "path":"Assets/Scenes/Materials/scene_mat/scene_orange.lmat"
  1485. }
  1486. ]
  1487. },
  1488. "components":[
  1489. {
  1490. "type":"PhysicsCollider",
  1491. "restitution":0,
  1492. "friction":0.5,
  1493. "rollingFriction":0,
  1494. "shapes":[
  1495. {
  1496. "type":"BoxColliderShape",
  1497. "center":[
  1498. 0,
  1499. 0,
  1500. 0
  1501. ],
  1502. "size":[
  1503. 0.9999999,
  1504. 1.000002,
  1505. 1
  1506. ]
  1507. },
  1508. {
  1509. "type":"MeshColliderShape",
  1510. "mesh":"Assets/Allmodel/Pattern0/Pattern0-JumpBoost.lm"
  1511. }
  1512. ],
  1513. "isTrigger":false
  1514. }
  1515. ],
  1516. "child":[
  1517. {
  1518. "type":"MeshSprite3D",
  1519. "props":{
  1520. "name":"BoostArrow",
  1521. "active":true,
  1522. "isStatic":false,
  1523. "layer":0,
  1524. "position":[
  1525. 0.001881645,
  1526. 0.6369271,
  1527. 0.0005813438
  1528. ],
  1529. "rotation":[
  1530. 2.235174E-08,
  1531. 0.7071067,
  1532. 2.235174E-08,
  1533. -0.7071068
  1534. ],
  1535. "scale":[
  1536. 0.08014619,
  1537. 1.40555,
  1538. 0.08232194
  1539. ],
  1540. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-BoostArrow-copy-copy.lm",
  1541. "enableRender":true,
  1542. "materials":[
  1543. {
  1544. "path":"Assets/Scenes/Materials/scene_mat/scene_yellow.lmat"
  1545. }
  1546. ]
  1547. },
  1548. "components":[],
  1549. "child":[]
  1550. }
  1551. ]
  1552. },
  1553. {
  1554. "type":"MeshSprite3D",
  1555. "props":{
  1556. "name":"SC_Prop_Construction_Beams 1",
  1557. "active":true,
  1558. "isStatic":false,
  1559. "layer":0,
  1560. "position":[
  1561. -0.053,
  1562. 0.11871,
  1563. -0.092
  1564. ],
  1565. "rotation":[
  1566. 0,
  1567. 0.1052064,
  1568. 0,
  1569. -0.9944504
  1570. ],
  1571. "scale":[
  1572. 0.25,
  1573. 0.4,
  1574. 0.4
  1575. ],
  1576. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-SC_Prop_Construction_Beams.lm",
  1577. "enableRender":true,
  1578. "materials":[
  1579. {
  1580. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  1581. }
  1582. ]
  1583. },
  1584. "components":[],
  1585. "child":[]
  1586. }
  1587. ]
  1588. },
  1589. {
  1590. "type":"Sprite3D",
  1591. "props":{
  1592. "name":"JumpBoost_1",
  1593. "active":true,
  1594. "isStatic":false,
  1595. "layer":0,
  1596. "position":[
  1597. 0.5,
  1598. 3,
  1599. 97.5
  1600. ],
  1601. "rotation":[
  1602. 0,
  1603. 0,
  1604. 0,
  1605. -1
  1606. ],
  1607. "scale":[
  1608. 1,
  1609. 1,
  1610. 1
  1611. ]
  1612. },
  1613. "components":[],
  1614. "child":[
  1615. {
  1616. "type":"MeshSprite3D",
  1617. "props":{
  1618. "name":"panel_jump",
  1619. "active":true,
  1620. "isStatic":false,
  1621. "layer":0,
  1622. "position":[
  1623. 0.064,
  1624. 1.027,
  1625. -1.451
  1626. ],
  1627. "rotation":[
  1628. 0.3007058,
  1629. 0,
  1630. 0,
  1631. -0.953717
  1632. ],
  1633. "scale":[
  1634. 2.1258,
  1635. 0.1245064,
  1636. 3.1193
  1637. ],
  1638. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-JumpBoost.lm",
  1639. "enableRender":true,
  1640. "materials":[
  1641. {
  1642. "path":"Assets/Scenes/Materials/scene_mat/scene_orange.lmat"
  1643. }
  1644. ]
  1645. },
  1646. "components":[
  1647. {
  1648. "type":"PhysicsCollider",
  1649. "restitution":0,
  1650. "friction":0.5,
  1651. "rollingFriction":0,
  1652. "shapes":[
  1653. {
  1654. "type":"BoxColliderShape",
  1655. "center":[
  1656. 0,
  1657. 0,
  1658. 0
  1659. ],
  1660. "size":[
  1661. 0.9999999,
  1662. 1.000002,
  1663. 1
  1664. ]
  1665. },
  1666. {
  1667. "type":"MeshColliderShape",
  1668. "mesh":"Assets/Allmodel/Pattern0/Pattern0-JumpBoost.lm"
  1669. }
  1670. ],
  1671. "isTrigger":false
  1672. }
  1673. ],
  1674. "child":[
  1675. {
  1676. "type":"MeshSprite3D",
  1677. "props":{
  1678. "name":"BoostArrow",
  1679. "active":true,
  1680. "isStatic":false,
  1681. "layer":0,
  1682. "position":[
  1683. 0.001881645,
  1684. 0.6369271,
  1685. 0.0005813438
  1686. ],
  1687. "rotation":[
  1688. 2.235174E-08,
  1689. 0.7071067,
  1690. 2.235174E-08,
  1691. -0.7071068
  1692. ],
  1693. "scale":[
  1694. 0.08014619,
  1695. 1.40555,
  1696. 0.08232194
  1697. ],
  1698. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-BoostArrow-copy-copy.lm",
  1699. "enableRender":true,
  1700. "materials":[
  1701. {
  1702. "path":"Assets/Scenes/Materials/scene_mat/scene_yellow.lmat"
  1703. }
  1704. ]
  1705. },
  1706. "components":[],
  1707. "child":[]
  1708. }
  1709. ]
  1710. },
  1711. {
  1712. "type":"MeshSprite3D",
  1713. "props":{
  1714. "name":"SC_Prop_Construction_Beams 1",
  1715. "active":true,
  1716. "isStatic":false,
  1717. "layer":0,
  1718. "position":[
  1719. -0.053,
  1720. 0.11871,
  1721. -0.092
  1722. ],
  1723. "rotation":[
  1724. 0,
  1725. 0.1052064,
  1726. 0,
  1727. -0.9944504
  1728. ],
  1729. "scale":[
  1730. 0.25,
  1731. 0.4,
  1732. 0.4
  1733. ],
  1734. "meshPath":"Assets/Allmodel/Pattern0/Pattern0-SC_Prop_Construction_Beams.lm",
  1735. "enableRender":true,
  1736. "materials":[
  1737. {
  1738. "path":"Assets/Scenes/Materials/scene_mat/scene_gray.lmat"
  1739. }
  1740. ]
  1741. },
  1742. "components":[],
  1743. "child":[]
  1744. }
  1745. ]
  1746. }
  1747. ]
  1748. },
  1749. {
  1750. "type":"Sprite3D",
  1751. "props":{
  1752. "name":"Spawns",
  1753. "active":true,
  1754. "isStatic":false,
  1755. "layer":0,
  1756. "position":[
  1757. 0,
  1758. 0,
  1759. 0
  1760. ],
  1761. "rotation":[
  1762. 0,
  1763. 0,
  1764. 0,
  1765. -1
  1766. ],
  1767. "scale":[
  1768. 1,
  1769. 1,
  1770. 1
  1771. ]
  1772. },
  1773. "components":[],
  1774. "child":[
  1775. {
  1776. "type":"Sprite3D",
  1777. "props":{
  1778. "name":"Spawn1",
  1779. "active":true,
  1780. "isStatic":false,
  1781. "layer":0,
  1782. "position":[
  1783. -1.8,
  1784. 1,
  1785. 30
  1786. ],
  1787. "rotation":[
  1788. 0,
  1789. 0,
  1790. 0,
  1791. -1
  1792. ],
  1793. "scale":[
  1794. 1,
  1795. 1,
  1796. 1
  1797. ]
  1798. },
  1799. "components":[],
  1800. "child":[]
  1801. },
  1802. {
  1803. "type":"Sprite3D",
  1804. "props":{
  1805. "name":"Spawn2",
  1806. "active":true,
  1807. "isStatic":false,
  1808. "layer":0,
  1809. "position":[
  1810. 4,
  1811. -5,
  1812. 72.8
  1813. ],
  1814. "rotation":[
  1815. 0,
  1816. 0,
  1817. 0,
  1818. -1
  1819. ],
  1820. "scale":[
  1821. 1,
  1822. 1,
  1823. 1
  1824. ]
  1825. },
  1826. "components":[],
  1827. "child":[]
  1828. },
  1829. {
  1830. "type":"Sprite3D",
  1831. "props":{
  1832. "name":"Spawn3",
  1833. "active":true,
  1834. "isStatic":false,
  1835. "layer":0,
  1836. "position":[
  1837. -8.5,
  1838. -1,
  1839. 55.8
  1840. ],
  1841. "rotation":[
  1842. 0,
  1843. 0,
  1844. 0,
  1845. -1
  1846. ],
  1847. "scale":[
  1848. 1,
  1849. 1,
  1850. 1
  1851. ]
  1852. },
  1853. "components":[],
  1854. "child":[]
  1855. }
  1856. ]
  1857. }
  1858. ]
  1859. }
  1860. }