123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283 |
- {
- "ContainerEntity": {
- "Id": "ContainerEntity",
- "Name": "Proteus",
- "Components": {
- "Component_[10807870805239560439]": {
- "$type": "EditorPrefabComponent",
- "Id": 10807870805239560439
- },
- "Component_[12899035917859580022]": {
- "$type": "EditorInspectorComponent",
- "Id": 12899035917859580022
- },
- "Component_[13633425816968047704]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 13633425816968047704
- },
- "Component_[15237572906287023176]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 15237572906287023176,
- "Parent Entity": ""
- },
- "Component_[17227029936004503680]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 17227029936004503680
- },
- "Component_[4320787421992093219]": {
- "$type": "EditorEntityIconComponent",
- "Id": 4320787421992093219
- },
- "Component_[4553536726698780648]": {
- "$type": "EditorLockComponent",
- "Id": 4553536726698780648
- },
- "Component_[7268431246627814678]": {
- "$type": "EditorVisibilityComponent",
- "Id": 7268431246627814678
- },
- "Component_[7994639576584985831]": {
- "$type": "EditorEntitySortComponent",
- "Id": 7994639576584985831,
- "Child Entity Order": [
- "Entity_[15737028393504]"
- ]
- },
- "Component_[981126963761928642]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 981126963761928642
- }
- }
- },
- "Entities": {
- "Entity_[15621064276512]": {
- "Id": "Entity_[15621064276512]",
- "Name": "light_side_R",
- "Components": {
- "Component_[11897596323041651801]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11897596323041651801
- },
- "Component_[12541130223356241257]": {
- "$type": "AZ::Render::EditorAreaLightComponent",
- "Id": 12541130223356241257,
- "Controller": {
- "Configuration": {
- "LightType": 4,
- "Color": [
- 0.01042191218584776,
- 0.5521476864814758,
- 0.0
- ],
- "Intensity": 1.0,
- "AttenuationRadius": 1.9927661418914795,
- "Shadow Filter Method": 3
- }
- }
- },
- "Component_[12963031663456006887]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12963031663456006887
- },
- "Component_[17933663734846614005]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17933663734846614005
- },
- "Component_[2461895052930420965]": {
- "$type": "EditorInspectorComponent",
- "Id": 2461895052930420965
- },
- "Component_[2887060331598036013]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2887060331598036013
- },
- "Component_[3200864964702098492]": {
- "$type": "LmbrCentral::EditorQuadShapeComponent",
- "Id": 3200864964702098492,
- "Visible": false,
- "ShapeColor": [
- 0.01042191218584776,
- 0.5521476864814758,
- 0.0,
- 1.0
- ],
- "QuadShape": {
- "Configuration": {
- "Width": 0.05999999865889549,
- "Height": 0.009999999776482582
- }
- }
- },
- "Component_[3413400077365270262]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3413400077365270262
- },
- "Component_[4620432025088325145]": {
- "$type": "EditorLockComponent",
- "Id": 4620432025088325145
- },
- "Component_[5708170041862383467]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5708170041862383467,
- "Parent Entity": "Entity_[15689783753248]",
- "Transform Data": {
- "Translate": [
- -0.2947731018066406,
- 0.1049203872680664,
- 0.048488616943359375
- ],
- "Rotate": [
- -168.08425903320313,
- -58.96449279785156,
- 103.83364868164063
- ]
- }
- },
- "Component_[9809482087175845189]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9809482087175845189
- }
- }
- },
- "Entity_[15629654211104]": {
- "Id": "Entity_[15629654211104]",
- "Name": "Right_wheel_link",
- "Components": {
- "Component_[10222499577136139720]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 10222499577136139720
- },
- "Component_[1022834116500160782]": {
- "$type": "EditorLockComponent",
- "Id": 1022834116500160782
- },
- "Component_[1152987666928095500]": {
- "$type": "EditorEntityIconComponent",
- "Id": 1152987666928095500
- },
- "Component_[12925256151907998248]": {
- "$type": "EditorColliderComponent",
- "Id": 12925256151907998248,
- "ColliderConfiguration": {
- "Rotation": [
- 0.7071067690849304,
- 0.0,
- 0.0,
- 0.7071067690849304
- ],
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Entire object",
- "MaterialAsset": {
- "assetId": {
- "guid": "{6D9F8E0A-466E-5774-8974-FC7F0872FD00}",
- "subId": 1
- },
- "assetHint": "physx/rubber.physicsmaterial"
- }
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "ShapeType": 3,
- "Cylinder": {
- "Configuration": {
- "CookedData": "TlhTAUNWWE0NAAAAAAAAAElDRQFDTEhMCQAAAEAAAABgAAAAIgAAAMAAAADic4E8u3STPFOzor14ezYyu3STPFTjpb3Wc4G8u3STPFazor0m7v28u3STPLJCmb0oUzi9u3STPEruib3emWq9u3STPN+Zar1K7om9u3STPCtTOL2yQpm9u3STPDHu/bxTs6K9u3STPOBzgbxU46W9u3STPEpP87FWs6K9u3STPNhzgTyyQpm9u3STPCnu/TxK7om9u3STPCtTOD3fmWq9u3STPN6Zaj0rUzi9u3STPEruiT0t7v28u3STPLJCmT3dc4G8u3STPFOzoj1KT3Oxu3STPFTjpT3ac4E8u3STPFazoj0p7v08u3STPLJCmT0rUzg9u3STPEruiT3fmWo9u3STPN+Zaj1K7ok9u3STPCtTOD2yQpk9u3STPC3u/TxTs6I9u3STPNtzgTxU46U9u3STPAAAAABWs6I9u3STPNVzgbyzQpk9u3STPCXu/bxM7ok9u3STPChTOL3gmWo9u3STPNyZar0vUzg9u3STPEruib0x7v08u3STPLJCmb3ac4E8u3STvFazoj0p7v08u3STvLJCmT1KT3Oxu3STvFTjpT1Ws6K9u3STvNhzgTyyQpm9u3STvCnu/TxU46W9u3STvEpP87HWc4G8u3STvFazor0m7v28u3STvLJCmb14ezYyu3STvFTjpb0vUzg9u3STvEruib0x7v08u3STvLJCmb3gmWo9u3STvNyZar1Ws6I9u3STvNVzgbyzQpk9u3STvCXu/bxU46U9u3STvAAAAABM7ok9u3STvChTOL1Ts6I9u3STvNtzgTyyQpk9u3STvC3u/TwrUzg9u3STvEruiT3fmWo9u3STvN+Zaj0rUzi9u3STvEruiT0t7v28u3STvLJCmT3fmWq9u3STvN6Zaj1Ts6K9u3STvOBzgbyyQpm9u3STvDHu/bxK7om9u3STvCtTOD1K7om9u3STvCtTOL3emWq9u3STvN+Zar1K7ok9u3STvCtTOD0oUzi9u3STvEruib3ic4E8u3STvFOzor3dc4G8u3STvFOzoj0AAAAAAACAPwAAAAC9dJO8AAAgIEeglD4AAAAAB/p0P9YWpb0gAAQC3bzIPQAAAABvxH4/1xalvSQABAEI+nS/AAAAAESglD7XFqW9KAAEG2/Efr8AAAAA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",
- "Type": 1
- },
- "Subdivision": 32,
- "Height": 0.035999998450279236,
- "Radius": 0.08100000023841858
- }
- }
- },
- "Component_[14920249924509140042]": {
- "$type": "EditorInspectorComponent",
- "Id": 14920249924509140042
- },
- "Component_[15825582909542565444]": {
- "$type": "EditorHingeJointComponent",
- "Id": 15825582909542565444,
- "Configuration": {
- "Local Rotation": [
- 0.0,
- 0.0,
- 89.99999237060547
- ],
- "Parent Entity": "Entity_[15659718982176]",
- "Child Entity": "Entity_[15629654211104]"
- },
- "Angular Limit": {
- "Standard Limit Configuration": {
- "Is Limited": false
- },
- "Positive Limit": 360.0,
- "Negative Limit": -360.0
- },
- "Motor": {
- "UseMotor": true
- }
- },
- "Component_[17075084475750345983]": {
- "$type": "EditorRigidBodyComponent",
- "Id": 17075084475750345983,
- "Configuration": {
- "entityId": "",
- "Mass": 0.8847272992134094,
- "Centre of mass offset": [
- -1.6654873036259232e-9,
- -2.462736958808165e-10,
- 6.2086658036975e-10
- ],
- "Inertia tensor": [
- 0.0015374301001429558,
- 0.0,
- 0.0,
- 0.0,
- 0.0028837586287409067,
- 0.0,
- 0.0,
- 0.0,
- 0.0015374301001429558
- ]
- },
- "PhysXSpecificConfiguration": {
- "SolverPositionIterations": 40,
- "SolverVelocityIterations": 10
- }
- },
- "Component_[1920440257116254952]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 1920440257116254952
- },
- "Component_[2350206111390958743]": {
- "$type": "EditorEntitySortComponent",
- "Id": 2350206111390958743,
- "Child Entity Order": [
- "Entity_[15711258589728]"
- ]
- },
- "Component_[3950465018689342880]": {
- "$type": "GenericComponentWrapper",
- "Id": 3950465018689342880,
- "m_template": {
- "$type": "WheelControllerComponent",
- "SteeringEntity": ""
- }
- },
- "Component_[5287814432279838016]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5287814432279838016
- },
- "Component_[6497592996458875625]": {
- "$type": "EditorVisibilityComponent",
- "Id": 6497592996458875625
- },
- "Component_[8499609321985054807]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8499609321985054807,
- "Parent Entity": "Entity_[15659718982176]",
- "Transform Data": {
- "Translate": [
- 0.17623519897460938,
- -0.26917359232902527,
- 0.0
- ]
- }
- }
- }
- },
- "Entity_[15633949178400]": {
- "Id": "Entity_[15633949178400]",
- "Name": "Camera sensor mount",
- "Components": {
- "Component_[10184098142535992885]": {
- "$type": "EditorVisibilityComponent",
- "Id": 10184098142535992885
- },
- "Component_[14019497545971552389]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 14019497545971552389
- },
- "Component_[1553508777576113397]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 1553508777576113397
- },
- "Component_[16718649951784721576]": {
- "$type": "EditorEntityIconComponent",
- "Id": 16718649951784721576
- },
- "Component_[1786982694679401907]": {
- "$type": "EditorEntitySortComponent",
- "Id": 1786982694679401907
- },
- "Component_[3278563319615461607]": {
- "$type": "EditorInspectorComponent",
- "Id": 3278563319615461607
- },
- "Component_[4707125036060610205]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 4707125036060610205,
- "Parent Entity": "Entity_[15659718982176]",
- "Transform Data": {
- "Translate": [
- 0.5260543823242188,
- 0.0,
- 0.031635284423828125
- ],
- "Rotate": [
- -0.00008020881796255708,
- 75.19884490966797,
- -89.99978637695313
- ]
- }
- },
- "Component_[7311879232144269420]": {
- "$type": "EditorLockComponent",
- "Id": 7311879232144269420
- },
- "Component_[9031766191400117669]": {
- "$type": "ROS2FrameEditorComponent"
- }
- }
- },
- "Entity_[15638244145696]": {
- "Id": "Entity_[15638244145696]",
- "Name": "visual",
- "Components": {
- "Component_[10311920987167308953]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 10311920987167308953
- },
- "Component_[13475526524683628218]": {
- "$type": "EditorEntityIconComponent",
- "Id": 13475526524683628218
- },
- "Component_[13702045072618306648]": {
- "$type": "EditorEntitySortComponent",
- "Id": 13702045072618306648
- },
- "Component_[143294533017561991]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 143294533017561991,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{8A2E7A82-D7C3-5E9C-A56C-6EDA70876347}",
- "subId": 268721130
- },
- "assetHint": "materialeditor/viewportmodels/cylinder.fbx.azmodel"
- }
- }
- }
- },
- "Component_[16133890541824903853]": {
- "$type": "EditorLockComponent",
- "Id": 16133890541824903853
- },
- "Component_[1637110301170404982]": {
- "$type": "EditorInspectorComponent",
- "Id": 1637110301170404982
- },
- "Component_[4408110107729188661]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 4408110107729188661
- },
- "Component_[4437393399381877732]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 4437393399381877732,
- "Parent Entity": "Entity_[15698373687840]",
- "Transform Data": {
- "Rotate": [
- 70.58258056640625,
- -4.032801151275635,
- 0.26877090334892273
- ],
- "UniformScale": 0.023000000044703484
- }
- },
- "Component_[7252521557974110117]": {
- "$type": "EditorMaterialComponent",
- "Id": 7252521557974110117,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1803671422
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{D0D27642-FF9C-5FCA-9B3A-C8897F2167BA}"
- },
- "assetHint": "materials/proteus_headlamp.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[777323955207164658]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 777323955207164658
- },
- "Component_[907280948724559415]": {
- "$type": "EditorVisibilityComponent",
- "Id": 907280948724559415
- }
- }
- },
- "Entity_[15642539112992]": {
- "Id": "Entity_[15642539112992]",
- "Name": "WheelRear",
- "Components": {
- "Component_[15527758502525293079]": {
- "$type": "EditorEntitySortComponent",
- "Id": 15527758502525293079
- },
- "Component_[16101951821150023499]": {
- "$type": "EditorEntityIconComponent",
- "Id": 16101951821150023499
- },
- "Component_[16395152525411854064]": {
- "$type": "EditorFixedJointComponent",
- "Id": 16395152525411854064,
- "Configuration": {
- "Parent Entity": "Entity_[15659718982176]",
- "Child Entity": "Entity_[15642539112992]"
- }
- },
- "Component_[1773589821645877570]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 1773589821645877570
- },
- "Component_[444656175361887051]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 444656175361887051
- },
- "Component_[4947664643201276922]": {
- "$type": "EditorLockComponent",
- "Id": 4947664643201276922
- },
- "Component_[5072058817000597154]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5072058817000597154
- },
- "Component_[5089606775372981179]": {
- "$type": "EditorVisibilityComponent",
- "Id": 5089606775372981179
- },
- "Component_[7870882568847047734]": {
- "$type": "EditorRigidBodyComponent",
- "Id": 7870882568847047734,
- "Configuration": {
- "entityId": "",
- "Mass": 0.033510319888591766,
- "Inertia tensor": [
- 0.000005361651346902363,
- 0.0,
- 0.0,
- 0.0,
- 0.000005361651346902363,
- 0.0,
- 0.0,
- 0.0,
- 0.000005361651346902363
- ]
- },
- "PhysXSpecificConfiguration": {
- "SolverPositionIterations": 40,
- "SolverVelocityIterations": 10
- }
- },
- "Component_[8110923963616165068]": {
- "$type": "EditorColliderComponent",
- "Id": 8110923963616165068,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Entire object",
- "MaterialAsset": {
- "assetId": {
- "guid": "{38B772A4-578F-52B3-87BE-4071F1ED8D34}",
- "subId": 1
- },
- "assetHint": "no_friction.physicsmaterial"
- }
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "ShapeType": 0,
- "Sphere": {
- "Radius": 0.019999999552965164
- }
- }
- },
- "Component_[94844036599915707]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 94844036599915707,
- "Parent Entity": "Entity_[15659718982176]",
- "Transform Data": {
- "Translate": [
- -0.21210527420043945,
- -0.000030994415283203125,
- -0.06243150681257248
- ],
- "Rotate": [
- -0.10286237299442291,
- -0.00003594520239857957,
- 90.01988983154297
- ]
- }
- },
- "Component_[9822914299135029218]": {
- "$type": "EditorInspectorComponent",
- "Id": 9822914299135029218
- }
- }
- },
- "Entity_[15651129047584]": {
- "Id": "Entity_[15651129047584]",
- "Name": "IMU_link",
- "Components": {
- "Component_[11483902887902604628]": {
- "$type": "EditorInspectorComponent",
- "Id": 11483902887902604628
- },
- "Component_[12817635789820242289]": {
- "$type": "EditorEntitySortComponent",
- "Id": 12817635789820242289
- },
- "Component_[17191079459924416406]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 17191079459924416406
- },
- "Component_[17775749381982911317]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 17775749381982911317
- },
- "Component_[3057000158287722738]": {
- "$type": "EditorVisibilityComponent",
- "Id": 3057000158287722738
- },
- "Component_[382773145374156990]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 382773145374156990
- },
- "Component_[7210971876194296651]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 7210971876194296651,
- "Parent Entity": "Entity_[15659718982176]",
- "Transform Data": {
- "Translate": [
- -0.13689999282360077,
- -0.04190000146627426,
- 0.03700000047683716
- ],
- "Rotate": [
- 179.9998321533203,
- 0.0,
- 0.0
- ]
- }
- },
- "Component_[8189664995606895929]": {
- "$type": "EditorEntityIconComponent",
- "Id": 8189664995606895929
- },
- "Component_[8263601133872510315]": {
- "$type": "EditorLockComponent",
- "Id": 8263601133872510315
- }
- }
- },
- "Entity_[15659718982176]": {
- "Id": "Entity_[15659718982176]",
- "Name": "base_link",
- "Components": {
- "Component_[10692234168189354968]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 10692234168189354968
- },
- "Component_[10928326798115103880]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 10928326798115103880
- },
- "Component_[1153232506834696450]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 1153232506834696450,
- "ColliderConfiguration": {
- "Position": [
- 0.1837027668952942,
- 0.0,
- -0.06689203530550003
- ],
- "Rotation": [
- 0.0,
- 0.0,
- 0.7071067690849304,
- 0.7071067094802856
- ],
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Proteus",
- "MaterialAsset": {
- "assetId": {
- "guid": "{92A5EC27-1AC1-523E-88BB-9A6278DBD853}",
- "subId": 1
- },
- "assetHint": "physx/metal.physicsmaterial"
- }
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{D8E41FF6-BF62-5D4A-B4C3-B980586B3AB3}",
- "subId": 1612379007
- },
- "assetHint": "proteus_chassis.fbx.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{D8E41FF6-BF62-5D4A-B4C3-B980586B3AB3}",
- "subId": 1612379007
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "proteus_chassis.fbx.pxmesh"
- },
- "UseMaterialsFromAsset": false
- }
- }
- }
- },
- "Component_[12137189902681906851]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 12137189902681906851,
- "Parent Entity": "Entity_[15737028393504]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 0.04800009727478027
- ]
- }
- },
- "Component_[12319911397194903150]": {
- "$type": "GenericComponentWrapper",
- "Id": 12319911397194903150,
- "m_template": {
- "$type": "SkidSteeringModelComponent",
- "VehicleConfiguration": {
- "AxlesConfigurations": [
- {
- "AxleWheels": [
- "Entity_[15672603884064]",
- "Entity_[15629654211104]"
- ],
- "WheelRadius": 0.08100000023841858,
- "IsSteering": true,
- "IsDrive": true
- }
- ],
- "Track": 0.5299999713897705,
- "Wheelbase": 0.0
- },
- "DriveModel": {
- "Limits": {
- "AngularLimit": 2.0
- }
- }
- }
- },
- "Component_[15835975987756009148]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 15835975987756009148
- },
- "Component_[3504146771183251675]": {
- "$type": "EditorInspectorComponent",
- "Id": 3504146771183251675
- },
- "Component_[3596110623068228821]": {
- "$type": "EditorVisibilityComponent",
- "Id": 3596110623068228821
- },
- "Component_[3611806209827043811]": {
- "$type": "GenericComponentWrapper",
- "Id": 3611806209827043811,
- "m_template": {
- "$type": "SkidSteeringControlComponent"
- }
- },
- "Component_[5852749630011233946]": {
- "$type": "EditorEntityIconComponent",
- "Id": 5852749630011233946
- },
- "Component_[639102350977932618]": {
- "$type": "ROS2FrameEditorComponent",
- "Id": 1381491360893018223,
- "ROS2FrameConfiguration": {
- "Namespace Configuration": {
- "Namespace": "base_link"
- },
- "Frame Name": "base_link"
- }
- },
- "Component_[6563269519356188309]": {
- "$type": "EditorEntitySortComponent",
- "Id": 6563269519356188309,
- "Child Entity Order": [
- "Entity_[15719848524320]",
- "Entity_[15672603884064]",
- "Entity_[15629654211104]",
- "Entity_[15642539112992]",
- "Entity_[15651129047584]",
- "Entity_[15741323360800]",
- "Entity_[15633949178400]",
- "Entity_[15728438458912]",
- "Entity_[15706963622432]"
- ]
- },
- "Component_[6615492099568417181]": {
- "$type": "EditorLockComponent",
- "Id": 6615492099568417181
- },
- "Component_[7613619815052417776]": {
- "$type": "EditorRigidBodyComponent",
- "Id": 7613619815052417776,
- "Configuration": {
- "entityId": "",
- "Compute Mass": false,
- "Mass": 8.0,
- "Compute COM": false,
- "Centre of mass offset": [
- -0.07999999821186066,
- -0.0000016969800071819918,
- -0.03301370143890381
- ],
- "Compute inertia": false,
- "Inertia tensor": [
- 0.013930019922554493,
- 0.0,
- 0.0,
- 0.0,
- 0.010810183361172676,
- 0.0,
- 0.0,
- 0.0,
- 0.020480088889598846
- ],
- "Debug Draw Center of Mass": true
- },
- "PhysXSpecificConfiguration": {
- "SolverPositionIterations": 40,
- "SolverVelocityIterations": 10
- }
- },
- "Component_[8086219274868527893]": {
- "$type": "GenericComponentWrapper",
- "Id": 8086219274868527893,
- "m_template": {
- "$type": "ROS2RobotControlComponent",
- "SubscriberConfiguration": {
- "Topic": "cmd_vel"
- }
- }
- },
- "Component_[8616898509529572762]": {
- "$type": "GenericComponentWrapper",
- "Id": 8616898509529572762,
- "m_template": {
- "$type": "InputConfigurationComponent",
- "Input Event Bindings": {
- "assetId": {
- "guid": "{4FD84EC8-D6B0-54F4-B3A5-EA9DAAF2F57F}"
- },
- "assetHint": "scripts/proteusrobot_inputs.inputbindings"
- }
- }
- }
- }
- },
- "Entity_[15664013949472]": {
- "Id": "Entity_[15664013949472]",
- "Name": "light_front",
- "Components": {
- "Component_[11897596323041651801]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11897596323041651801
- },
- "Component_[12541130223356241257]": {
- "$type": "AZ::Render::EditorAreaLightComponent",
- "Id": 12541130223356241257,
- "Controller": {
- "Configuration": {
- "LightType": 4,
- "Color": [
- 0.01042191218584776,
- 0.5521476864814758,
- 0.0
- ],
- "Intensity": 2.0,
- "AttenuationRadius": 2.818197011947632,
- "Shadow Filter Method": 3
- }
- }
- },
- "Component_[12963031663456006887]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12963031663456006887
- },
- "Component_[17933663734846614005]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17933663734846614005
- },
- "Component_[2461895052930420965]": {
- "$type": "EditorInspectorComponent",
- "Id": 2461895052930420965
- },
- "Component_[2887060331598036013]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2887060331598036013
- },
- "Component_[3200864964702098492]": {
- "$type": "LmbrCentral::EditorQuadShapeComponent",
- "Id": 3200864964702098492,
- "Visible": false,
- "ShapeColor": [
- 0.01042191218584776,
- 0.5521476864814758,
- 0.0,
- 1.0
- ],
- "QuadShape": {
- "Configuration": {
- "Width": 0.11999999731779099,
- "Height": 0.009999999776482582
- }
- }
- },
- "Component_[3413400077365270262]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3413400077365270262
- },
- "Component_[4620432025088325145]": {
- "$type": "EditorLockComponent",
- "Id": 4620432025088325145
- },
- "Component_[5708170041862383467]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5708170041862383467,
- "Parent Entity": "Entity_[15689783753248]",
- "Transform Data": {
- "Translate": [
- -0.0001068115234375,
- -0.3972148895263672,
- -0.05003976821899414
- ],
- "Rotate": [
- 159.99990844726563,
- 0.000001077278284355998,
- 1.8995413597622246e-7
- ]
- }
- },
- "Component_[9809482087175845189]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9809482087175845189
- }
- }
- },
- "Entity_[15672603884064]": {
- "Id": "Entity_[15672603884064]",
- "Name": "Left_wheel_link",
- "Components": {
- "Component_[11532719563339504114]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 11532719563339504114,
- "Parent Entity": "Entity_[15659718982176]",
- "Transform Data": {
- "Translate": [
- 0.17623519897460938,
- 0.26917362213134766,
- 0.0
- ]
- }
- },
- "Component_[11685358238844952494]": {
- "$type": "EditorRigidBodyComponent",
- "Id": 11685358238844952494,
- "Configuration": {
- "entityId": "",
- "Mass": 0.8847272992134094,
- "Centre of mass offset": [
- -1.6654873036259232e-9,
- -2.462736958808165e-10,
- 6.2086658036975e-10
- ],
- "Inertia tensor": [
- 0.0015374301001429558,
- 0.0,
- 0.0,
- 0.0,
- 0.0028837586287409067,
- 0.0,
- 0.0,
- 0.0,
- 0.0015374301001429558
- ]
- },
- "PhysXSpecificConfiguration": {
- "SolverPositionIterations": 40,
- "SolverVelocityIterations": 10
- }
- },
- "Component_[13480834856829216250]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 13480834856829216250
- },
- "Component_[14290604826774961924]": {
- "$type": "EditorVisibilityComponent",
- "Id": 14290604826774961924
- },
- "Component_[17955271677359408921]": {
- "$type": "EditorEntityIconComponent",
- "Id": 17955271677359408921
- },
- "Component_[2312958197081026454]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 2312958197081026454
- },
- "Component_[412550130423261674]": {
- "$type": "EditorInspectorComponent",
- "Id": 412550130423261674
- },
- "Component_[5225844937632238149]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 5225844937632238149
- },
- "Component_[645425375358499776]": {
- "$type": "GenericComponentWrapper",
- "Id": 645425375358499776,
- "m_template": {
- "$type": "WheelControllerComponent",
- "SteeringEntity": ""
- }
- },
- "Component_[7456975798968691780]": {
- "$type": "EditorColliderComponent",
- "Id": 7456975798968691780,
- "ColliderConfiguration": {
- "Rotation": [
- 0.7071067690849304,
- 0.0,
- 0.0,
- 0.7071067690849304
- ],
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Entire object",
- "MaterialAsset": {
- "assetId": {
- "guid": "{6D9F8E0A-466E-5774-8974-FC7F0872FD00}",
- "subId": 1
- },
- "assetHint": "physx/rubber.physicsmaterial"
- }
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "ShapeType": 3,
- "Cylinder": {
- "Configuration": {
- "CookedData": "TlhTAUNWWE0NAAAAAAAAAElDRQFDTEhMCQAAAEAAAABgAAAAIgAAAMAAAADic4E8u3STPFOzor14ezYyu3STPFTjpb3Wc4G8u3STPFazor0m7v28u3STPLJCmb0oUzi9u3STPEruib3emWq9u3STPN+Zar1K7om9u3STPCtTOL2yQpm9u3STPDHu/bxTs6K9u3STPOBzgbxU46W9u3STPEpP87FWs6K9u3STPNhzgTyyQpm9u3STPCnu/TxK7om9u3STPCtTOD3fmWq9u3STPN6Zaj0rUzi9u3STPEruiT0t7v28u3STPLJCmT3dc4G8u3STPFOzoj1KT3Oxu3STPFTjpT3ac4E8u3STPFazoj0p7v08u3STPLJCmT0rUzg9u3STPEruiT3fmWo9u3STPN+Zaj1K7ok9u3STPCtTOD2yQpk9u3STPC3u/TxTs6I9u3STPNtzgTxU46U9u3STPAAAAABWs6I9u3STPNVzgbyzQpk9u3STPCXu/bxM7ok9u3STPChTOL3gmWo9u3STPNyZar0vUzg9u3STPEruib0x7v08u3STPLJCmb3ac4E8u3STvFazoj0p7v08u3STvLJCmT1KT3Oxu3STvFTjpT1Ws6K9u3STvNhzgTyyQpm9u3STvCnu/TxU46W9u3STvEpP87HWc4G8u3STvFazor0m7v28u3STvLJCmb14ezYyu3STvFTjpb0vUzg9u3STvEruib0x7v08u3STvLJCmb3gmWo9u3STvNyZar1Ws6I9u3STvNVzgbyzQpk9u3STvCXu/bxU46U9u3STvAAAAABM7ok9u3STvChTOL1Ts6I9u3STvNtzgTyyQpk9u3STvC3u/TwrUzg9u3STvEruiT3fmWo9u3STvN+Zaj0rUzi9u3STvEruiT0t7v28u3STvLJCmT3fmWq9u3STvN6Zaj1Ts6K9u3STvOBzgbyyQpm9u3STvDHu/bxK7om9u3STvCtTOD1K7om9u3STvCtTOL3emWq9u3STvN+Zar1K7ok9u3STvCtTOD0oUzi9u3STvEruib3ic4E8u3STvFOzor3dc4G8u3STvFOzoj0AAAAAAACAPwAAAAC9dJO8AAAgIEeglD4AAAAAB/p0P9YWpb0gAAQC3bzIPQAAAABvxH4/1xalvSQABAEI+nS/AAAAAESglD7XFqW9KAAEG2/Efr8AAAAA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",
- "Type": 1
- },
- "Subdivision": 32,
- "Height": 0.035999998450279236,
- "Radius": 0.08100000023841858
- }
- }
- },
- "Component_[8249106115951627620]": {
- "$type": "EditorEntitySortComponent",
- "Id": 8249106115951627620,
- "Child Entity Order": [
- "Entity_[15715553557024]"
- ]
- },
- "Component_[8358326737517861161]": {
- "$type": "EditorHingeJointComponent",
- "Id": 8358326737517861161,
- "Configuration": {
- "Local Rotation": [
- 0.0,
- 0.0,
- 89.99999237060547
- ],
- "Parent Entity": "Entity_[15659718982176]",
- "Child Entity": "Entity_[15672603884064]"
- },
- "Angular Limit": {
- "Standard Limit Configuration": {
- "Is Limited": false
- },
- "Positive Limit": 360.0,
- "Negative Limit": -360.0
- },
- "Motor": {
- "UseMotor": true
- }
- },
- "Component_[9688455588356051084]": {
- "$type": "EditorLockComponent",
- "Id": 9688455588356051084
- }
- }
- },
- "Entity_[15676898851360]": {
- "Id": "Entity_[15676898851360]",
- "Name": "lamp",
- "Components": {
- "Component_[11028818137456178219]": {
- "$type": "AZ::Render::EditorAreaLightComponent",
- "Id": 11028818137456178219,
- "Controller": {
- "Configuration": {
- "LightType": 2,
- "Color": [
- 0.0,
- 0.6437781453132629,
- 0.005813687574118376
- ],
- "Intensity": 200.0,
- "AttenuationRadiusMode": 0,
- "AttenuationRadius": 10.0,
- "EnableShutters": true,
- "InnerShutterAngleDegrees": 0.5,
- "OuterShutterAngleDegrees": 5.599999904632568,
- "Enable Shadow": true,
- "Shadowmap Max Size": "Size512",
- "Shadow Filter Method": 1,
- "Filtering Sample Count": 64
- }
- }
- },
- "Component_[12179390792348965257]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 12179390792348965257
- },
- "Component_[14359364581717257661]": {
- "$type": "EditorDiskShapeComponent",
- "Id": 14359364581717257661,
- "ShapeColor": [
- 0.0,
- 0.6437781453132629,
- 0.005813687574118376,
- 1.0
- ],
- "DiskShape": {
- "Configuration": {
- "Radius": 0.009999999776482582
- }
- }
- },
- "Component_[15569592773823518132]": {
- "$type": "EditorInspectorComponent",
- "Id": 15569592773823518132
- },
- "Component_[2441565482597131752]": {
- "$type": "EditorVisibilityComponent",
- "Id": 2441565482597131752
- },
- "Component_[2689189350198442633]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2689189350198442633
- },
- "Component_[2941525099026490175]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 2941525099026490175
- },
- "Component_[4386127804245947513]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 4386127804245947513
- },
- "Component_[6294796222050970789]": {
- "$type": "EditorLockComponent",
- "Id": 6294796222050970789
- },
- "Component_[8176446149119022885]": {
- "$type": "EditorEntitySortComponent",
- "Id": 8176446149119022885
- },
- "Component_[8265203123258917331]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8265203123258917331,
- "Parent Entity": "Entity_[15698373687840]",
- "Transform Data": {
- "Translate": [
- 0.0,
- -0.06402825564146042,
- -0.05422711372375488
- ],
- "Rotate": [
- 92.7552719116211,
- 0.000014292942978499923,
- -0.00001468247501179576
- ]
- }
- }
- }
- },
- "Entity_[15681193818656]": {
- "Id": "Entity_[15681193818656]",
- "Name": "light_side_L",
- "Components": {
- "Component_[11897596323041651801]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11897596323041651801
- },
- "Component_[12541130223356241257]": {
- "$type": "AZ::Render::EditorAreaLightComponent",
- "Id": 12541130223356241257,
- "Controller": {
- "Configuration": {
- "LightType": 4,
- "Color": [
- 0.01042191218584776,
- 0.5521476864814758,
- 0.0
- ],
- "Intensity": 1.0,
- "AttenuationRadius": 1.9927661418914795,
- "Shadow Filter Method": 3
- }
- }
- },
- "Component_[12963031663456006887]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12963031663456006887
- },
- "Component_[17933663734846614005]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17933663734846614005
- },
- "Component_[2461895052930420965]": {
- "$type": "EditorInspectorComponent",
- "Id": 2461895052930420965
- },
- "Component_[2887060331598036013]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2887060331598036013
- },
- "Component_[3200864964702098492]": {
- "$type": "LmbrCentral::EditorQuadShapeComponent",
- "Id": 3200864964702098492,
- "Visible": false,
- "ShapeColor": [
- 0.01042191218584776,
- 0.5521476864814758,
- 0.0,
- 1.0
- ],
- "QuadShape": {
- "Configuration": {
- "Width": 0.05999999865889549,
- "Height": 0.009999999776482582
- }
- }
- },
- "Component_[3413400077365270262]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3413400077365270262
- },
- "Component_[4620432025088325145]": {
- "$type": "EditorLockComponent",
- "Id": 4620432025088325145
- },
- "Component_[5708170041862383467]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5708170041862383467,
- "Parent Entity": "Entity_[15689783753248]",
- "Transform Data": {
- "Translate": [
- 0.2953958511352539,
- 0.10491561889648438,
- 0.04846477508544922
- ],
- "Rotate": [
- -168.1212921142578,
- 58.96950149536133,
- -103.79296875
- ]
- }
- },
- "Component_[9809482087175845189]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9809482087175845189
- }
- }
- },
- "Entity_[15685488785952]": {
- "Id": "Entity_[15685488785952]",
- "Name": "light_rear_R",
- "Components": {
- "Component_[11897596323041651801]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11897596323041651801
- },
- "Component_[12541130223356241257]": {
- "$type": "AZ::Render::EditorAreaLightComponent",
- "Id": 12541130223356241257,
- "Controller": {
- "Configuration": {
- "LightType": 4,
- "Color": [
- 0.5521476864814758,
- 0.0,
- 0.0
- ],
- "Intensity": 2.0,
- "AttenuationRadius": 1.5322309732437134,
- "Shadow Filter Method": 3
- }
- }
- },
- "Component_[12963031663456006887]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12963031663456006887
- },
- "Component_[17933663734846614005]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17933663734846614005
- },
- "Component_[2461895052930420965]": {
- "$type": "EditorInspectorComponent",
- "Id": 2461895052930420965
- },
- "Component_[2887060331598036013]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2887060331598036013
- },
- "Component_[3200864964702098492]": {
- "$type": "LmbrCentral::EditorQuadShapeComponent",
- "Id": 3200864964702098492,
- "Visible": false,
- "ShapeColor": [
- 0.5521476864814758,
- 0.0,
- 0.0,
- 1.0
- ],
- "QuadShape": {
- "Configuration": {
- "Width": 0.05999999865889549,
- "Height": 0.009999999776482582
- }
- }
- },
- "Component_[3413400077365270262]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3413400077365270262
- },
- "Component_[4620432025088325145]": {
- "$type": "EditorLockComponent",
- "Id": 4620432025088325145
- },
- "Component_[5708170041862383467]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5708170041862383467,
- "Parent Entity": "Entity_[15689783753248]",
- "Transform Data": {
- "Translate": [
- -0.16006183624267578,
- 0.3018321990966797,
- -0.05835771560668945
- ],
- "Rotate": [
- -151.2399444580078,
- -7.136781692504883,
- -20.135862350463867
- ]
- }
- },
- "Component_[9809482087175845189]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9809482087175845189
- }
- }
- },
- "Entity_[15689783753248]": {
- "Id": "Entity_[15689783753248]",
- "Name": "Lights",
- "Components": {
- "Component_[12419931558452825679]": {
- "$type": "EditorLockComponent",
- "Id": 12419931558452825679
- },
- "Component_[13224810909069591059]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 13224810909069591059
- },
- "Component_[14829817244473902192]": {
- "$type": "EditorVisibilityComponent",
- "Id": 14829817244473902192
- },
- "Component_[17084897380522648437]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 17084897380522648437,
- "Parent Entity": "Entity_[15724143491616]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0008984692394733429,
- -0.00044715404510498047
- ],
- "Rotate": [
- -89.99857330322266,
- 0.000002414865775790531,
- 0.0000024148064312612405
- ],
- "UniformScale": 0.009999999776482582
- }
- },
- "Component_[3024967457619286517]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 3024967457619286517
- },
- "Component_[3490434533685041416]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3490434533685041416
- },
- "Component_[4910027819996708545]": {
- "$type": "EditorEntitySortComponent",
- "Id": 4910027819996708545,
- "Child Entity Order": [
- "Entity_[15664013949472]",
- "Entity_[15621064276512]",
- "Entity_[15681193818656]",
- "Entity_[15685488785952]",
- "Entity_[15702668655136]"
- ]
- },
- "Component_[6239878235468672433]": {
- "$type": "EditorEntityIconComponent",
- "Id": 6239878235468672433
- },
- "Component_[8431504464307158391]": {
- "$type": "EditorInspectorComponent",
- "Id": 8431504464307158391
- }
- }
- },
- "Entity_[15694078720544]": {
- "Id": "Entity_[15694078720544]",
- "Name": "visual",
- "Components": {
- "Component_[10518754877894589178]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 10518754877894589178,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{42648578-F5A3-52BC-89BF-0D5FC8608250}",
- "subId": 276024436
- },
- "assetHint": "proteus2_lift.fbx.azmodel"
- }
- }
- }
- },
- "Component_[12196752811740585121]": {
- "$type": "EditorLockComponent",
- "Id": 12196752811740585121
- },
- "Component_[12321370877761270337]": {
- "$type": "EditorEntityIconComponent",
- "Id": 12321370877761270337
- },
- "Component_[15322625316201896186]": {
- "$type": "EditorMaterialComponent",
- "Id": 15322625316201896186,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 3008400144
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{38D3B77B-57B7-50FB-969D-0C2E7866E3F6}"
- },
- "assetHint": "materials/proteus_chassis_proteus.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[16276976561263109339]": {
- "$type": "EditorInspectorComponent",
- "Id": 16276976561263109339
- },
- "Component_[17397631212959422307]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17397631212959422307
- },
- "Component_[396873869305308531]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 396873869305308531,
- "Parent Entity": "Entity_[15706963622432]",
- "Transform Data": {
- "Translate": [
- 0.0717926025390625,
- 0.0,
- -0.12098360061645508
- ],
- "Rotate": [
- 0.0,
- 0.0,
- 89.99994659423828
- ]
- }
- },
- "Component_[4880719393871817751]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 4880719393871817751
- },
- "Component_[8773562288585481292]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 8773562288585481292
- },
- "Component_[9338831911001872669]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 9338831911001872669
- },
- "Component_[9634878627104751376]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9634878627104751376
- }
- }
- },
- "Entity_[15698373687840]": {
- "Id": "Entity_[15698373687840]",
- "Name": "Light_front_green",
- "Components": {
- "Component_[10180472951405841434]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 10180472951405841434,
- "Parent Entity": "Entity_[15724143491616]",
- "Transform Data": {
- "Translate": [
- -0.0005446784198284149,
- 0.0012799110263586044,
- 0.0027456134557724
- ],
- "Rotate": [
- -89.99852752685547,
- 0.07765364646911621,
- -0.020196275785565376
- ],
- "UniformScale": 0.009999999776482582
- }
- },
- "Component_[11696808599658151424]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 11696808599658151424
- },
- "Component_[1355824869187360077]": {
- "$type": "EditorVisibilityComponent",
- "Id": 1355824869187360077
- },
- "Component_[13977085301034959665]": {
- "$type": "EditorEntitySortComponent",
- "Id": 13977085301034959665,
- "Child Entity Order": [
- "Entity_[15676898851360]",
- "Entity_[15638244145696]"
- ]
- },
- "Component_[496279857768584410]": {
- "$type": "EditorLockComponent",
- "Id": 496279857768584410
- },
- "Component_[5049000013814114435]": {
- "$type": "EditorInspectorComponent",
- "Id": 5049000013814114435
- },
- "Component_[7932159478169110881]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 7932159478169110881
- },
- "Component_[8212331494010757129]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 8212331494010757129
- },
- "Component_[8834315307231171561]": {
- "$type": "EditorEntityIconComponent",
- "Id": 8834315307231171561
- }
- }
- },
- "Entity_[15702668655136]": {
- "Id": "Entity_[15702668655136]",
- "Name": "light_rear_L",
- "Components": {
- "Component_[11897596323041651801]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11897596323041651801
- },
- "Component_[12541130223356241257]": {
- "$type": "AZ::Render::EditorAreaLightComponent",
- "Id": 12541130223356241257,
- "Controller": {
- "Configuration": {
- "LightType": 4,
- "Color": [
- 0.5521476864814758,
- 0.0,
- 0.0
- ],
- "Intensity": 2.0,
- "AttenuationRadius": 1.5322309732437134,
- "Shadow Filter Method": 3
- }
- }
- },
- "Component_[12963031663456006887]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12963031663456006887
- },
- "Component_[17933663734846614005]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17933663734846614005
- },
- "Component_[2461895052930420965]": {
- "$type": "EditorInspectorComponent",
- "Id": 2461895052930420965
- },
- "Component_[2887060331598036013]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2887060331598036013
- },
- "Component_[3200864964702098492]": {
- "$type": "LmbrCentral::EditorQuadShapeComponent",
- "Id": 3200864964702098492,
- "Visible": false,
- "ShapeColor": [
- 0.5521476864814758,
- 0.0,
- 0.0,
- 1.0
- ],
- "QuadShape": {
- "Configuration": {
- "Width": 0.05999999865889549,
- "Height": 0.009999999776482582
- }
- }
- },
- "Component_[3413400077365270262]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3413400077365270262
- },
- "Component_[4620432025088325145]": {
- "$type": "EditorLockComponent",
- "Id": 4620432025088325145
- },
- "Component_[5708170041862383467]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5708170041862383467,
- "Parent Entity": "Entity_[15689783753248]",
- "Transform Data": {
- "Translate": [
- 0.1598215103149414,
- 0.3039684295654297,
- -0.0579526424407959
- ],
- "Rotate": [
- -151.94805908203125,
- 8.824642181396484,
- 25.232728958129883
- ]
- }
- },
- "Component_[9809482087175845189]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9809482087175845189
- }
- }
- },
- "Entity_[15706963622432]": {
- "Id": "Entity_[15706963622432]",
- "Name": "Lift",
- "Components": {
- "Component_[10099653013469338703]": {
- "$type": "EditorInspectorComponent",
- "Id": 10099653013469338703
- },
- "Component_[15850267081208467041]": {
- "$type": "EditorEntityIconComponent",
- "Id": 15850267081208467041
- },
- "Component_[16727775319021629115]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 16727775319021629115
- },
- "Component_[3504755063289314608]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 3504755063289314608
- },
- "Component_[4029862250311118130]": {
- "$type": "EditorEntitySortComponent",
- "Id": 4029862250311118130,
- "Child Entity Order": [
- "Entity_[15694078720544]"
- ]
- },
- "Component_[4582701930345204893]": {
- "$type": "EditorVisibilityComponent",
- "Id": 4582701930345204893
- },
- "Component_[4629998341000977493]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 4629998341000977493,
- "Parent Entity": "Entity_[15659718982176]",
- "Transform Data": {
- "Translate": [
- 0.1041412353515625,
- 0.0,
- 0.0531458854675293
- ]
- }
- },
- "Component_[7667036443034995771]": {
- "$type": "EditorRigidBodyComponent",
- "Id": 7667036443034995771,
- "Configuration": {
- "entityId": ""
- }
- },
- "Component_[8410131596483981918]": {
- "$type": "EditorLockComponent",
- "Id": 8410131596483981918
- },
- "Component_[9379851989683144881]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 9379851989683144881
- },
- "Component_[992626787896178449]": {
- "$type": "EditorPrismaticJointComponent",
- "Id": 992626787896178449,
- "Configuration": {
- "Local Rotation": [
- 0.0,
- -90.0,
- 0.0
- ],
- "Parent Entity": "Entity_[15659718982176]",
- "Child Entity": "Entity_[15706963622432]",
- "Display Debug": "Never"
- },
- "Linear Limit": {
- "Standard Limit Configuration": {
- "Damping": 200000.0,
- "Stiffness": 200.0
- },
- "Lower Limit": 0.0,
- "Upper Limit": 0.20000000298023224
- }
- }
- }
- },
- "Entity_[15711258589728]": {
- "Id": "Entity_[15711258589728]",
- "Name": "R_wheel_link_visual",
- "Components": {
- "Component_[10272901870725892912]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 10272901870725892912
- },
- "Component_[1176032316930335912]": {
- "$type": "EditorMaterialComponent",
- "Id": 1176032316930335912,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 3008400144
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{38D3B77B-57B7-50FB-969D-0C2E7866E3F6}"
- },
- "assetHint": "materials/proteus_chassis_proteus.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[13794769946178512073]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 13794769946178512073
- },
- "Component_[13883292984911515517]": {
- "$type": "EditorVisibilityComponent",
- "Id": 13883292984911515517
- },
- "Component_[14164648196447268373]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 14164648196447268373,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{F9B95287-0FA8-5624-92A1-217B33F08280}",
- "subId": 277942675
- },
- "assetHint": "proteus_wheel.fbx.azmodel"
- }
- }
- }
- },
- "Component_[14351191412296632155]": {
- "$type": "EditorEntitySortComponent",
- "Id": 14351191412296632155
- },
- "Component_[17474847153749349956]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 17474847153749349956,
- "Parent Entity": "Entity_[15629654211104]",
- "Transform Data": {
- "Rotate": [
- 90.0,
- 0.0,
- 180.0
- ]
- }
- },
- "Component_[3349811858347662157]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3349811858347662157
- },
- "Component_[3582796418901282885]": {
- "$type": "EditorLockComponent",
- "Id": 3582796418901282885
- },
- "Component_[3960255460618473214]": {
- "$type": "EditorEntityIconComponent",
- "Id": 3960255460618473214
- },
- "Component_[6740127369575728823]": {
- "$type": "EditorInspectorComponent",
- "Id": 6740127369575728823
- }
- }
- },
- "Entity_[15715553557024]": {
- "Id": "Entity_[15715553557024]",
- "Name": "L_wheel_link_visual",
- "Components": {
- "Component_[10346297318647313753]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 10346297318647313753,
- "Parent Entity": "Entity_[15672603884064]",
- "Transform Data": {
- "Rotate": [
- -90.0,
- 0.0,
- 180.0
- ]
- }
- },
- "Component_[11147009224931654549]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11147009224931654549
- },
- "Component_[11341656800778699609]": {
- "$type": "EditorInspectorComponent",
- "Id": 11341656800778699609
- },
- "Component_[13852738746344296225]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 13852738746344296225
- },
- "Component_[1385959098878799774]": {
- "$type": "EditorMaterialComponent",
- "Id": 1385959098878799774,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 3008400144
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{38D3B77B-57B7-50FB-969D-0C2E7866E3F6}"
- },
- "assetHint": "materials/proteus_chassis_proteus.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[1445540101138633620]": {
- "$type": "EditorVisibilityComponent",
- "Id": 1445540101138633620
- },
- "Component_[16014937483115839601]": {
- "$type": "EditorLockComponent",
- "Id": 16014937483115839601
- },
- "Component_[17444657573452485753]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 17444657573452485753
- },
- "Component_[2323431644378689384]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2323431644378689384
- },
- "Component_[4858940529052631944]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 4858940529052631944,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{F9B95287-0FA8-5624-92A1-217B33F08280}",
- "subId": 277942675
- },
- "assetHint": "proteus_wheel.fbx.azmodel"
- }
- }
- }
- },
- "Component_[743160702698200184]": {
- "$type": "EditorEntitySortComponent",
- "Id": 743160702698200184
- }
- }
- },
- "Entity_[15719848524320]": {
- "Id": "Entity_[15719848524320]",
- "Name": "Chassis_visual",
- "Components": {
- "Component_[10777190793595124341]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 10777190793595124341
- },
- "Component_[10888464986823248501]": {
- "$type": "EditorInspectorComponent",
- "Id": 10888464986823248501
- },
- "Component_[12981974851308347880]": {
- "$type": "EditorMaterialComponent",
- "Id": 12981974851308347880,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 810733620
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{7D65DED4-D571-5922-820B-A3D82844DA47}"
- },
- "assetHint": "materials/proteus_chassis_side_lights.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 1319371964
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{52CB9217-AEEC-5324-BE71-C82DB5385055}"
- },
- "assetHint": "materials/proteus_chassis_front_light.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 2841759961
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{83A6BB40-44D9-56A7-9AC0-1EC2756D8A17}"
- },
- "assetHint": "materials/proteus_chassis_front_double_lights.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 3008400144
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{38D3B77B-57B7-50FB-969D-0C2E7866E3F6}"
- },
- "assetHint": "materials/proteus_chassis_proteus.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 3083536379
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{A1E43B98-68AA-529B-8185-F4D056CD19CD}"
- },
- "assetHint": "materials/proteus_chassis_indicator.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 4231336350
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{BADA7A37-6E25-5421-8F1B-FD9FD703DD96}"
- },
- "assetHint": "materials/proteus_chassis_rear_lights.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[14214975398894626691]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14214975398894626691
- },
- "Component_[1551818377749827434]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1551818377749827434,
- "Parent Entity": "Entity_[15659718982176]",
- "Transform Data": {
- "Translate": [
- 0.17786407470703125,
- 0.0,
- -0.06693911552429199
- ],
- "Rotate": [
- 0.0,
- 0.0,
- 89.99994659423828
- ]
- }
- },
- "Component_[3442585797497719618]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 3442585797497719618
- },
- "Component_[4405922139428563252]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 4405922139428563252
- },
- "Component_[4661506809947208287]": {
- "$type": "EditorEntitySortComponent",
- "Id": 4661506809947208287,
- "Child Entity Order": [
- "Entity_[15724143491616]"
- ]
- },
- "Component_[4900351710492422465]": {
- "$type": "EditorLockComponent",
- "Id": 4900351710492422465
- },
- "Component_[5049768218299457628]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 5049768218299457628,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{60318C54-1D60-53EC-85AA-2CADBFD83ED9}",
- "subId": 278773777
- },
- "assetHint": "proteus2_chassis.fbx.azmodel"
- }
- }
- }
- },
- "Component_[8657430082099422755]": {
- "$type": "EditorVisibilityComponent",
- "Id": 8657430082099422755
- }
- }
- },
- "Entity_[15724143491616]": {
- "Id": "Entity_[15724143491616]",
- "Name": "Chassis_inside_lights",
- "Components": {
- "Component_[13161866500099870035]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 13161866500099870035
- },
- "Component_[14431861058031353286]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 14431861058031353286,
- "Parent Entity": "Entity_[15719848524320]",
- "Transform Data": {
- "Translate": [
- -0.000578761100769043,
- -0.000545501708984375,
- -0.0010361671447753906
- ],
- "Rotate": [
- 89.99852752685547,
- 0.020194290205836296,
- 0.0776541605591774
- ],
- "UniformScale": 100.0
- }
- },
- "Component_[15695646692627562149]": {
- "$type": "EditorEntityIconComponent",
- "Id": 15695646692627562149
- },
- "Component_[16004421179350716636]": {
- "$type": "EditorLockComponent",
- "Id": 16004421179350716636
- },
- "Component_[18039169602061820460]": {
- "$type": "EditorEntitySortComponent",
- "Id": 18039169602061820460,
- "Child Entity Order": [
- "Entity_[15698373687840]",
- "Entity_[15689783753248]"
- ]
- },
- "Component_[2028603835080579927]": {
- "$type": "EditorInspectorComponent",
- "Id": 2028603835080579927
- },
- "Component_[5266504162080927135]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5266504162080927135
- },
- "Component_[5734509186756145397]": {
- "$type": "EditorVisibilityComponent",
- "Id": 5734509186756145397
- },
- "Component_[5881629558827321802]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 5881629558827321802
- }
- }
- },
- "Entity_[15728438458912]": {
- "Id": "Entity_[15728438458912]",
- "Name": "Lookat_target",
- "Components": {
- "Component_[10295412112257515152]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 10295412112257515152,
- "Parent Entity": "Entity_[15659718982176]",
- "Transform Data": {
- "Translate": [
- 0.4821205139160156,
- 0.0,
- 0.23858165740966797
- ]
- }
- },
- "Component_[14885121080013803585]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14885121080013803585
- },
- "Component_[16557372313871690938]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 16557372313871690938
- },
- "Component_[16578118615520160259]": {
- "$type": "EditorLockComponent",
- "Id": 16578118615520160259
- },
- "Component_[2362272324920485218]": {
- "$type": "EditorVisibilityComponent",
- "Id": 2362272324920485218
- },
- "Component_[4829533816553235415]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 4829533816553235415
- },
- "Component_[6521895344190784381]": {
- "$type": "EditorEntitySortComponent",
- "Id": 6521895344190784381
- },
- "Component_[6928488626418877300]": {
- "$type": "EditorInspectorComponent",
- "Id": 6928488626418877300
- },
- "Component_[9399600171884891001]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 9399600171884891001
- }
- }
- },
- "Entity_[15737028393504]": {
- "Id": "Entity_[15737028393504]",
- "Name": "Proteus",
- "Components": {
- "Component_[10495384342914821446]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 10495384342914821446
- },
- "Component_[10697262161614953618]": {
- "$type": "EditorLockComponent",
- "Id": 10697262161614953618
- },
- "Component_[17775933542525198314]": {
- "$type": "EditorEntityIconComponent",
- "Id": 17775933542525198314
- },
- "Component_[18168987077772989061]": {
- "$type": "EditorEntitySortComponent",
- "Id": 18168987077772989061,
- "Child Entity Order": [
- "Entity_[15659718982176]"
- ]
- },
- "Component_[2406744339456067352]": {
- "$type": "EditorInspectorComponent",
- "Id": 2406744339456067352,
- "ComponentOrderEntryArray": [
- {
- "ComponentId": 5766326171374217747
- }
- ]
- },
- "Component_[4169781774989285934]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 4169781774989285934
- },
- "Component_[5219525341405869032]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 5219525341405869032
- },
- "Component_[5766326171374217747]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5766326171374217747,
- "Parent Entity": "ContainerEntity"
- },
- "Component_[7371512136114467635]": {
- "$type": "EditorVisibilityComponent",
- "Id": 7371512136114467635
- }
- }
- },
- "Entity_[15741323360800]": {
- "Id": "Entity_[15741323360800]",
- "Name": "Lidar",
- "Components": {
- "Component_[10958950841723725778]": {
- "$type": "EditorInspectorComponent",
- "Id": 10958950841723725778
- },
- "Component_[11828293470447184337]": {
- "$type": "EditorEntityIconComponent",
- "Id": 11828293470447184337
- },
- "Component_[12371010079732593422]": {
- "$type": "EditorLockComponent",
- "Id": 12371010079732593422
- },
- "Component_[15707946702459327170]": {
- "$type": "GenericComponentWrapper",
- "Id": 15707946702459327170,
- "m_template": {
- "$type": "ROS2LidarSensorComponent",
- "SensorConfiguration": {
- "Publishers": {
- "sensor_msgs::msg::PointCloud2": {
- "Type": "sensor_msgs::msg::PointCloud2",
- "Topic": "pc"
- }
- }
- }
- }
- },
- "Component_[1828080485137528399]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1828080485137528399,
- "Parent Entity": "Entity_[15659718982176]",
- "Transform Data": {
- "Translate": [
- 0.47283172607421875,
- 0.0,
- 0.15957283973693848
- ]
- }
- },
- "Component_[2877360700288979240]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 2877360700288979240
- },
- "Component_[3344702525066984561]": {
- "$type": "ROS2FrameEditorComponent",
- "ROS2FrameConfiguration": {
- "Frame Name": "lidar"
- }
- },
- "Component_[415289785781429255]": {
- "$type": "EditorEntitySortComponent",
- "Id": 415289785781429255
- },
- "Component_[5411162634240021964]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 5411162634240021964
- },
- "Component_[717875931851190703]": {
- "$type": "EditorVisibilityComponent",
- "Id": 717875931851190703
- },
- "Component_[998936773982660474]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 998936773982660474
- }
- }
- }
- }
- }
|