robot_arm_test1.prefab 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244
  1. {
  2. "ContainerEntity": {
  3. "Id": "Entity_[1146574390643]",
  4. "Name": "Level",
  5. "Components": {
  6. "Component_[10641544592923449938]": {
  7. "$type": "EditorInspectorComponent",
  8. "Id": 10641544592923449938
  9. },
  10. "Component_[12039882709170782873]": {
  11. "$type": "EditorOnlyEntityComponent",
  12. "Id": 12039882709170782873
  13. },
  14. "Component_[12265484671603697631]": {
  15. "$type": "EditorPendingCompositionComponent",
  16. "Id": 12265484671603697631
  17. },
  18. "Component_[14126657869720434043]": {
  19. "$type": "EditorEntitySortComponent",
  20. "Id": 14126657869720434043,
  21. "Child Entity Order": [
  22. "Entity_[1176639161715]",
  23. "Entity_[2927692801369]",
  24. "Entity_[7836840420697]",
  25. "Entity_[362842832291]"
  26. ]
  27. },
  28. "Component_[15230859088967841193]": {
  29. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  30. "Id": 15230859088967841193,
  31. "Parent Entity": ""
  32. },
  33. "Component_[16239496886950819870]": {
  34. "$type": "EditorDisabledCompositionComponent",
  35. "Id": 16239496886950819870
  36. },
  37. "Component_[5688118765544765547]": {
  38. "$type": "EditorEntityIconComponent",
  39. "Id": 5688118765544765547
  40. },
  41. "Component_[6545738857812235305]": {
  42. "$type": "SelectionComponent",
  43. "Id": 6545738857812235305
  44. },
  45. "Component_[7247035804068349658]": {
  46. "$type": "EditorPrefabComponent",
  47. "Id": 7247035804068349658
  48. },
  49. "Component_[9307224322037797205]": {
  50. "$type": "EditorLockComponent",
  51. "Id": 9307224322037797205
  52. },
  53. "Component_[9562516168917670048]": {
  54. "$type": "EditorVisibilityComponent",
  55. "Id": 9562516168917670048
  56. }
  57. }
  58. },
  59. "Entities": {
  60. "Entity_[1155164325235]": {
  61. "Id": "Entity_[1155164325235]",
  62. "Name": "Sun",
  63. "Components": {
  64. "Component_[10440557478882592717]": {
  65. "$type": "SelectionComponent",
  66. "Id": 10440557478882592717
  67. },
  68. "Component_[13620450453324765907]": {
  69. "$type": "EditorLockComponent",
  70. "Id": 13620450453324765907
  71. },
  72. "Component_[2134313378593666258]": {
  73. "$type": "EditorInspectorComponent",
  74. "Id": 2134313378593666258
  75. },
  76. "Component_[234010807770404186]": {
  77. "$type": "EditorVisibilityComponent",
  78. "Id": 234010807770404186
  79. },
  80. "Component_[2970359110423865725]": {
  81. "$type": "EditorEntityIconComponent",
  82. "Id": 2970359110423865725
  83. },
  84. "Component_[3722854130373041803]": {
  85. "$type": "EditorOnlyEntityComponent",
  86. "Id": 3722854130373041803
  87. },
  88. "Component_[5992533738676323195]": {
  89. "$type": "EditorDisabledCompositionComponent",
  90. "Id": 5992533738676323195
  91. },
  92. "Component_[7378860763541895402]": {
  93. "$type": "AZ::Render::EditorDirectionalLightComponent",
  94. "Id": 7378860763541895402,
  95. "Controller": {
  96. "Configuration": {
  97. "Intensity": 1.0,
  98. "CameraEntityId": "",
  99. "ShadowFilterMethod": 1
  100. }
  101. }
  102. },
  103. "Component_[7892834440890947578]": {
  104. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  105. "Id": 7892834440890947578,
  106. "Parent Entity": "Entity_[1176639161715]",
  107. "Transform Data": {
  108. "Translate": [
  109. 0.0,
  110. 0.0,
  111. 13.487043380737305
  112. ],
  113. "Rotate": [
  114. -76.13099670410156,
  115. -0.847000002861023,
  116. -15.8100004196167
  117. ]
  118. }
  119. },
  120. "Component_[8599729549570828259]": {
  121. "$type": "EditorEntitySortComponent",
  122. "Id": 8599729549570828259
  123. },
  124. "Component_[952797371922080273]": {
  125. "$type": "EditorPendingCompositionComponent",
  126. "Id": 952797371922080273
  127. }
  128. }
  129. },
  130. "Entity_[1159459292531]": {
  131. "Id": "Entity_[1159459292531]",
  132. "Name": "Ground",
  133. "Components": {
  134. "Component_[11701138785793981042]": {
  135. "$type": "SelectionComponent",
  136. "Id": 11701138785793981042
  137. },
  138. "Component_[12260880513256986252]": {
  139. "$type": "EditorEntityIconComponent",
  140. "Id": 12260880513256986252
  141. },
  142. "Component_[13711420870643673468]": {
  143. "$type": "EditorDisabledCompositionComponent",
  144. "Id": 13711420870643673468
  145. },
  146. "Component_[138002849734991713]": {
  147. "$type": "EditorOnlyEntityComponent",
  148. "Id": 138002849734991713
  149. },
  150. "Component_[16578565737331764849]": {
  151. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  152. "Id": 16578565737331764849,
  153. "Parent Entity": "Entity_[1176639161715]"
  154. },
  155. "Component_[16919232076966545697]": {
  156. "$type": "EditorInspectorComponent",
  157. "Id": 16919232076966545697
  158. },
  159. "Component_[5182430712893438093]": {
  160. "$type": "EditorMaterialComponent",
  161. "Id": 5182430712893438093
  162. },
  163. "Component_[5675108321710651991]": {
  164. "$type": "AZ::Render::EditorMeshComponent",
  165. "Id": 5675108321710651991,
  166. "Controller": {
  167. "Configuration": {
  168. "ModelAsset": {
  169. "assetId": {
  170. "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
  171. "subId": 277889906
  172. },
  173. "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
  174. }
  175. }
  176. }
  177. },
  178. "Component_[5681893399601237518]": {
  179. "$type": "EditorEntitySortComponent",
  180. "Id": 5681893399601237518
  181. },
  182. "Component_[592692962543397545]": {
  183. "$type": "EditorPendingCompositionComponent",
  184. "Id": 592692962543397545
  185. },
  186. "Component_[7090012899106946164]": {
  187. "$type": "EditorLockComponent",
  188. "Id": 7090012899106946164
  189. },
  190. "Component_[9410832619875640998]": {
  191. "$type": "EditorVisibilityComponent",
  192. "Id": 9410832619875640998
  193. }
  194. }
  195. },
  196. "Entity_[1163754259827]": {
  197. "Id": "Entity_[1163754259827]",
  198. "Name": "Camera",
  199. "Components": {
  200. "Component_[11895140916889160460]": {
  201. "$type": "EditorEntityIconComponent",
  202. "Id": 11895140916889160460
  203. },
  204. "Component_[16880285896855930892]": {
  205. "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
  206. "Id": 16880285896855930892,
  207. "Controller": {
  208. "Configuration": {
  209. "Field of View": 55.0,
  210. "EditorEntityId": 11650547607272866328
  211. }
  212. }
  213. },
  214. "Component_[17187464423780271193]": {
  215. "$type": "EditorLockComponent",
  216. "Id": 17187464423780271193
  217. },
  218. "Component_[17495696818315413311]": {
  219. "$type": "EditorEntitySortComponent",
  220. "Id": 17495696818315413311
  221. },
  222. "Component_[18086214374043522055]": {
  223. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  224. "Id": 18086214374043522055,
  225. "Parent Entity": "Entity_[1176639161715]",
  226. "Transform Data": {
  227. "Translate": [
  228. -0.9004960656166077,
  229. -1.93559992313385,
  230. 1.8783804178237915
  231. ],
  232. "Rotate": [
  233. -16.1578369140625,
  234. 6.093997955322266,
  235. -24.473827362060547
  236. ]
  237. }
  238. },
  239. "Component_[18387556550380114975]": {
  240. "$type": "SelectionComponent",
  241. "Id": 18387556550380114975
  242. },
  243. "Component_[2654521436129313160]": {
  244. "$type": "EditorVisibilityComponent",
  245. "Id": 2654521436129313160
  246. },
  247. "Component_[5265045084611556958]": {
  248. "$type": "EditorDisabledCompositionComponent",
  249. "Id": 5265045084611556958
  250. },
  251. "Component_[7169798125182238623]": {
  252. "$type": "EditorPendingCompositionComponent",
  253. "Id": 7169798125182238623
  254. },
  255. "Component_[7255796294953281766]": {
  256. "$type": "GenericComponentWrapper",
  257. "Id": 7255796294953281766,
  258. "m_template": {
  259. "$type": "FlyCameraInputComponent",
  260. "Move Speed": 2.0,
  261. "Rotation Speed": 2.0
  262. }
  263. },
  264. "Component_[8866210352157164042]": {
  265. "$type": "EditorInspectorComponent",
  266. "Id": 8866210352157164042
  267. },
  268. "Component_[9129253381063760879]": {
  269. "$type": "EditorOnlyEntityComponent",
  270. "Id": 9129253381063760879
  271. }
  272. }
  273. },
  274. "Entity_[1176639161715]": {
  275. "Id": "Entity_[1176639161715]",
  276. "Name": "Atom Default Environment",
  277. "Components": {
  278. "Component_[10757302973393310045]": {
  279. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  280. "Id": 10757302973393310045,
  281. "Parent Entity": "Entity_[1146574390643]"
  282. },
  283. "Component_[14505817420424255464]": {
  284. "$type": "EditorInspectorComponent",
  285. "Id": 14505817420424255464,
  286. "ComponentOrderEntryArray": [
  287. {
  288. "ComponentId": 10757302973393310045
  289. }
  290. ]
  291. },
  292. "Component_[14988041764659020032]": {
  293. "$type": "EditorLockComponent",
  294. "Id": 14988041764659020032
  295. },
  296. "Component_[15808690248755038124]": {
  297. "$type": "SelectionComponent",
  298. "Id": 15808690248755038124
  299. },
  300. "Component_[15900837685796817138]": {
  301. "$type": "EditorVisibilityComponent",
  302. "Id": 15900837685796817138
  303. },
  304. "Component_[3298767348226484884]": {
  305. "$type": "EditorOnlyEntityComponent",
  306. "Id": 3298767348226484884
  307. },
  308. "Component_[4076975109609220594]": {
  309. "$type": "EditorPendingCompositionComponent",
  310. "Id": 4076975109609220594
  311. },
  312. "Component_[5679760548946028854]": {
  313. "$type": "EditorDisabledCompositionComponent",
  314. "Id": 5679760548946028854
  315. },
  316. "Component_[5855590796136709437]": {
  317. "$type": "EditorEntitySortComponent",
  318. "Id": 5855590796136709437,
  319. "Child Entity Order": [
  320. "Entity_[1155164325235]",
  321. "Entity_[1163754259827]",
  322. "Entity_[1159459292531]"
  323. ]
  324. },
  325. "Component_[9277695270015777859]": {
  326. "$type": "EditorEntityIconComponent",
  327. "Id": 9277695270015777859
  328. }
  329. }
  330. },
  331. "Entity_[1695037187417]": {
  332. "Id": "Entity_[1695037187417]",
  333. "Name": "lv1",
  334. "Components": {
  335. "Component_[10072276992632530128]": {
  336. "$type": "EditorBoxShapeComponent",
  337. "Id": 10072276992632530128,
  338. "BoxShape": {
  339. "Configuration": {
  340. "Dimensions": [
  341. 0.05000000074505806,
  342. 0.25,
  343. 0.019999999552965164
  344. ]
  345. }
  346. }
  347. },
  348. "Component_[10201138083162334688]": {
  349. "$type": "EditorVisibilityComponent",
  350. "Id": 10201138083162334688
  351. },
  352. "Component_[11827333391354523329]": {
  353. "$type": "EditorLockComponent",
  354. "Id": 11827333391354523329
  355. },
  356. "Component_[12228903370962699127]": {
  357. "$type": "EditorDisabledCompositionComponent",
  358. "Id": 12228903370962699127
  359. },
  360. "Component_[16446233430311869812]": {
  361. "$type": "EditorEntitySortComponent",
  362. "Id": 16446233430311869812,
  363. "Child Entity Order": [
  364. "Entity_[2102304587171]",
  365. "Entity_[3709376849241]"
  366. ]
  367. },
  368. "Component_[16961735021762350669]": {
  369. "$type": "EditorInspectorComponent",
  370. "Id": 16961735021762350669
  371. },
  372. "Component_[17066958134621237266]": {
  373. "$type": "EditorRigidBodyComponent",
  374. "Id": 17066958134621237266,
  375. "Configuration": {
  376. "entityId": "",
  377. "Compute Mass": false,
  378. "Inertia tensor": {
  379. "roll": 0.0,
  380. "pitch": 0.0,
  381. "yaw": 0.0,
  382. "scale": 190.7790069580078
  383. }
  384. }
  385. },
  386. "Component_[17225545551989179568]": {
  387. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  388. "Id": 17225545551989179568,
  389. "Parent Entity": "Entity_[2927692801369]",
  390. "Transform Data": {
  391. "Translate": [
  392. 0.0,
  393. -0.17496241629123688,
  394. 0.0
  395. ]
  396. }
  397. },
  398. "Component_[18148885745937782194]": {
  399. "$type": "EditorOnlyEntityComponent",
  400. "Id": 18148885745937782194
  401. },
  402. "Component_[2468742816256310562]": {
  403. "$type": "SelectionComponent",
  404. "Id": 2468742816256310562
  405. },
  406. "Component_[7370081773776487125]": {
  407. "$type": "EditorFixedJointComponent",
  408. "Id": 7370081773776487125,
  409. "Configuration": {
  410. "Local Position": [
  411. 0.0,
  412. 0.125,
  413. 0.0
  414. ],
  415. "Parent Entity": "Entity_[2927692801369]",
  416. "Child Entity": "Entity_[1695037187417]"
  417. }
  418. },
  419. "Component_[7664405037824258890]": {
  420. "$type": "EditorPendingCompositionComponent",
  421. "Id": 7664405037824258890
  422. },
  423. "Component_[8962368090959361564]": {
  424. "$type": "EditorEntityIconComponent",
  425. "Id": 8962368090959361564
  426. },
  427. "Component_[9733239216798750378]": {
  428. "$type": "EditorShapeColliderComponent",
  429. "Id": 9733239216798750378,
  430. "ColliderConfiguration": {
  431. "MaterialSelection": {
  432. "MaterialIds": [
  433. {}
  434. ]
  435. }
  436. },
  437. "ShapeConfigs": [
  438. {
  439. "$type": "BoxShapeConfiguration",
  440. "Configuration": [
  441. 0.05000000074505806,
  442. 0.25,
  443. 0.019999999552965164
  444. ]
  445. }
  446. ]
  447. }
  448. }
  449. },
  450. "Entity_[2102304587171]": {
  451. "Id": "Entity_[2102304587171]",
  452. "Name": "mesh",
  453. "Components": {
  454. "Component_[11844614008383352446]": {
  455. "$type": "EditorDisabledCompositionComponent",
  456. "Id": 11844614008383352446
  457. },
  458. "Component_[12079604184848720171]": {
  459. "$type": "EditorEntitySortComponent",
  460. "Id": 12079604184848720171
  461. },
  462. "Component_[14533338372902535872]": {
  463. "$type": "EditorPendingCompositionComponent",
  464. "Id": 14533338372902535872
  465. },
  466. "Component_[14550016641044125341]": {
  467. "$type": "SelectionComponent",
  468. "Id": 14550016641044125341
  469. },
  470. "Component_[1918642535601929198]": {
  471. "$type": "EditorLockComponent",
  472. "Id": 1918642535601929198
  473. },
  474. "Component_[2984658607931068733]": {
  475. "$type": "EditorNonUniformScaleComponent",
  476. "Id": 2984658607931068733,
  477. "NonUniformScale": [
  478. 0.05000000074505806,
  479. 0.25,
  480. 0.019999999552965164
  481. ]
  482. },
  483. "Component_[4589173332705901153]": {
  484. "$type": "EditorOnlyEntityComponent",
  485. "Id": 4589173332705901153
  486. },
  487. "Component_[6205943687787197495]": {
  488. "$type": "EditorInspectorComponent",
  489. "Id": 6205943687787197495
  490. },
  491. "Component_[6765072771561777269]": {
  492. "$type": "EditorVisibilityComponent",
  493. "Id": 6765072771561777269
  494. },
  495. "Component_[8295981538973511884]": {
  496. "$type": "AZ::Render::EditorMeshComponent",
  497. "Id": 8295981538973511884,
  498. "Controller": {
  499. "Configuration": {
  500. "ModelAsset": {
  501. "assetId": {
  502. "guid": "{C15CD465-9589-56ED-945F-8416FA4798A3}",
  503. "subId": 284301017
  504. },
  505. "assetHint": "objects/_primitives/_box_1x1.azmodel"
  506. }
  507. }
  508. }
  509. },
  510. "Component_[849424832364595886]": {
  511. "$type": "EditorEntityIconComponent",
  512. "Id": 849424832364595886
  513. },
  514. "Component_[9391493484113851826]": {
  515. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  516. "Id": 9391493484113851826,
  517. "Parent Entity": "Entity_[1695037187417]"
  518. }
  519. }
  520. },
  521. "Entity_[2664945302947]": {
  522. "Id": "Entity_[2664945302947]",
  523. "Name": "mesh",
  524. "Components": {
  525. "Component_[11844614008383352446]": {
  526. "$type": "EditorDisabledCompositionComponent",
  527. "Id": 11844614008383352446
  528. },
  529. "Component_[12079604184848720171]": {
  530. "$type": "EditorEntitySortComponent",
  531. "Id": 12079604184848720171
  532. },
  533. "Component_[14533338372902535872]": {
  534. "$type": "EditorPendingCompositionComponent",
  535. "Id": 14533338372902535872
  536. },
  537. "Component_[14550016641044125341]": {
  538. "$type": "SelectionComponent",
  539. "Id": 14550016641044125341
  540. },
  541. "Component_[1918642535601929198]": {
  542. "$type": "EditorLockComponent",
  543. "Id": 1918642535601929198
  544. },
  545. "Component_[2984658607931068733]": {
  546. "$type": "EditorNonUniformScaleComponent",
  547. "Id": 2984658607931068733,
  548. "NonUniformScale": [
  549. 0.05000000074505806,
  550. 0.25,
  551. 0.019999999552965164
  552. ]
  553. },
  554. "Component_[4589173332705901153]": {
  555. "$type": "EditorOnlyEntityComponent",
  556. "Id": 4589173332705901153
  557. },
  558. "Component_[6205943687787197495]": {
  559. "$type": "EditorInspectorComponent",
  560. "Id": 6205943687787197495
  561. },
  562. "Component_[6765072771561777269]": {
  563. "$type": "EditorVisibilityComponent",
  564. "Id": 6765072771561777269
  565. },
  566. "Component_[8295981538973511884]": {
  567. "$type": "AZ::Render::EditorMeshComponent",
  568. "Id": 8295981538973511884,
  569. "Controller": {
  570. "Configuration": {
  571. "ModelAsset": {
  572. "assetId": {
  573. "guid": "{C15CD465-9589-56ED-945F-8416FA4798A3}",
  574. "subId": 284301017
  575. },
  576. "assetHint": "objects/_primitives/_box_1x1.azmodel"
  577. }
  578. }
  579. }
  580. },
  581. "Component_[849424832364595886]": {
  582. "$type": "EditorEntityIconComponent",
  583. "Id": 849424832364595886
  584. },
  585. "Component_[9391493484113851826]": {
  586. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  587. "Id": 9391493484113851826,
  588. "Parent Entity": "Entity_[3709376849241]"
  589. }
  590. }
  591. },
  592. "Entity_[2669240270243]": {
  593. "Id": "Entity_[2669240270243]",
  594. "Name": "mesh",
  595. "Components": {
  596. "Component_[11844614008383352446]": {
  597. "$type": "EditorDisabledCompositionComponent",
  598. "Id": 11844614008383352446
  599. },
  600. "Component_[12079604184848720171]": {
  601. "$type": "EditorEntitySortComponent",
  602. "Id": 12079604184848720171
  603. },
  604. "Component_[14533338372902535872]": {
  605. "$type": "EditorPendingCompositionComponent",
  606. "Id": 14533338372902535872
  607. },
  608. "Component_[14550016641044125341]": {
  609. "$type": "SelectionComponent",
  610. "Id": 14550016641044125341
  611. },
  612. "Component_[1918642535601929198]": {
  613. "$type": "EditorLockComponent",
  614. "Id": 1918642535601929198
  615. },
  616. "Component_[2984658607931068733]": {
  617. "$type": "EditorNonUniformScaleComponent",
  618. "Id": 2984658607931068733,
  619. "NonUniformScale": [
  620. 0.05000000074505806,
  621. 0.25,
  622. 0.019999999552965164
  623. ]
  624. },
  625. "Component_[4589173332705901153]": {
  626. "$type": "EditorOnlyEntityComponent",
  627. "Id": 4589173332705901153
  628. },
  629. "Component_[6205943687787197495]": {
  630. "$type": "EditorInspectorComponent",
  631. "Id": 6205943687787197495
  632. },
  633. "Component_[6765072771561777269]": {
  634. "$type": "EditorVisibilityComponent",
  635. "Id": 6765072771561777269
  636. },
  637. "Component_[8295981538973511884]": {
  638. "$type": "AZ::Render::EditorMeshComponent",
  639. "Id": 8295981538973511884,
  640. "Controller": {
  641. "Configuration": {
  642. "ModelAsset": {
  643. "assetId": {
  644. "guid": "{C15CD465-9589-56ED-945F-8416FA4798A3}",
  645. "subId": 284301017
  646. },
  647. "assetHint": "objects/_primitives/_box_1x1.azmodel"
  648. }
  649. }
  650. }
  651. },
  652. "Component_[849424832364595886]": {
  653. "$type": "EditorEntityIconComponent",
  654. "Id": 849424832364595886
  655. },
  656. "Component_[9391493484113851826]": {
  657. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  658. "Id": 9391493484113851826,
  659. "Parent Entity": "Entity_[3713671816537]"
  660. }
  661. }
  662. },
  663. "Entity_[2673535237539]": {
  664. "Id": "Entity_[2673535237539]",
  665. "Name": "mesh",
  666. "Components": {
  667. "Component_[11844614008383352446]": {
  668. "$type": "EditorDisabledCompositionComponent",
  669. "Id": 11844614008383352446
  670. },
  671. "Component_[12079604184848720171]": {
  672. "$type": "EditorEntitySortComponent",
  673. "Id": 12079604184848720171
  674. },
  675. "Component_[14533338372902535872]": {
  676. "$type": "EditorPendingCompositionComponent",
  677. "Id": 14533338372902535872
  678. },
  679. "Component_[14550016641044125341]": {
  680. "$type": "SelectionComponent",
  681. "Id": 14550016641044125341
  682. },
  683. "Component_[1918642535601929198]": {
  684. "$type": "EditorLockComponent",
  685. "Id": 1918642535601929198
  686. },
  687. "Component_[2984658607931068733]": {
  688. "$type": "EditorNonUniformScaleComponent",
  689. "Id": 2984658607931068733,
  690. "NonUniformScale": [
  691. 0.05000000074505806,
  692. 0.25,
  693. 0.019999999552965164
  694. ]
  695. },
  696. "Component_[4589173332705901153]": {
  697. "$type": "EditorOnlyEntityComponent",
  698. "Id": 4589173332705901153
  699. },
  700. "Component_[6205943687787197495]": {
  701. "$type": "EditorInspectorComponent",
  702. "Id": 6205943687787197495
  703. },
  704. "Component_[6765072771561777269]": {
  705. "$type": "EditorVisibilityComponent",
  706. "Id": 6765072771561777269
  707. },
  708. "Component_[8295981538973511884]": {
  709. "$type": "AZ::Render::EditorMeshComponent",
  710. "Id": 8295981538973511884,
  711. "Controller": {
  712. "Configuration": {
  713. "ModelAsset": {
  714. "assetId": {
  715. "guid": "{C15CD465-9589-56ED-945F-8416FA4798A3}",
  716. "subId": 284301017
  717. },
  718. "assetHint": "objects/_primitives/_box_1x1.azmodel"
  719. }
  720. }
  721. }
  722. },
  723. "Component_[849424832364595886]": {
  724. "$type": "EditorEntityIconComponent",
  725. "Id": 849424832364595886
  726. },
  727. "Component_[9391493484113851826]": {
  728. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  729. "Id": 9391493484113851826,
  730. "Parent Entity": "Entity_[3717966783833]"
  731. }
  732. }
  733. },
  734. "Entity_[2927692801369]": {
  735. "Id": "Entity_[2927692801369]",
  736. "Name": "Arm_fixed",
  737. "Components": {
  738. "Component_[10072276992632530128]": {
  739. "$type": "EditorBoxShapeComponent",
  740. "Id": 10072276992632530128,
  741. "BoxShape": {
  742. "Configuration": {
  743. "Dimensions": [
  744. 0.10000000149011612,
  745. 0.10000000149011612,
  746. 0.10000000149011612
  747. ]
  748. }
  749. }
  750. },
  751. "Component_[10201138083162334688]": {
  752. "$type": "EditorVisibilityComponent",
  753. "Id": 10201138083162334688
  754. },
  755. "Component_[11827333391354523329]": {
  756. "$type": "EditorLockComponent",
  757. "Id": 11827333391354523329
  758. },
  759. "Component_[12228903370962699127]": {
  760. "$type": "EditorDisabledCompositionComponent",
  761. "Id": 12228903370962699127
  762. },
  763. "Component_[16446233430311869812]": {
  764. "$type": "EditorEntitySortComponent",
  765. "Id": 16446233430311869812,
  766. "Child Entity Order": [
  767. "Entity_[362842832291]",
  768. "Entity_[1695037187417]"
  769. ]
  770. },
  771. "Component_[16961735021762350669]": {
  772. "$type": "EditorInspectorComponent",
  773. "Id": 16961735021762350669
  774. },
  775. "Component_[17066958134621237266]": {
  776. "$type": "EditorRigidBodyComponent",
  777. "Id": 17066958134621237266,
  778. "Configuration": {
  779. "entityId": "",
  780. "Kinematic": true,
  781. "Inertia tensor": {
  782. "roll": 0.0,
  783. "pitch": 0.0,
  784. "yaw": 0.0,
  785. "scale": 599.9998779296875
  786. }
  787. }
  788. },
  789. "Component_[17225545551989179568]": {
  790. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  791. "Id": 17225545551989179568,
  792. "Parent Entity": "Entity_[1146574390643]",
  793. "Transform Data": {
  794. "Translate": [
  795. -0.2299973964691162,
  796. 0.0,
  797. 1.5323221683502197
  798. ]
  799. }
  800. },
  801. "Component_[18148885745937782194]": {
  802. "$type": "EditorOnlyEntityComponent",
  803. "Id": 18148885745937782194
  804. },
  805. "Component_[2468742816256310562]": {
  806. "$type": "SelectionComponent",
  807. "Id": 2468742816256310562
  808. },
  809. "Component_[7664405037824258890]": {
  810. "$type": "EditorPendingCompositionComponent",
  811. "Id": 7664405037824258890
  812. },
  813. "Component_[8962368090959361564]": {
  814. "$type": "EditorEntityIconComponent",
  815. "Id": 8962368090959361564
  816. },
  817. "Component_[9733239216798750378]": {
  818. "$type": "EditorShapeColliderComponent",
  819. "Id": 9733239216798750378,
  820. "ColliderConfiguration": {
  821. "MaterialSelection": {
  822. "MaterialIds": [
  823. {}
  824. ]
  825. }
  826. },
  827. "ShapeConfigs": [
  828. {
  829. "$type": "BoxShapeConfiguration",
  830. "Configuration": [
  831. 0.10000000149011612,
  832. 0.10000000149011612,
  833. 0.10000000149011612
  834. ]
  835. }
  836. ]
  837. }
  838. }
  839. },
  840. "Entity_[3523938762147]": {
  841. "Id": "Entity_[3523938762147]",
  842. "Name": "mesh",
  843. "Components": {
  844. "Component_[11844614008383352446]": {
  845. "$type": "EditorDisabledCompositionComponent",
  846. "Id": 11844614008383352446
  847. },
  848. "Component_[12079604184848720171]": {
  849. "$type": "EditorEntitySortComponent",
  850. "Id": 12079604184848720171
  851. },
  852. "Component_[14533338372902535872]": {
  853. "$type": "EditorPendingCompositionComponent",
  854. "Id": 14533338372902535872
  855. },
  856. "Component_[14550016641044125341]": {
  857. "$type": "SelectionComponent",
  858. "Id": 14550016641044125341
  859. },
  860. "Component_[1918642535601929198]": {
  861. "$type": "EditorLockComponent",
  862. "Id": 1918642535601929198
  863. },
  864. "Component_[2984658607931068733]": {
  865. "$type": "EditorNonUniformScaleComponent",
  866. "Id": 2984658607931068733,
  867. "NonUniformScale": [
  868. 0.05000000074505806,
  869. 0.25,
  870. 0.019999999552965164
  871. ]
  872. },
  873. "Component_[4589173332705901153]": {
  874. "$type": "EditorOnlyEntityComponent",
  875. "Id": 4589173332705901153
  876. },
  877. "Component_[6205943687787197495]": {
  878. "$type": "EditorInspectorComponent",
  879. "Id": 6205943687787197495
  880. },
  881. "Component_[6765072771561777269]": {
  882. "$type": "EditorVisibilityComponent",
  883. "Id": 6765072771561777269
  884. },
  885. "Component_[8295981538973511884]": {
  886. "$type": "AZ::Render::EditorMeshComponent",
  887. "Id": 8295981538973511884,
  888. "Controller": {
  889. "Configuration": {
  890. "ModelAsset": {
  891. "assetId": {
  892. "guid": "{C15CD465-9589-56ED-945F-8416FA4798A3}",
  893. "subId": 284301017
  894. },
  895. "assetHint": "objects/_primitives/_box_1x1.azmodel"
  896. }
  897. }
  898. }
  899. },
  900. "Component_[849424832364595886]": {
  901. "$type": "EditorEntityIconComponent",
  902. "Id": 849424832364595886
  903. },
  904. "Component_[9391493484113851826]": {
  905. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  906. "Id": 9391493484113851826,
  907. "Parent Entity": "Entity_[7832545453401]"
  908. }
  909. }
  910. },
  911. "Entity_[3541118631331]": {
  912. "Id": "Entity_[3541118631331]",
  913. "Name": "mesh",
  914. "Components": {
  915. "Component_[11844614008383352446]": {
  916. "$type": "EditorDisabledCompositionComponent",
  917. "Id": 11844614008383352446
  918. },
  919. "Component_[12079604184848720171]": {
  920. "$type": "EditorEntitySortComponent",
  921. "Id": 12079604184848720171
  922. },
  923. "Component_[14533338372902535872]": {
  924. "$type": "EditorPendingCompositionComponent",
  925. "Id": 14533338372902535872
  926. },
  927. "Component_[14550016641044125341]": {
  928. "$type": "SelectionComponent",
  929. "Id": 14550016641044125341
  930. },
  931. "Component_[1918642535601929198]": {
  932. "$type": "EditorLockComponent",
  933. "Id": 1918642535601929198
  934. },
  935. "Component_[2984658607931068733]": {
  936. "$type": "EditorNonUniformScaleComponent",
  937. "Id": 2984658607931068733,
  938. "NonUniformScale": [
  939. 0.05000000074505806,
  940. 0.25,
  941. 0.019999999552965164
  942. ]
  943. },
  944. "Component_[4589173332705901153]": {
  945. "$type": "EditorOnlyEntityComponent",
  946. "Id": 4589173332705901153
  947. },
  948. "Component_[6205943687787197495]": {
  949. "$type": "EditorInspectorComponent",
  950. "Id": 6205943687787197495
  951. },
  952. "Component_[6765072771561777269]": {
  953. "$type": "EditorVisibilityComponent",
  954. "Id": 6765072771561777269
  955. },
  956. "Component_[8295981538973511884]": {
  957. "$type": "AZ::Render::EditorMeshComponent",
  958. "Id": 8295981538973511884,
  959. "Controller": {
  960. "Configuration": {
  961. "ModelAsset": {
  962. "assetId": {
  963. "guid": "{C15CD465-9589-56ED-945F-8416FA4798A3}",
  964. "subId": 284301017
  965. },
  966. "assetHint": "objects/_primitives/_box_1x1.azmodel"
  967. }
  968. }
  969. }
  970. },
  971. "Component_[849424832364595886]": {
  972. "$type": "EditorEntityIconComponent",
  973. "Id": 849424832364595886
  974. },
  975. "Component_[9391493484113851826]": {
  976. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  977. "Id": 9391493484113851826,
  978. "Parent Entity": "Entity_[7828250486105]"
  979. }
  980. }
  981. },
  982. "Entity_[3545413598627]": {
  983. "Id": "Entity_[3545413598627]",
  984. "Name": "mesh",
  985. "Components": {
  986. "Component_[11844614008383352446]": {
  987. "$type": "EditorDisabledCompositionComponent",
  988. "Id": 11844614008383352446
  989. },
  990. "Component_[12079604184848720171]": {
  991. "$type": "EditorEntitySortComponent",
  992. "Id": 12079604184848720171
  993. },
  994. "Component_[14533338372902535872]": {
  995. "$type": "EditorPendingCompositionComponent",
  996. "Id": 14533338372902535872
  997. },
  998. "Component_[14550016641044125341]": {
  999. "$type": "SelectionComponent",
  1000. "Id": 14550016641044125341
  1001. },
  1002. "Component_[1918642535601929198]": {
  1003. "$type": "EditorLockComponent",
  1004. "Id": 1918642535601929198
  1005. },
  1006. "Component_[2984658607931068733]": {
  1007. "$type": "EditorNonUniformScaleComponent",
  1008. "Id": 2984658607931068733,
  1009. "NonUniformScale": [
  1010. 0.05000000074505806,
  1011. 0.25,
  1012. 0.019999999552965164
  1013. ]
  1014. },
  1015. "Component_[4589173332705901153]": {
  1016. "$type": "EditorOnlyEntityComponent",
  1017. "Id": 4589173332705901153
  1018. },
  1019. "Component_[6205943687787197495]": {
  1020. "$type": "EditorInspectorComponent",
  1021. "Id": 6205943687787197495
  1022. },
  1023. "Component_[6765072771561777269]": {
  1024. "$type": "EditorVisibilityComponent",
  1025. "Id": 6765072771561777269
  1026. },
  1027. "Component_[8295981538973511884]": {
  1028. "$type": "AZ::Render::EditorMeshComponent",
  1029. "Id": 8295981538973511884,
  1030. "Controller": {
  1031. "Configuration": {
  1032. "ModelAsset": {
  1033. "assetId": {
  1034. "guid": "{C15CD465-9589-56ED-945F-8416FA4798A3}",
  1035. "subId": 284301017
  1036. },
  1037. "assetHint": "objects/_primitives/_box_1x1.azmodel"
  1038. }
  1039. }
  1040. }
  1041. },
  1042. "Component_[849424832364595886]": {
  1043. "$type": "EditorEntityIconComponent",
  1044. "Id": 849424832364595886
  1045. },
  1046. "Component_[9391493484113851826]": {
  1047. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1048. "Id": 9391493484113851826,
  1049. "Parent Entity": "Entity_[7841135387993]"
  1050. }
  1051. }
  1052. },
  1053. "Entity_[3549708565923]": {
  1054. "Id": "Entity_[3549708565923]",
  1055. "Name": "mesh",
  1056. "Components": {
  1057. "Component_[11844614008383352446]": {
  1058. "$type": "EditorDisabledCompositionComponent",
  1059. "Id": 11844614008383352446
  1060. },
  1061. "Component_[12079604184848720171]": {
  1062. "$type": "EditorEntitySortComponent",
  1063. "Id": 12079604184848720171
  1064. },
  1065. "Component_[14533338372902535872]": {
  1066. "$type": "EditorPendingCompositionComponent",
  1067. "Id": 14533338372902535872
  1068. },
  1069. "Component_[14550016641044125341]": {
  1070. "$type": "SelectionComponent",
  1071. "Id": 14550016641044125341
  1072. },
  1073. "Component_[1918642535601929198]": {
  1074. "$type": "EditorLockComponent",
  1075. "Id": 1918642535601929198
  1076. },
  1077. "Component_[2984658607931068733]": {
  1078. "$type": "EditorNonUniformScaleComponent",
  1079. "Id": 2984658607931068733,
  1080. "NonUniformScale": [
  1081. 0.05000000074505806,
  1082. 0.25,
  1083. 0.019999999552965164
  1084. ]
  1085. },
  1086. "Component_[4589173332705901153]": {
  1087. "$type": "EditorOnlyEntityComponent",
  1088. "Id": 4589173332705901153
  1089. },
  1090. "Component_[6205943687787197495]": {
  1091. "$type": "EditorInspectorComponent",
  1092. "Id": 6205943687787197495
  1093. },
  1094. "Component_[6765072771561777269]": {
  1095. "$type": "EditorVisibilityComponent",
  1096. "Id": 6765072771561777269
  1097. },
  1098. "Component_[8295981538973511884]": {
  1099. "$type": "AZ::Render::EditorMeshComponent",
  1100. "Id": 8295981538973511884,
  1101. "Controller": {
  1102. "Configuration": {
  1103. "ModelAsset": {
  1104. "assetId": {
  1105. "guid": "{C15CD465-9589-56ED-945F-8416FA4798A3}",
  1106. "subId": 284301017
  1107. },
  1108. "assetHint": "objects/_primitives/_box_1x1.azmodel"
  1109. }
  1110. }
  1111. }
  1112. },
  1113. "Component_[849424832364595886]": {
  1114. "$type": "EditorEntityIconComponent",
  1115. "Id": 849424832364595886
  1116. },
  1117. "Component_[9391493484113851826]": {
  1118. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1119. "Id": 9391493484113851826,
  1120. "Parent Entity": "Entity_[7823955518809]"
  1121. }
  1122. }
  1123. },
  1124. "Entity_[362842832291]": {
  1125. "Id": "Entity_[362842832291]",
  1126. "Name": "mesh",
  1127. "Components": {
  1128. "Component_[11844614008383352446]": {
  1129. "$type": "EditorDisabledCompositionComponent",
  1130. "Id": 11844614008383352446
  1131. },
  1132. "Component_[12079604184848720171]": {
  1133. "$type": "EditorEntitySortComponent",
  1134. "Id": 12079604184848720171
  1135. },
  1136. "Component_[14533338372902535872]": {
  1137. "$type": "EditorPendingCompositionComponent",
  1138. "Id": 14533338372902535872
  1139. },
  1140. "Component_[14550016641044125341]": {
  1141. "$type": "SelectionComponent",
  1142. "Id": 14550016641044125341
  1143. },
  1144. "Component_[1918642535601929198]": {
  1145. "$type": "EditorLockComponent",
  1146. "Id": 1918642535601929198
  1147. },
  1148. "Component_[2984658607931068733]": {
  1149. "$type": "EditorNonUniformScaleComponent",
  1150. "Id": 2984658607931068733,
  1151. "NonUniformScale": [
  1152. 0.10000000149011612,
  1153. 0.10000000149011612,
  1154. 0.10000000149011612
  1155. ]
  1156. },
  1157. "Component_[4589173332705901153]": {
  1158. "$type": "EditorOnlyEntityComponent",
  1159. "Id": 4589173332705901153
  1160. },
  1161. "Component_[6205943687787197495]": {
  1162. "$type": "EditorInspectorComponent",
  1163. "Id": 6205943687787197495
  1164. },
  1165. "Component_[6765072771561777269]": {
  1166. "$type": "EditorVisibilityComponent",
  1167. "Id": 6765072771561777269
  1168. },
  1169. "Component_[8295981538973511884]": {
  1170. "$type": "AZ::Render::EditorMeshComponent",
  1171. "Id": 8295981538973511884,
  1172. "Controller": {
  1173. "Configuration": {
  1174. "ModelAsset": {
  1175. "assetId": {
  1176. "guid": "{C15CD465-9589-56ED-945F-8416FA4798A3}",
  1177. "subId": 284301017
  1178. },
  1179. "assetHint": "objects/_primitives/_box_1x1.azmodel"
  1180. }
  1181. }
  1182. }
  1183. },
  1184. "Component_[849424832364595886]": {
  1185. "$type": "EditorEntityIconComponent",
  1186. "Id": 849424832364595886
  1187. },
  1188. "Component_[9391493484113851826]": {
  1189. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1190. "Id": 9391493484113851826,
  1191. "Parent Entity": "Entity_[2927692801369]"
  1192. }
  1193. }
  1194. },
  1195. "Entity_[3709376849241]": {
  1196. "Id": "Entity_[3709376849241]",
  1197. "Name": "lv2",
  1198. "Components": {
  1199. "Component_[10072276992632530128]": {
  1200. "$type": "EditorBoxShapeComponent",
  1201. "Id": 10072276992632530128,
  1202. "BoxShape": {
  1203. "Configuration": {
  1204. "Dimensions": [
  1205. 0.05000000074505806,
  1206. 0.25,
  1207. 0.019999999552965164
  1208. ]
  1209. }
  1210. }
  1211. },
  1212. "Component_[10201138083162334688]": {
  1213. "$type": "EditorVisibilityComponent",
  1214. "Id": 10201138083162334688
  1215. },
  1216. "Component_[11827333391354523329]": {
  1217. "$type": "EditorLockComponent",
  1218. "Id": 11827333391354523329
  1219. },
  1220. "Component_[12228903370962699127]": {
  1221. "$type": "EditorDisabledCompositionComponent",
  1222. "Id": 12228903370962699127
  1223. },
  1224. "Component_[16446233430311869812]": {
  1225. "$type": "EditorEntitySortComponent",
  1226. "Id": 16446233430311869812,
  1227. "Child Entity Order": [
  1228. "Entity_[2664945302947]",
  1229. "Entity_[3713671816537]"
  1230. ]
  1231. },
  1232. "Component_[16961735021762350669]": {
  1233. "$type": "EditorInspectorComponent",
  1234. "Id": 16961735021762350669
  1235. },
  1236. "Component_[17066958134621237266]": {
  1237. "$type": "EditorRigidBodyComponent",
  1238. "Id": 17066958134621237266,
  1239. "Configuration": {
  1240. "entityId": "",
  1241. "Compute Mass": false,
  1242. "Inertia tensor": {
  1243. "roll": 0.0,
  1244. "pitch": 0.0,
  1245. "yaw": 0.0,
  1246. "scale": 190.7790069580078
  1247. }
  1248. }
  1249. },
  1250. "Component_[17225545551989179568]": {
  1251. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1252. "Id": 17225545551989179568,
  1253. "Parent Entity": "Entity_[1695037187417]",
  1254. "Transform Data": {
  1255. "Translate": [
  1256. 0.0,
  1257. -0.25,
  1258. 0.0
  1259. ]
  1260. }
  1261. },
  1262. "Component_[18148885745937782194]": {
  1263. "$type": "EditorOnlyEntityComponent",
  1264. "Id": 18148885745937782194
  1265. },
  1266. "Component_[2468742816256310562]": {
  1267. "$type": "SelectionComponent",
  1268. "Id": 2468742816256310562
  1269. },
  1270. "Component_[7370081773776487125]": {
  1271. "$type": "EditorFixedJointComponent",
  1272. "Id": 7370081773776487125,
  1273. "Configuration": {
  1274. "Local Position": [
  1275. 0.0,
  1276. 0.125,
  1277. 0.0
  1278. ],
  1279. "Parent Entity": "Entity_[1695037187417]",
  1280. "Child Entity": "Entity_[3709376849241]"
  1281. }
  1282. },
  1283. "Component_[7664405037824258890]": {
  1284. "$type": "EditorPendingCompositionComponent",
  1285. "Id": 7664405037824258890
  1286. },
  1287. "Component_[8962368090959361564]": {
  1288. "$type": "EditorEntityIconComponent",
  1289. "Id": 8962368090959361564
  1290. },
  1291. "Component_[9733239216798750378]": {
  1292. "$type": "EditorShapeColliderComponent",
  1293. "Id": 9733239216798750378,
  1294. "ColliderConfiguration": {
  1295. "MaterialSelection": {
  1296. "MaterialIds": [
  1297. {}
  1298. ]
  1299. }
  1300. },
  1301. "ShapeConfigs": [
  1302. {
  1303. "$type": "BoxShapeConfiguration",
  1304. "Configuration": [
  1305. 0.05000000074505806,
  1306. 0.25,
  1307. 0.019999999552965164
  1308. ]
  1309. }
  1310. ]
  1311. }
  1312. }
  1313. },
  1314. "Entity_[3713671816537]": {
  1315. "Id": "Entity_[3713671816537]",
  1316. "Name": "lv3",
  1317. "Components": {
  1318. "Component_[10072276992632530128]": {
  1319. "$type": "EditorBoxShapeComponent",
  1320. "Id": 10072276992632530128,
  1321. "BoxShape": {
  1322. "Configuration": {
  1323. "Dimensions": [
  1324. 0.05000000074505806,
  1325. 0.25,
  1326. 0.019999999552965164
  1327. ]
  1328. }
  1329. }
  1330. },
  1331. "Component_[10201138083162334688]": {
  1332. "$type": "EditorVisibilityComponent",
  1333. "Id": 10201138083162334688
  1334. },
  1335. "Component_[11827333391354523329]": {
  1336. "$type": "EditorLockComponent",
  1337. "Id": 11827333391354523329
  1338. },
  1339. "Component_[12228903370962699127]": {
  1340. "$type": "EditorDisabledCompositionComponent",
  1341. "Id": 12228903370962699127
  1342. },
  1343. "Component_[16446233430311869812]": {
  1344. "$type": "EditorEntitySortComponent",
  1345. "Id": 16446233430311869812,
  1346. "Child Entity Order": [
  1347. "Entity_[2669240270243]",
  1348. "Entity_[3717966783833]"
  1349. ]
  1350. },
  1351. "Component_[16961735021762350669]": {
  1352. "$type": "EditorInspectorComponent",
  1353. "Id": 16961735021762350669
  1354. },
  1355. "Component_[17066958134621237266]": {
  1356. "$type": "EditorRigidBodyComponent",
  1357. "Id": 17066958134621237266,
  1358. "Configuration": {
  1359. "entityId": "",
  1360. "Compute Mass": false,
  1361. "Inertia tensor": {
  1362. "roll": 0.0,
  1363. "pitch": 0.0,
  1364. "yaw": 0.0,
  1365. "scale": 190.7790069580078
  1366. }
  1367. }
  1368. },
  1369. "Component_[17225545551989179568]": {
  1370. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1371. "Id": 17225545551989179568,
  1372. "Parent Entity": "Entity_[3709376849241]",
  1373. "Transform Data": {
  1374. "Translate": [
  1375. 0.0,
  1376. -0.25,
  1377. 0.0
  1378. ]
  1379. }
  1380. },
  1381. "Component_[18148885745937782194]": {
  1382. "$type": "EditorOnlyEntityComponent",
  1383. "Id": 18148885745937782194
  1384. },
  1385. "Component_[2468742816256310562]": {
  1386. "$type": "SelectionComponent",
  1387. "Id": 2468742816256310562
  1388. },
  1389. "Component_[7370081773776487125]": {
  1390. "$type": "EditorFixedJointComponent",
  1391. "Id": 7370081773776487125,
  1392. "Configuration": {
  1393. "Local Position": [
  1394. 0.0,
  1395. 0.125,
  1396. 0.0
  1397. ],
  1398. "Parent Entity": "Entity_[3709376849241]",
  1399. "Child Entity": "Entity_[3713671816537]"
  1400. }
  1401. },
  1402. "Component_[7664405037824258890]": {
  1403. "$type": "EditorPendingCompositionComponent",
  1404. "Id": 7664405037824258890
  1405. },
  1406. "Component_[8962368090959361564]": {
  1407. "$type": "EditorEntityIconComponent",
  1408. "Id": 8962368090959361564
  1409. },
  1410. "Component_[9733239216798750378]": {
  1411. "$type": "EditorShapeColliderComponent",
  1412. "Id": 9733239216798750378,
  1413. "ColliderConfiguration": {
  1414. "MaterialSelection": {
  1415. "MaterialIds": [
  1416. {}
  1417. ]
  1418. }
  1419. },
  1420. "ShapeConfigs": [
  1421. {
  1422. "$type": "BoxShapeConfiguration",
  1423. "Configuration": [
  1424. 0.05000000074505806,
  1425. 0.25,
  1426. 0.019999999552965164
  1427. ]
  1428. }
  1429. ]
  1430. }
  1431. }
  1432. },
  1433. "Entity_[3717966783833]": {
  1434. "Id": "Entity_[3717966783833]",
  1435. "Name": "lv4",
  1436. "Components": {
  1437. "Component_[10072276992632530128]": {
  1438. "$type": "EditorBoxShapeComponent",
  1439. "Id": 10072276992632530128,
  1440. "BoxShape": {
  1441. "Configuration": {
  1442. "Dimensions": [
  1443. 0.05000000074505806,
  1444. 0.25,
  1445. 0.019999999552965164
  1446. ]
  1447. }
  1448. }
  1449. },
  1450. "Component_[10201138083162334688]": {
  1451. "$type": "EditorVisibilityComponent",
  1452. "Id": 10201138083162334688
  1453. },
  1454. "Component_[11827333391354523329]": {
  1455. "$type": "EditorLockComponent",
  1456. "Id": 11827333391354523329
  1457. },
  1458. "Component_[12228903370962699127]": {
  1459. "$type": "EditorDisabledCompositionComponent",
  1460. "Id": 12228903370962699127
  1461. },
  1462. "Component_[16446233430311869812]": {
  1463. "$type": "EditorEntitySortComponent",
  1464. "Id": 16446233430311869812,
  1465. "Child Entity Order": [
  1466. "Entity_[2673535237539]"
  1467. ]
  1468. },
  1469. "Component_[16961735021762350669]": {
  1470. "$type": "EditorInspectorComponent",
  1471. "Id": 16961735021762350669
  1472. },
  1473. "Component_[17066958134621237266]": {
  1474. "$type": "EditorRigidBodyComponent",
  1475. "Id": 17066958134621237266,
  1476. "Configuration": {
  1477. "entityId": "",
  1478. "Compute Mass": false,
  1479. "Inertia tensor": {
  1480. "roll": 0.0,
  1481. "pitch": 0.0,
  1482. "yaw": 0.0,
  1483. "scale": 190.7790069580078
  1484. }
  1485. }
  1486. },
  1487. "Component_[17225545551989179568]": {
  1488. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1489. "Id": 17225545551989179568,
  1490. "Parent Entity": "Entity_[3713671816537]",
  1491. "Transform Data": {
  1492. "Translate": [
  1493. 0.0,
  1494. -0.25,
  1495. 0.0
  1496. ]
  1497. }
  1498. },
  1499. "Component_[18148885745937782194]": {
  1500. "$type": "EditorOnlyEntityComponent",
  1501. "Id": 18148885745937782194
  1502. },
  1503. "Component_[2468742816256310562]": {
  1504. "$type": "SelectionComponent",
  1505. "Id": 2468742816256310562
  1506. },
  1507. "Component_[7370081773776487125]": {
  1508. "$type": "EditorFixedJointComponent",
  1509. "Id": 7370081773776487125,
  1510. "Configuration": {
  1511. "Local Position": [
  1512. 0.0,
  1513. 0.125,
  1514. 0.0
  1515. ],
  1516. "Parent Entity": "Entity_[3713671816537]",
  1517. "Child Entity": "Entity_[3717966783833]"
  1518. }
  1519. },
  1520. "Component_[7664405037824258890]": {
  1521. "$type": "EditorPendingCompositionComponent",
  1522. "Id": 7664405037824258890
  1523. },
  1524. "Component_[8962368090959361564]": {
  1525. "$type": "EditorEntityIconComponent",
  1526. "Id": 8962368090959361564
  1527. },
  1528. "Component_[9733239216798750378]": {
  1529. "$type": "EditorShapeColliderComponent",
  1530. "Id": 9733239216798750378,
  1531. "ColliderConfiguration": {
  1532. "MaterialSelection": {
  1533. "MaterialIds": [
  1534. {}
  1535. ]
  1536. }
  1537. },
  1538. "ShapeConfigs": [
  1539. {
  1540. "$type": "BoxShapeConfiguration",
  1541. "Configuration": [
  1542. 0.05000000074505806,
  1543. 0.25,
  1544. 0.019999999552965164
  1545. ]
  1546. }
  1547. ]
  1548. }
  1549. }
  1550. },
  1551. "Entity_[7823955518809]": {
  1552. "Id": "Entity_[7823955518809]",
  1553. "Name": "lv4",
  1554. "Components": {
  1555. "Component_[10072276992632530128]": {
  1556. "$type": "EditorBoxShapeComponent",
  1557. "Id": 10072276992632530128,
  1558. "BoxShape": {
  1559. "Configuration": {
  1560. "Dimensions": [
  1561. 0.05000000074505806,
  1562. 0.25,
  1563. 0.019999999552965164
  1564. ]
  1565. }
  1566. }
  1567. },
  1568. "Component_[10201138083162334688]": {
  1569. "$type": "EditorVisibilityComponent",
  1570. "Id": 10201138083162334688
  1571. },
  1572. "Component_[11827333391354523329]": {
  1573. "$type": "EditorLockComponent",
  1574. "Id": 11827333391354523329
  1575. },
  1576. "Component_[12228903370962699127]": {
  1577. "$type": "EditorDisabledCompositionComponent",
  1578. "Id": 12228903370962699127
  1579. },
  1580. "Component_[12643152388290633933]": {
  1581. "$type": "EditorHingeJointComponent",
  1582. "Id": 12643152388290633933,
  1583. "Configuration": {
  1584. "Local Position": [
  1585. 0.0,
  1586. 0.125,
  1587. 0.0
  1588. ],
  1589. "Local Rotation": [
  1590. 0.0,
  1591. 90.0,
  1592. 0.0
  1593. ],
  1594. "Parent Entity": "Entity_[7841135387993]",
  1595. "Child Entity": "Entity_[7823955518809]"
  1596. },
  1597. "Angular Limit": {
  1598. "Standard Limit Configuration": {
  1599. "Is Limited": false
  1600. }
  1601. }
  1602. },
  1603. "Component_[16446233430311869812]": {
  1604. "$type": "EditorEntitySortComponent",
  1605. "Id": 16446233430311869812,
  1606. "Child Entity Order": [
  1607. "Entity_[3549708565923]"
  1608. ]
  1609. },
  1610. "Component_[16961735021762350669]": {
  1611. "$type": "EditorInspectorComponent",
  1612. "Id": 16961735021762350669
  1613. },
  1614. "Component_[17066958134621237266]": {
  1615. "$type": "EditorRigidBodyComponent",
  1616. "Id": 17066958134621237266,
  1617. "Configuration": {
  1618. "entityId": "",
  1619. "Compute Mass": false,
  1620. "Inertia tensor": {
  1621. "roll": 0.0,
  1622. "pitch": 0.0,
  1623. "yaw": 0.0,
  1624. "scale": 190.7790069580078
  1625. }
  1626. }
  1627. },
  1628. "Component_[17225545551989179568]": {
  1629. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1630. "Id": 17225545551989179568,
  1631. "Parent Entity": "Entity_[7841135387993]",
  1632. "Transform Data": {
  1633. "Translate": [
  1634. 0.0,
  1635. -0.25,
  1636. 0.0
  1637. ]
  1638. }
  1639. },
  1640. "Component_[18148885745937782194]": {
  1641. "$type": "EditorOnlyEntityComponent",
  1642. "Id": 18148885745937782194
  1643. },
  1644. "Component_[2468742816256310562]": {
  1645. "$type": "SelectionComponent",
  1646. "Id": 2468742816256310562
  1647. },
  1648. "Component_[7664405037824258890]": {
  1649. "$type": "EditorPendingCompositionComponent",
  1650. "Id": 7664405037824258890
  1651. },
  1652. "Component_[8962368090959361564]": {
  1653. "$type": "EditorEntityIconComponent",
  1654. "Id": 8962368090959361564
  1655. },
  1656. "Component_[9733239216798750378]": {
  1657. "$type": "EditorShapeColliderComponent",
  1658. "Id": 9733239216798750378,
  1659. "ColliderConfiguration": {
  1660. "MaterialSelection": {
  1661. "MaterialIds": [
  1662. {}
  1663. ]
  1664. }
  1665. },
  1666. "ShapeConfigs": [
  1667. {
  1668. "$type": "BoxShapeConfiguration",
  1669. "Configuration": [
  1670. 0.05000000074505806,
  1671. 0.25,
  1672. 0.019999999552965164
  1673. ]
  1674. }
  1675. ]
  1676. }
  1677. }
  1678. },
  1679. "Entity_[7828250486105]": {
  1680. "Id": "Entity_[7828250486105]",
  1681. "Name": "lv2",
  1682. "Components": {
  1683. "Component_[10072276992632530128]": {
  1684. "$type": "EditorBoxShapeComponent",
  1685. "Id": 10072276992632530128,
  1686. "BoxShape": {
  1687. "Configuration": {
  1688. "Dimensions": [
  1689. 0.05000000074505806,
  1690. 0.25,
  1691. 0.019999999552965164
  1692. ]
  1693. }
  1694. }
  1695. },
  1696. "Component_[10201138083162334688]": {
  1697. "$type": "EditorVisibilityComponent",
  1698. "Id": 10201138083162334688
  1699. },
  1700. "Component_[11827333391354523329]": {
  1701. "$type": "EditorLockComponent",
  1702. "Id": 11827333391354523329
  1703. },
  1704. "Component_[12228903370962699127]": {
  1705. "$type": "EditorDisabledCompositionComponent",
  1706. "Id": 12228903370962699127
  1707. },
  1708. "Component_[14215966913587013272]": {
  1709. "$type": "EditorHingeJointComponent",
  1710. "Id": 14215966913587013272,
  1711. "Configuration": {
  1712. "Local Position": [
  1713. 0.0,
  1714. 0.125,
  1715. 0.0
  1716. ],
  1717. "Local Rotation": [
  1718. 0.0,
  1719. 90.0,
  1720. 0.0
  1721. ],
  1722. "Parent Entity": "Entity_[7832545453401]",
  1723. "Child Entity": "Entity_[7828250486105]"
  1724. },
  1725. "Angular Limit": {
  1726. "Standard Limit Configuration": {
  1727. "Is Limited": false
  1728. }
  1729. }
  1730. },
  1731. "Component_[16446233430311869812]": {
  1732. "$type": "EditorEntitySortComponent",
  1733. "Id": 16446233430311869812,
  1734. "Child Entity Order": [
  1735. "Entity_[3541118631331]",
  1736. "Entity_[7841135387993]"
  1737. ]
  1738. },
  1739. "Component_[16961735021762350669]": {
  1740. "$type": "EditorInspectorComponent",
  1741. "Id": 16961735021762350669
  1742. },
  1743. "Component_[17066958134621237266]": {
  1744. "$type": "EditorRigidBodyComponent",
  1745. "Id": 17066958134621237266,
  1746. "Configuration": {
  1747. "entityId": "",
  1748. "Compute Mass": false,
  1749. "Inertia tensor": {
  1750. "roll": 0.0,
  1751. "pitch": 0.0,
  1752. "yaw": 0.0,
  1753. "scale": 190.7790069580078
  1754. }
  1755. }
  1756. },
  1757. "Component_[17225545551989179568]": {
  1758. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1759. "Id": 17225545551989179568,
  1760. "Parent Entity": "Entity_[7832545453401]",
  1761. "Transform Data": {
  1762. "Translate": [
  1763. 0.0,
  1764. -0.25,
  1765. 0.0
  1766. ]
  1767. }
  1768. },
  1769. "Component_[18148885745937782194]": {
  1770. "$type": "EditorOnlyEntityComponent",
  1771. "Id": 18148885745937782194
  1772. },
  1773. "Component_[2468742816256310562]": {
  1774. "$type": "SelectionComponent",
  1775. "Id": 2468742816256310562
  1776. },
  1777. "Component_[7664405037824258890]": {
  1778. "$type": "EditorPendingCompositionComponent",
  1779. "Id": 7664405037824258890
  1780. },
  1781. "Component_[8962368090959361564]": {
  1782. "$type": "EditorEntityIconComponent",
  1783. "Id": 8962368090959361564
  1784. },
  1785. "Component_[9733239216798750378]": {
  1786. "$type": "EditorShapeColliderComponent",
  1787. "Id": 9733239216798750378,
  1788. "ColliderConfiguration": {
  1789. "MaterialSelection": {
  1790. "MaterialIds": [
  1791. {}
  1792. ]
  1793. }
  1794. },
  1795. "ShapeConfigs": [
  1796. {
  1797. "$type": "BoxShapeConfiguration",
  1798. "Configuration": [
  1799. 0.05000000074505806,
  1800. 0.25,
  1801. 0.019999999552965164
  1802. ]
  1803. }
  1804. ]
  1805. }
  1806. }
  1807. },
  1808. "Entity_[7832545453401]": {
  1809. "Id": "Entity_[7832545453401]",
  1810. "Name": "lv1",
  1811. "Components": {
  1812. "Component_[10072276992632530128]": {
  1813. "$type": "EditorBoxShapeComponent",
  1814. "Id": 10072276992632530128,
  1815. "BoxShape": {
  1816. "Configuration": {
  1817. "Dimensions": [
  1818. 0.05000000074505806,
  1819. 0.25,
  1820. 0.019999999552965164
  1821. ]
  1822. }
  1823. }
  1824. },
  1825. "Component_[10201138083162334688]": {
  1826. "$type": "EditorVisibilityComponent",
  1827. "Id": 10201138083162334688
  1828. },
  1829. "Component_[11827333391354523329]": {
  1830. "$type": "EditorLockComponent",
  1831. "Id": 11827333391354523329
  1832. },
  1833. "Component_[12228903370962699127]": {
  1834. "$type": "EditorDisabledCompositionComponent",
  1835. "Id": 12228903370962699127
  1836. },
  1837. "Component_[16446233430311869812]": {
  1838. "$type": "EditorEntitySortComponent",
  1839. "Id": 16446233430311869812,
  1840. "Child Entity Order": [
  1841. "Entity_[3523938762147]",
  1842. "Entity_[7828250486105]"
  1843. ]
  1844. },
  1845. "Component_[16961735021762350669]": {
  1846. "$type": "EditorInspectorComponent",
  1847. "Id": 16961735021762350669
  1848. },
  1849. "Component_[17066958134621237266]": {
  1850. "$type": "EditorRigidBodyComponent",
  1851. "Id": 17066958134621237266,
  1852. "Configuration": {
  1853. "entityId": "",
  1854. "Compute Mass": false,
  1855. "Inertia tensor": {
  1856. "roll": 0.0,
  1857. "pitch": 0.0,
  1858. "yaw": 0.0,
  1859. "scale": 190.7790069580078
  1860. }
  1861. }
  1862. },
  1863. "Component_[17225545551989179568]": {
  1864. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1865. "Id": 17225545551989179568,
  1866. "Parent Entity": "Entity_[7836840420697]",
  1867. "Transform Data": {
  1868. "Translate": [
  1869. 0.0,
  1870. -0.17555643618106842,
  1871. 0.0
  1872. ]
  1873. }
  1874. },
  1875. "Component_[18148885745937782194]": {
  1876. "$type": "EditorOnlyEntityComponent",
  1877. "Id": 18148885745937782194
  1878. },
  1879. "Component_[2468742816256310562]": {
  1880. "$type": "SelectionComponent",
  1881. "Id": 2468742816256310562
  1882. },
  1883. "Component_[2813485884000147191]": {
  1884. "$type": "EditorHingeJointComponent",
  1885. "Id": 2813485884000147191,
  1886. "Configuration": {
  1887. "Local Position": [
  1888. 0.0,
  1889. 0.125,
  1890. 0.0
  1891. ],
  1892. "Local Rotation": [
  1893. 0.0,
  1894. 90.0,
  1895. 0.0
  1896. ],
  1897. "Parent Entity": "Entity_[7836840420697]",
  1898. "Child Entity": "Entity_[7832545453401]"
  1899. },
  1900. "Angular Limit": {
  1901. "Standard Limit Configuration": {
  1902. "Is Limited": false
  1903. }
  1904. }
  1905. },
  1906. "Component_[7664405037824258890]": {
  1907. "$type": "EditorPendingCompositionComponent",
  1908. "Id": 7664405037824258890
  1909. },
  1910. "Component_[8962368090959361564]": {
  1911. "$type": "EditorEntityIconComponent",
  1912. "Id": 8962368090959361564
  1913. },
  1914. "Component_[9733239216798750378]": {
  1915. "$type": "EditorShapeColliderComponent",
  1916. "Id": 9733239216798750378,
  1917. "ColliderConfiguration": {
  1918. "MaterialSelection": {
  1919. "MaterialIds": [
  1920. {}
  1921. ]
  1922. }
  1923. },
  1924. "ShapeConfigs": [
  1925. {
  1926. "$type": "BoxShapeConfiguration",
  1927. "Configuration": [
  1928. 0.05000000074505806,
  1929. 0.25,
  1930. 0.019999999552965164
  1931. ]
  1932. }
  1933. ]
  1934. }
  1935. }
  1936. },
  1937. "Entity_[7836840420697]": {
  1938. "Id": "Entity_[7836840420697]",
  1939. "Name": "Arm_hinge",
  1940. "Components": {
  1941. "Component_[10072276992632530128]": {
  1942. "$type": "EditorBoxShapeComponent",
  1943. "Id": 10072276992632530128,
  1944. "BoxShape": {
  1945. "Configuration": {
  1946. "Dimensions": [
  1947. 0.10000000149011612,
  1948. 0.10000000149011612,
  1949. 0.10000000149011612
  1950. ]
  1951. }
  1952. }
  1953. },
  1954. "Component_[10201138083162334688]": {
  1955. "$type": "EditorVisibilityComponent",
  1956. "Id": 10201138083162334688
  1957. },
  1958. "Component_[11827333391354523329]": {
  1959. "$type": "EditorLockComponent",
  1960. "Id": 11827333391354523329
  1961. },
  1962. "Component_[12228903370962699127]": {
  1963. "$type": "EditorDisabledCompositionComponent",
  1964. "Id": 12228903370962699127
  1965. },
  1966. "Component_[16446233430311869812]": {
  1967. "$type": "EditorEntitySortComponent",
  1968. "Id": 16446233430311869812,
  1969. "Child Entity Order": [
  1970. "Entity_[878238907811]",
  1971. "Entity_[7832545453401]"
  1972. ]
  1973. },
  1974. "Component_[16961735021762350669]": {
  1975. "$type": "EditorInspectorComponent",
  1976. "Id": 16961735021762350669
  1977. },
  1978. "Component_[17066958134621237266]": {
  1979. "$type": "EditorRigidBodyComponent",
  1980. "Id": 17066958134621237266,
  1981. "Configuration": {
  1982. "entityId": "",
  1983. "Kinematic": true,
  1984. "Inertia tensor": {
  1985. "roll": 0.0,
  1986. "pitch": 0.0,
  1987. "yaw": 0.0,
  1988. "scale": 599.9998779296875
  1989. }
  1990. }
  1991. },
  1992. "Component_[17225545551989179568]": {
  1993. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1994. "Id": 17225545551989179568,
  1995. "Parent Entity": "Entity_[1146574390643]",
  1996. "Transform Data": {
  1997. "Translate": [
  1998. -0.6866019368171692,
  1999. 0.0,
  2000. 1.5323221683502197
  2001. ]
  2002. }
  2003. },
  2004. "Component_[18148885745937782194]": {
  2005. "$type": "EditorOnlyEntityComponent",
  2006. "Id": 18148885745937782194
  2007. },
  2008. "Component_[2468742816256310562]": {
  2009. "$type": "SelectionComponent",
  2010. "Id": 2468742816256310562
  2011. },
  2012. "Component_[7664405037824258890]": {
  2013. "$type": "EditorPendingCompositionComponent",
  2014. "Id": 7664405037824258890
  2015. },
  2016. "Component_[8962368090959361564]": {
  2017. "$type": "EditorEntityIconComponent",
  2018. "Id": 8962368090959361564
  2019. },
  2020. "Component_[9733239216798750378]": {
  2021. "$type": "EditorShapeColliderComponent",
  2022. "Id": 9733239216798750378,
  2023. "ColliderConfiguration": {
  2024. "MaterialSelection": {
  2025. "MaterialIds": [
  2026. {}
  2027. ]
  2028. }
  2029. },
  2030. "ShapeConfigs": [
  2031. {
  2032. "$type": "BoxShapeConfiguration",
  2033. "Configuration": [
  2034. 0.10000000149011612,
  2035. 0.10000000149011612,
  2036. 0.10000000149011612
  2037. ]
  2038. }
  2039. ]
  2040. }
  2041. }
  2042. },
  2043. "Entity_[7841135387993]": {
  2044. "Id": "Entity_[7841135387993]",
  2045. "Name": "lv3",
  2046. "Components": {
  2047. "Component_[10072276992632530128]": {
  2048. "$type": "EditorBoxShapeComponent",
  2049. "Id": 10072276992632530128,
  2050. "BoxShape": {
  2051. "Configuration": {
  2052. "Dimensions": [
  2053. 0.05000000074505806,
  2054. 0.25,
  2055. 0.019999999552965164
  2056. ]
  2057. }
  2058. }
  2059. },
  2060. "Component_[10201138083162334688]": {
  2061. "$type": "EditorVisibilityComponent",
  2062. "Id": 10201138083162334688
  2063. },
  2064. "Component_[11827333391354523329]": {
  2065. "$type": "EditorLockComponent",
  2066. "Id": 11827333391354523329
  2067. },
  2068. "Component_[12228903370962699127]": {
  2069. "$type": "EditorDisabledCompositionComponent",
  2070. "Id": 12228903370962699127
  2071. },
  2072. "Component_[15504315703201166119]": {
  2073. "$type": "EditorHingeJointComponent",
  2074. "Id": 15504315703201166119,
  2075. "Configuration": {
  2076. "Local Position": [
  2077. 0.0,
  2078. 0.125,
  2079. 0.0
  2080. ],
  2081. "Local Rotation": [
  2082. 0.0,
  2083. 90.0,
  2084. 0.0
  2085. ],
  2086. "Parent Entity": "Entity_[7828250486105]",
  2087. "Child Entity": "Entity_[7841135387993]"
  2088. },
  2089. "Angular Limit": {
  2090. "Standard Limit Configuration": {
  2091. "Is Limited": false
  2092. }
  2093. }
  2094. },
  2095. "Component_[16446233430311869812]": {
  2096. "$type": "EditorEntitySortComponent",
  2097. "Id": 16446233430311869812,
  2098. "Child Entity Order": [
  2099. "Entity_[3545413598627]",
  2100. "Entity_[7823955518809]"
  2101. ]
  2102. },
  2103. "Component_[16961735021762350669]": {
  2104. "$type": "EditorInspectorComponent",
  2105. "Id": 16961735021762350669
  2106. },
  2107. "Component_[17066958134621237266]": {
  2108. "$type": "EditorRigidBodyComponent",
  2109. "Id": 17066958134621237266,
  2110. "Configuration": {
  2111. "entityId": "",
  2112. "Compute Mass": false,
  2113. "Inertia tensor": {
  2114. "roll": 0.0,
  2115. "pitch": 0.0,
  2116. "yaw": 0.0,
  2117. "scale": 190.7790069580078
  2118. }
  2119. }
  2120. },
  2121. "Component_[17225545551989179568]": {
  2122. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2123. "Id": 17225545551989179568,
  2124. "Parent Entity": "Entity_[7828250486105]",
  2125. "Transform Data": {
  2126. "Translate": [
  2127. 0.0,
  2128. -0.25,
  2129. 0.0
  2130. ]
  2131. }
  2132. },
  2133. "Component_[18148885745937782194]": {
  2134. "$type": "EditorOnlyEntityComponent",
  2135. "Id": 18148885745937782194
  2136. },
  2137. "Component_[2468742816256310562]": {
  2138. "$type": "SelectionComponent",
  2139. "Id": 2468742816256310562
  2140. },
  2141. "Component_[7664405037824258890]": {
  2142. "$type": "EditorPendingCompositionComponent",
  2143. "Id": 7664405037824258890
  2144. },
  2145. "Component_[8962368090959361564]": {
  2146. "$type": "EditorEntityIconComponent",
  2147. "Id": 8962368090959361564
  2148. },
  2149. "Component_[9733239216798750378]": {
  2150. "$type": "EditorShapeColliderComponent",
  2151. "Id": 9733239216798750378,
  2152. "ColliderConfiguration": {
  2153. "MaterialSelection": {
  2154. "MaterialIds": [
  2155. {}
  2156. ]
  2157. }
  2158. },
  2159. "ShapeConfigs": [
  2160. {
  2161. "$type": "BoxShapeConfiguration",
  2162. "Configuration": [
  2163. 0.05000000074505806,
  2164. 0.25,
  2165. 0.019999999552965164
  2166. ]
  2167. }
  2168. ]
  2169. }
  2170. }
  2171. },
  2172. "Entity_[878238907811]": {
  2173. "Id": "Entity_[878238907811]",
  2174. "Name": "mesh",
  2175. "Components": {
  2176. "Component_[11844614008383352446]": {
  2177. "$type": "EditorDisabledCompositionComponent",
  2178. "Id": 11844614008383352446
  2179. },
  2180. "Component_[12079604184848720171]": {
  2181. "$type": "EditorEntitySortComponent",
  2182. "Id": 12079604184848720171
  2183. },
  2184. "Component_[14533338372902535872]": {
  2185. "$type": "EditorPendingCompositionComponent",
  2186. "Id": 14533338372902535872
  2187. },
  2188. "Component_[14550016641044125341]": {
  2189. "$type": "SelectionComponent",
  2190. "Id": 14550016641044125341
  2191. },
  2192. "Component_[1918642535601929198]": {
  2193. "$type": "EditorLockComponent",
  2194. "Id": 1918642535601929198
  2195. },
  2196. "Component_[2984658607931068733]": {
  2197. "$type": "EditorNonUniformScaleComponent",
  2198. "Id": 2984658607931068733,
  2199. "NonUniformScale": [
  2200. 0.10000000149011612,
  2201. 0.10000000149011612,
  2202. 0.10000000149011612
  2203. ]
  2204. },
  2205. "Component_[4589173332705901153]": {
  2206. "$type": "EditorOnlyEntityComponent",
  2207. "Id": 4589173332705901153
  2208. },
  2209. "Component_[6205943687787197495]": {
  2210. "$type": "EditorInspectorComponent",
  2211. "Id": 6205943687787197495
  2212. },
  2213. "Component_[6765072771561777269]": {
  2214. "$type": "EditorVisibilityComponent",
  2215. "Id": 6765072771561777269
  2216. },
  2217. "Component_[8295981538973511884]": {
  2218. "$type": "AZ::Render::EditorMeshComponent",
  2219. "Id": 8295981538973511884,
  2220. "Controller": {
  2221. "Configuration": {
  2222. "ModelAsset": {
  2223. "assetId": {
  2224. "guid": "{C15CD465-9589-56ED-945F-8416FA4798A3}",
  2225. "subId": 284301017
  2226. },
  2227. "assetHint": "objects/_primitives/_box_1x1.azmodel"
  2228. }
  2229. }
  2230. }
  2231. },
  2232. "Component_[849424832364595886]": {
  2233. "$type": "EditorEntityIconComponent",
  2234. "Id": 849424832364595886
  2235. },
  2236. "Component_[9391493484113851826]": {
  2237. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2238. "Id": 9391493484113851826,
  2239. "Parent Entity": "Entity_[7836840420697]"
  2240. }
  2241. }
  2242. }
  2243. }
  2244. }