robotic-arm-articulation.prefab 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649
  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_[1443068190329]"
  24. ]
  25. },
  26. "Component_[15230859088967841193]": {
  27. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  28. "Id": 15230859088967841193,
  29. "Parent Entity": ""
  30. },
  31. "Component_[16239496886950819870]": {
  32. "$type": "EditorDisabledCompositionComponent",
  33. "Id": 16239496886950819870
  34. },
  35. "Component_[16843824328835980604]": {
  36. "$type": "LocalViewBookmarkComponent",
  37. "Id": 16843824328835980604,
  38. "LocalBookmarkFileName": "robotic-arm_1671539006337141059.setreg"
  39. },
  40. "Component_[5688118765544765547]": {
  41. "$type": "EditorEntityIconComponent",
  42. "Id": 5688118765544765547
  43. },
  44. "Component_[7247035804068349658]": {
  45. "$type": "EditorPrefabComponent",
  46. "Id": 7247035804068349658
  47. },
  48. "Component_[9307224322037797205]": {
  49. "$type": "EditorLockComponent",
  50. "Id": 9307224322037797205
  51. },
  52. "Component_[9562516168917670048]": {
  53. "$type": "EditorVisibilityComponent",
  54. "Id": 9562516168917670048
  55. }
  56. }
  57. },
  58. "Entities": {
  59. "Entity_[1155164325235]": {
  60. "Id": "Entity_[1155164325235]",
  61. "Name": "Sun",
  62. "Components": {
  63. "Component_[13620450453324765907]": {
  64. "$type": "EditorLockComponent",
  65. "Id": 13620450453324765907
  66. },
  67. "Component_[2134313378593666258]": {
  68. "$type": "EditorInspectorComponent",
  69. "Id": 2134313378593666258
  70. },
  71. "Component_[234010807770404186]": {
  72. "$type": "EditorVisibilityComponent",
  73. "Id": 234010807770404186
  74. },
  75. "Component_[2970359110423865725]": {
  76. "$type": "EditorEntityIconComponent",
  77. "Id": 2970359110423865725
  78. },
  79. "Component_[3722854130373041803]": {
  80. "$type": "EditorOnlyEntityComponent",
  81. "Id": 3722854130373041803
  82. },
  83. "Component_[5992533738676323195]": {
  84. "$type": "EditorDisabledCompositionComponent",
  85. "Id": 5992533738676323195
  86. },
  87. "Component_[7378860763541895402]": {
  88. "$type": "AZ::Render::EditorDirectionalLightComponent",
  89. "Id": 7378860763541895402,
  90. "Controller": {
  91. "Configuration": {
  92. "Intensity": 1.0,
  93. "CameraEntityId": "",
  94. "ShadowFilterMethod": 1
  95. }
  96. }
  97. },
  98. "Component_[7892834440890947578]": {
  99. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  100. "Id": 7892834440890947578,
  101. "Parent Entity": "Entity_[1176639161715]",
  102. "Transform Data": {
  103. "Translate": [
  104. 0.0,
  105. 0.0,
  106. 13.487043380737305
  107. ],
  108. "Rotate": [
  109. -76.13099670410156,
  110. -0.847000002861023,
  111. -15.8100004196167
  112. ]
  113. }
  114. },
  115. "Component_[8599729549570828259]": {
  116. "$type": "EditorEntitySortComponent",
  117. "Id": 8599729549570828259
  118. },
  119. "Component_[952797371922080273]": {
  120. "$type": "EditorPendingCompositionComponent",
  121. "Id": 952797371922080273
  122. }
  123. }
  124. },
  125. "Entity_[1159459292531]": {
  126. "Id": "Entity_[1159459292531]",
  127. "Name": "Ground",
  128. "Components": {
  129. "Component_[12260880513256986252]": {
  130. "$type": "EditorEntityIconComponent",
  131. "Id": 12260880513256986252
  132. },
  133. "Component_[13711420870643673468]": {
  134. "$type": "EditorDisabledCompositionComponent",
  135. "Id": 13711420870643673468
  136. },
  137. "Component_[138002849734991713]": {
  138. "$type": "EditorOnlyEntityComponent",
  139. "Id": 138002849734991713
  140. },
  141. "Component_[13883352761969014787]": {
  142. "$type": "EditorStaticRigidBodyComponent",
  143. "Id": 13883352761969014787
  144. },
  145. "Component_[16578565737331764849]": {
  146. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  147. "Id": 16578565737331764849,
  148. "Parent Entity": "Entity_[1176639161715]"
  149. },
  150. "Component_[16919232076966545697]": {
  151. "$type": "EditorInspectorComponent",
  152. "Id": 16919232076966545697
  153. },
  154. "Component_[5182430712893438093]": {
  155. "$type": "EditorMaterialComponent",
  156. "Id": 5182430712893438093
  157. },
  158. "Component_[5245524694917323904]": {
  159. "$type": "EditorColliderComponent",
  160. "Id": 5245524694917323904,
  161. "ColliderConfiguration": {
  162. "Position": [
  163. 0.0,
  164. 0.0,
  165. -0.5
  166. ],
  167. "MaterialSlots": {
  168. "Slots": [
  169. {
  170. "Name": "Entire object"
  171. }
  172. ]
  173. }
  174. },
  175. "ShapeConfiguration": {
  176. "ShapeType": 1,
  177. "Box": {
  178. "Configuration": [
  179. 512.0,
  180. 512.0,
  181. 1.0
  182. ]
  183. }
  184. },
  185. "DebugDrawSettings": {
  186. "LocallyEnabled": false
  187. }
  188. },
  189. "Component_[5675108321710651991]": {
  190. "$type": "AZ::Render::EditorMeshComponent",
  191. "Id": 5675108321710651991,
  192. "Controller": {
  193. "Configuration": {
  194. "ModelAsset": {
  195. "assetId": {
  196. "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
  197. "subId": 277889906
  198. },
  199. "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
  200. }
  201. }
  202. }
  203. },
  204. "Component_[5681893399601237518]": {
  205. "$type": "EditorEntitySortComponent",
  206. "Id": 5681893399601237518
  207. },
  208. "Component_[592692962543397545]": {
  209. "$type": "EditorPendingCompositionComponent",
  210. "Id": 592692962543397545
  211. },
  212. "Component_[7090012899106946164]": {
  213. "$type": "EditorLockComponent",
  214. "Id": 7090012899106946164
  215. },
  216. "Component_[9410832619875640998]": {
  217. "$type": "EditorVisibilityComponent",
  218. "Id": 9410832619875640998
  219. }
  220. }
  221. },
  222. "Entity_[1168049227123]": {
  223. "Id": "Entity_[1168049227123]",
  224. "Name": "Grid",
  225. "Components": {
  226. "Component_[11443347433215807130]": {
  227. "$type": "EditorEntityIconComponent",
  228. "Id": 11443347433215807130
  229. },
  230. "Component_[14249419413039427459]": {
  231. "$type": "EditorInspectorComponent",
  232. "Id": 14249419413039427459
  233. },
  234. "Component_[15448581635946161318]": {
  235. "$type": "AZ::Render::EditorGridComponent",
  236. "Id": 15448581635946161318,
  237. "Controller": {
  238. "Configuration": {
  239. "primarySpacing": 4.0,
  240. "primaryColor": [
  241. 0.501960813999176,
  242. 0.501960813999176,
  243. 0.501960813999176
  244. ],
  245. "secondarySpacing": 0.5,
  246. "secondaryColor": [
  247. 0.250980406999588,
  248. 0.250980406999588,
  249. 0.250980406999588
  250. ]
  251. }
  252. }
  253. },
  254. "Component_[1843303322527297409]": {
  255. "$type": "EditorDisabledCompositionComponent",
  256. "Id": 1843303322527297409
  257. },
  258. "Component_[380249072065273654]": {
  259. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  260. "Id": 380249072065273654,
  261. "Parent Entity": "Entity_[1176639161715]"
  262. },
  263. "Component_[7476660583684339787]": {
  264. "$type": "EditorPendingCompositionComponent",
  265. "Id": 7476660583684339787
  266. },
  267. "Component_[7557626501215118375]": {
  268. "$type": "EditorEntitySortComponent",
  269. "Id": 7557626501215118375
  270. },
  271. "Component_[7984048488947365511]": {
  272. "$type": "EditorVisibilityComponent",
  273. "Id": 7984048488947365511
  274. },
  275. "Component_[8118181039276487398]": {
  276. "$type": "EditorOnlyEntityComponent",
  277. "Id": 8118181039276487398
  278. },
  279. "Component_[9189909764215270515]": {
  280. "$type": "EditorLockComponent",
  281. "Id": 9189909764215270515
  282. }
  283. }
  284. },
  285. "Entity_[1176639161715]": {
  286. "Id": "Entity_[1176639161715]",
  287. "Name": "Atom Default Environment",
  288. "Components": {
  289. "Component_[10757302973393310045]": {
  290. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  291. "Id": 10757302973393310045,
  292. "Parent Entity": "Entity_[1146574390643]"
  293. },
  294. "Component_[14505817420424255464]": {
  295. "$type": "EditorInspectorComponent",
  296. "Id": 14505817420424255464,
  297. "ComponentOrderEntryArray": [
  298. {
  299. "ComponentId": 10757302973393310045
  300. }
  301. ]
  302. },
  303. "Component_[14988041764659020032]": {
  304. "$type": "EditorLockComponent",
  305. "Id": 14988041764659020032
  306. },
  307. "Component_[15900837685796817138]": {
  308. "$type": "EditorVisibilityComponent",
  309. "Id": 15900837685796817138
  310. },
  311. "Component_[3298767348226484884]": {
  312. "$type": "EditorOnlyEntityComponent",
  313. "Id": 3298767348226484884
  314. },
  315. "Component_[4076975109609220594]": {
  316. "$type": "EditorPendingCompositionComponent",
  317. "Id": 4076975109609220594
  318. },
  319. "Component_[5679760548946028854]": {
  320. "$type": "EditorDisabledCompositionComponent",
  321. "Id": 5679760548946028854
  322. },
  323. "Component_[5855590796136709437]": {
  324. "$type": "EditorEntitySortComponent",
  325. "Id": 5855590796136709437,
  326. "Child Entity Order": [
  327. "Entity_[5253935932561]",
  328. "Entity_[1155164325235]",
  329. "Entity_[1180934129011]",
  330. "Entity_[1168049227123]",
  331. "Entity_[1159459292531]"
  332. ]
  333. },
  334. "Component_[9277695270015777859]": {
  335. "$type": "EditorEntityIconComponent",
  336. "Id": 9277695270015777859
  337. }
  338. }
  339. },
  340. "Entity_[1180934129011]": {
  341. "Id": "Entity_[1180934129011]",
  342. "Name": "Global Sky",
  343. "Components": {
  344. "Component_[11231930600558681245]": {
  345. "$type": "AZ::Render::EditorHDRiSkyboxComponent",
  346. "Id": 11231930600558681245,
  347. "Controller": {
  348. "Configuration": {
  349. "CubemapAsset": {
  350. "assetId": {
  351. "guid": "{215E47FD-D181-5832-B1AB-91673ABF6399}",
  352. "subId": 1000
  353. },
  354. "assetHint": "lightingpresets/highcontrast/goegap_4k_skyboxcm.exr.streamingimage"
  355. }
  356. }
  357. }
  358. },
  359. "Component_[1428633914413949476]": {
  360. "$type": "EditorLockComponent",
  361. "Id": 1428633914413949476
  362. },
  363. "Component_[14936200426671614999]": {
  364. "$type": "AZ::Render::EditorImageBasedLightComponent",
  365. "Id": 14936200426671614999,
  366. "Controller": {
  367. "Configuration": {
  368. "diffuseImageAsset": {
  369. "assetId": {
  370. "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
  371. "subId": 3000
  372. },
  373. "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
  374. },
  375. "specularImageAsset": {
  376. "assetId": {
  377. "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
  378. "subId": 2000
  379. },
  380. "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
  381. }
  382. }
  383. }
  384. },
  385. "Component_[14994774102579326069]": {
  386. "$type": "EditorDisabledCompositionComponent",
  387. "Id": 14994774102579326069
  388. },
  389. "Component_[15417479889044493340]": {
  390. "$type": "EditorPendingCompositionComponent",
  391. "Id": 15417479889044493340
  392. },
  393. "Component_[15826613364991382688]": {
  394. "$type": "EditorEntitySortComponent",
  395. "Id": 15826613364991382688
  396. },
  397. "Component_[1665003113283562343]": {
  398. "$type": "EditorOnlyEntityComponent",
  399. "Id": 1665003113283562343
  400. },
  401. "Component_[3704934735944502280]": {
  402. "$type": "EditorEntityIconComponent",
  403. "Id": 3704934735944502280
  404. },
  405. "Component_[5698542331457326479]": {
  406. "$type": "EditorVisibilityComponent",
  407. "Id": 5698542331457326479
  408. },
  409. "Component_[6644513399057217122]": {
  410. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  411. "Id": 6644513399057217122,
  412. "Parent Entity": "Entity_[1176639161715]"
  413. },
  414. "Component_[931091830724002070]": {
  415. "$type": "EditorInspectorComponent",
  416. "Id": 931091830724002070
  417. }
  418. }
  419. },
  420. "Entity_[1443068190329]": {
  421. "Id": "Entity_[1443068190329]",
  422. "Name": "panda",
  423. "Components": {
  424. "Component_[12358832423608736683]": {
  425. "$type": "EditorVisibilityComponent",
  426. "Id": 12358832423608736683
  427. },
  428. "Component_[1274189681831648722]": {
  429. "$type": "EditorLockComponent",
  430. "Id": 1274189681831648722
  431. },
  432. "Component_[14937191109674505901]": {
  433. "$type": "EditorPendingCompositionComponent",
  434. "Id": 14937191109674505901
  435. },
  436. "Component_[15216907759427825252]": {
  437. "$type": "EditorInspectorComponent",
  438. "Id": 15216907759427825252
  439. },
  440. "Component_[298461213799198995]": {
  441. "$type": "EditorEntityIconComponent",
  442. "Id": 298461213799198995
  443. },
  444. "Component_[3969252952258928548]": {
  445. "$type": "EditorDisabledCompositionComponent",
  446. "Id": 3969252952258928548
  447. },
  448. "Component_[465294739564050186]": {
  449. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  450. "Id": 465294739564050186,
  451. "Parent Entity": "Entity_[1146574390643]"
  452. },
  453. "Component_[5207792897692430596]": {
  454. "$type": "EditorEntitySortComponent",
  455. "Id": 5207792897692430596,
  456. "Child Entity Order": [
  457. "Entity_[1550442372729]"
  458. ]
  459. },
  460. "Component_[8639458971073745730]": {
  461. "$type": "EditorOnlyEntityComponent",
  462. "Id": 8639458971073745730
  463. }
  464. }
  465. },
  466. "Entity_[1447363157625]": {
  467. "Id": "Entity_[1447363157625]",
  468. "Name": "panda_hand",
  469. "Components": {
  470. "Component_[12551621526998967469]": {
  471. "$type": "EditorEntityIconComponent",
  472. "Id": 12551621526998967469
  473. },
  474. "Component_[13154810072353919898]": {
  475. "$type": "EditorArticulationLinkComponent",
  476. "Id": 13154810072353919898
  477. },
  478. "Component_[13402524642038966171]": {
  479. "$type": "EditorEntitySortComponent",
  480. "Id": 13402524642038966171,
  481. "Child Entity Order": [
  482. "Entity_[1490312830585]",
  483. "Entity_[1507492699769]",
  484. "Entity_[1533262503545]",
  485. "Entity_[1498902765177]"
  486. ]
  487. },
  488. "Component_[14327394426014884890]": {
  489. "$type": "EditorOnlyEntityComponent",
  490. "Id": 14327394426014884890
  491. },
  492. "Component_[14907218637753709498]": {
  493. "$type": "EditorLockComponent",
  494. "Id": 14907218637753709498
  495. },
  496. "Component_[1747436092034981914]": {
  497. "$type": "EditorPendingCompositionComponent",
  498. "Id": 1747436092034981914
  499. },
  500. "Component_[2510677924607121608]": {
  501. "$type": "EditorInspectorComponent",
  502. "Id": 2510677924607121608
  503. },
  504. "Component_[3636147994185355839]": {
  505. "$type": "EditorVisibilityComponent",
  506. "Id": 3636147994185355839
  507. },
  508. "Component_[3653972652814557705]": {
  509. "$type": "EditorDisabledCompositionComponent",
  510. "Id": 3653972652814557705,
  511. "DisabledComponents": [
  512. {
  513. "$type": "EditorColliderComponent",
  514. "Id": 12527173394158692186,
  515. "ColliderConfiguration": {
  516. "MaterialSlots": {
  517. "Slots": [
  518. {
  519. "Name": "DefaultMaterial"
  520. }
  521. ]
  522. }
  523. },
  524. "ShapeConfiguration": {
  525. "PhysicsAsset": {
  526. "Asset": {
  527. "assetId": {
  528. "guid": "{0F8D8030-40D0-50BC-AE6D-DBFDB1423A01}",
  529. "subId": 3467673227
  530. },
  531. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/hand.pxmesh"
  532. },
  533. "Configuration": {
  534. "PhysicsAsset": {
  535. "assetId": {
  536. "guid": "{0F8D8030-40D0-50BC-AE6D-DBFDB1423A01}",
  537. "subId": 3467673227
  538. },
  539. "loadBehavior": "QueueLoad",
  540. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/hand.pxmesh"
  541. },
  542. "UseMaterialsFromAsset": false
  543. }
  544. }
  545. }
  546. }
  547. ]
  548. },
  549. "Component_[9416643980828405623]": {
  550. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  551. "Id": 9416643980828405623,
  552. "Parent Entity": "Entity_[1520377601657]",
  553. "Transform Data": {
  554. "Rotate": [
  555. 2.9822420032597774e-13,
  556. 3.438553424200269e-13,
  557. -8.948826745840486e-28
  558. ]
  559. }
  560. }
  561. }
  562. },
  563. "Entity_[1451658124921]": {
  564. "Id": "Entity_[1451658124921]",
  565. "Name": "panda_link5",
  566. "Components": {
  567. "Component_[11146083690564568129]": {
  568. "$type": "EditorVisibilityComponent",
  569. "Id": 11146083690564568129
  570. },
  571. "Component_[16029546392385670672]": {
  572. "$type": "EditorDisabledCompositionComponent",
  573. "Id": 16029546392385670672
  574. },
  575. "Component_[1845866248095674128]": {
  576. "$type": "EditorMeshColliderComponent",
  577. "Id": 1845866248095674128,
  578. "ColliderConfiguration": {
  579. "MaterialSlots": {
  580. "Slots": [
  581. {
  582. "Name": "DefaultMaterial"
  583. }
  584. ]
  585. }
  586. },
  587. "ShapeConfiguration": {
  588. "PhysicsAsset": {
  589. "Asset": {
  590. "assetId": {
  591. "guid": "{CB30723D-12BA-590D-91D8-6A2E13B443BF}",
  592. "subId": 3519822991
  593. },
  594. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link5.pxmesh"
  595. },
  596. "Configuration": {
  597. "PhysicsAsset": {
  598. "assetId": {
  599. "guid": "{CB30723D-12BA-590D-91D8-6A2E13B443BF}",
  600. "subId": 3519822991
  601. },
  602. "loadBehavior": "QueueLoad",
  603. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link5.pxmesh"
  604. },
  605. "UseMaterialsFromAsset": false
  606. }
  607. }
  608. }
  609. },
  610. "Component_[2296827166106929870]": {
  611. "$type": "EditorEntitySortComponent",
  612. "Id": 2296827166106929870,
  613. "Child Entity Order": [
  614. "Entity_[1494607797881]",
  615. "Entity_[1516082634361]"
  616. ]
  617. },
  618. "Component_[2671723692007071615]": {
  619. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  620. "Id": 2671723692007071615,
  621. "Parent Entity": "Entity_[1511787667065]",
  622. "Transform Data": {
  623. "Translate": [
  624. -0.08249998837709427,
  625. 0.3840000629425049,
  626. 1.3732909565078444e-7
  627. ],
  628. "Rotate": [
  629. -89.9999771118164,
  630. 0.0,
  631. 0.0
  632. ]
  633. }
  634. },
  635. "Component_[2954374947364955573]": {
  636. "$type": "EditorArticulationLinkComponent",
  637. "Id": 2954374947364955573,
  638. "ArticulationConfiguration": {
  639. "Mass": 2.6226420402526855,
  640. "Centre of mass offset": [
  641. 0.0,
  642. 0.061000000685453415,
  643. -0.10409999638795853
  644. ],
  645. "Articulation Joint Type": 1,
  646. "Local Rotation": [
  647. 0.0,
  648. -90.0,
  649. 0.0
  650. ],
  651. "Angular Limit Negative": -166.0,
  652. "Angular Limit Positive": 166.0
  653. }
  654. },
  655. "Component_[5101381396165317109]": {
  656. "$type": "EditorPendingCompositionComponent",
  657. "Id": 5101381396165317109
  658. },
  659. "Component_[5256968178503014931]": {
  660. "$type": "EditorOnlyEntityComponent",
  661. "Id": 5256968178503014931
  662. },
  663. "Component_[7004057836086193338]": {
  664. "$type": "EditorInspectorComponent",
  665. "Id": 7004057836086193338
  666. },
  667. "Component_[7957954241301087468]": {
  668. "$type": "EditorLockComponent",
  669. "Id": 7957954241301087468
  670. },
  671. "Component_[8094060465522202108]": {
  672. "$type": "GenericComponentWrapper",
  673. "Id": 8094060465522202108,
  674. "m_template": {
  675. "$type": "ImGuiJointDemo"
  676. }
  677. },
  678. "Component_[946063945878607995]": {
  679. "$type": "EditorEntityIconComponent",
  680. "Id": 946063945878607995
  681. }
  682. }
  683. },
  684. "Entity_[1455953092217]": {
  685. "Id": "Entity_[1455953092217]",
  686. "Name": "panda_leftfinger_visual",
  687. "Components": {
  688. "Component_[13811571509749743189]": {
  689. "$type": "EditorLockComponent",
  690. "Id": 13811571509749743189
  691. },
  692. "Component_[15201822486803307758]": {
  693. "$type": "AZ::Render::EditorMeshComponent",
  694. "Id": 15201822486803307758,
  695. "Controller": {
  696. "Configuration": {
  697. "ModelAsset": {
  698. "assetId": {
  699. "guid": "{3FD33201-6283-5104-80D7-34AD0DCEF99C}",
  700. "subId": 279808703
  701. },
  702. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/finger.azmodel"
  703. }
  704. }
  705. }
  706. },
  707. "Component_[17912093847931097253]": {
  708. "$type": "EditorPendingCompositionComponent",
  709. "Id": 17912093847931097253
  710. },
  711. "Component_[18137102233943031321]": {
  712. "$type": "EditorOnlyEntityComponent",
  713. "Id": 18137102233943031321
  714. },
  715. "Component_[18230585574590685193]": {
  716. "$type": "EditorInspectorComponent",
  717. "Id": 18230585574590685193
  718. },
  719. "Component_[4640473479684852658]": {
  720. "$type": "EditorDisabledCompositionComponent",
  721. "Id": 4640473479684852658
  722. },
  723. "Component_[4641901124960453463]": {
  724. "$type": "EditorEntityIconComponent",
  725. "Id": 4641901124960453463
  726. },
  727. "Component_[6926860558467937457]": {
  728. "$type": "EditorEntitySortComponent",
  729. "Id": 6926860558467937457
  730. },
  731. "Component_[8659698482583807911]": {
  732. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  733. "Id": 8659698482583807911,
  734. "Parent Entity": "Entity_[1533262503545]"
  735. },
  736. "Component_[9996370531107794697]": {
  737. "$type": "EditorVisibilityComponent",
  738. "Id": 9996370531107794697
  739. }
  740. }
  741. },
  742. "Entity_[1460248059513]": {
  743. "Id": "Entity_[1460248059513]",
  744. "Name": "panda_link1",
  745. "Components": {
  746. "Component_[1026580191358270278]": {
  747. "$type": "EditorPendingCompositionComponent",
  748. "Id": 1026580191358270278
  749. },
  750. "Component_[10604888746672015994]": {
  751. "$type": "EditorVisibilityComponent",
  752. "Id": 10604888746672015994
  753. },
  754. "Component_[11501414974256442375]": {
  755. "$type": "GenericComponentWrapper",
  756. "Id": 11501414974256442375,
  757. "m_template": {
  758. "$type": "ImGuiJointDemo"
  759. }
  760. },
  761. "Component_[13021556176595338229]": {
  762. "$type": "EditorOnlyEntityComponent",
  763. "Id": 13021556176595338229
  764. },
  765. "Component_[14094898748846434315]": {
  766. "$type": "EditorLockComponent",
  767. "Id": 14094898748846434315
  768. },
  769. "Component_[14601021287347470989]": {
  770. "$type": "EditorArticulationLinkComponent",
  771. "Id": 14601021287347470989,
  772. "ArticulationConfiguration": {
  773. "Mass": 2.6433169841766357,
  774. "Centre of mass offset": [
  775. 0.0,
  776. -0.03249580040574074,
  777. -0.06758180260658264
  778. ],
  779. "Articulation Joint Type": 1,
  780. "Local Rotation": [
  781. 0.0,
  782. -90.0,
  783. 0.0
  784. ],
  785. "Angular Limit Negative": -166.0,
  786. "Angular Limit Positive": 166.0
  787. }
  788. },
  789. "Component_[15902421467411022820]": {
  790. "$type": "EditorEntityIconComponent",
  791. "Id": 15902421467411022820
  792. },
  793. "Component_[17055220683859828516]": {
  794. "$type": "EditorEntitySortComponent",
  795. "Id": 17055220683859828516,
  796. "Child Entity Order": [
  797. "Entity_[1481722895993]",
  798. "Entity_[1546147405433]"
  799. ]
  800. },
  801. "Component_[5967902799324868464]": {
  802. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  803. "Id": 5967902799324868464,
  804. "Parent Entity": "Entity_[1528967536249]",
  805. "Transform Data": {
  806. "Translate": [
  807. 0.0,
  808. 0.0,
  809. 0.3330000042915344
  810. ]
  811. }
  812. },
  813. "Component_[749807106692815373]": {
  814. "$type": "EditorInspectorComponent",
  815. "Id": 749807106692815373
  816. },
  817. "Component_[7651470095727410225]": {
  818. "$type": "EditorMeshColliderComponent",
  819. "Id": 7651470095727410225,
  820. "ColliderConfiguration": {
  821. "MaterialSlots": {
  822. "Slots": [
  823. {
  824. "Name": "DefaultMaterial"
  825. }
  826. ]
  827. }
  828. },
  829. "ShapeConfiguration": {
  830. "PhysicsAsset": {
  831. "Asset": {
  832. "assetId": {
  833. "guid": "{4D8BD2BC-0C41-58CD-B879-B129A8644D36}",
  834. "subId": 3673033472
  835. },
  836. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link1.pxmesh"
  837. },
  838. "Configuration": {
  839. "PhysicsAsset": {
  840. "assetId": {
  841. "guid": "{4D8BD2BC-0C41-58CD-B879-B129A8644D36}",
  842. "subId": 3673033472
  843. },
  844. "loadBehavior": "QueueLoad",
  845. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link1.pxmesh"
  846. },
  847. "UseMaterialsFromAsset": false
  848. }
  849. }
  850. }
  851. },
  852. "Component_[7658646984313827532]": {
  853. "$type": "EditorDisabledCompositionComponent",
  854. "Id": 7658646984313827532
  855. }
  856. }
  857. },
  858. "Entity_[1464543026809]": {
  859. "Id": "Entity_[1464543026809]",
  860. "Name": "panda_rightfinger_visual",
  861. "Components": {
  862. "Component_[10427126601697002200]": {
  863. "$type": "EditorPendingCompositionComponent",
  864. "Id": 10427126601697002200
  865. },
  866. "Component_[10689701807611894787]": {
  867. "$type": "AZ::Render::EditorMeshComponent",
  868. "Id": 10689701807611894787,
  869. "Controller": {
  870. "Configuration": {
  871. "ModelAsset": {
  872. "assetId": {
  873. "guid": "{3FD33201-6283-5104-80D7-34AD0DCEF99C}",
  874. "subId": 279808703
  875. },
  876. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/finger.azmodel"
  877. }
  878. }
  879. }
  880. },
  881. "Component_[13864387599980986616]": {
  882. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  883. "Id": 13864387599980986616,
  884. "Parent Entity": "Entity_[1498902765177]",
  885. "Transform Data": {
  886. "Rotate": [
  887. 0.0,
  888. 0.0,
  889. 180.0
  890. ]
  891. }
  892. },
  893. "Component_[14849482791957566358]": {
  894. "$type": "EditorEntityIconComponent",
  895. "Id": 14849482791957566358
  896. },
  897. "Component_[15740343562745812959]": {
  898. "$type": "EditorDisabledCompositionComponent",
  899. "Id": 15740343562745812959
  900. },
  901. "Component_[17958433759910135046]": {
  902. "$type": "EditorOnlyEntityComponent",
  903. "Id": 17958433759910135046
  904. },
  905. "Component_[18262241756789109341]": {
  906. "$type": "EditorInspectorComponent",
  907. "Id": 18262241756789109341
  908. },
  909. "Component_[3260035828538141562]": {
  910. "$type": "EditorVisibilityComponent",
  911. "Id": 3260035828538141562
  912. },
  913. "Component_[5734562379059832260]": {
  914. "$type": "EditorEntitySortComponent",
  915. "Id": 5734562379059832260
  916. },
  917. "Component_[6043899250469168749]": {
  918. "$type": "EditorLockComponent",
  919. "Id": 6043899250469168749
  920. }
  921. }
  922. },
  923. "Entity_[1468837994105]": {
  924. "Id": "Entity_[1468837994105]",
  925. "Name": "panda_link0_visual",
  926. "Components": {
  927. "Component_[10825680498731110401]": {
  928. "$type": "EditorVisibilityComponent",
  929. "Id": 10825680498731110401
  930. },
  931. "Component_[12362213493842313231]": {
  932. "$type": "EditorDisabledCompositionComponent",
  933. "Id": 12362213493842313231
  934. },
  935. "Component_[12516294397900397214]": {
  936. "$type": "AZ::Render::EditorMeshComponent",
  937. "Id": 12516294397900397214,
  938. "Controller": {
  939. "Configuration": {
  940. "ModelAsset": {
  941. "assetId": {
  942. "guid": "{3842707A-4020-555F-B569-937D34857A04}",
  943. "subId": 274182450
  944. },
  945. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link0.azmodel"
  946. }
  947. }
  948. }
  949. },
  950. "Component_[13167613343964391547]": {
  951. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  952. "Id": 13167613343964391547,
  953. "Parent Entity": "Entity_[1528967536249]"
  954. },
  955. "Component_[14604114869224247260]": {
  956. "$type": "EditorEntitySortComponent",
  957. "Id": 14604114869224247260
  958. },
  959. "Component_[15669940640302432085]": {
  960. "$type": "EditorEntityIconComponent",
  961. "Id": 15669940640302432085
  962. },
  963. "Component_[16044878493014329073]": {
  964. "$type": "EditorInspectorComponent",
  965. "Id": 16044878493014329073
  966. },
  967. "Component_[16467534599593027034]": {
  968. "$type": "EditorOnlyEntityComponent",
  969. "Id": 16467534599593027034
  970. },
  971. "Component_[785659650618515401]": {
  972. "$type": "EditorPendingCompositionComponent",
  973. "Id": 785659650618515401
  974. },
  975. "Component_[9873929354130186388]": {
  976. "$type": "EditorLockComponent",
  977. "Id": 9873929354130186388
  978. }
  979. }
  980. },
  981. "Entity_[1473132961401]": {
  982. "Id": "Entity_[1473132961401]",
  983. "Name": "panda_link6_visual",
  984. "Components": {
  985. "Component_[10481057607952329087]": {
  986. "$type": "AZ::Render::EditorMeshComponent",
  987. "Id": 10481057607952329087,
  988. "Controller": {
  989. "Configuration": {
  990. "ModelAsset": {
  991. "assetId": {
  992. "guid": "{CE66D5E5-09AC-593D-BDAC-1B5AB8570E7C}",
  993. "subId": 271848455
  994. },
  995. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link6.azmodel"
  996. }
  997. }
  998. }
  999. },
  1000. "Component_[12389245641422761500]": {
  1001. "$type": "EditorOnlyEntityComponent",
  1002. "Id": 12389245641422761500
  1003. },
  1004. "Component_[13062250255461171583]": {
  1005. "$type": "EditorPendingCompositionComponent",
  1006. "Id": 13062250255461171583
  1007. },
  1008. "Component_[13073738493660970633]": {
  1009. "$type": "EditorVisibilityComponent",
  1010. "Id": 13073738493660970633
  1011. },
  1012. "Component_[15992495973345264086]": {
  1013. "$type": "EditorDisabledCompositionComponent",
  1014. "Id": 15992495973345264086
  1015. },
  1016. "Component_[16758064438201464483]": {
  1017. "$type": "EditorEntitySortComponent",
  1018. "Id": 16758064438201464483
  1019. },
  1020. "Component_[4819945248226536697]": {
  1021. "$type": "EditorInspectorComponent",
  1022. "Id": 4819945248226536697
  1023. },
  1024. "Component_[5775968904229939613]": {
  1025. "$type": "EditorEntityIconComponent",
  1026. "Id": 5775968904229939613
  1027. },
  1028. "Component_[7263909256782742526]": {
  1029. "$type": "EditorLockComponent",
  1030. "Id": 7263909256782742526
  1031. },
  1032. "Component_[7433508156475950836]": {
  1033. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1034. "Id": 7433508156475950836,
  1035. "Parent Entity": "Entity_[1516082634361]"
  1036. }
  1037. }
  1038. },
  1039. "Entity_[1477427928697]": {
  1040. "Id": "Entity_[1477427928697]",
  1041. "Name": "panda_link3_visual",
  1042. "Components": {
  1043. "Component_[10719522543450535245]": {
  1044. "$type": "EditorLockComponent",
  1045. "Id": 10719522543450535245
  1046. },
  1047. "Component_[12679040307807472041]": {
  1048. "$type": "EditorInspectorComponent",
  1049. "Id": 12679040307807472041
  1050. },
  1051. "Component_[1489495166770715923]": {
  1052. "$type": "EditorVisibilityComponent",
  1053. "Id": 1489495166770715923
  1054. },
  1055. "Component_[1542893064856696086]": {
  1056. "$type": "AZ::Render::EditorMeshComponent",
  1057. "Id": 1542893064856696086,
  1058. "Controller": {
  1059. "Configuration": {
  1060. "ModelAsset": {
  1061. "assetId": {
  1062. "guid": "{6A81A808-B5F5-54C1-9B85-B3AB3912AB3A}",
  1063. "subId": 274653320
  1064. },
  1065. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link3.azmodel"
  1066. }
  1067. }
  1068. }
  1069. },
  1070. "Component_[16203591625115569827]": {
  1071. "$type": "EditorDisabledCompositionComponent",
  1072. "Id": 16203591625115569827
  1073. },
  1074. "Component_[1668935785088600792]": {
  1075. "$type": "EditorEntitySortComponent",
  1076. "Id": 1668935785088600792
  1077. },
  1078. "Component_[16808104400905918500]": {
  1079. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1080. "Id": 16808104400905918500,
  1081. "Parent Entity": "Entity_[1486017863289]"
  1082. },
  1083. "Component_[2001918989029160751]": {
  1084. "$type": "EditorOnlyEntityComponent",
  1085. "Id": 2001918989029160751
  1086. },
  1087. "Component_[8560507514947751954]": {
  1088. "$type": "EditorEntityIconComponent",
  1089. "Id": 8560507514947751954
  1090. },
  1091. "Component_[8946061601820481143]": {
  1092. "$type": "EditorPendingCompositionComponent",
  1093. "Id": 8946061601820481143
  1094. }
  1095. }
  1096. },
  1097. "Entity_[1481722895993]": {
  1098. "Id": "Entity_[1481722895993]",
  1099. "Name": "panda_link1_visual",
  1100. "Components": {
  1101. "Component_[10717308837344584694]": {
  1102. "$type": "EditorPendingCompositionComponent",
  1103. "Id": 10717308837344584694
  1104. },
  1105. "Component_[17180248397752904708]": {
  1106. "$type": "AZ::Render::EditorMeshComponent",
  1107. "Id": 17180248397752904708,
  1108. "Controller": {
  1109. "Configuration": {
  1110. "ModelAsset": {
  1111. "assetId": {
  1112. "guid": "{137E3661-B18A-5E9E-A3C3-200C0686A3B6}",
  1113. "subId": 273711524
  1114. },
  1115. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link1.azmodel"
  1116. }
  1117. }
  1118. }
  1119. },
  1120. "Component_[17772052042030128999]": {
  1121. "$type": "EditorLockComponent",
  1122. "Id": 17772052042030128999
  1123. },
  1124. "Component_[202003433758858498]": {
  1125. "$type": "EditorInspectorComponent",
  1126. "Id": 202003433758858498
  1127. },
  1128. "Component_[3821965428177115719]": {
  1129. "$type": "EditorDisabledCompositionComponent",
  1130. "Id": 3821965428177115719
  1131. },
  1132. "Component_[5338863740674084556]": {
  1133. "$type": "EditorEntitySortComponent",
  1134. "Id": 5338863740674084556
  1135. },
  1136. "Component_[5689269783850696894]": {
  1137. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1138. "Id": 5689269783850696894,
  1139. "Parent Entity": "Entity_[1460248059513]"
  1140. },
  1141. "Component_[6495449098420195088]": {
  1142. "$type": "EditorOnlyEntityComponent",
  1143. "Id": 6495449098420195088
  1144. },
  1145. "Component_[696774216364958126]": {
  1146. "$type": "EditorVisibilityComponent",
  1147. "Id": 696774216364958126
  1148. },
  1149. "Component_[7224194133862218263]": {
  1150. "$type": "EditorEntityIconComponent",
  1151. "Id": 7224194133862218263
  1152. }
  1153. }
  1154. },
  1155. "Entity_[1486017863289]": {
  1156. "Id": "Entity_[1486017863289]",
  1157. "Name": "panda_link3",
  1158. "Components": {
  1159. "Component_[11069307272851201575]": {
  1160. "$type": "EditorArticulationLinkComponent",
  1161. "Id": 11069307272851201575,
  1162. "ArticulationConfiguration": {
  1163. "Mass": 2.3293709754943848,
  1164. "Centre of mass offset": [
  1165. 0.04698000103235245,
  1166. 0.03162999823689461,
  1167. -0.031700000166893005
  1168. ],
  1169. "Articulation Joint Type": 1,
  1170. "Local Rotation": [
  1171. 0.0,
  1172. -90.0,
  1173. 0.0
  1174. ],
  1175. "Angular Limit Negative": -166.0,
  1176. "Angular Limit Positive": 166.0
  1177. }
  1178. },
  1179. "Component_[11727172097126435982]": {
  1180. "$type": "EditorMeshColliderComponent",
  1181. "Id": 11727172097126435982,
  1182. "ColliderConfiguration": {
  1183. "MaterialSlots": {
  1184. "Slots": [
  1185. {
  1186. "Name": "DefaultMaterial"
  1187. }
  1188. ]
  1189. }
  1190. },
  1191. "ShapeConfiguration": {
  1192. "PhysicsAsset": {
  1193. "Asset": {
  1194. "assetId": {
  1195. "guid": "{8CC80F0B-5096-5651-8098-D988869E2383}",
  1196. "subId": 3772333143
  1197. },
  1198. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link3.pxmesh"
  1199. },
  1200. "Configuration": {
  1201. "PhysicsAsset": {
  1202. "assetId": {
  1203. "guid": "{8CC80F0B-5096-5651-8098-D988869E2383}",
  1204. "subId": 3772333143
  1205. },
  1206. "loadBehavior": "QueueLoad",
  1207. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link3.pxmesh"
  1208. },
  1209. "UseMaterialsFromAsset": false
  1210. }
  1211. }
  1212. }
  1213. },
  1214. "Component_[13077654605065003917]": {
  1215. "$type": "EditorInspectorComponent",
  1216. "Id": 13077654605065003917
  1217. },
  1218. "Component_[13728954510791227418]": {
  1219. "$type": "EditorLockComponent",
  1220. "Id": 13728954510791227418
  1221. },
  1222. "Component_[14907715773005187526]": {
  1223. "$type": "EditorEntityIconComponent",
  1224. "Id": 14907715773005187526
  1225. },
  1226. "Component_[15328952216984693045]": {
  1227. "$type": "EditorVisibilityComponent",
  1228. "Id": 15328952216984693045
  1229. },
  1230. "Component_[4134176143233927709]": {
  1231. "$type": "EditorPendingCompositionComponent",
  1232. "Id": 4134176143233927709
  1233. },
  1234. "Component_[4892654314170343746]": {
  1235. "$type": "GenericComponentWrapper",
  1236. "Id": 4892654314170343746,
  1237. "m_template": {
  1238. "$type": "ImGuiJointDemo"
  1239. }
  1240. },
  1241. "Component_[6173638295034155689]": {
  1242. "$type": "EditorDisabledCompositionComponent",
  1243. "Id": 6173638295034155689
  1244. },
  1245. "Component_[6222086343109095048]": {
  1246. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1247. "Id": 6222086343109095048,
  1248. "Parent Entity": "Entity_[1546147405433]",
  1249. "Transform Data": {
  1250. "Translate": [
  1251. 0.0,
  1252. -0.31599998474121094,
  1253. 4.708766709882184e-8
  1254. ],
  1255. "Rotate": [
  1256. 89.99998474121094,
  1257. 0.0,
  1258. 0.0
  1259. ]
  1260. }
  1261. },
  1262. "Component_[6510318466342434784]": {
  1263. "$type": "EditorOnlyEntityComponent",
  1264. "Id": 6510318466342434784
  1265. },
  1266. "Component_[8594347468316697810]": {
  1267. "$type": "EditorEntitySortComponent",
  1268. "Id": 8594347468316697810,
  1269. "Child Entity Order": [
  1270. "Entity_[1477427928697]",
  1271. "Entity_[1511787667065]"
  1272. ]
  1273. }
  1274. }
  1275. },
  1276. "Entity_[1490312830585]": {
  1277. "Id": "Entity_[1490312830585]",
  1278. "Name": "panda_hand_visual",
  1279. "Components": {
  1280. "Component_[11211061689771920349]": {
  1281. "$type": "EditorInspectorComponent",
  1282. "Id": 11211061689771920349
  1283. },
  1284. "Component_[12203146110749621458]": {
  1285. "$type": "EditorEntitySortComponent",
  1286. "Id": 12203146110749621458
  1287. },
  1288. "Component_[15651020913592034875]": {
  1289. "$type": "EditorPendingCompositionComponent",
  1290. "Id": 15651020913592034875
  1291. },
  1292. "Component_[1651217386630922893]": {
  1293. "$type": "AZ::Render::EditorMeshComponent",
  1294. "Id": 1651217386630922893,
  1295. "Controller": {
  1296. "Configuration": {
  1297. "ModelAsset": {
  1298. "assetId": {
  1299. "guid": "{0439E4F6-C733-55C6-BFD3-7F57D941CA58}",
  1300. "subId": 274875023
  1301. },
  1302. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/hand.azmodel"
  1303. }
  1304. }
  1305. }
  1306. },
  1307. "Component_[17061060562978745083]": {
  1308. "$type": "EditorLockComponent",
  1309. "Id": 17061060562978745083
  1310. },
  1311. "Component_[1769651324208618943]": {
  1312. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1313. "Id": 1769651324208618943,
  1314. "Parent Entity": "Entity_[1447363157625]"
  1315. },
  1316. "Component_[1814292244042225763]": {
  1317. "$type": "EditorEntityIconComponent",
  1318. "Id": 1814292244042225763
  1319. },
  1320. "Component_[4607802330473043710]": {
  1321. "$type": "EditorVisibilityComponent",
  1322. "Id": 4607802330473043710
  1323. },
  1324. "Component_[4633219056900219123]": {
  1325. "$type": "EditorDisabledCompositionComponent",
  1326. "Id": 4633219056900219123
  1327. },
  1328. "Component_[9787806027699440895]": {
  1329. "$type": "EditorOnlyEntityComponent",
  1330. "Id": 9787806027699440895
  1331. }
  1332. }
  1333. },
  1334. "Entity_[1494607797881]": {
  1335. "Id": "Entity_[1494607797881]",
  1336. "Name": "panda_link5_visual",
  1337. "Components": {
  1338. "Component_[11060167279999234858]": {
  1339. "$type": "EditorVisibilityComponent",
  1340. "Id": 11060167279999234858
  1341. },
  1342. "Component_[1462147876988610058]": {
  1343. "$type": "EditorOnlyEntityComponent",
  1344. "Id": 1462147876988610058
  1345. },
  1346. "Component_[14652798813504289690]": {
  1347. "$type": "AZ::Render::EditorMeshComponent",
  1348. "Id": 14652798813504289690,
  1349. "Controller": {
  1350. "Configuration": {
  1351. "ModelAsset": {
  1352. "assetId": {
  1353. "guid": "{5B73CB39-7795-5819-813D-E05E3B212AE7}",
  1354. "subId": 272451005
  1355. },
  1356. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link5.azmodel"
  1357. }
  1358. }
  1359. }
  1360. },
  1361. "Component_[17338603180772065985]": {
  1362. "$type": "EditorEntitySortComponent",
  1363. "Id": 17338603180772065985
  1364. },
  1365. "Component_[2581768843261959063]": {
  1366. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1367. "Id": 2581768843261959063,
  1368. "Parent Entity": "Entity_[1451658124921]"
  1369. },
  1370. "Component_[3309211502415539]": {
  1371. "$type": "EditorPendingCompositionComponent",
  1372. "Id": 3309211502415539
  1373. },
  1374. "Component_[483903852765706409]": {
  1375. "$type": "EditorEntityIconComponent",
  1376. "Id": 483903852765706409
  1377. },
  1378. "Component_[5705049197738806759]": {
  1379. "$type": "EditorLockComponent",
  1380. "Id": 5705049197738806759
  1381. },
  1382. "Component_[8284507001227361542]": {
  1383. "$type": "EditorInspectorComponent",
  1384. "Id": 8284507001227361542
  1385. },
  1386. "Component_[9375903850292364080]": {
  1387. "$type": "EditorDisabledCompositionComponent",
  1388. "Id": 9375903850292364080
  1389. }
  1390. }
  1391. },
  1392. "Entity_[1498902765177]": {
  1393. "Id": "Entity_[1498902765177]",
  1394. "Name": "panda_rightfinger",
  1395. "Components": {
  1396. "Component_[12094943479793120756]": {
  1397. "$type": "EditorPendingCompositionComponent",
  1398. "Id": 12094943479793120756
  1399. },
  1400. "Component_[1352358979643850014]": {
  1401. "$type": "EditorLockComponent",
  1402. "Id": 1352358979643850014
  1403. },
  1404. "Component_[14554244268325390611]": {
  1405. "$type": "EditorDisabledCompositionComponent",
  1406. "Id": 14554244268325390611
  1407. },
  1408. "Component_[15085426669312785097]": {
  1409. "$type": "GenericComponentWrapper",
  1410. "Id": 15085426669312785097,
  1411. "m_template": {
  1412. "$type": "ImGuiJointDemo"
  1413. }
  1414. },
  1415. "Component_[1543342704919662467]": {
  1416. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1417. "Id": 1543342704919662467,
  1418. "Parent Entity": "Entity_[1447363157625]",
  1419. "Transform Data": {
  1420. "Translate": [
  1421. 0.0,
  1422. 0.0,
  1423. 0.05840003490447998
  1424. ]
  1425. }
  1426. },
  1427. "Component_[16273116764622982077]": {
  1428. "$type": "EditorInspectorComponent",
  1429. "Id": 16273116764622982077
  1430. },
  1431. "Component_[1903930015834931168]": {
  1432. "$type": "EditorVisibilityComponent",
  1433. "Id": 1903930015834931168
  1434. },
  1435. "Component_[2310690044688145497]": {
  1436. "$type": "EditorEntityIconComponent",
  1437. "Id": 2310690044688145497
  1438. },
  1439. "Component_[4879485097231618998]": {
  1440. "$type": "EditorEntitySortComponent",
  1441. "Id": 4879485097231618998,
  1442. "Child Entity Order": [
  1443. "Entity_[1464543026809]"
  1444. ]
  1445. },
  1446. "Component_[5165586741528335352]": {
  1447. "$type": "EditorOnlyEntityComponent",
  1448. "Id": 5165586741528335352
  1449. },
  1450. "Component_[7713128066166086009]": {
  1451. "$type": "EditorArticulationLinkComponent",
  1452. "Id": 7713128066166086009,
  1453. "ArticulationConfiguration": {
  1454. "Mass": 0.22383999824523926,
  1455. "Centre of mass offset": [
  1456. 0.0,
  1457. 0.002199999988079071,
  1458. -0.027699999511241913
  1459. ],
  1460. "Articulation Joint Type": 2,
  1461. "Local Rotation": [
  1462. 0.0,
  1463. 0.0,
  1464. -90.0
  1465. ],
  1466. "Linear Limit Lower": 0.0,
  1467. "Linear Limit Upper": 0.03999999910593033
  1468. }
  1469. }
  1470. }
  1471. },
  1472. "Entity_[1503197732473]": {
  1473. "Id": "Entity_[1503197732473]",
  1474. "Name": "panda_link7_visual",
  1475. "Components": {
  1476. "Component_[10006120602032282279]": {
  1477. "$type": "EditorEntityIconComponent",
  1478. "Id": 10006120602032282279
  1479. },
  1480. "Component_[10209659168699423010]": {
  1481. "$type": "EditorDisabledCompositionComponent",
  1482. "Id": 10209659168699423010
  1483. },
  1484. "Component_[11831591325934627847]": {
  1485. "$type": "EditorVisibilityComponent",
  1486. "Id": 11831591325934627847
  1487. },
  1488. "Component_[12400126467336495344]": {
  1489. "$type": "EditorOnlyEntityComponent",
  1490. "Id": 12400126467336495344
  1491. },
  1492. "Component_[1263234983567762233]": {
  1493. "$type": "EditorInspectorComponent",
  1494. "Id": 1263234983567762233
  1495. },
  1496. "Component_[16330963393679257892]": {
  1497. "$type": "EditorLockComponent",
  1498. "Id": 16330963393679257892
  1499. },
  1500. "Component_[17975853688876812202]": {
  1501. "$type": "EditorEntitySortComponent",
  1502. "Id": 17975853688876812202
  1503. },
  1504. "Component_[4800510986270891644]": {
  1505. "$type": "AZ::Render::EditorMeshComponent",
  1506. "Id": 4800510986270891644,
  1507. "Controller": {
  1508. "Configuration": {
  1509. "ModelAsset": {
  1510. "assetId": {
  1511. "guid": "{AC0A4138-214E-53AA-8581-0F539ECCB03F}",
  1512. "subId": 271787153
  1513. },
  1514. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link7.azmodel"
  1515. }
  1516. }
  1517. }
  1518. },
  1519. "Component_[9245607391699601563]": {
  1520. "$type": "EditorPendingCompositionComponent",
  1521. "Id": 9245607391699601563
  1522. },
  1523. "Component_[9984646770241766623]": {
  1524. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1525. "Id": 9984646770241766623,
  1526. "Parent Entity": "Entity_[1524672568953]"
  1527. }
  1528. }
  1529. },
  1530. "Entity_[1507492699769]": {
  1531. "Id": "Entity_[1507492699769]",
  1532. "Name": "panda_hand_tcp",
  1533. "Components": {
  1534. "Component_[10582914669692011379]": {
  1535. "$type": "EditorOnlyEntityComponent",
  1536. "Id": 10582914669692011379
  1537. },
  1538. "Component_[11327277288832805612]": {
  1539. "$type": "EditorPendingCompositionComponent",
  1540. "Id": 11327277288832805612
  1541. },
  1542. "Component_[1474299501676068654]": {
  1543. "$type": "EditorInspectorComponent",
  1544. "Id": 1474299501676068654
  1545. },
  1546. "Component_[1517674267450270052]": {
  1547. "$type": "EditorLockComponent",
  1548. "Id": 1517674267450270052
  1549. },
  1550. "Component_[15552109761671889265]": {
  1551. "$type": "EditorEntityIconComponent",
  1552. "Id": 15552109761671889265
  1553. },
  1554. "Component_[17444019532647519607]": {
  1555. "$type": "EditorEntitySortComponent",
  1556. "Id": 17444019532647519607
  1557. },
  1558. "Component_[3176941860568013745]": {
  1559. "$type": "EditorDisabledCompositionComponent",
  1560. "Id": 3176941860568013745
  1561. },
  1562. "Component_[3520662844547153627]": {
  1563. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1564. "Id": 3520662844547153627,
  1565. "Parent Entity": "Entity_[1447363157625]",
  1566. "Transform Data": {
  1567. "Translate": [
  1568. 0.0,
  1569. 0.0,
  1570. 0.10340005159378052
  1571. ]
  1572. }
  1573. },
  1574. "Component_[7666659741322162513]": {
  1575. "$type": "EditorVisibilityComponent",
  1576. "Id": 7666659741322162513
  1577. }
  1578. }
  1579. },
  1580. "Entity_[1511787667065]": {
  1581. "Id": "Entity_[1511787667065]",
  1582. "Name": "panda_link4",
  1583. "Components": {
  1584. "Component_[1095448228505114581]": {
  1585. "$type": "EditorEntitySortComponent",
  1586. "Id": 1095448228505114581,
  1587. "Child Entity Order": [
  1588. "Entity_[1537557470841]",
  1589. "Entity_[1451658124921]"
  1590. ]
  1591. },
  1592. "Component_[13052382700243123758]": {
  1593. "$type": "EditorPendingCompositionComponent",
  1594. "Id": 13052382700243123758
  1595. },
  1596. "Component_[15888283843276217511]": {
  1597. "$type": "EditorLockComponent",
  1598. "Id": 15888283843276217511
  1599. },
  1600. "Component_[17783744754927152065]": {
  1601. "$type": "EditorMeshColliderComponent",
  1602. "Id": 17783744754927152065,
  1603. "ColliderConfiguration": {
  1604. "MaterialSlots": {
  1605. "Slots": [
  1606. {
  1607. "Name": "DefaultMaterial"
  1608. }
  1609. ]
  1610. }
  1611. },
  1612. "ShapeConfiguration": {
  1613. "PhysicsAsset": {
  1614. "Asset": {
  1615. "assetId": {
  1616. "guid": "{F5E29D7C-8368-5FC8-9A50-581377F71686}",
  1617. "subId": 4152747898
  1618. },
  1619. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link4.pxmesh"
  1620. },
  1621. "Configuration": {
  1622. "PhysicsAsset": {
  1623. "assetId": {
  1624. "guid": "{F5E29D7C-8368-5FC8-9A50-581377F71686}",
  1625. "subId": 4152747898
  1626. },
  1627. "loadBehavior": "QueueLoad",
  1628. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link4.pxmesh"
  1629. },
  1630. "UseMaterialsFromAsset": false
  1631. }
  1632. }
  1633. }
  1634. },
  1635. "Component_[18296731948827876847]": {
  1636. "$type": "GenericComponentWrapper",
  1637. "Id": 18296731948827876847,
  1638. "m_template": {
  1639. "$type": "ImGuiJointDemo"
  1640. }
  1641. },
  1642. "Component_[18421050458150573996]": {
  1643. "$type": "EditorArticulationLinkComponent",
  1644. "Id": 18421050458150573996,
  1645. "ArticulationConfiguration": {
  1646. "Mass": 2.310476303100586,
  1647. "Centre of mass offset": [
  1648. -0.03604999929666519,
  1649. 0.033705998212099075,
  1650. 0.03189999982714653
  1651. ],
  1652. "Articulation Joint Type": 1,
  1653. "Local Rotation": [
  1654. 0.0,
  1655. -90.0,
  1656. 0.0
  1657. ],
  1658. "Angular Limit Negative": -176.0,
  1659. "Angular Limit Positive": 0.0
  1660. }
  1661. },
  1662. "Component_[400097927689277130]": {
  1663. "$type": "EditorVisibilityComponent",
  1664. "Id": 400097927689277130
  1665. },
  1666. "Component_[4933521255346694545]": {
  1667. "$type": "EditorEntityIconComponent",
  1668. "Id": 4933521255346694545
  1669. },
  1670. "Component_[5860484528716318296]": {
  1671. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1672. "Id": 5860484528716318296,
  1673. "Parent Entity": "Entity_[1486017863289]",
  1674. "Transform Data": {
  1675. "Translate": [
  1676. 0.08249999582767487,
  1677. 7.105427357601002e-15,
  1678. 0.0
  1679. ],
  1680. "Rotate": [
  1681. 89.99998474121094,
  1682. 0.0,
  1683. 0.0
  1684. ]
  1685. }
  1686. },
  1687. "Component_[6490914511829866754]": {
  1688. "$type": "EditorInspectorComponent",
  1689. "Id": 6490914511829866754
  1690. },
  1691. "Component_[8603938901844339696]": {
  1692. "$type": "EditorDisabledCompositionComponent",
  1693. "Id": 8603938901844339696
  1694. },
  1695. "Component_[9561217997100605762]": {
  1696. "$type": "EditorOnlyEntityComponent",
  1697. "Id": 9561217997100605762
  1698. }
  1699. }
  1700. },
  1701. "Entity_[1516082634361]": {
  1702. "Id": "Entity_[1516082634361]",
  1703. "Name": "panda_link6",
  1704. "Components": {
  1705. "Component_[12504405826328742383]": {
  1706. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1707. "Id": 12504405826328742383,
  1708. "Parent Entity": "Entity_[1451658124921]",
  1709. "Transform Data": {
  1710. "Rotate": [
  1711. 89.9999771118164,
  1712. 0.0,
  1713. 0.0
  1714. ]
  1715. }
  1716. },
  1717. "Component_[12731293240319367915]": {
  1718. "$type": "EditorLockComponent",
  1719. "Id": 12731293240319367915
  1720. },
  1721. "Component_[14000936388412406776]": {
  1722. "$type": "EditorVisibilityComponent",
  1723. "Id": 14000936388412406776
  1724. },
  1725. "Component_[14213095225389336453]": {
  1726. "$type": "EditorEntitySortComponent",
  1727. "Id": 14213095225389336453,
  1728. "Child Entity Order": [
  1729. "Entity_[1473132961401]",
  1730. "Entity_[1524672568953]"
  1731. ]
  1732. },
  1733. "Component_[16418524905077799266]": {
  1734. "$type": "EditorArticulationLinkComponent",
  1735. "Id": 16418524905077799266,
  1736. "ArticulationConfiguration": {
  1737. "Mass": 1.5025800466537476,
  1738. "Centre of mass offset": [
  1739. 0.050999999046325684,
  1740. 0.009100000374019146,
  1741. 0.01063000038266182
  1742. ],
  1743. "Articulation Joint Type": 1,
  1744. "Local Rotation": [
  1745. 0.0,
  1746. -90.0,
  1747. 0.0
  1748. ],
  1749. "Angular Limit Negative": -1.0,
  1750. "Angular Limit Positive": 215.0
  1751. }
  1752. },
  1753. "Component_[17139042666337948529]": {
  1754. "$type": "EditorDisabledCompositionComponent",
  1755. "Id": 17139042666337948529
  1756. },
  1757. "Component_[18264423770334575921]": {
  1758. "$type": "EditorOnlyEntityComponent",
  1759. "Id": 18264423770334575921
  1760. },
  1761. "Component_[2359965994665001390]": {
  1762. "$type": "EditorEntityIconComponent",
  1763. "Id": 2359965994665001390
  1764. },
  1765. "Component_[3914375426784549412]": {
  1766. "$type": "EditorPendingCompositionComponent",
  1767. "Id": 3914375426784549412
  1768. },
  1769. "Component_[4775424680940370350]": {
  1770. "$type": "GenericComponentWrapper",
  1771. "Id": 4775424680940370350,
  1772. "m_template": {
  1773. "$type": "ImGuiJointDemo"
  1774. }
  1775. },
  1776. "Component_[7129885340583146507]": {
  1777. "$type": "EditorMeshColliderComponent",
  1778. "Id": 7129885340583146507,
  1779. "ColliderConfiguration": {
  1780. "MaterialSlots": {
  1781. "Slots": [
  1782. {
  1783. "Name": "DefaultMaterial"
  1784. }
  1785. ]
  1786. }
  1787. },
  1788. "ShapeConfiguration": {
  1789. "PhysicsAsset": {
  1790. "Asset": {
  1791. "assetId": {
  1792. "guid": "{35FBF335-8EFA-515E-A6ED-F208E4026BE1}",
  1793. "subId": 2873254469
  1794. },
  1795. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link6.pxmesh"
  1796. },
  1797. "Configuration": {
  1798. "PhysicsAsset": {
  1799. "assetId": {
  1800. "guid": "{35FBF335-8EFA-515E-A6ED-F208E4026BE1}",
  1801. "subId": 2873254469
  1802. },
  1803. "loadBehavior": "QueueLoad",
  1804. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link6.pxmesh"
  1805. },
  1806. "UseMaterialsFromAsset": false
  1807. }
  1808. }
  1809. }
  1810. },
  1811. "Component_[7988828044386689767]": {
  1812. "$type": "EditorInspectorComponent",
  1813. "Id": 7988828044386689767
  1814. }
  1815. }
  1816. },
  1817. "Entity_[1520377601657]": {
  1818. "Id": "Entity_[1520377601657]",
  1819. "Name": "panda_link8",
  1820. "Components": {
  1821. "Component_[10447452102746744943]": {
  1822. "$type": "EditorArticulationLinkComponent",
  1823. "Id": 10447452102746744943
  1824. },
  1825. "Component_[11435467948483981588]": {
  1826. "$type": "EditorEntityIconComponent",
  1827. "Id": 11435467948483981588
  1828. },
  1829. "Component_[13133135808911036058]": {
  1830. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1831. "Id": 13133135808911036058,
  1832. "Parent Entity": "Entity_[1524672568953]",
  1833. "Transform Data": {
  1834. "Translate": [
  1835. 0.0,
  1836. -1.2755386080698372e-8,
  1837. 0.10699993371963501
  1838. ],
  1839. "Rotate": [
  1840. 0.000006830188794992864,
  1841. 0.0,
  1842. -44.99999237060547
  1843. ]
  1844. }
  1845. },
  1846. "Component_[13216106324570750657]": {
  1847. "$type": "EditorEntitySortComponent",
  1848. "Id": 13216106324570750657,
  1849. "Child Entity Order": [
  1850. "Entity_[1447363157625]"
  1851. ]
  1852. },
  1853. "Component_[13446215410378826063]": {
  1854. "$type": "EditorVisibilityComponent",
  1855. "Id": 13446215410378826063
  1856. },
  1857. "Component_[14163936775156600644]": {
  1858. "$type": "EditorLockComponent",
  1859. "Id": 14163936775156600644
  1860. },
  1861. "Component_[16624535759732586231]": {
  1862. "$type": "EditorOnlyEntityComponent",
  1863. "Id": 16624535759732586231
  1864. },
  1865. "Component_[289992594927393495]": {
  1866. "$type": "EditorPendingCompositionComponent",
  1867. "Id": 289992594927393495
  1868. },
  1869. "Component_[3176888828131774058]": {
  1870. "$type": "GenericComponentWrapper",
  1871. "Id": 3176888828131774058,
  1872. "m_template": {
  1873. "$type": "ImGuiJointDemo"
  1874. }
  1875. },
  1876. "Component_[3280907557383416321]": {
  1877. "$type": "EditorInspectorComponent",
  1878. "Id": 3280907557383416321
  1879. },
  1880. "Component_[5995599092492179191]": {
  1881. "$type": "EditorDisabledCompositionComponent",
  1882. "Id": 5995599092492179191
  1883. }
  1884. }
  1885. },
  1886. "Entity_[1524672568953]": {
  1887. "Id": "Entity_[1524672568953]",
  1888. "Name": "panda_link7",
  1889. "Components": {
  1890. "Component_[10558063142983517177]": {
  1891. "$type": "EditorVisibilityComponent",
  1892. "Id": 10558063142983517177
  1893. },
  1894. "Component_[14642315946499918737]": {
  1895. "$type": "EditorLockComponent",
  1896. "Id": 14642315946499918737
  1897. },
  1898. "Component_[17559529945025583655]": {
  1899. "$type": "EditorEntityIconComponent",
  1900. "Id": 17559529945025583655
  1901. },
  1902. "Component_[17760086963186234771]": {
  1903. "$type": "EditorArticulationLinkComponent",
  1904. "Id": 17760086963186234771,
  1905. "ArticulationConfiguration": {
  1906. "Mass": 0.5237600207328796,
  1907. "Centre of mass offset": [
  1908. 0.01095999963581562,
  1909. 0.01078999973833561,
  1910. 0.06499999761581421
  1911. ],
  1912. "Articulation Joint Type": 1,
  1913. "Local Rotation": [
  1914. 0.0,
  1915. -90.0,
  1916. 0.0
  1917. ],
  1918. "Angular Limit Negative": -166.0,
  1919. "Angular Limit Positive": 166.0
  1920. }
  1921. },
  1922. "Component_[17957063234535786630]": {
  1923. "$type": "EditorInspectorComponent",
  1924. "Id": 17957063234535786630
  1925. },
  1926. "Component_[2207140849554352415]": {
  1927. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1928. "Id": 2207140849554352415,
  1929. "Parent Entity": "Entity_[1516082634361]",
  1930. "Transform Data": {
  1931. "Translate": [
  1932. 0.08799998462200165,
  1933. 0.0,
  1934. 0.0
  1935. ],
  1936. "Rotate": [
  1937. 90.00001525878906,
  1938. 0.0,
  1939. 0.0
  1940. ]
  1941. }
  1942. },
  1943. "Component_[2932430117545506753]": {
  1944. "$type": "EditorPendingCompositionComponent",
  1945. "Id": 2932430117545506753
  1946. },
  1947. "Component_[5924196996510927056]": {
  1948. "$type": "EditorDisabledCompositionComponent",
  1949. "Id": 5924196996510927056,
  1950. "DisabledComponents": [
  1951. {
  1952. "$type": "EditorColliderComponent",
  1953. "Id": 4132830031301136330,
  1954. "ColliderConfiguration": {
  1955. "MaterialSlots": {
  1956. "Slots": [
  1957. {
  1958. "Name": "DefaultMaterial"
  1959. }
  1960. ]
  1961. }
  1962. },
  1963. "ShapeConfiguration": {
  1964. "PhysicsAsset": {
  1965. "Asset": {
  1966. "assetId": {
  1967. "guid": "{F88B053A-E59A-5DCA-BA48-C65A7F9AAE4E}",
  1968. "subId": 4045727865
  1969. },
  1970. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link7.pxmesh"
  1971. },
  1972. "Configuration": {
  1973. "PhysicsAsset": {
  1974. "assetId": {
  1975. "guid": "{F88B053A-E59A-5DCA-BA48-C65A7F9AAE4E}",
  1976. "subId": 4045727865
  1977. },
  1978. "loadBehavior": "QueueLoad",
  1979. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link7.pxmesh"
  1980. },
  1981. "UseMaterialsFromAsset": false
  1982. }
  1983. }
  1984. }
  1985. }
  1986. ]
  1987. },
  1988. "Component_[7225487299122439955]": {
  1989. "$type": "EditorEntitySortComponent",
  1990. "Id": 7225487299122439955,
  1991. "Child Entity Order": [
  1992. "Entity_[1503197732473]",
  1993. "Entity_[1520377601657]"
  1994. ]
  1995. },
  1996. "Component_[9499506582606601758]": {
  1997. "$type": "EditorOnlyEntityComponent",
  1998. "Id": 9499506582606601758
  1999. },
  2000. "Component_[9831211553258061846]": {
  2001. "$type": "GenericComponentWrapper",
  2002. "Id": 9831211553258061846,
  2003. "m_template": {
  2004. "$type": "ImGuiJointDemo"
  2005. }
  2006. }
  2007. }
  2008. },
  2009. "Entity_[1528967536249]": {
  2010. "Id": "Entity_[1528967536249]",
  2011. "Name": "panda_link0",
  2012. "Components": {
  2013. "Component_[11023397522690486469]": {
  2014. "$type": "EditorOnlyEntityComponent",
  2015. "Id": 11023397522690486469
  2016. },
  2017. "Component_[11387080232339540049]": {
  2018. "$type": "EditorDisabledCompositionComponent",
  2019. "Id": 11387080232339540049
  2020. },
  2021. "Component_[14555473105827020152]": {
  2022. "$type": "EditorArticulationLinkComponent",
  2023. "Id": 14555473105827020152,
  2024. "ArticulationConfiguration": {
  2025. "Fixed Base": true,
  2026. "Mass": 2.813999891281128,
  2027. "Centre of mass offset": [
  2028. -0.02556600049138069,
  2029. 0.0,
  2030. 0.05733200162649155
  2031. ],
  2032. "SolverPositionIterations": 40,
  2033. "SolverVelocityIterations": 10
  2034. }
  2035. },
  2036. "Component_[16949229272838450297]": {
  2037. "$type": "EditorInspectorComponent",
  2038. "Id": 16949229272838450297
  2039. },
  2040. "Component_[2446713206361739636]": {
  2041. "$type": "EditorEntityIconComponent",
  2042. "Id": 2446713206361739636
  2043. },
  2044. "Component_[3321071768378159460]": {
  2045. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2046. "Id": 3321071768378159460,
  2047. "Parent Entity": "Entity_[1550442372729]",
  2048. "Transform Data": {
  2049. "Translate": [
  2050. 0.03700241446495056,
  2051. 0.035242438316345215,
  2052. 0.25709283351898193
  2053. ]
  2054. }
  2055. },
  2056. "Component_[4104582140859943209]": {
  2057. "$type": "EditorLockComponent",
  2058. "Id": 4104582140859943209
  2059. },
  2060. "Component_[4516403928144409270]": {
  2061. "$type": "EditorPendingCompositionComponent",
  2062. "Id": 4516403928144409270
  2063. },
  2064. "Component_[6652769527061926292]": {
  2065. "$type": "EditorVisibilityComponent",
  2066. "Id": 6652769527061926292
  2067. },
  2068. "Component_[757503998028240491]": {
  2069. "$type": "EditorEntitySortComponent",
  2070. "Id": 757503998028240491,
  2071. "Child Entity Order": [
  2072. "Entity_[1468837994105]",
  2073. "Entity_[1460248059513]"
  2074. ]
  2075. },
  2076. "Component_[7816217204977771734]": {
  2077. "$type": "EditorMeshColliderComponent",
  2078. "Id": 7816217204977771734,
  2079. "ColliderConfiguration": {
  2080. "MaterialSlots": {
  2081. "Slots": [
  2082. {
  2083. "Name": "DefaultMaterial"
  2084. }
  2085. ]
  2086. }
  2087. },
  2088. "ShapeConfiguration": {
  2089. "PhysicsAsset": {
  2090. "Asset": {
  2091. "assetId": {
  2092. "guid": "{A54F8762-5D10-53C8-950B-1AEC2993F0AC}",
  2093. "subId": 1559438218
  2094. },
  2095. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link0.pxmesh"
  2096. },
  2097. "Configuration": {
  2098. "PhysicsAsset": {
  2099. "assetId": {
  2100. "guid": "{A54F8762-5D10-53C8-950B-1AEC2993F0AC}",
  2101. "subId": 1559438218
  2102. },
  2103. "loadBehavior": "QueueLoad",
  2104. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link0.pxmesh"
  2105. },
  2106. "UseMaterialsFromAsset": false
  2107. }
  2108. }
  2109. }
  2110. }
  2111. }
  2112. },
  2113. "Entity_[1533262503545]": {
  2114. "Id": "Entity_[1533262503545]",
  2115. "Name": "panda_leftfinger",
  2116. "Components": {
  2117. "Component_[10623052683589204749]": {
  2118. "$type": "EditorPendingCompositionComponent",
  2119. "Id": 10623052683589204749
  2120. },
  2121. "Component_[1226223175206848789]": {
  2122. "$type": "EditorDisabledCompositionComponent",
  2123. "Id": 1226223175206848789
  2124. },
  2125. "Component_[12307584536677418783]": {
  2126. "$type": "GenericComponentWrapper",
  2127. "Id": 12307584536677418783,
  2128. "m_template": {
  2129. "$type": "ImGuiJointDemo"
  2130. }
  2131. },
  2132. "Component_[12542366717714580296]": {
  2133. "$type": "EditorInspectorComponent",
  2134. "Id": 12542366717714580296
  2135. },
  2136. "Component_[1642651622480229913]": {
  2137. "$type": "EditorMeshColliderComponent",
  2138. "Id": 1642651622480229913,
  2139. "ColliderConfiguration": {
  2140. "MaterialSlots": {
  2141. "Slots": [
  2142. {
  2143. "Name": "DefaultMaterial"
  2144. }
  2145. ]
  2146. }
  2147. },
  2148. "ShapeConfiguration": {
  2149. "PhysicsAsset": {
  2150. "Asset": {
  2151. "assetId": {
  2152. "guid": "{DFAC8757-EC4A-5885-AAB8-F7E86593D73E}",
  2153. "subId": 4167574034
  2154. },
  2155. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/finger.pxmesh"
  2156. },
  2157. "Configuration": {
  2158. "PhysicsAsset": {
  2159. "assetId": {
  2160. "guid": "{DFAC8757-EC4A-5885-AAB8-F7E86593D73E}",
  2161. "subId": 4167574034
  2162. },
  2163. "loadBehavior": "QueueLoad",
  2164. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/finger.pxmesh"
  2165. },
  2166. "UseMaterialsFromAsset": false
  2167. }
  2168. }
  2169. }
  2170. },
  2171. "Component_[18095480052002538812]": {
  2172. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2173. "Id": 18095480052002538812,
  2174. "Parent Entity": "Entity_[1447363157625]",
  2175. "Transform Data": {
  2176. "Translate": [
  2177. 0.0,
  2178. 0.0,
  2179. 0.05840003490447998
  2180. ]
  2181. }
  2182. },
  2183. "Component_[3875768617368381718]": {
  2184. "$type": "EditorArticulationLinkComponent",
  2185. "Id": 3875768617368381718,
  2186. "ArticulationConfiguration": {
  2187. "Mass": 0.2238450050354004,
  2188. "Centre of mass offset": [
  2189. 0.0,
  2190. 0.002199999988079071,
  2191. -0.027699999511241913
  2192. ],
  2193. "Articulation Joint Type": 2,
  2194. "Local Rotation": [
  2195. 0.0,
  2196. 0.0,
  2197. 90.0
  2198. ],
  2199. "Linear Limit Lower": 0.0,
  2200. "Linear Limit Upper": 0.03999999910593033
  2201. }
  2202. },
  2203. "Component_[5011659990375240844]": {
  2204. "$type": "EditorLockComponent",
  2205. "Id": 5011659990375240844
  2206. },
  2207. "Component_[6020773828605036995]": {
  2208. "$type": "EditorVisibilityComponent",
  2209. "Id": 6020773828605036995
  2210. },
  2211. "Component_[7846565595297359090]": {
  2212. "$type": "EditorOnlyEntityComponent",
  2213. "Id": 7846565595297359090
  2214. },
  2215. "Component_[8237210125200439601]": {
  2216. "$type": "EditorEntitySortComponent",
  2217. "Id": 8237210125200439601,
  2218. "Child Entity Order": [
  2219. "Entity_[1455953092217]"
  2220. ]
  2221. },
  2222. "Component_[9630688787517995368]": {
  2223. "$type": "EditorEntityIconComponent",
  2224. "Id": 9630688787517995368
  2225. }
  2226. }
  2227. },
  2228. "Entity_[1537557470841]": {
  2229. "Id": "Entity_[1537557470841]",
  2230. "Name": "panda_link4_visual",
  2231. "Components": {
  2232. "Component_[14287266945980718124]": {
  2233. "$type": "EditorDisabledCompositionComponent",
  2234. "Id": 14287266945980718124
  2235. },
  2236. "Component_[15423599006702051658]": {
  2237. "$type": "EditorVisibilityComponent",
  2238. "Id": 15423599006702051658
  2239. },
  2240. "Component_[1745417603957320505]": {
  2241. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2242. "Id": 1745417603957320505,
  2243. "Parent Entity": "Entity_[1511787667065]"
  2244. },
  2245. "Component_[5155854814240048828]": {
  2246. "$type": "EditorOnlyEntityComponent",
  2247. "Id": 5155854814240048828
  2248. },
  2249. "Component_[560001276088059164]": {
  2250. "$type": "EditorPendingCompositionComponent",
  2251. "Id": 560001276088059164
  2252. },
  2253. "Component_[5763330635070305639]": {
  2254. "$type": "EditorEntityIconComponent",
  2255. "Id": 5763330635070305639
  2256. },
  2257. "Component_[7267783405598135630]": {
  2258. "$type": "EditorLockComponent",
  2259. "Id": 7267783405598135630
  2260. },
  2261. "Component_[7823388539508378209]": {
  2262. "$type": "EditorInspectorComponent",
  2263. "Id": 7823388539508378209
  2264. },
  2265. "Component_[9093049256124672578]": {
  2266. "$type": "EditorEntitySortComponent",
  2267. "Id": 9093049256124672578
  2268. },
  2269. "Component_[9926315479429674853]": {
  2270. "$type": "AZ::Render::EditorMeshComponent",
  2271. "Id": 9926315479429674853,
  2272. "Controller": {
  2273. "Configuration": {
  2274. "ModelAsset": {
  2275. "assetId": {
  2276. "guid": "{8010A867-2272-5387-8E0F-38EDD7794D27}",
  2277. "subId": 272266539
  2278. },
  2279. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link4.azmodel"
  2280. }
  2281. }
  2282. }
  2283. }
  2284. }
  2285. },
  2286. "Entity_[1541852438137]": {
  2287. "Id": "Entity_[1541852438137]",
  2288. "Name": "panda_link2_visual",
  2289. "Components": {
  2290. "Component_[10743067004290866453]": {
  2291. "$type": "EditorDisabledCompositionComponent",
  2292. "Id": 10743067004290866453
  2293. },
  2294. "Component_[13976896481940066282]": {
  2295. "$type": "EditorEntityIconComponent",
  2296. "Id": 13976896481940066282
  2297. },
  2298. "Component_[14682939577405652049]": {
  2299. "$type": "EditorOnlyEntityComponent",
  2300. "Id": 14682939577405652049
  2301. },
  2302. "Component_[15988037462304272081]": {
  2303. "$type": "EditorPendingCompositionComponent",
  2304. "Id": 15988037462304272081
  2305. },
  2306. "Component_[3841867526270835667]": {
  2307. "$type": "EditorEntitySortComponent",
  2308. "Id": 3841867526270835667
  2309. },
  2310. "Component_[5240270843337574030]": {
  2311. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2312. "Id": 5240270843337574030,
  2313. "Parent Entity": "Entity_[1546147405433]"
  2314. },
  2315. "Component_[689242563866392767]": {
  2316. "$type": "EditorInspectorComponent",
  2317. "Id": 689242563866392767
  2318. },
  2319. "Component_[8347641877266382208]": {
  2320. "$type": "EditorVisibilityComponent",
  2321. "Id": 8347641877266382208
  2322. },
  2323. "Component_[8566152613248338821]": {
  2324. "$type": "EditorLockComponent",
  2325. "Id": 8566152613248338821
  2326. },
  2327. "Component_[8720387153198876277]": {
  2328. "$type": "AZ::Render::EditorMeshComponent",
  2329. "Id": 8720387153198876277,
  2330. "Controller": {
  2331. "Configuration": {
  2332. "ModelAsset": {
  2333. "assetId": {
  2334. "guid": "{52A69A08-9329-5701-8830-7D4AA2AEF721}",
  2335. "subId": 274321438
  2336. },
  2337. "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link2.azmodel"
  2338. }
  2339. }
  2340. }
  2341. }
  2342. }
  2343. },
  2344. "Entity_[1546147405433]": {
  2345. "Id": "Entity_[1546147405433]",
  2346. "Name": "panda_link2",
  2347. "Components": {
  2348. "Component_[11685274051949602286]": {
  2349. "$type": "EditorEntitySortComponent",
  2350. "Id": 11685274051949602286,
  2351. "Child Entity Order": [
  2352. "Entity_[1541852438137]",
  2353. "Entity_[1486017863289]"
  2354. ]
  2355. },
  2356. "Component_[12349387052897331986]": {
  2357. "$type": "EditorOnlyEntityComponent",
  2358. "Id": 12349387052897331986
  2359. },
  2360. "Component_[13122209249433830961]": {
  2361. "$type": "EditorLockComponent",
  2362. "Id": 13122209249433830961
  2363. },
  2364. "Component_[13380066656769127874]": {
  2365. "$type": "EditorVisibilityComponent",
  2366. "Id": 13380066656769127874
  2367. },
  2368. "Component_[16370684070430199569]": {
  2369. "$type": "EditorArticulationLinkComponent",
  2370. "Id": 16370684070430199569,
  2371. "ArticulationConfiguration": {
  2372. "Mass": 2.6652700901031494,
  2373. "Centre of mass offset": [
  2374. 0.0,
  2375. -0.06860999763011932,
  2376. 0.0322284996509552
  2377. ],
  2378. "Articulation Joint Type": 1,
  2379. "Local Rotation": [
  2380. 0.0,
  2381. -90.0,
  2382. 0.0
  2383. ],
  2384. "Angular Limit Negative": -101.0,
  2385. "Angular Limit Positive": 101.0
  2386. }
  2387. },
  2388. "Component_[17263294978659087417]": {
  2389. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2390. "Id": 17263294978659087417,
  2391. "Parent Entity": "Entity_[1460248059513]",
  2392. "Transform Data": {
  2393. "Rotate": [
  2394. -89.99998474121094,
  2395. 0.0,
  2396. 0.0
  2397. ]
  2398. }
  2399. },
  2400. "Component_[2584117957770865332]": {
  2401. "$type": "EditorDisabledCompositionComponent",
  2402. "Id": 2584117957770865332
  2403. },
  2404. "Component_[4068300133305965099]": {
  2405. "$type": "EditorInspectorComponent",
  2406. "Id": 4068300133305965099
  2407. },
  2408. "Component_[4583303953242386342]": {
  2409. "$type": "EditorMeshColliderComponent",
  2410. "Id": 4583303953242386342,
  2411. "ColliderConfiguration": {
  2412. "MaterialSlots": {
  2413. "Slots": [
  2414. {
  2415. "Name": "DefaultMaterial"
  2416. }
  2417. ]
  2418. }
  2419. },
  2420. "ShapeConfiguration": {
  2421. "PhysicsAsset": {
  2422. "Asset": {
  2423. "assetId": {
  2424. "guid": "{AA03F296-279D-5409-BCFE-F5B97343C4EE}",
  2425. "subId": 3244359312
  2426. },
  2427. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link2.pxmesh"
  2428. },
  2429. "Configuration": {
  2430. "PhysicsAsset": {
  2431. "assetId": {
  2432. "guid": "{AA03F296-279D-5409-BCFE-F5B97343C4EE}",
  2433. "subId": 3244359312
  2434. },
  2435. "loadBehavior": "QueueLoad",
  2436. "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link2.pxmesh"
  2437. },
  2438. "UseMaterialsFromAsset": false
  2439. }
  2440. }
  2441. }
  2442. },
  2443. "Component_[5327684577197146487]": {
  2444. "$type": "EditorPendingCompositionComponent",
  2445. "Id": 5327684577197146487
  2446. },
  2447. "Component_[804351385537396011]": {
  2448. "$type": "EditorEntityIconComponent",
  2449. "Id": 804351385537396011
  2450. },
  2451. "Component_[9659878281939243278]": {
  2452. "$type": "GenericComponentWrapper",
  2453. "Id": 9659878281939243278,
  2454. "m_template": {
  2455. "$type": "ImGuiJointDemo"
  2456. }
  2457. }
  2458. }
  2459. },
  2460. "Entity_[1550442372729]": {
  2461. "Id": "Entity_[1550442372729]",
  2462. "Name": "world",
  2463. "Components": {
  2464. "Component_[11563173854938418344]": {
  2465. "$type": "EditorPendingCompositionComponent",
  2466. "Id": 11563173854938418344
  2467. },
  2468. "Component_[12850034890750568699]": {
  2469. "$type": "EditorEntitySortComponent",
  2470. "Id": 12850034890750568699,
  2471. "Child Entity Order": [
  2472. "Entity_[1528967536249]"
  2473. ]
  2474. },
  2475. "Component_[14020412843678536872]": {
  2476. "$type": "EditorEntityIconComponent",
  2477. "Id": 14020412843678536872
  2478. },
  2479. "Component_[16661421188458055654]": {
  2480. "$type": "EditorVisibilityComponent",
  2481. "Id": 16661421188458055654
  2482. },
  2483. "Component_[1783959135520523211]": {
  2484. "$type": "EditorRigidBodyComponent",
  2485. "Id": 1783959135520523211,
  2486. "Configuration": {
  2487. "entityId": "",
  2488. "Compute Mass": false,
  2489. "Mass": 100.0,
  2490. "Inertia tensor": [
  2491. 10.416666984558105,
  2492. 0.0,
  2493. 0.0,
  2494. 0.0,
  2495. 10.416666984558105,
  2496. 0.0,
  2497. 0.0,
  2498. 0.0,
  2499. 16.666667938232422
  2500. ]
  2501. },
  2502. "PhysXSpecificConfiguration": {
  2503. "SolverPositionIterations": 40,
  2504. "SolverVelocityIterations": 10
  2505. }
  2506. },
  2507. "Component_[17924567566051173609]": {
  2508. "$type": "EditorOnlyEntityComponent",
  2509. "Id": 17924567566051173609
  2510. },
  2511. "Component_[18046433547961932477]": {
  2512. "$type": "EditorDisabledCompositionComponent",
  2513. "Id": 18046433547961932477
  2514. },
  2515. "Component_[3645268370928419279]": {
  2516. "$type": "EditorBoxShapeComponent",
  2517. "Id": 3645268370928419279,
  2518. "GameView": true,
  2519. "BoxShape": {
  2520. "Configuration": {
  2521. "Dimensions": [
  2522. 1.0,
  2523. 1.0,
  2524. 0.5
  2525. ]
  2526. }
  2527. }
  2528. },
  2529. "Component_[4967855945839220490]": {
  2530. "$type": "EditorLockComponent",
  2531. "Id": 4967855945839220490
  2532. },
  2533. "Component_[5727156644387859301]": {
  2534. "$type": "EditorColliderComponent",
  2535. "Id": 5727156644387859301,
  2536. "ColliderConfiguration": {
  2537. "MaterialSlots": {
  2538. "Slots": [
  2539. {
  2540. "Name": "Entire object"
  2541. }
  2542. ]
  2543. }
  2544. },
  2545. "ShapeConfiguration": {
  2546. "ShapeType": 1,
  2547. "Box": {
  2548. "Configuration": [
  2549. 1.0,
  2550. 1.0,
  2551. 0.5
  2552. ]
  2553. }
  2554. }
  2555. },
  2556. "Component_[8718775976112602879]": {
  2557. "$type": "EditorInspectorComponent",
  2558. "Id": 8718775976112602879
  2559. },
  2560. "Component_[9421105513909709650]": {
  2561. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2562. "Id": 9421105513909709650,
  2563. "Parent Entity": "Entity_[1443068190329]",
  2564. "Transform Data": {
  2565. "Translate": [
  2566. 0.0,
  2567. 0.0,
  2568. 0.3937875032424927
  2569. ]
  2570. }
  2571. }
  2572. }
  2573. },
  2574. "Entity_[5253935932561]": {
  2575. "Id": "Entity_[5253935932561]",
  2576. "Name": "Entity1",
  2577. "Components": {
  2578. "Component_[11887229845449081651]": {
  2579. "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
  2580. "Id": 11887229845449081651,
  2581. "Controller": {
  2582. "Configuration": {
  2583. "Field of View": 60.0,
  2584. "EditorEntityId": 8169843862907824176
  2585. }
  2586. }
  2587. },
  2588. "Component_[14572704560921163535]": {
  2589. "$type": "EditorVisibilityComponent",
  2590. "Id": 14572704560921163535
  2591. },
  2592. "Component_[15172814678937472544]": {
  2593. "$type": "EditorInspectorComponent",
  2594. "Id": 15172814678937472544
  2595. },
  2596. "Component_[16986981767876562426]": {
  2597. "$type": "EditorEntityIconComponent",
  2598. "Id": 16986981767876562426
  2599. },
  2600. "Component_[17423322489630331151]": {
  2601. "$type": "EditorPendingCompositionComponent",
  2602. "Id": 17423322489630331151
  2603. },
  2604. "Component_[18046559409255846800]": {
  2605. "$type": "GenericComponentWrapper",
  2606. "Id": 18046559409255846800,
  2607. "m_template": {
  2608. "$type": "FlyCameraInputComponent",
  2609. "Move Speed": 1.0,
  2610. "Rotation Speed": 1.0
  2611. }
  2612. },
  2613. "Component_[2418186248743500285]": {
  2614. "$type": "EditorDisabledCompositionComponent",
  2615. "Id": 2418186248743500285
  2616. },
  2617. "Component_[3088626712260312241]": {
  2618. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2619. "Id": 3088626712260312241,
  2620. "Parent Entity": "Entity_[1176639161715]",
  2621. "Transform Data": {
  2622. "Translate": [
  2623. 1.0379832983016968,
  2624. -2.6616461277008057,
  2625. 1.7440247535705566
  2626. ],
  2627. "Rotate": [
  2628. -16.02065658569336,
  2629. -3.202078342437744,
  2630. 11.008499145507813
  2631. ]
  2632. }
  2633. },
  2634. "Component_[6423979776420328213]": {
  2635. "$type": "EditorEntitySortComponent",
  2636. "Id": 6423979776420328213
  2637. },
  2638. "Component_[7934962855244834403]": {
  2639. "$type": "EditorLockComponent",
  2640. "Id": 7934962855244834403
  2641. },
  2642. "Component_[9003720906380897961]": {
  2643. "$type": "EditorOnlyEntityComponent",
  2644. "Id": 9003720906380897961
  2645. }
  2646. }
  2647. }
  2648. }
  2649. }