123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649 |
- {
- "ContainerEntity": {
- "Id": "Entity_[1146574390643]",
- "Name": "Level",
- "Components": {
- "Component_[10641544592923449938]": {
- "$type": "EditorInspectorComponent",
- "Id": 10641544592923449938
- },
- "Component_[12039882709170782873]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12039882709170782873
- },
- "Component_[12265484671603697631]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12265484671603697631
- },
- "Component_[14126657869720434043]": {
- "$type": "EditorEntitySortComponent",
- "Id": 14126657869720434043,
- "Child Entity Order": [
- "Entity_[1176639161715]",
- "Entity_[1443068190329]"
- ]
- },
- "Component_[15230859088967841193]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 15230859088967841193,
- "Parent Entity": ""
- },
- "Component_[16239496886950819870]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 16239496886950819870
- },
- "Component_[16843824328835980604]": {
- "$type": "LocalViewBookmarkComponent",
- "Id": 16843824328835980604,
- "LocalBookmarkFileName": "robotic-arm_1671539006337141059.setreg"
- },
- "Component_[5688118765544765547]": {
- "$type": "EditorEntityIconComponent",
- "Id": 5688118765544765547
- },
- "Component_[7247035804068349658]": {
- "$type": "EditorPrefabComponent",
- "Id": 7247035804068349658
- },
- "Component_[9307224322037797205]": {
- "$type": "EditorLockComponent",
- "Id": 9307224322037797205
- },
- "Component_[9562516168917670048]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9562516168917670048
- }
- }
- },
- "Entities": {
- "Entity_[1155164325235]": {
- "Id": "Entity_[1155164325235]",
- "Name": "Sun",
- "Components": {
- "Component_[13620450453324765907]": {
- "$type": "EditorLockComponent",
- "Id": 13620450453324765907
- },
- "Component_[2134313378593666258]": {
- "$type": "EditorInspectorComponent",
- "Id": 2134313378593666258
- },
- "Component_[234010807770404186]": {
- "$type": "EditorVisibilityComponent",
- "Id": 234010807770404186
- },
- "Component_[2970359110423865725]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2970359110423865725
- },
- "Component_[3722854130373041803]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 3722854130373041803
- },
- "Component_[5992533738676323195]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 5992533738676323195
- },
- "Component_[7378860763541895402]": {
- "$type": "AZ::Render::EditorDirectionalLightComponent",
- "Id": 7378860763541895402,
- "Controller": {
- "Configuration": {
- "Intensity": 1.0,
- "CameraEntityId": "",
- "ShadowFilterMethod": 1
- }
- }
- },
- "Component_[7892834440890947578]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 7892834440890947578,
- "Parent Entity": "Entity_[1176639161715]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 13.487043380737305
- ],
- "Rotate": [
- -76.13099670410156,
- -0.847000002861023,
- -15.8100004196167
- ]
- }
- },
- "Component_[8599729549570828259]": {
- "$type": "EditorEntitySortComponent",
- "Id": 8599729549570828259
- },
- "Component_[952797371922080273]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 952797371922080273
- }
- }
- },
- "Entity_[1159459292531]": {
- "Id": "Entity_[1159459292531]",
- "Name": "Ground",
- "Components": {
- "Component_[12260880513256986252]": {
- "$type": "EditorEntityIconComponent",
- "Id": 12260880513256986252
- },
- "Component_[13711420870643673468]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 13711420870643673468
- },
- "Component_[138002849734991713]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 138002849734991713
- },
- "Component_[13883352761969014787]": {
- "$type": "EditorStaticRigidBodyComponent",
- "Id": 13883352761969014787
- },
- "Component_[16578565737331764849]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 16578565737331764849,
- "Parent Entity": "Entity_[1176639161715]"
- },
- "Component_[16919232076966545697]": {
- "$type": "EditorInspectorComponent",
- "Id": 16919232076966545697
- },
- "Component_[5182430712893438093]": {
- "$type": "EditorMaterialComponent",
- "Id": 5182430712893438093
- },
- "Component_[5245524694917323904]": {
- "$type": "EditorColliderComponent",
- "Id": 5245524694917323904,
- "ColliderConfiguration": {
- "Position": [
- 0.0,
- 0.0,
- -0.5
- ],
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Entire object"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "ShapeType": 1,
- "Box": {
- "Configuration": [
- 512.0,
- 512.0,
- 1.0
- ]
- }
- },
- "DebugDrawSettings": {
- "LocallyEnabled": false
- }
- },
- "Component_[5675108321710651991]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 5675108321710651991,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
- "subId": 277889906
- },
- "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
- }
- }
- }
- },
- "Component_[5681893399601237518]": {
- "$type": "EditorEntitySortComponent",
- "Id": 5681893399601237518
- },
- "Component_[592692962543397545]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 592692962543397545
- },
- "Component_[7090012899106946164]": {
- "$type": "EditorLockComponent",
- "Id": 7090012899106946164
- },
- "Component_[9410832619875640998]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9410832619875640998
- }
- }
- },
- "Entity_[1168049227123]": {
- "Id": "Entity_[1168049227123]",
- "Name": "Grid",
- "Components": {
- "Component_[11443347433215807130]": {
- "$type": "EditorEntityIconComponent",
- "Id": 11443347433215807130
- },
- "Component_[14249419413039427459]": {
- "$type": "EditorInspectorComponent",
- "Id": 14249419413039427459
- },
- "Component_[15448581635946161318]": {
- "$type": "AZ::Render::EditorGridComponent",
- "Id": 15448581635946161318,
- "Controller": {
- "Configuration": {
- "primarySpacing": 4.0,
- "primaryColor": [
- 0.501960813999176,
- 0.501960813999176,
- 0.501960813999176
- ],
- "secondarySpacing": 0.5,
- "secondaryColor": [
- 0.250980406999588,
- 0.250980406999588,
- 0.250980406999588
- ]
- }
- }
- },
- "Component_[1843303322527297409]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 1843303322527297409
- },
- "Component_[380249072065273654]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 380249072065273654,
- "Parent Entity": "Entity_[1176639161715]"
- },
- "Component_[7476660583684339787]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 7476660583684339787
- },
- "Component_[7557626501215118375]": {
- "$type": "EditorEntitySortComponent",
- "Id": 7557626501215118375
- },
- "Component_[7984048488947365511]": {
- "$type": "EditorVisibilityComponent",
- "Id": 7984048488947365511
- },
- "Component_[8118181039276487398]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 8118181039276487398
- },
- "Component_[9189909764215270515]": {
- "$type": "EditorLockComponent",
- "Id": 9189909764215270515
- }
- }
- },
- "Entity_[1176639161715]": {
- "Id": "Entity_[1176639161715]",
- "Name": "Atom Default Environment",
- "Components": {
- "Component_[10757302973393310045]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 10757302973393310045,
- "Parent Entity": "Entity_[1146574390643]"
- },
- "Component_[14505817420424255464]": {
- "$type": "EditorInspectorComponent",
- "Id": 14505817420424255464,
- "ComponentOrderEntryArray": [
- {
- "ComponentId": 10757302973393310045
- }
- ]
- },
- "Component_[14988041764659020032]": {
- "$type": "EditorLockComponent",
- "Id": 14988041764659020032
- },
- "Component_[15900837685796817138]": {
- "$type": "EditorVisibilityComponent",
- "Id": 15900837685796817138
- },
- "Component_[3298767348226484884]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 3298767348226484884
- },
- "Component_[4076975109609220594]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 4076975109609220594
- },
- "Component_[5679760548946028854]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 5679760548946028854
- },
- "Component_[5855590796136709437]": {
- "$type": "EditorEntitySortComponent",
- "Id": 5855590796136709437,
- "Child Entity Order": [
- "Entity_[5253935932561]",
- "Entity_[1155164325235]",
- "Entity_[1180934129011]",
- "Entity_[1168049227123]",
- "Entity_[1159459292531]"
- ]
- },
- "Component_[9277695270015777859]": {
- "$type": "EditorEntityIconComponent",
- "Id": 9277695270015777859
- }
- }
- },
- "Entity_[1180934129011]": {
- "Id": "Entity_[1180934129011]",
- "Name": "Global Sky",
- "Components": {
- "Component_[11231930600558681245]": {
- "$type": "AZ::Render::EditorHDRiSkyboxComponent",
- "Id": 11231930600558681245,
- "Controller": {
- "Configuration": {
- "CubemapAsset": {
- "assetId": {
- "guid": "{215E47FD-D181-5832-B1AB-91673ABF6399}",
- "subId": 1000
- },
- "assetHint": "lightingpresets/highcontrast/goegap_4k_skyboxcm.exr.streamingimage"
- }
- }
- }
- },
- "Component_[1428633914413949476]": {
- "$type": "EditorLockComponent",
- "Id": 1428633914413949476
- },
- "Component_[14936200426671614999]": {
- "$type": "AZ::Render::EditorImageBasedLightComponent",
- "Id": 14936200426671614999,
- "Controller": {
- "Configuration": {
- "diffuseImageAsset": {
- "assetId": {
- "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
- "subId": 3000
- },
- "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_ibldiffuse.exr.streamingimage"
- },
- "specularImageAsset": {
- "assetId": {
- "guid": "{3FD09945-D0F2-55C8-B9AF-B2FD421FE3BE}",
- "subId": 2000
- },
- "assetHint": "lightingpresets/highcontrast/goegap_4k_iblglobalcm_iblspecular.exr.streamingimage"
- }
- }
- }
- },
- "Component_[14994774102579326069]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 14994774102579326069
- },
- "Component_[15417479889044493340]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 15417479889044493340
- },
- "Component_[15826613364991382688]": {
- "$type": "EditorEntitySortComponent",
- "Id": 15826613364991382688
- },
- "Component_[1665003113283562343]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 1665003113283562343
- },
- "Component_[3704934735944502280]": {
- "$type": "EditorEntityIconComponent",
- "Id": 3704934735944502280
- },
- "Component_[5698542331457326479]": {
- "$type": "EditorVisibilityComponent",
- "Id": 5698542331457326479
- },
- "Component_[6644513399057217122]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 6644513399057217122,
- "Parent Entity": "Entity_[1176639161715]"
- },
- "Component_[931091830724002070]": {
- "$type": "EditorInspectorComponent",
- "Id": 931091830724002070
- }
- }
- },
- "Entity_[1443068190329]": {
- "Id": "Entity_[1443068190329]",
- "Name": "panda",
- "Components": {
- "Component_[12358832423608736683]": {
- "$type": "EditorVisibilityComponent",
- "Id": 12358832423608736683
- },
- "Component_[1274189681831648722]": {
- "$type": "EditorLockComponent",
- "Id": 1274189681831648722
- },
- "Component_[14937191109674505901]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 14937191109674505901
- },
- "Component_[15216907759427825252]": {
- "$type": "EditorInspectorComponent",
- "Id": 15216907759427825252
- },
- "Component_[298461213799198995]": {
- "$type": "EditorEntityIconComponent",
- "Id": 298461213799198995
- },
- "Component_[3969252952258928548]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3969252952258928548
- },
- "Component_[465294739564050186]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 465294739564050186,
- "Parent Entity": "Entity_[1146574390643]"
- },
- "Component_[5207792897692430596]": {
- "$type": "EditorEntitySortComponent",
- "Id": 5207792897692430596,
- "Child Entity Order": [
- "Entity_[1550442372729]"
- ]
- },
- "Component_[8639458971073745730]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 8639458971073745730
- }
- }
- },
- "Entity_[1447363157625]": {
- "Id": "Entity_[1447363157625]",
- "Name": "panda_hand",
- "Components": {
- "Component_[12551621526998967469]": {
- "$type": "EditorEntityIconComponent",
- "Id": 12551621526998967469
- },
- "Component_[13154810072353919898]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 13154810072353919898
- },
- "Component_[13402524642038966171]": {
- "$type": "EditorEntitySortComponent",
- "Id": 13402524642038966171,
- "Child Entity Order": [
- "Entity_[1490312830585]",
- "Entity_[1507492699769]",
- "Entity_[1533262503545]",
- "Entity_[1498902765177]"
- ]
- },
- "Component_[14327394426014884890]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 14327394426014884890
- },
- "Component_[14907218637753709498]": {
- "$type": "EditorLockComponent",
- "Id": 14907218637753709498
- },
- "Component_[1747436092034981914]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 1747436092034981914
- },
- "Component_[2510677924607121608]": {
- "$type": "EditorInspectorComponent",
- "Id": 2510677924607121608
- },
- "Component_[3636147994185355839]": {
- "$type": "EditorVisibilityComponent",
- "Id": 3636147994185355839
- },
- "Component_[3653972652814557705]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3653972652814557705,
- "DisabledComponents": [
- {
- "$type": "EditorColliderComponent",
- "Id": 12527173394158692186,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "DefaultMaterial"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{0F8D8030-40D0-50BC-AE6D-DBFDB1423A01}",
- "subId": 3467673227
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/hand.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{0F8D8030-40D0-50BC-AE6D-DBFDB1423A01}",
- "subId": 3467673227
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/hand.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- }
- ]
- },
- "Component_[9416643980828405623]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 9416643980828405623,
- "Parent Entity": "Entity_[1520377601657]",
- "Transform Data": {
- "Rotate": [
- 2.9822420032597774e-13,
- 3.438553424200269e-13,
- -8.948826745840486e-28
- ]
- }
- }
- }
- },
- "Entity_[1451658124921]": {
- "Id": "Entity_[1451658124921]",
- "Name": "panda_link5",
- "Components": {
- "Component_[11146083690564568129]": {
- "$type": "EditorVisibilityComponent",
- "Id": 11146083690564568129
- },
- "Component_[16029546392385670672]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 16029546392385670672
- },
- "Component_[1845866248095674128]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 1845866248095674128,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "DefaultMaterial"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{CB30723D-12BA-590D-91D8-6A2E13B443BF}",
- "subId": 3519822991
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link5.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{CB30723D-12BA-590D-91D8-6A2E13B443BF}",
- "subId": 3519822991
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link5.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- },
- "Component_[2296827166106929870]": {
- "$type": "EditorEntitySortComponent",
- "Id": 2296827166106929870,
- "Child Entity Order": [
- "Entity_[1494607797881]",
- "Entity_[1516082634361]"
- ]
- },
- "Component_[2671723692007071615]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 2671723692007071615,
- "Parent Entity": "Entity_[1511787667065]",
- "Transform Data": {
- "Translate": [
- -0.08249998837709427,
- 0.3840000629425049,
- 1.3732909565078444e-7
- ],
- "Rotate": [
- -89.9999771118164,
- 0.0,
- 0.0
- ]
- }
- },
- "Component_[2954374947364955573]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 2954374947364955573,
- "ArticulationConfiguration": {
- "Mass": 2.6226420402526855,
- "Centre of mass offset": [
- 0.0,
- 0.061000000685453415,
- -0.10409999638795853
- ],
- "Articulation Joint Type": 1,
- "Local Rotation": [
- 0.0,
- -90.0,
- 0.0
- ],
- "Angular Limit Negative": -166.0,
- "Angular Limit Positive": 166.0
- }
- },
- "Component_[5101381396165317109]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 5101381396165317109
- },
- "Component_[5256968178503014931]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5256968178503014931
- },
- "Component_[7004057836086193338]": {
- "$type": "EditorInspectorComponent",
- "Id": 7004057836086193338
- },
- "Component_[7957954241301087468]": {
- "$type": "EditorLockComponent",
- "Id": 7957954241301087468
- },
- "Component_[8094060465522202108]": {
- "$type": "GenericComponentWrapper",
- "Id": 8094060465522202108,
- "m_template": {
- "$type": "ImGuiJointDemo"
- }
- },
- "Component_[946063945878607995]": {
- "$type": "EditorEntityIconComponent",
- "Id": 946063945878607995
- }
- }
- },
- "Entity_[1455953092217]": {
- "Id": "Entity_[1455953092217]",
- "Name": "panda_leftfinger_visual",
- "Components": {
- "Component_[13811571509749743189]": {
- "$type": "EditorLockComponent",
- "Id": 13811571509749743189
- },
- "Component_[15201822486803307758]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 15201822486803307758,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{3FD33201-6283-5104-80D7-34AD0DCEF99C}",
- "subId": 279808703
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/finger.azmodel"
- }
- }
- }
- },
- "Component_[17912093847931097253]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 17912093847931097253
- },
- "Component_[18137102233943031321]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 18137102233943031321
- },
- "Component_[18230585574590685193]": {
- "$type": "EditorInspectorComponent",
- "Id": 18230585574590685193
- },
- "Component_[4640473479684852658]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 4640473479684852658
- },
- "Component_[4641901124960453463]": {
- "$type": "EditorEntityIconComponent",
- "Id": 4641901124960453463
- },
- "Component_[6926860558467937457]": {
- "$type": "EditorEntitySortComponent",
- "Id": 6926860558467937457
- },
- "Component_[8659698482583807911]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8659698482583807911,
- "Parent Entity": "Entity_[1533262503545]"
- },
- "Component_[9996370531107794697]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9996370531107794697
- }
- }
- },
- "Entity_[1460248059513]": {
- "Id": "Entity_[1460248059513]",
- "Name": "panda_link1",
- "Components": {
- "Component_[1026580191358270278]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 1026580191358270278
- },
- "Component_[10604888746672015994]": {
- "$type": "EditorVisibilityComponent",
- "Id": 10604888746672015994
- },
- "Component_[11501414974256442375]": {
- "$type": "GenericComponentWrapper",
- "Id": 11501414974256442375,
- "m_template": {
- "$type": "ImGuiJointDemo"
- }
- },
- "Component_[13021556176595338229]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 13021556176595338229
- },
- "Component_[14094898748846434315]": {
- "$type": "EditorLockComponent",
- "Id": 14094898748846434315
- },
- "Component_[14601021287347470989]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 14601021287347470989,
- "ArticulationConfiguration": {
- "Mass": 2.6433169841766357,
- "Centre of mass offset": [
- 0.0,
- -0.03249580040574074,
- -0.06758180260658264
- ],
- "Articulation Joint Type": 1,
- "Local Rotation": [
- 0.0,
- -90.0,
- 0.0
- ],
- "Angular Limit Negative": -166.0,
- "Angular Limit Positive": 166.0
- }
- },
- "Component_[15902421467411022820]": {
- "$type": "EditorEntityIconComponent",
- "Id": 15902421467411022820
- },
- "Component_[17055220683859828516]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17055220683859828516,
- "Child Entity Order": [
- "Entity_[1481722895993]",
- "Entity_[1546147405433]"
- ]
- },
- "Component_[5967902799324868464]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5967902799324868464,
- "Parent Entity": "Entity_[1528967536249]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 0.3330000042915344
- ]
- }
- },
- "Component_[749807106692815373]": {
- "$type": "EditorInspectorComponent",
- "Id": 749807106692815373
- },
- "Component_[7651470095727410225]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 7651470095727410225,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "DefaultMaterial"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{4D8BD2BC-0C41-58CD-B879-B129A8644D36}",
- "subId": 3673033472
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link1.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{4D8BD2BC-0C41-58CD-B879-B129A8644D36}",
- "subId": 3673033472
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link1.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- },
- "Component_[7658646984313827532]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 7658646984313827532
- }
- }
- },
- "Entity_[1464543026809]": {
- "Id": "Entity_[1464543026809]",
- "Name": "panda_rightfinger_visual",
- "Components": {
- "Component_[10427126601697002200]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 10427126601697002200
- },
- "Component_[10689701807611894787]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 10689701807611894787,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{3FD33201-6283-5104-80D7-34AD0DCEF99C}",
- "subId": 279808703
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/finger.azmodel"
- }
- }
- }
- },
- "Component_[13864387599980986616]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 13864387599980986616,
- "Parent Entity": "Entity_[1498902765177]",
- "Transform Data": {
- "Rotate": [
- 0.0,
- 0.0,
- 180.0
- ]
- }
- },
- "Component_[14849482791957566358]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14849482791957566358
- },
- "Component_[15740343562745812959]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15740343562745812959
- },
- "Component_[17958433759910135046]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 17958433759910135046
- },
- "Component_[18262241756789109341]": {
- "$type": "EditorInspectorComponent",
- "Id": 18262241756789109341
- },
- "Component_[3260035828538141562]": {
- "$type": "EditorVisibilityComponent",
- "Id": 3260035828538141562
- },
- "Component_[5734562379059832260]": {
- "$type": "EditorEntitySortComponent",
- "Id": 5734562379059832260
- },
- "Component_[6043899250469168749]": {
- "$type": "EditorLockComponent",
- "Id": 6043899250469168749
- }
- }
- },
- "Entity_[1468837994105]": {
- "Id": "Entity_[1468837994105]",
- "Name": "panda_link0_visual",
- "Components": {
- "Component_[10825680498731110401]": {
- "$type": "EditorVisibilityComponent",
- "Id": 10825680498731110401
- },
- "Component_[12362213493842313231]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 12362213493842313231
- },
- "Component_[12516294397900397214]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 12516294397900397214,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{3842707A-4020-555F-B569-937D34857A04}",
- "subId": 274182450
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link0.azmodel"
- }
- }
- }
- },
- "Component_[13167613343964391547]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 13167613343964391547,
- "Parent Entity": "Entity_[1528967536249]"
- },
- "Component_[14604114869224247260]": {
- "$type": "EditorEntitySortComponent",
- "Id": 14604114869224247260
- },
- "Component_[15669940640302432085]": {
- "$type": "EditorEntityIconComponent",
- "Id": 15669940640302432085
- },
- "Component_[16044878493014329073]": {
- "$type": "EditorInspectorComponent",
- "Id": 16044878493014329073
- },
- "Component_[16467534599593027034]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 16467534599593027034
- },
- "Component_[785659650618515401]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 785659650618515401
- },
- "Component_[9873929354130186388]": {
- "$type": "EditorLockComponent",
- "Id": 9873929354130186388
- }
- }
- },
- "Entity_[1473132961401]": {
- "Id": "Entity_[1473132961401]",
- "Name": "panda_link6_visual",
- "Components": {
- "Component_[10481057607952329087]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 10481057607952329087,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{CE66D5E5-09AC-593D-BDAC-1B5AB8570E7C}",
- "subId": 271848455
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link6.azmodel"
- }
- }
- }
- },
- "Component_[12389245641422761500]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12389245641422761500
- },
- "Component_[13062250255461171583]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 13062250255461171583
- },
- "Component_[13073738493660970633]": {
- "$type": "EditorVisibilityComponent",
- "Id": 13073738493660970633
- },
- "Component_[15992495973345264086]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15992495973345264086
- },
- "Component_[16758064438201464483]": {
- "$type": "EditorEntitySortComponent",
- "Id": 16758064438201464483
- },
- "Component_[4819945248226536697]": {
- "$type": "EditorInspectorComponent",
- "Id": 4819945248226536697
- },
- "Component_[5775968904229939613]": {
- "$type": "EditorEntityIconComponent",
- "Id": 5775968904229939613
- },
- "Component_[7263909256782742526]": {
- "$type": "EditorLockComponent",
- "Id": 7263909256782742526
- },
- "Component_[7433508156475950836]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 7433508156475950836,
- "Parent Entity": "Entity_[1516082634361]"
- }
- }
- },
- "Entity_[1477427928697]": {
- "Id": "Entity_[1477427928697]",
- "Name": "panda_link3_visual",
- "Components": {
- "Component_[10719522543450535245]": {
- "$type": "EditorLockComponent",
- "Id": 10719522543450535245
- },
- "Component_[12679040307807472041]": {
- "$type": "EditorInspectorComponent",
- "Id": 12679040307807472041
- },
- "Component_[1489495166770715923]": {
- "$type": "EditorVisibilityComponent",
- "Id": 1489495166770715923
- },
- "Component_[1542893064856696086]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 1542893064856696086,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{6A81A808-B5F5-54C1-9B85-B3AB3912AB3A}",
- "subId": 274653320
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link3.azmodel"
- }
- }
- }
- },
- "Component_[16203591625115569827]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 16203591625115569827
- },
- "Component_[1668935785088600792]": {
- "$type": "EditorEntitySortComponent",
- "Id": 1668935785088600792
- },
- "Component_[16808104400905918500]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 16808104400905918500,
- "Parent Entity": "Entity_[1486017863289]"
- },
- "Component_[2001918989029160751]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 2001918989029160751
- },
- "Component_[8560507514947751954]": {
- "$type": "EditorEntityIconComponent",
- "Id": 8560507514947751954
- },
- "Component_[8946061601820481143]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 8946061601820481143
- }
- }
- },
- "Entity_[1481722895993]": {
- "Id": "Entity_[1481722895993]",
- "Name": "panda_link1_visual",
- "Components": {
- "Component_[10717308837344584694]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 10717308837344584694
- },
- "Component_[17180248397752904708]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 17180248397752904708,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{137E3661-B18A-5E9E-A3C3-200C0686A3B6}",
- "subId": 273711524
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link1.azmodel"
- }
- }
- }
- },
- "Component_[17772052042030128999]": {
- "$type": "EditorLockComponent",
- "Id": 17772052042030128999
- },
- "Component_[202003433758858498]": {
- "$type": "EditorInspectorComponent",
- "Id": 202003433758858498
- },
- "Component_[3821965428177115719]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3821965428177115719
- },
- "Component_[5338863740674084556]": {
- "$type": "EditorEntitySortComponent",
- "Id": 5338863740674084556
- },
- "Component_[5689269783850696894]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5689269783850696894,
- "Parent Entity": "Entity_[1460248059513]"
- },
- "Component_[6495449098420195088]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 6495449098420195088
- },
- "Component_[696774216364958126]": {
- "$type": "EditorVisibilityComponent",
- "Id": 696774216364958126
- },
- "Component_[7224194133862218263]": {
- "$type": "EditorEntityIconComponent",
- "Id": 7224194133862218263
- }
- }
- },
- "Entity_[1486017863289]": {
- "Id": "Entity_[1486017863289]",
- "Name": "panda_link3",
- "Components": {
- "Component_[11069307272851201575]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 11069307272851201575,
- "ArticulationConfiguration": {
- "Mass": 2.3293709754943848,
- "Centre of mass offset": [
- 0.04698000103235245,
- 0.03162999823689461,
- -0.031700000166893005
- ],
- "Articulation Joint Type": 1,
- "Local Rotation": [
- 0.0,
- -90.0,
- 0.0
- ],
- "Angular Limit Negative": -166.0,
- "Angular Limit Positive": 166.0
- }
- },
- "Component_[11727172097126435982]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 11727172097126435982,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "DefaultMaterial"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{8CC80F0B-5096-5651-8098-D988869E2383}",
- "subId": 3772333143
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link3.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{8CC80F0B-5096-5651-8098-D988869E2383}",
- "subId": 3772333143
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link3.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- },
- "Component_[13077654605065003917]": {
- "$type": "EditorInspectorComponent",
- "Id": 13077654605065003917
- },
- "Component_[13728954510791227418]": {
- "$type": "EditorLockComponent",
- "Id": 13728954510791227418
- },
- "Component_[14907715773005187526]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14907715773005187526
- },
- "Component_[15328952216984693045]": {
- "$type": "EditorVisibilityComponent",
- "Id": 15328952216984693045
- },
- "Component_[4134176143233927709]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 4134176143233927709
- },
- "Component_[4892654314170343746]": {
- "$type": "GenericComponentWrapper",
- "Id": 4892654314170343746,
- "m_template": {
- "$type": "ImGuiJointDemo"
- }
- },
- "Component_[6173638295034155689]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 6173638295034155689
- },
- "Component_[6222086343109095048]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 6222086343109095048,
- "Parent Entity": "Entity_[1546147405433]",
- "Transform Data": {
- "Translate": [
- 0.0,
- -0.31599998474121094,
- 4.708766709882184e-8
- ],
- "Rotate": [
- 89.99998474121094,
- 0.0,
- 0.0
- ]
- }
- },
- "Component_[6510318466342434784]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 6510318466342434784
- },
- "Component_[8594347468316697810]": {
- "$type": "EditorEntitySortComponent",
- "Id": 8594347468316697810,
- "Child Entity Order": [
- "Entity_[1477427928697]",
- "Entity_[1511787667065]"
- ]
- }
- }
- },
- "Entity_[1490312830585]": {
- "Id": "Entity_[1490312830585]",
- "Name": "panda_hand_visual",
- "Components": {
- "Component_[11211061689771920349]": {
- "$type": "EditorInspectorComponent",
- "Id": 11211061689771920349
- },
- "Component_[12203146110749621458]": {
- "$type": "EditorEntitySortComponent",
- "Id": 12203146110749621458
- },
- "Component_[15651020913592034875]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 15651020913592034875
- },
- "Component_[1651217386630922893]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 1651217386630922893,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{0439E4F6-C733-55C6-BFD3-7F57D941CA58}",
- "subId": 274875023
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/hand.azmodel"
- }
- }
- }
- },
- "Component_[17061060562978745083]": {
- "$type": "EditorLockComponent",
- "Id": 17061060562978745083
- },
- "Component_[1769651324208618943]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1769651324208618943,
- "Parent Entity": "Entity_[1447363157625]"
- },
- "Component_[1814292244042225763]": {
- "$type": "EditorEntityIconComponent",
- "Id": 1814292244042225763
- },
- "Component_[4607802330473043710]": {
- "$type": "EditorVisibilityComponent",
- "Id": 4607802330473043710
- },
- "Component_[4633219056900219123]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 4633219056900219123
- },
- "Component_[9787806027699440895]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 9787806027699440895
- }
- }
- },
- "Entity_[1494607797881]": {
- "Id": "Entity_[1494607797881]",
- "Name": "panda_link5_visual",
- "Components": {
- "Component_[11060167279999234858]": {
- "$type": "EditorVisibilityComponent",
- "Id": 11060167279999234858
- },
- "Component_[1462147876988610058]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 1462147876988610058
- },
- "Component_[14652798813504289690]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 14652798813504289690,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{5B73CB39-7795-5819-813D-E05E3B212AE7}",
- "subId": 272451005
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link5.azmodel"
- }
- }
- }
- },
- "Component_[17338603180772065985]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17338603180772065985
- },
- "Component_[2581768843261959063]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 2581768843261959063,
- "Parent Entity": "Entity_[1451658124921]"
- },
- "Component_[3309211502415539]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 3309211502415539
- },
- "Component_[483903852765706409]": {
- "$type": "EditorEntityIconComponent",
- "Id": 483903852765706409
- },
- "Component_[5705049197738806759]": {
- "$type": "EditorLockComponent",
- "Id": 5705049197738806759
- },
- "Component_[8284507001227361542]": {
- "$type": "EditorInspectorComponent",
- "Id": 8284507001227361542
- },
- "Component_[9375903850292364080]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 9375903850292364080
- }
- }
- },
- "Entity_[1498902765177]": {
- "Id": "Entity_[1498902765177]",
- "Name": "panda_rightfinger",
- "Components": {
- "Component_[12094943479793120756]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12094943479793120756
- },
- "Component_[1352358979643850014]": {
- "$type": "EditorLockComponent",
- "Id": 1352358979643850014
- },
- "Component_[14554244268325390611]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 14554244268325390611
- },
- "Component_[15085426669312785097]": {
- "$type": "GenericComponentWrapper",
- "Id": 15085426669312785097,
- "m_template": {
- "$type": "ImGuiJointDemo"
- }
- },
- "Component_[1543342704919662467]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1543342704919662467,
- "Parent Entity": "Entity_[1447363157625]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 0.05840003490447998
- ]
- }
- },
- "Component_[16273116764622982077]": {
- "$type": "EditorInspectorComponent",
- "Id": 16273116764622982077
- },
- "Component_[1903930015834931168]": {
- "$type": "EditorVisibilityComponent",
- "Id": 1903930015834931168
- },
- "Component_[2310690044688145497]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2310690044688145497
- },
- "Component_[4879485097231618998]": {
- "$type": "EditorEntitySortComponent",
- "Id": 4879485097231618998,
- "Child Entity Order": [
- "Entity_[1464543026809]"
- ]
- },
- "Component_[5165586741528335352]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5165586741528335352
- },
- "Component_[7713128066166086009]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 7713128066166086009,
- "ArticulationConfiguration": {
- "Mass": 0.22383999824523926,
- "Centre of mass offset": [
- 0.0,
- 0.002199999988079071,
- -0.027699999511241913
- ],
- "Articulation Joint Type": 2,
- "Local Rotation": [
- 0.0,
- 0.0,
- -90.0
- ],
- "Linear Limit Lower": 0.0,
- "Linear Limit Upper": 0.03999999910593033
- }
- }
- }
- },
- "Entity_[1503197732473]": {
- "Id": "Entity_[1503197732473]",
- "Name": "panda_link7_visual",
- "Components": {
- "Component_[10006120602032282279]": {
- "$type": "EditorEntityIconComponent",
- "Id": 10006120602032282279
- },
- "Component_[10209659168699423010]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 10209659168699423010
- },
- "Component_[11831591325934627847]": {
- "$type": "EditorVisibilityComponent",
- "Id": 11831591325934627847
- },
- "Component_[12400126467336495344]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12400126467336495344
- },
- "Component_[1263234983567762233]": {
- "$type": "EditorInspectorComponent",
- "Id": 1263234983567762233
- },
- "Component_[16330963393679257892]": {
- "$type": "EditorLockComponent",
- "Id": 16330963393679257892
- },
- "Component_[17975853688876812202]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17975853688876812202
- },
- "Component_[4800510986270891644]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 4800510986270891644,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{AC0A4138-214E-53AA-8581-0F539ECCB03F}",
- "subId": 271787153
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link7.azmodel"
- }
- }
- }
- },
- "Component_[9245607391699601563]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 9245607391699601563
- },
- "Component_[9984646770241766623]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 9984646770241766623,
- "Parent Entity": "Entity_[1524672568953]"
- }
- }
- },
- "Entity_[1507492699769]": {
- "Id": "Entity_[1507492699769]",
- "Name": "panda_hand_tcp",
- "Components": {
- "Component_[10582914669692011379]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 10582914669692011379
- },
- "Component_[11327277288832805612]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 11327277288832805612
- },
- "Component_[1474299501676068654]": {
- "$type": "EditorInspectorComponent",
- "Id": 1474299501676068654
- },
- "Component_[1517674267450270052]": {
- "$type": "EditorLockComponent",
- "Id": 1517674267450270052
- },
- "Component_[15552109761671889265]": {
- "$type": "EditorEntityIconComponent",
- "Id": 15552109761671889265
- },
- "Component_[17444019532647519607]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17444019532647519607
- },
- "Component_[3176941860568013745]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3176941860568013745
- },
- "Component_[3520662844547153627]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 3520662844547153627,
- "Parent Entity": "Entity_[1447363157625]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 0.10340005159378052
- ]
- }
- },
- "Component_[7666659741322162513]": {
- "$type": "EditorVisibilityComponent",
- "Id": 7666659741322162513
- }
- }
- },
- "Entity_[1511787667065]": {
- "Id": "Entity_[1511787667065]",
- "Name": "panda_link4",
- "Components": {
- "Component_[1095448228505114581]": {
- "$type": "EditorEntitySortComponent",
- "Id": 1095448228505114581,
- "Child Entity Order": [
- "Entity_[1537557470841]",
- "Entity_[1451658124921]"
- ]
- },
- "Component_[13052382700243123758]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 13052382700243123758
- },
- "Component_[15888283843276217511]": {
- "$type": "EditorLockComponent",
- "Id": 15888283843276217511
- },
- "Component_[17783744754927152065]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 17783744754927152065,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "DefaultMaterial"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{F5E29D7C-8368-5FC8-9A50-581377F71686}",
- "subId": 4152747898
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link4.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{F5E29D7C-8368-5FC8-9A50-581377F71686}",
- "subId": 4152747898
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link4.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- },
- "Component_[18296731948827876847]": {
- "$type": "GenericComponentWrapper",
- "Id": 18296731948827876847,
- "m_template": {
- "$type": "ImGuiJointDemo"
- }
- },
- "Component_[18421050458150573996]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 18421050458150573996,
- "ArticulationConfiguration": {
- "Mass": 2.310476303100586,
- "Centre of mass offset": [
- -0.03604999929666519,
- 0.033705998212099075,
- 0.03189999982714653
- ],
- "Articulation Joint Type": 1,
- "Local Rotation": [
- 0.0,
- -90.0,
- 0.0
- ],
- "Angular Limit Negative": -176.0,
- "Angular Limit Positive": 0.0
- }
- },
- "Component_[400097927689277130]": {
- "$type": "EditorVisibilityComponent",
- "Id": 400097927689277130
- },
- "Component_[4933521255346694545]": {
- "$type": "EditorEntityIconComponent",
- "Id": 4933521255346694545
- },
- "Component_[5860484528716318296]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5860484528716318296,
- "Parent Entity": "Entity_[1486017863289]",
- "Transform Data": {
- "Translate": [
- 0.08249999582767487,
- 7.105427357601002e-15,
- 0.0
- ],
- "Rotate": [
- 89.99998474121094,
- 0.0,
- 0.0
- ]
- }
- },
- "Component_[6490914511829866754]": {
- "$type": "EditorInspectorComponent",
- "Id": 6490914511829866754
- },
- "Component_[8603938901844339696]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 8603938901844339696
- },
- "Component_[9561217997100605762]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 9561217997100605762
- }
- }
- },
- "Entity_[1516082634361]": {
- "Id": "Entity_[1516082634361]",
- "Name": "panda_link6",
- "Components": {
- "Component_[12504405826328742383]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 12504405826328742383,
- "Parent Entity": "Entity_[1451658124921]",
- "Transform Data": {
- "Rotate": [
- 89.9999771118164,
- 0.0,
- 0.0
- ]
- }
- },
- "Component_[12731293240319367915]": {
- "$type": "EditorLockComponent",
- "Id": 12731293240319367915
- },
- "Component_[14000936388412406776]": {
- "$type": "EditorVisibilityComponent",
- "Id": 14000936388412406776
- },
- "Component_[14213095225389336453]": {
- "$type": "EditorEntitySortComponent",
- "Id": 14213095225389336453,
- "Child Entity Order": [
- "Entity_[1473132961401]",
- "Entity_[1524672568953]"
- ]
- },
- "Component_[16418524905077799266]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 16418524905077799266,
- "ArticulationConfiguration": {
- "Mass": 1.5025800466537476,
- "Centre of mass offset": [
- 0.050999999046325684,
- 0.009100000374019146,
- 0.01063000038266182
- ],
- "Articulation Joint Type": 1,
- "Local Rotation": [
- 0.0,
- -90.0,
- 0.0
- ],
- "Angular Limit Negative": -1.0,
- "Angular Limit Positive": 215.0
- }
- },
- "Component_[17139042666337948529]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 17139042666337948529
- },
- "Component_[18264423770334575921]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 18264423770334575921
- },
- "Component_[2359965994665001390]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2359965994665001390
- },
- "Component_[3914375426784549412]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 3914375426784549412
- },
- "Component_[4775424680940370350]": {
- "$type": "GenericComponentWrapper",
- "Id": 4775424680940370350,
- "m_template": {
- "$type": "ImGuiJointDemo"
- }
- },
- "Component_[7129885340583146507]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 7129885340583146507,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "DefaultMaterial"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{35FBF335-8EFA-515E-A6ED-F208E4026BE1}",
- "subId": 2873254469
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link6.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{35FBF335-8EFA-515E-A6ED-F208E4026BE1}",
- "subId": 2873254469
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link6.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- },
- "Component_[7988828044386689767]": {
- "$type": "EditorInspectorComponent",
- "Id": 7988828044386689767
- }
- }
- },
- "Entity_[1520377601657]": {
- "Id": "Entity_[1520377601657]",
- "Name": "panda_link8",
- "Components": {
- "Component_[10447452102746744943]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 10447452102746744943
- },
- "Component_[11435467948483981588]": {
- "$type": "EditorEntityIconComponent",
- "Id": 11435467948483981588
- },
- "Component_[13133135808911036058]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 13133135808911036058,
- "Parent Entity": "Entity_[1524672568953]",
- "Transform Data": {
- "Translate": [
- 0.0,
- -1.2755386080698372e-8,
- 0.10699993371963501
- ],
- "Rotate": [
- 0.000006830188794992864,
- 0.0,
- -44.99999237060547
- ]
- }
- },
- "Component_[13216106324570750657]": {
- "$type": "EditorEntitySortComponent",
- "Id": 13216106324570750657,
- "Child Entity Order": [
- "Entity_[1447363157625]"
- ]
- },
- "Component_[13446215410378826063]": {
- "$type": "EditorVisibilityComponent",
- "Id": 13446215410378826063
- },
- "Component_[14163936775156600644]": {
- "$type": "EditorLockComponent",
- "Id": 14163936775156600644
- },
- "Component_[16624535759732586231]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 16624535759732586231
- },
- "Component_[289992594927393495]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 289992594927393495
- },
- "Component_[3176888828131774058]": {
- "$type": "GenericComponentWrapper",
- "Id": 3176888828131774058,
- "m_template": {
- "$type": "ImGuiJointDemo"
- }
- },
- "Component_[3280907557383416321]": {
- "$type": "EditorInspectorComponent",
- "Id": 3280907557383416321
- },
- "Component_[5995599092492179191]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 5995599092492179191
- }
- }
- },
- "Entity_[1524672568953]": {
- "Id": "Entity_[1524672568953]",
- "Name": "panda_link7",
- "Components": {
- "Component_[10558063142983517177]": {
- "$type": "EditorVisibilityComponent",
- "Id": 10558063142983517177
- },
- "Component_[14642315946499918737]": {
- "$type": "EditorLockComponent",
- "Id": 14642315946499918737
- },
- "Component_[17559529945025583655]": {
- "$type": "EditorEntityIconComponent",
- "Id": 17559529945025583655
- },
- "Component_[17760086963186234771]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 17760086963186234771,
- "ArticulationConfiguration": {
- "Mass": 0.5237600207328796,
- "Centre of mass offset": [
- 0.01095999963581562,
- 0.01078999973833561,
- 0.06499999761581421
- ],
- "Articulation Joint Type": 1,
- "Local Rotation": [
- 0.0,
- -90.0,
- 0.0
- ],
- "Angular Limit Negative": -166.0,
- "Angular Limit Positive": 166.0
- }
- },
- "Component_[17957063234535786630]": {
- "$type": "EditorInspectorComponent",
- "Id": 17957063234535786630
- },
- "Component_[2207140849554352415]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 2207140849554352415,
- "Parent Entity": "Entity_[1516082634361]",
- "Transform Data": {
- "Translate": [
- 0.08799998462200165,
- 0.0,
- 0.0
- ],
- "Rotate": [
- 90.00001525878906,
- 0.0,
- 0.0
- ]
- }
- },
- "Component_[2932430117545506753]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 2932430117545506753
- },
- "Component_[5924196996510927056]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 5924196996510927056,
- "DisabledComponents": [
- {
- "$type": "EditorColliderComponent",
- "Id": 4132830031301136330,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "DefaultMaterial"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{F88B053A-E59A-5DCA-BA48-C65A7F9AAE4E}",
- "subId": 4045727865
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link7.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{F88B053A-E59A-5DCA-BA48-C65A7F9AAE4E}",
- "subId": 4045727865
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link7.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- }
- ]
- },
- "Component_[7225487299122439955]": {
- "$type": "EditorEntitySortComponent",
- "Id": 7225487299122439955,
- "Child Entity Order": [
- "Entity_[1503197732473]",
- "Entity_[1520377601657]"
- ]
- },
- "Component_[9499506582606601758]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 9499506582606601758
- },
- "Component_[9831211553258061846]": {
- "$type": "GenericComponentWrapper",
- "Id": 9831211553258061846,
- "m_template": {
- "$type": "ImGuiJointDemo"
- }
- }
- }
- },
- "Entity_[1528967536249]": {
- "Id": "Entity_[1528967536249]",
- "Name": "panda_link0",
- "Components": {
- "Component_[11023397522690486469]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11023397522690486469
- },
- "Component_[11387080232339540049]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 11387080232339540049
- },
- "Component_[14555473105827020152]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 14555473105827020152,
- "ArticulationConfiguration": {
- "Fixed Base": true,
- "Mass": 2.813999891281128,
- "Centre of mass offset": [
- -0.02556600049138069,
- 0.0,
- 0.05733200162649155
- ],
- "SolverPositionIterations": 40,
- "SolverVelocityIterations": 10
- }
- },
- "Component_[16949229272838450297]": {
- "$type": "EditorInspectorComponent",
- "Id": 16949229272838450297
- },
- "Component_[2446713206361739636]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2446713206361739636
- },
- "Component_[3321071768378159460]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 3321071768378159460,
- "Parent Entity": "Entity_[1550442372729]",
- "Transform Data": {
- "Translate": [
- 0.03700241446495056,
- 0.035242438316345215,
- 0.25709283351898193
- ]
- }
- },
- "Component_[4104582140859943209]": {
- "$type": "EditorLockComponent",
- "Id": 4104582140859943209
- },
- "Component_[4516403928144409270]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 4516403928144409270
- },
- "Component_[6652769527061926292]": {
- "$type": "EditorVisibilityComponent",
- "Id": 6652769527061926292
- },
- "Component_[757503998028240491]": {
- "$type": "EditorEntitySortComponent",
- "Id": 757503998028240491,
- "Child Entity Order": [
- "Entity_[1468837994105]",
- "Entity_[1460248059513]"
- ]
- },
- "Component_[7816217204977771734]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 7816217204977771734,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "DefaultMaterial"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{A54F8762-5D10-53C8-950B-1AEC2993F0AC}",
- "subId": 1559438218
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link0.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{A54F8762-5D10-53C8-950B-1AEC2993F0AC}",
- "subId": 1559438218
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link0.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- }
- }
- },
- "Entity_[1533262503545]": {
- "Id": "Entity_[1533262503545]",
- "Name": "panda_leftfinger",
- "Components": {
- "Component_[10623052683589204749]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 10623052683589204749
- },
- "Component_[1226223175206848789]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 1226223175206848789
- },
- "Component_[12307584536677418783]": {
- "$type": "GenericComponentWrapper",
- "Id": 12307584536677418783,
- "m_template": {
- "$type": "ImGuiJointDemo"
- }
- },
- "Component_[12542366717714580296]": {
- "$type": "EditorInspectorComponent",
- "Id": 12542366717714580296
- },
- "Component_[1642651622480229913]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 1642651622480229913,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "DefaultMaterial"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{DFAC8757-EC4A-5885-AAB8-F7E86593D73E}",
- "subId": 4167574034
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/finger.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{DFAC8757-EC4A-5885-AAB8-F7E86593D73E}",
- "subId": 4167574034
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/finger.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- },
- "Component_[18095480052002538812]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 18095480052002538812,
- "Parent Entity": "Entity_[1447363157625]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 0.05840003490447998
- ]
- }
- },
- "Component_[3875768617368381718]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 3875768617368381718,
- "ArticulationConfiguration": {
- "Mass": 0.2238450050354004,
- "Centre of mass offset": [
- 0.0,
- 0.002199999988079071,
- -0.027699999511241913
- ],
- "Articulation Joint Type": 2,
- "Local Rotation": [
- 0.0,
- 0.0,
- 90.0
- ],
- "Linear Limit Lower": 0.0,
- "Linear Limit Upper": 0.03999999910593033
- }
- },
- "Component_[5011659990375240844]": {
- "$type": "EditorLockComponent",
- "Id": 5011659990375240844
- },
- "Component_[6020773828605036995]": {
- "$type": "EditorVisibilityComponent",
- "Id": 6020773828605036995
- },
- "Component_[7846565595297359090]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 7846565595297359090
- },
- "Component_[8237210125200439601]": {
- "$type": "EditorEntitySortComponent",
- "Id": 8237210125200439601,
- "Child Entity Order": [
- "Entity_[1455953092217]"
- ]
- },
- "Component_[9630688787517995368]": {
- "$type": "EditorEntityIconComponent",
- "Id": 9630688787517995368
- }
- }
- },
- "Entity_[1537557470841]": {
- "Id": "Entity_[1537557470841]",
- "Name": "panda_link4_visual",
- "Components": {
- "Component_[14287266945980718124]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 14287266945980718124
- },
- "Component_[15423599006702051658]": {
- "$type": "EditorVisibilityComponent",
- "Id": 15423599006702051658
- },
- "Component_[1745417603957320505]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1745417603957320505,
- "Parent Entity": "Entity_[1511787667065]"
- },
- "Component_[5155854814240048828]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5155854814240048828
- },
- "Component_[560001276088059164]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 560001276088059164
- },
- "Component_[5763330635070305639]": {
- "$type": "EditorEntityIconComponent",
- "Id": 5763330635070305639
- },
- "Component_[7267783405598135630]": {
- "$type": "EditorLockComponent",
- "Id": 7267783405598135630
- },
- "Component_[7823388539508378209]": {
- "$type": "EditorInspectorComponent",
- "Id": 7823388539508378209
- },
- "Component_[9093049256124672578]": {
- "$type": "EditorEntitySortComponent",
- "Id": 9093049256124672578
- },
- "Component_[9926315479429674853]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 9926315479429674853,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{8010A867-2272-5387-8E0F-38EDD7794D27}",
- "subId": 272266539
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link4.azmodel"
- }
- }
- }
- }
- }
- },
- "Entity_[1541852438137]": {
- "Id": "Entity_[1541852438137]",
- "Name": "panda_link2_visual",
- "Components": {
- "Component_[10743067004290866453]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 10743067004290866453
- },
- "Component_[13976896481940066282]": {
- "$type": "EditorEntityIconComponent",
- "Id": 13976896481940066282
- },
- "Component_[14682939577405652049]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 14682939577405652049
- },
- "Component_[15988037462304272081]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 15988037462304272081
- },
- "Component_[3841867526270835667]": {
- "$type": "EditorEntitySortComponent",
- "Id": 3841867526270835667
- },
- "Component_[5240270843337574030]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5240270843337574030,
- "Parent Entity": "Entity_[1546147405433]"
- },
- "Component_[689242563866392767]": {
- "$type": "EditorInspectorComponent",
- "Id": 689242563866392767
- },
- "Component_[8347641877266382208]": {
- "$type": "EditorVisibilityComponent",
- "Id": 8347641877266382208
- },
- "Component_[8566152613248338821]": {
- "$type": "EditorLockComponent",
- "Id": 8566152613248338821
- },
- "Component_[8720387153198876277]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 8720387153198876277,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{52A69A08-9329-5701-8830-7D4AA2AEF721}",
- "subId": 274321438
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/visual/link2.azmodel"
- }
- }
- }
- }
- }
- },
- "Entity_[1546147405433]": {
- "Id": "Entity_[1546147405433]",
- "Name": "panda_link2",
- "Components": {
- "Component_[11685274051949602286]": {
- "$type": "EditorEntitySortComponent",
- "Id": 11685274051949602286,
- "Child Entity Order": [
- "Entity_[1541852438137]",
- "Entity_[1486017863289]"
- ]
- },
- "Component_[12349387052897331986]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12349387052897331986
- },
- "Component_[13122209249433830961]": {
- "$type": "EditorLockComponent",
- "Id": 13122209249433830961
- },
- "Component_[13380066656769127874]": {
- "$type": "EditorVisibilityComponent",
- "Id": 13380066656769127874
- },
- "Component_[16370684070430199569]": {
- "$type": "EditorArticulationLinkComponent",
- "Id": 16370684070430199569,
- "ArticulationConfiguration": {
- "Mass": 2.6652700901031494,
- "Centre of mass offset": [
- 0.0,
- -0.06860999763011932,
- 0.0322284996509552
- ],
- "Articulation Joint Type": 1,
- "Local Rotation": [
- 0.0,
- -90.0,
- 0.0
- ],
- "Angular Limit Negative": -101.0,
- "Angular Limit Positive": 101.0
- }
- },
- "Component_[17263294978659087417]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 17263294978659087417,
- "Parent Entity": "Entity_[1460248059513]",
- "Transform Data": {
- "Rotate": [
- -89.99998474121094,
- 0.0,
- 0.0
- ]
- }
- },
- "Component_[2584117957770865332]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 2584117957770865332
- },
- "Component_[4068300133305965099]": {
- "$type": "EditorInspectorComponent",
- "Id": 4068300133305965099
- },
- "Component_[4583303953242386342]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 4583303953242386342,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "DefaultMaterial"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{AA03F296-279D-5409-BCFE-F5B97343C4EE}",
- "subId": 3244359312
- },
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link2.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{AA03F296-279D-5409-BCFE-F5B97343C4EE}",
- "subId": 3244359312
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/urdf/panda_description/panda_description/meshes/collision/link2.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- },
- "Component_[5327684577197146487]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 5327684577197146487
- },
- "Component_[804351385537396011]": {
- "$type": "EditorEntityIconComponent",
- "Id": 804351385537396011
- },
- "Component_[9659878281939243278]": {
- "$type": "GenericComponentWrapper",
- "Id": 9659878281939243278,
- "m_template": {
- "$type": "ImGuiJointDemo"
- }
- }
- }
- },
- "Entity_[1550442372729]": {
- "Id": "Entity_[1550442372729]",
- "Name": "world",
- "Components": {
- "Component_[11563173854938418344]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 11563173854938418344
- },
- "Component_[12850034890750568699]": {
- "$type": "EditorEntitySortComponent",
- "Id": 12850034890750568699,
- "Child Entity Order": [
- "Entity_[1528967536249]"
- ]
- },
- "Component_[14020412843678536872]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14020412843678536872
- },
- "Component_[16661421188458055654]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16661421188458055654
- },
- "Component_[1783959135520523211]": {
- "$type": "EditorRigidBodyComponent",
- "Id": 1783959135520523211,
- "Configuration": {
- "entityId": "",
- "Compute Mass": false,
- "Mass": 100.0,
- "Inertia tensor": [
- 10.416666984558105,
- 0.0,
- 0.0,
- 0.0,
- 10.416666984558105,
- 0.0,
- 0.0,
- 0.0,
- 16.666667938232422
- ]
- },
- "PhysXSpecificConfiguration": {
- "SolverPositionIterations": 40,
- "SolverVelocityIterations": 10
- }
- },
- "Component_[17924567566051173609]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 17924567566051173609
- },
- "Component_[18046433547961932477]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 18046433547961932477
- },
- "Component_[3645268370928419279]": {
- "$type": "EditorBoxShapeComponent",
- "Id": 3645268370928419279,
- "GameView": true,
- "BoxShape": {
- "Configuration": {
- "Dimensions": [
- 1.0,
- 1.0,
- 0.5
- ]
- }
- }
- },
- "Component_[4967855945839220490]": {
- "$type": "EditorLockComponent",
- "Id": 4967855945839220490
- },
- "Component_[5727156644387859301]": {
- "$type": "EditorColliderComponent",
- "Id": 5727156644387859301,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Entire object"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "ShapeType": 1,
- "Box": {
- "Configuration": [
- 1.0,
- 1.0,
- 0.5
- ]
- }
- }
- },
- "Component_[8718775976112602879]": {
- "$type": "EditorInspectorComponent",
- "Id": 8718775976112602879
- },
- "Component_[9421105513909709650]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 9421105513909709650,
- "Parent Entity": "Entity_[1443068190329]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 0.3937875032424927
- ]
- }
- }
- }
- },
- "Entity_[5253935932561]": {
- "Id": "Entity_[5253935932561]",
- "Name": "Entity1",
- "Components": {
- "Component_[11887229845449081651]": {
- "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
- "Id": 11887229845449081651,
- "Controller": {
- "Configuration": {
- "Field of View": 60.0,
- "EditorEntityId": 8169843862907824176
- }
- }
- },
- "Component_[14572704560921163535]": {
- "$type": "EditorVisibilityComponent",
- "Id": 14572704560921163535
- },
- "Component_[15172814678937472544]": {
- "$type": "EditorInspectorComponent",
- "Id": 15172814678937472544
- },
- "Component_[16986981767876562426]": {
- "$type": "EditorEntityIconComponent",
- "Id": 16986981767876562426
- },
- "Component_[17423322489630331151]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 17423322489630331151
- },
- "Component_[18046559409255846800]": {
- "$type": "GenericComponentWrapper",
- "Id": 18046559409255846800,
- "m_template": {
- "$type": "FlyCameraInputComponent",
- "Move Speed": 1.0,
- "Rotation Speed": 1.0
- }
- },
- "Component_[2418186248743500285]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 2418186248743500285
- },
- "Component_[3088626712260312241]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 3088626712260312241,
- "Parent Entity": "Entity_[1176639161715]",
- "Transform Data": {
- "Translate": [
- 1.0379832983016968,
- -2.6616461277008057,
- 1.7440247535705566
- ],
- "Rotate": [
- -16.02065658569336,
- -3.202078342437744,
- 11.008499145507813
- ]
- }
- },
- "Component_[6423979776420328213]": {
- "$type": "EditorEntitySortComponent",
- "Id": 6423979776420328213
- },
- "Component_[7934962855244834403]": {
- "$type": "EditorLockComponent",
- "Id": 7934962855244834403
- },
- "Component_[9003720906380897961]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 9003720906380897961
- }
- }
- }
- }
- }
|