123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028 |
- {
- "ContainerEntity": {
- "Id": "ContainerEntity",
- "Name": "RobotVacuum",
- "Components": {
- "Component_[10968750635921263389]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 10968750635921263389,
- "Parent Entity": ""
- },
- "Component_[11920575689657805645]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 11920575689657805645
- },
- "Component_[13542798806271282092]": {
- "$type": "EditorVisibilityComponent",
- "Id": 13542798806271282092
- },
- "Component_[3553722274441367439]": {
- "$type": "EditorEntityIconComponent",
- "Id": 3553722274441367439
- },
- "Component_[45046133969296221]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 45046133969296221
- },
- "Component_[6131669295631726586]": {
- "$type": "EditorPrefabComponent",
- "Id": 6131669295631726586
- },
- "Component_[6817966866890090293]": {
- "$type": "EditorLockComponent",
- "Id": 6817966866890090293
- },
- "Component_[761745188714332364]": {
- "$type": "EditorEntitySortComponent",
- "Id": 761745188714332364,
- "Child Entity Order": [
- "Entity_[30055431164411]",
- ""
- ]
- },
- "Component_[8724271900824416155]": {
- "$type": "EditorInspectorComponent",
- "Id": 8724271900824416155
- },
- "Component_[9366716203479672115]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 9366716203479672115
- }
- }
- },
- "Entities": {
- "Entity_[15934909250224]": {
- "Id": "Entity_[15934909250224]",
- "Name": "FollowCamera",
- "Components": {
- "Component_[16797873418433915706]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16797873418433915706
- },
- "Component_[17541973633878539421]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 17541973633878539421
- },
- "Component_[2741853701054493828]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 2741853701054493828
- },
- "Component_[3599238926902838088]": {
- "$type": "EditorEntityIconComponent",
- "Id": 3599238926902838088
- },
- "Component_[3816953534651368458]": {
- "$type": "EditorLockComponent",
- "Id": 3816953534651368458
- },
- "Component_[4358438849696264694]": {
- "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
- "Id": 4358438849696264694
- },
- "Component_[5247198885622374930]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 5247198885622374930
- },
- "Component_[6432147303510452185]": {
- "$type": "EditorInspectorComponent",
- "Id": 6432147303510452185
- },
- "Component_[6482509919667147636]": {
- "$type": "EditorEntitySortComponent",
- "Id": 6482509919667147636
- },
- "Component_[935550930618451361]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 935550930618451361,
- "Parent Entity": "Entity_[30055431164411]",
- "Transform Data": {
- "Translate": [
- -1.4058618545532227,
- 0.10479402542114258,
- 1.2001819610595703
- ],
- "Rotate": [
- 2.812905788421631,
- 29.03843116760254,
- -95.78008270263672
- ]
- }
- }
- }
- },
- "Entity_[29844977766907]": {
- "Id": "Entity_[29844977766907]",
- "Name": "robot_vacuum_display",
- "Components": {
- "Component_[12985102679617967668]": {
- "$type": "EditorEntitySortComponent",
- "Id": 12985102679617967668
- },
- "Component_[13842411102741348727]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 13842411102741348727
- },
- "Component_[14644196525901684926]": {
- "$type": "EditorMaterialComponent",
- "Id": 14644196525901684926,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 3328602885
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{B40251EE-D393-5721-BD0D-4B7E974FED9E}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_display.azmaterial"
- },
- "PropertyOverrides": {
- "baseColor.textureBlendMode": {
- "$type": "unsigned int",
- "Value": 3
- },
- "baseColor.textureMap": {
- "$type": "AssetId",
- "Value": {
- "guid": "{C86377E6-04B6-54CF-9909-B9392E646FA9}",
- "subId": 1000
- }
- },
- "baseColor.useTexture": {
- "$type": "bool",
- "Value": true
- }
- }
- }
- }
- ]
- }
- }
- },
- "Component_[14662789210804931598]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14662789210804931598
- },
- "Component_[16257108268870135419]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 16257108268870135419,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{E8A04E15-DBF1-5627-AAAC-866820CB04A9}",
- "subId": 275937803
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_display.azmodel"
- }
- }
- }
- },
- "Component_[5569798894058426913]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5569798894058426913
- },
- "Component_[6666158346010074145]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 6666158346010074145
- },
- "Component_[7248756551800098299]": {
- "$type": "EditorLockComponent",
- "Id": 7248756551800098299
- },
- "Component_[8797991750568259235]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8797991750568259235,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[9127282801278350722]": {
- "$type": "EditorInspectorComponent",
- "Id": 9127282801278350722
- },
- "Component_[9237683100440409518]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9237683100440409518
- }
- }
- },
- "Entity_[29849272734203]": {
- "Id": "Entity_[29849272734203]",
- "Name": "robot_vacuum_suspensionbracketright",
- "Components": {
- "Component_[10298441692952143132]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 10298441692952143132
- },
- "Component_[10723801744550018465]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 10723801744550018465
- },
- "Component_[10949980557844373573]": {
- "$type": "EditorInspectorComponent",
- "Id": 10949980557844373573
- },
- "Component_[12316448049210817715]": {
- "$type": "EditorMaterialComponent",
- "Id": 12316448049210817715,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[16356173703235151267]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 16356173703235151267,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[17905695045664625886]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17905695045664625886
- },
- "Component_[2658632129933647119]": {
- "$type": "EditorEntityIconComponent",
- "Id": 2658632129933647119
- },
- "Component_[3209016605494797976]": {
- "$type": "EditorLockComponent",
- "Id": 3209016605494797976
- },
- "Component_[4490309095897116918]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 4490309095897116918,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{FC8FF4AA-7522-5CE2-9EC9-DF772B4DE574}",
- "subId": 272040854
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_suspensionbracketright.azmodel"
- }
- }
- }
- },
- "Component_[6851231101142110419]": {
- "$type": "EditorVisibilityComponent",
- "Id": 6851231101142110419
- },
- "Component_[7645880101176993360]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 7645880101176993360
- }
- }
- },
- "Entity_[29853567701499]": {
- "Id": "Entity_[29853567701499]",
- "Name": "robot_vacuum_pariscopetube1",
- "Components": {
- "Component_[1002136966040176776]": {
- "$type": "EditorLockComponent",
- "Id": 1002136966040176776
- },
- "Component_[10128585282897083339]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 10128585282897083339,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{410C68DE-BBC0-5593-A494-AE6B2ECA7F9C}",
- "subId": 275150240
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_pariscopetube1.azmodel"
- }
- }
- }
- },
- "Component_[10800271596998239108]": {
- "$type": "EditorVisibilityComponent",
- "Id": 10800271596998239108
- },
- "Component_[11818208575759954307]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11818208575759954307
- },
- "Component_[12820935042511127306]": {
- "$type": "EditorInspectorComponent",
- "Id": 12820935042511127306
- },
- "Component_[13566021088355530138]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 13566021088355530138,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[15311464831601862343]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15311464831601862343
- },
- "Component_[15455988475518883085]": {
- "$type": "EditorEntitySortComponent",
- "Id": 15455988475518883085
- },
- "Component_[2858097557887295587]": {
- "$type": "EditorMaterialComponent",
- "Id": 2858097557887295587,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[4883359567806575815]": {
- "$type": "EditorEntityIconComponent",
- "Id": 4883359567806575815
- },
- "Component_[6350799983451887617]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 6350799983451887617
- }
- }
- },
- "Entity_[29857862668795]": {
- "Id": "Entity_[29857862668795]",
- "Name": "robot_vacuum_pariscope",
- "Components": {
- "Component_[12715334844369802531]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12715334844369802531
- },
- "Component_[16497743669364808333]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16497743669364808333
- },
- "Component_[3395440951971074979]": {
- "$type": "EditorEntityIconComponent",
- "Id": 3395440951971074979
- },
- "Component_[4526271521347260222]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 4526271521347260222
- },
- "Component_[575749947944104586]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 575749947944104586,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{56843DF7-DC70-5F7F-9747-DDC149EBFD43}",
- "subId": 275770736
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_pariscope.azmodel"
- }
- }
- }
- },
- "Component_[7075169527212756160]": {
- "$type": "EditorEntitySortComponent",
- "Id": 7075169527212756160
- },
- "Component_[7097362263958718526]": {
- "$type": "EditorMaterialComponent",
- "Id": 7097362263958718526,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[8608222016900599759]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8608222016900599759,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[919166424632691535]": {
- "$type": "EditorInspectorComponent",
- "Id": 919166424632691535
- },
- "Component_[924672989739984043]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 924672989739984043
- },
- "Component_[942580204921412069]": {
- "$type": "EditorLockComponent",
- "Id": 942580204921412069
- }
- }
- },
- "Entity_[29862157636091]": {
- "Id": "Entity_[29862157636091]",
- "Name": "robot_vacuum_bottombase",
- "Components": {
- "Component_[10473678182139113293]": {
- "$type": "EditorVisibilityComponent",
- "Id": 10473678182139113293
- },
- "Component_[11711118031855619896]": {
- "$type": "EditorInspectorComponent",
- "Id": 11711118031855619896
- },
- "Component_[12377244213778742025]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12377244213778742025
- },
- "Component_[12600399872005644428]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12600399872005644428
- },
- "Component_[14239430947160819486]": {
- "$type": "EditorEntitySortComponent",
- "Id": 14239430947160819486
- },
- "Component_[16250576811704652257]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 16250576811704652257
- },
- "Component_[5513140803037900469]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5513140803037900469,
- "Parent Entity": "Entity_[6506158658343]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 2.9802322387695313e-8
- ]
- }
- },
- "Component_[6166861922786349090]": {
- "$type": "EditorMaterialComponent",
- "Id": 6166861922786349090,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 467460050
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 840771816
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[6266003952878640001]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 6266003952878640001,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{6C355820-2D59-577D-A9B2-ED406064741F}",
- "subId": 283296393
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_bottombase.azmodel"
- }
- }
- }
- },
- "Component_[696281406360914553]": {
- "$type": "EditorLockComponent",
- "Id": 696281406360914553
- },
- "Component_[9749413441073393266]": {
- "$type": "EditorEntityIconComponent",
- "Id": 9749413441073393266
- }
- }
- },
- "Entity_[29866452603387]": {
- "Id": "Entity_[29866452603387]",
- "Name": "robot_vacuum_cpucase",
- "Components": {
- "Component_[10356958028194817037]": {
- "$type": "EditorVisibilityComponent",
- "Id": 10356958028194817037
- },
- "Component_[12000926685701110958]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12000926685701110958
- },
- "Component_[12521928875866731675]": {
- "$type": "EditorLockComponent",
- "Id": 12521928875866731675
- },
- "Component_[14489412466059887599]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14489412466059887599
- },
- "Component_[14551909316430055988]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 14551909316430055988,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[15559936702154199996]": {
- "$type": "EditorInspectorComponent",
- "Id": 15559936702154199996
- },
- "Component_[17629115463019695778]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 17629115463019695778
- },
- "Component_[3569088812992678077]": {
- "$type": "EditorEntitySortComponent",
- "Id": 3569088812992678077
- },
- "Component_[4530210423896011184]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 4530210423896011184
- },
- "Component_[8400181125726189581]": {
- "$type": "EditorMaterialComponent",
- "Id": 8400181125726189581,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[8795666149603220285]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 8795666149603220285,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{4E46E0A8-9380-541D-AC32-D79018377184}",
- "subId": 281912776
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_cpucase.azmodel"
- }
- }
- }
- }
- }
- },
- "Entity_[29870747570683]": {
- "Id": "Entity_[29870747570683]",
- "Name": "robot_vacuum_pariscopesenesor",
- "Components": {
- "Component_[14057256557477939584]": {
- "$type": "EditorInspectorComponent",
- "Id": 14057256557477939584
- },
- "Component_[14342767911560119442]": {
- "$type": "EditorVisibilityComponent",
- "Id": 14342767911560119442
- },
- "Component_[14803829603787579583]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14803829603787579583
- },
- "Component_[15750648033352986070]": {
- "$type": "EditorMaterialComponent",
- "Id": 15750648033352986070,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 1247756951
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{B410214E-804E-5CD7-A152-17B36FBEA0E6}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_chip.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[16343894006606552871]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 16343894006606552871,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{BED398BE-2FA7-57A9-9FFC-5EE0E8C44376}",
- "subId": 272685569
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_pariscopesenesor.azmodel"
- }
- }
- }
- },
- "Component_[16975852043683064842]": {
- "$type": "EditorLockComponent",
- "Id": 16975852043683064842
- },
- "Component_[17536351687905434953]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 17536351687905434953
- },
- "Component_[17740077145147291214]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 17740077145147291214
- },
- "Component_[6285435226352030312]": {
- "$type": "EditorEntitySortComponent",
- "Id": 6285435226352030312
- },
- "Component_[6476914044393995797]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 6476914044393995797,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[9206431687324815402]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 9206431687324815402
- }
- }
- },
- "Entity_[29875042537979]": {
- "Id": "Entity_[29875042537979]",
- "Name": "robot_vacuum_o_centersensor",
- "Components": {
- "Component_[116219169295708513]": {
- "$type": "EditorLockComponent",
- "Id": 116219169295708513
- },
- "Component_[13729794818213659006]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 13729794818213659006
- },
- "Component_[14591639774278218260]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14591639774278218260
- },
- "Component_[14628550509204703666]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 14628550509204703666,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{007D6954-ABCC-5A0A-A8E6-EC2A663AD278}",
- "subId": 270514493
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_o_centersensor.azmodel"
- }
- }
- }
- },
- "Component_[14912635637951794805]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 14912635637951794805,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[3403129396161458684]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3403129396161458684
- },
- "Component_[3900914160506900203]": {
- "$type": "EditorEntitySortComponent",
- "Id": 3900914160506900203
- },
- "Component_[4643733694507146017]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 4643733694507146017
- },
- "Component_[5595142197387249384]": {
- "$type": "EditorVisibilityComponent",
- "Id": 5595142197387249384
- },
- "Component_[6495087388840514113]": {
- "$type": "EditorMaterialComponent",
- "Id": 6495087388840514113,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 467460050
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 3551048943
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[6601702759309726542]": {
- "$type": "EditorInspectorComponent",
- "Id": 6601702759309726542
- }
- }
- },
- "Entity_[29879337505275]": {
- "Id": "Entity_[29879337505275]",
- "Name": "robot_vacuum_screenbody",
- "Components": {
- "Component_[1034281967815404319]": {
- "$type": "EditorStaticRigidBodyComponent",
- "Id": 1034281967815404319
- },
- "Component_[12038150070017414966]": {
- "$type": "EditorMaterialComponent",
- "Id": 12038150070017414966,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[12927181747641970582]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 12927181747641970582,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Paint - Enamel Glossy (Black)"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{472B20AC-6801-58F9-B178-6ECB7D489E22}",
- "subId": 3058355074
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_screenbody.fbx.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{472B20AC-6801-58F9-B178-6ECB7D489E22}",
- "subId": 3058355074
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/robovac/assets/robot_vacuum_screenbody.fbx.pxmesh"
- }
- }
- }
- }
- },
- "Component_[14426575678646087440]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 14426575678646087440,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[15166588050066116986]": {
- "$type": "EditorEntitySortComponent",
- "Id": 15166588050066116986
- },
- "Component_[15312243562797946371]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 15312243562797946371
- },
- "Component_[17191691642584128721]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 17191691642584128721
- },
- "Component_[18365507416467044590]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 18365507416467044590
- },
- "Component_[3402092418478522962]": {
- "$type": "EditorVisibilityComponent",
- "Id": 3402092418478522962
- },
- "Component_[5555446476205528163]": {
- "$type": "EditorEntityIconComponent",
- "Id": 5555446476205528163
- },
- "Component_[6510969327740399678]": {
- "$type": "EditorLockComponent",
- "Id": 6510969327740399678
- },
- "Component_[8812972052876778785]": {
- "$type": "EditorInspectorComponent",
- "Id": 8812972052876778785
- },
- "Component_[8911318239089158695]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 8911318239089158695,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{472B20AC-6801-58F9-B178-6ECB7D489E22}",
- "subId": 274459091
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_screenbody.azmodel"
- }
- }
- }
- }
- }
- },
- "Entity_[29883632472571]": {
- "Id": "Entity_[29883632472571]",
- "Name": "robot_vacuum_pariscopetube",
- "Components": {
- "Component_[11337381847282403410]": {
- "$type": "EditorEntitySortComponent",
- "Id": 11337381847282403410
- },
- "Component_[1134983352825847540]": {
- "$type": "EditorLockComponent",
- "Id": 1134983352825847540
- },
- "Component_[14299466247563877658]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 14299466247563877658
- },
- "Component_[1687230777002068203]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1687230777002068203,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[18134433113086217528]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 18134433113086217528
- },
- "Component_[2312105305446844838]": {
- "$type": "EditorVisibilityComponent",
- "Id": 2312105305446844838
- },
- "Component_[4865491440710470583]": {
- "$type": "EditorEntityIconComponent",
- "Id": 4865491440710470583
- },
- "Component_[521554514952015962]": {
- "$type": "EditorInspectorComponent",
- "Id": 521554514952015962
- },
- "Component_[5534952458813085516]": {
- "$type": "EditorMaterialComponent",
- "Id": 5534952458813085516,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[9350595258357518349]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 9350595258357518349,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{EA6AAF93-0D8C-57CE-8D94-4A562B041C71}",
- "subId": 284014725
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_pariscopetube.azmodel"
- }
- }
- }
- },
- "Component_[9715495271434390931]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 9715495271434390931
- }
- }
- },
- "Entity_[29887927439867]": {
- "Id": "Entity_[29887927439867]",
- "Name": "robot_vacuum_cpucover",
- "Components": {
- "Component_[10025315339984209842]": {
- "$type": "EditorEntitySortComponent",
- "Id": 10025315339984209842
- },
- "Component_[10332769047543096197]": {
- "$type": "EditorMaterialComponent",
- "Id": 10332769047543096197,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 3436397348
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{0AF7BE25-7818-5DEB-A848-FBF2575C04CA}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_plastic_-_sensor.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[11371991638107009117]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 11371991638107009117,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[14595306096618604571]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 14595306096618604571
- },
- "Component_[16147848150206823670]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16147848150206823670
- },
- "Component_[17368774951420809643]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 17368774951420809643,
- "DisabledComponents": {
- "Component_[14386255473429959438]": {
- "$type": "EditorColliderComponent",
- "Id": 14386255473429959438,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Plastic - Sensor"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{44254E4F-53F4-5C53-BF81-411AFEB75789}",
- "subId": 2981717856
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_cpucover.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{44254E4F-53F4-5C53-BF81-411AFEB75789}",
- "subId": 2981717856
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/robovac/assets/robot_vacuum_cpucover.pxmesh"
- }
- }
- }
- }
- }
- }
- },
- "Component_[18180067841158939512]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 18180067841158939512
- },
- "Component_[6737035184120536175]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 6737035184120536175,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{44254E4F-53F4-5C53-BF81-411AFEB75789}",
- "subId": 285199714
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_cpucover.azmodel"
- }
- }
- }
- },
- "Component_[7017274689486827012]": {
- "$type": "EditorEntityIconComponent",
- "Id": 7017274689486827012
- },
- "Component_[7036945985460570540]": {
- "$type": "EditorInspectorComponent",
- "Id": 7036945985460570540
- },
- "Component_[8842819203641128695]": {
- "$type": "EditorLockComponent",
- "Id": 8842819203641128695
- }
- }
- },
- "Entity_[29892222407163]": {
- "Id": "Entity_[29892222407163]",
- "Name": "robot_vacuum_navdisplaycamera",
- "Components": {
- "Component_[11433011431204834190]": {
- "$type": "EditorVisibilityComponent",
- "Id": 11433011431204834190
- },
- "Component_[1367065363202865187]": {
- "$type": "EditorInspectorComponent",
- "Id": 1367065363202865187
- },
- "Component_[15249786871612411618]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15249786871612411618
- },
- "Component_[15483889718527123585]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 15483889718527123585,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{4191CA27-DC5C-51B5-B12B-FA42849FF266}",
- "subId": 269723792
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_navdisplaycamera.azmodel"
- }
- }
- }
- },
- "Component_[16243294016245134249]": {
- "$type": "EditorEntitySortComponent",
- "Id": 16243294016245134249
- },
- "Component_[16435443952550190677]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 16435443952550190677
- },
- "Component_[3306545662102859474]": {
- "$type": "EditorMaterialComponent",
- "Id": 3306545662102859474,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 3551048943
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[40546633900605231]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 40546633900605231,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[6193008417045434597]": {
- "$type": "EditorEntityIconComponent",
- "Id": 6193008417045434597
- },
- "Component_[8478923596115389847]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 8478923596115389847
- },
- "Component_[9887849855476749867]": {
- "$type": "EditorLockComponent",
- "Id": 9887849855476749867
- }
- }
- },
- "Entity_[29896517374459]": {
- "Id": "Entity_[29896517374459]",
- "Name": "robot_vacuum_battery",
- "Components": {
- "Component_[10423770966231978871]": {
- "$type": "EditorInspectorComponent",
- "Id": 10423770966231978871
- },
- "Component_[12035807572453480741]": {
- "$type": "EditorEntityIconComponent",
- "Id": 12035807572453480741
- },
- "Component_[12920308688802330448]": {
- "$type": "EditorMaterialComponent",
- "Id": 12920308688802330448,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[13958036992729066340]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 13958036992729066340
- },
- "Component_[15097518247046901590]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 15097518247046901590,
- "Parent Entity": "Entity_[6506158658343]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- -5.960464477539063e-8
- ]
- }
- },
- "Component_[15668197313822929305]": {
- "$type": "EditorEntitySortComponent",
- "Id": 15668197313822929305
- },
- "Component_[15959986482832278310]": {
- "$type": "EditorLockComponent",
- "Id": 15959986482832278310
- },
- "Component_[2345816431385096198]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 2345816431385096198
- },
- "Component_[4028256576739017793]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 4028256576739017793,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{DF2994F3-CDAF-5AA1-89F0-13E822ED5B67}",
- "subId": 277740550
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_battery.azmodel"
- }
- }
- }
- },
- "Component_[6219971229759892183]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 6219971229759892183
- },
- "Component_[7746097945937138952]": {
- "$type": "EditorVisibilityComponent",
- "Id": 7746097945937138952
- }
- }
- },
- "Entity_[29900812341755]": {
- "Id": "Entity_[29900812341755]",
- "Name": "robot_vacuum_cpucoverdoor",
- "Components": {
- "Component_[1160898461646756509]": {
- "$type": "EditorEntitySortComponent",
- "Id": 1160898461646756509
- },
- "Component_[11693874107024939493]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 11693874107024939493,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[12680365327553012751]": {
- "$type": "EditorMaterialComponent",
- "Id": 12680365327553012751,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[1297133237731893804]": {
- "$type": "EditorLockComponent",
- "Id": 1297133237731893804
- },
- "Component_[1622304547483087437]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 1622304547483087437,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{058D9B06-830E-51BC-B66D-CC0BA948501A}",
- "subId": 277978673
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_cpucoverdoor.azmodel"
- }
- }
- }
- },
- "Component_[16476213380140018196]": {
- "$type": "EditorEntityIconComponent",
- "Id": 16476213380140018196
- },
- "Component_[4120695950251520283]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 4120695950251520283
- },
- "Component_[4975169445261639817]": {
- "$type": "EditorInspectorComponent",
- "Id": 4975169445261639817
- },
- "Component_[8533221928053165578]": {
- "$type": "EditorVisibilityComponent",
- "Id": 8533221928053165578
- },
- "Component_[8900053515996941211]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 8900053515996941211
- },
- "Component_[8922078388251675692]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 8922078388251675692
- }
- }
- },
- "Entity_[29905107309051]": {
- "Id": "Entity_[29905107309051]",
- "Name": "robot_vacuum_depthdensorleft",
- "Components": {
- "Component_[11494312482997210625]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 11494312482997210625
- },
- "Component_[13981390298683343246]": {
- "$type": "EditorLockComponent",
- "Id": 13981390298683343246
- },
- "Component_[14718637354657612910]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14718637354657612910
- },
- "Component_[15124373171622813264]": {
- "$type": "EditorVisibilityComponent",
- "Id": 15124373171622813264
- },
- "Component_[17861282930077705308]": {
- "$type": "EditorInspectorComponent",
- "Id": 17861282930077705308
- },
- "Component_[279716219125983537]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 279716219125983537
- },
- "Component_[5284750579111323888]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 5284750579111323888,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{4C43FC92-2409-58E9-8DDE-D9BCCC84F4CE}",
- "subId": 284522806
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_depthdensorleft.azmodel"
- }
- }
- }
- },
- "Component_[5902437826772068932]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5902437826772068932,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[6155037425782808290]": {
- "$type": "EditorMaterialComponent",
- "Id": 6155037425782808290,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 3551048943
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[664833020306432049]": {
- "$type": "EditorEntitySortComponent",
- "Id": 664833020306432049
- },
- "Component_[7353472286713300832]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 7353472286713300832
- }
- }
- },
- "Entity_[29909402276347]": {
- "Id": "Entity_[29909402276347]",
- "Name": "robot_vacuum_backbumper",
- "Components": {
- "Component_[1014096401474372943]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 1014096401474372943
- },
- "Component_[12094592484391732975]": {
- "$type": "EditorVisibilityComponent",
- "Id": 12094592484391732975
- },
- "Component_[12573602655672009410]": {
- "$type": "EditorEntityIconComponent",
- "Id": 12573602655672009410
- },
- "Component_[13499748203624767807]": {
- "$type": "EditorEntitySortComponent",
- "Id": 13499748203624767807
- },
- "Component_[16494407832622749468]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 16494407832622749468,
- "Parent Entity": "Entity_[6506158658343]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- -2.9802322387695313e-8
- ]
- }
- },
- "Component_[17012961892723687314]": {
- "$type": "EditorMaterialComponent",
- "Id": 17012961892723687314,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 467460050
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[18138520316301864088]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 18138520316301864088
- },
- "Component_[2190499505831493840]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 2190499505831493840,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{7C1552C5-7322-5C3D-B1FE-5C71BBD9941F}",
- "subId": 279299367
- },
- "assetHint": "assets/robovac/assets/default_robot_vacuum_backbumper_67301715_5cb3_52f8_917e_6921a5bf842c_.azmodel"
- }
- }
- }
- },
- "Component_[3476046400629899620]": {
- "$type": "EditorInspectorComponent",
- "Id": 3476046400629899620
- },
- "Component_[577491611541296416]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 577491611541296416
- },
- "Component_[9829318224754840890]": {
- "$type": "EditorLockComponent",
- "Id": 9829318224754840890
- }
- }
- },
- "Entity_[29913697243643]": {
- "Id": "Entity_[29913697243643]",
- "Name": "robot_vacuum_depthdensorright",
- "Components": {
- "Component_[11687252647046139603]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 11687252647046139603
- },
- "Component_[12178265791218007998]": {
- "$type": "EditorEntityIconComponent",
- "Id": 12178265791218007998
- },
- "Component_[13349755174293871721]": {
- "$type": "EditorVisibilityComponent",
- "Id": 13349755174293871721
- },
- "Component_[14236251140759845637]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 14236251140759845637,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{53886C06-FC86-5589-BDB4-65F7F7035E35}",
- "subId": 273455993
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_depthdensorright.azmodel"
- }
- }
- }
- },
- "Component_[15060908410058061725]": {
- "$type": "EditorInspectorComponent",
- "Id": 15060908410058061725
- },
- "Component_[15919697516053595824]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 15919697516053595824
- },
- "Component_[4986084949100319144]": {
- "$type": "EditorLockComponent",
- "Id": 4986084949100319144
- },
- "Component_[6302847338612665076]": {
- "$type": "EditorMaterialComponent",
- "Id": 6302847338612665076,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 3551048943
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[7851939175819994978]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 7851939175819994978
- },
- "Component_[8699479437331363671]": {
- "$type": "EditorEntitySortComponent",
- "Id": 8699479437331363671
- },
- "Component_[9378645190676979903]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 9378645190676979903,
- "Parent Entity": "Entity_[6506158658343]"
- }
- }
- },
- "Entity_[29917992210939]": {
- "Id": "Entity_[29917992210939]",
- "Name": "robot_vacuum_screenboltright",
- "Components": {
- "Component_[12292319564083887590]": {
- "$type": "EditorMaterialComponent",
- "Id": 12292319564083887590,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[12726580132435775133]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12726580132435775133
- },
- "Component_[14102005060516896856]": {
- "$type": "EditorLockComponent",
- "Id": 14102005060516896856
- },
- "Component_[14339044020650005895]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 14339044020650005895
- },
- "Component_[1593828453855235581]": {
- "$type": "EditorEntitySortComponent",
- "Id": 1593828453855235581
- },
- "Component_[17050674051210069790]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 17050674051210069790,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[3733454906690206524]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 3733454906690206524,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{F6B52F5E-A2AF-5AF0-9A75-F7BADC2A75E4}",
- "subId": 278270265
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_screenboltright.azmodel"
- }
- }
- }
- },
- "Component_[4804727057274159324]": {
- "$type": "EditorInspectorComponent",
- "Id": 4804727057274159324
- },
- "Component_[5066516253442437737]": {
- "$type": "EditorEntityIconComponent",
- "Id": 5066516253442437737
- },
- "Component_[8506706896382946194]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 8506706896382946194
- },
- "Component_[8636090317667778661]": {
- "$type": "EditorVisibilityComponent",
- "Id": 8636090317667778661
- }
- }
- },
- "Entity_[29922287178235]": {
- "Id": "Entity_[29922287178235]",
- "Name": "robot_vacuum_navlogicboard",
- "Components": {
- "Component_[10051983211610109492]": {
- "$type": "EditorEntitySortComponent",
- "Id": 10051983211610109492
- },
- "Component_[11412451456793240277]": {
- "$type": "EditorLockComponent",
- "Id": 11412451456793240277
- },
- "Component_[1284872308139332819]": {
- "$type": "EditorEntityIconComponent",
- "Id": 1284872308139332819
- },
- "Component_[13844027668023298287]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 13844027668023298287
- },
- "Component_[14223864992109437780]": {
- "$type": "EditorMaterialComponent",
- "Id": 14223864992109437780,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 1247756951
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{B410214E-804E-5CD7-A152-17B36FBEA0E6}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_chip.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 2088635577
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{B732DCB8-247F-5040-8956-17BE3CE61ECB}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_gold_-_polished.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[2422242582223629779]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 2422242582223629779
- },
- "Component_[7284251414179909196]": {
- "$type": "EditorInspectorComponent",
- "Id": 7284251414179909196
- },
- "Component_[7393546430428996290]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 7393546430428996290
- },
- "Component_[8442266590165968802]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8442266590165968802,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[8700461298150480671]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 8700461298150480671,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{D3805517-8DC0-567A-B40C-340FC11DDF4E}",
- "subId": 268596572
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_navlogicboard.azmodel"
- }
- }
- }
- },
- "Component_[89094339636559295]": {
- "$type": "EditorVisibilityComponent",
- "Id": 89094339636559295
- }
- }
- },
- "Entity_[29926582145531]": {
- "Id": "Entity_[29926582145531]",
- "Name": "robot_vacuum_screenglass",
- "Components": {
- "Component_[12002731711356285631]": {
- "$type": "EditorMaterialComponent",
- "Id": 12002731711356285631,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 46062180
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[12330259195616372942]": {
- "$type": "EditorEntitySortComponent",
- "Id": 12330259195616372942
- },
- "Component_[12341404943232303919]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12341404943232303919
- },
- "Component_[12993371939032694725]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 12993371939032694725,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{D74CBC2A-3B76-580E-BC60-1DD127B8D1B2}",
- "subId": 282926451
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_screenglass.azmodel"
- }
- }
- }
- },
- "Component_[16128151194242008487]": {
- "$type": "EditorEntityIconComponent",
- "Id": 16128151194242008487
- },
- "Component_[17206641155412004585]": {
- "$type": "EditorVisibilityComponent",
- "Id": 17206641155412004585
- },
- "Component_[2796450025346289110]": {
- "$type": "EditorLockComponent",
- "Id": 2796450025346289110
- },
- "Component_[4096916641474984795]": {
- "$type": "EditorInspectorComponent",
- "Id": 4096916641474984795
- },
- "Component_[6132862612852279101]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 6132862612852279101
- },
- "Component_[7309820908155270804]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 7309820908155270804
- },
- "Component_[8572598678422046028]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8572598678422046028,
- "Parent Entity": "Entity_[6506158658343]"
- }
- }
- },
- "Entity_[29930877112827]": {
- "Id": "Entity_[29930877112827]",
- "Name": "robot_vacuum_pariscopeglass",
- "Components": {
- "Component_[10442046716566583284]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 10442046716566583284,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{C61E6543-D095-5E81-B289-3F63B1305D3B}",
- "subId": 272346069
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_pariscopeglass.azmodel"
- }
- }
- }
- },
- "Component_[1142168535653003146]": {
- "$type": "EditorInspectorComponent",
- "Id": 1142168535653003146
- },
- "Component_[14307060787665841517]": {
- "$type": "EditorLockComponent",
- "Id": 14307060787665841517
- },
- "Component_[1459036190848484461]": {
- "$type": "EditorVisibilityComponent",
- "Id": 1459036190848484461
- },
- "Component_[16761550464080407825]": {
- "$type": "EditorEntityIconComponent",
- "Id": 16761550464080407825
- },
- "Component_[16890571128475542206]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 16890571128475542206,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[5647316105829875101]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 5647316105829875101
- },
- "Component_[585745993048077569]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 585745993048077569
- },
- "Component_[6235887042103616804]": {
- "$type": "EditorEntitySortComponent",
- "Id": 6235887042103616804
- },
- "Component_[8053322179614039518]": {
- "$type": "EditorMaterialComponent",
- "Id": 8053322179614039518,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 46062180
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[8660062993588394122]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 8660062993588394122
- }
- }
- },
- "Entity_[29935172080123]": {
- "Id": "Entity_[29935172080123]",
- "Name": "robot_vacuum_o_rightsensor",
- "Components": {
- "Component_[11218109192251318216]": {
- "$type": "EditorEntitySortComponent",
- "Id": 11218109192251318216
- },
- "Component_[12142412471193877135]": {
- "$type": "EditorInspectorComponent",
- "Id": 12142412471193877135
- },
- "Component_[14094796423703552457]": {
- "$type": "EditorMaterialComponent",
- "Id": 14094796423703552457,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 467460050
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 3551048943
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[15829508757323248550]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 15829508757323248550,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{C8D87B76-1AC1-5E08-84FE-939B73E6857E}",
- "subId": 282962690
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_o_rightsensor.azmodel"
- }
- }
- }
- },
- "Component_[16955695451460729126]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16955695451460729126
- },
- "Component_[3967112649105054567]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 3967112649105054567,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[4558962009475079380]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 4558962009475079380
- },
- "Component_[6430225031028498980]": {
- "$type": "EditorEntityIconComponent",
- "Id": 6430225031028498980
- },
- "Component_[8633773277579890589]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 8633773277579890589
- },
- "Component_[9127186941005400797]": {
- "$type": "EditorLockComponent",
- "Id": 9127186941005400797
- },
- "Component_[9634498388101526903]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 9634498388101526903
- }
- }
- },
- "Entity_[29939467047419]": {
- "Id": "Entity_[29939467047419]",
- "Name": "robot_vacuum_suspensionpinright",
- "Components": {
- "Component_[13661706989266729235]": {
- "$type": "EditorMaterialComponent",
- "Id": 13661706989266729235,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[1376852104874912431]": {
- "$type": "EditorInspectorComponent",
- "Id": 1376852104874912431
- },
- "Component_[14870085098253688937]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 14870085098253688937
- },
- "Component_[16241779256380439800]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 16241779256380439800
- },
- "Component_[17160263932622188569]": {
- "$type": "EditorEntityIconComponent",
- "Id": 17160263932622188569
- },
- "Component_[25153992274563351]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 25153992274563351
- },
- "Component_[3326445525557959534]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 3326445525557959534,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[3619274201172812811]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 3619274201172812811,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{2707E8B4-F734-5A5A-8608-BE8E67739A55}",
- "subId": 279595858
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_suspensionpinright.azmodel"
- }
- }
- }
- },
- "Component_[5335631611909721679]": {
- "$type": "EditorEntitySortComponent",
- "Id": 5335631611909721679
- },
- "Component_[6062135761031311688]": {
- "$type": "EditorLockComponent",
- "Id": 6062135761031311688
- },
- "Component_[9010939866745871567]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9010939866745871567
- }
- }
- },
- "Entity_[29943762014715]": {
- "Id": "Entity_[29943762014715]",
- "Name": "robot_vacuum_towertop",
- "Components": {
- "Component_[10901145661741858064]": {
- "$type": "EditorMaterialComponent",
- "Id": 10901145661741858064,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[16438259712171818029]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 16438259712171818029
- },
- "Component_[17073211457377932781]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17073211457377932781
- },
- "Component_[17639246189034827164]": {
- "$type": "EditorVisibilityComponent",
- "Id": 17639246189034827164
- },
- "Component_[18302758798047544602]": {
- "$type": "EditorInspectorComponent",
- "Id": 18302758798047544602
- },
- "Component_[2885749364514971795]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 2885749364514971795,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{9679E0B7-D5F3-53B1-AE62-90E1E4435A30}",
- "subId": 277454678
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_towertop.azmodel"
- }
- }
- }
- },
- "Component_[4466859611759804964]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 4466859611759804964,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[5731077585958708357]": {
- "$type": "EditorLockComponent",
- "Id": 5731077585958708357
- },
- "Component_[5807683078544418992]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 5807683078544418992
- },
- "Component_[845632872150187464]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 845632872150187464
- },
- "Component_[9591280779050569951]": {
- "$type": "EditorEntityIconComponent",
- "Id": 9591280779050569951
- }
- }
- },
- "Entity_[29948056982011]": {
- "Id": "Entity_[29948056982011]",
- "Name": "robot_vacuum_backbumpersensor",
- "Components": {
- "Component_[10607103240231917169]": {
- "$type": "EditorVisibilityComponent",
- "Id": 10607103240231917169
- },
- "Component_[10774933117776932712]": {
- "$type": "EditorMaterialComponent",
- "Id": 10774933117776932712,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1979588969
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{996BEAD2-C595-5851-BC40-A2A0F94A39A3}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_rubber_-_weathered.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[10958693856247034196]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 10958693856247034196,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{200D5507-75F1-5A03-AE9F-C7E1067DD835}",
- "subId": 268733097
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_backbumpersensor.azmodel"
- }
- }
- }
- },
- "Component_[16888724097605859568]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 16888724097605859568
- },
- "Component_[17399400900561916105]": {
- "$type": "EditorLockComponent",
- "Id": 17399400900561916105
- },
- "Component_[17425599155819026738]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 17425599155819026738
- },
- "Component_[3992404803994896552]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 3992404803994896552,
- "Parent Entity": "Entity_[6506158658343]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 2.9802322387695313e-8
- ]
- }
- },
- "Component_[464428997971359781]": {
- "$type": "EditorEntitySortComponent",
- "Id": 464428997971359781
- },
- "Component_[6714861625275427256]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 6714861625275427256
- },
- "Component_[8594697907173469593]": {
- "$type": "EditorInspectorComponent",
- "Id": 8594697907173469593
- },
- "Component_[9568700914252394640]": {
- "$type": "EditorEntityIconComponent",
- "Id": 9568700914252394640
- }
- }
- },
- "Entity_[29952351949307]": {
- "Id": "Entity_[29952351949307]",
- "Name": "robot_vacuum_brushb",
- "Components": {
- "Component_[12899601372624759729]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12899601372624759729
- },
- "Component_[14359914609974335934]": {
- "$type": "EditorMaterialComponent",
- "Id": 14359914609974335934,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 3569418037
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{A1E7367C-4A8E-5C11-A768-0661925C18AC}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_rubber_-_bumpy.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[14462753786176814970]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14462753786176814970
- },
- "Component_[14941610346605136382]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 14941610346605136382,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{526E0345-A3AB-5384-B659-43C54D108444}",
- "subId": 270271159
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_brushb.azmodel"
- }
- }
- }
- },
- "Component_[16761083537322087315]": {
- "$type": "EditorInspectorComponent",
- "Id": 16761083537322087315
- },
- "Component_[18011478391887594297]": {
- "$type": "EditorLockComponent",
- "Id": 18011478391887594297
- },
- "Component_[202200107630449173]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 202200107630449173,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[5852860452079171804]": {
- "$type": "EditorVisibilityComponent",
- "Id": 5852860452079171804
- },
- "Component_[7098133004677005239]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 7098133004677005239
- },
- "Component_[7328595170748800939]": {
- "$type": "EditorEntitySortComponent",
- "Id": 7328595170748800939
- },
- "Component_[7751471148092836156]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 7751471148092836156
- }
- }
- },
- "Entity_[29956646916603]": {
- "Id": "Entity_[29956646916603]",
- "Name": "robot_vacuum_wheel_left",
- "Components": {
- "Component_[11244768160826187048]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11244768160826187048
- },
- "Component_[11547087866408447036]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 11547087866408447036,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[12726666706066360153]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12726666706066360153
- },
- "Component_[13922205784861414527]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 13922205784861414527
- },
- "Component_[14062545106494077405]": {
- "$type": "EditorEntitySortComponent",
- "Id": 14062545106494077405
- },
- "Component_[1623897863065915511]": {
- "$type": "EditorLockComponent",
- "Id": 1623897863065915511
- },
- "Component_[16860373427348564323]": {
- "$type": "EditorEntityIconComponent",
- "Id": 16860373427348564323
- },
- "Component_[1900296011798294093]": {
- "$type": "EditorMaterialComponent",
- "Id": 1900296011798294093,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 840771816
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 1979588969
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{996BEAD2-C595-5851-BC40-A2A0F94A39A3}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_rubber_-_weathered.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[2603373599504855572]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 2603373599504855572,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{4C0493EF-CE6C-523F-83C7-91D11E710079}",
- "subId": 270189410
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_wheel_left.azmodel"
- }
- }
- }
- },
- "Component_[5234091435548567145]": {
- "$type": "EditorInspectorComponent",
- "Id": 5234091435548567145
- },
- "Component_[7938151298383120238]": {
- "$type": "EditorVisibilityComponent",
- "Id": 7938151298383120238
- }
- }
- },
- "Entity_[29960941883899]": {
- "Id": "Entity_[29960941883899]",
- "Name": "robot_vacuum_suspensionbracketleft",
- "Components": {
- "Component_[10843760723871178303]": {
- "$type": "EditorEntitySortComponent",
- "Id": 10843760723871178303
- },
- "Component_[12946777638102353407]": {
- "$type": "EditorInspectorComponent",
- "Id": 12946777638102353407
- },
- "Component_[15111140379365606835]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 15111140379365606835,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[15605340846412630545]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 15605340846412630545
- },
- "Component_[2551459834313168220]": {
- "$type": "EditorMaterialComponent",
- "Id": 2551459834313168220,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[2666628857887568501]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 2666628857887568501
- },
- "Component_[3340172902193628375]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 3340172902193628375
- },
- "Component_[3606538888856163283]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 3606538888856163283,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{BA8E1DF2-159C-5C10-BC64-0EC2256578B5}",
- "subId": 280150939
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_suspensionbracketleft.azmodel"
- }
- }
- }
- },
- "Component_[6989258203518356489]": {
- "$type": "EditorEntityIconComponent",
- "Id": 6989258203518356489
- },
- "Component_[9281657231695438786]": {
- "$type": "EditorLockComponent",
- "Id": 9281657231695438786
- },
- "Component_[9880047728119638596]": {
- "$type": "EditorVisibilityComponent",
- "Id": 9880047728119638596
- }
- }
- },
- "Entity_[29965236851195]": {
- "Id": "Entity_[29965236851195]",
- "Name": "robot_vacuum_o_sensor_board",
- "Components": {
- "Component_[1156667096148260854]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1156667096148260854,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[14076738285367838024]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 14076738285367838024
- },
- "Component_[14164259235291776849]": {
- "$type": "EditorVisibilityComponent",
- "Id": 14164259235291776849
- },
- "Component_[14655558145422723260]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 14655558145422723260
- },
- "Component_[15666286428402309977]": {
- "$type": "EditorMaterialComponent",
- "Id": 15666286428402309977,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 467460050
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 1247756951
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{B410214E-804E-5CD7-A152-17B36FBEA0E6}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_chip.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[1678449190952949220]": {
- "$type": "EditorLockComponent",
- "Id": 1678449190952949220
- },
- "Component_[17491009838706205916]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 17491009838706205916
- },
- "Component_[18421908823466002119]": {
- "$type": "EditorEntityIconComponent",
- "Id": 18421908823466002119
- },
- "Component_[299216117097721405]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 299216117097721405,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{AD4B016C-E6FB-553B-A2C8-AF607D64F268}",
- "subId": 273610155
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_o_sensor_board.azmodel"
- }
- }
- }
- },
- "Component_[3153684224292724288]": {
- "$type": "EditorInspectorComponent",
- "Id": 3153684224292724288
- },
- "Component_[8974640813787282107]": {
- "$type": "EditorEntitySortComponent",
- "Id": 8974640813787282107
- }
- }
- },
- "Entity_[29969531818491]": {
- "Id": "Entity_[29969531818491]",
- "Name": "robot_vacuum_pariscopetube2",
- "Components": {
- "Component_[10304117471988230418]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 10304117471988230418
- },
- "Component_[11439563233684343748]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 11439563233684343748,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[1614729706419118426]": {
- "$type": "EditorInspectorComponent",
- "Id": 1614729706419118426
- },
- "Component_[17440446447410127143]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 17440446447410127143,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{C4782BA6-ED02-5D3C-8197-460309515802}",
- "subId": 275719194
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_pariscopetube2.azmodel"
- }
- }
- }
- },
- "Component_[17764376460995465825]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 17764376460995465825
- },
- "Component_[18410157112535562065]": {
- "$type": "EditorVisibilityComponent",
- "Id": 18410157112535562065
- },
- "Component_[3523791602667311912]": {
- "$type": "EditorEntitySortComponent",
- "Id": 3523791602667311912
- },
- "Component_[5141697230707294358]": {
- "$type": "EditorLockComponent",
- "Id": 5141697230707294358
- },
- "Component_[5235798553595209213]": {
- "$type": "EditorMaterialComponent",
- "Id": 5235798553595209213,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[5518781946181943462]": {
- "$type": "EditorEntityIconComponent",
- "Id": 5518781946181943462
- },
- "Component_[951254728151626344]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 951254728151626344
- }
- }
- },
- "Entity_[29973826785787]": {
- "Id": "Entity_[29973826785787]",
- "Name": "robot_vacuum_navsensor_right",
- "Components": {
- "Component_[12018261331184779302]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 12018261331184779302,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[16545126784841313456]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 16545126784841313456,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{C352F5A2-0626-5B90-A283-5E8251D6B693}",
- "subId": 272195081
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_navsensor_right.azmodel"
- }
- }
- }
- },
- "Component_[16663873681846995418]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 16663873681846995418
- },
- "Component_[17078704738758693698]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 17078704738758693698
- },
- "Component_[17625718939444989840]": {
- "$type": "EditorMaterialComponent",
- "Id": 17625718939444989840,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[3909921484646562599]": {
- "$type": "EditorInspectorComponent",
- "Id": 3909921484646562599
- },
- "Component_[6873145759493866747]": {
- "$type": "EditorEntityIconComponent",
- "Id": 6873145759493866747
- },
- "Component_[719399110469979006]": {
- "$type": "EditorEntitySortComponent",
- "Id": 719399110469979006
- },
- "Component_[7553567324437214623]": {
- "$type": "EditorLockComponent",
- "Id": 7553567324437214623
- },
- "Component_[800566869202382851]": {
- "$type": "EditorVisibilityComponent",
- "Id": 800566869202382851
- },
- "Component_[8051037575167622138]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 8051037575167622138
- }
- }
- },
- "Entity_[29978121753083]": {
- "Id": "Entity_[29978121753083]",
- "Name": "robot_vacuum_o_leftsensor",
- "Components": {
- "Component_[11066946282277036911]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 11066946282277036911
- },
- "Component_[11601242142187750433]": {
- "$type": "EditorLockComponent",
- "Id": 11601242142187750433
- },
- "Component_[12547982344495647208]": {
- "$type": "EditorInspectorComponent",
- "Id": 12547982344495647208
- },
- "Component_[15074524417671635060]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 15074524417671635060,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[16418433750839317280]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 16418433750839317280
- },
- "Component_[16709684141193916503]": {
- "$type": "EditorMaterialComponent",
- "Id": 16709684141193916503,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 467460050
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 3551048943
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{18DE1187-52B8-5414-BA97-1247B28DCE4F}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_acrylic_clear_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[17576515446066858482]": {
- "$type": "EditorVisibilityComponent",
- "Id": 17576515446066858482
- },
- "Component_[3883591470894058362]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 3883591470894058362,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{F18D5EFA-5B8D-53EC-AA6F-ADDDD0891EC2}",
- "subId": 272654703
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_o_leftsensor.azmodel"
- }
- }
- }
- },
- "Component_[6904489747366718141]": {
- "$type": "EditorEntitySortComponent",
- "Id": 6904489747366718141
- },
- "Component_[7818376573401693370]": {
- "$type": "EditorEntityIconComponent",
- "Id": 7818376573401693370
- },
- "Component_[8837684612698729081]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 8837684612698729081
- }
- }
- },
- "Entity_[29982416720379]": {
- "Id": "Entity_[29982416720379]",
- "Name": "robot_vacuum_gearboxleft",
- "Components": {
- "Component_[11984952559158485498]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 11984952559158485498
- },
- "Component_[13883695774641414570]": {
- "$type": "EditorInspectorComponent",
- "Id": 13883695774641414570
- },
- "Component_[14302659583683576937]": {
- "$type": "EditorVisibilityComponent",
- "Id": 14302659583683576937
- },
- "Component_[15205423224621303423]": {
- "$type": "EditorMaterialComponent",
- "Id": 15205423224621303423,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{0AF7BE25-7818-5DEB-A848-FBF2575C04CA}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_plastic_-_sensor.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[15957032383373808758]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 15957032383373808758
- },
- "Component_[18005221952569609025]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 18005221952569609025,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[2001254569755661517]": {
- "$type": "EditorLockComponent",
- "Id": 2001254569755661517
- },
- "Component_[4293762197237276665]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 4293762197237276665,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{1AC71EDF-C901-5B2A-B7CB-8FC6A83C423D}",
- "subId": 273459944
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_gearboxleft.azmodel"
- }
- }
- }
- },
- "Component_[4591041123605381219]": {
- "$type": "EditorEntityIconComponent",
- "Id": 4591041123605381219
- },
- "Component_[4852401704918741352]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 4852401704918741352
- },
- "Component_[9766530642002435173]": {
- "$type": "EditorEntitySortComponent",
- "Id": 9766530642002435173
- }
- }
- },
- "Entity_[29986711687675]": {
- "Id": "Entity_[29986711687675]",
- "Name": "robot_vacuum_suspensionpinleft",
- "Components": {
- "Component_[11644099126241511922]": {
- "$type": "EditorEntityIconComponent",
- "Id": 11644099126241511922
- },
- "Component_[12299844390103792750]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12299844390103792750
- },
- "Component_[12461709617141381815]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 12461709617141381815,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{2F2FAB67-CA72-54E7-838D-766CB087679A}",
- "subId": 283612820
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_suspensionpinleft.azmodel"
- }
- }
- }
- },
- "Component_[12896358021212703794]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12896358021212703794
- },
- "Component_[14462526257775052370]": {
- "$type": "EditorLockComponent",
- "Id": 14462526257775052370
- },
- "Component_[14632875078243209710]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 14632875078243209710
- },
- "Component_[16665646200351104073]": {
- "$type": "EditorMaterialComponent",
- "Id": 16665646200351104073,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[16684564562606483997]": {
- "$type": "EditorInspectorComponent",
- "Id": 16684564562606483997
- },
- "Component_[4613754866214292476]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 4613754866214292476,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[4713074442491719492]": {
- "$type": "EditorVisibilityComponent",
- "Id": 4713074442491719492
- },
- "Component_[4882396129806514916]": {
- "$type": "EditorEntitySortComponent",
- "Id": 4882396129806514916
- }
- }
- },
- "Entity_[29991006654971]": {
- "Id": "Entity_[29991006654971]",
- "Name": "robot_vacuum_navsensor_left",
- "Components": {
- "Component_[1380808013849181618]": {
- "$type": "EditorVisibilityComponent",
- "Id": 1380808013849181618
- },
- "Component_[16263631943659708417]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 16263631943659708417
- },
- "Component_[16570651763080717548]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 16570651763080717548,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[16696465630512642554]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 16696465630512642554,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{1FD55167-737B-5E3F-8AFD-9F833B6CECCB}",
- "subId": 275423677
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_navsensor_left.azmodel"
- }
- }
- }
- },
- "Component_[17993939794131594135]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 17993939794131594135
- },
- "Component_[4261845577561539323]": {
- "$type": "EditorMaterialComponent",
- "Id": 4261845577561539323,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{52A3E0FB-AF6E-527E-AAF3-21FFA27B1919}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_absgrey.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[5809364070817595727]": {
- "$type": "EditorEntitySortComponent",
- "Id": 5809364070817595727
- },
- "Component_[603401864020856526]": {
- "$type": "EditorEntityIconComponent",
- "Id": 603401864020856526
- },
- "Component_[6555720991509805955]": {
- "$type": "EditorLockComponent",
- "Id": 6555720991509805955
- },
- "Component_[6835581242267498103]": {
- "$type": "EditorInspectorComponent",
- "Id": 6835581242267498103
- },
- "Component_[7537063425890049355]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 7537063425890049355
- }
- }
- },
- "Entity_[29995301622267]": {
- "Id": "Entity_[29995301622267]",
- "Name": "robot_vacuum_vacvasedoor",
- "Components": {
- "Component_[11880722833110957786]": {
- "$type": "EditorVisibilityComponent",
- "Id": 11880722833110957786
- },
- "Component_[11987811603410743577]": {
- "$type": "EditorEntityIconComponent",
- "Id": 11987811603410743577
- },
- "Component_[12998870142110447449]": {
- "$type": "EditorMaterialComponent",
- "Id": 12998870142110447449,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1687924491
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{E1884D12-B60F-5CF7-8BD0-D8EAFF0FE181}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_polymide_kapton_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[15026157217562700326]": {
- "$type": "EditorEntitySortComponent",
- "Id": 15026157217562700326
- },
- "Component_[1606793269942993686]": {
- "$type": "EditorLockComponent",
- "Id": 1606793269942993686
- },
- "Component_[3598123321435834848]": {
- "$type": "EditorInspectorComponent",
- "Id": 3598123321435834848
- },
- "Component_[7162383783240629247]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 7162383783240629247,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[7755340245799285993]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 7755340245799285993,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{9EC51CAC-6D19-5CE6-822D-114E6A0A9686}",
- "subId": 275582958
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_vacvasedoor.azmodel"
- }
- }
- }
- },
- "Component_[8646172083658144112]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 8646172083658144112
- },
- "Component_[9033172683501361641]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 9033172683501361641
- },
- "Component_[9310383425768524804]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 9310383425768524804
- }
- }
- },
- "Entity_[29999596589563]": {
- "Id": "Entity_[29999596589563]",
- "Name": "robot_vacuum_bottomwheelone",
- "Components": {
- "Component_[17098427013790263647]": {
- "$type": "EditorEntitySortComponent",
- "Id": 17098427013790263647
- },
- "Component_[2435213322421110972]": {
- "$type": "EditorVisibilityComponent",
- "Id": 2435213322421110972
- },
- "Component_[2489777411115429950]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 2489777411115429950,
- "Parent Entity": "Entity_[6506158658343]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 2.9802322387695313e-8
- ]
- }
- },
- "Component_[3698799949376954268]": {
- "$type": "EditorInspectorComponent",
- "Id": 3698799949376954268
- },
- "Component_[4808059948074318028]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 4808059948074318028
- },
- "Component_[498704701938875074]": {
- "$type": "EditorLockComponent",
- "Id": 498704701938875074
- },
- "Component_[5514337834801407013]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5514337834801407013
- },
- "Component_[6116338082524157478]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 6116338082524157478,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{ED25280D-25D6-5B96-98FF-5609D1F5B19D}",
- "subId": 277321324
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_bottomwheelone.azmodel"
- }
- }
- }
- },
- "Component_[6866919899933988363]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 6866919899933988363
- },
- "Component_[7603001383940913731]": {
- "$type": "EditorEntityIconComponent",
- "Id": 7603001383940913731
- },
- "Component_[7975178403225927265]": {
- "$type": "EditorMaterialComponent",
- "Id": 7975178403225927265,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 840771816
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
- }
- }
- }
- ]
- }
- }
- }
- }
- },
- "Entity_[30003891556859]": {
- "Id": "Entity_[30003891556859]",
- "Name": "robot_vacuum_rails",
- "Components": {
- "Component_[13583003163065014935]": {
- "$type": "EditorVisibilityComponent",
- "Id": 13583003163065014935
- },
- "Component_[15067095634436349471]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15067095634436349471
- },
- "Component_[16011275311072274726]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 16011275311072274726,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[16838630867639204964]": {
- "$type": "EditorMaterialComponent",
- "Id": 16838630867639204964,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[169500293911945972]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 169500293911945972
- },
- "Component_[1999492667193267803]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 1999492667193267803,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{B7B22E2E-8891-5074-A6D1-59F52E4ED9D5}",
- "subId": 279195488
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_rails.azmodel"
- }
- }
- }
- },
- "Component_[2716721790910499113]": {
- "$type": "EditorEntitySortComponent",
- "Id": 2716721790910499113
- },
- "Component_[3906801444970843942]": {
- "$type": "EditorInspectorComponent",
- "Id": 3906801444970843942
- },
- "Component_[5277479938788874759]": {
- "$type": "EditorLockComponent",
- "Id": 5277479938788874759
- },
- "Component_[9142641814314589986]": {
- "$type": "EditorEntityIconComponent",
- "Id": 9142641814314589986
- },
- "Component_[9604075921779488569]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 9604075921779488569
- }
- }
- },
- "Entity_[30008186524155]": {
- "Id": "Entity_[30008186524155]",
- "Name": "robot_vacuum_capture",
- "Components": {
- "Component_[10407116969981419608]": {
- "$type": "EditorEntityIconComponent",
- "Id": 10407116969981419608
- },
- "Component_[13095834662090245426]": {
- "$type": "EditorInspectorComponent",
- "Id": 13095834662090245426
- },
- "Component_[13531111235357671619]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 13531111235357671619
- },
- "Component_[17267597419950408018]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 17267597419950408018,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{ECF1C183-6C68-5CCD-AD24-4924C65CB0C7}",
- "subId": 274574925
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_capture.azmodel"
- }
- }
- }
- },
- "Component_[17717685925639233758]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 17717685925639233758,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[17812014709847617194]": {
- "$type": "EditorVisibilityComponent",
- "Id": 17812014709847617194
- },
- "Component_[17911155472116189313]": {
- "$type": "EditorLockComponent",
- "Id": 17911155472116189313
- },
- "Component_[2654742047251156582]": {
- "$type": "EditorMaterialComponent",
- "Id": 2654742047251156582,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 840771816
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[6352395979757277379]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 6352395979757277379
- },
- "Component_[7390230706451251440]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 7390230706451251440
- },
- "Component_[9400612936246896464]": {
- "$type": "EditorEntitySortComponent",
- "Id": 9400612936246896464
- }
- }
- },
- "Entity_[30012481491451]": {
- "Id": "Entity_[30012481491451]",
- "Name": "robot_vacuum_pariscopetube3",
- "Components": {
- "Component_[12880168912967059759]": {
- "$type": "EditorLockComponent",
- "Id": 12880168912967059759
- },
- "Component_[15778580180650212910]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 15778580180650212910
- },
- "Component_[16768404115373048488]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 16768404115373048488
- },
- "Component_[3625889452996272264]": {
- "$type": "EditorEntitySortComponent",
- "Id": 3625889452996272264
- },
- "Component_[4887345707029686]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 4887345707029686,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{64119CB4-A7C6-5969-B6C0-1EE5E6FC2252}",
- "subId": 275256460
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_pariscopetube3.azmodel"
- }
- }
- }
- },
- "Component_[6155009947093850461]": {
- "$type": "EditorInspectorComponent",
- "Id": 6155009947093850461
- },
- "Component_[6325646382614719107]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 6325646382614719107
- },
- "Component_[654981359032710042]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 654981359032710042,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[7326914943494189567]": {
- "$type": "EditorMaterialComponent",
- "Id": 7326914943494189567,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[7703415841191096284]": {
- "$type": "EditorVisibilityComponent",
- "Id": 7703415841191096284
- },
- "Component_[8457773976516588943]": {
- "$type": "EditorEntityIconComponent",
- "Id": 8457773976516588943
- }
- }
- },
- "Entity_[30016776458747]": {
- "Id": "Entity_[30016776458747]",
- "Name": "robot_vacuum_base_link",
- "Components": {
- "Component_[11858580036815791673]": {
- "$type": "EditorStaticRigidBodyComponent",
- "Id": 11858580036815791673
- },
- "Component_[1817880946152815022]": {
- "$type": "EditorMeshColliderComponent",
- "Id": 1817880946152815022,
- "ColliderConfiguration": {
- "InSceneQueries": false,
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "ABS (White)"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "PhysicsAsset": {
- "Asset": {
- "assetId": {
- "guid": "{5AE935FF-A90A-59AF-BFD4-F38CEB3F8CDF}",
- "subId": 3876031564
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_base_link.fbx.pxmesh"
- },
- "Configuration": {
- "PhysicsAsset": {
- "assetId": {
- "guid": "{5AE935FF-A90A-59AF-BFD4-F38CEB3F8CDF}",
- "subId": 3876031564
- },
- "loadBehavior": "QueueLoad",
- "assetHint": "assets/robovac/assets/robot_vacuum_base_link.fbx.pxmesh"
- }
- }
- }
- }
- },
- "Component_[344085018016650483]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 344085018016650483
- },
- "Component_[3599416590072694646]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 3599416590072694646,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{5AE935FF-A90A-59AF-BFD4-F38CEB3F8CDF}",
- "subId": 281735281
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_base_link.fbx.azmodel"
- }
- }
- }
- },
- "Component_[3767947283461603081]": {
- "$type": "EditorVisibilityComponent",
- "Id": 3767947283461603081
- },
- "Component_[3845306205339995033]": {
- "$type": "EditorLockComponent",
- "Id": 3845306205339995033
- },
- "Component_[4855684525398601046]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 4855684525398601046,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[4975798632544902102]": {
- "$type": "EditorEntityIconComponent",
- "Id": 4975798632544902102
- },
- "Component_[7103247526655008858]": {
- "$type": "EditorMaterialComponent",
- "Id": 7103247526655008858,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 840771816
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[7608249923350219080]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 7608249923350219080
- },
- "Component_[7986653469645499570]": {
- "$type": "EditorInspectorComponent",
- "Id": 7986653469645499570
- },
- "Component_[8879182223984542773]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 8879182223984542773
- },
- "Component_[9083243899270705702]": {
- "$type": "EditorEntitySortComponent",
- "Id": 9083243899270705702
- }
- }
- },
- "Entity_[30021071426043]": {
- "Id": "Entity_[30021071426043]",
- "Name": "robot_vacuum_towerstablebase",
- "Components": {
- "Component_[12475386664588628871]": {
- "$type": "EditorEntitySortComponent",
- "Id": 12475386664588628871
- },
- "Component_[1402737904758723794]": {
- "$type": "EditorEntityIconComponent",
- "Id": 1402737904758723794
- },
- "Component_[14426832034326352041]": {
- "$type": "EditorMaterialComponent",
- "Id": 14426832034326352041,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[15570075083272083678]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 15570075083272083678,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{F07142B9-F47B-5A34-BDCA-1A951A2B722B}",
- "subId": 284192294
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_towerstablebase.azmodel"
- }
- }
- }
- },
- "Component_[3633854916444915713]": {
- "$type": "EditorLockComponent",
- "Id": 3633854916444915713
- },
- "Component_[3824736560703254374]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 3824736560703254374
- },
- "Component_[4470687351955558889]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 4470687351955558889,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[5476737228447272011]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 5476737228447272011
- },
- "Component_[6963453425367601209]": {
- "$type": "EditorInspectorComponent",
- "Id": 6963453425367601209
- },
- "Component_[845623584106570611]": {
- "$type": "EditorVisibilityComponent",
- "Id": 845623584106570611
- },
- "Component_[9791205326329950834]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 9791205326329950834
- }
- }
- },
- "Entity_[30025366393339]": {
- "Id": "Entity_[30025366393339]",
- "Name": "robot_vacuum_bottomwheeltwo",
- "Components": {
- "Component_[11486843524168740793]": {
- "$type": "EditorVisibilityComponent",
- "Id": 11486843524168740793
- },
- "Component_[11517677698538696102]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 11517677698538696102,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[11892970256911596569]": {
- "$type": "EditorEntitySortComponent",
- "Id": 11892970256911596569
- },
- "Component_[13415828729565192744]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 13415828729565192744,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{30F3B098-95A6-511D-86FC-1F9E8B626477}",
- "subId": 270637819
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_bottomwheeltwo.azmodel"
- }
- }
- }
- },
- "Component_[17461939584671632810]": {
- "$type": "EditorLockComponent",
- "Id": 17461939584671632810
- },
- "Component_[18276348651685546120]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 18276348651685546120
- },
- "Component_[5030734836737076151]": {
- "$type": "EditorInspectorComponent",
- "Id": 5030734836737076151
- },
- "Component_[5439690085647965510]": {
- "$type": "EditorEntityIconComponent",
- "Id": 5439690085647965510
- },
- "Component_[7155087601813549035]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 7155087601813549035
- },
- "Component_[9818824692836354306]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 9818824692836354306
- },
- "Component_[9902098114589520976]": {
- "$type": "EditorMaterialComponent",
- "Id": 9902098114589520976,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 840771816
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
- }
- }
- }
- ]
- }
- }
- }
- }
- },
- "Entity_[30029661360635]": {
- "Id": "Entity_[30029661360635]",
- "Name": "robot_vacuum_mainlogicboard",
- "Components": {
- "Component_[10241546628040874120]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 10241546628040874120,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{8F190CD8-69E6-5910-9246-B2C3E22FC6B3}",
- "subId": 271853391
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_mainlogicboard.azmodel"
- }
- }
- }
- },
- "Component_[1137980311062119702]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 1137980311062119702
- },
- "Component_[13699028550573905962]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 13699028550573905962
- },
- "Component_[15250978781301659058]": {
- "$type": "EditorInspectorComponent",
- "Id": 15250978781301659058
- },
- "Component_[16615264906452507175]": {
- "$type": "EditorEntityIconComponent",
- "Id": 16615264906452507175
- },
- "Component_[3525954281636674520]": {
- "$type": "EditorEntitySortComponent",
- "Id": 3525954281636674520
- },
- "Component_[4300523563177321077]": {
- "$type": "EditorVisibilityComponent",
- "Id": 4300523563177321077
- },
- "Component_[5331318633270037190]": {
- "$type": "EditorMaterialComponent",
- "Id": 5331318633270037190,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 840771816
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 1247756951
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{B410214E-804E-5CD7-A152-17B36FBEA0E6}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_chip.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 2685768749
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{72A191F2-05C0-50A8-9590-896336FEC9AC}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_fr4.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[5435042190051421878]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 5435042190051421878
- },
- "Component_[5435929030723335900]": {
- "$type": "EditorLockComponent",
- "Id": 5435929030723335900
- },
- "Component_[5980272100921284882]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 5980272100921284882,
- "Parent Entity": "Entity_[6506158658343]"
- }
- }
- },
- "Entity_[30033956327931]": {
- "Id": "Entity_[30033956327931]",
- "Name": "robot_vacuum_brushc",
- "Components": {
- "Component_[10056716655303761556]": {
- "$type": "EditorMaterialComponent",
- "Id": 10056716655303761556,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1979588969
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{996BEAD2-C595-5851-BC40-A2A0F94A39A3}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_rubber_-_weathered.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[11205876090528442303]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 11205876090528442303,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[11387276796358957676]": {
- "$type": "EditorEntitySortComponent",
- "Id": 11387276796358957676
- },
- "Component_[114464133465390289]": {
- "$type": "EditorVisibilityComponent",
- "Id": 114464133465390289
- },
- "Component_[1788839891950967143]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 1788839891950967143,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{8A17DB80-F64A-5B35-90BC-DF7A390F2001}",
- "subId": 270217761
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_brushc.azmodel"
- }
- }
- }
- },
- "Component_[4150366641201823465]": {
- "$type": "EditorInspectorComponent",
- "Id": 4150366641201823465
- },
- "Component_[4412915056593362733]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 4412915056593362733
- },
- "Component_[6285506504893937226]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 6285506504893937226
- },
- "Component_[6581271400812256723]": {
- "$type": "EditorEntityIconComponent",
- "Id": 6581271400812256723
- },
- "Component_[726750158276824077]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 726750158276824077
- },
- "Component_[7281494098851044446]": {
- "$type": "EditorLockComponent",
- "Id": 7281494098851044446
- }
- }
- },
- "Entity_[30038251295227]": {
- "Id": "Entity_[30038251295227]",
- "Name": "robot_vacuum_gearboxright",
- "Components": {
- "Component_[1133023484187037027]": {
- "$type": "EditorInspectorComponent",
- "Id": 1133023484187037027
- },
- "Component_[1239364706239211319]": {
- "$type": "EditorEntitySortComponent",
- "Id": 1239364706239211319
- },
- "Component_[13720404771539331043]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 13720404771539331043
- },
- "Component_[14174827805731672074]": {
- "$type": "EditorLockComponent",
- "Id": 14174827805731672074
- },
- "Component_[14965498366807840581]": {
- "$type": "EditorEntityIconComponent",
- "Id": 14965498366807840581
- },
- "Component_[16194815260036076114]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16194815260036076114
- },
- "Component_[2519269325213884748]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 2519269325213884748,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[3780554651226155816]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 3780554651226155816
- },
- "Component_[5122398714384839784]": {
- "$type": "EditorMaterialComponent",
- "Id": 5122398714384839784,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[9002846224351078899]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 9002846224351078899,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{D9ECA641-E87C-5379-8EF6-164558ED841B}",
- "subId": 278453625
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_gearboxright.azmodel"
- }
- }
- }
- },
- "Component_[9390233368193709296]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 9390233368193709296
- }
- }
- },
- "Entity_[30042546262523]": {
- "Id": "Entity_[30042546262523]",
- "Name": "robot_vacuum_rightdrivegear",
- "Components": {
- "Component_[10170119661745965980]": {
- "$type": "EditorInspectorComponent",
- "Id": 10170119661745965980
- },
- "Component_[10944562783028267678]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 10944562783028267678
- },
- "Component_[1251625587252810393]": {
- "$type": "EditorEntitySortComponent",
- "Id": 1251625587252810393
- },
- "Component_[13523723562617065969]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 13523723562617065969,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{B378D436-3D8F-593D-9D4A-B910E43FACBB}",
- "subId": 274677411
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_rightdrivegear.azmodel"
- }
- }
- }
- },
- "Component_[13782790080474671215]": {
- "$type": "EditorLockComponent",
- "Id": 13782790080474671215
- },
- "Component_[14450145972002754509]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 14450145972002754509
- },
- "Component_[15674135959119870335]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15674135959119870335
- },
- "Component_[3435973274348604176]": {
- "$type": "EditorEntityIconComponent",
- "Id": 3435973274348604176
- },
- "Component_[3587373179464577687]": {
- "$type": "EditorMaterialComponent",
- "Id": 3587373179464577687,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 642792236
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F577C6B7-C42B-5CE8-87C2-8248A315A468}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_steel_-_satin.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[6124322051370137604]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 6124322051370137604,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[8035867096751189057]": {
- "$type": "EditorVisibilityComponent",
- "Id": 8035867096751189057
- }
- }
- },
- "Entity_[30046841229819]": {
- "Id": "Entity_[30046841229819]",
- "Name": "robot_vacuum_wheel_right",
- "Components": {
- "Component_[10318422179640899640]": {
- "$type": "EditorInspectorComponent",
- "Id": 10318422179640899640
- },
- "Component_[11753601225620024279]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11753601225620024279
- },
- "Component_[12855737534834744424]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12855737534834744424
- },
- "Component_[13254538320255520595]": {
- "$type": "EditorMaterialComponent",
- "Id": 13254538320255520595,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 840771816
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{241AAEC3-59DF-5792-B463-93287A162A83}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_abs_white_.azmaterial"
- }
- }
- },
- {
- "Key": {
- "materialSlotStableId": 1979588969
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{996BEAD2-C595-5851-BC40-A2A0F94A39A3}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_rubber_-_weathered.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[13327589018019843257]": {
- "$type": "EditorEntityIconComponent",
- "Id": 13327589018019843257
- },
- "Component_[13800265395195759351]": {
- "$type": "EditorLockComponent",
- "Id": 13800265395195759351
- },
- "Component_[14844364127576081774]": {
- "$type": "EditorVisibilityComponent",
- "Id": 14844364127576081774
- },
- "Component_[14949361985832914947]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 14949361985832914947,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[18038086914908374883]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 18038086914908374883
- },
- "Component_[2944624180499581291]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 2944624180499581291,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{552355B7-B59D-589D-A162-46D2141B1462}",
- "subId": 284877102
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_wheel_right.azmodel"
- }
- }
- }
- },
- "Component_[4306775618786459448]": {
- "$type": "EditorEntitySortComponent",
- "Id": 4306775618786459448
- }
- }
- },
- "Entity_[30051136197115]": {
- "Id": "Entity_[30051136197115]",
- "Name": "robot_vacuum_vaccase",
- "Components": {
- "Component_[10171691559656925088]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 10171691559656925088,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{3A435A14-ECF6-5787-86B1-B8B438A11F15}",
- "subId": 268543421
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_vaccase.azmodel"
- }
- }
- }
- },
- "Component_[1071801426654793983]": {
- "$type": "EditorInspectorComponent",
- "Id": 1071801426654793983
- },
- "Component_[11944597572094354218]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 11944597572094354218
- },
- "Component_[14203484318855151935]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 14203484318855151935
- },
- "Component_[1436035291182106083]": {
- "$type": "EditorMaterialComponent",
- "Id": 1436035291182106083,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1687924491
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{E1884D12-B60F-5CF7-8BD0-D8EAFF0FE181}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_polymide_kapton_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[16829937000198065444]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 16829937000198065444,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[17219561062194009311]": {
- "$type": "EditorLockComponent",
- "Id": 17219561062194009311
- },
- "Component_[2013876049405035287]": {
- "$type": "EditorVisibilityComponent",
- "Id": 2013876049405035287
- },
- "Component_[5466038758009434737]": {
- "$type": "EditorEntityIconComponent",
- "Id": 5466038758009434737
- },
- "Component_[5651843339576349886]": {
- "$type": "EditorEntitySortComponent",
- "Id": 5651843339576349886
- },
- "Component_[5667314715290078262]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 5667314715290078262
- }
- }
- },
- "Entity_[30055431164411]": {
- "Id": "Entity_[30055431164411]",
- "Name": "RobotVacuum",
- "Components": {
- "Component_[12335778149585122117]": {
- "$type": "EditorEntityIconComponent",
- "Id": 12335778149585122117
- },
- "Component_[13195787262642532680]": {
- "$type": "EditorRigidBodyComponent",
- "Id": 13195787262642532680,
- "Configuration": {
- "entityId": "",
- "Linear damping": 0.009999999776482582,
- "Angular damping": 0.10000000149011612,
- "Compute Mass": false,
- "Mass": 3.0,
- "Centre of mass offset": [
- 2.091176787288873e-9,
- 3.9075187530102085e-9,
- -7.555317482754731e-11
- ],
- "Compute inertia": false,
- "Inertia tensor": [
- 2.0,
- 0.0,
- 0.0,
- 0.0,
- 2.0,
- 0.0,
- 0.0,
- 0.0,
- 2.0
- ]
- }
- },
- "Component_[15286078445589088466]": {
- "$type": "EditorShapeColliderComponent",
- "Id": 15286078445589088466,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Entire object"
- }
- ]
- }
- },
- "ShapeConfigs": [
- {
- "$type": "CookedMeshShapeConfiguration",
- "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",
- "Type": 1
- }
- ]
- },
- "Component_[15309293085555674908]": {
- "$type": "EditorEntitySortComponent",
- "Id": 15309293085555674908,
- "Child Entity Order": [
- "Entity_[15934909250224]",
- "Entity_[6506158658343]",
- "Entity_[8859800736551]"
- ]
- },
- "Component_[15910097906063283013]": {
- "$type": "GenericComponentWrapper",
- "Id": 15910097906063283013,
- "m_template": {
- "$type": "ROS2FrameComponent",
- "Namespace Configuration": {
- "Namespace Strategy": 1
- },
- "Frame Name": "base_link"
- }
- },
- "Component_[16572099067667838198]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16572099067667838198
- },
- "Component_[18115319375137189991]": {
- "$type": "EditorCylinderShapeComponent",
- "Id": 18115319375137189991,
- "ShapeColor": [
- 1.0,
- 1.0,
- 0.7803921699523926
- ],
- "CylinderShape": {
- "Configuration": {
- "DrawColor": [
- 1.0,
- 1.0,
- 0.7803921699523926
- ],
- "Height": 0.009999999776482582,
- "Radius": 0.18000000715255737
- }
- }
- },
- "Component_[223082360444566403]": {
- "$type": "EditorInspectorComponent",
- "Id": 223082360444566403,
- "ComponentOrderEntryArray": [
- {
- "ComponentId": 8050084937550776360
- }
- ]
- },
- "Component_[2317561115070792535]": {
- "$type": "EditorLockComponent",
- "Id": 2317561115070792535
- },
- "Component_[5567970943382624113]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5567970943382624113
- },
- "Component_[5957548067248555519]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 5957548067248555519
- },
- "Component_[7715341178742189308]": {
- "$type": "GenericComponentWrapper",
- "Id": 7715341178742189308,
- "m_template": {
- "$type": "ROS2RobotControlComponent",
- "SubscriberConfiguration": {
- "Type": "ackermann_msgs::msg::AckermannDrive",
- "Topic": "cmd_vel"
- }
- }
- },
- "Component_[8050084937550776360]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8050084937550776360,
- "Parent Entity": "ContainerEntity"
- },
- "Component_[9192919221946408591]": {
- "$type": "GenericComponentWrapper",
- "Id": 9192919221946408591,
- "m_template": {
- "$type": "RigidBodyTwistControlComponent"
- }
- },
- "Component_[9387051024545712596]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 9387051024545712596
- }
- }
- },
- "Entity_[30059726131707]": {
- "Id": "Entity_[30059726131707]",
- "Name": "robot_vacuum_osensorboardholder",
- "Components": {
- "Component_[10741789439431487362]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 10741789439431487362
- },
- "Component_[12823283736088704650]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 12823283736088704650,
- "Parent Entity": "Entity_[6506158658343]"
- },
- "Component_[12872069760461567186]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12872069760461567186
- },
- "Component_[13270684703792889476]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 13270684703792889476,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{3DFC70D2-228C-505C-9078-89970FBE1E84}",
- "subId": 272031789
- },
- "assetHint": "assets/robovac/assets/robot_vacuum_osensorboardholder.azmodel"
- }
- }
- }
- },
- "Component_[13285217915550335661]": {
- "$type": "EditorInspectorComponent",
- "Id": 13285217915550335661
- },
- "Component_[16122814623279561882]": {
- "$type": "EditorEntityIconComponent",
- "Id": 16122814623279561882
- },
- "Component_[17667284355890202398]": {
- "$type": "EditorLockComponent",
- "Id": 17667284355890202398
- },
- "Component_[3439142514294566174]": {
- "$type": "EditorVisibilityComponent",
- "Id": 3439142514294566174
- },
- "Component_[5750714056929933670]": {
- "$type": "EditorEntitySortComponent",
- "Id": 5750714056929933670
- },
- "Component_[6065822064279006146]": {
- "$type": "EditorMaterialComponent",
- "Id": 6065822064279006146,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 713658209
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{F0459FD0-3485-565F-89B9-BC678699B78D}"
- },
- "assetHint": "assets/robovac/assets/robotvacuum_paint_-_enamel_glossy_black_.azmaterial"
- }
- }
- }
- ]
- }
- }
- },
- "Component_[7866814265491933405]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 7866814265491933405
- }
- }
- },
- "Entity_[5002252716067]": {
- "Id": "Entity_[5002252716067]",
- "Name": "Lidar",
- "Components": {
- "Component_[14456088025367877347]": {
- "$type": "EditorEntitySortComponent",
- "Id": 14456088025367877347
- },
- "Component_[14551933034245337847]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 14551933034245337847
- },
- "Component_[15934807076508388308]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 15934807076508388308,
- "Parent Entity": "Entity_[8859800736551]",
- "Transform Data": {
- "Translate": [
- 0.1501830816268921,
- -0.010563373565673828,
- 0.035237789154052734
- ]
- }
- },
- "Component_[15975027362231334963]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15975027362231334963
- },
- "Component_[1621831901319912704]": {
- "$type": "EditorEntityIconComponent",
- "Id": 1621831901319912704
- },
- "Component_[16456422260517615133]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16456422260517615133
- },
- "Component_[17357346482856591089]": {
- "$type": "GenericComponentWrapper",
- "Id": 17357346482856591089,
- "m_template": {
- "$type": "ROS2LidarSensorComponent",
- "SensorConfiguration": {
- "Publishers": {
- "sensor_msgs::msg::PointCloud2": {
- "Type": "sensor_msgs::msg::PointCloud2",
- "Topic": "pc"
- }
- }
- }
- }
- },
- "Component_[18249910351855492071]": {
- "$type": "EditorLockComponent",
- "Id": 18249910351855492071
- },
- "Component_[3490167280358485747]": {
- "$type": "GenericComponentWrapper",
- "Id": 3490167280358485747,
- "m_template": {
- "$type": "ROS2FrameComponent",
- "Namespace Configuration": {
- "Namespace Strategy": 1
- },
- "Frame Name": "lidar"
- }
- },
- "Component_[5861697099478679034]": {
- "$type": "EditorInspectorComponent",
- "Id": 5861697099478679034
- },
- "Component_[8530803261175423250]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 8530803261175423250
- }
- }
- },
- "Entity_[6506158658343]": {
- "Id": "Entity_[6506158658343]",
- "Name": "Mesh",
- "Components": {
- "Component_[10933917820466561585]": {
- "$type": "EditorInspectorComponent",
- "Id": 10933917820466561585
- },
- "Component_[1120705527766950611]": {
- "$type": "EditorEntityIconComponent",
- "Id": 1120705527766950611
- },
- "Component_[11366492275209164279]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 11366492275209164279
- },
- "Component_[1295897211617435201]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1295897211617435201,
- "Parent Entity": "Entity_[30055431164411]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- -0.005482405424118042
- ],
- "Rotate": [
- 0.0,
- 0.0,
- 180.0
- ]
- }
- },
- "Component_[17642228670508097488]": {
- "$type": "EditorLockComponent",
- "Id": 17642228670508097488
- },
- "Component_[4175025945549480712]": {
- "$type": "EditorEntitySortComponent",
- "Id": 4175025945549480712,
- "Child Entity Order": [
- "Entity_[29909402276347]",
- "Entity_[29948056982011]",
- "Entity_[30016776458747]",
- "Entity_[29896517374459]",
- "Entity_[29862157636091]",
- "Entity_[29999596589563]",
- "Entity_[30025366393339]",
- "Entity_[29952351949307]",
- "Entity_[30033956327931]",
- "Entity_[30008186524155]",
- "Entity_[29866452603387]",
- "Entity_[29887927439867]",
- "Entity_[29900812341755]",
- "Entity_[29905107309051]",
- "Entity_[29913697243643]",
- "Entity_[29844977766907]",
- "Entity_[29982416720379]",
- "Entity_[30038251295227]",
- "Entity_[30029661360635]",
- "Entity_[29892222407163]",
- "Entity_[29922287178235]",
- "Entity_[29991006654971]",
- "Entity_[29973826785787]",
- "Entity_[29875042537979]",
- "Entity_[29978121753083]",
- "Entity_[29935172080123]",
- "Entity_[29965236851195]",
- "Entity_[30059726131707]",
- "Entity_[29857862668795]",
- "Entity_[29930877112827]",
- "Entity_[29870747570683]",
- "Entity_[29883632472571]",
- "Entity_[29853567701499]",
- "Entity_[29969531818491]",
- "Entity_[30012481491451]",
- "Entity_[30003891556859]",
- "Entity_[30042546262523]",
- "Entity_[29879337505275]",
- "Entity_[29917992210939]",
- "Entity_[29926582145531]",
- "Entity_[29960941883899]",
- "Entity_[29849272734203]",
- "Entity_[29986711687675]",
- "Entity_[29939467047419]",
- "Entity_[30021071426043]",
- "Entity_[29943762014715]",
- "Entity_[30051136197115]",
- "Entity_[29995301622267]",
- "Entity_[29956646916603]",
- "Entity_[30046841229819]"
- ]
- },
- "Component_[5075023512203644777]": {
- "$type": "EditorVisibilityComponent",
- "Id": 5075023512203644777
- },
- "Component_[9106650773510172942]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 9106650773510172942
- },
- "Component_[9115969056810346082]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 9115969056810346082
- }
- }
- },
- "Entity_[8859800736551]": {
- "Id": "Entity_[8859800736551]",
- "Name": "Sensors",
- "Components": {
- "Component_[11093905779932289212]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 11093905779932289212
- },
- "Component_[12228418348456879928]": {
- "$type": "EditorEntityIconComponent",
- "Id": 12228418348456879928
- },
- "Component_[14081951032431453423]": {
- "$type": "EditorEntitySortComponent",
- "Id": 14081951032431453423,
- "Child Entity Order": [
- "",
- "Entity_[5002252716067]"
- ]
- },
- "Component_[2172420079327414534]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 2172420079327414534
- },
- "Component_[2939692639054844657]": {
- "$type": "EditorVisibilityComponent",
- "Id": 2939692639054844657
- },
- "Component_[3624826975054373222]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 3624826975054373222,
- "Parent Entity": "Entity_[30055431164411]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 0.007144808769226074
- ]
- }
- },
- "Component_[6166339791366712155]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 6166339791366712155
- },
- "Component_[8798470866560069553]": {
- "$type": "EditorLockComponent",
- "Id": 8798470866560069553
- },
- "Component_[9079236517366404702]": {
- "$type": "EditorInspectorComponent",
- "Id": 9079236517366404702
- }
- }
- }
- }
- }
|