Proteus.prefab 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283
  1. {
  2. "ContainerEntity": {
  3. "Id": "ContainerEntity",
  4. "Name": "Proteus",
  5. "Components": {
  6. "Component_[10807870805239560439]": {
  7. "$type": "EditorPrefabComponent",
  8. "Id": 10807870805239560439
  9. },
  10. "Component_[12899035917859580022]": {
  11. "$type": "EditorInspectorComponent",
  12. "Id": 12899035917859580022
  13. },
  14. "Component_[13633425816968047704]": {
  15. "$type": "EditorOnlyEntityComponent",
  16. "Id": 13633425816968047704
  17. },
  18. "Component_[15237572906287023176]": {
  19. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  20. "Id": 15237572906287023176,
  21. "Parent Entity": ""
  22. },
  23. "Component_[17227029936004503680]": {
  24. "$type": "EditorDisabledCompositionComponent",
  25. "Id": 17227029936004503680
  26. },
  27. "Component_[4320787421992093219]": {
  28. "$type": "EditorEntityIconComponent",
  29. "Id": 4320787421992093219
  30. },
  31. "Component_[4553536726698780648]": {
  32. "$type": "EditorLockComponent",
  33. "Id": 4553536726698780648
  34. },
  35. "Component_[7268431246627814678]": {
  36. "$type": "EditorVisibilityComponent",
  37. "Id": 7268431246627814678
  38. },
  39. "Component_[7994639576584985831]": {
  40. "$type": "EditorEntitySortComponent",
  41. "Id": 7994639576584985831,
  42. "Child Entity Order": [
  43. "Entity_[15737028393504]"
  44. ]
  45. },
  46. "Component_[981126963761928642]": {
  47. "$type": "EditorPendingCompositionComponent",
  48. "Id": 981126963761928642
  49. }
  50. }
  51. },
  52. "Entities": {
  53. "Entity_[15621064276512]": {
  54. "Id": "Entity_[15621064276512]",
  55. "Name": "light_side_R",
  56. "Components": {
  57. "Component_[11897596323041651801]": {
  58. "$type": "EditorOnlyEntityComponent",
  59. "Id": 11897596323041651801
  60. },
  61. "Component_[12541130223356241257]": {
  62. "$type": "AZ::Render::EditorAreaLightComponent",
  63. "Id": 12541130223356241257,
  64. "Controller": {
  65. "Configuration": {
  66. "LightType": 4,
  67. "Color": [
  68. 0.01042191218584776,
  69. 0.5521476864814758,
  70. 0.0
  71. ],
  72. "Intensity": 1.0,
  73. "AttenuationRadius": 1.9927661418914795,
  74. "Shadow Filter Method": 3
  75. }
  76. }
  77. },
  78. "Component_[12963031663456006887]": {
  79. "$type": "EditorPendingCompositionComponent",
  80. "Id": 12963031663456006887
  81. },
  82. "Component_[17933663734846614005]": {
  83. "$type": "EditorEntitySortComponent",
  84. "Id": 17933663734846614005
  85. },
  86. "Component_[2461895052930420965]": {
  87. "$type": "EditorInspectorComponent",
  88. "Id": 2461895052930420965
  89. },
  90. "Component_[2887060331598036013]": {
  91. "$type": "EditorEntityIconComponent",
  92. "Id": 2887060331598036013
  93. },
  94. "Component_[3200864964702098492]": {
  95. "$type": "LmbrCentral::EditorQuadShapeComponent",
  96. "Id": 3200864964702098492,
  97. "Visible": false,
  98. "ShapeColor": [
  99. 0.01042191218584776,
  100. 0.5521476864814758,
  101. 0.0,
  102. 1.0
  103. ],
  104. "QuadShape": {
  105. "Configuration": {
  106. "Width": 0.05999999865889549,
  107. "Height": 0.009999999776482582
  108. }
  109. }
  110. },
  111. "Component_[3413400077365270262]": {
  112. "$type": "EditorDisabledCompositionComponent",
  113. "Id": 3413400077365270262
  114. },
  115. "Component_[4620432025088325145]": {
  116. "$type": "EditorLockComponent",
  117. "Id": 4620432025088325145
  118. },
  119. "Component_[5708170041862383467]": {
  120. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  121. "Id": 5708170041862383467,
  122. "Parent Entity": "Entity_[15689783753248]",
  123. "Transform Data": {
  124. "Translate": [
  125. -0.2947731018066406,
  126. 0.1049203872680664,
  127. 0.048488616943359375
  128. ],
  129. "Rotate": [
  130. -168.08425903320313,
  131. -58.96449279785156,
  132. 103.83364868164063
  133. ]
  134. }
  135. },
  136. "Component_[9809482087175845189]": {
  137. "$type": "EditorVisibilityComponent",
  138. "Id": 9809482087175845189
  139. }
  140. }
  141. },
  142. "Entity_[15629654211104]": {
  143. "Id": "Entity_[15629654211104]",
  144. "Name": "Right_wheel_link",
  145. "Components": {
  146. "Component_[10222499577136139720]": {
  147. "$type": "EditorDisabledCompositionComponent",
  148. "Id": 10222499577136139720
  149. },
  150. "Component_[1022834116500160782]": {
  151. "$type": "EditorLockComponent",
  152. "Id": 1022834116500160782
  153. },
  154. "Component_[1152987666928095500]": {
  155. "$type": "EditorEntityIconComponent",
  156. "Id": 1152987666928095500
  157. },
  158. "Component_[12925256151907998248]": {
  159. "$type": "EditorColliderComponent",
  160. "Id": 12925256151907998248,
  161. "ColliderConfiguration": {
  162. "Rotation": [
  163. 0.7071067690849304,
  164. 0.0,
  165. 0.0,
  166. 0.7071067690849304
  167. ],
  168. "MaterialSlots": {
  169. "Slots": [
  170. {
  171. "Name": "Entire object",
  172. "MaterialAsset": {
  173. "assetId": {
  174. "guid": "{6D9F8E0A-466E-5774-8974-FC7F0872FD00}",
  175. "subId": 1
  176. },
  177. "assetHint": "physx/rubber.physicsmaterial"
  178. }
  179. }
  180. ]
  181. }
  182. },
  183. "ShapeConfiguration": {
  184. "ShapeType": 3,
  185. "Cylinder": {
  186. "Configuration": {
  187. "CookedData": "TlhTAUNWWE0NAAAAAAAAAElDRQFDTEhMCQAAAEAAAABgAAAAIgAAAMAAAADic4E8u3STPFOzor14ezYyu3STPFTjpb3Wc4G8u3STPFazor0m7v28u3STPLJCmb0oUzi9u3STPEruib3emWq9u3STPN+Zar1K7om9u3STPCtTOL2yQpm9u3STPDHu/bxTs6K9u3STPOBzgbxU46W9u3STPEpP87FWs6K9u3STPNhzgTyyQpm9u3STPCnu/TxK7om9u3STPCtTOD3fmWq9u3STPN6Zaj0rUzi9u3STPEruiT0t7v28u3STPLJCmT3dc4G8u3STPFOzoj1KT3Oxu3STPFTjpT3ac4E8u3STPFazoj0p7v08u3STPLJCmT0rUzg9u3STPEruiT3fmWo9u3STPN+Zaj1K7ok9u3STPCtTOD2yQpk9u3STPC3u/TxTs6I9u3STPNtzgTxU46U9u3STPAAAAABWs6I9u3STPNVzgbyzQpk9u3STPCXu/bxM7ok9u3STPChTOL3gmWo9u3STPNyZar0vUzg9u3STPEruib0x7v08u3STPLJCmb3ac4E8u3STvFazoj0p7v08u3STvLJCmT1KT3Oxu3STvFTjpT1Ws6K9u3STvNhzgTyyQpm9u3STvCnu/TxU46W9u3STvEpP87HWc4G8u3STvFazor0m7v28u3STvLJCmb14ezYyu3STvFTjpb0vUzg9u3STvEruib0x7v08u3STvLJCmb3gmWo9u3STvNyZar1Ws6I9u3STvNVzgbyzQpk9u3STvCXu/bxU46U9u3STvAAAAABM7ok9u3STvChTOL1Ts6I9u3STvNtzgTyyQpk9u3STvC3u/TwrUzg9u3STvEruiT3fmWo9u3STvN+Zaj0rUzi9u3STvEruiT0t7v28u3STvLJCmT3fmWq9u3STvN6Zaj1Ts6K9u3STvOBzgbyyQpm9u3STvDHu/bxK7om9u3STvCtTOD1K7om9u3STvCtTOL3emWq9u3STvN+Zar1K7ok9u3STvCtTOD0oUzi9u3STvEruib3ic4E8u3STvFOzor3dc4G8u3STvFOzoj0AAAAAAACAPwAAAAC9dJO8AAAgIEeglD4AAAAAB/p0P9YWpb0gAAQC3bzIPQAAAABvxH4/1xalvSQABAEI+nS/AAAAAESglD7XFqW9KAAEG2/Efr8AAAAA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",
  188. "Type": 1
  189. },
  190. "Subdivision": 32,
  191. "Height": 0.035999998450279236,
  192. "Radius": 0.08100000023841858
  193. }
  194. }
  195. },
  196. "Component_[14920249924509140042]": {
  197. "$type": "EditorInspectorComponent",
  198. "Id": 14920249924509140042
  199. },
  200. "Component_[15825582909542565444]": {
  201. "$type": "EditorHingeJointComponent",
  202. "Id": 15825582909542565444,
  203. "Configuration": {
  204. "Local Rotation": [
  205. 0.0,
  206. 0.0,
  207. 89.99999237060547
  208. ],
  209. "Parent Entity": "Entity_[15659718982176]",
  210. "Child Entity": "Entity_[15629654211104]"
  211. },
  212. "Angular Limit": {
  213. "Standard Limit Configuration": {
  214. "Is Limited": false
  215. },
  216. "Positive Limit": 360.0,
  217. "Negative Limit": -360.0
  218. },
  219. "Motor": {
  220. "UseMotor": true
  221. }
  222. },
  223. "Component_[17075084475750345983]": {
  224. "$type": "EditorRigidBodyComponent",
  225. "Id": 17075084475750345983,
  226. "Configuration": {
  227. "entityId": "",
  228. "Mass": 0.8847272992134094,
  229. "Centre of mass offset": [
  230. -1.6654873036259232e-9,
  231. -2.462736958808165e-10,
  232. 6.2086658036975e-10
  233. ],
  234. "Inertia tensor": [
  235. 0.0015374301001429558,
  236. 0.0,
  237. 0.0,
  238. 0.0,
  239. 0.0028837586287409067,
  240. 0.0,
  241. 0.0,
  242. 0.0,
  243. 0.0015374301001429558
  244. ]
  245. },
  246. "PhysXSpecificConfiguration": {
  247. "SolverPositionIterations": 40,
  248. "SolverVelocityIterations": 10
  249. }
  250. },
  251. "Component_[1920440257116254952]": {
  252. "$type": "EditorPendingCompositionComponent",
  253. "Id": 1920440257116254952
  254. },
  255. "Component_[2350206111390958743]": {
  256. "$type": "EditorEntitySortComponent",
  257. "Id": 2350206111390958743,
  258. "Child Entity Order": [
  259. "Entity_[15711258589728]"
  260. ]
  261. },
  262. "Component_[3950465018689342880]": {
  263. "$type": "GenericComponentWrapper",
  264. "Id": 3950465018689342880,
  265. "m_template": {
  266. "$type": "WheelControllerComponent",
  267. "SteeringEntity": ""
  268. }
  269. },
  270. "Component_[5287814432279838016]": {
  271. "$type": "EditorOnlyEntityComponent",
  272. "Id": 5287814432279838016
  273. },
  274. "Component_[6497592996458875625]": {
  275. "$type": "EditorVisibilityComponent",
  276. "Id": 6497592996458875625
  277. },
  278. "Component_[8499609321985054807]": {
  279. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  280. "Id": 8499609321985054807,
  281. "Parent Entity": "Entity_[15659718982176]",
  282. "Transform Data": {
  283. "Translate": [
  284. 0.17623519897460938,
  285. -0.26917359232902527,
  286. 0.0
  287. ]
  288. }
  289. }
  290. }
  291. },
  292. "Entity_[15633949178400]": {
  293. "Id": "Entity_[15633949178400]",
  294. "Name": "Camera sensor mount",
  295. "Components": {
  296. "Component_[10184098142535992885]": {
  297. "$type": "EditorVisibilityComponent",
  298. "Id": 10184098142535992885
  299. },
  300. "Component_[14019497545971552389]": {
  301. "$type": "EditorPendingCompositionComponent",
  302. "Id": 14019497545971552389
  303. },
  304. "Component_[1553508777576113397]": {
  305. "$type": "EditorOnlyEntityComponent",
  306. "Id": 1553508777576113397
  307. },
  308. "Component_[16718649951784721576]": {
  309. "$type": "EditorEntityIconComponent",
  310. "Id": 16718649951784721576
  311. },
  312. "Component_[1786982694679401907]": {
  313. "$type": "EditorEntitySortComponent",
  314. "Id": 1786982694679401907
  315. },
  316. "Component_[3278563319615461607]": {
  317. "$type": "EditorInspectorComponent",
  318. "Id": 3278563319615461607
  319. },
  320. "Component_[4707125036060610205]": {
  321. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  322. "Id": 4707125036060610205,
  323. "Parent Entity": "Entity_[15659718982176]",
  324. "Transform Data": {
  325. "Translate": [
  326. 0.5260543823242188,
  327. 0.0,
  328. 0.031635284423828125
  329. ],
  330. "Rotate": [
  331. -0.00008020881796255708,
  332. 75.19884490966797,
  333. -89.99978637695313
  334. ]
  335. }
  336. },
  337. "Component_[7311879232144269420]": {
  338. "$type": "EditorLockComponent",
  339. "Id": 7311879232144269420
  340. },
  341. "Component_[9031766191400117669]": {
  342. "$type": "ROS2FrameEditorComponent"
  343. }
  344. }
  345. },
  346. "Entity_[15638244145696]": {
  347. "Id": "Entity_[15638244145696]",
  348. "Name": "visual",
  349. "Components": {
  350. "Component_[10311920987167308953]": {
  351. "$type": "EditorOnlyEntityComponent",
  352. "Id": 10311920987167308953
  353. },
  354. "Component_[13475526524683628218]": {
  355. "$type": "EditorEntityIconComponent",
  356. "Id": 13475526524683628218
  357. },
  358. "Component_[13702045072618306648]": {
  359. "$type": "EditorEntitySortComponent",
  360. "Id": 13702045072618306648
  361. },
  362. "Component_[143294533017561991]": {
  363. "$type": "AZ::Render::EditorMeshComponent",
  364. "Id": 143294533017561991,
  365. "Controller": {
  366. "Configuration": {
  367. "ModelAsset": {
  368. "assetId": {
  369. "guid": "{8A2E7A82-D7C3-5E9C-A56C-6EDA70876347}",
  370. "subId": 268721130
  371. },
  372. "assetHint": "materialeditor/viewportmodels/cylinder.fbx.azmodel"
  373. }
  374. }
  375. }
  376. },
  377. "Component_[16133890541824903853]": {
  378. "$type": "EditorLockComponent",
  379. "Id": 16133890541824903853
  380. },
  381. "Component_[1637110301170404982]": {
  382. "$type": "EditorInspectorComponent",
  383. "Id": 1637110301170404982
  384. },
  385. "Component_[4408110107729188661]": {
  386. "$type": "EditorDisabledCompositionComponent",
  387. "Id": 4408110107729188661
  388. },
  389. "Component_[4437393399381877732]": {
  390. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  391. "Id": 4437393399381877732,
  392. "Parent Entity": "Entity_[15698373687840]",
  393. "Transform Data": {
  394. "Rotate": [
  395. 70.58258056640625,
  396. -4.032801151275635,
  397. 0.26877090334892273
  398. ],
  399. "UniformScale": 0.023000000044703484
  400. }
  401. },
  402. "Component_[7252521557974110117]": {
  403. "$type": "EditorMaterialComponent",
  404. "Id": 7252521557974110117,
  405. "Controller": {
  406. "Configuration": {
  407. "materials": [
  408. {
  409. "Key": {
  410. "materialSlotStableId": 1803671422
  411. },
  412. "Value": {
  413. "MaterialAsset": {
  414. "assetId": {
  415. "guid": "{D0D27642-FF9C-5FCA-9B3A-C8897F2167BA}"
  416. },
  417. "assetHint": "materials/proteus_headlamp.azmaterial"
  418. }
  419. }
  420. }
  421. ]
  422. }
  423. }
  424. },
  425. "Component_[777323955207164658]": {
  426. "$type": "EditorPendingCompositionComponent",
  427. "Id": 777323955207164658
  428. },
  429. "Component_[907280948724559415]": {
  430. "$type": "EditorVisibilityComponent",
  431. "Id": 907280948724559415
  432. }
  433. }
  434. },
  435. "Entity_[15642539112992]": {
  436. "Id": "Entity_[15642539112992]",
  437. "Name": "WheelRear",
  438. "Components": {
  439. "Component_[15527758502525293079]": {
  440. "$type": "EditorEntitySortComponent",
  441. "Id": 15527758502525293079
  442. },
  443. "Component_[16101951821150023499]": {
  444. "$type": "EditorEntityIconComponent",
  445. "Id": 16101951821150023499
  446. },
  447. "Component_[16395152525411854064]": {
  448. "$type": "EditorFixedJointComponent",
  449. "Id": 16395152525411854064,
  450. "Configuration": {
  451. "Parent Entity": "Entity_[15659718982176]",
  452. "Child Entity": "Entity_[15642539112992]"
  453. }
  454. },
  455. "Component_[1773589821645877570]": {
  456. "$type": "EditorDisabledCompositionComponent",
  457. "Id": 1773589821645877570
  458. },
  459. "Component_[444656175361887051]": {
  460. "$type": "EditorPendingCompositionComponent",
  461. "Id": 444656175361887051
  462. },
  463. "Component_[4947664643201276922]": {
  464. "$type": "EditorLockComponent",
  465. "Id": 4947664643201276922
  466. },
  467. "Component_[5072058817000597154]": {
  468. "$type": "EditorOnlyEntityComponent",
  469. "Id": 5072058817000597154
  470. },
  471. "Component_[5089606775372981179]": {
  472. "$type": "EditorVisibilityComponent",
  473. "Id": 5089606775372981179
  474. },
  475. "Component_[7870882568847047734]": {
  476. "$type": "EditorRigidBodyComponent",
  477. "Id": 7870882568847047734,
  478. "Configuration": {
  479. "entityId": "",
  480. "Mass": 0.033510319888591766,
  481. "Inertia tensor": [
  482. 0.000005361651346902363,
  483. 0.0,
  484. 0.0,
  485. 0.0,
  486. 0.000005361651346902363,
  487. 0.0,
  488. 0.0,
  489. 0.0,
  490. 0.000005361651346902363
  491. ]
  492. },
  493. "PhysXSpecificConfiguration": {
  494. "SolverPositionIterations": 40,
  495. "SolverVelocityIterations": 10
  496. }
  497. },
  498. "Component_[8110923963616165068]": {
  499. "$type": "EditorColliderComponent",
  500. "Id": 8110923963616165068,
  501. "ColliderConfiguration": {
  502. "MaterialSlots": {
  503. "Slots": [
  504. {
  505. "Name": "Entire object",
  506. "MaterialAsset": {
  507. "assetId": {
  508. "guid": "{38B772A4-578F-52B3-87BE-4071F1ED8D34}",
  509. "subId": 1
  510. },
  511. "assetHint": "no_friction.physicsmaterial"
  512. }
  513. }
  514. ]
  515. }
  516. },
  517. "ShapeConfiguration": {
  518. "ShapeType": 0,
  519. "Sphere": {
  520. "Radius": 0.019999999552965164
  521. }
  522. }
  523. },
  524. "Component_[94844036599915707]": {
  525. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  526. "Id": 94844036599915707,
  527. "Parent Entity": "Entity_[15659718982176]",
  528. "Transform Data": {
  529. "Translate": [
  530. -0.21210527420043945,
  531. -0.000030994415283203125,
  532. -0.06243150681257248
  533. ],
  534. "Rotate": [
  535. -0.10286237299442291,
  536. -0.00003594520239857957,
  537. 90.01988983154297
  538. ]
  539. }
  540. },
  541. "Component_[9822914299135029218]": {
  542. "$type": "EditorInspectorComponent",
  543. "Id": 9822914299135029218
  544. }
  545. }
  546. },
  547. "Entity_[15651129047584]": {
  548. "Id": "Entity_[15651129047584]",
  549. "Name": "IMU_link",
  550. "Components": {
  551. "Component_[11483902887902604628]": {
  552. "$type": "EditorInspectorComponent",
  553. "Id": 11483902887902604628
  554. },
  555. "Component_[12817635789820242289]": {
  556. "$type": "EditorEntitySortComponent",
  557. "Id": 12817635789820242289
  558. },
  559. "Component_[17191079459924416406]": {
  560. "$type": "EditorPendingCompositionComponent",
  561. "Id": 17191079459924416406
  562. },
  563. "Component_[17775749381982911317]": {
  564. "$type": "EditorDisabledCompositionComponent",
  565. "Id": 17775749381982911317
  566. },
  567. "Component_[3057000158287722738]": {
  568. "$type": "EditorVisibilityComponent",
  569. "Id": 3057000158287722738
  570. },
  571. "Component_[382773145374156990]": {
  572. "$type": "EditorOnlyEntityComponent",
  573. "Id": 382773145374156990
  574. },
  575. "Component_[7210971876194296651]": {
  576. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  577. "Id": 7210971876194296651,
  578. "Parent Entity": "Entity_[15659718982176]",
  579. "Transform Data": {
  580. "Translate": [
  581. -0.13689999282360077,
  582. -0.04190000146627426,
  583. 0.03700000047683716
  584. ],
  585. "Rotate": [
  586. 179.9998321533203,
  587. 0.0,
  588. 0.0
  589. ]
  590. }
  591. },
  592. "Component_[8189664995606895929]": {
  593. "$type": "EditorEntityIconComponent",
  594. "Id": 8189664995606895929
  595. },
  596. "Component_[8263601133872510315]": {
  597. "$type": "EditorLockComponent",
  598. "Id": 8263601133872510315
  599. }
  600. }
  601. },
  602. "Entity_[15659718982176]": {
  603. "Id": "Entity_[15659718982176]",
  604. "Name": "base_link",
  605. "Components": {
  606. "Component_[10692234168189354968]": {
  607. "$type": "EditorDisabledCompositionComponent",
  608. "Id": 10692234168189354968
  609. },
  610. "Component_[10928326798115103880]": {
  611. "$type": "EditorOnlyEntityComponent",
  612. "Id": 10928326798115103880
  613. },
  614. "Component_[1153232506834696450]": {
  615. "$type": "EditorMeshColliderComponent",
  616. "Id": 1153232506834696450,
  617. "ColliderConfiguration": {
  618. "Position": [
  619. 0.1837027668952942,
  620. 0.0,
  621. -0.06689203530550003
  622. ],
  623. "Rotation": [
  624. 0.0,
  625. 0.0,
  626. 0.7071067690849304,
  627. 0.7071067094802856
  628. ],
  629. "MaterialSlots": {
  630. "Slots": [
  631. {
  632. "Name": "Proteus",
  633. "MaterialAsset": {
  634. "assetId": {
  635. "guid": "{92A5EC27-1AC1-523E-88BB-9A6278DBD853}",
  636. "subId": 1
  637. },
  638. "assetHint": "physx/metal.physicsmaterial"
  639. }
  640. }
  641. ]
  642. }
  643. },
  644. "ShapeConfiguration": {
  645. "PhysicsAsset": {
  646. "Asset": {
  647. "assetId": {
  648. "guid": "{D8E41FF6-BF62-5D4A-B4C3-B980586B3AB3}",
  649. "subId": 1612379007
  650. },
  651. "assetHint": "proteus_chassis.fbx.pxmesh"
  652. },
  653. "Configuration": {
  654. "PhysicsAsset": {
  655. "assetId": {
  656. "guid": "{D8E41FF6-BF62-5D4A-B4C3-B980586B3AB3}",
  657. "subId": 1612379007
  658. },
  659. "loadBehavior": "QueueLoad",
  660. "assetHint": "proteus_chassis.fbx.pxmesh"
  661. },
  662. "UseMaterialsFromAsset": false
  663. }
  664. }
  665. }
  666. },
  667. "Component_[12137189902681906851]": {
  668. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  669. "Id": 12137189902681906851,
  670. "Parent Entity": "Entity_[15737028393504]",
  671. "Transform Data": {
  672. "Translate": [
  673. 0.0,
  674. 0.0,
  675. 0.04800009727478027
  676. ]
  677. }
  678. },
  679. "Component_[12319911397194903150]": {
  680. "$type": "GenericComponentWrapper",
  681. "Id": 12319911397194903150,
  682. "m_template": {
  683. "$type": "SkidSteeringModelComponent",
  684. "VehicleConfiguration": {
  685. "AxlesConfigurations": [
  686. {
  687. "AxleWheels": [
  688. "Entity_[15672603884064]",
  689. "Entity_[15629654211104]"
  690. ],
  691. "WheelRadius": 0.08100000023841858,
  692. "IsSteering": true,
  693. "IsDrive": true
  694. }
  695. ],
  696. "Track": 0.5299999713897705,
  697. "Wheelbase": 0.0
  698. },
  699. "DriveModel": {
  700. "Limits": {
  701. "AngularLimit": 2.0
  702. }
  703. }
  704. }
  705. },
  706. "Component_[15835975987756009148]": {
  707. "$type": "EditorPendingCompositionComponent",
  708. "Id": 15835975987756009148
  709. },
  710. "Component_[3504146771183251675]": {
  711. "$type": "EditorInspectorComponent",
  712. "Id": 3504146771183251675
  713. },
  714. "Component_[3596110623068228821]": {
  715. "$type": "EditorVisibilityComponent",
  716. "Id": 3596110623068228821
  717. },
  718. "Component_[3611806209827043811]": {
  719. "$type": "GenericComponentWrapper",
  720. "Id": 3611806209827043811,
  721. "m_template": {
  722. "$type": "SkidSteeringControlComponent"
  723. }
  724. },
  725. "Component_[5852749630011233946]": {
  726. "$type": "EditorEntityIconComponent",
  727. "Id": 5852749630011233946
  728. },
  729. "Component_[639102350977932618]": {
  730. "$type": "ROS2FrameEditorComponent",
  731. "Id": 1381491360893018223,
  732. "ROS2FrameConfiguration": {
  733. "Namespace Configuration": {
  734. "Namespace": "base_link"
  735. },
  736. "Frame Name": "base_link"
  737. }
  738. },
  739. "Component_[6563269519356188309]": {
  740. "$type": "EditorEntitySortComponent",
  741. "Id": 6563269519356188309,
  742. "Child Entity Order": [
  743. "Entity_[15719848524320]",
  744. "Entity_[15672603884064]",
  745. "Entity_[15629654211104]",
  746. "Entity_[15642539112992]",
  747. "Entity_[15651129047584]",
  748. "Entity_[15741323360800]",
  749. "Entity_[15633949178400]",
  750. "Entity_[15728438458912]",
  751. "Entity_[15706963622432]"
  752. ]
  753. },
  754. "Component_[6615492099568417181]": {
  755. "$type": "EditorLockComponent",
  756. "Id": 6615492099568417181
  757. },
  758. "Component_[7613619815052417776]": {
  759. "$type": "EditorRigidBodyComponent",
  760. "Id": 7613619815052417776,
  761. "Configuration": {
  762. "entityId": "",
  763. "Compute Mass": false,
  764. "Mass": 8.0,
  765. "Compute COM": false,
  766. "Centre of mass offset": [
  767. -0.07999999821186066,
  768. -0.0000016969800071819918,
  769. -0.03301370143890381
  770. ],
  771. "Compute inertia": false,
  772. "Inertia tensor": [
  773. 0.013930019922554493,
  774. 0.0,
  775. 0.0,
  776. 0.0,
  777. 0.010810183361172676,
  778. 0.0,
  779. 0.0,
  780. 0.0,
  781. 0.020480088889598846
  782. ],
  783. "Debug Draw Center of Mass": true
  784. },
  785. "PhysXSpecificConfiguration": {
  786. "SolverPositionIterations": 40,
  787. "SolverVelocityIterations": 10
  788. }
  789. },
  790. "Component_[8086219274868527893]": {
  791. "$type": "GenericComponentWrapper",
  792. "Id": 8086219274868527893,
  793. "m_template": {
  794. "$type": "ROS2RobotControlComponent",
  795. "SubscriberConfiguration": {
  796. "Topic": "cmd_vel"
  797. }
  798. }
  799. },
  800. "Component_[8616898509529572762]": {
  801. "$type": "GenericComponentWrapper",
  802. "Id": 8616898509529572762,
  803. "m_template": {
  804. "$type": "InputConfigurationComponent",
  805. "Input Event Bindings": {
  806. "assetId": {
  807. "guid": "{4FD84EC8-D6B0-54F4-B3A5-EA9DAAF2F57F}"
  808. },
  809. "assetHint": "scripts/proteusrobot_inputs.inputbindings"
  810. }
  811. }
  812. }
  813. }
  814. },
  815. "Entity_[15664013949472]": {
  816. "Id": "Entity_[15664013949472]",
  817. "Name": "light_front",
  818. "Components": {
  819. "Component_[11897596323041651801]": {
  820. "$type": "EditorOnlyEntityComponent",
  821. "Id": 11897596323041651801
  822. },
  823. "Component_[12541130223356241257]": {
  824. "$type": "AZ::Render::EditorAreaLightComponent",
  825. "Id": 12541130223356241257,
  826. "Controller": {
  827. "Configuration": {
  828. "LightType": 4,
  829. "Color": [
  830. 0.01042191218584776,
  831. 0.5521476864814758,
  832. 0.0
  833. ],
  834. "Intensity": 2.0,
  835. "AttenuationRadius": 2.818197011947632,
  836. "Shadow Filter Method": 3
  837. }
  838. }
  839. },
  840. "Component_[12963031663456006887]": {
  841. "$type": "EditorPendingCompositionComponent",
  842. "Id": 12963031663456006887
  843. },
  844. "Component_[17933663734846614005]": {
  845. "$type": "EditorEntitySortComponent",
  846. "Id": 17933663734846614005
  847. },
  848. "Component_[2461895052930420965]": {
  849. "$type": "EditorInspectorComponent",
  850. "Id": 2461895052930420965
  851. },
  852. "Component_[2887060331598036013]": {
  853. "$type": "EditorEntityIconComponent",
  854. "Id": 2887060331598036013
  855. },
  856. "Component_[3200864964702098492]": {
  857. "$type": "LmbrCentral::EditorQuadShapeComponent",
  858. "Id": 3200864964702098492,
  859. "Visible": false,
  860. "ShapeColor": [
  861. 0.01042191218584776,
  862. 0.5521476864814758,
  863. 0.0,
  864. 1.0
  865. ],
  866. "QuadShape": {
  867. "Configuration": {
  868. "Width": 0.11999999731779099,
  869. "Height": 0.009999999776482582
  870. }
  871. }
  872. },
  873. "Component_[3413400077365270262]": {
  874. "$type": "EditorDisabledCompositionComponent",
  875. "Id": 3413400077365270262
  876. },
  877. "Component_[4620432025088325145]": {
  878. "$type": "EditorLockComponent",
  879. "Id": 4620432025088325145
  880. },
  881. "Component_[5708170041862383467]": {
  882. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  883. "Id": 5708170041862383467,
  884. "Parent Entity": "Entity_[15689783753248]",
  885. "Transform Data": {
  886. "Translate": [
  887. -0.0001068115234375,
  888. -0.3972148895263672,
  889. -0.05003976821899414
  890. ],
  891. "Rotate": [
  892. 159.99990844726563,
  893. 0.000001077278284355998,
  894. 1.8995413597622246e-7
  895. ]
  896. }
  897. },
  898. "Component_[9809482087175845189]": {
  899. "$type": "EditorVisibilityComponent",
  900. "Id": 9809482087175845189
  901. }
  902. }
  903. },
  904. "Entity_[15672603884064]": {
  905. "Id": "Entity_[15672603884064]",
  906. "Name": "Left_wheel_link",
  907. "Components": {
  908. "Component_[11532719563339504114]": {
  909. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  910. "Id": 11532719563339504114,
  911. "Parent Entity": "Entity_[15659718982176]",
  912. "Transform Data": {
  913. "Translate": [
  914. 0.17623519897460938,
  915. 0.26917362213134766,
  916. 0.0
  917. ]
  918. }
  919. },
  920. "Component_[11685358238844952494]": {
  921. "$type": "EditorRigidBodyComponent",
  922. "Id": 11685358238844952494,
  923. "Configuration": {
  924. "entityId": "",
  925. "Mass": 0.8847272992134094,
  926. "Centre of mass offset": [
  927. -1.6654873036259232e-9,
  928. -2.462736958808165e-10,
  929. 6.2086658036975e-10
  930. ],
  931. "Inertia tensor": [
  932. 0.0015374301001429558,
  933. 0.0,
  934. 0.0,
  935. 0.0,
  936. 0.0028837586287409067,
  937. 0.0,
  938. 0.0,
  939. 0.0,
  940. 0.0015374301001429558
  941. ]
  942. },
  943. "PhysXSpecificConfiguration": {
  944. "SolverPositionIterations": 40,
  945. "SolverVelocityIterations": 10
  946. }
  947. },
  948. "Component_[13480834856829216250]": {
  949. "$type": "EditorOnlyEntityComponent",
  950. "Id": 13480834856829216250
  951. },
  952. "Component_[14290604826774961924]": {
  953. "$type": "EditorVisibilityComponent",
  954. "Id": 14290604826774961924
  955. },
  956. "Component_[17955271677359408921]": {
  957. "$type": "EditorEntityIconComponent",
  958. "Id": 17955271677359408921
  959. },
  960. "Component_[2312958197081026454]": {
  961. "$type": "EditorDisabledCompositionComponent",
  962. "Id": 2312958197081026454
  963. },
  964. "Component_[412550130423261674]": {
  965. "$type": "EditorInspectorComponent",
  966. "Id": 412550130423261674
  967. },
  968. "Component_[5225844937632238149]": {
  969. "$type": "EditorPendingCompositionComponent",
  970. "Id": 5225844937632238149
  971. },
  972. "Component_[645425375358499776]": {
  973. "$type": "GenericComponentWrapper",
  974. "Id": 645425375358499776,
  975. "m_template": {
  976. "$type": "WheelControllerComponent",
  977. "SteeringEntity": ""
  978. }
  979. },
  980. "Component_[7456975798968691780]": {
  981. "$type": "EditorColliderComponent",
  982. "Id": 7456975798968691780,
  983. "ColliderConfiguration": {
  984. "Rotation": [
  985. 0.7071067690849304,
  986. 0.0,
  987. 0.0,
  988. 0.7071067690849304
  989. ],
  990. "MaterialSlots": {
  991. "Slots": [
  992. {
  993. "Name": "Entire object",
  994. "MaterialAsset": {
  995. "assetId": {
  996. "guid": "{6D9F8E0A-466E-5774-8974-FC7F0872FD00}",
  997. "subId": 1
  998. },
  999. "assetHint": "physx/rubber.physicsmaterial"
  1000. }
  1001. }
  1002. ]
  1003. }
  1004. },
  1005. "ShapeConfiguration": {
  1006. "ShapeType": 3,
  1007. "Cylinder": {
  1008. "Configuration": {
  1009. "CookedData": "TlhTAUNWWE0NAAAAAAAAAElDRQFDTEhMCQAAAEAAAABgAAAAIgAAAMAAAADic4E8u3STPFOzor14ezYyu3STPFTjpb3Wc4G8u3STPFazor0m7v28u3STPLJCmb0oUzi9u3STPEruib3emWq9u3STPN+Zar1K7om9u3STPCtTOL2yQpm9u3STPDHu/bxTs6K9u3STPOBzgbxU46W9u3STPEpP87FWs6K9u3STPNhzgTyyQpm9u3STPCnu/TxK7om9u3STPCtTOD3fmWq9u3STPN6Zaj0rUzi9u3STPEruiT0t7v28u3STPLJCmT3dc4G8u3STPFOzoj1KT3Oxu3STPFTjpT3ac4E8u3STPFazoj0p7v08u3STPLJCmT0rUzg9u3STPEruiT3fmWo9u3STPN+Zaj1K7ok9u3STPCtTOD2yQpk9u3STPC3u/TxTs6I9u3STPNtzgTxU46U9u3STPAAAAABWs6I9u3STPNVzgbyzQpk9u3STPCXu/bxM7ok9u3STPChTOL3gmWo9u3STPNyZar0vUzg9u3STPEruib0x7v08u3STPLJCmb3ac4E8u3STvFazoj0p7v08u3STvLJCmT1KT3Oxu3STvFTjpT1Ws6K9u3STvNhzgTyyQpm9u3STvCnu/TxU46W9u3STvEpP87HWc4G8u3STvFazor0m7v28u3STvLJCmb14ezYyu3STvFTjpb0vUzg9u3STvEruib0x7v08u3STvLJCmb3gmWo9u3STvNyZar1Ws6I9u3STvNVzgbyzQpk9u3STvCXu/bxU46U9u3STvAAAAABM7ok9u3STvChTOL1Ts6I9u3STvNtzgTyyQpk9u3STvC3u/TwrUzg9u3STvEruiT3fmWo9u3STvN+Zaj0rUzi9u3STvEruiT0t7v28u3STvLJCmT3fmWq9u3STvN6Zaj1Ts6K9u3STvOBzgbyyQpm9u3STvDHu/bxK7om9u3STvCtTOD1K7om9u3STvCtTOL3emWq9u3STvN+Zar1K7ok9u3STvCtTOD0oUzi9u3STvEruib3ic4E8u3STvFOzor3dc4G8u3STvFOzoj0AAAAAAACAPwAAAAC9dJO8AAAgIEeglD4AAAAAB/p0P9YWpb0gAAQC3bzIPQAAAABvxH4/1xalvSQABAEI+nS/AAAAAESglD7XFqW9KAAEG2/Efr8AAAAA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",
  1010. "Type": 1
  1011. },
  1012. "Subdivision": 32,
  1013. "Height": 0.035999998450279236,
  1014. "Radius": 0.08100000023841858
  1015. }
  1016. }
  1017. },
  1018. "Component_[8249106115951627620]": {
  1019. "$type": "EditorEntitySortComponent",
  1020. "Id": 8249106115951627620,
  1021. "Child Entity Order": [
  1022. "Entity_[15715553557024]"
  1023. ]
  1024. },
  1025. "Component_[8358326737517861161]": {
  1026. "$type": "EditorHingeJointComponent",
  1027. "Id": 8358326737517861161,
  1028. "Configuration": {
  1029. "Local Rotation": [
  1030. 0.0,
  1031. 0.0,
  1032. 89.99999237060547
  1033. ],
  1034. "Parent Entity": "Entity_[15659718982176]",
  1035. "Child Entity": "Entity_[15672603884064]"
  1036. },
  1037. "Angular Limit": {
  1038. "Standard Limit Configuration": {
  1039. "Is Limited": false
  1040. },
  1041. "Positive Limit": 360.0,
  1042. "Negative Limit": -360.0
  1043. },
  1044. "Motor": {
  1045. "UseMotor": true
  1046. }
  1047. },
  1048. "Component_[9688455588356051084]": {
  1049. "$type": "EditorLockComponent",
  1050. "Id": 9688455588356051084
  1051. }
  1052. }
  1053. },
  1054. "Entity_[15676898851360]": {
  1055. "Id": "Entity_[15676898851360]",
  1056. "Name": "lamp",
  1057. "Components": {
  1058. "Component_[11028818137456178219]": {
  1059. "$type": "AZ::Render::EditorAreaLightComponent",
  1060. "Id": 11028818137456178219,
  1061. "Controller": {
  1062. "Configuration": {
  1063. "LightType": 2,
  1064. "Color": [
  1065. 0.0,
  1066. 0.6437781453132629,
  1067. 0.005813687574118376
  1068. ],
  1069. "Intensity": 200.0,
  1070. "AttenuationRadiusMode": 0,
  1071. "AttenuationRadius": 10.0,
  1072. "EnableShutters": true,
  1073. "InnerShutterAngleDegrees": 0.5,
  1074. "OuterShutterAngleDegrees": 5.599999904632568,
  1075. "Enable Shadow": true,
  1076. "Shadowmap Max Size": "Size512",
  1077. "Shadow Filter Method": 1,
  1078. "Filtering Sample Count": 64
  1079. }
  1080. }
  1081. },
  1082. "Component_[12179390792348965257]": {
  1083. "$type": "EditorDisabledCompositionComponent",
  1084. "Id": 12179390792348965257
  1085. },
  1086. "Component_[14359364581717257661]": {
  1087. "$type": "EditorDiskShapeComponent",
  1088. "Id": 14359364581717257661,
  1089. "ShapeColor": [
  1090. 0.0,
  1091. 0.6437781453132629,
  1092. 0.005813687574118376,
  1093. 1.0
  1094. ],
  1095. "DiskShape": {
  1096. "Configuration": {
  1097. "Radius": 0.009999999776482582
  1098. }
  1099. }
  1100. },
  1101. "Component_[15569592773823518132]": {
  1102. "$type": "EditorInspectorComponent",
  1103. "Id": 15569592773823518132
  1104. },
  1105. "Component_[2441565482597131752]": {
  1106. "$type": "EditorVisibilityComponent",
  1107. "Id": 2441565482597131752
  1108. },
  1109. "Component_[2689189350198442633]": {
  1110. "$type": "EditorEntityIconComponent",
  1111. "Id": 2689189350198442633
  1112. },
  1113. "Component_[2941525099026490175]": {
  1114. "$type": "EditorOnlyEntityComponent",
  1115. "Id": 2941525099026490175
  1116. },
  1117. "Component_[4386127804245947513]": {
  1118. "$type": "EditorPendingCompositionComponent",
  1119. "Id": 4386127804245947513
  1120. },
  1121. "Component_[6294796222050970789]": {
  1122. "$type": "EditorLockComponent",
  1123. "Id": 6294796222050970789
  1124. },
  1125. "Component_[8176446149119022885]": {
  1126. "$type": "EditorEntitySortComponent",
  1127. "Id": 8176446149119022885
  1128. },
  1129. "Component_[8265203123258917331]": {
  1130. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1131. "Id": 8265203123258917331,
  1132. "Parent Entity": "Entity_[15698373687840]",
  1133. "Transform Data": {
  1134. "Translate": [
  1135. 0.0,
  1136. -0.06402825564146042,
  1137. -0.05422711372375488
  1138. ],
  1139. "Rotate": [
  1140. 92.7552719116211,
  1141. 0.000014292942978499923,
  1142. -0.00001468247501179576
  1143. ]
  1144. }
  1145. }
  1146. }
  1147. },
  1148. "Entity_[15681193818656]": {
  1149. "Id": "Entity_[15681193818656]",
  1150. "Name": "light_side_L",
  1151. "Components": {
  1152. "Component_[11897596323041651801]": {
  1153. "$type": "EditorOnlyEntityComponent",
  1154. "Id": 11897596323041651801
  1155. },
  1156. "Component_[12541130223356241257]": {
  1157. "$type": "AZ::Render::EditorAreaLightComponent",
  1158. "Id": 12541130223356241257,
  1159. "Controller": {
  1160. "Configuration": {
  1161. "LightType": 4,
  1162. "Color": [
  1163. 0.01042191218584776,
  1164. 0.5521476864814758,
  1165. 0.0
  1166. ],
  1167. "Intensity": 1.0,
  1168. "AttenuationRadius": 1.9927661418914795,
  1169. "Shadow Filter Method": 3
  1170. }
  1171. }
  1172. },
  1173. "Component_[12963031663456006887]": {
  1174. "$type": "EditorPendingCompositionComponent",
  1175. "Id": 12963031663456006887
  1176. },
  1177. "Component_[17933663734846614005]": {
  1178. "$type": "EditorEntitySortComponent",
  1179. "Id": 17933663734846614005
  1180. },
  1181. "Component_[2461895052930420965]": {
  1182. "$type": "EditorInspectorComponent",
  1183. "Id": 2461895052930420965
  1184. },
  1185. "Component_[2887060331598036013]": {
  1186. "$type": "EditorEntityIconComponent",
  1187. "Id": 2887060331598036013
  1188. },
  1189. "Component_[3200864964702098492]": {
  1190. "$type": "LmbrCentral::EditorQuadShapeComponent",
  1191. "Id": 3200864964702098492,
  1192. "Visible": false,
  1193. "ShapeColor": [
  1194. 0.01042191218584776,
  1195. 0.5521476864814758,
  1196. 0.0,
  1197. 1.0
  1198. ],
  1199. "QuadShape": {
  1200. "Configuration": {
  1201. "Width": 0.05999999865889549,
  1202. "Height": 0.009999999776482582
  1203. }
  1204. }
  1205. },
  1206. "Component_[3413400077365270262]": {
  1207. "$type": "EditorDisabledCompositionComponent",
  1208. "Id": 3413400077365270262
  1209. },
  1210. "Component_[4620432025088325145]": {
  1211. "$type": "EditorLockComponent",
  1212. "Id": 4620432025088325145
  1213. },
  1214. "Component_[5708170041862383467]": {
  1215. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1216. "Id": 5708170041862383467,
  1217. "Parent Entity": "Entity_[15689783753248]",
  1218. "Transform Data": {
  1219. "Translate": [
  1220. 0.2953958511352539,
  1221. 0.10491561889648438,
  1222. 0.04846477508544922
  1223. ],
  1224. "Rotate": [
  1225. -168.1212921142578,
  1226. 58.96950149536133,
  1227. -103.79296875
  1228. ]
  1229. }
  1230. },
  1231. "Component_[9809482087175845189]": {
  1232. "$type": "EditorVisibilityComponent",
  1233. "Id": 9809482087175845189
  1234. }
  1235. }
  1236. },
  1237. "Entity_[15685488785952]": {
  1238. "Id": "Entity_[15685488785952]",
  1239. "Name": "light_rear_R",
  1240. "Components": {
  1241. "Component_[11897596323041651801]": {
  1242. "$type": "EditorOnlyEntityComponent",
  1243. "Id": 11897596323041651801
  1244. },
  1245. "Component_[12541130223356241257]": {
  1246. "$type": "AZ::Render::EditorAreaLightComponent",
  1247. "Id": 12541130223356241257,
  1248. "Controller": {
  1249. "Configuration": {
  1250. "LightType": 4,
  1251. "Color": [
  1252. 0.5521476864814758,
  1253. 0.0,
  1254. 0.0
  1255. ],
  1256. "Intensity": 2.0,
  1257. "AttenuationRadius": 1.5322309732437134,
  1258. "Shadow Filter Method": 3
  1259. }
  1260. }
  1261. },
  1262. "Component_[12963031663456006887]": {
  1263. "$type": "EditorPendingCompositionComponent",
  1264. "Id": 12963031663456006887
  1265. },
  1266. "Component_[17933663734846614005]": {
  1267. "$type": "EditorEntitySortComponent",
  1268. "Id": 17933663734846614005
  1269. },
  1270. "Component_[2461895052930420965]": {
  1271. "$type": "EditorInspectorComponent",
  1272. "Id": 2461895052930420965
  1273. },
  1274. "Component_[2887060331598036013]": {
  1275. "$type": "EditorEntityIconComponent",
  1276. "Id": 2887060331598036013
  1277. },
  1278. "Component_[3200864964702098492]": {
  1279. "$type": "LmbrCentral::EditorQuadShapeComponent",
  1280. "Id": 3200864964702098492,
  1281. "Visible": false,
  1282. "ShapeColor": [
  1283. 0.5521476864814758,
  1284. 0.0,
  1285. 0.0,
  1286. 1.0
  1287. ],
  1288. "QuadShape": {
  1289. "Configuration": {
  1290. "Width": 0.05999999865889549,
  1291. "Height": 0.009999999776482582
  1292. }
  1293. }
  1294. },
  1295. "Component_[3413400077365270262]": {
  1296. "$type": "EditorDisabledCompositionComponent",
  1297. "Id": 3413400077365270262
  1298. },
  1299. "Component_[4620432025088325145]": {
  1300. "$type": "EditorLockComponent",
  1301. "Id": 4620432025088325145
  1302. },
  1303. "Component_[5708170041862383467]": {
  1304. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1305. "Id": 5708170041862383467,
  1306. "Parent Entity": "Entity_[15689783753248]",
  1307. "Transform Data": {
  1308. "Translate": [
  1309. -0.16006183624267578,
  1310. 0.3018321990966797,
  1311. -0.05835771560668945
  1312. ],
  1313. "Rotate": [
  1314. -151.2399444580078,
  1315. -7.136781692504883,
  1316. -20.135862350463867
  1317. ]
  1318. }
  1319. },
  1320. "Component_[9809482087175845189]": {
  1321. "$type": "EditorVisibilityComponent",
  1322. "Id": 9809482087175845189
  1323. }
  1324. }
  1325. },
  1326. "Entity_[15689783753248]": {
  1327. "Id": "Entity_[15689783753248]",
  1328. "Name": "Lights",
  1329. "Components": {
  1330. "Component_[12419931558452825679]": {
  1331. "$type": "EditorLockComponent",
  1332. "Id": 12419931558452825679
  1333. },
  1334. "Component_[13224810909069591059]": {
  1335. "$type": "EditorOnlyEntityComponent",
  1336. "Id": 13224810909069591059
  1337. },
  1338. "Component_[14829817244473902192]": {
  1339. "$type": "EditorVisibilityComponent",
  1340. "Id": 14829817244473902192
  1341. },
  1342. "Component_[17084897380522648437]": {
  1343. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1344. "Id": 17084897380522648437,
  1345. "Parent Entity": "Entity_[15724143491616]",
  1346. "Transform Data": {
  1347. "Translate": [
  1348. 0.0,
  1349. 0.0008984692394733429,
  1350. -0.00044715404510498047
  1351. ],
  1352. "Rotate": [
  1353. -89.99857330322266,
  1354. 0.000002414865775790531,
  1355. 0.0000024148064312612405
  1356. ],
  1357. "UniformScale": 0.009999999776482582
  1358. }
  1359. },
  1360. "Component_[3024967457619286517]": {
  1361. "$type": "EditorPendingCompositionComponent",
  1362. "Id": 3024967457619286517
  1363. },
  1364. "Component_[3490434533685041416]": {
  1365. "$type": "EditorDisabledCompositionComponent",
  1366. "Id": 3490434533685041416
  1367. },
  1368. "Component_[4910027819996708545]": {
  1369. "$type": "EditorEntitySortComponent",
  1370. "Id": 4910027819996708545,
  1371. "Child Entity Order": [
  1372. "Entity_[15664013949472]",
  1373. "Entity_[15621064276512]",
  1374. "Entity_[15681193818656]",
  1375. "Entity_[15685488785952]",
  1376. "Entity_[15702668655136]"
  1377. ]
  1378. },
  1379. "Component_[6239878235468672433]": {
  1380. "$type": "EditorEntityIconComponent",
  1381. "Id": 6239878235468672433
  1382. },
  1383. "Component_[8431504464307158391]": {
  1384. "$type": "EditorInspectorComponent",
  1385. "Id": 8431504464307158391
  1386. }
  1387. }
  1388. },
  1389. "Entity_[15694078720544]": {
  1390. "Id": "Entity_[15694078720544]",
  1391. "Name": "visual",
  1392. "Components": {
  1393. "Component_[10518754877894589178]": {
  1394. "$type": "AZ::Render::EditorMeshComponent",
  1395. "Id": 10518754877894589178,
  1396. "Controller": {
  1397. "Configuration": {
  1398. "ModelAsset": {
  1399. "assetId": {
  1400. "guid": "{42648578-F5A3-52BC-89BF-0D5FC8608250}",
  1401. "subId": 276024436
  1402. },
  1403. "assetHint": "proteus2_lift.fbx.azmodel"
  1404. }
  1405. }
  1406. }
  1407. },
  1408. "Component_[12196752811740585121]": {
  1409. "$type": "EditorLockComponent",
  1410. "Id": 12196752811740585121
  1411. },
  1412. "Component_[12321370877761270337]": {
  1413. "$type": "EditorEntityIconComponent",
  1414. "Id": 12321370877761270337
  1415. },
  1416. "Component_[15322625316201896186]": {
  1417. "$type": "EditorMaterialComponent",
  1418. "Id": 15322625316201896186,
  1419. "Controller": {
  1420. "Configuration": {
  1421. "materials": [
  1422. {
  1423. "Key": {
  1424. "materialSlotStableId": 3008400144
  1425. },
  1426. "Value": {
  1427. "MaterialAsset": {
  1428. "assetId": {
  1429. "guid": "{38D3B77B-57B7-50FB-969D-0C2E7866E3F6}"
  1430. },
  1431. "assetHint": "materials/proteus_chassis_proteus.azmaterial"
  1432. }
  1433. }
  1434. }
  1435. ]
  1436. }
  1437. }
  1438. },
  1439. "Component_[16276976561263109339]": {
  1440. "$type": "EditorInspectorComponent",
  1441. "Id": 16276976561263109339
  1442. },
  1443. "Component_[17397631212959422307]": {
  1444. "$type": "EditorEntitySortComponent",
  1445. "Id": 17397631212959422307
  1446. },
  1447. "Component_[396873869305308531]": {
  1448. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1449. "Id": 396873869305308531,
  1450. "Parent Entity": "Entity_[15706963622432]",
  1451. "Transform Data": {
  1452. "Translate": [
  1453. 0.0717926025390625,
  1454. 0.0,
  1455. -0.12098360061645508
  1456. ],
  1457. "Rotate": [
  1458. 0.0,
  1459. 0.0,
  1460. 89.99994659423828
  1461. ]
  1462. }
  1463. },
  1464. "Component_[4880719393871817751]": {
  1465. "$type": "EditorOnlyEntityComponent",
  1466. "Id": 4880719393871817751
  1467. },
  1468. "Component_[8773562288585481292]": {
  1469. "$type": "EditorDisabledCompositionComponent",
  1470. "Id": 8773562288585481292
  1471. },
  1472. "Component_[9338831911001872669]": {
  1473. "$type": "EditorPendingCompositionComponent",
  1474. "Id": 9338831911001872669
  1475. },
  1476. "Component_[9634878627104751376]": {
  1477. "$type": "EditorVisibilityComponent",
  1478. "Id": 9634878627104751376
  1479. }
  1480. }
  1481. },
  1482. "Entity_[15698373687840]": {
  1483. "Id": "Entity_[15698373687840]",
  1484. "Name": "Light_front_green",
  1485. "Components": {
  1486. "Component_[10180472951405841434]": {
  1487. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1488. "Id": 10180472951405841434,
  1489. "Parent Entity": "Entity_[15724143491616]",
  1490. "Transform Data": {
  1491. "Translate": [
  1492. -0.0005446784198284149,
  1493. 0.0012799110263586044,
  1494. 0.0027456134557724
  1495. ],
  1496. "Rotate": [
  1497. -89.99852752685547,
  1498. 0.07765364646911621,
  1499. -0.020196275785565376
  1500. ],
  1501. "UniformScale": 0.009999999776482582
  1502. }
  1503. },
  1504. "Component_[11696808599658151424]": {
  1505. "$type": "EditorPendingCompositionComponent",
  1506. "Id": 11696808599658151424
  1507. },
  1508. "Component_[1355824869187360077]": {
  1509. "$type": "EditorVisibilityComponent",
  1510. "Id": 1355824869187360077
  1511. },
  1512. "Component_[13977085301034959665]": {
  1513. "$type": "EditorEntitySortComponent",
  1514. "Id": 13977085301034959665,
  1515. "Child Entity Order": [
  1516. "Entity_[15676898851360]",
  1517. "Entity_[15638244145696]"
  1518. ]
  1519. },
  1520. "Component_[496279857768584410]": {
  1521. "$type": "EditorLockComponent",
  1522. "Id": 496279857768584410
  1523. },
  1524. "Component_[5049000013814114435]": {
  1525. "$type": "EditorInspectorComponent",
  1526. "Id": 5049000013814114435
  1527. },
  1528. "Component_[7932159478169110881]": {
  1529. "$type": "EditorOnlyEntityComponent",
  1530. "Id": 7932159478169110881
  1531. },
  1532. "Component_[8212331494010757129]": {
  1533. "$type": "EditorDisabledCompositionComponent",
  1534. "Id": 8212331494010757129
  1535. },
  1536. "Component_[8834315307231171561]": {
  1537. "$type": "EditorEntityIconComponent",
  1538. "Id": 8834315307231171561
  1539. }
  1540. }
  1541. },
  1542. "Entity_[15702668655136]": {
  1543. "Id": "Entity_[15702668655136]",
  1544. "Name": "light_rear_L",
  1545. "Components": {
  1546. "Component_[11897596323041651801]": {
  1547. "$type": "EditorOnlyEntityComponent",
  1548. "Id": 11897596323041651801
  1549. },
  1550. "Component_[12541130223356241257]": {
  1551. "$type": "AZ::Render::EditorAreaLightComponent",
  1552. "Id": 12541130223356241257,
  1553. "Controller": {
  1554. "Configuration": {
  1555. "LightType": 4,
  1556. "Color": [
  1557. 0.5521476864814758,
  1558. 0.0,
  1559. 0.0
  1560. ],
  1561. "Intensity": 2.0,
  1562. "AttenuationRadius": 1.5322309732437134,
  1563. "Shadow Filter Method": 3
  1564. }
  1565. }
  1566. },
  1567. "Component_[12963031663456006887]": {
  1568. "$type": "EditorPendingCompositionComponent",
  1569. "Id": 12963031663456006887
  1570. },
  1571. "Component_[17933663734846614005]": {
  1572. "$type": "EditorEntitySortComponent",
  1573. "Id": 17933663734846614005
  1574. },
  1575. "Component_[2461895052930420965]": {
  1576. "$type": "EditorInspectorComponent",
  1577. "Id": 2461895052930420965
  1578. },
  1579. "Component_[2887060331598036013]": {
  1580. "$type": "EditorEntityIconComponent",
  1581. "Id": 2887060331598036013
  1582. },
  1583. "Component_[3200864964702098492]": {
  1584. "$type": "LmbrCentral::EditorQuadShapeComponent",
  1585. "Id": 3200864964702098492,
  1586. "Visible": false,
  1587. "ShapeColor": [
  1588. 0.5521476864814758,
  1589. 0.0,
  1590. 0.0,
  1591. 1.0
  1592. ],
  1593. "QuadShape": {
  1594. "Configuration": {
  1595. "Width": 0.05999999865889549,
  1596. "Height": 0.009999999776482582
  1597. }
  1598. }
  1599. },
  1600. "Component_[3413400077365270262]": {
  1601. "$type": "EditorDisabledCompositionComponent",
  1602. "Id": 3413400077365270262
  1603. },
  1604. "Component_[4620432025088325145]": {
  1605. "$type": "EditorLockComponent",
  1606. "Id": 4620432025088325145
  1607. },
  1608. "Component_[5708170041862383467]": {
  1609. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1610. "Id": 5708170041862383467,
  1611. "Parent Entity": "Entity_[15689783753248]",
  1612. "Transform Data": {
  1613. "Translate": [
  1614. 0.1598215103149414,
  1615. 0.3039684295654297,
  1616. -0.0579526424407959
  1617. ],
  1618. "Rotate": [
  1619. -151.94805908203125,
  1620. 8.824642181396484,
  1621. 25.232728958129883
  1622. ]
  1623. }
  1624. },
  1625. "Component_[9809482087175845189]": {
  1626. "$type": "EditorVisibilityComponent",
  1627. "Id": 9809482087175845189
  1628. }
  1629. }
  1630. },
  1631. "Entity_[15706963622432]": {
  1632. "Id": "Entity_[15706963622432]",
  1633. "Name": "Lift",
  1634. "Components": {
  1635. "Component_[10099653013469338703]": {
  1636. "$type": "EditorInspectorComponent",
  1637. "Id": 10099653013469338703
  1638. },
  1639. "Component_[15850267081208467041]": {
  1640. "$type": "EditorEntityIconComponent",
  1641. "Id": 15850267081208467041
  1642. },
  1643. "Component_[16727775319021629115]": {
  1644. "$type": "EditorOnlyEntityComponent",
  1645. "Id": 16727775319021629115
  1646. },
  1647. "Component_[3504755063289314608]": {
  1648. "$type": "EditorPendingCompositionComponent",
  1649. "Id": 3504755063289314608
  1650. },
  1651. "Component_[4029862250311118130]": {
  1652. "$type": "EditorEntitySortComponent",
  1653. "Id": 4029862250311118130,
  1654. "Child Entity Order": [
  1655. "Entity_[15694078720544]"
  1656. ]
  1657. },
  1658. "Component_[4582701930345204893]": {
  1659. "$type": "EditorVisibilityComponent",
  1660. "Id": 4582701930345204893
  1661. },
  1662. "Component_[4629998341000977493]": {
  1663. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1664. "Id": 4629998341000977493,
  1665. "Parent Entity": "Entity_[15659718982176]",
  1666. "Transform Data": {
  1667. "Translate": [
  1668. 0.1041412353515625,
  1669. 0.0,
  1670. 0.0531458854675293
  1671. ]
  1672. }
  1673. },
  1674. "Component_[7667036443034995771]": {
  1675. "$type": "EditorRigidBodyComponent",
  1676. "Id": 7667036443034995771,
  1677. "Configuration": {
  1678. "entityId": ""
  1679. }
  1680. },
  1681. "Component_[8410131596483981918]": {
  1682. "$type": "EditorLockComponent",
  1683. "Id": 8410131596483981918
  1684. },
  1685. "Component_[9379851989683144881]": {
  1686. "$type": "EditorDisabledCompositionComponent",
  1687. "Id": 9379851989683144881
  1688. },
  1689. "Component_[992626787896178449]": {
  1690. "$type": "EditorPrismaticJointComponent",
  1691. "Id": 992626787896178449,
  1692. "Configuration": {
  1693. "Local Rotation": [
  1694. 0.0,
  1695. -90.0,
  1696. 0.0
  1697. ],
  1698. "Parent Entity": "Entity_[15659718982176]",
  1699. "Child Entity": "Entity_[15706963622432]",
  1700. "Display Debug": "Never"
  1701. },
  1702. "Linear Limit": {
  1703. "Standard Limit Configuration": {
  1704. "Damping": 200000.0,
  1705. "Stiffness": 200.0
  1706. },
  1707. "Lower Limit": 0.0,
  1708. "Upper Limit": 0.20000000298023224
  1709. }
  1710. }
  1711. }
  1712. },
  1713. "Entity_[15711258589728]": {
  1714. "Id": "Entity_[15711258589728]",
  1715. "Name": "R_wheel_link_visual",
  1716. "Components": {
  1717. "Component_[10272901870725892912]": {
  1718. "$type": "EditorOnlyEntityComponent",
  1719. "Id": 10272901870725892912
  1720. },
  1721. "Component_[1176032316930335912]": {
  1722. "$type": "EditorMaterialComponent",
  1723. "Id": 1176032316930335912,
  1724. "Controller": {
  1725. "Configuration": {
  1726. "materials": [
  1727. {
  1728. "Key": {
  1729. "materialSlotStableId": 3008400144
  1730. },
  1731. "Value": {
  1732. "MaterialAsset": {
  1733. "assetId": {
  1734. "guid": "{38D3B77B-57B7-50FB-969D-0C2E7866E3F6}"
  1735. },
  1736. "assetHint": "materials/proteus_chassis_proteus.azmaterial"
  1737. }
  1738. }
  1739. }
  1740. ]
  1741. }
  1742. }
  1743. },
  1744. "Component_[13794769946178512073]": {
  1745. "$type": "EditorPendingCompositionComponent",
  1746. "Id": 13794769946178512073
  1747. },
  1748. "Component_[13883292984911515517]": {
  1749. "$type": "EditorVisibilityComponent",
  1750. "Id": 13883292984911515517
  1751. },
  1752. "Component_[14164648196447268373]": {
  1753. "$type": "AZ::Render::EditorMeshComponent",
  1754. "Id": 14164648196447268373,
  1755. "Controller": {
  1756. "Configuration": {
  1757. "ModelAsset": {
  1758. "assetId": {
  1759. "guid": "{F9B95287-0FA8-5624-92A1-217B33F08280}",
  1760. "subId": 277942675
  1761. },
  1762. "assetHint": "proteus_wheel.fbx.azmodel"
  1763. }
  1764. }
  1765. }
  1766. },
  1767. "Component_[14351191412296632155]": {
  1768. "$type": "EditorEntitySortComponent",
  1769. "Id": 14351191412296632155
  1770. },
  1771. "Component_[17474847153749349956]": {
  1772. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1773. "Id": 17474847153749349956,
  1774. "Parent Entity": "Entity_[15629654211104]",
  1775. "Transform Data": {
  1776. "Rotate": [
  1777. 90.0,
  1778. 0.0,
  1779. 180.0
  1780. ]
  1781. }
  1782. },
  1783. "Component_[3349811858347662157]": {
  1784. "$type": "EditorDisabledCompositionComponent",
  1785. "Id": 3349811858347662157
  1786. },
  1787. "Component_[3582796418901282885]": {
  1788. "$type": "EditorLockComponent",
  1789. "Id": 3582796418901282885
  1790. },
  1791. "Component_[3960255460618473214]": {
  1792. "$type": "EditorEntityIconComponent",
  1793. "Id": 3960255460618473214
  1794. },
  1795. "Component_[6740127369575728823]": {
  1796. "$type": "EditorInspectorComponent",
  1797. "Id": 6740127369575728823
  1798. }
  1799. }
  1800. },
  1801. "Entity_[15715553557024]": {
  1802. "Id": "Entity_[15715553557024]",
  1803. "Name": "L_wheel_link_visual",
  1804. "Components": {
  1805. "Component_[10346297318647313753]": {
  1806. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1807. "Id": 10346297318647313753,
  1808. "Parent Entity": "Entity_[15672603884064]",
  1809. "Transform Data": {
  1810. "Rotate": [
  1811. -90.0,
  1812. 0.0,
  1813. 180.0
  1814. ]
  1815. }
  1816. },
  1817. "Component_[11147009224931654549]": {
  1818. "$type": "EditorOnlyEntityComponent",
  1819. "Id": 11147009224931654549
  1820. },
  1821. "Component_[11341656800778699609]": {
  1822. "$type": "EditorInspectorComponent",
  1823. "Id": 11341656800778699609
  1824. },
  1825. "Component_[13852738746344296225]": {
  1826. "$type": "EditorPendingCompositionComponent",
  1827. "Id": 13852738746344296225
  1828. },
  1829. "Component_[1385959098878799774]": {
  1830. "$type": "EditorMaterialComponent",
  1831. "Id": 1385959098878799774,
  1832. "Controller": {
  1833. "Configuration": {
  1834. "materials": [
  1835. {
  1836. "Key": {
  1837. "materialSlotStableId": 3008400144
  1838. },
  1839. "Value": {
  1840. "MaterialAsset": {
  1841. "assetId": {
  1842. "guid": "{38D3B77B-57B7-50FB-969D-0C2E7866E3F6}"
  1843. },
  1844. "assetHint": "materials/proteus_chassis_proteus.azmaterial"
  1845. }
  1846. }
  1847. }
  1848. ]
  1849. }
  1850. }
  1851. },
  1852. "Component_[1445540101138633620]": {
  1853. "$type": "EditorVisibilityComponent",
  1854. "Id": 1445540101138633620
  1855. },
  1856. "Component_[16014937483115839601]": {
  1857. "$type": "EditorLockComponent",
  1858. "Id": 16014937483115839601
  1859. },
  1860. "Component_[17444657573452485753]": {
  1861. "$type": "EditorDisabledCompositionComponent",
  1862. "Id": 17444657573452485753
  1863. },
  1864. "Component_[2323431644378689384]": {
  1865. "$type": "EditorEntityIconComponent",
  1866. "Id": 2323431644378689384
  1867. },
  1868. "Component_[4858940529052631944]": {
  1869. "$type": "AZ::Render::EditorMeshComponent",
  1870. "Id": 4858940529052631944,
  1871. "Controller": {
  1872. "Configuration": {
  1873. "ModelAsset": {
  1874. "assetId": {
  1875. "guid": "{F9B95287-0FA8-5624-92A1-217B33F08280}",
  1876. "subId": 277942675
  1877. },
  1878. "assetHint": "proteus_wheel.fbx.azmodel"
  1879. }
  1880. }
  1881. }
  1882. },
  1883. "Component_[743160702698200184]": {
  1884. "$type": "EditorEntitySortComponent",
  1885. "Id": 743160702698200184
  1886. }
  1887. }
  1888. },
  1889. "Entity_[15719848524320]": {
  1890. "Id": "Entity_[15719848524320]",
  1891. "Name": "Chassis_visual",
  1892. "Components": {
  1893. "Component_[10777190793595124341]": {
  1894. "$type": "EditorDisabledCompositionComponent",
  1895. "Id": 10777190793595124341
  1896. },
  1897. "Component_[10888464986823248501]": {
  1898. "$type": "EditorInspectorComponent",
  1899. "Id": 10888464986823248501
  1900. },
  1901. "Component_[12981974851308347880]": {
  1902. "$type": "EditorMaterialComponent",
  1903. "Id": 12981974851308347880,
  1904. "Controller": {
  1905. "Configuration": {
  1906. "materials": [
  1907. {
  1908. "Key": {
  1909. "materialSlotStableId": 810733620
  1910. },
  1911. "Value": {
  1912. "MaterialAsset": {
  1913. "assetId": {
  1914. "guid": "{7D65DED4-D571-5922-820B-A3D82844DA47}"
  1915. },
  1916. "assetHint": "materials/proteus_chassis_side_lights.azmaterial"
  1917. }
  1918. }
  1919. },
  1920. {
  1921. "Key": {
  1922. "materialSlotStableId": 1319371964
  1923. },
  1924. "Value": {
  1925. "MaterialAsset": {
  1926. "assetId": {
  1927. "guid": "{52CB9217-AEEC-5324-BE71-C82DB5385055}"
  1928. },
  1929. "assetHint": "materials/proteus_chassis_front_light.azmaterial"
  1930. }
  1931. }
  1932. },
  1933. {
  1934. "Key": {
  1935. "materialSlotStableId": 2841759961
  1936. },
  1937. "Value": {
  1938. "MaterialAsset": {
  1939. "assetId": {
  1940. "guid": "{83A6BB40-44D9-56A7-9AC0-1EC2756D8A17}"
  1941. },
  1942. "assetHint": "materials/proteus_chassis_front_double_lights.azmaterial"
  1943. }
  1944. }
  1945. },
  1946. {
  1947. "Key": {
  1948. "materialSlotStableId": 3008400144
  1949. },
  1950. "Value": {
  1951. "MaterialAsset": {
  1952. "assetId": {
  1953. "guid": "{38D3B77B-57B7-50FB-969D-0C2E7866E3F6}"
  1954. },
  1955. "assetHint": "materials/proteus_chassis_proteus.azmaterial"
  1956. }
  1957. }
  1958. },
  1959. {
  1960. "Key": {
  1961. "materialSlotStableId": 3083536379
  1962. },
  1963. "Value": {
  1964. "MaterialAsset": {
  1965. "assetId": {
  1966. "guid": "{A1E43B98-68AA-529B-8185-F4D056CD19CD}"
  1967. },
  1968. "assetHint": "materials/proteus_chassis_indicator.azmaterial"
  1969. }
  1970. }
  1971. },
  1972. {
  1973. "Key": {
  1974. "materialSlotStableId": 4231336350
  1975. },
  1976. "Value": {
  1977. "MaterialAsset": {
  1978. "assetId": {
  1979. "guid": "{BADA7A37-6E25-5421-8F1B-FD9FD703DD96}"
  1980. },
  1981. "assetHint": "materials/proteus_chassis_rear_lights.azmaterial"
  1982. }
  1983. }
  1984. }
  1985. ]
  1986. }
  1987. }
  1988. },
  1989. "Component_[14214975398894626691]": {
  1990. "$type": "EditorEntityIconComponent",
  1991. "Id": 14214975398894626691
  1992. },
  1993. "Component_[1551818377749827434]": {
  1994. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1995. "Id": 1551818377749827434,
  1996. "Parent Entity": "Entity_[15659718982176]",
  1997. "Transform Data": {
  1998. "Translate": [
  1999. 0.17786407470703125,
  2000. 0.0,
  2001. -0.06693911552429199
  2002. ],
  2003. "Rotate": [
  2004. 0.0,
  2005. 0.0,
  2006. 89.99994659423828
  2007. ]
  2008. }
  2009. },
  2010. "Component_[3442585797497719618]": {
  2011. "$type": "EditorOnlyEntityComponent",
  2012. "Id": 3442585797497719618
  2013. },
  2014. "Component_[4405922139428563252]": {
  2015. "$type": "EditorPendingCompositionComponent",
  2016. "Id": 4405922139428563252
  2017. },
  2018. "Component_[4661506809947208287]": {
  2019. "$type": "EditorEntitySortComponent",
  2020. "Id": 4661506809947208287,
  2021. "Child Entity Order": [
  2022. "Entity_[15724143491616]"
  2023. ]
  2024. },
  2025. "Component_[4900351710492422465]": {
  2026. "$type": "EditorLockComponent",
  2027. "Id": 4900351710492422465
  2028. },
  2029. "Component_[5049768218299457628]": {
  2030. "$type": "AZ::Render::EditorMeshComponent",
  2031. "Id": 5049768218299457628,
  2032. "Controller": {
  2033. "Configuration": {
  2034. "ModelAsset": {
  2035. "assetId": {
  2036. "guid": "{60318C54-1D60-53EC-85AA-2CADBFD83ED9}",
  2037. "subId": 278773777
  2038. },
  2039. "assetHint": "proteus2_chassis.fbx.azmodel"
  2040. }
  2041. }
  2042. }
  2043. },
  2044. "Component_[8657430082099422755]": {
  2045. "$type": "EditorVisibilityComponent",
  2046. "Id": 8657430082099422755
  2047. }
  2048. }
  2049. },
  2050. "Entity_[15724143491616]": {
  2051. "Id": "Entity_[15724143491616]",
  2052. "Name": "Chassis_inside_lights",
  2053. "Components": {
  2054. "Component_[13161866500099870035]": {
  2055. "$type": "EditorDisabledCompositionComponent",
  2056. "Id": 13161866500099870035
  2057. },
  2058. "Component_[14431861058031353286]": {
  2059. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2060. "Id": 14431861058031353286,
  2061. "Parent Entity": "Entity_[15719848524320]",
  2062. "Transform Data": {
  2063. "Translate": [
  2064. -0.000578761100769043,
  2065. -0.000545501708984375,
  2066. -0.0010361671447753906
  2067. ],
  2068. "Rotate": [
  2069. 89.99852752685547,
  2070. 0.020194290205836296,
  2071. 0.0776541605591774
  2072. ],
  2073. "UniformScale": 100.0
  2074. }
  2075. },
  2076. "Component_[15695646692627562149]": {
  2077. "$type": "EditorEntityIconComponent",
  2078. "Id": 15695646692627562149
  2079. },
  2080. "Component_[16004421179350716636]": {
  2081. "$type": "EditorLockComponent",
  2082. "Id": 16004421179350716636
  2083. },
  2084. "Component_[18039169602061820460]": {
  2085. "$type": "EditorEntitySortComponent",
  2086. "Id": 18039169602061820460,
  2087. "Child Entity Order": [
  2088. "Entity_[15698373687840]",
  2089. "Entity_[15689783753248]"
  2090. ]
  2091. },
  2092. "Component_[2028603835080579927]": {
  2093. "$type": "EditorInspectorComponent",
  2094. "Id": 2028603835080579927
  2095. },
  2096. "Component_[5266504162080927135]": {
  2097. "$type": "EditorOnlyEntityComponent",
  2098. "Id": 5266504162080927135
  2099. },
  2100. "Component_[5734509186756145397]": {
  2101. "$type": "EditorVisibilityComponent",
  2102. "Id": 5734509186756145397
  2103. },
  2104. "Component_[5881629558827321802]": {
  2105. "$type": "EditorPendingCompositionComponent",
  2106. "Id": 5881629558827321802
  2107. }
  2108. }
  2109. },
  2110. "Entity_[15728438458912]": {
  2111. "Id": "Entity_[15728438458912]",
  2112. "Name": "Lookat_target",
  2113. "Components": {
  2114. "Component_[10295412112257515152]": {
  2115. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2116. "Id": 10295412112257515152,
  2117. "Parent Entity": "Entity_[15659718982176]",
  2118. "Transform Data": {
  2119. "Translate": [
  2120. 0.4821205139160156,
  2121. 0.0,
  2122. 0.23858165740966797
  2123. ]
  2124. }
  2125. },
  2126. "Component_[14885121080013803585]": {
  2127. "$type": "EditorEntityIconComponent",
  2128. "Id": 14885121080013803585
  2129. },
  2130. "Component_[16557372313871690938]": {
  2131. "$type": "EditorOnlyEntityComponent",
  2132. "Id": 16557372313871690938
  2133. },
  2134. "Component_[16578118615520160259]": {
  2135. "$type": "EditorLockComponent",
  2136. "Id": 16578118615520160259
  2137. },
  2138. "Component_[2362272324920485218]": {
  2139. "$type": "EditorVisibilityComponent",
  2140. "Id": 2362272324920485218
  2141. },
  2142. "Component_[4829533816553235415]": {
  2143. "$type": "EditorDisabledCompositionComponent",
  2144. "Id": 4829533816553235415
  2145. },
  2146. "Component_[6521895344190784381]": {
  2147. "$type": "EditorEntitySortComponent",
  2148. "Id": 6521895344190784381
  2149. },
  2150. "Component_[6928488626418877300]": {
  2151. "$type": "EditorInspectorComponent",
  2152. "Id": 6928488626418877300
  2153. },
  2154. "Component_[9399600171884891001]": {
  2155. "$type": "EditorPendingCompositionComponent",
  2156. "Id": 9399600171884891001
  2157. }
  2158. }
  2159. },
  2160. "Entity_[15737028393504]": {
  2161. "Id": "Entity_[15737028393504]",
  2162. "Name": "Proteus",
  2163. "Components": {
  2164. "Component_[10495384342914821446]": {
  2165. "$type": "EditorPendingCompositionComponent",
  2166. "Id": 10495384342914821446
  2167. },
  2168. "Component_[10697262161614953618]": {
  2169. "$type": "EditorLockComponent",
  2170. "Id": 10697262161614953618
  2171. },
  2172. "Component_[17775933542525198314]": {
  2173. "$type": "EditorEntityIconComponent",
  2174. "Id": 17775933542525198314
  2175. },
  2176. "Component_[18168987077772989061]": {
  2177. "$type": "EditorEntitySortComponent",
  2178. "Id": 18168987077772989061,
  2179. "Child Entity Order": [
  2180. "Entity_[15659718982176]"
  2181. ]
  2182. },
  2183. "Component_[2406744339456067352]": {
  2184. "$type": "EditorInspectorComponent",
  2185. "Id": 2406744339456067352,
  2186. "ComponentOrderEntryArray": [
  2187. {
  2188. "ComponentId": 5766326171374217747
  2189. }
  2190. ]
  2191. },
  2192. "Component_[4169781774989285934]": {
  2193. "$type": "EditorOnlyEntityComponent",
  2194. "Id": 4169781774989285934
  2195. },
  2196. "Component_[5219525341405869032]": {
  2197. "$type": "EditorDisabledCompositionComponent",
  2198. "Id": 5219525341405869032
  2199. },
  2200. "Component_[5766326171374217747]": {
  2201. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2202. "Id": 5766326171374217747,
  2203. "Parent Entity": "ContainerEntity"
  2204. },
  2205. "Component_[7371512136114467635]": {
  2206. "$type": "EditorVisibilityComponent",
  2207. "Id": 7371512136114467635
  2208. }
  2209. }
  2210. },
  2211. "Entity_[15741323360800]": {
  2212. "Id": "Entity_[15741323360800]",
  2213. "Name": "Lidar",
  2214. "Components": {
  2215. "Component_[10958950841723725778]": {
  2216. "$type": "EditorInspectorComponent",
  2217. "Id": 10958950841723725778
  2218. },
  2219. "Component_[11828293470447184337]": {
  2220. "$type": "EditorEntityIconComponent",
  2221. "Id": 11828293470447184337
  2222. },
  2223. "Component_[12371010079732593422]": {
  2224. "$type": "EditorLockComponent",
  2225. "Id": 12371010079732593422
  2226. },
  2227. "Component_[15707946702459327170]": {
  2228. "$type": "GenericComponentWrapper",
  2229. "Id": 15707946702459327170,
  2230. "m_template": {
  2231. "$type": "ROS2LidarSensorComponent",
  2232. "SensorConfiguration": {
  2233. "Publishers": {
  2234. "sensor_msgs::msg::PointCloud2": {
  2235. "Type": "sensor_msgs::msg::PointCloud2",
  2236. "Topic": "pc"
  2237. }
  2238. }
  2239. }
  2240. }
  2241. },
  2242. "Component_[1828080485137528399]": {
  2243. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2244. "Id": 1828080485137528399,
  2245. "Parent Entity": "Entity_[15659718982176]",
  2246. "Transform Data": {
  2247. "Translate": [
  2248. 0.47283172607421875,
  2249. 0.0,
  2250. 0.15957283973693848
  2251. ]
  2252. }
  2253. },
  2254. "Component_[2877360700288979240]": {
  2255. "$type": "EditorOnlyEntityComponent",
  2256. "Id": 2877360700288979240
  2257. },
  2258. "Component_[3344702525066984561]": {
  2259. "$type": "ROS2FrameEditorComponent",
  2260. "ROS2FrameConfiguration": {
  2261. "Frame Name": "lidar"
  2262. }
  2263. },
  2264. "Component_[415289785781429255]": {
  2265. "$type": "EditorEntitySortComponent",
  2266. "Id": 415289785781429255
  2267. },
  2268. "Component_[5411162634240021964]": {
  2269. "$type": "EditorPendingCompositionComponent",
  2270. "Id": 5411162634240021964
  2271. },
  2272. "Component_[717875931851190703]": {
  2273. "$type": "EditorVisibilityComponent",
  2274. "Id": 717875931851190703
  2275. },
  2276. "Component_[998936773982660474]": {
  2277. "$type": "EditorDisabledCompositionComponent",
  2278. "Id": 998936773982660474
  2279. }
  2280. }
  2281. }
  2282. }
  2283. }