RobotVacuum.prefab 228 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028
  1. {
  2. "ContainerEntity": {
  3. "Id": "ContainerEntity",
  4. "Name": "RobotVacuum",
  5. "Components": {
  6. "Component_[10968750635921263389]": {
  7. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  8. "Id": 10968750635921263389,
  9. "Parent Entity": ""
  10. },
  11. "Component_[11920575689657805645]": {
  12. "$type": "EditorDisabledCompositionComponent",
  13. "Id": 11920575689657805645
  14. },
  15. "Component_[13542798806271282092]": {
  16. "$type": "EditorVisibilityComponent",
  17. "Id": 13542798806271282092
  18. },
  19. "Component_[3553722274441367439]": {
  20. "$type": "EditorEntityIconComponent",
  21. "Id": 3553722274441367439
  22. },
  23. "Component_[45046133969296221]": {
  24. "$type": "EditorOnlyEntityComponent",
  25. "Id": 45046133969296221
  26. },
  27. "Component_[6131669295631726586]": {
  28. "$type": "EditorPrefabComponent",
  29. "Id": 6131669295631726586
  30. },
  31. "Component_[6817966866890090293]": {
  32. "$type": "EditorLockComponent",
  33. "Id": 6817966866890090293
  34. },
  35. "Component_[761745188714332364]": {
  36. "$type": "EditorEntitySortComponent",
  37. "Id": 761745188714332364,
  38. "Child Entity Order": [
  39. "Entity_[30055431164411]",
  40. ""
  41. ]
  42. },
  43. "Component_[8724271900824416155]": {
  44. "$type": "EditorInspectorComponent",
  45. "Id": 8724271900824416155
  46. },
  47. "Component_[9366716203479672115]": {
  48. "$type": "EditorPendingCompositionComponent",
  49. "Id": 9366716203479672115
  50. }
  51. }
  52. },
  53. "Entities": {
  54. "Entity_[15934909250224]": {
  55. "Id": "Entity_[15934909250224]",
  56. "Name": "FollowCamera",
  57. "Components": {
  58. "Component_[16797873418433915706]": {
  59. "$type": "EditorVisibilityComponent",
  60. "Id": 16797873418433915706
  61. },
  62. "Component_[17541973633878539421]": {
  63. "$type": "EditorOnlyEntityComponent",
  64. "Id": 17541973633878539421
  65. },
  66. "Component_[2741853701054493828]": {
  67. "$type": "EditorPendingCompositionComponent",
  68. "Id": 2741853701054493828
  69. },
  70. "Component_[3599238926902838088]": {
  71. "$type": "EditorEntityIconComponent",
  72. "Id": 3599238926902838088
  73. },
  74. "Component_[3816953534651368458]": {
  75. "$type": "EditorLockComponent",
  76. "Id": 3816953534651368458
  77. },
  78. "Component_[4358438849696264694]": {
  79. "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
  80. "Id": 4358438849696264694
  81. },
  82. "Component_[5247198885622374930]": {
  83. "$type": "EditorDisabledCompositionComponent",
  84. "Id": 5247198885622374930
  85. },
  86. "Component_[6432147303510452185]": {
  87. "$type": "EditorInspectorComponent",
  88. "Id": 6432147303510452185
  89. },
  90. "Component_[6482509919667147636]": {
  91. "$type": "EditorEntitySortComponent",
  92. "Id": 6482509919667147636
  93. },
  94. "Component_[935550930618451361]": {
  95. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  96. "Id": 935550930618451361,
  97. "Parent Entity": "Entity_[30055431164411]",
  98. "Transform Data": {
  99. "Translate": [
  100. -1.4058618545532227,
  101. 0.10479402542114258,
  102. 1.2001819610595703
  103. ],
  104. "Rotate": [
  105. 2.812905788421631,
  106. 29.03843116760254,
  107. -95.78008270263672
  108. ]
  109. }
  110. }
  111. }
  112. },
  113. "Entity_[29844977766907]": {
  114. "Id": "Entity_[29844977766907]",
  115. "Name": "robot_vacuum_display",
  116. "Components": {
  117. "Component_[12985102679617967668]": {
  118. "$type": "EditorEntitySortComponent",
  119. "Id": 12985102679617967668
  120. },
  121. "Component_[13842411102741348727]": {
  122. "$type": "EditorDisabledCompositionComponent",
  123. "Id": 13842411102741348727
  124. },
  125. "Component_[14644196525901684926]": {
  126. "$type": "EditorMaterialComponent",
  127. "Id": 14644196525901684926,
  128. "Controller": {
  129. "Configuration": {
  130. "materials": [
  131. {
  132. "Key": {
  133. "materialSlotStableId": 3328602885
  134. },
  135. "Value": {
  136. "MaterialAsset": {
  137. "assetId": {
  138. "guid": "{B40251EE-D393-5721-BD0D-4B7E974FED9E}"
  139. },
  140. "assetHint": "assets/robovac/assets/robotvacuum_display.azmaterial"
  141. },
  142. "PropertyOverrides": {
  143. "baseColor.textureBlendMode": {
  144. "$type": "unsigned int",
  145. "Value": 3
  146. },
  147. "baseColor.textureMap": {
  148. "$type": "AssetId",
  149. "Value": {
  150. "guid": "{C86377E6-04B6-54CF-9909-B9392E646FA9}",
  151. "subId": 1000
  152. }
  153. },
  154. "baseColor.useTexture": {
  155. "$type": "bool",
  156. "Value": true
  157. }
  158. }
  159. }
  160. }
  161. ]
  162. }
  163. }
  164. },
  165. "Component_[14662789210804931598]": {
  166. "$type": "EditorEntityIconComponent",
  167. "Id": 14662789210804931598
  168. },
  169. "Component_[16257108268870135419]": {
  170. "$type": "AZ::Render::EditorMeshComponent",
  171. "Id": 16257108268870135419,
  172. "Controller": {
  173. "Configuration": {
  174. "ModelAsset": {
  175. "assetId": {
  176. "guid": "{E8A04E15-DBF1-5627-AAAC-866820CB04A9}",
  177. "subId": 275937803
  178. },
  179. "assetHint": "assets/robovac/assets/robot_vacuum_display.azmodel"
  180. }
  181. }
  182. }
  183. },
  184. "Component_[5569798894058426913]": {
  185. "$type": "EditorOnlyEntityComponent",
  186. "Id": 5569798894058426913
  187. },
  188. "Component_[6666158346010074145]": {
  189. "$type": "EditorPendingCompositionComponent",
  190. "Id": 6666158346010074145
  191. },
  192. "Component_[7248756551800098299]": {
  193. "$type": "EditorLockComponent",
  194. "Id": 7248756551800098299
  195. },
  196. "Component_[8797991750568259235]": {
  197. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  198. "Id": 8797991750568259235,
  199. "Parent Entity": "Entity_[6506158658343]"
  200. },
  201. "Component_[9127282801278350722]": {
  202. "$type": "EditorInspectorComponent",
  203. "Id": 9127282801278350722
  204. },
  205. "Component_[9237683100440409518]": {
  206. "$type": "EditorVisibilityComponent",
  207. "Id": 9237683100440409518
  208. }
  209. }
  210. },
  211. "Entity_[29849272734203]": {
  212. "Id": "Entity_[29849272734203]",
  213. "Name": "robot_vacuum_suspensionbracketright",
  214. "Components": {
  215. "Component_[10298441692952143132]": {
  216. "$type": "EditorDisabledCompositionComponent",
  217. "Id": 10298441692952143132
  218. },
  219. "Component_[10723801744550018465]": {
  220. "$type": "EditorPendingCompositionComponent",
  221. "Id": 10723801744550018465
  222. },
  223. "Component_[10949980557844373573]": {
  224. "$type": "EditorInspectorComponent",
  225. "Id": 10949980557844373573
  226. },
  227. "Component_[12316448049210817715]": {
  228. "$type": "EditorMaterialComponent",
  229. "Id": 12316448049210817715,
  230. "Controller": {
  231. "Configuration": {
  232. "materials": [
  233. {
  234. "Key": {
  235. "materialSlotStableId": 642792236
  236. },
  237. "Value": {
  238. "MaterialAsset": {
  239. "assetId": {
  240. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  241. },
  242. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  243. }
  244. }
  245. }
  246. ]
  247. }
  248. }
  249. },
  250. "Component_[16356173703235151267]": {
  251. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  252. "Id": 16356173703235151267,
  253. "Parent Entity": "Entity_[6506158658343]"
  254. },
  255. "Component_[17905695045664625886]": {
  256. "$type": "EditorEntitySortComponent",
  257. "Id": 17905695045664625886
  258. },
  259. "Component_[2658632129933647119]": {
  260. "$type": "EditorEntityIconComponent",
  261. "Id": 2658632129933647119
  262. },
  263. "Component_[3209016605494797976]": {
  264. "$type": "EditorLockComponent",
  265. "Id": 3209016605494797976
  266. },
  267. "Component_[4490309095897116918]": {
  268. "$type": "AZ::Render::EditorMeshComponent",
  269. "Id": 4490309095897116918,
  270. "Controller": {
  271. "Configuration": {
  272. "ModelAsset": {
  273. "assetId": {
  274. "guid": "{FC8FF4AA-7522-5CE2-9EC9-DF772B4DE574}",
  275. "subId": 272040854
  276. },
  277. "assetHint": "assets/robovac/assets/robot_vacuum_suspensionbracketright.azmodel"
  278. }
  279. }
  280. }
  281. },
  282. "Component_[6851231101142110419]": {
  283. "$type": "EditorVisibilityComponent",
  284. "Id": 6851231101142110419
  285. },
  286. "Component_[7645880101176993360]": {
  287. "$type": "EditorOnlyEntityComponent",
  288. "Id": 7645880101176993360
  289. }
  290. }
  291. },
  292. "Entity_[29853567701499]": {
  293. "Id": "Entity_[29853567701499]",
  294. "Name": "robot_vacuum_pariscopetube1",
  295. "Components": {
  296. "Component_[1002136966040176776]": {
  297. "$type": "EditorLockComponent",
  298. "Id": 1002136966040176776
  299. },
  300. "Component_[10128585282897083339]": {
  301. "$type": "AZ::Render::EditorMeshComponent",
  302. "Id": 10128585282897083339,
  303. "Controller": {
  304. "Configuration": {
  305. "ModelAsset": {
  306. "assetId": {
  307. "guid": "{410C68DE-BBC0-5593-A494-AE6B2ECA7F9C}",
  308. "subId": 275150240
  309. },
  310. "assetHint": "assets/robovac/assets/robot_vacuum_pariscopetube1.azmodel"
  311. }
  312. }
  313. }
  314. },
  315. "Component_[10800271596998239108]": {
  316. "$type": "EditorVisibilityComponent",
  317. "Id": 10800271596998239108
  318. },
  319. "Component_[11818208575759954307]": {
  320. "$type": "EditorOnlyEntityComponent",
  321. "Id": 11818208575759954307
  322. },
  323. "Component_[12820935042511127306]": {
  324. "$type": "EditorInspectorComponent",
  325. "Id": 12820935042511127306
  326. },
  327. "Component_[13566021088355530138]": {
  328. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  329. "Id": 13566021088355530138,
  330. "Parent Entity": "Entity_[6506158658343]"
  331. },
  332. "Component_[15311464831601862343]": {
  333. "$type": "EditorDisabledCompositionComponent",
  334. "Id": 15311464831601862343
  335. },
  336. "Component_[15455988475518883085]": {
  337. "$type": "EditorEntitySortComponent",
  338. "Id": 15455988475518883085
  339. },
  340. "Component_[2858097557887295587]": {
  341. "$type": "EditorMaterialComponent",
  342. "Id": 2858097557887295587,
  343. "Controller": {
  344. "Configuration": {
  345. "materials": [
  346. {
  347. "Key": {
  348. "materialSlotStableId": 642792236
  349. },
  350. "Value": {
  351. "MaterialAsset": {
  352. "assetId": {
  353. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  354. },
  355. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  356. }
  357. }
  358. }
  359. ]
  360. }
  361. }
  362. },
  363. "Component_[4883359567806575815]": {
  364. "$type": "EditorEntityIconComponent",
  365. "Id": 4883359567806575815
  366. },
  367. "Component_[6350799983451887617]": {
  368. "$type": "EditorPendingCompositionComponent",
  369. "Id": 6350799983451887617
  370. }
  371. }
  372. },
  373. "Entity_[29857862668795]": {
  374. "Id": "Entity_[29857862668795]",
  375. "Name": "robot_vacuum_pariscope",
  376. "Components": {
  377. "Component_[12715334844369802531]": {
  378. "$type": "EditorPendingCompositionComponent",
  379. "Id": 12715334844369802531
  380. },
  381. "Component_[16497743669364808333]": {
  382. "$type": "EditorVisibilityComponent",
  383. "Id": 16497743669364808333
  384. },
  385. "Component_[3395440951971074979]": {
  386. "$type": "EditorEntityIconComponent",
  387. "Id": 3395440951971074979
  388. },
  389. "Component_[4526271521347260222]": {
  390. "$type": "EditorDisabledCompositionComponent",
  391. "Id": 4526271521347260222
  392. },
  393. "Component_[575749947944104586]": {
  394. "$type": "AZ::Render::EditorMeshComponent",
  395. "Id": 575749947944104586,
  396. "Controller": {
  397. "Configuration": {
  398. "ModelAsset": {
  399. "assetId": {
  400. "guid": "{56843DF7-DC70-5F7F-9747-DDC149EBFD43}",
  401. "subId": 275770736
  402. },
  403. "assetHint": "assets/robovac/assets/robot_vacuum_pariscope.azmodel"
  404. }
  405. }
  406. }
  407. },
  408. "Component_[7075169527212756160]": {
  409. "$type": "EditorEntitySortComponent",
  410. "Id": 7075169527212756160
  411. },
  412. "Component_[7097362263958718526]": {
  413. "$type": "EditorMaterialComponent",
  414. "Id": 7097362263958718526,
  415. "Controller": {
  416. "Configuration": {
  417. "materials": [
  418. {
  419. "Key": {
  420. "materialSlotStableId": 642792236
  421. },
  422. "Value": {
  423. "MaterialAsset": {
  424. "assetId": {
  425. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  426. },
  427. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  428. }
  429. }
  430. }
  431. ]
  432. }
  433. }
  434. },
  435. "Component_[8608222016900599759]": {
  436. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  437. "Id": 8608222016900599759,
  438. "Parent Entity": "Entity_[6506158658343]"
  439. },
  440. "Component_[919166424632691535]": {
  441. "$type": "EditorInspectorComponent",
  442. "Id": 919166424632691535
  443. },
  444. "Component_[924672989739984043]": {
  445. "$type": "EditorOnlyEntityComponent",
  446. "Id": 924672989739984043
  447. },
  448. "Component_[942580204921412069]": {
  449. "$type": "EditorLockComponent",
  450. "Id": 942580204921412069
  451. }
  452. }
  453. },
  454. "Entity_[29862157636091]": {
  455. "Id": "Entity_[29862157636091]",
  456. "Name": "robot_vacuum_bottombase",
  457. "Components": {
  458. "Component_[10473678182139113293]": {
  459. "$type": "EditorVisibilityComponent",
  460. "Id": 10473678182139113293
  461. },
  462. "Component_[11711118031855619896]": {
  463. "$type": "EditorInspectorComponent",
  464. "Id": 11711118031855619896
  465. },
  466. "Component_[12377244213778742025]": {
  467. "$type": "EditorPendingCompositionComponent",
  468. "Id": 12377244213778742025
  469. },
  470. "Component_[12600399872005644428]": {
  471. "$type": "EditorOnlyEntityComponent",
  472. "Id": 12600399872005644428
  473. },
  474. "Component_[14239430947160819486]": {
  475. "$type": "EditorEntitySortComponent",
  476. "Id": 14239430947160819486
  477. },
  478. "Component_[16250576811704652257]": {
  479. "$type": "EditorDisabledCompositionComponent",
  480. "Id": 16250576811704652257
  481. },
  482. "Component_[5513140803037900469]": {
  483. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  484. "Id": 5513140803037900469,
  485. "Parent Entity": "Entity_[6506158658343]",
  486. "Transform Data": {
  487. "Translate": [
  488. 0.0,
  489. 0.0,
  490. 2.9802322387695313e-8
  491. ]
  492. }
  493. },
  494. "Component_[6166861922786349090]": {
  495. "$type": "EditorMaterialComponent",
  496. "Id": 6166861922786349090,
  497. "Controller": {
  498. "Configuration": {
  499. "materials": [
  500. {
  501. "Key": {
  502. "materialSlotStableId": 467460050
  503. },
  504. "Value": {
  505. "MaterialAsset": {
  506. "assetId": {
  507. "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
  508. },
  509. "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
  510. }
  511. }
  512. },
  513. {
  514. "Key": {
  515. "materialSlotStableId": 840771816
  516. },
  517. "Value": {
  518. "MaterialAsset": {
  519. "assetId": {
  520. "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
  521. },
  522. "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
  523. }
  524. }
  525. }
  526. ]
  527. }
  528. }
  529. },
  530. "Component_[6266003952878640001]": {
  531. "$type": "AZ::Render::EditorMeshComponent",
  532. "Id": 6266003952878640001,
  533. "Controller": {
  534. "Configuration": {
  535. "ModelAsset": {
  536. "assetId": {
  537. "guid": "{6C355820-2D59-577D-A9B2-ED406064741F}",
  538. "subId": 283296393
  539. },
  540. "assetHint": "assets/robovac/assets/robot_vacuum_bottombase.azmodel"
  541. }
  542. }
  543. }
  544. },
  545. "Component_[696281406360914553]": {
  546. "$type": "EditorLockComponent",
  547. "Id": 696281406360914553
  548. },
  549. "Component_[9749413441073393266]": {
  550. "$type": "EditorEntityIconComponent",
  551. "Id": 9749413441073393266
  552. }
  553. }
  554. },
  555. "Entity_[29866452603387]": {
  556. "Id": "Entity_[29866452603387]",
  557. "Name": "robot_vacuum_cpucase",
  558. "Components": {
  559. "Component_[10356958028194817037]": {
  560. "$type": "EditorVisibilityComponent",
  561. "Id": 10356958028194817037
  562. },
  563. "Component_[12000926685701110958]": {
  564. "$type": "EditorOnlyEntityComponent",
  565. "Id": 12000926685701110958
  566. },
  567. "Component_[12521928875866731675]": {
  568. "$type": "EditorLockComponent",
  569. "Id": 12521928875866731675
  570. },
  571. "Component_[14489412466059887599]": {
  572. "$type": "EditorEntityIconComponent",
  573. "Id": 14489412466059887599
  574. },
  575. "Component_[14551909316430055988]": {
  576. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  577. "Id": 14551909316430055988,
  578. "Parent Entity": "Entity_[6506158658343]"
  579. },
  580. "Component_[15559936702154199996]": {
  581. "$type": "EditorInspectorComponent",
  582. "Id": 15559936702154199996
  583. },
  584. "Component_[17629115463019695778]": {
  585. "$type": "EditorPendingCompositionComponent",
  586. "Id": 17629115463019695778
  587. },
  588. "Component_[3569088812992678077]": {
  589. "$type": "EditorEntitySortComponent",
  590. "Id": 3569088812992678077
  591. },
  592. "Component_[4530210423896011184]": {
  593. "$type": "EditorDisabledCompositionComponent",
  594. "Id": 4530210423896011184
  595. },
  596. "Component_[8400181125726189581]": {
  597. "$type": "EditorMaterialComponent",
  598. "Id": 8400181125726189581,
  599. "Controller": {
  600. "Configuration": {
  601. "materials": [
  602. {
  603. "Key": {
  604. "materialSlotStableId": 713658209
  605. },
  606. "Value": {
  607. "MaterialAsset": {
  608. "assetId": {
  609. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  610. },
  611. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  612. }
  613. }
  614. }
  615. ]
  616. }
  617. }
  618. },
  619. "Component_[8795666149603220285]": {
  620. "$type": "AZ::Render::EditorMeshComponent",
  621. "Id": 8795666149603220285,
  622. "Controller": {
  623. "Configuration": {
  624. "ModelAsset": {
  625. "assetId": {
  626. "guid": "{4E46E0A8-9380-541D-AC32-D79018377184}",
  627. "subId": 281912776
  628. },
  629. "assetHint": "assets/robovac/assets/robot_vacuum_cpucase.azmodel"
  630. }
  631. }
  632. }
  633. }
  634. }
  635. },
  636. "Entity_[29870747570683]": {
  637. "Id": "Entity_[29870747570683]",
  638. "Name": "robot_vacuum_pariscopesenesor",
  639. "Components": {
  640. "Component_[14057256557477939584]": {
  641. "$type": "EditorInspectorComponent",
  642. "Id": 14057256557477939584
  643. },
  644. "Component_[14342767911560119442]": {
  645. "$type": "EditorVisibilityComponent",
  646. "Id": 14342767911560119442
  647. },
  648. "Component_[14803829603787579583]": {
  649. "$type": "EditorEntityIconComponent",
  650. "Id": 14803829603787579583
  651. },
  652. "Component_[15750648033352986070]": {
  653. "$type": "EditorMaterialComponent",
  654. "Id": 15750648033352986070,
  655. "Controller": {
  656. "Configuration": {
  657. "materials": [
  658. {
  659. "Key": {
  660. "materialSlotStableId": 642792236
  661. },
  662. "Value": {
  663. "MaterialAsset": {
  664. "assetId": {
  665. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  666. },
  667. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  668. }
  669. }
  670. },
  671. {
  672. "Key": {
  673. "materialSlotStableId": 1247756951
  674. },
  675. "Value": {
  676. "MaterialAsset": {
  677. "assetId": {
  678. "guid": "{B410214E-804E-5CD7-A152-17B36FBEA0E6}"
  679. },
  680. "assetHint": "assets/robovac/assets/robotvacuum_chip.azmaterial"
  681. }
  682. }
  683. }
  684. ]
  685. }
  686. }
  687. },
  688. "Component_[16343894006606552871]": {
  689. "$type": "AZ::Render::EditorMeshComponent",
  690. "Id": 16343894006606552871,
  691. "Controller": {
  692. "Configuration": {
  693. "ModelAsset": {
  694. "assetId": {
  695. "guid": "{BED398BE-2FA7-57A9-9FFC-5EE0E8C44376}",
  696. "subId": 272685569
  697. },
  698. "assetHint": "assets/robovac/assets/robot_vacuum_pariscopesenesor.azmodel"
  699. }
  700. }
  701. }
  702. },
  703. "Component_[16975852043683064842]": {
  704. "$type": "EditorLockComponent",
  705. "Id": 16975852043683064842
  706. },
  707. "Component_[17536351687905434953]": {
  708. "$type": "EditorPendingCompositionComponent",
  709. "Id": 17536351687905434953
  710. },
  711. "Component_[17740077145147291214]": {
  712. "$type": "EditorDisabledCompositionComponent",
  713. "Id": 17740077145147291214
  714. },
  715. "Component_[6285435226352030312]": {
  716. "$type": "EditorEntitySortComponent",
  717. "Id": 6285435226352030312
  718. },
  719. "Component_[6476914044393995797]": {
  720. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  721. "Id": 6476914044393995797,
  722. "Parent Entity": "Entity_[6506158658343]"
  723. },
  724. "Component_[9206431687324815402]": {
  725. "$type": "EditorOnlyEntityComponent",
  726. "Id": 9206431687324815402
  727. }
  728. }
  729. },
  730. "Entity_[29875042537979]": {
  731. "Id": "Entity_[29875042537979]",
  732. "Name": "robot_vacuum_o_centersensor",
  733. "Components": {
  734. "Component_[116219169295708513]": {
  735. "$type": "EditorLockComponent",
  736. "Id": 116219169295708513
  737. },
  738. "Component_[13729794818213659006]": {
  739. "$type": "EditorOnlyEntityComponent",
  740. "Id": 13729794818213659006
  741. },
  742. "Component_[14591639774278218260]": {
  743. "$type": "EditorEntityIconComponent",
  744. "Id": 14591639774278218260
  745. },
  746. "Component_[14628550509204703666]": {
  747. "$type": "AZ::Render::EditorMeshComponent",
  748. "Id": 14628550509204703666,
  749. "Controller": {
  750. "Configuration": {
  751. "ModelAsset": {
  752. "assetId": {
  753. "guid": "{007D6954-ABCC-5A0A-A8E6-EC2A663AD278}",
  754. "subId": 270514493
  755. },
  756. "assetHint": "assets/robovac/assets/robot_vacuum_o_centersensor.azmodel"
  757. }
  758. }
  759. }
  760. },
  761. "Component_[14912635637951794805]": {
  762. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  763. "Id": 14912635637951794805,
  764. "Parent Entity": "Entity_[6506158658343]"
  765. },
  766. "Component_[3403129396161458684]": {
  767. "$type": "EditorDisabledCompositionComponent",
  768. "Id": 3403129396161458684
  769. },
  770. "Component_[3900914160506900203]": {
  771. "$type": "EditorEntitySortComponent",
  772. "Id": 3900914160506900203
  773. },
  774. "Component_[4643733694507146017]": {
  775. "$type": "EditorPendingCompositionComponent",
  776. "Id": 4643733694507146017
  777. },
  778. "Component_[5595142197387249384]": {
  779. "$type": "EditorVisibilityComponent",
  780. "Id": 5595142197387249384
  781. },
  782. "Component_[6495087388840514113]": {
  783. "$type": "EditorMaterialComponent",
  784. "Id": 6495087388840514113,
  785. "Controller": {
  786. "Configuration": {
  787. "materials": [
  788. {
  789. "Key": {
  790. "materialSlotStableId": 467460050
  791. },
  792. "Value": {
  793. "MaterialAsset": {
  794. "assetId": {
  795. "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
  796. },
  797. "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
  798. }
  799. }
  800. },
  801. {
  802. "Key": {
  803. "materialSlotStableId": 3551048943
  804. },
  805. "Value": {
  806. "MaterialAsset": {
  807. "assetId": {
  808. "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
  809. },
  810. "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
  811. }
  812. }
  813. }
  814. ]
  815. }
  816. }
  817. },
  818. "Component_[6601702759309726542]": {
  819. "$type": "EditorInspectorComponent",
  820. "Id": 6601702759309726542
  821. }
  822. }
  823. },
  824. "Entity_[29879337505275]": {
  825. "Id": "Entity_[29879337505275]",
  826. "Name": "robot_vacuum_screenbody",
  827. "Components": {
  828. "Component_[1034281967815404319]": {
  829. "$type": "EditorStaticRigidBodyComponent",
  830. "Id": 1034281967815404319
  831. },
  832. "Component_[12038150070017414966]": {
  833. "$type": "EditorMaterialComponent",
  834. "Id": 12038150070017414966,
  835. "Controller": {
  836. "Configuration": {
  837. "materials": [
  838. {
  839. "Key": {
  840. "materialSlotStableId": 713658209
  841. },
  842. "Value": {
  843. "MaterialAsset": {
  844. "assetId": {
  845. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  846. },
  847. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  848. }
  849. }
  850. }
  851. ]
  852. }
  853. }
  854. },
  855. "Component_[12927181747641970582]": {
  856. "$type": "EditorMeshColliderComponent",
  857. "Id": 12927181747641970582,
  858. "ColliderConfiguration": {
  859. "MaterialSlots": {
  860. "Slots": [
  861. {
  862. "Name": "Paint - Enamel Glossy (Black)"
  863. }
  864. ]
  865. }
  866. },
  867. "ShapeConfiguration": {
  868. "PhysicsAsset": {
  869. "Asset": {
  870. "assetId": {
  871. "guid": "{472B20AC-6801-58F9-B178-6ECB7D489E22}",
  872. "subId": 3058355074
  873. },
  874. "assetHint": "assets/robovac/assets/robot_vacuum_screenbody.fbx.pxmesh"
  875. },
  876. "Configuration": {
  877. "PhysicsAsset": {
  878. "assetId": {
  879. "guid": "{472B20AC-6801-58F9-B178-6ECB7D489E22}",
  880. "subId": 3058355074
  881. },
  882. "loadBehavior": "QueueLoad",
  883. "assetHint": "assets/robovac/assets/robot_vacuum_screenbody.fbx.pxmesh"
  884. }
  885. }
  886. }
  887. }
  888. },
  889. "Component_[14426575678646087440]": {
  890. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  891. "Id": 14426575678646087440,
  892. "Parent Entity": "Entity_[6506158658343]"
  893. },
  894. "Component_[15166588050066116986]": {
  895. "$type": "EditorEntitySortComponent",
  896. "Id": 15166588050066116986
  897. },
  898. "Component_[15312243562797946371]": {
  899. "$type": "EditorOnlyEntityComponent",
  900. "Id": 15312243562797946371
  901. },
  902. "Component_[17191691642584128721]": {
  903. "$type": "EditorPendingCompositionComponent",
  904. "Id": 17191691642584128721
  905. },
  906. "Component_[18365507416467044590]": {
  907. "$type": "EditorDisabledCompositionComponent",
  908. "Id": 18365507416467044590
  909. },
  910. "Component_[3402092418478522962]": {
  911. "$type": "EditorVisibilityComponent",
  912. "Id": 3402092418478522962
  913. },
  914. "Component_[5555446476205528163]": {
  915. "$type": "EditorEntityIconComponent",
  916. "Id": 5555446476205528163
  917. },
  918. "Component_[6510969327740399678]": {
  919. "$type": "EditorLockComponent",
  920. "Id": 6510969327740399678
  921. },
  922. "Component_[8812972052876778785]": {
  923. "$type": "EditorInspectorComponent",
  924. "Id": 8812972052876778785
  925. },
  926. "Component_[8911318239089158695]": {
  927. "$type": "AZ::Render::EditorMeshComponent",
  928. "Id": 8911318239089158695,
  929. "Controller": {
  930. "Configuration": {
  931. "ModelAsset": {
  932. "assetId": {
  933. "guid": "{472B20AC-6801-58F9-B178-6ECB7D489E22}",
  934. "subId": 274459091
  935. },
  936. "assetHint": "assets/robovac/assets/robot_vacuum_screenbody.azmodel"
  937. }
  938. }
  939. }
  940. }
  941. }
  942. },
  943. "Entity_[29883632472571]": {
  944. "Id": "Entity_[29883632472571]",
  945. "Name": "robot_vacuum_pariscopetube",
  946. "Components": {
  947. "Component_[11337381847282403410]": {
  948. "$type": "EditorEntitySortComponent",
  949. "Id": 11337381847282403410
  950. },
  951. "Component_[1134983352825847540]": {
  952. "$type": "EditorLockComponent",
  953. "Id": 1134983352825847540
  954. },
  955. "Component_[14299466247563877658]": {
  956. "$type": "EditorPendingCompositionComponent",
  957. "Id": 14299466247563877658
  958. },
  959. "Component_[1687230777002068203]": {
  960. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  961. "Id": 1687230777002068203,
  962. "Parent Entity": "Entity_[6506158658343]"
  963. },
  964. "Component_[18134433113086217528]": {
  965. "$type": "EditorDisabledCompositionComponent",
  966. "Id": 18134433113086217528
  967. },
  968. "Component_[2312105305446844838]": {
  969. "$type": "EditorVisibilityComponent",
  970. "Id": 2312105305446844838
  971. },
  972. "Component_[4865491440710470583]": {
  973. "$type": "EditorEntityIconComponent",
  974. "Id": 4865491440710470583
  975. },
  976. "Component_[521554514952015962]": {
  977. "$type": "EditorInspectorComponent",
  978. "Id": 521554514952015962
  979. },
  980. "Component_[5534952458813085516]": {
  981. "$type": "EditorMaterialComponent",
  982. "Id": 5534952458813085516,
  983. "Controller": {
  984. "Configuration": {
  985. "materials": [
  986. {
  987. "Key": {
  988. "materialSlotStableId": 642792236
  989. },
  990. "Value": {
  991. "MaterialAsset": {
  992. "assetId": {
  993. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  994. },
  995. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  996. }
  997. }
  998. }
  999. ]
  1000. }
  1001. }
  1002. },
  1003. "Component_[9350595258357518349]": {
  1004. "$type": "AZ::Render::EditorMeshComponent",
  1005. "Id": 9350595258357518349,
  1006. "Controller": {
  1007. "Configuration": {
  1008. "ModelAsset": {
  1009. "assetId": {
  1010. "guid": "{EA6AAF93-0D8C-57CE-8D94-4A562B041C71}",
  1011. "subId": 284014725
  1012. },
  1013. "assetHint": "assets/robovac/assets/robot_vacuum_pariscopetube.azmodel"
  1014. }
  1015. }
  1016. }
  1017. },
  1018. "Component_[9715495271434390931]": {
  1019. "$type": "EditorOnlyEntityComponent",
  1020. "Id": 9715495271434390931
  1021. }
  1022. }
  1023. },
  1024. "Entity_[29887927439867]": {
  1025. "Id": "Entity_[29887927439867]",
  1026. "Name": "robot_vacuum_cpucover",
  1027. "Components": {
  1028. "Component_[10025315339984209842]": {
  1029. "$type": "EditorEntitySortComponent",
  1030. "Id": 10025315339984209842
  1031. },
  1032. "Component_[10332769047543096197]": {
  1033. "$type": "EditorMaterialComponent",
  1034. "Id": 10332769047543096197,
  1035. "Controller": {
  1036. "Configuration": {
  1037. "materials": [
  1038. {
  1039. "Key": {
  1040. "materialSlotStableId": 3436397348
  1041. },
  1042. "Value": {
  1043. "MaterialAsset": {
  1044. "assetId": {
  1045. "guid": "{0AF7BE25-7818-5DEB-A848-FBF2575C04CA}"
  1046. },
  1047. "assetHint": "assets/robovac/assets/robotvacuum_plastic_-_sensor.azmaterial"
  1048. }
  1049. }
  1050. }
  1051. ]
  1052. }
  1053. }
  1054. },
  1055. "Component_[11371991638107009117]": {
  1056. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1057. "Id": 11371991638107009117,
  1058. "Parent Entity": "Entity_[6506158658343]"
  1059. },
  1060. "Component_[14595306096618604571]": {
  1061. "$type": "EditorOnlyEntityComponent",
  1062. "Id": 14595306096618604571
  1063. },
  1064. "Component_[16147848150206823670]": {
  1065. "$type": "EditorVisibilityComponent",
  1066. "Id": 16147848150206823670
  1067. },
  1068. "Component_[17368774951420809643]": {
  1069. "$type": "EditorDisabledCompositionComponent",
  1070. "Id": 17368774951420809643,
  1071. "DisabledComponents": {
  1072. "Component_[14386255473429959438]": {
  1073. "$type": "EditorColliderComponent",
  1074. "Id": 14386255473429959438,
  1075. "ColliderConfiguration": {
  1076. "MaterialSlots": {
  1077. "Slots": [
  1078. {
  1079. "Name": "Plastic - Sensor"
  1080. }
  1081. ]
  1082. }
  1083. },
  1084. "ShapeConfiguration": {
  1085. "PhysicsAsset": {
  1086. "Asset": {
  1087. "assetId": {
  1088. "guid": "{44254E4F-53F4-5C53-BF81-411AFEB75789}",
  1089. "subId": 2981717856
  1090. },
  1091. "assetHint": "assets/robovac/assets/robot_vacuum_cpucover.pxmesh"
  1092. },
  1093. "Configuration": {
  1094. "PhysicsAsset": {
  1095. "assetId": {
  1096. "guid": "{44254E4F-53F4-5C53-BF81-411AFEB75789}",
  1097. "subId": 2981717856
  1098. },
  1099. "loadBehavior": "QueueLoad",
  1100. "assetHint": "assets/robovac/assets/robot_vacuum_cpucover.pxmesh"
  1101. }
  1102. }
  1103. }
  1104. }
  1105. }
  1106. }
  1107. },
  1108. "Component_[18180067841158939512]": {
  1109. "$type": "EditorPendingCompositionComponent",
  1110. "Id": 18180067841158939512
  1111. },
  1112. "Component_[6737035184120536175]": {
  1113. "$type": "AZ::Render::EditorMeshComponent",
  1114. "Id": 6737035184120536175,
  1115. "Controller": {
  1116. "Configuration": {
  1117. "ModelAsset": {
  1118. "assetId": {
  1119. "guid": "{44254E4F-53F4-5C53-BF81-411AFEB75789}",
  1120. "subId": 285199714
  1121. },
  1122. "assetHint": "assets/robovac/assets/robot_vacuum_cpucover.azmodel"
  1123. }
  1124. }
  1125. }
  1126. },
  1127. "Component_[7017274689486827012]": {
  1128. "$type": "EditorEntityIconComponent",
  1129. "Id": 7017274689486827012
  1130. },
  1131. "Component_[7036945985460570540]": {
  1132. "$type": "EditorInspectorComponent",
  1133. "Id": 7036945985460570540
  1134. },
  1135. "Component_[8842819203641128695]": {
  1136. "$type": "EditorLockComponent",
  1137. "Id": 8842819203641128695
  1138. }
  1139. }
  1140. },
  1141. "Entity_[29892222407163]": {
  1142. "Id": "Entity_[29892222407163]",
  1143. "Name": "robot_vacuum_navdisplaycamera",
  1144. "Components": {
  1145. "Component_[11433011431204834190]": {
  1146. "$type": "EditorVisibilityComponent",
  1147. "Id": 11433011431204834190
  1148. },
  1149. "Component_[1367065363202865187]": {
  1150. "$type": "EditorInspectorComponent",
  1151. "Id": 1367065363202865187
  1152. },
  1153. "Component_[15249786871612411618]": {
  1154. "$type": "EditorDisabledCompositionComponent",
  1155. "Id": 15249786871612411618
  1156. },
  1157. "Component_[15483889718527123585]": {
  1158. "$type": "AZ::Render::EditorMeshComponent",
  1159. "Id": 15483889718527123585,
  1160. "Controller": {
  1161. "Configuration": {
  1162. "ModelAsset": {
  1163. "assetId": {
  1164. "guid": "{4191CA27-DC5C-51B5-B12B-FA42849FF266}",
  1165. "subId": 269723792
  1166. },
  1167. "assetHint": "assets/robovac/assets/robot_vacuum_navdisplaycamera.azmodel"
  1168. }
  1169. }
  1170. }
  1171. },
  1172. "Component_[16243294016245134249]": {
  1173. "$type": "EditorEntitySortComponent",
  1174. "Id": 16243294016245134249
  1175. },
  1176. "Component_[16435443952550190677]": {
  1177. "$type": "EditorOnlyEntityComponent",
  1178. "Id": 16435443952550190677
  1179. },
  1180. "Component_[3306545662102859474]": {
  1181. "$type": "EditorMaterialComponent",
  1182. "Id": 3306545662102859474,
  1183. "Controller": {
  1184. "Configuration": {
  1185. "materials": [
  1186. {
  1187. "Key": {
  1188. "materialSlotStableId": 713658209
  1189. },
  1190. "Value": {
  1191. "MaterialAsset": {
  1192. "assetId": {
  1193. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  1194. },
  1195. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  1196. }
  1197. }
  1198. },
  1199. {
  1200. "Key": {
  1201. "materialSlotStableId": 3551048943
  1202. },
  1203. "Value": {
  1204. "MaterialAsset": {
  1205. "assetId": {
  1206. "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
  1207. },
  1208. "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
  1209. }
  1210. }
  1211. }
  1212. ]
  1213. }
  1214. }
  1215. },
  1216. "Component_[40546633900605231]": {
  1217. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1218. "Id": 40546633900605231,
  1219. "Parent Entity": "Entity_[6506158658343]"
  1220. },
  1221. "Component_[6193008417045434597]": {
  1222. "$type": "EditorEntityIconComponent",
  1223. "Id": 6193008417045434597
  1224. },
  1225. "Component_[8478923596115389847]": {
  1226. "$type": "EditorPendingCompositionComponent",
  1227. "Id": 8478923596115389847
  1228. },
  1229. "Component_[9887849855476749867]": {
  1230. "$type": "EditorLockComponent",
  1231. "Id": 9887849855476749867
  1232. }
  1233. }
  1234. },
  1235. "Entity_[29896517374459]": {
  1236. "Id": "Entity_[29896517374459]",
  1237. "Name": "robot_vacuum_battery",
  1238. "Components": {
  1239. "Component_[10423770966231978871]": {
  1240. "$type": "EditorInspectorComponent",
  1241. "Id": 10423770966231978871
  1242. },
  1243. "Component_[12035807572453480741]": {
  1244. "$type": "EditorEntityIconComponent",
  1245. "Id": 12035807572453480741
  1246. },
  1247. "Component_[12920308688802330448]": {
  1248. "$type": "EditorMaterialComponent",
  1249. "Id": 12920308688802330448,
  1250. "Controller": {
  1251. "Configuration": {
  1252. "materials": [
  1253. {
  1254. "Key": {
  1255. "materialSlotStableId": 642792236
  1256. },
  1257. "Value": {
  1258. "MaterialAsset": {
  1259. "assetId": {
  1260. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  1261. },
  1262. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  1263. }
  1264. }
  1265. }
  1266. ]
  1267. }
  1268. }
  1269. },
  1270. "Component_[13958036992729066340]": {
  1271. "$type": "EditorOnlyEntityComponent",
  1272. "Id": 13958036992729066340
  1273. },
  1274. "Component_[15097518247046901590]": {
  1275. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1276. "Id": 15097518247046901590,
  1277. "Parent Entity": "Entity_[6506158658343]",
  1278. "Transform Data": {
  1279. "Translate": [
  1280. 0.0,
  1281. 0.0,
  1282. -5.960464477539063e-8
  1283. ]
  1284. }
  1285. },
  1286. "Component_[15668197313822929305]": {
  1287. "$type": "EditorEntitySortComponent",
  1288. "Id": 15668197313822929305
  1289. },
  1290. "Component_[15959986482832278310]": {
  1291. "$type": "EditorLockComponent",
  1292. "Id": 15959986482832278310
  1293. },
  1294. "Component_[2345816431385096198]": {
  1295. "$type": "EditorPendingCompositionComponent",
  1296. "Id": 2345816431385096198
  1297. },
  1298. "Component_[4028256576739017793]": {
  1299. "$type": "AZ::Render::EditorMeshComponent",
  1300. "Id": 4028256576739017793,
  1301. "Controller": {
  1302. "Configuration": {
  1303. "ModelAsset": {
  1304. "assetId": {
  1305. "guid": "{DF2994F3-CDAF-5AA1-89F0-13E822ED5B67}",
  1306. "subId": 277740550
  1307. },
  1308. "assetHint": "assets/robovac/assets/robot_vacuum_battery.azmodel"
  1309. }
  1310. }
  1311. }
  1312. },
  1313. "Component_[6219971229759892183]": {
  1314. "$type": "EditorDisabledCompositionComponent",
  1315. "Id": 6219971229759892183
  1316. },
  1317. "Component_[7746097945937138952]": {
  1318. "$type": "EditorVisibilityComponent",
  1319. "Id": 7746097945937138952
  1320. }
  1321. }
  1322. },
  1323. "Entity_[29900812341755]": {
  1324. "Id": "Entity_[29900812341755]",
  1325. "Name": "robot_vacuum_cpucoverdoor",
  1326. "Components": {
  1327. "Component_[1160898461646756509]": {
  1328. "$type": "EditorEntitySortComponent",
  1329. "Id": 1160898461646756509
  1330. },
  1331. "Component_[11693874107024939493]": {
  1332. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1333. "Id": 11693874107024939493,
  1334. "Parent Entity": "Entity_[6506158658343]"
  1335. },
  1336. "Component_[12680365327553012751]": {
  1337. "$type": "EditorMaterialComponent",
  1338. "Id": 12680365327553012751,
  1339. "Controller": {
  1340. "Configuration": {
  1341. "materials": [
  1342. {
  1343. "Key": {
  1344. "materialSlotStableId": 713658209
  1345. },
  1346. "Value": {
  1347. "MaterialAsset": {
  1348. "assetId": {
  1349. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  1350. },
  1351. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  1352. }
  1353. }
  1354. }
  1355. ]
  1356. }
  1357. }
  1358. },
  1359. "Component_[1297133237731893804]": {
  1360. "$type": "EditorLockComponent",
  1361. "Id": 1297133237731893804
  1362. },
  1363. "Component_[1622304547483087437]": {
  1364. "$type": "AZ::Render::EditorMeshComponent",
  1365. "Id": 1622304547483087437,
  1366. "Controller": {
  1367. "Configuration": {
  1368. "ModelAsset": {
  1369. "assetId": {
  1370. "guid": "{058D9B06-830E-51BC-B66D-CC0BA948501A}",
  1371. "subId": 277978673
  1372. },
  1373. "assetHint": "assets/robovac/assets/robot_vacuum_cpucoverdoor.azmodel"
  1374. }
  1375. }
  1376. }
  1377. },
  1378. "Component_[16476213380140018196]": {
  1379. "$type": "EditorEntityIconComponent",
  1380. "Id": 16476213380140018196
  1381. },
  1382. "Component_[4120695950251520283]": {
  1383. "$type": "EditorDisabledCompositionComponent",
  1384. "Id": 4120695950251520283
  1385. },
  1386. "Component_[4975169445261639817]": {
  1387. "$type": "EditorInspectorComponent",
  1388. "Id": 4975169445261639817
  1389. },
  1390. "Component_[8533221928053165578]": {
  1391. "$type": "EditorVisibilityComponent",
  1392. "Id": 8533221928053165578
  1393. },
  1394. "Component_[8900053515996941211]": {
  1395. "$type": "EditorPendingCompositionComponent",
  1396. "Id": 8900053515996941211
  1397. },
  1398. "Component_[8922078388251675692]": {
  1399. "$type": "EditorOnlyEntityComponent",
  1400. "Id": 8922078388251675692
  1401. }
  1402. }
  1403. },
  1404. "Entity_[29905107309051]": {
  1405. "Id": "Entity_[29905107309051]",
  1406. "Name": "robot_vacuum_depthdensorleft",
  1407. "Components": {
  1408. "Component_[11494312482997210625]": {
  1409. "$type": "EditorPendingCompositionComponent",
  1410. "Id": 11494312482997210625
  1411. },
  1412. "Component_[13981390298683343246]": {
  1413. "$type": "EditorLockComponent",
  1414. "Id": 13981390298683343246
  1415. },
  1416. "Component_[14718637354657612910]": {
  1417. "$type": "EditorEntityIconComponent",
  1418. "Id": 14718637354657612910
  1419. },
  1420. "Component_[15124373171622813264]": {
  1421. "$type": "EditorVisibilityComponent",
  1422. "Id": 15124373171622813264
  1423. },
  1424. "Component_[17861282930077705308]": {
  1425. "$type": "EditorInspectorComponent",
  1426. "Id": 17861282930077705308
  1427. },
  1428. "Component_[279716219125983537]": {
  1429. "$type": "EditorDisabledCompositionComponent",
  1430. "Id": 279716219125983537
  1431. },
  1432. "Component_[5284750579111323888]": {
  1433. "$type": "AZ::Render::EditorMeshComponent",
  1434. "Id": 5284750579111323888,
  1435. "Controller": {
  1436. "Configuration": {
  1437. "ModelAsset": {
  1438. "assetId": {
  1439. "guid": "{4C43FC92-2409-58E9-8DDE-D9BCCC84F4CE}",
  1440. "subId": 284522806
  1441. },
  1442. "assetHint": "assets/robovac/assets/robot_vacuum_depthdensorleft.azmodel"
  1443. }
  1444. }
  1445. }
  1446. },
  1447. "Component_[5902437826772068932]": {
  1448. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1449. "Id": 5902437826772068932,
  1450. "Parent Entity": "Entity_[6506158658343]"
  1451. },
  1452. "Component_[6155037425782808290]": {
  1453. "$type": "EditorMaterialComponent",
  1454. "Id": 6155037425782808290,
  1455. "Controller": {
  1456. "Configuration": {
  1457. "materials": [
  1458. {
  1459. "Key": {
  1460. "materialSlotStableId": 642792236
  1461. },
  1462. "Value": {
  1463. "MaterialAsset": {
  1464. "assetId": {
  1465. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  1466. },
  1467. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  1468. }
  1469. }
  1470. },
  1471. {
  1472. "Key": {
  1473. "materialSlotStableId": 713658209
  1474. },
  1475. "Value": {
  1476. "MaterialAsset": {
  1477. "assetId": {
  1478. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  1479. },
  1480. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  1481. }
  1482. }
  1483. },
  1484. {
  1485. "Key": {
  1486. "materialSlotStableId": 3551048943
  1487. },
  1488. "Value": {
  1489. "MaterialAsset": {
  1490. "assetId": {
  1491. "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
  1492. },
  1493. "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
  1494. }
  1495. }
  1496. }
  1497. ]
  1498. }
  1499. }
  1500. },
  1501. "Component_[664833020306432049]": {
  1502. "$type": "EditorEntitySortComponent",
  1503. "Id": 664833020306432049
  1504. },
  1505. "Component_[7353472286713300832]": {
  1506. "$type": "EditorOnlyEntityComponent",
  1507. "Id": 7353472286713300832
  1508. }
  1509. }
  1510. },
  1511. "Entity_[29909402276347]": {
  1512. "Id": "Entity_[29909402276347]",
  1513. "Name": "robot_vacuum_backbumper",
  1514. "Components": {
  1515. "Component_[1014096401474372943]": {
  1516. "$type": "EditorOnlyEntityComponent",
  1517. "Id": 1014096401474372943
  1518. },
  1519. "Component_[12094592484391732975]": {
  1520. "$type": "EditorVisibilityComponent",
  1521. "Id": 12094592484391732975
  1522. },
  1523. "Component_[12573602655672009410]": {
  1524. "$type": "EditorEntityIconComponent",
  1525. "Id": 12573602655672009410
  1526. },
  1527. "Component_[13499748203624767807]": {
  1528. "$type": "EditorEntitySortComponent",
  1529. "Id": 13499748203624767807
  1530. },
  1531. "Component_[16494407832622749468]": {
  1532. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1533. "Id": 16494407832622749468,
  1534. "Parent Entity": "Entity_[6506158658343]",
  1535. "Transform Data": {
  1536. "Translate": [
  1537. 0.0,
  1538. 0.0,
  1539. -2.9802322387695313e-8
  1540. ]
  1541. }
  1542. },
  1543. "Component_[17012961892723687314]": {
  1544. "$type": "EditorMaterialComponent",
  1545. "Id": 17012961892723687314,
  1546. "Controller": {
  1547. "Configuration": {
  1548. "materials": [
  1549. {
  1550. "Key": {
  1551. "materialSlotStableId": 467460050
  1552. },
  1553. "Value": {
  1554. "MaterialAsset": {
  1555. "assetId": {
  1556. "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
  1557. },
  1558. "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
  1559. }
  1560. }
  1561. }
  1562. ]
  1563. }
  1564. }
  1565. },
  1566. "Component_[18138520316301864088]": {
  1567. "$type": "EditorDisabledCompositionComponent",
  1568. "Id": 18138520316301864088
  1569. },
  1570. "Component_[2190499505831493840]": {
  1571. "$type": "AZ::Render::EditorMeshComponent",
  1572. "Id": 2190499505831493840,
  1573. "Controller": {
  1574. "Configuration": {
  1575. "ModelAsset": {
  1576. "assetId": {
  1577. "guid": "{7C1552C5-7322-5C3D-B1FE-5C71BBD9941F}",
  1578. "subId": 279299367
  1579. },
  1580. "assetHint": "assets/robovac/assets/default_robot_vacuum_backbumper_67301715_5cb3_52f8_917e_6921a5bf842c_.azmodel"
  1581. }
  1582. }
  1583. }
  1584. },
  1585. "Component_[3476046400629899620]": {
  1586. "$type": "EditorInspectorComponent",
  1587. "Id": 3476046400629899620
  1588. },
  1589. "Component_[577491611541296416]": {
  1590. "$type": "EditorPendingCompositionComponent",
  1591. "Id": 577491611541296416
  1592. },
  1593. "Component_[9829318224754840890]": {
  1594. "$type": "EditorLockComponent",
  1595. "Id": 9829318224754840890
  1596. }
  1597. }
  1598. },
  1599. "Entity_[29913697243643]": {
  1600. "Id": "Entity_[29913697243643]",
  1601. "Name": "robot_vacuum_depthdensorright",
  1602. "Components": {
  1603. "Component_[11687252647046139603]": {
  1604. "$type": "EditorPendingCompositionComponent",
  1605. "Id": 11687252647046139603
  1606. },
  1607. "Component_[12178265791218007998]": {
  1608. "$type": "EditorEntityIconComponent",
  1609. "Id": 12178265791218007998
  1610. },
  1611. "Component_[13349755174293871721]": {
  1612. "$type": "EditorVisibilityComponent",
  1613. "Id": 13349755174293871721
  1614. },
  1615. "Component_[14236251140759845637]": {
  1616. "$type": "AZ::Render::EditorMeshComponent",
  1617. "Id": 14236251140759845637,
  1618. "Controller": {
  1619. "Configuration": {
  1620. "ModelAsset": {
  1621. "assetId": {
  1622. "guid": "{53886C06-FC86-5589-BDB4-65F7F7035E35}",
  1623. "subId": 273455993
  1624. },
  1625. "assetHint": "assets/robovac/assets/robot_vacuum_depthdensorright.azmodel"
  1626. }
  1627. }
  1628. }
  1629. },
  1630. "Component_[15060908410058061725]": {
  1631. "$type": "EditorInspectorComponent",
  1632. "Id": 15060908410058061725
  1633. },
  1634. "Component_[15919697516053595824]": {
  1635. "$type": "EditorOnlyEntityComponent",
  1636. "Id": 15919697516053595824
  1637. },
  1638. "Component_[4986084949100319144]": {
  1639. "$type": "EditorLockComponent",
  1640. "Id": 4986084949100319144
  1641. },
  1642. "Component_[6302847338612665076]": {
  1643. "$type": "EditorMaterialComponent",
  1644. "Id": 6302847338612665076,
  1645. "Controller": {
  1646. "Configuration": {
  1647. "materials": [
  1648. {
  1649. "Key": {
  1650. "materialSlotStableId": 642792236
  1651. },
  1652. "Value": {
  1653. "MaterialAsset": {
  1654. "assetId": {
  1655. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  1656. },
  1657. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  1658. }
  1659. }
  1660. },
  1661. {
  1662. "Key": {
  1663. "materialSlotStableId": 713658209
  1664. },
  1665. "Value": {
  1666. "MaterialAsset": {
  1667. "assetId": {
  1668. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  1669. },
  1670. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  1671. }
  1672. }
  1673. },
  1674. {
  1675. "Key": {
  1676. "materialSlotStableId": 3551048943
  1677. },
  1678. "Value": {
  1679. "MaterialAsset": {
  1680. "assetId": {
  1681. "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
  1682. },
  1683. "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
  1684. }
  1685. }
  1686. }
  1687. ]
  1688. }
  1689. }
  1690. },
  1691. "Component_[7851939175819994978]": {
  1692. "$type": "EditorDisabledCompositionComponent",
  1693. "Id": 7851939175819994978
  1694. },
  1695. "Component_[8699479437331363671]": {
  1696. "$type": "EditorEntitySortComponent",
  1697. "Id": 8699479437331363671
  1698. },
  1699. "Component_[9378645190676979903]": {
  1700. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1701. "Id": 9378645190676979903,
  1702. "Parent Entity": "Entity_[6506158658343]"
  1703. }
  1704. }
  1705. },
  1706. "Entity_[29917992210939]": {
  1707. "Id": "Entity_[29917992210939]",
  1708. "Name": "robot_vacuum_screenboltright",
  1709. "Components": {
  1710. "Component_[12292319564083887590]": {
  1711. "$type": "EditorMaterialComponent",
  1712. "Id": 12292319564083887590,
  1713. "Controller": {
  1714. "Configuration": {
  1715. "materials": [
  1716. {
  1717. "Key": {
  1718. "materialSlotStableId": 642792236
  1719. },
  1720. "Value": {
  1721. "MaterialAsset": {
  1722. "assetId": {
  1723. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  1724. },
  1725. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  1726. }
  1727. }
  1728. }
  1729. ]
  1730. }
  1731. }
  1732. },
  1733. "Component_[12726580132435775133]": {
  1734. "$type": "EditorPendingCompositionComponent",
  1735. "Id": 12726580132435775133
  1736. },
  1737. "Component_[14102005060516896856]": {
  1738. "$type": "EditorLockComponent",
  1739. "Id": 14102005060516896856
  1740. },
  1741. "Component_[14339044020650005895]": {
  1742. "$type": "EditorOnlyEntityComponent",
  1743. "Id": 14339044020650005895
  1744. },
  1745. "Component_[1593828453855235581]": {
  1746. "$type": "EditorEntitySortComponent",
  1747. "Id": 1593828453855235581
  1748. },
  1749. "Component_[17050674051210069790]": {
  1750. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1751. "Id": 17050674051210069790,
  1752. "Parent Entity": "Entity_[6506158658343]"
  1753. },
  1754. "Component_[3733454906690206524]": {
  1755. "$type": "AZ::Render::EditorMeshComponent",
  1756. "Id": 3733454906690206524,
  1757. "Controller": {
  1758. "Configuration": {
  1759. "ModelAsset": {
  1760. "assetId": {
  1761. "guid": "{F6B52F5E-A2AF-5AF0-9A75-F7BADC2A75E4}",
  1762. "subId": 278270265
  1763. },
  1764. "assetHint": "assets/robovac/assets/robot_vacuum_screenboltright.azmodel"
  1765. }
  1766. }
  1767. }
  1768. },
  1769. "Component_[4804727057274159324]": {
  1770. "$type": "EditorInspectorComponent",
  1771. "Id": 4804727057274159324
  1772. },
  1773. "Component_[5066516253442437737]": {
  1774. "$type": "EditorEntityIconComponent",
  1775. "Id": 5066516253442437737
  1776. },
  1777. "Component_[8506706896382946194]": {
  1778. "$type": "EditorDisabledCompositionComponent",
  1779. "Id": 8506706896382946194
  1780. },
  1781. "Component_[8636090317667778661]": {
  1782. "$type": "EditorVisibilityComponent",
  1783. "Id": 8636090317667778661
  1784. }
  1785. }
  1786. },
  1787. "Entity_[29922287178235]": {
  1788. "Id": "Entity_[29922287178235]",
  1789. "Name": "robot_vacuum_navlogicboard",
  1790. "Components": {
  1791. "Component_[10051983211610109492]": {
  1792. "$type": "EditorEntitySortComponent",
  1793. "Id": 10051983211610109492
  1794. },
  1795. "Component_[11412451456793240277]": {
  1796. "$type": "EditorLockComponent",
  1797. "Id": 11412451456793240277
  1798. },
  1799. "Component_[1284872308139332819]": {
  1800. "$type": "EditorEntityIconComponent",
  1801. "Id": 1284872308139332819
  1802. },
  1803. "Component_[13844027668023298287]": {
  1804. "$type": "EditorOnlyEntityComponent",
  1805. "Id": 13844027668023298287
  1806. },
  1807. "Component_[14223864992109437780]": {
  1808. "$type": "EditorMaterialComponent",
  1809. "Id": 14223864992109437780,
  1810. "Controller": {
  1811. "Configuration": {
  1812. "materials": [
  1813. {
  1814. "Key": {
  1815. "materialSlotStableId": 713658209
  1816. },
  1817. "Value": {
  1818. "MaterialAsset": {
  1819. "assetId": {
  1820. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  1821. },
  1822. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  1823. }
  1824. }
  1825. },
  1826. {
  1827. "Key": {
  1828. "materialSlotStableId": 1247756951
  1829. },
  1830. "Value": {
  1831. "MaterialAsset": {
  1832. "assetId": {
  1833. "guid": "{B410214E-804E-5CD7-A152-17B36FBEA0E6}"
  1834. },
  1835. "assetHint": "assets/robovac/assets/robotvacuum_chip.azmaterial"
  1836. }
  1837. }
  1838. },
  1839. {
  1840. "Key": {
  1841. "materialSlotStableId": 2088635577
  1842. },
  1843. "Value": {
  1844. "MaterialAsset": {
  1845. "assetId": {
  1846. "guid": "{B732DCB8-247F-5040-8956-17BE3CE61ECB}"
  1847. },
  1848. "assetHint": "assets/robovac/assets/robotvacuum_gold_-_polished.azmaterial"
  1849. }
  1850. }
  1851. }
  1852. ]
  1853. }
  1854. }
  1855. },
  1856. "Component_[2422242582223629779]": {
  1857. "$type": "EditorPendingCompositionComponent",
  1858. "Id": 2422242582223629779
  1859. },
  1860. "Component_[7284251414179909196]": {
  1861. "$type": "EditorInspectorComponent",
  1862. "Id": 7284251414179909196
  1863. },
  1864. "Component_[7393546430428996290]": {
  1865. "$type": "EditorDisabledCompositionComponent",
  1866. "Id": 7393546430428996290
  1867. },
  1868. "Component_[8442266590165968802]": {
  1869. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1870. "Id": 8442266590165968802,
  1871. "Parent Entity": "Entity_[6506158658343]"
  1872. },
  1873. "Component_[8700461298150480671]": {
  1874. "$type": "AZ::Render::EditorMeshComponent",
  1875. "Id": 8700461298150480671,
  1876. "Controller": {
  1877. "Configuration": {
  1878. "ModelAsset": {
  1879. "assetId": {
  1880. "guid": "{D3805517-8DC0-567A-B40C-340FC11DDF4E}",
  1881. "subId": 268596572
  1882. },
  1883. "assetHint": "assets/robovac/assets/robot_vacuum_navlogicboard.azmodel"
  1884. }
  1885. }
  1886. }
  1887. },
  1888. "Component_[89094339636559295]": {
  1889. "$type": "EditorVisibilityComponent",
  1890. "Id": 89094339636559295
  1891. }
  1892. }
  1893. },
  1894. "Entity_[29926582145531]": {
  1895. "Id": "Entity_[29926582145531]",
  1896. "Name": "robot_vacuum_screenglass",
  1897. "Components": {
  1898. "Component_[12002731711356285631]": {
  1899. "$type": "EditorMaterialComponent",
  1900. "Id": 12002731711356285631,
  1901. "Controller": {
  1902. "Configuration": {
  1903. "materials": [
  1904. {
  1905. "Key": {
  1906. "materialSlotStableId": 46062180
  1907. },
  1908. "Value": {
  1909. "MaterialAsset": {
  1910. "assetId": {
  1911. "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
  1912. },
  1913. "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
  1914. }
  1915. }
  1916. }
  1917. ]
  1918. }
  1919. }
  1920. },
  1921. "Component_[12330259195616372942]": {
  1922. "$type": "EditorEntitySortComponent",
  1923. "Id": 12330259195616372942
  1924. },
  1925. "Component_[12341404943232303919]": {
  1926. "$type": "EditorOnlyEntityComponent",
  1927. "Id": 12341404943232303919
  1928. },
  1929. "Component_[12993371939032694725]": {
  1930. "$type": "AZ::Render::EditorMeshComponent",
  1931. "Id": 12993371939032694725,
  1932. "Controller": {
  1933. "Configuration": {
  1934. "ModelAsset": {
  1935. "assetId": {
  1936. "guid": "{D74CBC2A-3B76-580E-BC60-1DD127B8D1B2}",
  1937. "subId": 282926451
  1938. },
  1939. "assetHint": "assets/robovac/assets/robot_vacuum_screenglass.azmodel"
  1940. }
  1941. }
  1942. }
  1943. },
  1944. "Component_[16128151194242008487]": {
  1945. "$type": "EditorEntityIconComponent",
  1946. "Id": 16128151194242008487
  1947. },
  1948. "Component_[17206641155412004585]": {
  1949. "$type": "EditorVisibilityComponent",
  1950. "Id": 17206641155412004585
  1951. },
  1952. "Component_[2796450025346289110]": {
  1953. "$type": "EditorLockComponent",
  1954. "Id": 2796450025346289110
  1955. },
  1956. "Component_[4096916641474984795]": {
  1957. "$type": "EditorInspectorComponent",
  1958. "Id": 4096916641474984795
  1959. },
  1960. "Component_[6132862612852279101]": {
  1961. "$type": "EditorPendingCompositionComponent",
  1962. "Id": 6132862612852279101
  1963. },
  1964. "Component_[7309820908155270804]": {
  1965. "$type": "EditorDisabledCompositionComponent",
  1966. "Id": 7309820908155270804
  1967. },
  1968. "Component_[8572598678422046028]": {
  1969. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1970. "Id": 8572598678422046028,
  1971. "Parent Entity": "Entity_[6506158658343]"
  1972. }
  1973. }
  1974. },
  1975. "Entity_[29930877112827]": {
  1976. "Id": "Entity_[29930877112827]",
  1977. "Name": "robot_vacuum_pariscopeglass",
  1978. "Components": {
  1979. "Component_[10442046716566583284]": {
  1980. "$type": "AZ::Render::EditorMeshComponent",
  1981. "Id": 10442046716566583284,
  1982. "Controller": {
  1983. "Configuration": {
  1984. "ModelAsset": {
  1985. "assetId": {
  1986. "guid": "{C61E6543-D095-5E81-B289-3F63B1305D3B}",
  1987. "subId": 272346069
  1988. },
  1989. "assetHint": "assets/robovac/assets/robot_vacuum_pariscopeglass.azmodel"
  1990. }
  1991. }
  1992. }
  1993. },
  1994. "Component_[1142168535653003146]": {
  1995. "$type": "EditorInspectorComponent",
  1996. "Id": 1142168535653003146
  1997. },
  1998. "Component_[14307060787665841517]": {
  1999. "$type": "EditorLockComponent",
  2000. "Id": 14307060787665841517
  2001. },
  2002. "Component_[1459036190848484461]": {
  2003. "$type": "EditorVisibilityComponent",
  2004. "Id": 1459036190848484461
  2005. },
  2006. "Component_[16761550464080407825]": {
  2007. "$type": "EditorEntityIconComponent",
  2008. "Id": 16761550464080407825
  2009. },
  2010. "Component_[16890571128475542206]": {
  2011. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2012. "Id": 16890571128475542206,
  2013. "Parent Entity": "Entity_[6506158658343]"
  2014. },
  2015. "Component_[5647316105829875101]": {
  2016. "$type": "EditorDisabledCompositionComponent",
  2017. "Id": 5647316105829875101
  2018. },
  2019. "Component_[585745993048077569]": {
  2020. "$type": "EditorPendingCompositionComponent",
  2021. "Id": 585745993048077569
  2022. },
  2023. "Component_[6235887042103616804]": {
  2024. "$type": "EditorEntitySortComponent",
  2025. "Id": 6235887042103616804
  2026. },
  2027. "Component_[8053322179614039518]": {
  2028. "$type": "EditorMaterialComponent",
  2029. "Id": 8053322179614039518,
  2030. "Controller": {
  2031. "Configuration": {
  2032. "materials": [
  2033. {
  2034. "Key": {
  2035. "materialSlotStableId": 46062180
  2036. },
  2037. "Value": {
  2038. "MaterialAsset": {
  2039. "assetId": {
  2040. "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
  2041. },
  2042. "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
  2043. }
  2044. }
  2045. }
  2046. ]
  2047. }
  2048. }
  2049. },
  2050. "Component_[8660062993588394122]": {
  2051. "$type": "EditorOnlyEntityComponent",
  2052. "Id": 8660062993588394122
  2053. }
  2054. }
  2055. },
  2056. "Entity_[29935172080123]": {
  2057. "Id": "Entity_[29935172080123]",
  2058. "Name": "robot_vacuum_o_rightsensor",
  2059. "Components": {
  2060. "Component_[11218109192251318216]": {
  2061. "$type": "EditorEntitySortComponent",
  2062. "Id": 11218109192251318216
  2063. },
  2064. "Component_[12142412471193877135]": {
  2065. "$type": "EditorInspectorComponent",
  2066. "Id": 12142412471193877135
  2067. },
  2068. "Component_[14094796423703552457]": {
  2069. "$type": "EditorMaterialComponent",
  2070. "Id": 14094796423703552457,
  2071. "Controller": {
  2072. "Configuration": {
  2073. "materials": [
  2074. {
  2075. "Key": {
  2076. "materialSlotStableId": 467460050
  2077. },
  2078. "Value": {
  2079. "MaterialAsset": {
  2080. "assetId": {
  2081. "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
  2082. },
  2083. "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
  2084. }
  2085. }
  2086. },
  2087. {
  2088. "Key": {
  2089. "materialSlotStableId": 3551048943
  2090. },
  2091. "Value": {
  2092. "MaterialAsset": {
  2093. "assetId": {
  2094. "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
  2095. },
  2096. "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
  2097. }
  2098. }
  2099. }
  2100. ]
  2101. }
  2102. }
  2103. },
  2104. "Component_[15829508757323248550]": {
  2105. "$type": "AZ::Render::EditorMeshComponent",
  2106. "Id": 15829508757323248550,
  2107. "Controller": {
  2108. "Configuration": {
  2109. "ModelAsset": {
  2110. "assetId": {
  2111. "guid": "{C8D87B76-1AC1-5E08-84FE-939B73E6857E}",
  2112. "subId": 282962690
  2113. },
  2114. "assetHint": "assets/robovac/assets/robot_vacuum_o_rightsensor.azmodel"
  2115. }
  2116. }
  2117. }
  2118. },
  2119. "Component_[16955695451460729126]": {
  2120. "$type": "EditorVisibilityComponent",
  2121. "Id": 16955695451460729126
  2122. },
  2123. "Component_[3967112649105054567]": {
  2124. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2125. "Id": 3967112649105054567,
  2126. "Parent Entity": "Entity_[6506158658343]"
  2127. },
  2128. "Component_[4558962009475079380]": {
  2129. "$type": "EditorOnlyEntityComponent",
  2130. "Id": 4558962009475079380
  2131. },
  2132. "Component_[6430225031028498980]": {
  2133. "$type": "EditorEntityIconComponent",
  2134. "Id": 6430225031028498980
  2135. },
  2136. "Component_[8633773277579890589]": {
  2137. "$type": "EditorDisabledCompositionComponent",
  2138. "Id": 8633773277579890589
  2139. },
  2140. "Component_[9127186941005400797]": {
  2141. "$type": "EditorLockComponent",
  2142. "Id": 9127186941005400797
  2143. },
  2144. "Component_[9634498388101526903]": {
  2145. "$type": "EditorPendingCompositionComponent",
  2146. "Id": 9634498388101526903
  2147. }
  2148. }
  2149. },
  2150. "Entity_[29939467047419]": {
  2151. "Id": "Entity_[29939467047419]",
  2152. "Name": "robot_vacuum_suspensionpinright",
  2153. "Components": {
  2154. "Component_[13661706989266729235]": {
  2155. "$type": "EditorMaterialComponent",
  2156. "Id": 13661706989266729235,
  2157. "Controller": {
  2158. "Configuration": {
  2159. "materials": [
  2160. {
  2161. "Key": {
  2162. "materialSlotStableId": 642792236
  2163. },
  2164. "Value": {
  2165. "MaterialAsset": {
  2166. "assetId": {
  2167. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  2168. },
  2169. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  2170. }
  2171. }
  2172. }
  2173. ]
  2174. }
  2175. }
  2176. },
  2177. "Component_[1376852104874912431]": {
  2178. "$type": "EditorInspectorComponent",
  2179. "Id": 1376852104874912431
  2180. },
  2181. "Component_[14870085098253688937]": {
  2182. "$type": "EditorOnlyEntityComponent",
  2183. "Id": 14870085098253688937
  2184. },
  2185. "Component_[16241779256380439800]": {
  2186. "$type": "EditorDisabledCompositionComponent",
  2187. "Id": 16241779256380439800
  2188. },
  2189. "Component_[17160263932622188569]": {
  2190. "$type": "EditorEntityIconComponent",
  2191. "Id": 17160263932622188569
  2192. },
  2193. "Component_[25153992274563351]": {
  2194. "$type": "EditorPendingCompositionComponent",
  2195. "Id": 25153992274563351
  2196. },
  2197. "Component_[3326445525557959534]": {
  2198. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2199. "Id": 3326445525557959534,
  2200. "Parent Entity": "Entity_[6506158658343]"
  2201. },
  2202. "Component_[3619274201172812811]": {
  2203. "$type": "AZ::Render::EditorMeshComponent",
  2204. "Id": 3619274201172812811,
  2205. "Controller": {
  2206. "Configuration": {
  2207. "ModelAsset": {
  2208. "assetId": {
  2209. "guid": "{2707E8B4-F734-5A5A-8608-BE8E67739A55}",
  2210. "subId": 279595858
  2211. },
  2212. "assetHint": "assets/robovac/assets/robot_vacuum_suspensionpinright.azmodel"
  2213. }
  2214. }
  2215. }
  2216. },
  2217. "Component_[5335631611909721679]": {
  2218. "$type": "EditorEntitySortComponent",
  2219. "Id": 5335631611909721679
  2220. },
  2221. "Component_[6062135761031311688]": {
  2222. "$type": "EditorLockComponent",
  2223. "Id": 6062135761031311688
  2224. },
  2225. "Component_[9010939866745871567]": {
  2226. "$type": "EditorVisibilityComponent",
  2227. "Id": 9010939866745871567
  2228. }
  2229. }
  2230. },
  2231. "Entity_[29943762014715]": {
  2232. "Id": "Entity_[29943762014715]",
  2233. "Name": "robot_vacuum_towertop",
  2234. "Components": {
  2235. "Component_[10901145661741858064]": {
  2236. "$type": "EditorMaterialComponent",
  2237. "Id": 10901145661741858064,
  2238. "Controller": {
  2239. "Configuration": {
  2240. "materials": [
  2241. {
  2242. "Key": {
  2243. "materialSlotStableId": 642792236
  2244. },
  2245. "Value": {
  2246. "MaterialAsset": {
  2247. "assetId": {
  2248. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  2249. },
  2250. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  2251. }
  2252. }
  2253. },
  2254. {
  2255. "Key": {
  2256. "materialSlotStableId": 713658209
  2257. },
  2258. "Value": {
  2259. "MaterialAsset": {
  2260. "assetId": {
  2261. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  2262. },
  2263. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  2264. }
  2265. }
  2266. }
  2267. ]
  2268. }
  2269. }
  2270. },
  2271. "Component_[16438259712171818029]": {
  2272. "$type": "EditorOnlyEntityComponent",
  2273. "Id": 16438259712171818029
  2274. },
  2275. "Component_[17073211457377932781]": {
  2276. "$type": "EditorEntitySortComponent",
  2277. "Id": 17073211457377932781
  2278. },
  2279. "Component_[17639246189034827164]": {
  2280. "$type": "EditorVisibilityComponent",
  2281. "Id": 17639246189034827164
  2282. },
  2283. "Component_[18302758798047544602]": {
  2284. "$type": "EditorInspectorComponent",
  2285. "Id": 18302758798047544602
  2286. },
  2287. "Component_[2885749364514971795]": {
  2288. "$type": "AZ::Render::EditorMeshComponent",
  2289. "Id": 2885749364514971795,
  2290. "Controller": {
  2291. "Configuration": {
  2292. "ModelAsset": {
  2293. "assetId": {
  2294. "guid": "{9679E0B7-D5F3-53B1-AE62-90E1E4435A30}",
  2295. "subId": 277454678
  2296. },
  2297. "assetHint": "assets/robovac/assets/robot_vacuum_towertop.azmodel"
  2298. }
  2299. }
  2300. }
  2301. },
  2302. "Component_[4466859611759804964]": {
  2303. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2304. "Id": 4466859611759804964,
  2305. "Parent Entity": "Entity_[6506158658343]"
  2306. },
  2307. "Component_[5731077585958708357]": {
  2308. "$type": "EditorLockComponent",
  2309. "Id": 5731077585958708357
  2310. },
  2311. "Component_[5807683078544418992]": {
  2312. "$type": "EditorDisabledCompositionComponent",
  2313. "Id": 5807683078544418992
  2314. },
  2315. "Component_[845632872150187464]": {
  2316. "$type": "EditorPendingCompositionComponent",
  2317. "Id": 845632872150187464
  2318. },
  2319. "Component_[9591280779050569951]": {
  2320. "$type": "EditorEntityIconComponent",
  2321. "Id": 9591280779050569951
  2322. }
  2323. }
  2324. },
  2325. "Entity_[29948056982011]": {
  2326. "Id": "Entity_[29948056982011]",
  2327. "Name": "robot_vacuum_backbumpersensor",
  2328. "Components": {
  2329. "Component_[10607103240231917169]": {
  2330. "$type": "EditorVisibilityComponent",
  2331. "Id": 10607103240231917169
  2332. },
  2333. "Component_[10774933117776932712]": {
  2334. "$type": "EditorMaterialComponent",
  2335. "Id": 10774933117776932712,
  2336. "Controller": {
  2337. "Configuration": {
  2338. "materials": [
  2339. {
  2340. "Key": {
  2341. "materialSlotStableId": 1979588969
  2342. },
  2343. "Value": {
  2344. "MaterialAsset": {
  2345. "assetId": {
  2346. "guid": "{996BEAD2-C595-5851-BC40-A2A0F94A39A3}"
  2347. },
  2348. "assetHint": "assets/robovac/assets/robotvacuum_rubber_-_weathered.azmaterial"
  2349. }
  2350. }
  2351. }
  2352. ]
  2353. }
  2354. }
  2355. },
  2356. "Component_[10958693856247034196]": {
  2357. "$type": "AZ::Render::EditorMeshComponent",
  2358. "Id": 10958693856247034196,
  2359. "Controller": {
  2360. "Configuration": {
  2361. "ModelAsset": {
  2362. "assetId": {
  2363. "guid": "{200D5507-75F1-5A03-AE9F-C7E1067DD835}",
  2364. "subId": 268733097
  2365. },
  2366. "assetHint": "assets/robovac/assets/robot_vacuum_backbumpersensor.azmodel"
  2367. }
  2368. }
  2369. }
  2370. },
  2371. "Component_[16888724097605859568]": {
  2372. "$type": "EditorDisabledCompositionComponent",
  2373. "Id": 16888724097605859568
  2374. },
  2375. "Component_[17399400900561916105]": {
  2376. "$type": "EditorLockComponent",
  2377. "Id": 17399400900561916105
  2378. },
  2379. "Component_[17425599155819026738]": {
  2380. "$type": "EditorOnlyEntityComponent",
  2381. "Id": 17425599155819026738
  2382. },
  2383. "Component_[3992404803994896552]": {
  2384. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2385. "Id": 3992404803994896552,
  2386. "Parent Entity": "Entity_[6506158658343]",
  2387. "Transform Data": {
  2388. "Translate": [
  2389. 0.0,
  2390. 0.0,
  2391. 2.9802322387695313e-8
  2392. ]
  2393. }
  2394. },
  2395. "Component_[464428997971359781]": {
  2396. "$type": "EditorEntitySortComponent",
  2397. "Id": 464428997971359781
  2398. },
  2399. "Component_[6714861625275427256]": {
  2400. "$type": "EditorPendingCompositionComponent",
  2401. "Id": 6714861625275427256
  2402. },
  2403. "Component_[8594697907173469593]": {
  2404. "$type": "EditorInspectorComponent",
  2405. "Id": 8594697907173469593
  2406. },
  2407. "Component_[9568700914252394640]": {
  2408. "$type": "EditorEntityIconComponent",
  2409. "Id": 9568700914252394640
  2410. }
  2411. }
  2412. },
  2413. "Entity_[29952351949307]": {
  2414. "Id": "Entity_[29952351949307]",
  2415. "Name": "robot_vacuum_brushb",
  2416. "Components": {
  2417. "Component_[12899601372624759729]": {
  2418. "$type": "EditorOnlyEntityComponent",
  2419. "Id": 12899601372624759729
  2420. },
  2421. "Component_[14359914609974335934]": {
  2422. "$type": "EditorMaterialComponent",
  2423. "Id": 14359914609974335934,
  2424. "Controller": {
  2425. "Configuration": {
  2426. "materials": [
  2427. {
  2428. "Key": {
  2429. "materialSlotStableId": 3569418037
  2430. },
  2431. "Value": {
  2432. "MaterialAsset": {
  2433. "assetId": {
  2434. "guid": "{A1E7367C-4A8E-5C11-A768-0661925C18AC}"
  2435. },
  2436. "assetHint": "assets/robovac/assets/robotvacuum_rubber_-_bumpy.azmaterial"
  2437. }
  2438. }
  2439. }
  2440. ]
  2441. }
  2442. }
  2443. },
  2444. "Component_[14462753786176814970]": {
  2445. "$type": "EditorEntityIconComponent",
  2446. "Id": 14462753786176814970
  2447. },
  2448. "Component_[14941610346605136382]": {
  2449. "$type": "AZ::Render::EditorMeshComponent",
  2450. "Id": 14941610346605136382,
  2451. "Controller": {
  2452. "Configuration": {
  2453. "ModelAsset": {
  2454. "assetId": {
  2455. "guid": "{526E0345-A3AB-5384-B659-43C54D108444}",
  2456. "subId": 270271159
  2457. },
  2458. "assetHint": "assets/robovac/assets/robot_vacuum_brushb.azmodel"
  2459. }
  2460. }
  2461. }
  2462. },
  2463. "Component_[16761083537322087315]": {
  2464. "$type": "EditorInspectorComponent",
  2465. "Id": 16761083537322087315
  2466. },
  2467. "Component_[18011478391887594297]": {
  2468. "$type": "EditorLockComponent",
  2469. "Id": 18011478391887594297
  2470. },
  2471. "Component_[202200107630449173]": {
  2472. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2473. "Id": 202200107630449173,
  2474. "Parent Entity": "Entity_[6506158658343]"
  2475. },
  2476. "Component_[5852860452079171804]": {
  2477. "$type": "EditorVisibilityComponent",
  2478. "Id": 5852860452079171804
  2479. },
  2480. "Component_[7098133004677005239]": {
  2481. "$type": "EditorPendingCompositionComponent",
  2482. "Id": 7098133004677005239
  2483. },
  2484. "Component_[7328595170748800939]": {
  2485. "$type": "EditorEntitySortComponent",
  2486. "Id": 7328595170748800939
  2487. },
  2488. "Component_[7751471148092836156]": {
  2489. "$type": "EditorDisabledCompositionComponent",
  2490. "Id": 7751471148092836156
  2491. }
  2492. }
  2493. },
  2494. "Entity_[29956646916603]": {
  2495. "Id": "Entity_[29956646916603]",
  2496. "Name": "robot_vacuum_wheel_left",
  2497. "Components": {
  2498. "Component_[11244768160826187048]": {
  2499. "$type": "EditorOnlyEntityComponent",
  2500. "Id": 11244768160826187048
  2501. },
  2502. "Component_[11547087866408447036]": {
  2503. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2504. "Id": 11547087866408447036,
  2505. "Parent Entity": "Entity_[6506158658343]"
  2506. },
  2507. "Component_[12726666706066360153]": {
  2508. "$type": "EditorPendingCompositionComponent",
  2509. "Id": 12726666706066360153
  2510. },
  2511. "Component_[13922205784861414527]": {
  2512. "$type": "EditorDisabledCompositionComponent",
  2513. "Id": 13922205784861414527
  2514. },
  2515. "Component_[14062545106494077405]": {
  2516. "$type": "EditorEntitySortComponent",
  2517. "Id": 14062545106494077405
  2518. },
  2519. "Component_[1623897863065915511]": {
  2520. "$type": "EditorLockComponent",
  2521. "Id": 1623897863065915511
  2522. },
  2523. "Component_[16860373427348564323]": {
  2524. "$type": "EditorEntityIconComponent",
  2525. "Id": 16860373427348564323
  2526. },
  2527. "Component_[1900296011798294093]": {
  2528. "$type": "EditorMaterialComponent",
  2529. "Id": 1900296011798294093,
  2530. "Controller": {
  2531. "Configuration": {
  2532. "materials": [
  2533. {
  2534. "Key": {
  2535. "materialSlotStableId": 840771816
  2536. },
  2537. "Value": {
  2538. "MaterialAsset": {
  2539. "assetId": {
  2540. "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
  2541. },
  2542. "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
  2543. }
  2544. }
  2545. },
  2546. {
  2547. "Key": {
  2548. "materialSlotStableId": 1979588969
  2549. },
  2550. "Value": {
  2551. "MaterialAsset": {
  2552. "assetId": {
  2553. "guid": "{996BEAD2-C595-5851-BC40-A2A0F94A39A3}"
  2554. },
  2555. "assetHint": "assets/robovac/assets/robotvacuum_rubber_-_weathered.azmaterial"
  2556. }
  2557. }
  2558. }
  2559. ]
  2560. }
  2561. }
  2562. },
  2563. "Component_[2603373599504855572]": {
  2564. "$type": "AZ::Render::EditorMeshComponent",
  2565. "Id": 2603373599504855572,
  2566. "Controller": {
  2567. "Configuration": {
  2568. "ModelAsset": {
  2569. "assetId": {
  2570. "guid": "{4C0493EF-CE6C-523F-83C7-91D11E710079}",
  2571. "subId": 270189410
  2572. },
  2573. "assetHint": "assets/robovac/assets/robot_vacuum_wheel_left.azmodel"
  2574. }
  2575. }
  2576. }
  2577. },
  2578. "Component_[5234091435548567145]": {
  2579. "$type": "EditorInspectorComponent",
  2580. "Id": 5234091435548567145
  2581. },
  2582. "Component_[7938151298383120238]": {
  2583. "$type": "EditorVisibilityComponent",
  2584. "Id": 7938151298383120238
  2585. }
  2586. }
  2587. },
  2588. "Entity_[29960941883899]": {
  2589. "Id": "Entity_[29960941883899]",
  2590. "Name": "robot_vacuum_suspensionbracketleft",
  2591. "Components": {
  2592. "Component_[10843760723871178303]": {
  2593. "$type": "EditorEntitySortComponent",
  2594. "Id": 10843760723871178303
  2595. },
  2596. "Component_[12946777638102353407]": {
  2597. "$type": "EditorInspectorComponent",
  2598. "Id": 12946777638102353407
  2599. },
  2600. "Component_[15111140379365606835]": {
  2601. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2602. "Id": 15111140379365606835,
  2603. "Parent Entity": "Entity_[6506158658343]"
  2604. },
  2605. "Component_[15605340846412630545]": {
  2606. "$type": "EditorPendingCompositionComponent",
  2607. "Id": 15605340846412630545
  2608. },
  2609. "Component_[2551459834313168220]": {
  2610. "$type": "EditorMaterialComponent",
  2611. "Id": 2551459834313168220,
  2612. "Controller": {
  2613. "Configuration": {
  2614. "materials": [
  2615. {
  2616. "Key": {
  2617. "materialSlotStableId": 642792236
  2618. },
  2619. "Value": {
  2620. "MaterialAsset": {
  2621. "assetId": {
  2622. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  2623. },
  2624. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  2625. }
  2626. }
  2627. }
  2628. ]
  2629. }
  2630. }
  2631. },
  2632. "Component_[2666628857887568501]": {
  2633. "$type": "EditorDisabledCompositionComponent",
  2634. "Id": 2666628857887568501
  2635. },
  2636. "Component_[3340172902193628375]": {
  2637. "$type": "EditorOnlyEntityComponent",
  2638. "Id": 3340172902193628375
  2639. },
  2640. "Component_[3606538888856163283]": {
  2641. "$type": "AZ::Render::EditorMeshComponent",
  2642. "Id": 3606538888856163283,
  2643. "Controller": {
  2644. "Configuration": {
  2645. "ModelAsset": {
  2646. "assetId": {
  2647. "guid": "{BA8E1DF2-159C-5C10-BC64-0EC2256578B5}",
  2648. "subId": 280150939
  2649. },
  2650. "assetHint": "assets/robovac/assets/robot_vacuum_suspensionbracketleft.azmodel"
  2651. }
  2652. }
  2653. }
  2654. },
  2655. "Component_[6989258203518356489]": {
  2656. "$type": "EditorEntityIconComponent",
  2657. "Id": 6989258203518356489
  2658. },
  2659. "Component_[9281657231695438786]": {
  2660. "$type": "EditorLockComponent",
  2661. "Id": 9281657231695438786
  2662. },
  2663. "Component_[9880047728119638596]": {
  2664. "$type": "EditorVisibilityComponent",
  2665. "Id": 9880047728119638596
  2666. }
  2667. }
  2668. },
  2669. "Entity_[29965236851195]": {
  2670. "Id": "Entity_[29965236851195]",
  2671. "Name": "robot_vacuum_o_sensor_board",
  2672. "Components": {
  2673. "Component_[1156667096148260854]": {
  2674. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2675. "Id": 1156667096148260854,
  2676. "Parent Entity": "Entity_[6506158658343]"
  2677. },
  2678. "Component_[14076738285367838024]": {
  2679. "$type": "EditorDisabledCompositionComponent",
  2680. "Id": 14076738285367838024
  2681. },
  2682. "Component_[14164259235291776849]": {
  2683. "$type": "EditorVisibilityComponent",
  2684. "Id": 14164259235291776849
  2685. },
  2686. "Component_[14655558145422723260]": {
  2687. "$type": "EditorOnlyEntityComponent",
  2688. "Id": 14655558145422723260
  2689. },
  2690. "Component_[15666286428402309977]": {
  2691. "$type": "EditorMaterialComponent",
  2692. "Id": 15666286428402309977,
  2693. "Controller": {
  2694. "Configuration": {
  2695. "materials": [
  2696. {
  2697. "Key": {
  2698. "materialSlotStableId": 467460050
  2699. },
  2700. "Value": {
  2701. "MaterialAsset": {
  2702. "assetId": {
  2703. "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
  2704. },
  2705. "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
  2706. }
  2707. }
  2708. },
  2709. {
  2710. "Key": {
  2711. "materialSlotStableId": 642792236
  2712. },
  2713. "Value": {
  2714. "MaterialAsset": {
  2715. "assetId": {
  2716. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  2717. },
  2718. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  2719. }
  2720. }
  2721. },
  2722. {
  2723. "Key": {
  2724. "materialSlotStableId": 1247756951
  2725. },
  2726. "Value": {
  2727. "MaterialAsset": {
  2728. "assetId": {
  2729. "guid": "{B410214E-804E-5CD7-A152-17B36FBEA0E6}"
  2730. },
  2731. "assetHint": "assets/robovac/assets/robotvacuum_chip.azmaterial"
  2732. }
  2733. }
  2734. }
  2735. ]
  2736. }
  2737. }
  2738. },
  2739. "Component_[1678449190952949220]": {
  2740. "$type": "EditorLockComponent",
  2741. "Id": 1678449190952949220
  2742. },
  2743. "Component_[17491009838706205916]": {
  2744. "$type": "EditorPendingCompositionComponent",
  2745. "Id": 17491009838706205916
  2746. },
  2747. "Component_[18421908823466002119]": {
  2748. "$type": "EditorEntityIconComponent",
  2749. "Id": 18421908823466002119
  2750. },
  2751. "Component_[299216117097721405]": {
  2752. "$type": "AZ::Render::EditorMeshComponent",
  2753. "Id": 299216117097721405,
  2754. "Controller": {
  2755. "Configuration": {
  2756. "ModelAsset": {
  2757. "assetId": {
  2758. "guid": "{AD4B016C-E6FB-553B-A2C8-AF607D64F268}",
  2759. "subId": 273610155
  2760. },
  2761. "assetHint": "assets/robovac/assets/robot_vacuum_o_sensor_board.azmodel"
  2762. }
  2763. }
  2764. }
  2765. },
  2766. "Component_[3153684224292724288]": {
  2767. "$type": "EditorInspectorComponent",
  2768. "Id": 3153684224292724288
  2769. },
  2770. "Component_[8974640813787282107]": {
  2771. "$type": "EditorEntitySortComponent",
  2772. "Id": 8974640813787282107
  2773. }
  2774. }
  2775. },
  2776. "Entity_[29969531818491]": {
  2777. "Id": "Entity_[29969531818491]",
  2778. "Name": "robot_vacuum_pariscopetube2",
  2779. "Components": {
  2780. "Component_[10304117471988230418]": {
  2781. "$type": "EditorOnlyEntityComponent",
  2782. "Id": 10304117471988230418
  2783. },
  2784. "Component_[11439563233684343748]": {
  2785. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2786. "Id": 11439563233684343748,
  2787. "Parent Entity": "Entity_[6506158658343]"
  2788. },
  2789. "Component_[1614729706419118426]": {
  2790. "$type": "EditorInspectorComponent",
  2791. "Id": 1614729706419118426
  2792. },
  2793. "Component_[17440446447410127143]": {
  2794. "$type": "AZ::Render::EditorMeshComponent",
  2795. "Id": 17440446447410127143,
  2796. "Controller": {
  2797. "Configuration": {
  2798. "ModelAsset": {
  2799. "assetId": {
  2800. "guid": "{C4782BA6-ED02-5D3C-8197-460309515802}",
  2801. "subId": 275719194
  2802. },
  2803. "assetHint": "assets/robovac/assets/robot_vacuum_pariscopetube2.azmodel"
  2804. }
  2805. }
  2806. }
  2807. },
  2808. "Component_[17764376460995465825]": {
  2809. "$type": "EditorDisabledCompositionComponent",
  2810. "Id": 17764376460995465825
  2811. },
  2812. "Component_[18410157112535562065]": {
  2813. "$type": "EditorVisibilityComponent",
  2814. "Id": 18410157112535562065
  2815. },
  2816. "Component_[3523791602667311912]": {
  2817. "$type": "EditorEntitySortComponent",
  2818. "Id": 3523791602667311912
  2819. },
  2820. "Component_[5141697230707294358]": {
  2821. "$type": "EditorLockComponent",
  2822. "Id": 5141697230707294358
  2823. },
  2824. "Component_[5235798553595209213]": {
  2825. "$type": "EditorMaterialComponent",
  2826. "Id": 5235798553595209213,
  2827. "Controller": {
  2828. "Configuration": {
  2829. "materials": [
  2830. {
  2831. "Key": {
  2832. "materialSlotStableId": 642792236
  2833. },
  2834. "Value": {
  2835. "MaterialAsset": {
  2836. "assetId": {
  2837. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  2838. },
  2839. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  2840. }
  2841. }
  2842. }
  2843. ]
  2844. }
  2845. }
  2846. },
  2847. "Component_[5518781946181943462]": {
  2848. "$type": "EditorEntityIconComponent",
  2849. "Id": 5518781946181943462
  2850. },
  2851. "Component_[951254728151626344]": {
  2852. "$type": "EditorPendingCompositionComponent",
  2853. "Id": 951254728151626344
  2854. }
  2855. }
  2856. },
  2857. "Entity_[29973826785787]": {
  2858. "Id": "Entity_[29973826785787]",
  2859. "Name": "robot_vacuum_navsensor_right",
  2860. "Components": {
  2861. "Component_[12018261331184779302]": {
  2862. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2863. "Id": 12018261331184779302,
  2864. "Parent Entity": "Entity_[6506158658343]"
  2865. },
  2866. "Component_[16545126784841313456]": {
  2867. "$type": "AZ::Render::EditorMeshComponent",
  2868. "Id": 16545126784841313456,
  2869. "Controller": {
  2870. "Configuration": {
  2871. "ModelAsset": {
  2872. "assetId": {
  2873. "guid": "{C352F5A2-0626-5B90-A283-5E8251D6B693}",
  2874. "subId": 272195081
  2875. },
  2876. "assetHint": "assets/robovac/assets/robot_vacuum_navsensor_right.azmodel"
  2877. }
  2878. }
  2879. }
  2880. },
  2881. "Component_[16663873681846995418]": {
  2882. "$type": "EditorOnlyEntityComponent",
  2883. "Id": 16663873681846995418
  2884. },
  2885. "Component_[17078704738758693698]": {
  2886. "$type": "EditorDisabledCompositionComponent",
  2887. "Id": 17078704738758693698
  2888. },
  2889. "Component_[17625718939444989840]": {
  2890. "$type": "EditorMaterialComponent",
  2891. "Id": 17625718939444989840,
  2892. "Controller": {
  2893. "Configuration": {
  2894. "materials": [
  2895. {
  2896. "Key": {
  2897. "materialSlotStableId": 642792236
  2898. },
  2899. "Value": {
  2900. "MaterialAsset": {
  2901. "assetId": {
  2902. "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
  2903. },
  2904. "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
  2905. }
  2906. }
  2907. }
  2908. ]
  2909. }
  2910. }
  2911. },
  2912. "Component_[3909921484646562599]": {
  2913. "$type": "EditorInspectorComponent",
  2914. "Id": 3909921484646562599
  2915. },
  2916. "Component_[6873145759493866747]": {
  2917. "$type": "EditorEntityIconComponent",
  2918. "Id": 6873145759493866747
  2919. },
  2920. "Component_[719399110469979006]": {
  2921. "$type": "EditorEntitySortComponent",
  2922. "Id": 719399110469979006
  2923. },
  2924. "Component_[7553567324437214623]": {
  2925. "$type": "EditorLockComponent",
  2926. "Id": 7553567324437214623
  2927. },
  2928. "Component_[800566869202382851]": {
  2929. "$type": "EditorVisibilityComponent",
  2930. "Id": 800566869202382851
  2931. },
  2932. "Component_[8051037575167622138]": {
  2933. "$type": "EditorPendingCompositionComponent",
  2934. "Id": 8051037575167622138
  2935. }
  2936. }
  2937. },
  2938. "Entity_[29978121753083]": {
  2939. "Id": "Entity_[29978121753083]",
  2940. "Name": "robot_vacuum_o_leftsensor",
  2941. "Components": {
  2942. "Component_[11066946282277036911]": {
  2943. "$type": "EditorPendingCompositionComponent",
  2944. "Id": 11066946282277036911
  2945. },
  2946. "Component_[11601242142187750433]": {
  2947. "$type": "EditorLockComponent",
  2948. "Id": 11601242142187750433
  2949. },
  2950. "Component_[12547982344495647208]": {
  2951. "$type": "EditorInspectorComponent",
  2952. "Id": 12547982344495647208
  2953. },
  2954. "Component_[15074524417671635060]": {
  2955. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2956. "Id": 15074524417671635060,
  2957. "Parent Entity": "Entity_[6506158658343]"
  2958. },
  2959. "Component_[16418433750839317280]": {
  2960. "$type": "EditorDisabledCompositionComponent",
  2961. "Id": 16418433750839317280
  2962. },
  2963. "Component_[16709684141193916503]": {
  2964. "$type": "EditorMaterialComponent",
  2965. "Id": 16709684141193916503,
  2966. "Controller": {
  2967. "Configuration": {
  2968. "materials": [
  2969. {
  2970. "Key": {
  2971. "materialSlotStableId": 467460050
  2972. },
  2973. "Value": {
  2974. "MaterialAsset": {
  2975. "assetId": {
  2976. "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
  2977. },
  2978. "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
  2979. }
  2980. }
  2981. },
  2982. {
  2983. "Key": {
  2984. "materialSlotStableId": 3551048943
  2985. },
  2986. "Value": {
  2987. "MaterialAsset": {
  2988. "assetId": {
  2989. "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
  2990. },
  2991. "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
  2992. }
  2993. }
  2994. }
  2995. ]
  2996. }
  2997. }
  2998. },
  2999. "Component_[17576515446066858482]": {
  3000. "$type": "EditorVisibilityComponent",
  3001. "Id": 17576515446066858482
  3002. },
  3003. "Component_[3883591470894058362]": {
  3004. "$type": "AZ::Render::EditorMeshComponent",
  3005. "Id": 3883591470894058362,
  3006. "Controller": {
  3007. "Configuration": {
  3008. "ModelAsset": {
  3009. "assetId": {
  3010. "guid": "{F18D5EFA-5B8D-53EC-AA6F-ADDDD0891EC2}",
  3011. "subId": 272654703
  3012. },
  3013. "assetHint": "assets/robovac/assets/robot_vacuum_o_leftsensor.azmodel"
  3014. }
  3015. }
  3016. }
  3017. },
  3018. "Component_[6904489747366718141]": {
  3019. "$type": "EditorEntitySortComponent",
  3020. "Id": 6904489747366718141
  3021. },
  3022. "Component_[7818376573401693370]": {
  3023. "$type": "EditorEntityIconComponent",
  3024. "Id": 7818376573401693370
  3025. },
  3026. "Component_[8837684612698729081]": {
  3027. "$type": "EditorOnlyEntityComponent",
  3028. "Id": 8837684612698729081
  3029. }
  3030. }
  3031. },
  3032. "Entity_[29982416720379]": {
  3033. "Id": "Entity_[29982416720379]",
  3034. "Name": "robot_vacuum_gearboxleft",
  3035. "Components": {
  3036. "Component_[11984952559158485498]": {
  3037. "$type": "EditorDisabledCompositionComponent",
  3038. "Id": 11984952559158485498
  3039. },
  3040. "Component_[13883695774641414570]": {
  3041. "$type": "EditorInspectorComponent",
  3042. "Id": 13883695774641414570
  3043. },
  3044. "Component_[14302659583683576937]": {
  3045. "$type": "EditorVisibilityComponent",
  3046. "Id": 14302659583683576937
  3047. },
  3048. "Component_[15205423224621303423]": {
  3049. "$type": "EditorMaterialComponent",
  3050. "Id": 15205423224621303423,
  3051. "Controller": {
  3052. "Configuration": {
  3053. "materials": [
  3054. {
  3055. "Key": {
  3056. "materialSlotStableId": 642792236
  3057. },
  3058. "Value": {
  3059. "MaterialAsset": {
  3060. "assetId": {
  3061. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  3062. },
  3063. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  3064. }
  3065. }
  3066. },
  3067. {
  3068. "Key": {
  3069. "materialSlotStableId": 713658209
  3070. },
  3071. "Value": {
  3072. "MaterialAsset": {
  3073. "assetId": {
  3074. "guid": "{0AF7BE25-7818-5DEB-A848-FBF2575C04CA}"
  3075. },
  3076. "assetHint": "assets/robovac/assets/robotvacuum_plastic_-_sensor.azmaterial"
  3077. }
  3078. }
  3079. }
  3080. ]
  3081. }
  3082. }
  3083. },
  3084. "Component_[15957032383373808758]": {
  3085. "$type": "EditorPendingCompositionComponent",
  3086. "Id": 15957032383373808758
  3087. },
  3088. "Component_[18005221952569609025]": {
  3089. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3090. "Id": 18005221952569609025,
  3091. "Parent Entity": "Entity_[6506158658343]"
  3092. },
  3093. "Component_[2001254569755661517]": {
  3094. "$type": "EditorLockComponent",
  3095. "Id": 2001254569755661517
  3096. },
  3097. "Component_[4293762197237276665]": {
  3098. "$type": "AZ::Render::EditorMeshComponent",
  3099. "Id": 4293762197237276665,
  3100. "Controller": {
  3101. "Configuration": {
  3102. "ModelAsset": {
  3103. "assetId": {
  3104. "guid": "{1AC71EDF-C901-5B2A-B7CB-8FC6A83C423D}",
  3105. "subId": 273459944
  3106. },
  3107. "assetHint": "assets/robovac/assets/robot_vacuum_gearboxleft.azmodel"
  3108. }
  3109. }
  3110. }
  3111. },
  3112. "Component_[4591041123605381219]": {
  3113. "$type": "EditorEntityIconComponent",
  3114. "Id": 4591041123605381219
  3115. },
  3116. "Component_[4852401704918741352]": {
  3117. "$type": "EditorOnlyEntityComponent",
  3118. "Id": 4852401704918741352
  3119. },
  3120. "Component_[9766530642002435173]": {
  3121. "$type": "EditorEntitySortComponent",
  3122. "Id": 9766530642002435173
  3123. }
  3124. }
  3125. },
  3126. "Entity_[29986711687675]": {
  3127. "Id": "Entity_[29986711687675]",
  3128. "Name": "robot_vacuum_suspensionpinleft",
  3129. "Components": {
  3130. "Component_[11644099126241511922]": {
  3131. "$type": "EditorEntityIconComponent",
  3132. "Id": 11644099126241511922
  3133. },
  3134. "Component_[12299844390103792750]": {
  3135. "$type": "EditorPendingCompositionComponent",
  3136. "Id": 12299844390103792750
  3137. },
  3138. "Component_[12461709617141381815]": {
  3139. "$type": "AZ::Render::EditorMeshComponent",
  3140. "Id": 12461709617141381815,
  3141. "Controller": {
  3142. "Configuration": {
  3143. "ModelAsset": {
  3144. "assetId": {
  3145. "guid": "{2F2FAB67-CA72-54E7-838D-766CB087679A}",
  3146. "subId": 283612820
  3147. },
  3148. "assetHint": "assets/robovac/assets/robot_vacuum_suspensionpinleft.azmodel"
  3149. }
  3150. }
  3151. }
  3152. },
  3153. "Component_[12896358021212703794]": {
  3154. "$type": "EditorOnlyEntityComponent",
  3155. "Id": 12896358021212703794
  3156. },
  3157. "Component_[14462526257775052370]": {
  3158. "$type": "EditorLockComponent",
  3159. "Id": 14462526257775052370
  3160. },
  3161. "Component_[14632875078243209710]": {
  3162. "$type": "EditorDisabledCompositionComponent",
  3163. "Id": 14632875078243209710
  3164. },
  3165. "Component_[16665646200351104073]": {
  3166. "$type": "EditorMaterialComponent",
  3167. "Id": 16665646200351104073,
  3168. "Controller": {
  3169. "Configuration": {
  3170. "materials": [
  3171. {
  3172. "Key": {
  3173. "materialSlotStableId": 642792236
  3174. },
  3175. "Value": {
  3176. "MaterialAsset": {
  3177. "assetId": {
  3178. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  3179. },
  3180. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  3181. }
  3182. }
  3183. }
  3184. ]
  3185. }
  3186. }
  3187. },
  3188. "Component_[16684564562606483997]": {
  3189. "$type": "EditorInspectorComponent",
  3190. "Id": 16684564562606483997
  3191. },
  3192. "Component_[4613754866214292476]": {
  3193. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3194. "Id": 4613754866214292476,
  3195. "Parent Entity": "Entity_[6506158658343]"
  3196. },
  3197. "Component_[4713074442491719492]": {
  3198. "$type": "EditorVisibilityComponent",
  3199. "Id": 4713074442491719492
  3200. },
  3201. "Component_[4882396129806514916]": {
  3202. "$type": "EditorEntitySortComponent",
  3203. "Id": 4882396129806514916
  3204. }
  3205. }
  3206. },
  3207. "Entity_[29991006654971]": {
  3208. "Id": "Entity_[29991006654971]",
  3209. "Name": "robot_vacuum_navsensor_left",
  3210. "Components": {
  3211. "Component_[1380808013849181618]": {
  3212. "$type": "EditorVisibilityComponent",
  3213. "Id": 1380808013849181618
  3214. },
  3215. "Component_[16263631943659708417]": {
  3216. "$type": "EditorOnlyEntityComponent",
  3217. "Id": 16263631943659708417
  3218. },
  3219. "Component_[16570651763080717548]": {
  3220. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3221. "Id": 16570651763080717548,
  3222. "Parent Entity": "Entity_[6506158658343]"
  3223. },
  3224. "Component_[16696465630512642554]": {
  3225. "$type": "AZ::Render::EditorMeshComponent",
  3226. "Id": 16696465630512642554,
  3227. "Controller": {
  3228. "Configuration": {
  3229. "ModelAsset": {
  3230. "assetId": {
  3231. "guid": "{1FD55167-737B-5E3F-8AFD-9F833B6CECCB}",
  3232. "subId": 275423677
  3233. },
  3234. "assetHint": "assets/robovac/assets/robot_vacuum_navsensor_left.azmodel"
  3235. }
  3236. }
  3237. }
  3238. },
  3239. "Component_[17993939794131594135]": {
  3240. "$type": "EditorPendingCompositionComponent",
  3241. "Id": 17993939794131594135
  3242. },
  3243. "Component_[4261845577561539323]": {
  3244. "$type": "EditorMaterialComponent",
  3245. "Id": 4261845577561539323,
  3246. "Controller": {
  3247. "Configuration": {
  3248. "materials": [
  3249. {
  3250. "Key": {
  3251. "materialSlotStableId": 642792236
  3252. },
  3253. "Value": {
  3254. "MaterialAsset": {
  3255. "assetId": {
  3256. "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
  3257. },
  3258. "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
  3259. }
  3260. }
  3261. }
  3262. ]
  3263. }
  3264. }
  3265. },
  3266. "Component_[5809364070817595727]": {
  3267. "$type": "EditorEntitySortComponent",
  3268. "Id": 5809364070817595727
  3269. },
  3270. "Component_[603401864020856526]": {
  3271. "$type": "EditorEntityIconComponent",
  3272. "Id": 603401864020856526
  3273. },
  3274. "Component_[6555720991509805955]": {
  3275. "$type": "EditorLockComponent",
  3276. "Id": 6555720991509805955
  3277. },
  3278. "Component_[6835581242267498103]": {
  3279. "$type": "EditorInspectorComponent",
  3280. "Id": 6835581242267498103
  3281. },
  3282. "Component_[7537063425890049355]": {
  3283. "$type": "EditorDisabledCompositionComponent",
  3284. "Id": 7537063425890049355
  3285. }
  3286. }
  3287. },
  3288. "Entity_[29995301622267]": {
  3289. "Id": "Entity_[29995301622267]",
  3290. "Name": "robot_vacuum_vacvasedoor",
  3291. "Components": {
  3292. "Component_[11880722833110957786]": {
  3293. "$type": "EditorVisibilityComponent",
  3294. "Id": 11880722833110957786
  3295. },
  3296. "Component_[11987811603410743577]": {
  3297. "$type": "EditorEntityIconComponent",
  3298. "Id": 11987811603410743577
  3299. },
  3300. "Component_[12998870142110447449]": {
  3301. "$type": "EditorMaterialComponent",
  3302. "Id": 12998870142110447449,
  3303. "Controller": {
  3304. "Configuration": {
  3305. "materials": [
  3306. {
  3307. "Key": {
  3308. "materialSlotStableId": 1687924491
  3309. },
  3310. "Value": {
  3311. "MaterialAsset": {
  3312. "assetId": {
  3313. "guid": "{E1884D12-B60F-5CF7-8BD0-D8EAFF0FE181}"
  3314. },
  3315. "assetHint": "assets/robovac/assets/robotvacuum_polymide_kapton_.azmaterial"
  3316. }
  3317. }
  3318. }
  3319. ]
  3320. }
  3321. }
  3322. },
  3323. "Component_[15026157217562700326]": {
  3324. "$type": "EditorEntitySortComponent",
  3325. "Id": 15026157217562700326
  3326. },
  3327. "Component_[1606793269942993686]": {
  3328. "$type": "EditorLockComponent",
  3329. "Id": 1606793269942993686
  3330. },
  3331. "Component_[3598123321435834848]": {
  3332. "$type": "EditorInspectorComponent",
  3333. "Id": 3598123321435834848
  3334. },
  3335. "Component_[7162383783240629247]": {
  3336. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3337. "Id": 7162383783240629247,
  3338. "Parent Entity": "Entity_[6506158658343]"
  3339. },
  3340. "Component_[7755340245799285993]": {
  3341. "$type": "AZ::Render::EditorMeshComponent",
  3342. "Id": 7755340245799285993,
  3343. "Controller": {
  3344. "Configuration": {
  3345. "ModelAsset": {
  3346. "assetId": {
  3347. "guid": "{9EC51CAC-6D19-5CE6-822D-114E6A0A9686}",
  3348. "subId": 275582958
  3349. },
  3350. "assetHint": "assets/robovac/assets/robot_vacuum_vacvasedoor.azmodel"
  3351. }
  3352. }
  3353. }
  3354. },
  3355. "Component_[8646172083658144112]": {
  3356. "$type": "EditorOnlyEntityComponent",
  3357. "Id": 8646172083658144112
  3358. },
  3359. "Component_[9033172683501361641]": {
  3360. "$type": "EditorDisabledCompositionComponent",
  3361. "Id": 9033172683501361641
  3362. },
  3363. "Component_[9310383425768524804]": {
  3364. "$type": "EditorPendingCompositionComponent",
  3365. "Id": 9310383425768524804
  3366. }
  3367. }
  3368. },
  3369. "Entity_[29999596589563]": {
  3370. "Id": "Entity_[29999596589563]",
  3371. "Name": "robot_vacuum_bottomwheelone",
  3372. "Components": {
  3373. "Component_[17098427013790263647]": {
  3374. "$type": "EditorEntitySortComponent",
  3375. "Id": 17098427013790263647
  3376. },
  3377. "Component_[2435213322421110972]": {
  3378. "$type": "EditorVisibilityComponent",
  3379. "Id": 2435213322421110972
  3380. },
  3381. "Component_[2489777411115429950]": {
  3382. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3383. "Id": 2489777411115429950,
  3384. "Parent Entity": "Entity_[6506158658343]",
  3385. "Transform Data": {
  3386. "Translate": [
  3387. 0.0,
  3388. 0.0,
  3389. 2.9802322387695313e-8
  3390. ]
  3391. }
  3392. },
  3393. "Component_[3698799949376954268]": {
  3394. "$type": "EditorInspectorComponent",
  3395. "Id": 3698799949376954268
  3396. },
  3397. "Component_[4808059948074318028]": {
  3398. "$type": "EditorDisabledCompositionComponent",
  3399. "Id": 4808059948074318028
  3400. },
  3401. "Component_[498704701938875074]": {
  3402. "$type": "EditorLockComponent",
  3403. "Id": 498704701938875074
  3404. },
  3405. "Component_[5514337834801407013]": {
  3406. "$type": "EditorOnlyEntityComponent",
  3407. "Id": 5514337834801407013
  3408. },
  3409. "Component_[6116338082524157478]": {
  3410. "$type": "AZ::Render::EditorMeshComponent",
  3411. "Id": 6116338082524157478,
  3412. "Controller": {
  3413. "Configuration": {
  3414. "ModelAsset": {
  3415. "assetId": {
  3416. "guid": "{ED25280D-25D6-5B96-98FF-5609D1F5B19D}",
  3417. "subId": 277321324
  3418. },
  3419. "assetHint": "assets/robovac/assets/robot_vacuum_bottomwheelone.azmodel"
  3420. }
  3421. }
  3422. }
  3423. },
  3424. "Component_[6866919899933988363]": {
  3425. "$type": "EditorPendingCompositionComponent",
  3426. "Id": 6866919899933988363
  3427. },
  3428. "Component_[7603001383940913731]": {
  3429. "$type": "EditorEntityIconComponent",
  3430. "Id": 7603001383940913731
  3431. },
  3432. "Component_[7975178403225927265]": {
  3433. "$type": "EditorMaterialComponent",
  3434. "Id": 7975178403225927265,
  3435. "Controller": {
  3436. "Configuration": {
  3437. "materials": [
  3438. {
  3439. "Key": {
  3440. "materialSlotStableId": 713658209
  3441. },
  3442. "Value": {
  3443. "MaterialAsset": {
  3444. "assetId": {
  3445. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  3446. },
  3447. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  3448. }
  3449. }
  3450. },
  3451. {
  3452. "Key": {
  3453. "materialSlotStableId": 840771816
  3454. },
  3455. "Value": {
  3456. "MaterialAsset": {
  3457. "assetId": {
  3458. "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
  3459. },
  3460. "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
  3461. }
  3462. }
  3463. }
  3464. ]
  3465. }
  3466. }
  3467. }
  3468. }
  3469. },
  3470. "Entity_[30003891556859]": {
  3471. "Id": "Entity_[30003891556859]",
  3472. "Name": "robot_vacuum_rails",
  3473. "Components": {
  3474. "Component_[13583003163065014935]": {
  3475. "$type": "EditorVisibilityComponent",
  3476. "Id": 13583003163065014935
  3477. },
  3478. "Component_[15067095634436349471]": {
  3479. "$type": "EditorDisabledCompositionComponent",
  3480. "Id": 15067095634436349471
  3481. },
  3482. "Component_[16011275311072274726]": {
  3483. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3484. "Id": 16011275311072274726,
  3485. "Parent Entity": "Entity_[6506158658343]"
  3486. },
  3487. "Component_[16838630867639204964]": {
  3488. "$type": "EditorMaterialComponent",
  3489. "Id": 16838630867639204964,
  3490. "Controller": {
  3491. "Configuration": {
  3492. "materials": [
  3493. {
  3494. "Key": {
  3495. "materialSlotStableId": 642792236
  3496. },
  3497. "Value": {
  3498. "MaterialAsset": {
  3499. "assetId": {
  3500. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  3501. },
  3502. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  3503. }
  3504. }
  3505. }
  3506. ]
  3507. }
  3508. }
  3509. },
  3510. "Component_[169500293911945972]": {
  3511. "$type": "EditorOnlyEntityComponent",
  3512. "Id": 169500293911945972
  3513. },
  3514. "Component_[1999492667193267803]": {
  3515. "$type": "AZ::Render::EditorMeshComponent",
  3516. "Id": 1999492667193267803,
  3517. "Controller": {
  3518. "Configuration": {
  3519. "ModelAsset": {
  3520. "assetId": {
  3521. "guid": "{B7B22E2E-8891-5074-A6D1-59F52E4ED9D5}",
  3522. "subId": 279195488
  3523. },
  3524. "assetHint": "assets/robovac/assets/robot_vacuum_rails.azmodel"
  3525. }
  3526. }
  3527. }
  3528. },
  3529. "Component_[2716721790910499113]": {
  3530. "$type": "EditorEntitySortComponent",
  3531. "Id": 2716721790910499113
  3532. },
  3533. "Component_[3906801444970843942]": {
  3534. "$type": "EditorInspectorComponent",
  3535. "Id": 3906801444970843942
  3536. },
  3537. "Component_[5277479938788874759]": {
  3538. "$type": "EditorLockComponent",
  3539. "Id": 5277479938788874759
  3540. },
  3541. "Component_[9142641814314589986]": {
  3542. "$type": "EditorEntityIconComponent",
  3543. "Id": 9142641814314589986
  3544. },
  3545. "Component_[9604075921779488569]": {
  3546. "$type": "EditorPendingCompositionComponent",
  3547. "Id": 9604075921779488569
  3548. }
  3549. }
  3550. },
  3551. "Entity_[30008186524155]": {
  3552. "Id": "Entity_[30008186524155]",
  3553. "Name": "robot_vacuum_capture",
  3554. "Components": {
  3555. "Component_[10407116969981419608]": {
  3556. "$type": "EditorEntityIconComponent",
  3557. "Id": 10407116969981419608
  3558. },
  3559. "Component_[13095834662090245426]": {
  3560. "$type": "EditorInspectorComponent",
  3561. "Id": 13095834662090245426
  3562. },
  3563. "Component_[13531111235357671619]": {
  3564. "$type": "EditorDisabledCompositionComponent",
  3565. "Id": 13531111235357671619
  3566. },
  3567. "Component_[17267597419950408018]": {
  3568. "$type": "AZ::Render::EditorMeshComponent",
  3569. "Id": 17267597419950408018,
  3570. "Controller": {
  3571. "Configuration": {
  3572. "ModelAsset": {
  3573. "assetId": {
  3574. "guid": "{ECF1C183-6C68-5CCD-AD24-4924C65CB0C7}",
  3575. "subId": 274574925
  3576. },
  3577. "assetHint": "assets/robovac/assets/robot_vacuum_capture.azmodel"
  3578. }
  3579. }
  3580. }
  3581. },
  3582. "Component_[17717685925639233758]": {
  3583. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3584. "Id": 17717685925639233758,
  3585. "Parent Entity": "Entity_[6506158658343]"
  3586. },
  3587. "Component_[17812014709847617194]": {
  3588. "$type": "EditorVisibilityComponent",
  3589. "Id": 17812014709847617194
  3590. },
  3591. "Component_[17911155472116189313]": {
  3592. "$type": "EditorLockComponent",
  3593. "Id": 17911155472116189313
  3594. },
  3595. "Component_[2654742047251156582]": {
  3596. "$type": "EditorMaterialComponent",
  3597. "Id": 2654742047251156582,
  3598. "Controller": {
  3599. "Configuration": {
  3600. "materials": [
  3601. {
  3602. "Key": {
  3603. "materialSlotStableId": 840771816
  3604. },
  3605. "Value": {
  3606. "MaterialAsset": {
  3607. "assetId": {
  3608. "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
  3609. },
  3610. "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
  3611. }
  3612. }
  3613. }
  3614. ]
  3615. }
  3616. }
  3617. },
  3618. "Component_[6352395979757277379]": {
  3619. "$type": "EditorPendingCompositionComponent",
  3620. "Id": 6352395979757277379
  3621. },
  3622. "Component_[7390230706451251440]": {
  3623. "$type": "EditorOnlyEntityComponent",
  3624. "Id": 7390230706451251440
  3625. },
  3626. "Component_[9400612936246896464]": {
  3627. "$type": "EditorEntitySortComponent",
  3628. "Id": 9400612936246896464
  3629. }
  3630. }
  3631. },
  3632. "Entity_[30012481491451]": {
  3633. "Id": "Entity_[30012481491451]",
  3634. "Name": "robot_vacuum_pariscopetube3",
  3635. "Components": {
  3636. "Component_[12880168912967059759]": {
  3637. "$type": "EditorLockComponent",
  3638. "Id": 12880168912967059759
  3639. },
  3640. "Component_[15778580180650212910]": {
  3641. "$type": "EditorPendingCompositionComponent",
  3642. "Id": 15778580180650212910
  3643. },
  3644. "Component_[16768404115373048488]": {
  3645. "$type": "EditorOnlyEntityComponent",
  3646. "Id": 16768404115373048488
  3647. },
  3648. "Component_[3625889452996272264]": {
  3649. "$type": "EditorEntitySortComponent",
  3650. "Id": 3625889452996272264
  3651. },
  3652. "Component_[4887345707029686]": {
  3653. "$type": "AZ::Render::EditorMeshComponent",
  3654. "Id": 4887345707029686,
  3655. "Controller": {
  3656. "Configuration": {
  3657. "ModelAsset": {
  3658. "assetId": {
  3659. "guid": "{64119CB4-A7C6-5969-B6C0-1EE5E6FC2252}",
  3660. "subId": 275256460
  3661. },
  3662. "assetHint": "assets/robovac/assets/robot_vacuum_pariscopetube3.azmodel"
  3663. }
  3664. }
  3665. }
  3666. },
  3667. "Component_[6155009947093850461]": {
  3668. "$type": "EditorInspectorComponent",
  3669. "Id": 6155009947093850461
  3670. },
  3671. "Component_[6325646382614719107]": {
  3672. "$type": "EditorDisabledCompositionComponent",
  3673. "Id": 6325646382614719107
  3674. },
  3675. "Component_[654981359032710042]": {
  3676. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3677. "Id": 654981359032710042,
  3678. "Parent Entity": "Entity_[6506158658343]"
  3679. },
  3680. "Component_[7326914943494189567]": {
  3681. "$type": "EditorMaterialComponent",
  3682. "Id": 7326914943494189567,
  3683. "Controller": {
  3684. "Configuration": {
  3685. "materials": [
  3686. {
  3687. "Key": {
  3688. "materialSlotStableId": 642792236
  3689. },
  3690. "Value": {
  3691. "MaterialAsset": {
  3692. "assetId": {
  3693. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  3694. },
  3695. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  3696. }
  3697. }
  3698. }
  3699. ]
  3700. }
  3701. }
  3702. },
  3703. "Component_[7703415841191096284]": {
  3704. "$type": "EditorVisibilityComponent",
  3705. "Id": 7703415841191096284
  3706. },
  3707. "Component_[8457773976516588943]": {
  3708. "$type": "EditorEntityIconComponent",
  3709. "Id": 8457773976516588943
  3710. }
  3711. }
  3712. },
  3713. "Entity_[30016776458747]": {
  3714. "Id": "Entity_[30016776458747]",
  3715. "Name": "robot_vacuum_base_link",
  3716. "Components": {
  3717. "Component_[11858580036815791673]": {
  3718. "$type": "EditorStaticRigidBodyComponent",
  3719. "Id": 11858580036815791673
  3720. },
  3721. "Component_[1817880946152815022]": {
  3722. "$type": "EditorMeshColliderComponent",
  3723. "Id": 1817880946152815022,
  3724. "ColliderConfiguration": {
  3725. "InSceneQueries": false,
  3726. "MaterialSlots": {
  3727. "Slots": [
  3728. {
  3729. "Name": "ABS (White)"
  3730. }
  3731. ]
  3732. }
  3733. },
  3734. "ShapeConfiguration": {
  3735. "PhysicsAsset": {
  3736. "Asset": {
  3737. "assetId": {
  3738. "guid": "{5AE935FF-A90A-59AF-BFD4-F38CEB3F8CDF}",
  3739. "subId": 3876031564
  3740. },
  3741. "assetHint": "assets/robovac/assets/robot_vacuum_base_link.fbx.pxmesh"
  3742. },
  3743. "Configuration": {
  3744. "PhysicsAsset": {
  3745. "assetId": {
  3746. "guid": "{5AE935FF-A90A-59AF-BFD4-F38CEB3F8CDF}",
  3747. "subId": 3876031564
  3748. },
  3749. "loadBehavior": "QueueLoad",
  3750. "assetHint": "assets/robovac/assets/robot_vacuum_base_link.fbx.pxmesh"
  3751. }
  3752. }
  3753. }
  3754. }
  3755. },
  3756. "Component_[344085018016650483]": {
  3757. "$type": "EditorPendingCompositionComponent",
  3758. "Id": 344085018016650483
  3759. },
  3760. "Component_[3599416590072694646]": {
  3761. "$type": "AZ::Render::EditorMeshComponent",
  3762. "Id": 3599416590072694646,
  3763. "Controller": {
  3764. "Configuration": {
  3765. "ModelAsset": {
  3766. "assetId": {
  3767. "guid": "{5AE935FF-A90A-59AF-BFD4-F38CEB3F8CDF}",
  3768. "subId": 281735281
  3769. },
  3770. "assetHint": "assets/robovac/assets/robot_vacuum_base_link.fbx.azmodel"
  3771. }
  3772. }
  3773. }
  3774. },
  3775. "Component_[3767947283461603081]": {
  3776. "$type": "EditorVisibilityComponent",
  3777. "Id": 3767947283461603081
  3778. },
  3779. "Component_[3845306205339995033]": {
  3780. "$type": "EditorLockComponent",
  3781. "Id": 3845306205339995033
  3782. },
  3783. "Component_[4855684525398601046]": {
  3784. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3785. "Id": 4855684525398601046,
  3786. "Parent Entity": "Entity_[6506158658343]"
  3787. },
  3788. "Component_[4975798632544902102]": {
  3789. "$type": "EditorEntityIconComponent",
  3790. "Id": 4975798632544902102
  3791. },
  3792. "Component_[7103247526655008858]": {
  3793. "$type": "EditorMaterialComponent",
  3794. "Id": 7103247526655008858,
  3795. "Controller": {
  3796. "Configuration": {
  3797. "materials": [
  3798. {
  3799. "Key": {
  3800. "materialSlotStableId": 840771816
  3801. },
  3802. "Value": {
  3803. "MaterialAsset": {
  3804. "assetId": {
  3805. "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
  3806. },
  3807. "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
  3808. }
  3809. }
  3810. }
  3811. ]
  3812. }
  3813. }
  3814. },
  3815. "Component_[7608249923350219080]": {
  3816. "$type": "EditorOnlyEntityComponent",
  3817. "Id": 7608249923350219080
  3818. },
  3819. "Component_[7986653469645499570]": {
  3820. "$type": "EditorInspectorComponent",
  3821. "Id": 7986653469645499570
  3822. },
  3823. "Component_[8879182223984542773]": {
  3824. "$type": "EditorDisabledCompositionComponent",
  3825. "Id": 8879182223984542773
  3826. },
  3827. "Component_[9083243899270705702]": {
  3828. "$type": "EditorEntitySortComponent",
  3829. "Id": 9083243899270705702
  3830. }
  3831. }
  3832. },
  3833. "Entity_[30021071426043]": {
  3834. "Id": "Entity_[30021071426043]",
  3835. "Name": "robot_vacuum_towerstablebase",
  3836. "Components": {
  3837. "Component_[12475386664588628871]": {
  3838. "$type": "EditorEntitySortComponent",
  3839. "Id": 12475386664588628871
  3840. },
  3841. "Component_[1402737904758723794]": {
  3842. "$type": "EditorEntityIconComponent",
  3843. "Id": 1402737904758723794
  3844. },
  3845. "Component_[14426832034326352041]": {
  3846. "$type": "EditorMaterialComponent",
  3847. "Id": 14426832034326352041,
  3848. "Controller": {
  3849. "Configuration": {
  3850. "materials": [
  3851. {
  3852. "Key": {
  3853. "materialSlotStableId": 642792236
  3854. },
  3855. "Value": {
  3856. "MaterialAsset": {
  3857. "assetId": {
  3858. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  3859. },
  3860. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  3861. }
  3862. }
  3863. }
  3864. ]
  3865. }
  3866. }
  3867. },
  3868. "Component_[15570075083272083678]": {
  3869. "$type": "AZ::Render::EditorMeshComponent",
  3870. "Id": 15570075083272083678,
  3871. "Controller": {
  3872. "Configuration": {
  3873. "ModelAsset": {
  3874. "assetId": {
  3875. "guid": "{F07142B9-F47B-5A34-BDCA-1A951A2B722B}",
  3876. "subId": 284192294
  3877. },
  3878. "assetHint": "assets/robovac/assets/robot_vacuum_towerstablebase.azmodel"
  3879. }
  3880. }
  3881. }
  3882. },
  3883. "Component_[3633854916444915713]": {
  3884. "$type": "EditorLockComponent",
  3885. "Id": 3633854916444915713
  3886. },
  3887. "Component_[3824736560703254374]": {
  3888. "$type": "EditorOnlyEntityComponent",
  3889. "Id": 3824736560703254374
  3890. },
  3891. "Component_[4470687351955558889]": {
  3892. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3893. "Id": 4470687351955558889,
  3894. "Parent Entity": "Entity_[6506158658343]"
  3895. },
  3896. "Component_[5476737228447272011]": {
  3897. "$type": "EditorPendingCompositionComponent",
  3898. "Id": 5476737228447272011
  3899. },
  3900. "Component_[6963453425367601209]": {
  3901. "$type": "EditorInspectorComponent",
  3902. "Id": 6963453425367601209
  3903. },
  3904. "Component_[845623584106570611]": {
  3905. "$type": "EditorVisibilityComponent",
  3906. "Id": 845623584106570611
  3907. },
  3908. "Component_[9791205326329950834]": {
  3909. "$type": "EditorDisabledCompositionComponent",
  3910. "Id": 9791205326329950834
  3911. }
  3912. }
  3913. },
  3914. "Entity_[30025366393339]": {
  3915. "Id": "Entity_[30025366393339]",
  3916. "Name": "robot_vacuum_bottomwheeltwo",
  3917. "Components": {
  3918. "Component_[11486843524168740793]": {
  3919. "$type": "EditorVisibilityComponent",
  3920. "Id": 11486843524168740793
  3921. },
  3922. "Component_[11517677698538696102]": {
  3923. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3924. "Id": 11517677698538696102,
  3925. "Parent Entity": "Entity_[6506158658343]"
  3926. },
  3927. "Component_[11892970256911596569]": {
  3928. "$type": "EditorEntitySortComponent",
  3929. "Id": 11892970256911596569
  3930. },
  3931. "Component_[13415828729565192744]": {
  3932. "$type": "AZ::Render::EditorMeshComponent",
  3933. "Id": 13415828729565192744,
  3934. "Controller": {
  3935. "Configuration": {
  3936. "ModelAsset": {
  3937. "assetId": {
  3938. "guid": "{30F3B098-95A6-511D-86FC-1F9E8B626477}",
  3939. "subId": 270637819
  3940. },
  3941. "assetHint": "assets/robovac/assets/robot_vacuum_bottomwheeltwo.azmodel"
  3942. }
  3943. }
  3944. }
  3945. },
  3946. "Component_[17461939584671632810]": {
  3947. "$type": "EditorLockComponent",
  3948. "Id": 17461939584671632810
  3949. },
  3950. "Component_[18276348651685546120]": {
  3951. "$type": "EditorDisabledCompositionComponent",
  3952. "Id": 18276348651685546120
  3953. },
  3954. "Component_[5030734836737076151]": {
  3955. "$type": "EditorInspectorComponent",
  3956. "Id": 5030734836737076151
  3957. },
  3958. "Component_[5439690085647965510]": {
  3959. "$type": "EditorEntityIconComponent",
  3960. "Id": 5439690085647965510
  3961. },
  3962. "Component_[7155087601813549035]": {
  3963. "$type": "EditorOnlyEntityComponent",
  3964. "Id": 7155087601813549035
  3965. },
  3966. "Component_[9818824692836354306]": {
  3967. "$type": "EditorPendingCompositionComponent",
  3968. "Id": 9818824692836354306
  3969. },
  3970. "Component_[9902098114589520976]": {
  3971. "$type": "EditorMaterialComponent",
  3972. "Id": 9902098114589520976,
  3973. "Controller": {
  3974. "Configuration": {
  3975. "materials": [
  3976. {
  3977. "Key": {
  3978. "materialSlotStableId": 713658209
  3979. },
  3980. "Value": {
  3981. "MaterialAsset": {
  3982. "assetId": {
  3983. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  3984. },
  3985. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  3986. }
  3987. }
  3988. },
  3989. {
  3990. "Key": {
  3991. "materialSlotStableId": 840771816
  3992. },
  3993. "Value": {
  3994. "MaterialAsset": {
  3995. "assetId": {
  3996. "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
  3997. },
  3998. "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
  3999. }
  4000. }
  4001. }
  4002. ]
  4003. }
  4004. }
  4005. }
  4006. }
  4007. },
  4008. "Entity_[30029661360635]": {
  4009. "Id": "Entity_[30029661360635]",
  4010. "Name": "robot_vacuum_mainlogicboard",
  4011. "Components": {
  4012. "Component_[10241546628040874120]": {
  4013. "$type": "AZ::Render::EditorMeshComponent",
  4014. "Id": 10241546628040874120,
  4015. "Controller": {
  4016. "Configuration": {
  4017. "ModelAsset": {
  4018. "assetId": {
  4019. "guid": "{8F190CD8-69E6-5910-9246-B2C3E22FC6B3}",
  4020. "subId": 271853391
  4021. },
  4022. "assetHint": "assets/robovac/assets/robot_vacuum_mainlogicboard.azmodel"
  4023. }
  4024. }
  4025. }
  4026. },
  4027. "Component_[1137980311062119702]": {
  4028. "$type": "EditorDisabledCompositionComponent",
  4029. "Id": 1137980311062119702
  4030. },
  4031. "Component_[13699028550573905962]": {
  4032. "$type": "EditorOnlyEntityComponent",
  4033. "Id": 13699028550573905962
  4034. },
  4035. "Component_[15250978781301659058]": {
  4036. "$type": "EditorInspectorComponent",
  4037. "Id": 15250978781301659058
  4038. },
  4039. "Component_[16615264906452507175]": {
  4040. "$type": "EditorEntityIconComponent",
  4041. "Id": 16615264906452507175
  4042. },
  4043. "Component_[3525954281636674520]": {
  4044. "$type": "EditorEntitySortComponent",
  4045. "Id": 3525954281636674520
  4046. },
  4047. "Component_[4300523563177321077]": {
  4048. "$type": "EditorVisibilityComponent",
  4049. "Id": 4300523563177321077
  4050. },
  4051. "Component_[5331318633270037190]": {
  4052. "$type": "EditorMaterialComponent",
  4053. "Id": 5331318633270037190,
  4054. "Controller": {
  4055. "Configuration": {
  4056. "materials": [
  4057. {
  4058. "Key": {
  4059. "materialSlotStableId": 642792236
  4060. },
  4061. "Value": {
  4062. "MaterialAsset": {
  4063. "assetId": {
  4064. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  4065. },
  4066. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  4067. }
  4068. }
  4069. },
  4070. {
  4071. "Key": {
  4072. "materialSlotStableId": 840771816
  4073. },
  4074. "Value": {
  4075. "MaterialAsset": {
  4076. "assetId": {
  4077. "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
  4078. },
  4079. "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
  4080. }
  4081. }
  4082. },
  4083. {
  4084. "Key": {
  4085. "materialSlotStableId": 1247756951
  4086. },
  4087. "Value": {
  4088. "MaterialAsset": {
  4089. "assetId": {
  4090. "guid": "{B410214E-804E-5CD7-A152-17B36FBEA0E6}"
  4091. },
  4092. "assetHint": "assets/robovac/assets/robotvacuum_chip.azmaterial"
  4093. }
  4094. }
  4095. },
  4096. {
  4097. "Key": {
  4098. "materialSlotStableId": 2685768749
  4099. },
  4100. "Value": {
  4101. "MaterialAsset": {
  4102. "assetId": {
  4103. "guid": "{72A191F2-05C0-50A8-9590-896336FEC9AC}"
  4104. },
  4105. "assetHint": "assets/robovac/assets/robotvacuum_fr4.azmaterial"
  4106. }
  4107. }
  4108. }
  4109. ]
  4110. }
  4111. }
  4112. },
  4113. "Component_[5435042190051421878]": {
  4114. "$type": "EditorPendingCompositionComponent",
  4115. "Id": 5435042190051421878
  4116. },
  4117. "Component_[5435929030723335900]": {
  4118. "$type": "EditorLockComponent",
  4119. "Id": 5435929030723335900
  4120. },
  4121. "Component_[5980272100921284882]": {
  4122. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4123. "Id": 5980272100921284882,
  4124. "Parent Entity": "Entity_[6506158658343]"
  4125. }
  4126. }
  4127. },
  4128. "Entity_[30033956327931]": {
  4129. "Id": "Entity_[30033956327931]",
  4130. "Name": "robot_vacuum_brushc",
  4131. "Components": {
  4132. "Component_[10056716655303761556]": {
  4133. "$type": "EditorMaterialComponent",
  4134. "Id": 10056716655303761556,
  4135. "Controller": {
  4136. "Configuration": {
  4137. "materials": [
  4138. {
  4139. "Key": {
  4140. "materialSlotStableId": 1979588969
  4141. },
  4142. "Value": {
  4143. "MaterialAsset": {
  4144. "assetId": {
  4145. "guid": "{996BEAD2-C595-5851-BC40-A2A0F94A39A3}"
  4146. },
  4147. "assetHint": "assets/robovac/assets/robotvacuum_rubber_-_weathered.azmaterial"
  4148. }
  4149. }
  4150. }
  4151. ]
  4152. }
  4153. }
  4154. },
  4155. "Component_[11205876090528442303]": {
  4156. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4157. "Id": 11205876090528442303,
  4158. "Parent Entity": "Entity_[6506158658343]"
  4159. },
  4160. "Component_[11387276796358957676]": {
  4161. "$type": "EditorEntitySortComponent",
  4162. "Id": 11387276796358957676
  4163. },
  4164. "Component_[114464133465390289]": {
  4165. "$type": "EditorVisibilityComponent",
  4166. "Id": 114464133465390289
  4167. },
  4168. "Component_[1788839891950967143]": {
  4169. "$type": "AZ::Render::EditorMeshComponent",
  4170. "Id": 1788839891950967143,
  4171. "Controller": {
  4172. "Configuration": {
  4173. "ModelAsset": {
  4174. "assetId": {
  4175. "guid": "{8A17DB80-F64A-5B35-90BC-DF7A390F2001}",
  4176. "subId": 270217761
  4177. },
  4178. "assetHint": "assets/robovac/assets/robot_vacuum_brushc.azmodel"
  4179. }
  4180. }
  4181. }
  4182. },
  4183. "Component_[4150366641201823465]": {
  4184. "$type": "EditorInspectorComponent",
  4185. "Id": 4150366641201823465
  4186. },
  4187. "Component_[4412915056593362733]": {
  4188. "$type": "EditorPendingCompositionComponent",
  4189. "Id": 4412915056593362733
  4190. },
  4191. "Component_[6285506504893937226]": {
  4192. "$type": "EditorOnlyEntityComponent",
  4193. "Id": 6285506504893937226
  4194. },
  4195. "Component_[6581271400812256723]": {
  4196. "$type": "EditorEntityIconComponent",
  4197. "Id": 6581271400812256723
  4198. },
  4199. "Component_[726750158276824077]": {
  4200. "$type": "EditorDisabledCompositionComponent",
  4201. "Id": 726750158276824077
  4202. },
  4203. "Component_[7281494098851044446]": {
  4204. "$type": "EditorLockComponent",
  4205. "Id": 7281494098851044446
  4206. }
  4207. }
  4208. },
  4209. "Entity_[30038251295227]": {
  4210. "Id": "Entity_[30038251295227]",
  4211. "Name": "robot_vacuum_gearboxright",
  4212. "Components": {
  4213. "Component_[1133023484187037027]": {
  4214. "$type": "EditorInspectorComponent",
  4215. "Id": 1133023484187037027
  4216. },
  4217. "Component_[1239364706239211319]": {
  4218. "$type": "EditorEntitySortComponent",
  4219. "Id": 1239364706239211319
  4220. },
  4221. "Component_[13720404771539331043]": {
  4222. "$type": "EditorDisabledCompositionComponent",
  4223. "Id": 13720404771539331043
  4224. },
  4225. "Component_[14174827805731672074]": {
  4226. "$type": "EditorLockComponent",
  4227. "Id": 14174827805731672074
  4228. },
  4229. "Component_[14965498366807840581]": {
  4230. "$type": "EditorEntityIconComponent",
  4231. "Id": 14965498366807840581
  4232. },
  4233. "Component_[16194815260036076114]": {
  4234. "$type": "EditorVisibilityComponent",
  4235. "Id": 16194815260036076114
  4236. },
  4237. "Component_[2519269325213884748]": {
  4238. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4239. "Id": 2519269325213884748,
  4240. "Parent Entity": "Entity_[6506158658343]"
  4241. },
  4242. "Component_[3780554651226155816]": {
  4243. "$type": "EditorPendingCompositionComponent",
  4244. "Id": 3780554651226155816
  4245. },
  4246. "Component_[5122398714384839784]": {
  4247. "$type": "EditorMaterialComponent",
  4248. "Id": 5122398714384839784,
  4249. "Controller": {
  4250. "Configuration": {
  4251. "materials": [
  4252. {
  4253. "Key": {
  4254. "materialSlotStableId": 642792236
  4255. },
  4256. "Value": {
  4257. "MaterialAsset": {
  4258. "assetId": {
  4259. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  4260. },
  4261. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  4262. }
  4263. }
  4264. },
  4265. {
  4266. "Key": {
  4267. "materialSlotStableId": 713658209
  4268. },
  4269. "Value": {
  4270. "MaterialAsset": {
  4271. "assetId": {
  4272. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  4273. },
  4274. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  4275. }
  4276. }
  4277. }
  4278. ]
  4279. }
  4280. }
  4281. },
  4282. "Component_[9002846224351078899]": {
  4283. "$type": "AZ::Render::EditorMeshComponent",
  4284. "Id": 9002846224351078899,
  4285. "Controller": {
  4286. "Configuration": {
  4287. "ModelAsset": {
  4288. "assetId": {
  4289. "guid": "{D9ECA641-E87C-5379-8EF6-164558ED841B}",
  4290. "subId": 278453625
  4291. },
  4292. "assetHint": "assets/robovac/assets/robot_vacuum_gearboxright.azmodel"
  4293. }
  4294. }
  4295. }
  4296. },
  4297. "Component_[9390233368193709296]": {
  4298. "$type": "EditorOnlyEntityComponent",
  4299. "Id": 9390233368193709296
  4300. }
  4301. }
  4302. },
  4303. "Entity_[30042546262523]": {
  4304. "Id": "Entity_[30042546262523]",
  4305. "Name": "robot_vacuum_rightdrivegear",
  4306. "Components": {
  4307. "Component_[10170119661745965980]": {
  4308. "$type": "EditorInspectorComponent",
  4309. "Id": 10170119661745965980
  4310. },
  4311. "Component_[10944562783028267678]": {
  4312. "$type": "EditorOnlyEntityComponent",
  4313. "Id": 10944562783028267678
  4314. },
  4315. "Component_[1251625587252810393]": {
  4316. "$type": "EditorEntitySortComponent",
  4317. "Id": 1251625587252810393
  4318. },
  4319. "Component_[13523723562617065969]": {
  4320. "$type": "AZ::Render::EditorMeshComponent",
  4321. "Id": 13523723562617065969,
  4322. "Controller": {
  4323. "Configuration": {
  4324. "ModelAsset": {
  4325. "assetId": {
  4326. "guid": "{B378D436-3D8F-593D-9D4A-B910E43FACBB}",
  4327. "subId": 274677411
  4328. },
  4329. "assetHint": "assets/robovac/assets/robot_vacuum_rightdrivegear.azmodel"
  4330. }
  4331. }
  4332. }
  4333. },
  4334. "Component_[13782790080474671215]": {
  4335. "$type": "EditorLockComponent",
  4336. "Id": 13782790080474671215
  4337. },
  4338. "Component_[14450145972002754509]": {
  4339. "$type": "EditorPendingCompositionComponent",
  4340. "Id": 14450145972002754509
  4341. },
  4342. "Component_[15674135959119870335]": {
  4343. "$type": "EditorDisabledCompositionComponent",
  4344. "Id": 15674135959119870335
  4345. },
  4346. "Component_[3435973274348604176]": {
  4347. "$type": "EditorEntityIconComponent",
  4348. "Id": 3435973274348604176
  4349. },
  4350. "Component_[3587373179464577687]": {
  4351. "$type": "EditorMaterialComponent",
  4352. "Id": 3587373179464577687,
  4353. "Controller": {
  4354. "Configuration": {
  4355. "materials": [
  4356. {
  4357. "Key": {
  4358. "materialSlotStableId": 642792236
  4359. },
  4360. "Value": {
  4361. "MaterialAsset": {
  4362. "assetId": {
  4363. "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
  4364. },
  4365. "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
  4366. }
  4367. }
  4368. }
  4369. ]
  4370. }
  4371. }
  4372. },
  4373. "Component_[6124322051370137604]": {
  4374. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4375. "Id": 6124322051370137604,
  4376. "Parent Entity": "Entity_[6506158658343]"
  4377. },
  4378. "Component_[8035867096751189057]": {
  4379. "$type": "EditorVisibilityComponent",
  4380. "Id": 8035867096751189057
  4381. }
  4382. }
  4383. },
  4384. "Entity_[30046841229819]": {
  4385. "Id": "Entity_[30046841229819]",
  4386. "Name": "robot_vacuum_wheel_right",
  4387. "Components": {
  4388. "Component_[10318422179640899640]": {
  4389. "$type": "EditorInspectorComponent",
  4390. "Id": 10318422179640899640
  4391. },
  4392. "Component_[11753601225620024279]": {
  4393. "$type": "EditorOnlyEntityComponent",
  4394. "Id": 11753601225620024279
  4395. },
  4396. "Component_[12855737534834744424]": {
  4397. "$type": "EditorPendingCompositionComponent",
  4398. "Id": 12855737534834744424
  4399. },
  4400. "Component_[13254538320255520595]": {
  4401. "$type": "EditorMaterialComponent",
  4402. "Id": 13254538320255520595,
  4403. "Controller": {
  4404. "Configuration": {
  4405. "materials": [
  4406. {
  4407. "Key": {
  4408. "materialSlotStableId": 840771816
  4409. },
  4410. "Value": {
  4411. "MaterialAsset": {
  4412. "assetId": {
  4413. "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
  4414. },
  4415. "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
  4416. }
  4417. }
  4418. },
  4419. {
  4420. "Key": {
  4421. "materialSlotStableId": 1979588969
  4422. },
  4423. "Value": {
  4424. "MaterialAsset": {
  4425. "assetId": {
  4426. "guid": "{996BEAD2-C595-5851-BC40-A2A0F94A39A3}"
  4427. },
  4428. "assetHint": "assets/robovac/assets/robotvacuum_rubber_-_weathered.azmaterial"
  4429. }
  4430. }
  4431. }
  4432. ]
  4433. }
  4434. }
  4435. },
  4436. "Component_[13327589018019843257]": {
  4437. "$type": "EditorEntityIconComponent",
  4438. "Id": 13327589018019843257
  4439. },
  4440. "Component_[13800265395195759351]": {
  4441. "$type": "EditorLockComponent",
  4442. "Id": 13800265395195759351
  4443. },
  4444. "Component_[14844364127576081774]": {
  4445. "$type": "EditorVisibilityComponent",
  4446. "Id": 14844364127576081774
  4447. },
  4448. "Component_[14949361985832914947]": {
  4449. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4450. "Id": 14949361985832914947,
  4451. "Parent Entity": "Entity_[6506158658343]"
  4452. },
  4453. "Component_[18038086914908374883]": {
  4454. "$type": "EditorDisabledCompositionComponent",
  4455. "Id": 18038086914908374883
  4456. },
  4457. "Component_[2944624180499581291]": {
  4458. "$type": "AZ::Render::EditorMeshComponent",
  4459. "Id": 2944624180499581291,
  4460. "Controller": {
  4461. "Configuration": {
  4462. "ModelAsset": {
  4463. "assetId": {
  4464. "guid": "{552355B7-B59D-589D-A162-46D2141B1462}",
  4465. "subId": 284877102
  4466. },
  4467. "assetHint": "assets/robovac/assets/robot_vacuum_wheel_right.azmodel"
  4468. }
  4469. }
  4470. }
  4471. },
  4472. "Component_[4306775618786459448]": {
  4473. "$type": "EditorEntitySortComponent",
  4474. "Id": 4306775618786459448
  4475. }
  4476. }
  4477. },
  4478. "Entity_[30051136197115]": {
  4479. "Id": "Entity_[30051136197115]",
  4480. "Name": "robot_vacuum_vaccase",
  4481. "Components": {
  4482. "Component_[10171691559656925088]": {
  4483. "$type": "AZ::Render::EditorMeshComponent",
  4484. "Id": 10171691559656925088,
  4485. "Controller": {
  4486. "Configuration": {
  4487. "ModelAsset": {
  4488. "assetId": {
  4489. "guid": "{3A435A14-ECF6-5787-86B1-B8B438A11F15}",
  4490. "subId": 268543421
  4491. },
  4492. "assetHint": "assets/robovac/assets/robot_vacuum_vaccase.azmodel"
  4493. }
  4494. }
  4495. }
  4496. },
  4497. "Component_[1071801426654793983]": {
  4498. "$type": "EditorInspectorComponent",
  4499. "Id": 1071801426654793983
  4500. },
  4501. "Component_[11944597572094354218]": {
  4502. "$type": "EditorPendingCompositionComponent",
  4503. "Id": 11944597572094354218
  4504. },
  4505. "Component_[14203484318855151935]": {
  4506. "$type": "EditorOnlyEntityComponent",
  4507. "Id": 14203484318855151935
  4508. },
  4509. "Component_[1436035291182106083]": {
  4510. "$type": "EditorMaterialComponent",
  4511. "Id": 1436035291182106083,
  4512. "Controller": {
  4513. "Configuration": {
  4514. "materials": [
  4515. {
  4516. "Key": {
  4517. "materialSlotStableId": 1687924491
  4518. },
  4519. "Value": {
  4520. "MaterialAsset": {
  4521. "assetId": {
  4522. "guid": "{E1884D12-B60F-5CF7-8BD0-D8EAFF0FE181}"
  4523. },
  4524. "assetHint": "assets/robovac/assets/robotvacuum_polymide_kapton_.azmaterial"
  4525. }
  4526. }
  4527. }
  4528. ]
  4529. }
  4530. }
  4531. },
  4532. "Component_[16829937000198065444]": {
  4533. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4534. "Id": 16829937000198065444,
  4535. "Parent Entity": "Entity_[6506158658343]"
  4536. },
  4537. "Component_[17219561062194009311]": {
  4538. "$type": "EditorLockComponent",
  4539. "Id": 17219561062194009311
  4540. },
  4541. "Component_[2013876049405035287]": {
  4542. "$type": "EditorVisibilityComponent",
  4543. "Id": 2013876049405035287
  4544. },
  4545. "Component_[5466038758009434737]": {
  4546. "$type": "EditorEntityIconComponent",
  4547. "Id": 5466038758009434737
  4548. },
  4549. "Component_[5651843339576349886]": {
  4550. "$type": "EditorEntitySortComponent",
  4551. "Id": 5651843339576349886
  4552. },
  4553. "Component_[5667314715290078262]": {
  4554. "$type": "EditorDisabledCompositionComponent",
  4555. "Id": 5667314715290078262
  4556. }
  4557. }
  4558. },
  4559. "Entity_[30055431164411]": {
  4560. "Id": "Entity_[30055431164411]",
  4561. "Name": "RobotVacuum",
  4562. "Components": {
  4563. "Component_[12335778149585122117]": {
  4564. "$type": "EditorEntityIconComponent",
  4565. "Id": 12335778149585122117
  4566. },
  4567. "Component_[13195787262642532680]": {
  4568. "$type": "EditorRigidBodyComponent",
  4569. "Id": 13195787262642532680,
  4570. "Configuration": {
  4571. "entityId": "",
  4572. "Linear damping": 0.009999999776482582,
  4573. "Angular damping": 0.10000000149011612,
  4574. "Compute Mass": false,
  4575. "Mass": 3.0,
  4576. "Centre of mass offset": [
  4577. 2.091176787288873e-9,
  4578. 3.9075187530102085e-9,
  4579. -7.555317482754731e-11
  4580. ],
  4581. "Compute inertia": false,
  4582. "Inertia tensor": [
  4583. 2.0,
  4584. 0.0,
  4585. 0.0,
  4586. 0.0,
  4587. 2.0,
  4588. 0.0,
  4589. 0.0,
  4590. 0.0,
  4591. 2.0
  4592. ]
  4593. }
  4594. },
  4595. "Component_[15286078445589088466]": {
  4596. "$type": "EditorShapeColliderComponent",
  4597. "Id": 15286078445589088466,
  4598. "ColliderConfiguration": {
  4599. "MaterialSlots": {
  4600. "Slots": [
  4601. {
  4602. "Name": "Entire object"
  4603. }
  4604. ]
  4605. }
  4606. },
  4607. "ShapeConfigs": [
  4608. {
  4609. "$type": "CookedMeshShapeConfiguration",
  4610. "CookedData": "TlhTAUNWWE0NAAAAAAAAAElDRQFDTEhMCQAAACAAAAAwAAAAEgAAAGAAAAAcSiq+iRKNPQrXo7scSiq+iRKNPQrXozt9VQK+e1UCPgrXozt9VQK+e1UCPgrXo7vsUTi+DSyHsgrXo7vsUTi+DSyHsgrXozuKEo09HEoqPgrXozt8VQI+fFUCPgrXozt8VQI+fFUCPgrXo7uKEo09HEoqPgrXo7sNLAey7FE4PgrXo7sNLAey7FE4PgrXozsbSiq+jRKNvQrXo7t7VQK+fVUCvgrXo7t7VQK+fVUCvgrXozsbSiq+jRKNvQrXozuHEo29HEoqvgrXo7uHEo29HEoqvgrXozsUwsoy7FE4vgrXo7sUwsoy7FE4vgrXozsbSio+ixKNPQrXozsbSio+ixKNPQrXo7uMEo29G0oqPgrXozuOEo09G0oqvgrXozt+VQI+e1UCvgrXozsdSio+hxKNvQrXozvsUTg+AAAAAArXozvsUTg+AAAAAArXo7uMEo29G0oqPgrXo7sdSio+hxKNvQrXo7t+VQI+e1UCvgrXo7uOEo09G0oqvgrXo7sAAAAAAAAAAAAAgD8K16O7AAAQADHbVL/aOQ4/AAAAAELHNL4QAAQYvhR7v7rFRz4AAAAAQsc0vhQABBncOQ4/MNtUPwAAAABCxzS+GAAEDbrFRz6+FHs/AAAAAELHNL4cAAQQLttUv9w5Dr8AAAAAQcc0viAABAe+FHu/yMVHvgAAAABDxzS+JAAEFNg5Dr8z21S/AAAAAEHHNL4oAAQGu8VHvr4Ue78AAAAAQsc0viwABAYx21Q/2jkOPwAAAABCxzS+MAAEDL4Uez/IxUc+AAAAAELHNL40AAQE3DkOvzDbVD8AAAAAQsc0vjgABBfIxUe+vhR7PwAAAABDxzS+PAAEEjPbVD/YOQ6/AAAAAEPHNL5AAAQAwBR7P7PFR74AAAAAQ8c0vkQABAQAAAAAAAAAAAAAgL8K16O7SAAQAdw5Dj8w21S/AAAAAELHNL5YAAQCyMVHPr4Ue78AAAAAQ8c0vlwABAoUBwYLFgIBBQ8OERMXGBkaAAECAwAEBQEGBwgJBgkKCwwNDg8MDwUEEBEODRASExEUFQgHFBobFRwDAhYcFgsKHRkYHh0bGhkfEhANDAQAAxwKCQgVGx0eHx4YFx8XExIACQADAAQADAALAAEAAgAGAAUABwAIABEAEAANAA4ACgECAQsBDwIPAgYDCQMPAwQEDwQMBQ8FBwUGBg8HCAcPCA8IEQkKCQ8KDgoPCw8LDAwPDQ4NEA0PDg8PEQ8QEBEBAg8AAQIAAQsBCw8CBg8AAgYAAwQAAwkDCQ8DBA8EDA8ABAwFBg8FBw8ABQcABQYHCA8ABwgIDxEACBEACQoJCg8ACwwAEBEADRAADQ4ACg4KDg8LDA8NDg8NDxAPEBEAAAAA7FE4vuxROL4K16O77FE4PuxROD4K16M7KQOCOuaDAzccpd4p4Xv9Jhyl3inmgwM39lA9nOF7/Sb2UD2cZmCDN160DzHmQoYxpySmrgAAgL8K16M7Zrs3PqcvPTunLz07",
  4611. "Type": 1
  4612. }
  4613. ]
  4614. },
  4615. "Component_[15309293085555674908]": {
  4616. "$type": "EditorEntitySortComponent",
  4617. "Id": 15309293085555674908,
  4618. "Child Entity Order": [
  4619. "Entity_[15934909250224]",
  4620. "Entity_[6506158658343]",
  4621. "Entity_[8859800736551]"
  4622. ]
  4623. },
  4624. "Component_[15910097906063283013]": {
  4625. "$type": "GenericComponentWrapper",
  4626. "Id": 15910097906063283013,
  4627. "m_template": {
  4628. "$type": "ROS2FrameComponent",
  4629. "Namespace Configuration": {
  4630. "Namespace Strategy": 1
  4631. },
  4632. "Frame Name": "base_link"
  4633. }
  4634. },
  4635. "Component_[16572099067667838198]": {
  4636. "$type": "EditorVisibilityComponent",
  4637. "Id": 16572099067667838198
  4638. },
  4639. "Component_[18115319375137189991]": {
  4640. "$type": "EditorCylinderShapeComponent",
  4641. "Id": 18115319375137189991,
  4642. "ShapeColor": [
  4643. 1.0,
  4644. 1.0,
  4645. 0.7803921699523926
  4646. ],
  4647. "CylinderShape": {
  4648. "Configuration": {
  4649. "DrawColor": [
  4650. 1.0,
  4651. 1.0,
  4652. 0.7803921699523926
  4653. ],
  4654. "Height": 0.009999999776482582,
  4655. "Radius": 0.18000000715255737
  4656. }
  4657. }
  4658. },
  4659. "Component_[223082360444566403]": {
  4660. "$type": "EditorInspectorComponent",
  4661. "Id": 223082360444566403,
  4662. "ComponentOrderEntryArray": [
  4663. {
  4664. "ComponentId": 8050084937550776360
  4665. }
  4666. ]
  4667. },
  4668. "Component_[2317561115070792535]": {
  4669. "$type": "EditorLockComponent",
  4670. "Id": 2317561115070792535
  4671. },
  4672. "Component_[5567970943382624113]": {
  4673. "$type": "EditorOnlyEntityComponent",
  4674. "Id": 5567970943382624113
  4675. },
  4676. "Component_[5957548067248555519]": {
  4677. "$type": "EditorPendingCompositionComponent",
  4678. "Id": 5957548067248555519
  4679. },
  4680. "Component_[7715341178742189308]": {
  4681. "$type": "GenericComponentWrapper",
  4682. "Id": 7715341178742189308,
  4683. "m_template": {
  4684. "$type": "ROS2RobotControlComponent",
  4685. "SubscriberConfiguration": {
  4686. "Type": "ackermann_msgs::msg::AckermannDrive",
  4687. "Topic": "cmd_vel"
  4688. }
  4689. }
  4690. },
  4691. "Component_[8050084937550776360]": {
  4692. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4693. "Id": 8050084937550776360,
  4694. "Parent Entity": "ContainerEntity"
  4695. },
  4696. "Component_[9192919221946408591]": {
  4697. "$type": "GenericComponentWrapper",
  4698. "Id": 9192919221946408591,
  4699. "m_template": {
  4700. "$type": "RigidBodyTwistControlComponent"
  4701. }
  4702. },
  4703. "Component_[9387051024545712596]": {
  4704. "$type": "EditorDisabledCompositionComponent",
  4705. "Id": 9387051024545712596
  4706. }
  4707. }
  4708. },
  4709. "Entity_[30059726131707]": {
  4710. "Id": "Entity_[30059726131707]",
  4711. "Name": "robot_vacuum_osensorboardholder",
  4712. "Components": {
  4713. "Component_[10741789439431487362]": {
  4714. "$type": "EditorDisabledCompositionComponent",
  4715. "Id": 10741789439431487362
  4716. },
  4717. "Component_[12823283736088704650]": {
  4718. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4719. "Id": 12823283736088704650,
  4720. "Parent Entity": "Entity_[6506158658343]"
  4721. },
  4722. "Component_[12872069760461567186]": {
  4723. "$type": "EditorOnlyEntityComponent",
  4724. "Id": 12872069760461567186
  4725. },
  4726. "Component_[13270684703792889476]": {
  4727. "$type": "AZ::Render::EditorMeshComponent",
  4728. "Id": 13270684703792889476,
  4729. "Controller": {
  4730. "Configuration": {
  4731. "ModelAsset": {
  4732. "assetId": {
  4733. "guid": "{3DFC70D2-228C-505C-9078-89970FBE1E84}",
  4734. "subId": 272031789
  4735. },
  4736. "assetHint": "assets/robovac/assets/robot_vacuum_osensorboardholder.azmodel"
  4737. }
  4738. }
  4739. }
  4740. },
  4741. "Component_[13285217915550335661]": {
  4742. "$type": "EditorInspectorComponent",
  4743. "Id": 13285217915550335661
  4744. },
  4745. "Component_[16122814623279561882]": {
  4746. "$type": "EditorEntityIconComponent",
  4747. "Id": 16122814623279561882
  4748. },
  4749. "Component_[17667284355890202398]": {
  4750. "$type": "EditorLockComponent",
  4751. "Id": 17667284355890202398
  4752. },
  4753. "Component_[3439142514294566174]": {
  4754. "$type": "EditorVisibilityComponent",
  4755. "Id": 3439142514294566174
  4756. },
  4757. "Component_[5750714056929933670]": {
  4758. "$type": "EditorEntitySortComponent",
  4759. "Id": 5750714056929933670
  4760. },
  4761. "Component_[6065822064279006146]": {
  4762. "$type": "EditorMaterialComponent",
  4763. "Id": 6065822064279006146,
  4764. "Controller": {
  4765. "Configuration": {
  4766. "materials": [
  4767. {
  4768. "Key": {
  4769. "materialSlotStableId": 713658209
  4770. },
  4771. "Value": {
  4772. "MaterialAsset": {
  4773. "assetId": {
  4774. "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
  4775. },
  4776. "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
  4777. }
  4778. }
  4779. }
  4780. ]
  4781. }
  4782. }
  4783. },
  4784. "Component_[7866814265491933405]": {
  4785. "$type": "EditorPendingCompositionComponent",
  4786. "Id": 7866814265491933405
  4787. }
  4788. }
  4789. },
  4790. "Entity_[5002252716067]": {
  4791. "Id": "Entity_[5002252716067]",
  4792. "Name": "Lidar",
  4793. "Components": {
  4794. "Component_[14456088025367877347]": {
  4795. "$type": "EditorEntitySortComponent",
  4796. "Id": 14456088025367877347
  4797. },
  4798. "Component_[14551933034245337847]": {
  4799. "$type": "EditorPendingCompositionComponent",
  4800. "Id": 14551933034245337847
  4801. },
  4802. "Component_[15934807076508388308]": {
  4803. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4804. "Id": 15934807076508388308,
  4805. "Parent Entity": "Entity_[8859800736551]",
  4806. "Transform Data": {
  4807. "Translate": [
  4808. 0.1501830816268921,
  4809. -0.010563373565673828,
  4810. 0.035237789154052734
  4811. ]
  4812. }
  4813. },
  4814. "Component_[15975027362231334963]": {
  4815. "$type": "EditorDisabledCompositionComponent",
  4816. "Id": 15975027362231334963
  4817. },
  4818. "Component_[1621831901319912704]": {
  4819. "$type": "EditorEntityIconComponent",
  4820. "Id": 1621831901319912704
  4821. },
  4822. "Component_[16456422260517615133]": {
  4823. "$type": "EditorVisibilityComponent",
  4824. "Id": 16456422260517615133
  4825. },
  4826. "Component_[17357346482856591089]": {
  4827. "$type": "GenericComponentWrapper",
  4828. "Id": 17357346482856591089,
  4829. "m_template": {
  4830. "$type": "ROS2LidarSensorComponent",
  4831. "SensorConfiguration": {
  4832. "Publishers": {
  4833. "sensor_msgs::msg::PointCloud2": {
  4834. "Type": "sensor_msgs::msg::PointCloud2",
  4835. "Topic": "pc"
  4836. }
  4837. }
  4838. }
  4839. }
  4840. },
  4841. "Component_[18249910351855492071]": {
  4842. "$type": "EditorLockComponent",
  4843. "Id": 18249910351855492071
  4844. },
  4845. "Component_[3490167280358485747]": {
  4846. "$type": "GenericComponentWrapper",
  4847. "Id": 3490167280358485747,
  4848. "m_template": {
  4849. "$type": "ROS2FrameComponent",
  4850. "Namespace Configuration": {
  4851. "Namespace Strategy": 1
  4852. },
  4853. "Frame Name": "lidar"
  4854. }
  4855. },
  4856. "Component_[5861697099478679034]": {
  4857. "$type": "EditorInspectorComponent",
  4858. "Id": 5861697099478679034
  4859. },
  4860. "Component_[8530803261175423250]": {
  4861. "$type": "EditorOnlyEntityComponent",
  4862. "Id": 8530803261175423250
  4863. }
  4864. }
  4865. },
  4866. "Entity_[6506158658343]": {
  4867. "Id": "Entity_[6506158658343]",
  4868. "Name": "Mesh",
  4869. "Components": {
  4870. "Component_[10933917820466561585]": {
  4871. "$type": "EditorInspectorComponent",
  4872. "Id": 10933917820466561585
  4873. },
  4874. "Component_[1120705527766950611]": {
  4875. "$type": "EditorEntityIconComponent",
  4876. "Id": 1120705527766950611
  4877. },
  4878. "Component_[11366492275209164279]": {
  4879. "$type": "EditorPendingCompositionComponent",
  4880. "Id": 11366492275209164279
  4881. },
  4882. "Component_[1295897211617435201]": {
  4883. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4884. "Id": 1295897211617435201,
  4885. "Parent Entity": "Entity_[30055431164411]",
  4886. "Transform Data": {
  4887. "Translate": [
  4888. 0.0,
  4889. 0.0,
  4890. -0.005482405424118042
  4891. ],
  4892. "Rotate": [
  4893. 0.0,
  4894. 0.0,
  4895. 180.0
  4896. ]
  4897. }
  4898. },
  4899. "Component_[17642228670508097488]": {
  4900. "$type": "EditorLockComponent",
  4901. "Id": 17642228670508097488
  4902. },
  4903. "Component_[4175025945549480712]": {
  4904. "$type": "EditorEntitySortComponent",
  4905. "Id": 4175025945549480712,
  4906. "Child Entity Order": [
  4907. "Entity_[29909402276347]",
  4908. "Entity_[29948056982011]",
  4909. "Entity_[30016776458747]",
  4910. "Entity_[29896517374459]",
  4911. "Entity_[29862157636091]",
  4912. "Entity_[29999596589563]",
  4913. "Entity_[30025366393339]",
  4914. "Entity_[29952351949307]",
  4915. "Entity_[30033956327931]",
  4916. "Entity_[30008186524155]",
  4917. "Entity_[29866452603387]",
  4918. "Entity_[29887927439867]",
  4919. "Entity_[29900812341755]",
  4920. "Entity_[29905107309051]",
  4921. "Entity_[29913697243643]",
  4922. "Entity_[29844977766907]",
  4923. "Entity_[29982416720379]",
  4924. "Entity_[30038251295227]",
  4925. "Entity_[30029661360635]",
  4926. "Entity_[29892222407163]",
  4927. "Entity_[29922287178235]",
  4928. "Entity_[29991006654971]",
  4929. "Entity_[29973826785787]",
  4930. "Entity_[29875042537979]",
  4931. "Entity_[29978121753083]",
  4932. "Entity_[29935172080123]",
  4933. "Entity_[29965236851195]",
  4934. "Entity_[30059726131707]",
  4935. "Entity_[29857862668795]",
  4936. "Entity_[29930877112827]",
  4937. "Entity_[29870747570683]",
  4938. "Entity_[29883632472571]",
  4939. "Entity_[29853567701499]",
  4940. "Entity_[29969531818491]",
  4941. "Entity_[30012481491451]",
  4942. "Entity_[30003891556859]",
  4943. "Entity_[30042546262523]",
  4944. "Entity_[29879337505275]",
  4945. "Entity_[29917992210939]",
  4946. "Entity_[29926582145531]",
  4947. "Entity_[29960941883899]",
  4948. "Entity_[29849272734203]",
  4949. "Entity_[29986711687675]",
  4950. "Entity_[29939467047419]",
  4951. "Entity_[30021071426043]",
  4952. "Entity_[29943762014715]",
  4953. "Entity_[30051136197115]",
  4954. "Entity_[29995301622267]",
  4955. "Entity_[29956646916603]",
  4956. "Entity_[30046841229819]"
  4957. ]
  4958. },
  4959. "Component_[5075023512203644777]": {
  4960. "$type": "EditorVisibilityComponent",
  4961. "Id": 5075023512203644777
  4962. },
  4963. "Component_[9106650773510172942]": {
  4964. "$type": "EditorDisabledCompositionComponent",
  4965. "Id": 9106650773510172942
  4966. },
  4967. "Component_[9115969056810346082]": {
  4968. "$type": "EditorOnlyEntityComponent",
  4969. "Id": 9115969056810346082
  4970. }
  4971. }
  4972. },
  4973. "Entity_[8859800736551]": {
  4974. "Id": "Entity_[8859800736551]",
  4975. "Name": "Sensors",
  4976. "Components": {
  4977. "Component_[11093905779932289212]": {
  4978. "$type": "EditorDisabledCompositionComponent",
  4979. "Id": 11093905779932289212
  4980. },
  4981. "Component_[12228418348456879928]": {
  4982. "$type": "EditorEntityIconComponent",
  4983. "Id": 12228418348456879928
  4984. },
  4985. "Component_[14081951032431453423]": {
  4986. "$type": "EditorEntitySortComponent",
  4987. "Id": 14081951032431453423,
  4988. "Child Entity Order": [
  4989. "",
  4990. "Entity_[5002252716067]"
  4991. ]
  4992. },
  4993. "Component_[2172420079327414534]": {
  4994. "$type": "EditorPendingCompositionComponent",
  4995. "Id": 2172420079327414534
  4996. },
  4997. "Component_[2939692639054844657]": {
  4998. "$type": "EditorVisibilityComponent",
  4999. "Id": 2939692639054844657
  5000. },
  5001. "Component_[3624826975054373222]": {
  5002. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5003. "Id": 3624826975054373222,
  5004. "Parent Entity": "Entity_[30055431164411]",
  5005. "Transform Data": {
  5006. "Translate": [
  5007. 0.0,
  5008. 0.0,
  5009. 0.007144808769226074
  5010. ]
  5011. }
  5012. },
  5013. "Component_[6166339791366712155]": {
  5014. "$type": "EditorOnlyEntityComponent",
  5015. "Id": 6166339791366712155
  5016. },
  5017. "Component_[8798470866560069553]": {
  5018. "$type": "EditorLockComponent",
  5019. "Id": 8798470866560069553
  5020. },
  5021. "Component_[9079236517366404702]": {
  5022. "$type": "EditorInspectorComponent",
  5023. "Id": 9079236517366404702
  5024. }
  5025. }
  5026. }
  5027. }
  5028. }