4x4x4BoxGrid.prefab 452 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190
  1. {
  2. "ContainerEntity": {
  3. "Id": "ContainerEntity",
  4. "Name": "4x4x4BoxGrid",
  5. "Components": {
  6. "Component_[11566388438119650377]": {
  7. "$type": "EditorPrefabComponent",
  8. "Id": 11566388438119650377
  9. },
  10. "Component_[1919055187406984800]": {
  11. "$type": "EditorLockComponent",
  12. "Id": 1919055187406984800
  13. },
  14. "Component_[2180669853693886392]": {
  15. "$type": "EditorEntitySortComponent",
  16. "Id": 2180669853693886392
  17. },
  18. "Component_[4107956514252411312]": {
  19. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  20. "Id": 4107956514252411312,
  21. "Parent Entity": ""
  22. },
  23. "Component_[442420903467824270]": {
  24. "$type": "EditorOnlyEntityComponent",
  25. "Id": 442420903467824270
  26. },
  27. "Component_[5297513891789135562]": {
  28. "$type": "EditorVisibilityComponent",
  29. "Id": 5297513891789135562
  30. },
  31. "Component_[542662819287191787]": {
  32. "$type": "EditorEntityIconComponent",
  33. "Id": 542662819287191787
  34. },
  35. "Component_[6845442516499574768]": {
  36. "$type": "EditorPendingCompositionComponent",
  37. "Id": 6845442516499574768
  38. },
  39. "Component_[7960192229544117143]": {
  40. "$type": "EditorInspectorComponent",
  41. "Id": 7960192229544117143
  42. },
  43. "Component_[9466362732862252143]": {
  44. "$type": "EditorDisabledCompositionComponent",
  45. "Id": 9466362732862252143
  46. }
  47. }
  48. },
  49. "Entities": {
  50. "Entity_[506144033123]": {
  51. "Id": "Entity_[506144033123]",
  52. "Name": "Box1",
  53. "Components": {
  54. "Component_[11384954117619258935]": {
  55. "$type": "EditorColliderComponent",
  56. "Id": 11384954117619258935,
  57. "ColliderConfiguration": {
  58. "MaterialSlots": {
  59. "Slots": [
  60. {
  61. "Name": "Entire object"
  62. }
  63. ]
  64. }
  65. },
  66. "ShapeConfiguration": {
  67. "ShapeType": 1
  68. },
  69. "DebugDrawSettings": {
  70. "LocallyEnabled": false
  71. }
  72. },
  73. "Component_[11829233075139704453]": {
  74. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  75. "Id": 11829233075139704453,
  76. "Parent Entity": "ContainerEntity",
  77. "Transform Data": {
  78. "Translate": [
  79. 1.7793126106262207,
  80. -0.6137781143188477,
  81. 0.0
  82. ]
  83. }
  84. },
  85. "Component_[12724016572532454792]": {
  86. "$type": "AZ::Render::EditorMeshComponent",
  87. "Id": 12724016572532454792,
  88. "Controller": {
  89. "Configuration": {
  90. "ModelAsset": {
  91. "assetId": {
  92. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  93. "subId": 285127096
  94. },
  95. "assetHint": "objects/cube.azmodel"
  96. }
  97. }
  98. }
  99. },
  100. "Component_[14564562245168579615]": {
  101. "$type": "EditorRigidBodyComponent",
  102. "Id": 14564562245168579615,
  103. "Configuration": {
  104. "entityId": "",
  105. "Mass": 999.9999389648438,
  106. "Inertia tensor": [
  107. 166.6666717529297,
  108. 0.0,
  109. 0.0,
  110. 0.0,
  111. 166.6666717529297,
  112. 0.0,
  113. 0.0,
  114. 0.0,
  115. 166.6666717529297
  116. ]
  117. }
  118. },
  119. "Component_[16056896985233530106]": {
  120. "$type": "EditorDisabledCompositionComponent",
  121. "Id": 16056896985233530106
  122. },
  123. "Component_[17648193282110847484]": {
  124. "$type": "EditorOnlyEntityComponent",
  125. "Id": 17648193282110847484
  126. },
  127. "Component_[17736719688956315985]": {
  128. "$type": "GenericComponentWrapper",
  129. "Id": 17736719688956315985,
  130. "m_template": {
  131. "$type": "Multiplayer::NetworkTransformComponent"
  132. }
  133. },
  134. "Component_[1835082203551392000]": {
  135. "$type": "EditorPendingCompositionComponent",
  136. "Id": 1835082203551392000
  137. },
  138. "Component_[2164842339052442926]": {
  139. "$type": "EditorEntitySortComponent",
  140. "Id": 2164842339052442926
  141. },
  142. "Component_[3933618364732995768]": {
  143. "$type": "EditorVisibilityComponent",
  144. "Id": 3933618364732995768
  145. },
  146. "Component_[4455772334179006063]": {
  147. "$type": "EditorEntityIconComponent",
  148. "Id": 4455772334179006063
  149. },
  150. "Component_[7903212753103164289]": {
  151. "$type": "EditorInspectorComponent",
  152. "Id": 7903212753103164289,
  153. "ComponentOrderEntryArray": [
  154. {
  155. "ComponentId": 11829233075139704453
  156. },
  157. {
  158. "ComponentId": 8125251054274400256,
  159. "SortIndex": 1
  160. },
  161. {
  162. "ComponentId": 17736719688956315985,
  163. "SortIndex": 2
  164. },
  165. {
  166. "ComponentId": 12724016572532454792,
  167. "SortIndex": 3
  168. },
  169. {
  170. "ComponentId": 8184187118822500353,
  171. "SortIndex": 4
  172. },
  173. {
  174. "ComponentId": 11384954117619258935,
  175. "SortIndex": 5
  176. },
  177. {
  178. "ComponentId": 14564562245168579615,
  179. "SortIndex": 6
  180. },
  181. {
  182. "ComponentId": 9450029410653326667,
  183. "SortIndex": 7
  184. }
  185. ]
  186. },
  187. "Component_[8125251054274400256]": {
  188. "$type": "GenericComponentWrapper",
  189. "Id": 8125251054274400256,
  190. "m_template": {
  191. "$type": "NetBindComponent"
  192. }
  193. },
  194. "Component_[8184187118822500353]": {
  195. "$type": "EditorMaterialComponent",
  196. "Id": 8184187118822500353,
  197. "Controller": {
  198. "Configuration": {
  199. "materials": {
  200. "{}": {
  201. "MaterialAsset": {
  202. "assetId": {
  203. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  204. }
  205. }
  206. }
  207. }
  208. }
  209. }
  210. },
  211. "Component_[9450029410653326667]": {
  212. "$type": "GenericComponentWrapper",
  213. "Id": 9450029410653326667,
  214. "m_template": {
  215. "$type": "Multiplayer::NetworkRigidBodyComponent"
  216. }
  217. },
  218. "Component_[9452550092591643181]": {
  219. "$type": "EditorLockComponent",
  220. "Id": 9452550092591643181
  221. }
  222. }
  223. },
  224. "Entity_[510439000419]": {
  225. "Id": "Entity_[510439000419]",
  226. "Name": "Box1",
  227. "Components": {
  228. "Component_[11384954117619258935]": {
  229. "$type": "EditorColliderComponent",
  230. "Id": 11384954117619258935,
  231. "ColliderConfiguration": {
  232. "MaterialSlots": {
  233. "Slots": [
  234. {
  235. "Name": "Entire object"
  236. }
  237. ]
  238. }
  239. },
  240. "ShapeConfiguration": {
  241. "ShapeType": 1
  242. },
  243. "DebugDrawSettings": {
  244. "LocallyEnabled": false
  245. }
  246. },
  247. "Component_[11829233075139704453]": {
  248. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  249. "Id": 11829233075139704453,
  250. "Parent Entity": "ContainerEntity",
  251. "Transform Data": {
  252. "Translate": [
  253. -1.5954484939575195,
  254. 0.6112356185913086,
  255. 0.0
  256. ]
  257. }
  258. },
  259. "Component_[12724016572532454792]": {
  260. "$type": "AZ::Render::EditorMeshComponent",
  261. "Id": 12724016572532454792,
  262. "Controller": {
  263. "Configuration": {
  264. "ModelAsset": {
  265. "assetId": {
  266. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  267. "subId": 285127096
  268. },
  269. "assetHint": "objects/cube.azmodel"
  270. }
  271. }
  272. }
  273. },
  274. "Component_[14564562245168579615]": {
  275. "$type": "EditorRigidBodyComponent",
  276. "Id": 14564562245168579615,
  277. "Configuration": {
  278. "entityId": "",
  279. "Mass": 999.9999389648438,
  280. "Inertia tensor": [
  281. 166.6666717529297,
  282. 0.0,
  283. 0.0,
  284. 0.0,
  285. 166.6666717529297,
  286. 0.0,
  287. 0.0,
  288. 0.0,
  289. 166.6666717529297
  290. ]
  291. }
  292. },
  293. "Component_[16056896985233530106]": {
  294. "$type": "EditorDisabledCompositionComponent",
  295. "Id": 16056896985233530106
  296. },
  297. "Component_[17648193282110847484]": {
  298. "$type": "EditorOnlyEntityComponent",
  299. "Id": 17648193282110847484
  300. },
  301. "Component_[17736719688956315985]": {
  302. "$type": "GenericComponentWrapper",
  303. "Id": 17736719688956315985,
  304. "m_template": {
  305. "$type": "Multiplayer::NetworkTransformComponent"
  306. }
  307. },
  308. "Component_[1835082203551392000]": {
  309. "$type": "EditorPendingCompositionComponent",
  310. "Id": 1835082203551392000
  311. },
  312. "Component_[2164842339052442926]": {
  313. "$type": "EditorEntitySortComponent",
  314. "Id": 2164842339052442926
  315. },
  316. "Component_[3933618364732995768]": {
  317. "$type": "EditorVisibilityComponent",
  318. "Id": 3933618364732995768
  319. },
  320. "Component_[4455772334179006063]": {
  321. "$type": "EditorEntityIconComponent",
  322. "Id": 4455772334179006063
  323. },
  324. "Component_[7903212753103164289]": {
  325. "$type": "EditorInspectorComponent",
  326. "Id": 7903212753103164289,
  327. "ComponentOrderEntryArray": [
  328. {
  329. "ComponentId": 11829233075139704453
  330. },
  331. {
  332. "ComponentId": 8125251054274400256,
  333. "SortIndex": 1
  334. },
  335. {
  336. "ComponentId": 17736719688956315985,
  337. "SortIndex": 2
  338. },
  339. {
  340. "ComponentId": 12724016572532454792,
  341. "SortIndex": 3
  342. },
  343. {
  344. "ComponentId": 8184187118822500353,
  345. "SortIndex": 4
  346. },
  347. {
  348. "ComponentId": 11384954117619258935,
  349. "SortIndex": 5
  350. },
  351. {
  352. "ComponentId": 14564562245168579615,
  353. "SortIndex": 6
  354. },
  355. {
  356. "ComponentId": 9450029410653326667,
  357. "SortIndex": 7
  358. }
  359. ]
  360. },
  361. "Component_[8125251054274400256]": {
  362. "$type": "GenericComponentWrapper",
  363. "Id": 8125251054274400256,
  364. "m_template": {
  365. "$type": "NetBindComponent"
  366. }
  367. },
  368. "Component_[8184187118822500353]": {
  369. "$type": "EditorMaterialComponent",
  370. "Id": 8184187118822500353,
  371. "Controller": {
  372. "Configuration": {
  373. "materials": {
  374. "{}": {
  375. "MaterialAsset": {
  376. "assetId": {
  377. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  378. }
  379. }
  380. }
  381. }
  382. }
  383. }
  384. },
  385. "Component_[9450029410653326667]": {
  386. "$type": "GenericComponentWrapper",
  387. "Id": 9450029410653326667,
  388. "m_template": {
  389. "$type": "Multiplayer::NetworkRigidBodyComponent"
  390. }
  391. },
  392. "Component_[9452550092591643181]": {
  393. "$type": "EditorLockComponent",
  394. "Id": 9452550092591643181
  395. }
  396. }
  397. },
  398. "Entity_[514733967715]": {
  399. "Id": "Entity_[514733967715]",
  400. "Name": "Box4",
  401. "Components": {
  402. "Component_[11384954117619258935]": {
  403. "$type": "EditorColliderComponent",
  404. "Id": 11384954117619258935,
  405. "ColliderConfiguration": {
  406. "MaterialSlots": {
  407. "Slots": [
  408. {
  409. "Name": "Entire object"
  410. }
  411. ]
  412. }
  413. },
  414. "ShapeConfiguration": {
  415. "ShapeType": 1
  416. },
  417. "DebugDrawSettings": {
  418. "LocallyEnabled": false
  419. }
  420. },
  421. "Component_[11829233075139704453]": {
  422. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  423. "Id": 11829233075139704453,
  424. "Parent Entity": "ContainerEntity",
  425. "Transform Data": {
  426. "Translate": [
  427. -1.5954484939575195,
  428. 0.6112356185913086,
  429. 3.1908931732177734
  430. ]
  431. }
  432. },
  433. "Component_[12724016572532454792]": {
  434. "$type": "AZ::Render::EditorMeshComponent",
  435. "Id": 12724016572532454792,
  436. "Controller": {
  437. "Configuration": {
  438. "ModelAsset": {
  439. "assetId": {
  440. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  441. "subId": 285127096
  442. },
  443. "assetHint": "objects/cube.azmodel"
  444. }
  445. }
  446. }
  447. },
  448. "Component_[14564562245168579615]": {
  449. "$type": "EditorRigidBodyComponent",
  450. "Id": 14564562245168579615,
  451. "Configuration": {
  452. "entityId": "",
  453. "Mass": 999.9999389648438,
  454. "Inertia tensor": [
  455. 166.6666717529297,
  456. 0.0,
  457. 0.0,
  458. 0.0,
  459. 166.6666717529297,
  460. 0.0,
  461. 0.0,
  462. 0.0,
  463. 166.6666717529297
  464. ]
  465. }
  466. },
  467. "Component_[16056896985233530106]": {
  468. "$type": "EditorDisabledCompositionComponent",
  469. "Id": 16056896985233530106
  470. },
  471. "Component_[17648193282110847484]": {
  472. "$type": "EditorOnlyEntityComponent",
  473. "Id": 17648193282110847484
  474. },
  475. "Component_[17736719688956315985]": {
  476. "$type": "GenericComponentWrapper",
  477. "Id": 17736719688956315985,
  478. "m_template": {
  479. "$type": "Multiplayer::NetworkTransformComponent"
  480. }
  481. },
  482. "Component_[1835082203551392000]": {
  483. "$type": "EditorPendingCompositionComponent",
  484. "Id": 1835082203551392000
  485. },
  486. "Component_[2164842339052442926]": {
  487. "$type": "EditorEntitySortComponent",
  488. "Id": 2164842339052442926
  489. },
  490. "Component_[3933618364732995768]": {
  491. "$type": "EditorVisibilityComponent",
  492. "Id": 3933618364732995768
  493. },
  494. "Component_[4455772334179006063]": {
  495. "$type": "EditorEntityIconComponent",
  496. "Id": 4455772334179006063
  497. },
  498. "Component_[7903212753103164289]": {
  499. "$type": "EditorInspectorComponent",
  500. "Id": 7903212753103164289,
  501. "ComponentOrderEntryArray": [
  502. {
  503. "ComponentId": 11829233075139704453
  504. },
  505. {
  506. "ComponentId": 8125251054274400256,
  507. "SortIndex": 1
  508. },
  509. {
  510. "ComponentId": 17736719688956315985,
  511. "SortIndex": 2
  512. },
  513. {
  514. "ComponentId": 12724016572532454792,
  515. "SortIndex": 3
  516. },
  517. {
  518. "ComponentId": 8184187118822500353,
  519. "SortIndex": 4
  520. },
  521. {
  522. "ComponentId": 11384954117619258935,
  523. "SortIndex": 5
  524. },
  525. {
  526. "ComponentId": 14564562245168579615,
  527. "SortIndex": 6
  528. },
  529. {
  530. "ComponentId": 9450029410653326667,
  531. "SortIndex": 7
  532. }
  533. ]
  534. },
  535. "Component_[8125251054274400256]": {
  536. "$type": "GenericComponentWrapper",
  537. "Id": 8125251054274400256,
  538. "m_template": {
  539. "$type": "NetBindComponent"
  540. }
  541. },
  542. "Component_[8184187118822500353]": {
  543. "$type": "EditorMaterialComponent",
  544. "Id": 8184187118822500353,
  545. "Controller": {
  546. "Configuration": {
  547. "materials": {
  548. "{}": {
  549. "MaterialAsset": {
  550. "assetId": {
  551. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  552. }
  553. }
  554. }
  555. }
  556. }
  557. }
  558. },
  559. "Component_[9450029410653326667]": {
  560. "$type": "GenericComponentWrapper",
  561. "Id": 9450029410653326667,
  562. "m_template": {
  563. "$type": "Multiplayer::NetworkRigidBodyComponent"
  564. }
  565. },
  566. "Component_[9452550092591643181]": {
  567. "$type": "EditorLockComponent",
  568. "Id": 9452550092591643181
  569. }
  570. }
  571. },
  572. "Entity_[519028935011]": {
  573. "Id": "Entity_[519028935011]",
  574. "Name": "Box1",
  575. "Components": {
  576. "Component_[11384954117619258935]": {
  577. "$type": "EditorColliderComponent",
  578. "Id": 11384954117619258935,
  579. "ColliderConfiguration": {
  580. "MaterialSlots": {
  581. "Slots": [
  582. {
  583. "Name": "Entire object"
  584. }
  585. ]
  586. }
  587. },
  588. "ShapeConfiguration": {
  589. "ShapeType": 1
  590. },
  591. "DebugDrawSettings": {
  592. "LocallyEnabled": false
  593. }
  594. },
  595. "Component_[11829233075139704453]": {
  596. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  597. "Id": 11829233075139704453,
  598. "Parent Entity": "ContainerEntity",
  599. "Transform Data": {
  600. "Translate": [
  601. 1.7793126106262207,
  602. 1.8704166412353516,
  603. 0.0
  604. ]
  605. }
  606. },
  607. "Component_[12724016572532454792]": {
  608. "$type": "AZ::Render::EditorMeshComponent",
  609. "Id": 12724016572532454792,
  610. "Controller": {
  611. "Configuration": {
  612. "ModelAsset": {
  613. "assetId": {
  614. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  615. "subId": 285127096
  616. },
  617. "assetHint": "objects/cube.azmodel"
  618. }
  619. }
  620. }
  621. },
  622. "Component_[14564562245168579615]": {
  623. "$type": "EditorRigidBodyComponent",
  624. "Id": 14564562245168579615,
  625. "Configuration": {
  626. "entityId": "",
  627. "Mass": 999.9999389648438,
  628. "Inertia tensor": [
  629. 166.6666717529297,
  630. 0.0,
  631. 0.0,
  632. 0.0,
  633. 166.6666717529297,
  634. 0.0,
  635. 0.0,
  636. 0.0,
  637. 166.6666717529297
  638. ]
  639. }
  640. },
  641. "Component_[16056896985233530106]": {
  642. "$type": "EditorDisabledCompositionComponent",
  643. "Id": 16056896985233530106
  644. },
  645. "Component_[17648193282110847484]": {
  646. "$type": "EditorOnlyEntityComponent",
  647. "Id": 17648193282110847484
  648. },
  649. "Component_[17736719688956315985]": {
  650. "$type": "GenericComponentWrapper",
  651. "Id": 17736719688956315985,
  652. "m_template": {
  653. "$type": "Multiplayer::NetworkTransformComponent"
  654. }
  655. },
  656. "Component_[1835082203551392000]": {
  657. "$type": "EditorPendingCompositionComponent",
  658. "Id": 1835082203551392000
  659. },
  660. "Component_[2164842339052442926]": {
  661. "$type": "EditorEntitySortComponent",
  662. "Id": 2164842339052442926
  663. },
  664. "Component_[3933618364732995768]": {
  665. "$type": "EditorVisibilityComponent",
  666. "Id": 3933618364732995768
  667. },
  668. "Component_[4455772334179006063]": {
  669. "$type": "EditorEntityIconComponent",
  670. "Id": 4455772334179006063
  671. },
  672. "Component_[7903212753103164289]": {
  673. "$type": "EditorInspectorComponent",
  674. "Id": 7903212753103164289,
  675. "ComponentOrderEntryArray": [
  676. {
  677. "ComponentId": 11829233075139704453
  678. },
  679. {
  680. "ComponentId": 8125251054274400256,
  681. "SortIndex": 1
  682. },
  683. {
  684. "ComponentId": 17736719688956315985,
  685. "SortIndex": 2
  686. },
  687. {
  688. "ComponentId": 12724016572532454792,
  689. "SortIndex": 3
  690. },
  691. {
  692. "ComponentId": 8184187118822500353,
  693. "SortIndex": 4
  694. },
  695. {
  696. "ComponentId": 11384954117619258935,
  697. "SortIndex": 5
  698. },
  699. {
  700. "ComponentId": 14564562245168579615,
  701. "SortIndex": 6
  702. },
  703. {
  704. "ComponentId": 9450029410653326667,
  705. "SortIndex": 7
  706. }
  707. ]
  708. },
  709. "Component_[8125251054274400256]": {
  710. "$type": "GenericComponentWrapper",
  711. "Id": 8125251054274400256,
  712. "m_template": {
  713. "$type": "NetBindComponent"
  714. }
  715. },
  716. "Component_[8184187118822500353]": {
  717. "$type": "EditorMaterialComponent",
  718. "Id": 8184187118822500353,
  719. "Controller": {
  720. "Configuration": {
  721. "materials": {
  722. "{}": {
  723. "MaterialAsset": {
  724. "assetId": {
  725. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  726. }
  727. }
  728. }
  729. }
  730. }
  731. }
  732. },
  733. "Component_[9450029410653326667]": {
  734. "$type": "GenericComponentWrapper",
  735. "Id": 9450029410653326667,
  736. "m_template": {
  737. "$type": "Multiplayer::NetworkRigidBodyComponent"
  738. }
  739. },
  740. "Component_[9452550092591643181]": {
  741. "$type": "EditorLockComponent",
  742. "Id": 9452550092591643181
  743. }
  744. }
  745. },
  746. "Entity_[523323902307]": {
  747. "Id": "Entity_[523323902307]",
  748. "Name": "Box3",
  749. "Components": {
  750. "Component_[11384954117619258935]": {
  751. "$type": "EditorColliderComponent",
  752. "Id": 11384954117619258935,
  753. "ColliderConfiguration": {
  754. "MaterialSlots": {
  755. "Slots": [
  756. {
  757. "Name": "Entire object"
  758. }
  759. ]
  760. }
  761. },
  762. "ShapeConfiguration": {
  763. "ShapeType": 1
  764. },
  765. "DebugDrawSettings": {
  766. "LocallyEnabled": false
  767. }
  768. },
  769. "Component_[11829233075139704453]": {
  770. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  771. "Id": 11829233075139704453,
  772. "Parent Entity": "ContainerEntity",
  773. "Transform Data": {
  774. "Translate": [
  775. 1.7793126106262207,
  776. 1.8704166412353516,
  777. 2.126070022583008
  778. ]
  779. }
  780. },
  781. "Component_[12724016572532454792]": {
  782. "$type": "AZ::Render::EditorMeshComponent",
  783. "Id": 12724016572532454792,
  784. "Controller": {
  785. "Configuration": {
  786. "ModelAsset": {
  787. "assetId": {
  788. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  789. "subId": 285127096
  790. },
  791. "assetHint": "objects/cube.azmodel"
  792. }
  793. }
  794. }
  795. },
  796. "Component_[14564562245168579615]": {
  797. "$type": "EditorRigidBodyComponent",
  798. "Id": 14564562245168579615,
  799. "Configuration": {
  800. "entityId": "",
  801. "Mass": 999.9999389648438,
  802. "Inertia tensor": [
  803. 166.6666717529297,
  804. 0.0,
  805. 0.0,
  806. 0.0,
  807. 166.6666717529297,
  808. 0.0,
  809. 0.0,
  810. 0.0,
  811. 166.6666717529297
  812. ]
  813. }
  814. },
  815. "Component_[16056896985233530106]": {
  816. "$type": "EditorDisabledCompositionComponent",
  817. "Id": 16056896985233530106
  818. },
  819. "Component_[17648193282110847484]": {
  820. "$type": "EditorOnlyEntityComponent",
  821. "Id": 17648193282110847484
  822. },
  823. "Component_[17736719688956315985]": {
  824. "$type": "GenericComponentWrapper",
  825. "Id": 17736719688956315985,
  826. "m_template": {
  827. "$type": "Multiplayer::NetworkTransformComponent"
  828. }
  829. },
  830. "Component_[1835082203551392000]": {
  831. "$type": "EditorPendingCompositionComponent",
  832. "Id": 1835082203551392000
  833. },
  834. "Component_[2164842339052442926]": {
  835. "$type": "EditorEntitySortComponent",
  836. "Id": 2164842339052442926
  837. },
  838. "Component_[3933618364732995768]": {
  839. "$type": "EditorVisibilityComponent",
  840. "Id": 3933618364732995768
  841. },
  842. "Component_[4455772334179006063]": {
  843. "$type": "EditorEntityIconComponent",
  844. "Id": 4455772334179006063
  845. },
  846. "Component_[7903212753103164289]": {
  847. "$type": "EditorInspectorComponent",
  848. "Id": 7903212753103164289,
  849. "ComponentOrderEntryArray": [
  850. {
  851. "ComponentId": 11829233075139704453
  852. },
  853. {
  854. "ComponentId": 8125251054274400256,
  855. "SortIndex": 1
  856. },
  857. {
  858. "ComponentId": 17736719688956315985,
  859. "SortIndex": 2
  860. },
  861. {
  862. "ComponentId": 12724016572532454792,
  863. "SortIndex": 3
  864. },
  865. {
  866. "ComponentId": 8184187118822500353,
  867. "SortIndex": 4
  868. },
  869. {
  870. "ComponentId": 11384954117619258935,
  871. "SortIndex": 5
  872. },
  873. {
  874. "ComponentId": 14564562245168579615,
  875. "SortIndex": 6
  876. },
  877. {
  878. "ComponentId": 9450029410653326667,
  879. "SortIndex": 7
  880. }
  881. ]
  882. },
  883. "Component_[8125251054274400256]": {
  884. "$type": "GenericComponentWrapper",
  885. "Id": 8125251054274400256,
  886. "m_template": {
  887. "$type": "NetBindComponent"
  888. }
  889. },
  890. "Component_[8184187118822500353]": {
  891. "$type": "EditorMaterialComponent",
  892. "Id": 8184187118822500353,
  893. "Controller": {
  894. "Configuration": {
  895. "materials": {
  896. "{}": {
  897. "MaterialAsset": {
  898. "assetId": {
  899. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  900. }
  901. }
  902. }
  903. }
  904. }
  905. }
  906. },
  907. "Component_[9450029410653326667]": {
  908. "$type": "GenericComponentWrapper",
  909. "Id": 9450029410653326667,
  910. "m_template": {
  911. "$type": "Multiplayer::NetworkRigidBodyComponent"
  912. }
  913. },
  914. "Component_[9452550092591643181]": {
  915. "$type": "EditorLockComponent",
  916. "Id": 9452550092591643181
  917. }
  918. }
  919. },
  920. "Entity_[527618869603]": {
  921. "Id": "Entity_[527618869603]",
  922. "Name": "Box3",
  923. "Components": {
  924. "Component_[11384954117619258935]": {
  925. "$type": "EditorColliderComponent",
  926. "Id": 11384954117619258935,
  927. "ColliderConfiguration": {
  928. "MaterialSlots": {
  929. "Slots": [
  930. {
  931. "Name": "Entire object"
  932. }
  933. ]
  934. }
  935. },
  936. "ShapeConfiguration": {
  937. "ShapeType": 1
  938. },
  939. "DebugDrawSettings": {
  940. "LocallyEnabled": false
  941. }
  942. },
  943. "Component_[11829233075139704453]": {
  944. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  945. "Id": 11829233075139704453,
  946. "Parent Entity": "ContainerEntity",
  947. "Transform Data": {
  948. "Translate": [
  949. -0.4683690071105957,
  950. 1.8704166412353516,
  951. 2.126070022583008
  952. ]
  953. }
  954. },
  955. "Component_[12724016572532454792]": {
  956. "$type": "AZ::Render::EditorMeshComponent",
  957. "Id": 12724016572532454792,
  958. "Controller": {
  959. "Configuration": {
  960. "ModelAsset": {
  961. "assetId": {
  962. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  963. "subId": 285127096
  964. },
  965. "assetHint": "objects/cube.azmodel"
  966. }
  967. }
  968. }
  969. },
  970. "Component_[14564562245168579615]": {
  971. "$type": "EditorRigidBodyComponent",
  972. "Id": 14564562245168579615,
  973. "Configuration": {
  974. "entityId": "",
  975. "Mass": 999.9999389648438,
  976. "Inertia tensor": [
  977. 166.6666717529297,
  978. 0.0,
  979. 0.0,
  980. 0.0,
  981. 166.6666717529297,
  982. 0.0,
  983. 0.0,
  984. 0.0,
  985. 166.6666717529297
  986. ]
  987. }
  988. },
  989. "Component_[16056896985233530106]": {
  990. "$type": "EditorDisabledCompositionComponent",
  991. "Id": 16056896985233530106
  992. },
  993. "Component_[17648193282110847484]": {
  994. "$type": "EditorOnlyEntityComponent",
  995. "Id": 17648193282110847484
  996. },
  997. "Component_[17736719688956315985]": {
  998. "$type": "GenericComponentWrapper",
  999. "Id": 17736719688956315985,
  1000. "m_template": {
  1001. "$type": "Multiplayer::NetworkTransformComponent"
  1002. }
  1003. },
  1004. "Component_[1835082203551392000]": {
  1005. "$type": "EditorPendingCompositionComponent",
  1006. "Id": 1835082203551392000
  1007. },
  1008. "Component_[2164842339052442926]": {
  1009. "$type": "EditorEntitySortComponent",
  1010. "Id": 2164842339052442926
  1011. },
  1012. "Component_[3933618364732995768]": {
  1013. "$type": "EditorVisibilityComponent",
  1014. "Id": 3933618364732995768
  1015. },
  1016. "Component_[4455772334179006063]": {
  1017. "$type": "EditorEntityIconComponent",
  1018. "Id": 4455772334179006063
  1019. },
  1020. "Component_[7903212753103164289]": {
  1021. "$type": "EditorInspectorComponent",
  1022. "Id": 7903212753103164289,
  1023. "ComponentOrderEntryArray": [
  1024. {
  1025. "ComponentId": 11829233075139704453
  1026. },
  1027. {
  1028. "ComponentId": 8125251054274400256,
  1029. "SortIndex": 1
  1030. },
  1031. {
  1032. "ComponentId": 17736719688956315985,
  1033. "SortIndex": 2
  1034. },
  1035. {
  1036. "ComponentId": 12724016572532454792,
  1037. "SortIndex": 3
  1038. },
  1039. {
  1040. "ComponentId": 8184187118822500353,
  1041. "SortIndex": 4
  1042. },
  1043. {
  1044. "ComponentId": 11384954117619258935,
  1045. "SortIndex": 5
  1046. },
  1047. {
  1048. "ComponentId": 14564562245168579615,
  1049. "SortIndex": 6
  1050. },
  1051. {
  1052. "ComponentId": 9450029410653326667,
  1053. "SortIndex": 7
  1054. }
  1055. ]
  1056. },
  1057. "Component_[8125251054274400256]": {
  1058. "$type": "GenericComponentWrapper",
  1059. "Id": 8125251054274400256,
  1060. "m_template": {
  1061. "$type": "NetBindComponent"
  1062. }
  1063. },
  1064. "Component_[8184187118822500353]": {
  1065. "$type": "EditorMaterialComponent",
  1066. "Id": 8184187118822500353,
  1067. "Controller": {
  1068. "Configuration": {
  1069. "materials": {
  1070. "{}": {
  1071. "MaterialAsset": {
  1072. "assetId": {
  1073. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  1074. }
  1075. }
  1076. }
  1077. }
  1078. }
  1079. }
  1080. },
  1081. "Component_[9450029410653326667]": {
  1082. "$type": "GenericComponentWrapper",
  1083. "Id": 9450029410653326667,
  1084. "m_template": {
  1085. "$type": "Multiplayer::NetworkRigidBodyComponent"
  1086. }
  1087. },
  1088. "Component_[9452550092591643181]": {
  1089. "$type": "EditorLockComponent",
  1090. "Id": 9452550092591643181
  1091. }
  1092. }
  1093. },
  1094. "Entity_[531913836899]": {
  1095. "Id": "Entity_[531913836899]",
  1096. "Name": "Box2",
  1097. "Components": {
  1098. "Component_[11384954117619258935]": {
  1099. "$type": "EditorColliderComponent",
  1100. "Id": 11384954117619258935,
  1101. "ColliderConfiguration": {
  1102. "MaterialSlots": {
  1103. "Slots": [
  1104. {
  1105. "Name": "Entire object"
  1106. }
  1107. ]
  1108. }
  1109. },
  1110. "ShapeConfiguration": {
  1111. "ShapeType": 1
  1112. },
  1113. "DebugDrawSettings": {
  1114. "LocallyEnabled": false
  1115. }
  1116. },
  1117. "Component_[11829233075139704453]": {
  1118. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1119. "Id": 11829233075139704453,
  1120. "Parent Entity": "ContainerEntity",
  1121. "Transform Data": {
  1122. "Translate": [
  1123. 1.7793126106262207,
  1124. -0.6137781143188477,
  1125. 1.0648231506347656
  1126. ]
  1127. }
  1128. },
  1129. "Component_[12724016572532454792]": {
  1130. "$type": "AZ::Render::EditorMeshComponent",
  1131. "Id": 12724016572532454792,
  1132. "Controller": {
  1133. "Configuration": {
  1134. "ModelAsset": {
  1135. "assetId": {
  1136. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  1137. "subId": 285127096
  1138. },
  1139. "assetHint": "objects/cube.azmodel"
  1140. }
  1141. }
  1142. }
  1143. },
  1144. "Component_[14564562245168579615]": {
  1145. "$type": "EditorRigidBodyComponent",
  1146. "Id": 14564562245168579615,
  1147. "Configuration": {
  1148. "entityId": "",
  1149. "Mass": 999.9999389648438,
  1150. "Inertia tensor": [
  1151. 166.6666717529297,
  1152. 0.0,
  1153. 0.0,
  1154. 0.0,
  1155. 166.6666717529297,
  1156. 0.0,
  1157. 0.0,
  1158. 0.0,
  1159. 166.6666717529297
  1160. ]
  1161. }
  1162. },
  1163. "Component_[16056896985233530106]": {
  1164. "$type": "EditorDisabledCompositionComponent",
  1165. "Id": 16056896985233530106
  1166. },
  1167. "Component_[17648193282110847484]": {
  1168. "$type": "EditorOnlyEntityComponent",
  1169. "Id": 17648193282110847484
  1170. },
  1171. "Component_[17736719688956315985]": {
  1172. "$type": "GenericComponentWrapper",
  1173. "Id": 17736719688956315985,
  1174. "m_template": {
  1175. "$type": "Multiplayer::NetworkTransformComponent"
  1176. }
  1177. },
  1178. "Component_[1835082203551392000]": {
  1179. "$type": "EditorPendingCompositionComponent",
  1180. "Id": 1835082203551392000
  1181. },
  1182. "Component_[2164842339052442926]": {
  1183. "$type": "EditorEntitySortComponent",
  1184. "Id": 2164842339052442926
  1185. },
  1186. "Component_[3933618364732995768]": {
  1187. "$type": "EditorVisibilityComponent",
  1188. "Id": 3933618364732995768
  1189. },
  1190. "Component_[4455772334179006063]": {
  1191. "$type": "EditorEntityIconComponent",
  1192. "Id": 4455772334179006063
  1193. },
  1194. "Component_[7903212753103164289]": {
  1195. "$type": "EditorInspectorComponent",
  1196. "Id": 7903212753103164289,
  1197. "ComponentOrderEntryArray": [
  1198. {
  1199. "ComponentId": 11829233075139704453
  1200. },
  1201. {
  1202. "ComponentId": 8125251054274400256,
  1203. "SortIndex": 1
  1204. },
  1205. {
  1206. "ComponentId": 17736719688956315985,
  1207. "SortIndex": 2
  1208. },
  1209. {
  1210. "ComponentId": 12724016572532454792,
  1211. "SortIndex": 3
  1212. },
  1213. {
  1214. "ComponentId": 8184187118822500353,
  1215. "SortIndex": 4
  1216. },
  1217. {
  1218. "ComponentId": 11384954117619258935,
  1219. "SortIndex": 5
  1220. },
  1221. {
  1222. "ComponentId": 14564562245168579615,
  1223. "SortIndex": 6
  1224. },
  1225. {
  1226. "ComponentId": 9450029410653326667,
  1227. "SortIndex": 7
  1228. }
  1229. ]
  1230. },
  1231. "Component_[8125251054274400256]": {
  1232. "$type": "GenericComponentWrapper",
  1233. "Id": 8125251054274400256,
  1234. "m_template": {
  1235. "$type": "NetBindComponent"
  1236. }
  1237. },
  1238. "Component_[8184187118822500353]": {
  1239. "$type": "EditorMaterialComponent",
  1240. "Id": 8184187118822500353,
  1241. "Controller": {
  1242. "Configuration": {
  1243. "materials": {
  1244. "{}": {
  1245. "MaterialAsset": {
  1246. "assetId": {
  1247. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  1248. }
  1249. }
  1250. }
  1251. }
  1252. }
  1253. }
  1254. },
  1255. "Component_[9450029410653326667]": {
  1256. "$type": "GenericComponentWrapper",
  1257. "Id": 9450029410653326667,
  1258. "m_template": {
  1259. "$type": "Multiplayer::NetworkRigidBodyComponent"
  1260. }
  1261. },
  1262. "Component_[9452550092591643181]": {
  1263. "$type": "EditorLockComponent",
  1264. "Id": 9452550092591643181
  1265. }
  1266. }
  1267. },
  1268. "Entity_[536208804195]": {
  1269. "Id": "Entity_[536208804195]",
  1270. "Name": "Box3",
  1271. "Components": {
  1272. "Component_[11384954117619258935]": {
  1273. "$type": "EditorColliderComponent",
  1274. "Id": 11384954117619258935,
  1275. "ColliderConfiguration": {
  1276. "MaterialSlots": {
  1277. "Slots": [
  1278. {
  1279. "Name": "Entire object"
  1280. }
  1281. ]
  1282. }
  1283. },
  1284. "ShapeConfiguration": {
  1285. "ShapeType": 1
  1286. },
  1287. "DebugDrawSettings": {
  1288. "LocallyEnabled": false
  1289. }
  1290. },
  1291. "Component_[11829233075139704453]": {
  1292. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1293. "Id": 11829233075139704453,
  1294. "Parent Entity": "ContainerEntity",
  1295. "Transform Data": {
  1296. "Translate": [
  1297. -1.5954484939575195,
  1298. -0.6137781143188477,
  1299. 2.126070022583008
  1300. ]
  1301. }
  1302. },
  1303. "Component_[12724016572532454792]": {
  1304. "$type": "AZ::Render::EditorMeshComponent",
  1305. "Id": 12724016572532454792,
  1306. "Controller": {
  1307. "Configuration": {
  1308. "ModelAsset": {
  1309. "assetId": {
  1310. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  1311. "subId": 285127096
  1312. },
  1313. "assetHint": "objects/cube.azmodel"
  1314. }
  1315. }
  1316. }
  1317. },
  1318. "Component_[14564562245168579615]": {
  1319. "$type": "EditorRigidBodyComponent",
  1320. "Id": 14564562245168579615,
  1321. "Configuration": {
  1322. "entityId": "",
  1323. "Mass": 999.9999389648438,
  1324. "Inertia tensor": [
  1325. 166.6666717529297,
  1326. 0.0,
  1327. 0.0,
  1328. 0.0,
  1329. 166.6666717529297,
  1330. 0.0,
  1331. 0.0,
  1332. 0.0,
  1333. 166.6666717529297
  1334. ]
  1335. }
  1336. },
  1337. "Component_[16056896985233530106]": {
  1338. "$type": "EditorDisabledCompositionComponent",
  1339. "Id": 16056896985233530106
  1340. },
  1341. "Component_[17648193282110847484]": {
  1342. "$type": "EditorOnlyEntityComponent",
  1343. "Id": 17648193282110847484
  1344. },
  1345. "Component_[17736719688956315985]": {
  1346. "$type": "GenericComponentWrapper",
  1347. "Id": 17736719688956315985,
  1348. "m_template": {
  1349. "$type": "Multiplayer::NetworkTransformComponent"
  1350. }
  1351. },
  1352. "Component_[1835082203551392000]": {
  1353. "$type": "EditorPendingCompositionComponent",
  1354. "Id": 1835082203551392000
  1355. },
  1356. "Component_[2164842339052442926]": {
  1357. "$type": "EditorEntitySortComponent",
  1358. "Id": 2164842339052442926
  1359. },
  1360. "Component_[3933618364732995768]": {
  1361. "$type": "EditorVisibilityComponent",
  1362. "Id": 3933618364732995768
  1363. },
  1364. "Component_[4455772334179006063]": {
  1365. "$type": "EditorEntityIconComponent",
  1366. "Id": 4455772334179006063
  1367. },
  1368. "Component_[7903212753103164289]": {
  1369. "$type": "EditorInspectorComponent",
  1370. "Id": 7903212753103164289,
  1371. "ComponentOrderEntryArray": [
  1372. {
  1373. "ComponentId": 11829233075139704453
  1374. },
  1375. {
  1376. "ComponentId": 8125251054274400256,
  1377. "SortIndex": 1
  1378. },
  1379. {
  1380. "ComponentId": 17736719688956315985,
  1381. "SortIndex": 2
  1382. },
  1383. {
  1384. "ComponentId": 12724016572532454792,
  1385. "SortIndex": 3
  1386. },
  1387. {
  1388. "ComponentId": 8184187118822500353,
  1389. "SortIndex": 4
  1390. },
  1391. {
  1392. "ComponentId": 11384954117619258935,
  1393. "SortIndex": 5
  1394. },
  1395. {
  1396. "ComponentId": 14564562245168579615,
  1397. "SortIndex": 6
  1398. },
  1399. {
  1400. "ComponentId": 9450029410653326667,
  1401. "SortIndex": 7
  1402. }
  1403. ]
  1404. },
  1405. "Component_[8125251054274400256]": {
  1406. "$type": "GenericComponentWrapper",
  1407. "Id": 8125251054274400256,
  1408. "m_template": {
  1409. "$type": "NetBindComponent"
  1410. }
  1411. },
  1412. "Component_[8184187118822500353]": {
  1413. "$type": "EditorMaterialComponent",
  1414. "Id": 8184187118822500353,
  1415. "Controller": {
  1416. "Configuration": {
  1417. "materials": {
  1418. "{}": {
  1419. "MaterialAsset": {
  1420. "assetId": {
  1421. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  1422. }
  1423. }
  1424. }
  1425. }
  1426. }
  1427. }
  1428. },
  1429. "Component_[9450029410653326667]": {
  1430. "$type": "GenericComponentWrapper",
  1431. "Id": 9450029410653326667,
  1432. "m_template": {
  1433. "$type": "Multiplayer::NetworkRigidBodyComponent"
  1434. }
  1435. },
  1436. "Component_[9452550092591643181]": {
  1437. "$type": "EditorLockComponent",
  1438. "Id": 9452550092591643181
  1439. }
  1440. }
  1441. },
  1442. "Entity_[540503771491]": {
  1443. "Id": "Entity_[540503771491]",
  1444. "Name": "Box2",
  1445. "Components": {
  1446. "Component_[11384954117619258935]": {
  1447. "$type": "EditorColliderComponent",
  1448. "Id": 11384954117619258935,
  1449. "ColliderConfiguration": {
  1450. "MaterialSlots": {
  1451. "Slots": [
  1452. {
  1453. "Name": "Entire object"
  1454. }
  1455. ]
  1456. }
  1457. },
  1458. "ShapeConfiguration": {
  1459. "ShapeType": 1
  1460. },
  1461. "DebugDrawSettings": {
  1462. "LocallyEnabled": false
  1463. }
  1464. },
  1465. "Component_[11829233075139704453]": {
  1466. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1467. "Id": 11829233075139704453,
  1468. "Parent Entity": "ContainerEntity",
  1469. "Transform Data": {
  1470. "Translate": [
  1471. -1.5954484939575195,
  1472. 0.6112356185913086,
  1473. 1.0648231506347656
  1474. ]
  1475. }
  1476. },
  1477. "Component_[12724016572532454792]": {
  1478. "$type": "AZ::Render::EditorMeshComponent",
  1479. "Id": 12724016572532454792,
  1480. "Controller": {
  1481. "Configuration": {
  1482. "ModelAsset": {
  1483. "assetId": {
  1484. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  1485. "subId": 285127096
  1486. },
  1487. "assetHint": "objects/cube.azmodel"
  1488. }
  1489. }
  1490. }
  1491. },
  1492. "Component_[14564562245168579615]": {
  1493. "$type": "EditorRigidBodyComponent",
  1494. "Id": 14564562245168579615,
  1495. "Configuration": {
  1496. "entityId": "",
  1497. "Mass": 999.9999389648438,
  1498. "Inertia tensor": [
  1499. 166.6666717529297,
  1500. 0.0,
  1501. 0.0,
  1502. 0.0,
  1503. 166.6666717529297,
  1504. 0.0,
  1505. 0.0,
  1506. 0.0,
  1507. 166.6666717529297
  1508. ]
  1509. }
  1510. },
  1511. "Component_[16056896985233530106]": {
  1512. "$type": "EditorDisabledCompositionComponent",
  1513. "Id": 16056896985233530106
  1514. },
  1515. "Component_[17648193282110847484]": {
  1516. "$type": "EditorOnlyEntityComponent",
  1517. "Id": 17648193282110847484
  1518. },
  1519. "Component_[17736719688956315985]": {
  1520. "$type": "GenericComponentWrapper",
  1521. "Id": 17736719688956315985,
  1522. "m_template": {
  1523. "$type": "Multiplayer::NetworkTransformComponent"
  1524. }
  1525. },
  1526. "Component_[1835082203551392000]": {
  1527. "$type": "EditorPendingCompositionComponent",
  1528. "Id": 1835082203551392000
  1529. },
  1530. "Component_[2164842339052442926]": {
  1531. "$type": "EditorEntitySortComponent",
  1532. "Id": 2164842339052442926
  1533. },
  1534. "Component_[3933618364732995768]": {
  1535. "$type": "EditorVisibilityComponent",
  1536. "Id": 3933618364732995768
  1537. },
  1538. "Component_[4455772334179006063]": {
  1539. "$type": "EditorEntityIconComponent",
  1540. "Id": 4455772334179006063
  1541. },
  1542. "Component_[7903212753103164289]": {
  1543. "$type": "EditorInspectorComponent",
  1544. "Id": 7903212753103164289,
  1545. "ComponentOrderEntryArray": [
  1546. {
  1547. "ComponentId": 11829233075139704453
  1548. },
  1549. {
  1550. "ComponentId": 8125251054274400256,
  1551. "SortIndex": 1
  1552. },
  1553. {
  1554. "ComponentId": 17736719688956315985,
  1555. "SortIndex": 2
  1556. },
  1557. {
  1558. "ComponentId": 12724016572532454792,
  1559. "SortIndex": 3
  1560. },
  1561. {
  1562. "ComponentId": 8184187118822500353,
  1563. "SortIndex": 4
  1564. },
  1565. {
  1566. "ComponentId": 11384954117619258935,
  1567. "SortIndex": 5
  1568. },
  1569. {
  1570. "ComponentId": 14564562245168579615,
  1571. "SortIndex": 6
  1572. },
  1573. {
  1574. "ComponentId": 9450029410653326667,
  1575. "SortIndex": 7
  1576. }
  1577. ]
  1578. },
  1579. "Component_[8125251054274400256]": {
  1580. "$type": "GenericComponentWrapper",
  1581. "Id": 8125251054274400256,
  1582. "m_template": {
  1583. "$type": "NetBindComponent"
  1584. }
  1585. },
  1586. "Component_[8184187118822500353]": {
  1587. "$type": "EditorMaterialComponent",
  1588. "Id": 8184187118822500353,
  1589. "Controller": {
  1590. "Configuration": {
  1591. "materials": {
  1592. "{}": {
  1593. "MaterialAsset": {
  1594. "assetId": {
  1595. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  1596. }
  1597. }
  1598. }
  1599. }
  1600. }
  1601. }
  1602. },
  1603. "Component_[9450029410653326667]": {
  1604. "$type": "GenericComponentWrapper",
  1605. "Id": 9450029410653326667,
  1606. "m_template": {
  1607. "$type": "Multiplayer::NetworkRigidBodyComponent"
  1608. }
  1609. },
  1610. "Component_[9452550092591643181]": {
  1611. "$type": "EditorLockComponent",
  1612. "Id": 9452550092591643181
  1613. }
  1614. }
  1615. },
  1616. "Entity_[544798738787]": {
  1617. "Id": "Entity_[544798738787]",
  1618. "Name": "Box4",
  1619. "Components": {
  1620. "Component_[11384954117619258935]": {
  1621. "$type": "EditorColliderComponent",
  1622. "Id": 11384954117619258935,
  1623. "ColliderConfiguration": {
  1624. "MaterialSlots": {
  1625. "Slots": [
  1626. {
  1627. "Name": "Entire object"
  1628. }
  1629. ]
  1630. }
  1631. },
  1632. "ShapeConfiguration": {
  1633. "ShapeType": 1
  1634. },
  1635. "DebugDrawSettings": {
  1636. "LocallyEnabled": false
  1637. }
  1638. },
  1639. "Component_[11829233075139704453]": {
  1640. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1641. "Id": 11829233075139704453,
  1642. "Parent Entity": "ContainerEntity",
  1643. "Transform Data": {
  1644. "Translate": [
  1645. -0.4683690071105957,
  1646. -0.6137781143188477,
  1647. 3.1908931732177734
  1648. ]
  1649. }
  1650. },
  1651. "Component_[12724016572532454792]": {
  1652. "$type": "AZ::Render::EditorMeshComponent",
  1653. "Id": 12724016572532454792,
  1654. "Controller": {
  1655. "Configuration": {
  1656. "ModelAsset": {
  1657. "assetId": {
  1658. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  1659. "subId": 285127096
  1660. },
  1661. "assetHint": "objects/cube.azmodel"
  1662. }
  1663. }
  1664. }
  1665. },
  1666. "Component_[14564562245168579615]": {
  1667. "$type": "EditorRigidBodyComponent",
  1668. "Id": 14564562245168579615,
  1669. "Configuration": {
  1670. "entityId": "",
  1671. "Mass": 999.9999389648438,
  1672. "Inertia tensor": [
  1673. 166.6666717529297,
  1674. 0.0,
  1675. 0.0,
  1676. 0.0,
  1677. 166.6666717529297,
  1678. 0.0,
  1679. 0.0,
  1680. 0.0,
  1681. 166.6666717529297
  1682. ]
  1683. }
  1684. },
  1685. "Component_[16056896985233530106]": {
  1686. "$type": "EditorDisabledCompositionComponent",
  1687. "Id": 16056896985233530106
  1688. },
  1689. "Component_[17648193282110847484]": {
  1690. "$type": "EditorOnlyEntityComponent",
  1691. "Id": 17648193282110847484
  1692. },
  1693. "Component_[17736719688956315985]": {
  1694. "$type": "GenericComponentWrapper",
  1695. "Id": 17736719688956315985,
  1696. "m_template": {
  1697. "$type": "Multiplayer::NetworkTransformComponent"
  1698. }
  1699. },
  1700. "Component_[1835082203551392000]": {
  1701. "$type": "EditorPendingCompositionComponent",
  1702. "Id": 1835082203551392000
  1703. },
  1704. "Component_[2164842339052442926]": {
  1705. "$type": "EditorEntitySortComponent",
  1706. "Id": 2164842339052442926
  1707. },
  1708. "Component_[3933618364732995768]": {
  1709. "$type": "EditorVisibilityComponent",
  1710. "Id": 3933618364732995768
  1711. },
  1712. "Component_[4455772334179006063]": {
  1713. "$type": "EditorEntityIconComponent",
  1714. "Id": 4455772334179006063
  1715. },
  1716. "Component_[7903212753103164289]": {
  1717. "$type": "EditorInspectorComponent",
  1718. "Id": 7903212753103164289,
  1719. "ComponentOrderEntryArray": [
  1720. {
  1721. "ComponentId": 11829233075139704453
  1722. },
  1723. {
  1724. "ComponentId": 8125251054274400256,
  1725. "SortIndex": 1
  1726. },
  1727. {
  1728. "ComponentId": 17736719688956315985,
  1729. "SortIndex": 2
  1730. },
  1731. {
  1732. "ComponentId": 12724016572532454792,
  1733. "SortIndex": 3
  1734. },
  1735. {
  1736. "ComponentId": 8184187118822500353,
  1737. "SortIndex": 4
  1738. },
  1739. {
  1740. "ComponentId": 11384954117619258935,
  1741. "SortIndex": 5
  1742. },
  1743. {
  1744. "ComponentId": 14564562245168579615,
  1745. "SortIndex": 6
  1746. },
  1747. {
  1748. "ComponentId": 9450029410653326667,
  1749. "SortIndex": 7
  1750. }
  1751. ]
  1752. },
  1753. "Component_[8125251054274400256]": {
  1754. "$type": "GenericComponentWrapper",
  1755. "Id": 8125251054274400256,
  1756. "m_template": {
  1757. "$type": "NetBindComponent"
  1758. }
  1759. },
  1760. "Component_[8184187118822500353]": {
  1761. "$type": "EditorMaterialComponent",
  1762. "Id": 8184187118822500353,
  1763. "Controller": {
  1764. "Configuration": {
  1765. "materials": {
  1766. "{}": {
  1767. "MaterialAsset": {
  1768. "assetId": {
  1769. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  1770. }
  1771. }
  1772. }
  1773. }
  1774. }
  1775. }
  1776. },
  1777. "Component_[9450029410653326667]": {
  1778. "$type": "GenericComponentWrapper",
  1779. "Id": 9450029410653326667,
  1780. "m_template": {
  1781. "$type": "Multiplayer::NetworkRigidBodyComponent"
  1782. }
  1783. },
  1784. "Component_[9452550092591643181]": {
  1785. "$type": "EditorLockComponent",
  1786. "Id": 9452550092591643181
  1787. }
  1788. }
  1789. },
  1790. "Entity_[549093706083]": {
  1791. "Id": "Entity_[549093706083]",
  1792. "Name": "Box1",
  1793. "Components": {
  1794. "Component_[11384954117619258935]": {
  1795. "$type": "EditorColliderComponent",
  1796. "Id": 11384954117619258935,
  1797. "ColliderConfiguration": {
  1798. "MaterialSlots": {
  1799. "Slots": [
  1800. {
  1801. "Name": "Entire object"
  1802. }
  1803. ]
  1804. }
  1805. },
  1806. "ShapeConfiguration": {
  1807. "ShapeType": 1
  1808. },
  1809. "DebugDrawSettings": {
  1810. "LocallyEnabled": false
  1811. }
  1812. },
  1813. "Component_[11829233075139704453]": {
  1814. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1815. "Id": 11829233075139704453,
  1816. "Parent Entity": "ContainerEntity",
  1817. "Transform Data": {
  1818. "Translate": [
  1819. 0.6456379890441895,
  1820. 1.8704166412353516,
  1821. 0.0
  1822. ]
  1823. }
  1824. },
  1825. "Component_[12724016572532454792]": {
  1826. "$type": "AZ::Render::EditorMeshComponent",
  1827. "Id": 12724016572532454792,
  1828. "Controller": {
  1829. "Configuration": {
  1830. "ModelAsset": {
  1831. "assetId": {
  1832. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  1833. "subId": 285127096
  1834. },
  1835. "assetHint": "objects/cube.azmodel"
  1836. }
  1837. }
  1838. }
  1839. },
  1840. "Component_[14564562245168579615]": {
  1841. "$type": "EditorRigidBodyComponent",
  1842. "Id": 14564562245168579615,
  1843. "Configuration": {
  1844. "entityId": "",
  1845. "Mass": 999.9999389648438,
  1846. "Inertia tensor": [
  1847. 166.6666717529297,
  1848. 0.0,
  1849. 0.0,
  1850. 0.0,
  1851. 166.6666717529297,
  1852. 0.0,
  1853. 0.0,
  1854. 0.0,
  1855. 166.6666717529297
  1856. ]
  1857. }
  1858. },
  1859. "Component_[16056896985233530106]": {
  1860. "$type": "EditorDisabledCompositionComponent",
  1861. "Id": 16056896985233530106
  1862. },
  1863. "Component_[17648193282110847484]": {
  1864. "$type": "EditorOnlyEntityComponent",
  1865. "Id": 17648193282110847484
  1866. },
  1867. "Component_[17736719688956315985]": {
  1868. "$type": "GenericComponentWrapper",
  1869. "Id": 17736719688956315985,
  1870. "m_template": {
  1871. "$type": "Multiplayer::NetworkTransformComponent"
  1872. }
  1873. },
  1874. "Component_[1835082203551392000]": {
  1875. "$type": "EditorPendingCompositionComponent",
  1876. "Id": 1835082203551392000
  1877. },
  1878. "Component_[2164842339052442926]": {
  1879. "$type": "EditorEntitySortComponent",
  1880. "Id": 2164842339052442926
  1881. },
  1882. "Component_[3933618364732995768]": {
  1883. "$type": "EditorVisibilityComponent",
  1884. "Id": 3933618364732995768
  1885. },
  1886. "Component_[4455772334179006063]": {
  1887. "$type": "EditorEntityIconComponent",
  1888. "Id": 4455772334179006063
  1889. },
  1890. "Component_[7903212753103164289]": {
  1891. "$type": "EditorInspectorComponent",
  1892. "Id": 7903212753103164289,
  1893. "ComponentOrderEntryArray": [
  1894. {
  1895. "ComponentId": 11829233075139704453
  1896. },
  1897. {
  1898. "ComponentId": 8125251054274400256,
  1899. "SortIndex": 1
  1900. },
  1901. {
  1902. "ComponentId": 17736719688956315985,
  1903. "SortIndex": 2
  1904. },
  1905. {
  1906. "ComponentId": 12724016572532454792,
  1907. "SortIndex": 3
  1908. },
  1909. {
  1910. "ComponentId": 8184187118822500353,
  1911. "SortIndex": 4
  1912. },
  1913. {
  1914. "ComponentId": 11384954117619258935,
  1915. "SortIndex": 5
  1916. },
  1917. {
  1918. "ComponentId": 14564562245168579615,
  1919. "SortIndex": 6
  1920. },
  1921. {
  1922. "ComponentId": 9450029410653326667,
  1923. "SortIndex": 7
  1924. }
  1925. ]
  1926. },
  1927. "Component_[8125251054274400256]": {
  1928. "$type": "GenericComponentWrapper",
  1929. "Id": 8125251054274400256,
  1930. "m_template": {
  1931. "$type": "NetBindComponent"
  1932. }
  1933. },
  1934. "Component_[8184187118822500353]": {
  1935. "$type": "EditorMaterialComponent",
  1936. "Id": 8184187118822500353,
  1937. "Controller": {
  1938. "Configuration": {
  1939. "materials": {
  1940. "{}": {
  1941. "MaterialAsset": {
  1942. "assetId": {
  1943. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  1944. }
  1945. }
  1946. }
  1947. }
  1948. }
  1949. }
  1950. },
  1951. "Component_[9450029410653326667]": {
  1952. "$type": "GenericComponentWrapper",
  1953. "Id": 9450029410653326667,
  1954. "m_template": {
  1955. "$type": "Multiplayer::NetworkRigidBodyComponent"
  1956. }
  1957. },
  1958. "Component_[9452550092591643181]": {
  1959. "$type": "EditorLockComponent",
  1960. "Id": 9452550092591643181
  1961. }
  1962. }
  1963. },
  1964. "Entity_[553388673379]": {
  1965. "Id": "Entity_[553388673379]",
  1966. "Name": "Box2",
  1967. "Components": {
  1968. "Component_[11384954117619258935]": {
  1969. "$type": "EditorColliderComponent",
  1970. "Id": 11384954117619258935,
  1971. "ColliderConfiguration": {
  1972. "MaterialSlots": {
  1973. "Slots": [
  1974. {
  1975. "Name": "Entire object"
  1976. }
  1977. ]
  1978. }
  1979. },
  1980. "ShapeConfiguration": {
  1981. "ShapeType": 1
  1982. },
  1983. "DebugDrawSettings": {
  1984. "LocallyEnabled": false
  1985. }
  1986. },
  1987. "Component_[11829233075139704453]": {
  1988. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1989. "Id": 11829233075139704453,
  1990. "Parent Entity": "ContainerEntity",
  1991. "Transform Data": {
  1992. "Translate": [
  1993. 0.6456379890441895,
  1994. 0.6112356185913086,
  1995. 1.0648231506347656
  1996. ]
  1997. }
  1998. },
  1999. "Component_[12724016572532454792]": {
  2000. "$type": "AZ::Render::EditorMeshComponent",
  2001. "Id": 12724016572532454792,
  2002. "Controller": {
  2003. "Configuration": {
  2004. "ModelAsset": {
  2005. "assetId": {
  2006. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  2007. "subId": 285127096
  2008. },
  2009. "assetHint": "objects/cube.azmodel"
  2010. }
  2011. }
  2012. }
  2013. },
  2014. "Component_[14564562245168579615]": {
  2015. "$type": "EditorRigidBodyComponent",
  2016. "Id": 14564562245168579615,
  2017. "Configuration": {
  2018. "entityId": "",
  2019. "Mass": 999.9999389648438,
  2020. "Inertia tensor": [
  2021. 166.6666717529297,
  2022. 0.0,
  2023. 0.0,
  2024. 0.0,
  2025. 166.6666717529297,
  2026. 0.0,
  2027. 0.0,
  2028. 0.0,
  2029. 166.6666717529297
  2030. ]
  2031. }
  2032. },
  2033. "Component_[16056896985233530106]": {
  2034. "$type": "EditorDisabledCompositionComponent",
  2035. "Id": 16056896985233530106
  2036. },
  2037. "Component_[17648193282110847484]": {
  2038. "$type": "EditorOnlyEntityComponent",
  2039. "Id": 17648193282110847484
  2040. },
  2041. "Component_[17736719688956315985]": {
  2042. "$type": "GenericComponentWrapper",
  2043. "Id": 17736719688956315985,
  2044. "m_template": {
  2045. "$type": "Multiplayer::NetworkTransformComponent"
  2046. }
  2047. },
  2048. "Component_[1835082203551392000]": {
  2049. "$type": "EditorPendingCompositionComponent",
  2050. "Id": 1835082203551392000
  2051. },
  2052. "Component_[2164842339052442926]": {
  2053. "$type": "EditorEntitySortComponent",
  2054. "Id": 2164842339052442926
  2055. },
  2056. "Component_[3933618364732995768]": {
  2057. "$type": "EditorVisibilityComponent",
  2058. "Id": 3933618364732995768
  2059. },
  2060. "Component_[4455772334179006063]": {
  2061. "$type": "EditorEntityIconComponent",
  2062. "Id": 4455772334179006063
  2063. },
  2064. "Component_[7903212753103164289]": {
  2065. "$type": "EditorInspectorComponent",
  2066. "Id": 7903212753103164289,
  2067. "ComponentOrderEntryArray": [
  2068. {
  2069. "ComponentId": 11829233075139704453
  2070. },
  2071. {
  2072. "ComponentId": 8125251054274400256,
  2073. "SortIndex": 1
  2074. },
  2075. {
  2076. "ComponentId": 17736719688956315985,
  2077. "SortIndex": 2
  2078. },
  2079. {
  2080. "ComponentId": 12724016572532454792,
  2081. "SortIndex": 3
  2082. },
  2083. {
  2084. "ComponentId": 8184187118822500353,
  2085. "SortIndex": 4
  2086. },
  2087. {
  2088. "ComponentId": 11384954117619258935,
  2089. "SortIndex": 5
  2090. },
  2091. {
  2092. "ComponentId": 14564562245168579615,
  2093. "SortIndex": 6
  2094. },
  2095. {
  2096. "ComponentId": 9450029410653326667,
  2097. "SortIndex": 7
  2098. }
  2099. ]
  2100. },
  2101. "Component_[8125251054274400256]": {
  2102. "$type": "GenericComponentWrapper",
  2103. "Id": 8125251054274400256,
  2104. "m_template": {
  2105. "$type": "NetBindComponent"
  2106. }
  2107. },
  2108. "Component_[8184187118822500353]": {
  2109. "$type": "EditorMaterialComponent",
  2110. "Id": 8184187118822500353,
  2111. "Controller": {
  2112. "Configuration": {
  2113. "materials": {
  2114. "{}": {
  2115. "MaterialAsset": {
  2116. "assetId": {
  2117. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  2118. }
  2119. }
  2120. }
  2121. }
  2122. }
  2123. }
  2124. },
  2125. "Component_[9450029410653326667]": {
  2126. "$type": "GenericComponentWrapper",
  2127. "Id": 9450029410653326667,
  2128. "m_template": {
  2129. "$type": "Multiplayer::NetworkRigidBodyComponent"
  2130. }
  2131. },
  2132. "Component_[9452550092591643181]": {
  2133. "$type": "EditorLockComponent",
  2134. "Id": 9452550092591643181
  2135. }
  2136. }
  2137. },
  2138. "Entity_[557683640675]": {
  2139. "Id": "Entity_[557683640675]",
  2140. "Name": "Box1",
  2141. "Components": {
  2142. "Component_[11384954117619258935]": {
  2143. "$type": "EditorColliderComponent",
  2144. "Id": 11384954117619258935,
  2145. "ColliderConfiguration": {
  2146. "MaterialSlots": {
  2147. "Slots": [
  2148. {
  2149. "Name": "Entire object"
  2150. }
  2151. ]
  2152. }
  2153. },
  2154. "ShapeConfiguration": {
  2155. "ShapeType": 1
  2156. },
  2157. "DebugDrawSettings": {
  2158. "LocallyEnabled": false
  2159. }
  2160. },
  2161. "Component_[11829233075139704453]": {
  2162. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2163. "Id": 11829233075139704453,
  2164. "Parent Entity": "ContainerEntity",
  2165. "Transform Data": {
  2166. "Translate": [
  2167. -0.4683690071105957,
  2168. -0.6137781143188477,
  2169. 0.0
  2170. ]
  2171. }
  2172. },
  2173. "Component_[12724016572532454792]": {
  2174. "$type": "AZ::Render::EditorMeshComponent",
  2175. "Id": 12724016572532454792,
  2176. "Controller": {
  2177. "Configuration": {
  2178. "ModelAsset": {
  2179. "assetId": {
  2180. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  2181. "subId": 285127096
  2182. },
  2183. "assetHint": "objects/cube.azmodel"
  2184. }
  2185. }
  2186. }
  2187. },
  2188. "Component_[14564562245168579615]": {
  2189. "$type": "EditorRigidBodyComponent",
  2190. "Id": 14564562245168579615,
  2191. "Configuration": {
  2192. "entityId": "",
  2193. "Mass": 999.9999389648438,
  2194. "Inertia tensor": [
  2195. 166.6666717529297,
  2196. 0.0,
  2197. 0.0,
  2198. 0.0,
  2199. 166.6666717529297,
  2200. 0.0,
  2201. 0.0,
  2202. 0.0,
  2203. 166.6666717529297
  2204. ]
  2205. }
  2206. },
  2207. "Component_[16056896985233530106]": {
  2208. "$type": "EditorDisabledCompositionComponent",
  2209. "Id": 16056896985233530106
  2210. },
  2211. "Component_[17648193282110847484]": {
  2212. "$type": "EditorOnlyEntityComponent",
  2213. "Id": 17648193282110847484
  2214. },
  2215. "Component_[17736719688956315985]": {
  2216. "$type": "GenericComponentWrapper",
  2217. "Id": 17736719688956315985,
  2218. "m_template": {
  2219. "$type": "Multiplayer::NetworkTransformComponent"
  2220. }
  2221. },
  2222. "Component_[1835082203551392000]": {
  2223. "$type": "EditorPendingCompositionComponent",
  2224. "Id": 1835082203551392000
  2225. },
  2226. "Component_[2164842339052442926]": {
  2227. "$type": "EditorEntitySortComponent",
  2228. "Id": 2164842339052442926
  2229. },
  2230. "Component_[3933618364732995768]": {
  2231. "$type": "EditorVisibilityComponent",
  2232. "Id": 3933618364732995768
  2233. },
  2234. "Component_[4455772334179006063]": {
  2235. "$type": "EditorEntityIconComponent",
  2236. "Id": 4455772334179006063
  2237. },
  2238. "Component_[7903212753103164289]": {
  2239. "$type": "EditorInspectorComponent",
  2240. "Id": 7903212753103164289,
  2241. "ComponentOrderEntryArray": [
  2242. {
  2243. "ComponentId": 11829233075139704453
  2244. },
  2245. {
  2246. "ComponentId": 8125251054274400256,
  2247. "SortIndex": 1
  2248. },
  2249. {
  2250. "ComponentId": 17736719688956315985,
  2251. "SortIndex": 2
  2252. },
  2253. {
  2254. "ComponentId": 12724016572532454792,
  2255. "SortIndex": 3
  2256. },
  2257. {
  2258. "ComponentId": 8184187118822500353,
  2259. "SortIndex": 4
  2260. },
  2261. {
  2262. "ComponentId": 11384954117619258935,
  2263. "SortIndex": 5
  2264. },
  2265. {
  2266. "ComponentId": 14564562245168579615,
  2267. "SortIndex": 6
  2268. },
  2269. {
  2270. "ComponentId": 9450029410653326667,
  2271. "SortIndex": 7
  2272. }
  2273. ]
  2274. },
  2275. "Component_[8125251054274400256]": {
  2276. "$type": "GenericComponentWrapper",
  2277. "Id": 8125251054274400256,
  2278. "m_template": {
  2279. "$type": "NetBindComponent"
  2280. }
  2281. },
  2282. "Component_[8184187118822500353]": {
  2283. "$type": "EditorMaterialComponent",
  2284. "Id": 8184187118822500353,
  2285. "Controller": {
  2286. "Configuration": {
  2287. "materials": {
  2288. "{}": {
  2289. "MaterialAsset": {
  2290. "assetId": {
  2291. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  2292. }
  2293. }
  2294. }
  2295. }
  2296. }
  2297. }
  2298. },
  2299. "Component_[9450029410653326667]": {
  2300. "$type": "GenericComponentWrapper",
  2301. "Id": 9450029410653326667,
  2302. "m_template": {
  2303. "$type": "Multiplayer::NetworkRigidBodyComponent"
  2304. }
  2305. },
  2306. "Component_[9452550092591643181]": {
  2307. "$type": "EditorLockComponent",
  2308. "Id": 9452550092591643181
  2309. }
  2310. }
  2311. },
  2312. "Entity_[561978607971]": {
  2313. "Id": "Entity_[561978607971]",
  2314. "Name": "Box3",
  2315. "Components": {
  2316. "Component_[11384954117619258935]": {
  2317. "$type": "EditorColliderComponent",
  2318. "Id": 11384954117619258935,
  2319. "ColliderConfiguration": {
  2320. "MaterialSlots": {
  2321. "Slots": [
  2322. {
  2323. "Name": "Entire object"
  2324. }
  2325. ]
  2326. }
  2327. },
  2328. "ShapeConfiguration": {
  2329. "ShapeType": 1
  2330. },
  2331. "DebugDrawSettings": {
  2332. "LocallyEnabled": false
  2333. }
  2334. },
  2335. "Component_[11829233075139704453]": {
  2336. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2337. "Id": 11829233075139704453,
  2338. "Parent Entity": "ContainerEntity",
  2339. "Transform Data": {
  2340. "Translate": [
  2341. 1.7793126106262207,
  2342. -0.6137781143188477,
  2343. 2.126070022583008
  2344. ]
  2345. }
  2346. },
  2347. "Component_[12724016572532454792]": {
  2348. "$type": "AZ::Render::EditorMeshComponent",
  2349. "Id": 12724016572532454792,
  2350. "Controller": {
  2351. "Configuration": {
  2352. "ModelAsset": {
  2353. "assetId": {
  2354. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  2355. "subId": 285127096
  2356. },
  2357. "assetHint": "objects/cube.azmodel"
  2358. }
  2359. }
  2360. }
  2361. },
  2362. "Component_[14564562245168579615]": {
  2363. "$type": "EditorRigidBodyComponent",
  2364. "Id": 14564562245168579615,
  2365. "Configuration": {
  2366. "entityId": "",
  2367. "Mass": 999.9999389648438,
  2368. "Inertia tensor": [
  2369. 166.6666717529297,
  2370. 0.0,
  2371. 0.0,
  2372. 0.0,
  2373. 166.6666717529297,
  2374. 0.0,
  2375. 0.0,
  2376. 0.0,
  2377. 166.6666717529297
  2378. ]
  2379. }
  2380. },
  2381. "Component_[16056896985233530106]": {
  2382. "$type": "EditorDisabledCompositionComponent",
  2383. "Id": 16056896985233530106
  2384. },
  2385. "Component_[17648193282110847484]": {
  2386. "$type": "EditorOnlyEntityComponent",
  2387. "Id": 17648193282110847484
  2388. },
  2389. "Component_[17736719688956315985]": {
  2390. "$type": "GenericComponentWrapper",
  2391. "Id": 17736719688956315985,
  2392. "m_template": {
  2393. "$type": "Multiplayer::NetworkTransformComponent"
  2394. }
  2395. },
  2396. "Component_[1835082203551392000]": {
  2397. "$type": "EditorPendingCompositionComponent",
  2398. "Id": 1835082203551392000
  2399. },
  2400. "Component_[2164842339052442926]": {
  2401. "$type": "EditorEntitySortComponent",
  2402. "Id": 2164842339052442926
  2403. },
  2404. "Component_[3933618364732995768]": {
  2405. "$type": "EditorVisibilityComponent",
  2406. "Id": 3933618364732995768
  2407. },
  2408. "Component_[4455772334179006063]": {
  2409. "$type": "EditorEntityIconComponent",
  2410. "Id": 4455772334179006063
  2411. },
  2412. "Component_[7903212753103164289]": {
  2413. "$type": "EditorInspectorComponent",
  2414. "Id": 7903212753103164289,
  2415. "ComponentOrderEntryArray": [
  2416. {
  2417. "ComponentId": 11829233075139704453
  2418. },
  2419. {
  2420. "ComponentId": 8125251054274400256,
  2421. "SortIndex": 1
  2422. },
  2423. {
  2424. "ComponentId": 17736719688956315985,
  2425. "SortIndex": 2
  2426. },
  2427. {
  2428. "ComponentId": 12724016572532454792,
  2429. "SortIndex": 3
  2430. },
  2431. {
  2432. "ComponentId": 8184187118822500353,
  2433. "SortIndex": 4
  2434. },
  2435. {
  2436. "ComponentId": 11384954117619258935,
  2437. "SortIndex": 5
  2438. },
  2439. {
  2440. "ComponentId": 14564562245168579615,
  2441. "SortIndex": 6
  2442. },
  2443. {
  2444. "ComponentId": 9450029410653326667,
  2445. "SortIndex": 7
  2446. }
  2447. ]
  2448. },
  2449. "Component_[8125251054274400256]": {
  2450. "$type": "GenericComponentWrapper",
  2451. "Id": 8125251054274400256,
  2452. "m_template": {
  2453. "$type": "NetBindComponent"
  2454. }
  2455. },
  2456. "Component_[8184187118822500353]": {
  2457. "$type": "EditorMaterialComponent",
  2458. "Id": 8184187118822500353,
  2459. "Controller": {
  2460. "Configuration": {
  2461. "materials": {
  2462. "{}": {
  2463. "MaterialAsset": {
  2464. "assetId": {
  2465. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  2466. }
  2467. }
  2468. }
  2469. }
  2470. }
  2471. }
  2472. },
  2473. "Component_[9450029410653326667]": {
  2474. "$type": "GenericComponentWrapper",
  2475. "Id": 9450029410653326667,
  2476. "m_template": {
  2477. "$type": "Multiplayer::NetworkRigidBodyComponent"
  2478. }
  2479. },
  2480. "Component_[9452550092591643181]": {
  2481. "$type": "EditorLockComponent",
  2482. "Id": 9452550092591643181
  2483. }
  2484. }
  2485. },
  2486. "Entity_[566273575267]": {
  2487. "Id": "Entity_[566273575267]",
  2488. "Name": "Box3",
  2489. "Components": {
  2490. "Component_[11384954117619258935]": {
  2491. "$type": "EditorColliderComponent",
  2492. "Id": 11384954117619258935,
  2493. "ColliderConfiguration": {
  2494. "MaterialSlots": {
  2495. "Slots": [
  2496. {
  2497. "Name": "Entire object"
  2498. }
  2499. ]
  2500. }
  2501. },
  2502. "ShapeConfiguration": {
  2503. "ShapeType": 1
  2504. },
  2505. "DebugDrawSettings": {
  2506. "LocallyEnabled": false
  2507. }
  2508. },
  2509. "Component_[11829233075139704453]": {
  2510. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2511. "Id": 11829233075139704453,
  2512. "Parent Entity": "ContainerEntity",
  2513. "Transform Data": {
  2514. "Translate": [
  2515. -0.4683690071105957,
  2516. 0.6112356185913086,
  2517. 2.126070022583008
  2518. ]
  2519. }
  2520. },
  2521. "Component_[12724016572532454792]": {
  2522. "$type": "AZ::Render::EditorMeshComponent",
  2523. "Id": 12724016572532454792,
  2524. "Controller": {
  2525. "Configuration": {
  2526. "ModelAsset": {
  2527. "assetId": {
  2528. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  2529. "subId": 285127096
  2530. },
  2531. "assetHint": "objects/cube.azmodel"
  2532. }
  2533. }
  2534. }
  2535. },
  2536. "Component_[14564562245168579615]": {
  2537. "$type": "EditorRigidBodyComponent",
  2538. "Id": 14564562245168579615,
  2539. "Configuration": {
  2540. "entityId": "",
  2541. "Mass": 999.9999389648438,
  2542. "Inertia tensor": [
  2543. 166.6666717529297,
  2544. 0.0,
  2545. 0.0,
  2546. 0.0,
  2547. 166.6666717529297,
  2548. 0.0,
  2549. 0.0,
  2550. 0.0,
  2551. 166.6666717529297
  2552. ]
  2553. }
  2554. },
  2555. "Component_[16056896985233530106]": {
  2556. "$type": "EditorDisabledCompositionComponent",
  2557. "Id": 16056896985233530106
  2558. },
  2559. "Component_[17648193282110847484]": {
  2560. "$type": "EditorOnlyEntityComponent",
  2561. "Id": 17648193282110847484
  2562. },
  2563. "Component_[17736719688956315985]": {
  2564. "$type": "GenericComponentWrapper",
  2565. "Id": 17736719688956315985,
  2566. "m_template": {
  2567. "$type": "Multiplayer::NetworkTransformComponent"
  2568. }
  2569. },
  2570. "Component_[1835082203551392000]": {
  2571. "$type": "EditorPendingCompositionComponent",
  2572. "Id": 1835082203551392000
  2573. },
  2574. "Component_[2164842339052442926]": {
  2575. "$type": "EditorEntitySortComponent",
  2576. "Id": 2164842339052442926
  2577. },
  2578. "Component_[3933618364732995768]": {
  2579. "$type": "EditorVisibilityComponent",
  2580. "Id": 3933618364732995768
  2581. },
  2582. "Component_[4455772334179006063]": {
  2583. "$type": "EditorEntityIconComponent",
  2584. "Id": 4455772334179006063
  2585. },
  2586. "Component_[7903212753103164289]": {
  2587. "$type": "EditorInspectorComponent",
  2588. "Id": 7903212753103164289,
  2589. "ComponentOrderEntryArray": [
  2590. {
  2591. "ComponentId": 11829233075139704453
  2592. },
  2593. {
  2594. "ComponentId": 8125251054274400256,
  2595. "SortIndex": 1
  2596. },
  2597. {
  2598. "ComponentId": 17736719688956315985,
  2599. "SortIndex": 2
  2600. },
  2601. {
  2602. "ComponentId": 12724016572532454792,
  2603. "SortIndex": 3
  2604. },
  2605. {
  2606. "ComponentId": 8184187118822500353,
  2607. "SortIndex": 4
  2608. },
  2609. {
  2610. "ComponentId": 11384954117619258935,
  2611. "SortIndex": 5
  2612. },
  2613. {
  2614. "ComponentId": 14564562245168579615,
  2615. "SortIndex": 6
  2616. },
  2617. {
  2618. "ComponentId": 9450029410653326667,
  2619. "SortIndex": 7
  2620. }
  2621. ]
  2622. },
  2623. "Component_[8125251054274400256]": {
  2624. "$type": "GenericComponentWrapper",
  2625. "Id": 8125251054274400256,
  2626. "m_template": {
  2627. "$type": "NetBindComponent"
  2628. }
  2629. },
  2630. "Component_[8184187118822500353]": {
  2631. "$type": "EditorMaterialComponent",
  2632. "Id": 8184187118822500353,
  2633. "Controller": {
  2634. "Configuration": {
  2635. "materials": {
  2636. "{}": {
  2637. "MaterialAsset": {
  2638. "assetId": {
  2639. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  2640. }
  2641. }
  2642. }
  2643. }
  2644. }
  2645. }
  2646. },
  2647. "Component_[9450029410653326667]": {
  2648. "$type": "GenericComponentWrapper",
  2649. "Id": 9450029410653326667,
  2650. "m_template": {
  2651. "$type": "Multiplayer::NetworkRigidBodyComponent"
  2652. }
  2653. },
  2654. "Component_[9452550092591643181]": {
  2655. "$type": "EditorLockComponent",
  2656. "Id": 9452550092591643181
  2657. }
  2658. }
  2659. },
  2660. "Entity_[570568542563]": {
  2661. "Id": "Entity_[570568542563]",
  2662. "Name": "Box2",
  2663. "Components": {
  2664. "Component_[11384954117619258935]": {
  2665. "$type": "EditorColliderComponent",
  2666. "Id": 11384954117619258935,
  2667. "ColliderConfiguration": {
  2668. "MaterialSlots": {
  2669. "Slots": [
  2670. {
  2671. "Name": "Entire object"
  2672. }
  2673. ]
  2674. }
  2675. },
  2676. "ShapeConfiguration": {
  2677. "ShapeType": 1
  2678. },
  2679. "DebugDrawSettings": {
  2680. "LocallyEnabled": false
  2681. }
  2682. },
  2683. "Component_[11829233075139704453]": {
  2684. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2685. "Id": 11829233075139704453,
  2686. "Parent Entity": "ContainerEntity",
  2687. "Transform Data": {
  2688. "Translate": [
  2689. 1.7793126106262207,
  2690. 1.8704166412353516,
  2691. 1.0648231506347656
  2692. ]
  2693. }
  2694. },
  2695. "Component_[12724016572532454792]": {
  2696. "$type": "AZ::Render::EditorMeshComponent",
  2697. "Id": 12724016572532454792,
  2698. "Controller": {
  2699. "Configuration": {
  2700. "ModelAsset": {
  2701. "assetId": {
  2702. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  2703. "subId": 285127096
  2704. },
  2705. "assetHint": "objects/cube.azmodel"
  2706. }
  2707. }
  2708. }
  2709. },
  2710. "Component_[14564562245168579615]": {
  2711. "$type": "EditorRigidBodyComponent",
  2712. "Id": 14564562245168579615,
  2713. "Configuration": {
  2714. "entityId": "",
  2715. "Mass": 999.9999389648438,
  2716. "Inertia tensor": [
  2717. 166.6666717529297,
  2718. 0.0,
  2719. 0.0,
  2720. 0.0,
  2721. 166.6666717529297,
  2722. 0.0,
  2723. 0.0,
  2724. 0.0,
  2725. 166.6666717529297
  2726. ]
  2727. }
  2728. },
  2729. "Component_[16056896985233530106]": {
  2730. "$type": "EditorDisabledCompositionComponent",
  2731. "Id": 16056896985233530106
  2732. },
  2733. "Component_[17648193282110847484]": {
  2734. "$type": "EditorOnlyEntityComponent",
  2735. "Id": 17648193282110847484
  2736. },
  2737. "Component_[17736719688956315985]": {
  2738. "$type": "GenericComponentWrapper",
  2739. "Id": 17736719688956315985,
  2740. "m_template": {
  2741. "$type": "Multiplayer::NetworkTransformComponent"
  2742. }
  2743. },
  2744. "Component_[1835082203551392000]": {
  2745. "$type": "EditorPendingCompositionComponent",
  2746. "Id": 1835082203551392000
  2747. },
  2748. "Component_[2164842339052442926]": {
  2749. "$type": "EditorEntitySortComponent",
  2750. "Id": 2164842339052442926
  2751. },
  2752. "Component_[3933618364732995768]": {
  2753. "$type": "EditorVisibilityComponent",
  2754. "Id": 3933618364732995768
  2755. },
  2756. "Component_[4455772334179006063]": {
  2757. "$type": "EditorEntityIconComponent",
  2758. "Id": 4455772334179006063
  2759. },
  2760. "Component_[7903212753103164289]": {
  2761. "$type": "EditorInspectorComponent",
  2762. "Id": 7903212753103164289,
  2763. "ComponentOrderEntryArray": [
  2764. {
  2765. "ComponentId": 11829233075139704453
  2766. },
  2767. {
  2768. "ComponentId": 8125251054274400256,
  2769. "SortIndex": 1
  2770. },
  2771. {
  2772. "ComponentId": 17736719688956315985,
  2773. "SortIndex": 2
  2774. },
  2775. {
  2776. "ComponentId": 12724016572532454792,
  2777. "SortIndex": 3
  2778. },
  2779. {
  2780. "ComponentId": 8184187118822500353,
  2781. "SortIndex": 4
  2782. },
  2783. {
  2784. "ComponentId": 11384954117619258935,
  2785. "SortIndex": 5
  2786. },
  2787. {
  2788. "ComponentId": 14564562245168579615,
  2789. "SortIndex": 6
  2790. },
  2791. {
  2792. "ComponentId": 9450029410653326667,
  2793. "SortIndex": 7
  2794. }
  2795. ]
  2796. },
  2797. "Component_[8125251054274400256]": {
  2798. "$type": "GenericComponentWrapper",
  2799. "Id": 8125251054274400256,
  2800. "m_template": {
  2801. "$type": "NetBindComponent"
  2802. }
  2803. },
  2804. "Component_[8184187118822500353]": {
  2805. "$type": "EditorMaterialComponent",
  2806. "Id": 8184187118822500353,
  2807. "Controller": {
  2808. "Configuration": {
  2809. "materials": {
  2810. "{}": {
  2811. "MaterialAsset": {
  2812. "assetId": {
  2813. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  2814. }
  2815. }
  2816. }
  2817. }
  2818. }
  2819. }
  2820. },
  2821. "Component_[9450029410653326667]": {
  2822. "$type": "GenericComponentWrapper",
  2823. "Id": 9450029410653326667,
  2824. "m_template": {
  2825. "$type": "Multiplayer::NetworkRigidBodyComponent"
  2826. }
  2827. },
  2828. "Component_[9452550092591643181]": {
  2829. "$type": "EditorLockComponent",
  2830. "Id": 9452550092591643181
  2831. }
  2832. }
  2833. },
  2834. "Entity_[574863509859]": {
  2835. "Id": "Entity_[574863509859]",
  2836. "Name": "Box3",
  2837. "Components": {
  2838. "Component_[11384954117619258935]": {
  2839. "$type": "EditorColliderComponent",
  2840. "Id": 11384954117619258935,
  2841. "ColliderConfiguration": {
  2842. "MaterialSlots": {
  2843. "Slots": [
  2844. {
  2845. "Name": "Entire object"
  2846. }
  2847. ]
  2848. }
  2849. },
  2850. "ShapeConfiguration": {
  2851. "ShapeType": 1
  2852. },
  2853. "DebugDrawSettings": {
  2854. "LocallyEnabled": false
  2855. }
  2856. },
  2857. "Component_[11829233075139704453]": {
  2858. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2859. "Id": 11829233075139704453,
  2860. "Parent Entity": "ContainerEntity",
  2861. "Transform Data": {
  2862. "Translate": [
  2863. -0.4683690071105957,
  2864. -0.6137781143188477,
  2865. 2.126070022583008
  2866. ]
  2867. }
  2868. },
  2869. "Component_[12724016572532454792]": {
  2870. "$type": "AZ::Render::EditorMeshComponent",
  2871. "Id": 12724016572532454792,
  2872. "Controller": {
  2873. "Configuration": {
  2874. "ModelAsset": {
  2875. "assetId": {
  2876. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  2877. "subId": 285127096
  2878. },
  2879. "assetHint": "objects/cube.azmodel"
  2880. }
  2881. }
  2882. }
  2883. },
  2884. "Component_[14564562245168579615]": {
  2885. "$type": "EditorRigidBodyComponent",
  2886. "Id": 14564562245168579615,
  2887. "Configuration": {
  2888. "entityId": "",
  2889. "Mass": 999.9999389648438,
  2890. "Inertia tensor": [
  2891. 166.6666717529297,
  2892. 0.0,
  2893. 0.0,
  2894. 0.0,
  2895. 166.6666717529297,
  2896. 0.0,
  2897. 0.0,
  2898. 0.0,
  2899. 166.6666717529297
  2900. ]
  2901. }
  2902. },
  2903. "Component_[16056896985233530106]": {
  2904. "$type": "EditorDisabledCompositionComponent",
  2905. "Id": 16056896985233530106
  2906. },
  2907. "Component_[17648193282110847484]": {
  2908. "$type": "EditorOnlyEntityComponent",
  2909. "Id": 17648193282110847484
  2910. },
  2911. "Component_[17736719688956315985]": {
  2912. "$type": "GenericComponentWrapper",
  2913. "Id": 17736719688956315985,
  2914. "m_template": {
  2915. "$type": "Multiplayer::NetworkTransformComponent"
  2916. }
  2917. },
  2918. "Component_[1835082203551392000]": {
  2919. "$type": "EditorPendingCompositionComponent",
  2920. "Id": 1835082203551392000
  2921. },
  2922. "Component_[2164842339052442926]": {
  2923. "$type": "EditorEntitySortComponent",
  2924. "Id": 2164842339052442926
  2925. },
  2926. "Component_[3933618364732995768]": {
  2927. "$type": "EditorVisibilityComponent",
  2928. "Id": 3933618364732995768
  2929. },
  2930. "Component_[4455772334179006063]": {
  2931. "$type": "EditorEntityIconComponent",
  2932. "Id": 4455772334179006063
  2933. },
  2934. "Component_[7903212753103164289]": {
  2935. "$type": "EditorInspectorComponent",
  2936. "Id": 7903212753103164289,
  2937. "ComponentOrderEntryArray": [
  2938. {
  2939. "ComponentId": 11829233075139704453
  2940. },
  2941. {
  2942. "ComponentId": 8125251054274400256,
  2943. "SortIndex": 1
  2944. },
  2945. {
  2946. "ComponentId": 17736719688956315985,
  2947. "SortIndex": 2
  2948. },
  2949. {
  2950. "ComponentId": 12724016572532454792,
  2951. "SortIndex": 3
  2952. },
  2953. {
  2954. "ComponentId": 8184187118822500353,
  2955. "SortIndex": 4
  2956. },
  2957. {
  2958. "ComponentId": 11384954117619258935,
  2959. "SortIndex": 5
  2960. },
  2961. {
  2962. "ComponentId": 14564562245168579615,
  2963. "SortIndex": 6
  2964. },
  2965. {
  2966. "ComponentId": 9450029410653326667,
  2967. "SortIndex": 7
  2968. }
  2969. ]
  2970. },
  2971. "Component_[8125251054274400256]": {
  2972. "$type": "GenericComponentWrapper",
  2973. "Id": 8125251054274400256,
  2974. "m_template": {
  2975. "$type": "NetBindComponent"
  2976. }
  2977. },
  2978. "Component_[8184187118822500353]": {
  2979. "$type": "EditorMaterialComponent",
  2980. "Id": 8184187118822500353,
  2981. "Controller": {
  2982. "Configuration": {
  2983. "materials": {
  2984. "{}": {
  2985. "MaterialAsset": {
  2986. "assetId": {
  2987. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  2988. }
  2989. }
  2990. }
  2991. }
  2992. }
  2993. }
  2994. },
  2995. "Component_[9450029410653326667]": {
  2996. "$type": "GenericComponentWrapper",
  2997. "Id": 9450029410653326667,
  2998. "m_template": {
  2999. "$type": "Multiplayer::NetworkRigidBodyComponent"
  3000. }
  3001. },
  3002. "Component_[9452550092591643181]": {
  3003. "$type": "EditorLockComponent",
  3004. "Id": 9452550092591643181
  3005. }
  3006. }
  3007. },
  3008. "Entity_[579158477155]": {
  3009. "Id": "Entity_[579158477155]",
  3010. "Name": "Box2",
  3011. "Components": {
  3012. "Component_[11384954117619258935]": {
  3013. "$type": "EditorColliderComponent",
  3014. "Id": 11384954117619258935,
  3015. "ColliderConfiguration": {
  3016. "MaterialSlots": {
  3017. "Slots": [
  3018. {
  3019. "Name": "Entire object"
  3020. }
  3021. ]
  3022. }
  3023. },
  3024. "ShapeConfiguration": {
  3025. "ShapeType": 1
  3026. },
  3027. "DebugDrawSettings": {
  3028. "LocallyEnabled": false
  3029. }
  3030. },
  3031. "Component_[11829233075139704453]": {
  3032. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3033. "Id": 11829233075139704453,
  3034. "Parent Entity": "ContainerEntity",
  3035. "Transform Data": {
  3036. "Translate": [
  3037. 1.7793126106262207,
  3038. -1.725468635559082,
  3039. 1.0648231506347656
  3040. ]
  3041. }
  3042. },
  3043. "Component_[12724016572532454792]": {
  3044. "$type": "AZ::Render::EditorMeshComponent",
  3045. "Id": 12724016572532454792,
  3046. "Controller": {
  3047. "Configuration": {
  3048. "ModelAsset": {
  3049. "assetId": {
  3050. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  3051. "subId": 285127096
  3052. },
  3053. "assetHint": "objects/cube.azmodel"
  3054. }
  3055. }
  3056. }
  3057. },
  3058. "Component_[14564562245168579615]": {
  3059. "$type": "EditorRigidBodyComponent",
  3060. "Id": 14564562245168579615,
  3061. "Configuration": {
  3062. "entityId": "",
  3063. "Mass": 999.9999389648438,
  3064. "Inertia tensor": [
  3065. 166.6666717529297,
  3066. 0.0,
  3067. 0.0,
  3068. 0.0,
  3069. 166.6666717529297,
  3070. 0.0,
  3071. 0.0,
  3072. 0.0,
  3073. 166.6666717529297
  3074. ]
  3075. }
  3076. },
  3077. "Component_[16056896985233530106]": {
  3078. "$type": "EditorDisabledCompositionComponent",
  3079. "Id": 16056896985233530106
  3080. },
  3081. "Component_[17648193282110847484]": {
  3082. "$type": "EditorOnlyEntityComponent",
  3083. "Id": 17648193282110847484
  3084. },
  3085. "Component_[17736719688956315985]": {
  3086. "$type": "GenericComponentWrapper",
  3087. "Id": 17736719688956315985,
  3088. "m_template": {
  3089. "$type": "Multiplayer::NetworkTransformComponent"
  3090. }
  3091. },
  3092. "Component_[1835082203551392000]": {
  3093. "$type": "EditorPendingCompositionComponent",
  3094. "Id": 1835082203551392000
  3095. },
  3096. "Component_[2164842339052442926]": {
  3097. "$type": "EditorEntitySortComponent",
  3098. "Id": 2164842339052442926
  3099. },
  3100. "Component_[3933618364732995768]": {
  3101. "$type": "EditorVisibilityComponent",
  3102. "Id": 3933618364732995768
  3103. },
  3104. "Component_[4455772334179006063]": {
  3105. "$type": "EditorEntityIconComponent",
  3106. "Id": 4455772334179006063
  3107. },
  3108. "Component_[7903212753103164289]": {
  3109. "$type": "EditorInspectorComponent",
  3110. "Id": 7903212753103164289,
  3111. "ComponentOrderEntryArray": [
  3112. {
  3113. "ComponentId": 11829233075139704453
  3114. },
  3115. {
  3116. "ComponentId": 8125251054274400256,
  3117. "SortIndex": 1
  3118. },
  3119. {
  3120. "ComponentId": 17736719688956315985,
  3121. "SortIndex": 2
  3122. },
  3123. {
  3124. "ComponentId": 12724016572532454792,
  3125. "SortIndex": 3
  3126. },
  3127. {
  3128. "ComponentId": 8184187118822500353,
  3129. "SortIndex": 4
  3130. },
  3131. {
  3132. "ComponentId": 11384954117619258935,
  3133. "SortIndex": 5
  3134. },
  3135. {
  3136. "ComponentId": 14564562245168579615,
  3137. "SortIndex": 6
  3138. },
  3139. {
  3140. "ComponentId": 9450029410653326667,
  3141. "SortIndex": 7
  3142. }
  3143. ]
  3144. },
  3145. "Component_[8125251054274400256]": {
  3146. "$type": "GenericComponentWrapper",
  3147. "Id": 8125251054274400256,
  3148. "m_template": {
  3149. "$type": "NetBindComponent"
  3150. }
  3151. },
  3152. "Component_[8184187118822500353]": {
  3153. "$type": "EditorMaterialComponent",
  3154. "Id": 8184187118822500353,
  3155. "Controller": {
  3156. "Configuration": {
  3157. "materials": {
  3158. "{}": {
  3159. "MaterialAsset": {
  3160. "assetId": {
  3161. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  3162. }
  3163. }
  3164. }
  3165. }
  3166. }
  3167. }
  3168. },
  3169. "Component_[9450029410653326667]": {
  3170. "$type": "GenericComponentWrapper",
  3171. "Id": 9450029410653326667,
  3172. "m_template": {
  3173. "$type": "Multiplayer::NetworkRigidBodyComponent"
  3174. }
  3175. },
  3176. "Component_[9452550092591643181]": {
  3177. "$type": "EditorLockComponent",
  3178. "Id": 9452550092591643181
  3179. }
  3180. }
  3181. },
  3182. "Entity_[583453444451]": {
  3183. "Id": "Entity_[583453444451]",
  3184. "Name": "Box2",
  3185. "Components": {
  3186. "Component_[11384954117619258935]": {
  3187. "$type": "EditorColliderComponent",
  3188. "Id": 11384954117619258935,
  3189. "ColliderConfiguration": {
  3190. "MaterialSlots": {
  3191. "Slots": [
  3192. {
  3193. "Name": "Entire object"
  3194. }
  3195. ]
  3196. }
  3197. },
  3198. "ShapeConfiguration": {
  3199. "ShapeType": 1
  3200. },
  3201. "DebugDrawSettings": {
  3202. "LocallyEnabled": false
  3203. }
  3204. },
  3205. "Component_[11829233075139704453]": {
  3206. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3207. "Id": 11829233075139704453,
  3208. "Parent Entity": "ContainerEntity",
  3209. "Transform Data": {
  3210. "Translate": [
  3211. -0.4683690071105957,
  3212. 1.8704166412353516,
  3213. 1.0648231506347656
  3214. ]
  3215. }
  3216. },
  3217. "Component_[12724016572532454792]": {
  3218. "$type": "AZ::Render::EditorMeshComponent",
  3219. "Id": 12724016572532454792,
  3220. "Controller": {
  3221. "Configuration": {
  3222. "ModelAsset": {
  3223. "assetId": {
  3224. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  3225. "subId": 285127096
  3226. },
  3227. "assetHint": "objects/cube.azmodel"
  3228. }
  3229. }
  3230. }
  3231. },
  3232. "Component_[14564562245168579615]": {
  3233. "$type": "EditorRigidBodyComponent",
  3234. "Id": 14564562245168579615,
  3235. "Configuration": {
  3236. "entityId": "",
  3237. "Mass": 999.9999389648438,
  3238. "Inertia tensor": [
  3239. 166.6666717529297,
  3240. 0.0,
  3241. 0.0,
  3242. 0.0,
  3243. 166.6666717529297,
  3244. 0.0,
  3245. 0.0,
  3246. 0.0,
  3247. 166.6666717529297
  3248. ]
  3249. }
  3250. },
  3251. "Component_[16056896985233530106]": {
  3252. "$type": "EditorDisabledCompositionComponent",
  3253. "Id": 16056896985233530106
  3254. },
  3255. "Component_[17648193282110847484]": {
  3256. "$type": "EditorOnlyEntityComponent",
  3257. "Id": 17648193282110847484
  3258. },
  3259. "Component_[17736719688956315985]": {
  3260. "$type": "GenericComponentWrapper",
  3261. "Id": 17736719688956315985,
  3262. "m_template": {
  3263. "$type": "Multiplayer::NetworkTransformComponent"
  3264. }
  3265. },
  3266. "Component_[1835082203551392000]": {
  3267. "$type": "EditorPendingCompositionComponent",
  3268. "Id": 1835082203551392000
  3269. },
  3270. "Component_[2164842339052442926]": {
  3271. "$type": "EditorEntitySortComponent",
  3272. "Id": 2164842339052442926
  3273. },
  3274. "Component_[3933618364732995768]": {
  3275. "$type": "EditorVisibilityComponent",
  3276. "Id": 3933618364732995768
  3277. },
  3278. "Component_[4455772334179006063]": {
  3279. "$type": "EditorEntityIconComponent",
  3280. "Id": 4455772334179006063
  3281. },
  3282. "Component_[7903212753103164289]": {
  3283. "$type": "EditorInspectorComponent",
  3284. "Id": 7903212753103164289,
  3285. "ComponentOrderEntryArray": [
  3286. {
  3287. "ComponentId": 11829233075139704453
  3288. },
  3289. {
  3290. "ComponentId": 8125251054274400256,
  3291. "SortIndex": 1
  3292. },
  3293. {
  3294. "ComponentId": 17736719688956315985,
  3295. "SortIndex": 2
  3296. },
  3297. {
  3298. "ComponentId": 12724016572532454792,
  3299. "SortIndex": 3
  3300. },
  3301. {
  3302. "ComponentId": 8184187118822500353,
  3303. "SortIndex": 4
  3304. },
  3305. {
  3306. "ComponentId": 11384954117619258935,
  3307. "SortIndex": 5
  3308. },
  3309. {
  3310. "ComponentId": 14564562245168579615,
  3311. "SortIndex": 6
  3312. },
  3313. {
  3314. "ComponentId": 9450029410653326667,
  3315. "SortIndex": 7
  3316. }
  3317. ]
  3318. },
  3319. "Component_[8125251054274400256]": {
  3320. "$type": "GenericComponentWrapper",
  3321. "Id": 8125251054274400256,
  3322. "m_template": {
  3323. "$type": "NetBindComponent"
  3324. }
  3325. },
  3326. "Component_[8184187118822500353]": {
  3327. "$type": "EditorMaterialComponent",
  3328. "Id": 8184187118822500353,
  3329. "Controller": {
  3330. "Configuration": {
  3331. "materials": {
  3332. "{}": {
  3333. "MaterialAsset": {
  3334. "assetId": {
  3335. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  3336. }
  3337. }
  3338. }
  3339. }
  3340. }
  3341. }
  3342. },
  3343. "Component_[9450029410653326667]": {
  3344. "$type": "GenericComponentWrapper",
  3345. "Id": 9450029410653326667,
  3346. "m_template": {
  3347. "$type": "Multiplayer::NetworkRigidBodyComponent"
  3348. }
  3349. },
  3350. "Component_[9452550092591643181]": {
  3351. "$type": "EditorLockComponent",
  3352. "Id": 9452550092591643181
  3353. }
  3354. }
  3355. },
  3356. "Entity_[587748411747]": {
  3357. "Id": "Entity_[587748411747]",
  3358. "Name": "Box4",
  3359. "Components": {
  3360. "Component_[11384954117619258935]": {
  3361. "$type": "EditorColliderComponent",
  3362. "Id": 11384954117619258935,
  3363. "ColliderConfiguration": {
  3364. "MaterialSlots": {
  3365. "Slots": [
  3366. {
  3367. "Name": "Entire object"
  3368. }
  3369. ]
  3370. }
  3371. },
  3372. "ShapeConfiguration": {
  3373. "ShapeType": 1
  3374. },
  3375. "DebugDrawSettings": {
  3376. "LocallyEnabled": false
  3377. }
  3378. },
  3379. "Component_[11829233075139704453]": {
  3380. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3381. "Id": 11829233075139704453,
  3382. "Parent Entity": "ContainerEntity",
  3383. "Transform Data": {
  3384. "Translate": [
  3385. -1.5954484939575195,
  3386. -1.725468635559082,
  3387. 3.1908931732177734
  3388. ]
  3389. }
  3390. },
  3391. "Component_[12724016572532454792]": {
  3392. "$type": "AZ::Render::EditorMeshComponent",
  3393. "Id": 12724016572532454792,
  3394. "Controller": {
  3395. "Configuration": {
  3396. "ModelAsset": {
  3397. "assetId": {
  3398. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  3399. "subId": 285127096
  3400. },
  3401. "assetHint": "objects/cube.azmodel"
  3402. }
  3403. }
  3404. }
  3405. },
  3406. "Component_[14564562245168579615]": {
  3407. "$type": "EditorRigidBodyComponent",
  3408. "Id": 14564562245168579615,
  3409. "Configuration": {
  3410. "entityId": "",
  3411. "Mass": 999.9999389648438,
  3412. "Inertia tensor": [
  3413. 166.6666717529297,
  3414. 0.0,
  3415. 0.0,
  3416. 0.0,
  3417. 166.6666717529297,
  3418. 0.0,
  3419. 0.0,
  3420. 0.0,
  3421. 166.6666717529297
  3422. ]
  3423. }
  3424. },
  3425. "Component_[16056896985233530106]": {
  3426. "$type": "EditorDisabledCompositionComponent",
  3427. "Id": 16056896985233530106
  3428. },
  3429. "Component_[17648193282110847484]": {
  3430. "$type": "EditorOnlyEntityComponent",
  3431. "Id": 17648193282110847484
  3432. },
  3433. "Component_[17736719688956315985]": {
  3434. "$type": "GenericComponentWrapper",
  3435. "Id": 17736719688956315985,
  3436. "m_template": {
  3437. "$type": "Multiplayer::NetworkTransformComponent"
  3438. }
  3439. },
  3440. "Component_[1835082203551392000]": {
  3441. "$type": "EditorPendingCompositionComponent",
  3442. "Id": 1835082203551392000
  3443. },
  3444. "Component_[2164842339052442926]": {
  3445. "$type": "EditorEntitySortComponent",
  3446. "Id": 2164842339052442926
  3447. },
  3448. "Component_[3933618364732995768]": {
  3449. "$type": "EditorVisibilityComponent",
  3450. "Id": 3933618364732995768
  3451. },
  3452. "Component_[4455772334179006063]": {
  3453. "$type": "EditorEntityIconComponent",
  3454. "Id": 4455772334179006063
  3455. },
  3456. "Component_[7903212753103164289]": {
  3457. "$type": "EditorInspectorComponent",
  3458. "Id": 7903212753103164289,
  3459. "ComponentOrderEntryArray": [
  3460. {
  3461. "ComponentId": 11829233075139704453
  3462. },
  3463. {
  3464. "ComponentId": 8125251054274400256,
  3465. "SortIndex": 1
  3466. },
  3467. {
  3468. "ComponentId": 17736719688956315985,
  3469. "SortIndex": 2
  3470. },
  3471. {
  3472. "ComponentId": 12724016572532454792,
  3473. "SortIndex": 3
  3474. },
  3475. {
  3476. "ComponentId": 8184187118822500353,
  3477. "SortIndex": 4
  3478. },
  3479. {
  3480. "ComponentId": 11384954117619258935,
  3481. "SortIndex": 5
  3482. },
  3483. {
  3484. "ComponentId": 14564562245168579615,
  3485. "SortIndex": 6
  3486. },
  3487. {
  3488. "ComponentId": 9450029410653326667,
  3489. "SortIndex": 7
  3490. }
  3491. ]
  3492. },
  3493. "Component_[8125251054274400256]": {
  3494. "$type": "GenericComponentWrapper",
  3495. "Id": 8125251054274400256,
  3496. "m_template": {
  3497. "$type": "NetBindComponent"
  3498. }
  3499. },
  3500. "Component_[8184187118822500353]": {
  3501. "$type": "EditorMaterialComponent",
  3502. "Id": 8184187118822500353,
  3503. "Controller": {
  3504. "Configuration": {
  3505. "materials": {
  3506. "{}": {
  3507. "MaterialAsset": {
  3508. "assetId": {
  3509. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  3510. }
  3511. }
  3512. }
  3513. }
  3514. }
  3515. }
  3516. },
  3517. "Component_[9450029410653326667]": {
  3518. "$type": "GenericComponentWrapper",
  3519. "Id": 9450029410653326667,
  3520. "m_template": {
  3521. "$type": "Multiplayer::NetworkRigidBodyComponent"
  3522. }
  3523. },
  3524. "Component_[9452550092591643181]": {
  3525. "$type": "EditorLockComponent",
  3526. "Id": 9452550092591643181
  3527. }
  3528. }
  3529. },
  3530. "Entity_[592043379043]": {
  3531. "Id": "Entity_[592043379043]",
  3532. "Name": "Box3",
  3533. "Components": {
  3534. "Component_[11384954117619258935]": {
  3535. "$type": "EditorColliderComponent",
  3536. "Id": 11384954117619258935,
  3537. "ColliderConfiguration": {
  3538. "MaterialSlots": {
  3539. "Slots": [
  3540. {
  3541. "Name": "Entire object"
  3542. }
  3543. ]
  3544. }
  3545. },
  3546. "ShapeConfiguration": {
  3547. "ShapeType": 1
  3548. },
  3549. "DebugDrawSettings": {
  3550. "LocallyEnabled": false
  3551. }
  3552. },
  3553. "Component_[11829233075139704453]": {
  3554. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3555. "Id": 11829233075139704453,
  3556. "Parent Entity": "ContainerEntity",
  3557. "Transform Data": {
  3558. "Translate": [
  3559. 0.6456379890441895,
  3560. -1.725468635559082,
  3561. 2.126070022583008
  3562. ]
  3563. }
  3564. },
  3565. "Component_[12724016572532454792]": {
  3566. "$type": "AZ::Render::EditorMeshComponent",
  3567. "Id": 12724016572532454792,
  3568. "Controller": {
  3569. "Configuration": {
  3570. "ModelAsset": {
  3571. "assetId": {
  3572. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  3573. "subId": 285127096
  3574. },
  3575. "assetHint": "objects/cube.azmodel"
  3576. }
  3577. }
  3578. }
  3579. },
  3580. "Component_[14564562245168579615]": {
  3581. "$type": "EditorRigidBodyComponent",
  3582. "Id": 14564562245168579615,
  3583. "Configuration": {
  3584. "entityId": "",
  3585. "Mass": 999.9999389648438,
  3586. "Inertia tensor": [
  3587. 166.6666717529297,
  3588. 0.0,
  3589. 0.0,
  3590. 0.0,
  3591. 166.6666717529297,
  3592. 0.0,
  3593. 0.0,
  3594. 0.0,
  3595. 166.6666717529297
  3596. ]
  3597. }
  3598. },
  3599. "Component_[16056896985233530106]": {
  3600. "$type": "EditorDisabledCompositionComponent",
  3601. "Id": 16056896985233530106
  3602. },
  3603. "Component_[17648193282110847484]": {
  3604. "$type": "EditorOnlyEntityComponent",
  3605. "Id": 17648193282110847484
  3606. },
  3607. "Component_[17736719688956315985]": {
  3608. "$type": "GenericComponentWrapper",
  3609. "Id": 17736719688956315985,
  3610. "m_template": {
  3611. "$type": "Multiplayer::NetworkTransformComponent"
  3612. }
  3613. },
  3614. "Component_[1835082203551392000]": {
  3615. "$type": "EditorPendingCompositionComponent",
  3616. "Id": 1835082203551392000
  3617. },
  3618. "Component_[2164842339052442926]": {
  3619. "$type": "EditorEntitySortComponent",
  3620. "Id": 2164842339052442926
  3621. },
  3622. "Component_[3933618364732995768]": {
  3623. "$type": "EditorVisibilityComponent",
  3624. "Id": 3933618364732995768
  3625. },
  3626. "Component_[4455772334179006063]": {
  3627. "$type": "EditorEntityIconComponent",
  3628. "Id": 4455772334179006063
  3629. },
  3630. "Component_[7903212753103164289]": {
  3631. "$type": "EditorInspectorComponent",
  3632. "Id": 7903212753103164289,
  3633. "ComponentOrderEntryArray": [
  3634. {
  3635. "ComponentId": 11829233075139704453
  3636. },
  3637. {
  3638. "ComponentId": 8125251054274400256,
  3639. "SortIndex": 1
  3640. },
  3641. {
  3642. "ComponentId": 17736719688956315985,
  3643. "SortIndex": 2
  3644. },
  3645. {
  3646. "ComponentId": 12724016572532454792,
  3647. "SortIndex": 3
  3648. },
  3649. {
  3650. "ComponentId": 8184187118822500353,
  3651. "SortIndex": 4
  3652. },
  3653. {
  3654. "ComponentId": 11384954117619258935,
  3655. "SortIndex": 5
  3656. },
  3657. {
  3658. "ComponentId": 14564562245168579615,
  3659. "SortIndex": 6
  3660. },
  3661. {
  3662. "ComponentId": 9450029410653326667,
  3663. "SortIndex": 7
  3664. }
  3665. ]
  3666. },
  3667. "Component_[8125251054274400256]": {
  3668. "$type": "GenericComponentWrapper",
  3669. "Id": 8125251054274400256,
  3670. "m_template": {
  3671. "$type": "NetBindComponent"
  3672. }
  3673. },
  3674. "Component_[8184187118822500353]": {
  3675. "$type": "EditorMaterialComponent",
  3676. "Id": 8184187118822500353,
  3677. "Controller": {
  3678. "Configuration": {
  3679. "materials": {
  3680. "{}": {
  3681. "MaterialAsset": {
  3682. "assetId": {
  3683. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  3684. }
  3685. }
  3686. }
  3687. }
  3688. }
  3689. }
  3690. },
  3691. "Component_[9450029410653326667]": {
  3692. "$type": "GenericComponentWrapper",
  3693. "Id": 9450029410653326667,
  3694. "m_template": {
  3695. "$type": "Multiplayer::NetworkRigidBodyComponent"
  3696. }
  3697. },
  3698. "Component_[9452550092591643181]": {
  3699. "$type": "EditorLockComponent",
  3700. "Id": 9452550092591643181
  3701. }
  3702. }
  3703. },
  3704. "Entity_[596338346339]": {
  3705. "Id": "Entity_[596338346339]",
  3706. "Name": "Box1",
  3707. "Components": {
  3708. "Component_[11384954117619258935]": {
  3709. "$type": "EditorColliderComponent",
  3710. "Id": 11384954117619258935,
  3711. "ColliderConfiguration": {
  3712. "MaterialSlots": {
  3713. "Slots": [
  3714. {
  3715. "Name": "Entire object"
  3716. }
  3717. ]
  3718. }
  3719. },
  3720. "ShapeConfiguration": {
  3721. "ShapeType": 1
  3722. },
  3723. "DebugDrawSettings": {
  3724. "LocallyEnabled": false
  3725. }
  3726. },
  3727. "Component_[11829233075139704453]": {
  3728. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3729. "Id": 11829233075139704453,
  3730. "Parent Entity": "ContainerEntity",
  3731. "Transform Data": {
  3732. "Translate": [
  3733. -0.4683690071105957,
  3734. 0.6112356185913086,
  3735. 0.0
  3736. ]
  3737. }
  3738. },
  3739. "Component_[12724016572532454792]": {
  3740. "$type": "AZ::Render::EditorMeshComponent",
  3741. "Id": 12724016572532454792,
  3742. "Controller": {
  3743. "Configuration": {
  3744. "ModelAsset": {
  3745. "assetId": {
  3746. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  3747. "subId": 285127096
  3748. },
  3749. "assetHint": "objects/cube.azmodel"
  3750. }
  3751. }
  3752. }
  3753. },
  3754. "Component_[14564562245168579615]": {
  3755. "$type": "EditorRigidBodyComponent",
  3756. "Id": 14564562245168579615,
  3757. "Configuration": {
  3758. "entityId": "",
  3759. "Mass": 999.9999389648438,
  3760. "Inertia tensor": [
  3761. 166.6666717529297,
  3762. 0.0,
  3763. 0.0,
  3764. 0.0,
  3765. 166.6666717529297,
  3766. 0.0,
  3767. 0.0,
  3768. 0.0,
  3769. 166.6666717529297
  3770. ],
  3771. "Include All Shapes In Mass": true,
  3772. "Debug Draw Center of Mass": true
  3773. }
  3774. },
  3775. "Component_[16056896985233530106]": {
  3776. "$type": "EditorDisabledCompositionComponent",
  3777. "Id": 16056896985233530106
  3778. },
  3779. "Component_[17648193282110847484]": {
  3780. "$type": "EditorOnlyEntityComponent",
  3781. "Id": 17648193282110847484
  3782. },
  3783. "Component_[17736719688956315985]": {
  3784. "$type": "GenericComponentWrapper",
  3785. "Id": 17736719688956315985,
  3786. "m_template": {
  3787. "$type": "Multiplayer::NetworkTransformComponent"
  3788. }
  3789. },
  3790. "Component_[1835082203551392000]": {
  3791. "$type": "EditorPendingCompositionComponent",
  3792. "Id": 1835082203551392000
  3793. },
  3794. "Component_[2164842339052442926]": {
  3795. "$type": "EditorEntitySortComponent",
  3796. "Id": 2164842339052442926
  3797. },
  3798. "Component_[3933618364732995768]": {
  3799. "$type": "EditorVisibilityComponent",
  3800. "Id": 3933618364732995768
  3801. },
  3802. "Component_[4455772334179006063]": {
  3803. "$type": "EditorEntityIconComponent",
  3804. "Id": 4455772334179006063
  3805. },
  3806. "Component_[7903212753103164289]": {
  3807. "$type": "EditorInspectorComponent",
  3808. "Id": 7903212753103164289,
  3809. "ComponentOrderEntryArray": [
  3810. {
  3811. "ComponentId": 11829233075139704453
  3812. },
  3813. {
  3814. "ComponentId": 8125251054274400256,
  3815. "SortIndex": 1
  3816. },
  3817. {
  3818. "ComponentId": 17736719688956315985,
  3819. "SortIndex": 2
  3820. },
  3821. {
  3822. "ComponentId": 12724016572532454792,
  3823. "SortIndex": 3
  3824. },
  3825. {
  3826. "ComponentId": 8184187118822500353,
  3827. "SortIndex": 4
  3828. },
  3829. {
  3830. "ComponentId": 11384954117619258935,
  3831. "SortIndex": 5
  3832. },
  3833. {
  3834. "ComponentId": 14564562245168579615,
  3835. "SortIndex": 6
  3836. },
  3837. {
  3838. "ComponentId": 9450029410653326667,
  3839. "SortIndex": 7
  3840. }
  3841. ]
  3842. },
  3843. "Component_[8125251054274400256]": {
  3844. "$type": "GenericComponentWrapper",
  3845. "Id": 8125251054274400256,
  3846. "m_template": {
  3847. "$type": "NetBindComponent"
  3848. }
  3849. },
  3850. "Component_[8184187118822500353]": {
  3851. "$type": "EditorMaterialComponent",
  3852. "Id": 8184187118822500353,
  3853. "Controller": {
  3854. "Configuration": {
  3855. "materials": {
  3856. "{}": {
  3857. "MaterialAsset": {
  3858. "assetId": {
  3859. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  3860. }
  3861. }
  3862. }
  3863. }
  3864. }
  3865. }
  3866. },
  3867. "Component_[9450029410653326667]": {
  3868. "$type": "GenericComponentWrapper",
  3869. "Id": 9450029410653326667,
  3870. "m_template": {
  3871. "$type": "Multiplayer::NetworkRigidBodyComponent"
  3872. }
  3873. },
  3874. "Component_[9452550092591643181]": {
  3875. "$type": "EditorLockComponent",
  3876. "Id": 9452550092591643181
  3877. }
  3878. }
  3879. },
  3880. "Entity_[600633313635]": {
  3881. "Id": "Entity_[600633313635]",
  3882. "Name": "Box4",
  3883. "Components": {
  3884. "Component_[11384954117619258935]": {
  3885. "$type": "EditorColliderComponent",
  3886. "Id": 11384954117619258935,
  3887. "ColliderConfiguration": {
  3888. "MaterialSlots": {
  3889. "Slots": [
  3890. {
  3891. "Name": "Entire object"
  3892. }
  3893. ]
  3894. }
  3895. },
  3896. "ShapeConfiguration": {
  3897. "ShapeType": 1
  3898. },
  3899. "DebugDrawSettings": {
  3900. "LocallyEnabled": false
  3901. }
  3902. },
  3903. "Component_[11829233075139704453]": {
  3904. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3905. "Id": 11829233075139704453,
  3906. "Parent Entity": "ContainerEntity",
  3907. "Transform Data": {
  3908. "Translate": [
  3909. 1.7793126106262207,
  3910. -1.725468635559082,
  3911. 3.1908931732177734
  3912. ]
  3913. }
  3914. },
  3915. "Component_[12724016572532454792]": {
  3916. "$type": "AZ::Render::EditorMeshComponent",
  3917. "Id": 12724016572532454792,
  3918. "Controller": {
  3919. "Configuration": {
  3920. "ModelAsset": {
  3921. "assetId": {
  3922. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  3923. "subId": 285127096
  3924. },
  3925. "assetHint": "objects/cube.azmodel"
  3926. }
  3927. }
  3928. }
  3929. },
  3930. "Component_[14564562245168579615]": {
  3931. "$type": "EditorRigidBodyComponent",
  3932. "Id": 14564562245168579615,
  3933. "Configuration": {
  3934. "entityId": "",
  3935. "Mass": 999.9999389648438,
  3936. "Inertia tensor": [
  3937. 166.6666717529297,
  3938. 0.0,
  3939. 0.0,
  3940. 0.0,
  3941. 166.6666717529297,
  3942. 0.0,
  3943. 0.0,
  3944. 0.0,
  3945. 166.6666717529297
  3946. ]
  3947. }
  3948. },
  3949. "Component_[16056896985233530106]": {
  3950. "$type": "EditorDisabledCompositionComponent",
  3951. "Id": 16056896985233530106
  3952. },
  3953. "Component_[17648193282110847484]": {
  3954. "$type": "EditorOnlyEntityComponent",
  3955. "Id": 17648193282110847484
  3956. },
  3957. "Component_[17736719688956315985]": {
  3958. "$type": "GenericComponentWrapper",
  3959. "Id": 17736719688956315985,
  3960. "m_template": {
  3961. "$type": "Multiplayer::NetworkTransformComponent"
  3962. }
  3963. },
  3964. "Component_[1835082203551392000]": {
  3965. "$type": "EditorPendingCompositionComponent",
  3966. "Id": 1835082203551392000
  3967. },
  3968. "Component_[2164842339052442926]": {
  3969. "$type": "EditorEntitySortComponent",
  3970. "Id": 2164842339052442926
  3971. },
  3972. "Component_[3933618364732995768]": {
  3973. "$type": "EditorVisibilityComponent",
  3974. "Id": 3933618364732995768
  3975. },
  3976. "Component_[4455772334179006063]": {
  3977. "$type": "EditorEntityIconComponent",
  3978. "Id": 4455772334179006063
  3979. },
  3980. "Component_[7903212753103164289]": {
  3981. "$type": "EditorInspectorComponent",
  3982. "Id": 7903212753103164289,
  3983. "ComponentOrderEntryArray": [
  3984. {
  3985. "ComponentId": 11829233075139704453
  3986. },
  3987. {
  3988. "ComponentId": 8125251054274400256,
  3989. "SortIndex": 1
  3990. },
  3991. {
  3992. "ComponentId": 17736719688956315985,
  3993. "SortIndex": 2
  3994. },
  3995. {
  3996. "ComponentId": 12724016572532454792,
  3997. "SortIndex": 3
  3998. },
  3999. {
  4000. "ComponentId": 8184187118822500353,
  4001. "SortIndex": 4
  4002. },
  4003. {
  4004. "ComponentId": 11384954117619258935,
  4005. "SortIndex": 5
  4006. },
  4007. {
  4008. "ComponentId": 14564562245168579615,
  4009. "SortIndex": 6
  4010. },
  4011. {
  4012. "ComponentId": 9450029410653326667,
  4013. "SortIndex": 7
  4014. }
  4015. ]
  4016. },
  4017. "Component_[8125251054274400256]": {
  4018. "$type": "GenericComponentWrapper",
  4019. "Id": 8125251054274400256,
  4020. "m_template": {
  4021. "$type": "NetBindComponent"
  4022. }
  4023. },
  4024. "Component_[8184187118822500353]": {
  4025. "$type": "EditorMaterialComponent",
  4026. "Id": 8184187118822500353,
  4027. "Controller": {
  4028. "Configuration": {
  4029. "materials": {
  4030. "{}": {
  4031. "MaterialAsset": {
  4032. "assetId": {
  4033. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  4034. },
  4035. "assetHint": "crate/crate_opaque_mat.azmaterial"
  4036. }
  4037. }
  4038. }
  4039. }
  4040. }
  4041. },
  4042. "Component_[9450029410653326667]": {
  4043. "$type": "GenericComponentWrapper",
  4044. "Id": 9450029410653326667,
  4045. "m_template": {
  4046. "$type": "Multiplayer::NetworkRigidBodyComponent"
  4047. }
  4048. },
  4049. "Component_[9452550092591643181]": {
  4050. "$type": "EditorLockComponent",
  4051. "Id": 9452550092591643181
  4052. }
  4053. }
  4054. },
  4055. "Entity_[604928280931]": {
  4056. "Id": "Entity_[604928280931]",
  4057. "Name": "Box3",
  4058. "Components": {
  4059. "Component_[11384954117619258935]": {
  4060. "$type": "EditorColliderComponent",
  4061. "Id": 11384954117619258935,
  4062. "ColliderConfiguration": {
  4063. "MaterialSlots": {
  4064. "Slots": [
  4065. {
  4066. "Name": "Entire object"
  4067. }
  4068. ]
  4069. }
  4070. },
  4071. "ShapeConfiguration": {
  4072. "ShapeType": 1
  4073. },
  4074. "DebugDrawSettings": {
  4075. "LocallyEnabled": false
  4076. }
  4077. },
  4078. "Component_[11829233075139704453]": {
  4079. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4080. "Id": 11829233075139704453,
  4081. "Parent Entity": "ContainerEntity",
  4082. "Transform Data": {
  4083. "Translate": [
  4084. -1.5954484939575195,
  4085. -1.725468635559082,
  4086. 2.126070022583008
  4087. ]
  4088. }
  4089. },
  4090. "Component_[12724016572532454792]": {
  4091. "$type": "AZ::Render::EditorMeshComponent",
  4092. "Id": 12724016572532454792,
  4093. "Controller": {
  4094. "Configuration": {
  4095. "ModelAsset": {
  4096. "assetId": {
  4097. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  4098. "subId": 285127096
  4099. },
  4100. "assetHint": "objects/cube.azmodel"
  4101. }
  4102. }
  4103. }
  4104. },
  4105. "Component_[14564562245168579615]": {
  4106. "$type": "EditorRigidBodyComponent",
  4107. "Id": 14564562245168579615,
  4108. "Configuration": {
  4109. "entityId": "",
  4110. "Mass": 999.9999389648438,
  4111. "Inertia tensor": [
  4112. 166.6666717529297,
  4113. 0.0,
  4114. 0.0,
  4115. 0.0,
  4116. 166.6666717529297,
  4117. 0.0,
  4118. 0.0,
  4119. 0.0,
  4120. 166.6666717529297
  4121. ]
  4122. }
  4123. },
  4124. "Component_[16056896985233530106]": {
  4125. "$type": "EditorDisabledCompositionComponent",
  4126. "Id": 16056896985233530106
  4127. },
  4128. "Component_[17648193282110847484]": {
  4129. "$type": "EditorOnlyEntityComponent",
  4130. "Id": 17648193282110847484
  4131. },
  4132. "Component_[17736719688956315985]": {
  4133. "$type": "GenericComponentWrapper",
  4134. "Id": 17736719688956315985,
  4135. "m_template": {
  4136. "$type": "Multiplayer::NetworkTransformComponent"
  4137. }
  4138. },
  4139. "Component_[1835082203551392000]": {
  4140. "$type": "EditorPendingCompositionComponent",
  4141. "Id": 1835082203551392000
  4142. },
  4143. "Component_[2164842339052442926]": {
  4144. "$type": "EditorEntitySortComponent",
  4145. "Id": 2164842339052442926
  4146. },
  4147. "Component_[3933618364732995768]": {
  4148. "$type": "EditorVisibilityComponent",
  4149. "Id": 3933618364732995768
  4150. },
  4151. "Component_[4455772334179006063]": {
  4152. "$type": "EditorEntityIconComponent",
  4153. "Id": 4455772334179006063
  4154. },
  4155. "Component_[7903212753103164289]": {
  4156. "$type": "EditorInspectorComponent",
  4157. "Id": 7903212753103164289,
  4158. "ComponentOrderEntryArray": [
  4159. {
  4160. "ComponentId": 11829233075139704453
  4161. },
  4162. {
  4163. "ComponentId": 8125251054274400256,
  4164. "SortIndex": 1
  4165. },
  4166. {
  4167. "ComponentId": 17736719688956315985,
  4168. "SortIndex": 2
  4169. },
  4170. {
  4171. "ComponentId": 12724016572532454792,
  4172. "SortIndex": 3
  4173. },
  4174. {
  4175. "ComponentId": 8184187118822500353,
  4176. "SortIndex": 4
  4177. },
  4178. {
  4179. "ComponentId": 11384954117619258935,
  4180. "SortIndex": 5
  4181. },
  4182. {
  4183. "ComponentId": 14564562245168579615,
  4184. "SortIndex": 6
  4185. },
  4186. {
  4187. "ComponentId": 9450029410653326667,
  4188. "SortIndex": 7
  4189. }
  4190. ]
  4191. },
  4192. "Component_[8125251054274400256]": {
  4193. "$type": "GenericComponentWrapper",
  4194. "Id": 8125251054274400256,
  4195. "m_template": {
  4196. "$type": "NetBindComponent"
  4197. }
  4198. },
  4199. "Component_[8184187118822500353]": {
  4200. "$type": "EditorMaterialComponent",
  4201. "Id": 8184187118822500353,
  4202. "Controller": {
  4203. "Configuration": {
  4204. "materials": {
  4205. "{}": {
  4206. "MaterialAsset": {
  4207. "assetId": {
  4208. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  4209. }
  4210. }
  4211. }
  4212. }
  4213. }
  4214. }
  4215. },
  4216. "Component_[9450029410653326667]": {
  4217. "$type": "GenericComponentWrapper",
  4218. "Id": 9450029410653326667,
  4219. "m_template": {
  4220. "$type": "Multiplayer::NetworkRigidBodyComponent"
  4221. }
  4222. },
  4223. "Component_[9452550092591643181]": {
  4224. "$type": "EditorLockComponent",
  4225. "Id": 9452550092591643181
  4226. }
  4227. }
  4228. },
  4229. "Entity_[609223248227]": {
  4230. "Id": "Entity_[609223248227]",
  4231. "Name": "Box1",
  4232. "Components": {
  4233. "Component_[11384954117619258935]": {
  4234. "$type": "EditorColliderComponent",
  4235. "Id": 11384954117619258935,
  4236. "ColliderConfiguration": {
  4237. "MaterialSlots": {
  4238. "Slots": [
  4239. {
  4240. "Name": "Entire object"
  4241. }
  4242. ]
  4243. }
  4244. },
  4245. "ShapeConfiguration": {
  4246. "ShapeType": 1
  4247. },
  4248. "DebugDrawSettings": {
  4249. "LocallyEnabled": false
  4250. }
  4251. },
  4252. "Component_[11829233075139704453]": {
  4253. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4254. "Id": 11829233075139704453,
  4255. "Parent Entity": "ContainerEntity",
  4256. "Transform Data": {
  4257. "Translate": [
  4258. 0.6456379890441895,
  4259. -1.725468635559082,
  4260. 0.0
  4261. ]
  4262. }
  4263. },
  4264. "Component_[12724016572532454792]": {
  4265. "$type": "AZ::Render::EditorMeshComponent",
  4266. "Id": 12724016572532454792,
  4267. "Controller": {
  4268. "Configuration": {
  4269. "ModelAsset": {
  4270. "assetId": {
  4271. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  4272. "subId": 285127096
  4273. },
  4274. "assetHint": "objects/cube.azmodel"
  4275. }
  4276. }
  4277. }
  4278. },
  4279. "Component_[14564562245168579615]": {
  4280. "$type": "EditorRigidBodyComponent",
  4281. "Id": 14564562245168579615,
  4282. "Configuration": {
  4283. "entityId": "",
  4284. "Mass": 999.9999389648438,
  4285. "Inertia tensor": [
  4286. 166.6666717529297,
  4287. 0.0,
  4288. 0.0,
  4289. 0.0,
  4290. 166.6666717529297,
  4291. 0.0,
  4292. 0.0,
  4293. 0.0,
  4294. 166.6666717529297
  4295. ]
  4296. }
  4297. },
  4298. "Component_[16056896985233530106]": {
  4299. "$type": "EditorDisabledCompositionComponent",
  4300. "Id": 16056896985233530106
  4301. },
  4302. "Component_[17648193282110847484]": {
  4303. "$type": "EditorOnlyEntityComponent",
  4304. "Id": 17648193282110847484
  4305. },
  4306. "Component_[17736719688956315985]": {
  4307. "$type": "GenericComponentWrapper",
  4308. "Id": 17736719688956315985,
  4309. "m_template": {
  4310. "$type": "Multiplayer::NetworkTransformComponent"
  4311. }
  4312. },
  4313. "Component_[1835082203551392000]": {
  4314. "$type": "EditorPendingCompositionComponent",
  4315. "Id": 1835082203551392000
  4316. },
  4317. "Component_[2164842339052442926]": {
  4318. "$type": "EditorEntitySortComponent",
  4319. "Id": 2164842339052442926
  4320. },
  4321. "Component_[3933618364732995768]": {
  4322. "$type": "EditorVisibilityComponent",
  4323. "Id": 3933618364732995768
  4324. },
  4325. "Component_[4455772334179006063]": {
  4326. "$type": "EditorEntityIconComponent",
  4327. "Id": 4455772334179006063
  4328. },
  4329. "Component_[7903212753103164289]": {
  4330. "$type": "EditorInspectorComponent",
  4331. "Id": 7903212753103164289,
  4332. "ComponentOrderEntryArray": [
  4333. {
  4334. "ComponentId": 11829233075139704453
  4335. },
  4336. {
  4337. "ComponentId": 8125251054274400256,
  4338. "SortIndex": 1
  4339. },
  4340. {
  4341. "ComponentId": 17736719688956315985,
  4342. "SortIndex": 2
  4343. },
  4344. {
  4345. "ComponentId": 12724016572532454792,
  4346. "SortIndex": 3
  4347. },
  4348. {
  4349. "ComponentId": 8184187118822500353,
  4350. "SortIndex": 4
  4351. },
  4352. {
  4353. "ComponentId": 11384954117619258935,
  4354. "SortIndex": 5
  4355. },
  4356. {
  4357. "ComponentId": 14564562245168579615,
  4358. "SortIndex": 6
  4359. },
  4360. {
  4361. "ComponentId": 9450029410653326667,
  4362. "SortIndex": 7
  4363. }
  4364. ]
  4365. },
  4366. "Component_[8125251054274400256]": {
  4367. "$type": "GenericComponentWrapper",
  4368. "Id": 8125251054274400256,
  4369. "m_template": {
  4370. "$type": "NetBindComponent"
  4371. }
  4372. },
  4373. "Component_[8184187118822500353]": {
  4374. "$type": "EditorMaterialComponent",
  4375. "Id": 8184187118822500353,
  4376. "Controller": {
  4377. "Configuration": {
  4378. "materials": {
  4379. "{}": {
  4380. "MaterialAsset": {
  4381. "assetId": {
  4382. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  4383. }
  4384. }
  4385. }
  4386. }
  4387. }
  4388. }
  4389. },
  4390. "Component_[9450029410653326667]": {
  4391. "$type": "GenericComponentWrapper",
  4392. "Id": 9450029410653326667,
  4393. "m_template": {
  4394. "$type": "Multiplayer::NetworkRigidBodyComponent"
  4395. }
  4396. },
  4397. "Component_[9452550092591643181]": {
  4398. "$type": "EditorLockComponent",
  4399. "Id": 9452550092591643181
  4400. }
  4401. }
  4402. },
  4403. "Entity_[613518215523]": {
  4404. "Id": "Entity_[613518215523]",
  4405. "Name": "Box1",
  4406. "Components": {
  4407. "Component_[11384954117619258935]": {
  4408. "$type": "EditorColliderComponent",
  4409. "Id": 11384954117619258935,
  4410. "ColliderConfiguration": {
  4411. "MaterialSlots": {
  4412. "Slots": [
  4413. {
  4414. "Name": "Entire object"
  4415. }
  4416. ]
  4417. }
  4418. },
  4419. "ShapeConfiguration": {
  4420. "ShapeType": 1
  4421. },
  4422. "DebugDrawSettings": {
  4423. "LocallyEnabled": false
  4424. }
  4425. },
  4426. "Component_[11829233075139704453]": {
  4427. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4428. "Id": 11829233075139704453,
  4429. "Parent Entity": "ContainerEntity",
  4430. "Transform Data": {
  4431. "Translate": [
  4432. 0.6456379890441895,
  4433. -0.6137781143188477,
  4434. 0.0
  4435. ]
  4436. }
  4437. },
  4438. "Component_[12724016572532454792]": {
  4439. "$type": "AZ::Render::EditorMeshComponent",
  4440. "Id": 12724016572532454792,
  4441. "Controller": {
  4442. "Configuration": {
  4443. "ModelAsset": {
  4444. "assetId": {
  4445. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  4446. "subId": 285127096
  4447. },
  4448. "assetHint": "objects/cube.azmodel"
  4449. }
  4450. }
  4451. }
  4452. },
  4453. "Component_[14564562245168579615]": {
  4454. "$type": "EditorRigidBodyComponent",
  4455. "Id": 14564562245168579615,
  4456. "Configuration": {
  4457. "entityId": "",
  4458. "Mass": 999.9999389648438,
  4459. "Inertia tensor": [
  4460. 166.6666717529297,
  4461. 0.0,
  4462. 0.0,
  4463. 0.0,
  4464. 166.6666717529297,
  4465. 0.0,
  4466. 0.0,
  4467. 0.0,
  4468. 166.6666717529297
  4469. ]
  4470. }
  4471. },
  4472. "Component_[16056896985233530106]": {
  4473. "$type": "EditorDisabledCompositionComponent",
  4474. "Id": 16056896985233530106
  4475. },
  4476. "Component_[17648193282110847484]": {
  4477. "$type": "EditorOnlyEntityComponent",
  4478. "Id": 17648193282110847484
  4479. },
  4480. "Component_[17736719688956315985]": {
  4481. "$type": "GenericComponentWrapper",
  4482. "Id": 17736719688956315985,
  4483. "m_template": {
  4484. "$type": "Multiplayer::NetworkTransformComponent"
  4485. }
  4486. },
  4487. "Component_[1835082203551392000]": {
  4488. "$type": "EditorPendingCompositionComponent",
  4489. "Id": 1835082203551392000
  4490. },
  4491. "Component_[2164842339052442926]": {
  4492. "$type": "EditorEntitySortComponent",
  4493. "Id": 2164842339052442926
  4494. },
  4495. "Component_[3933618364732995768]": {
  4496. "$type": "EditorVisibilityComponent",
  4497. "Id": 3933618364732995768
  4498. },
  4499. "Component_[4455772334179006063]": {
  4500. "$type": "EditorEntityIconComponent",
  4501. "Id": 4455772334179006063
  4502. },
  4503. "Component_[7903212753103164289]": {
  4504. "$type": "EditorInspectorComponent",
  4505. "Id": 7903212753103164289,
  4506. "ComponentOrderEntryArray": [
  4507. {
  4508. "ComponentId": 11829233075139704453
  4509. },
  4510. {
  4511. "ComponentId": 8125251054274400256,
  4512. "SortIndex": 1
  4513. },
  4514. {
  4515. "ComponentId": 17736719688956315985,
  4516. "SortIndex": 2
  4517. },
  4518. {
  4519. "ComponentId": 12724016572532454792,
  4520. "SortIndex": 3
  4521. },
  4522. {
  4523. "ComponentId": 8184187118822500353,
  4524. "SortIndex": 4
  4525. },
  4526. {
  4527. "ComponentId": 11384954117619258935,
  4528. "SortIndex": 5
  4529. },
  4530. {
  4531. "ComponentId": 14564562245168579615,
  4532. "SortIndex": 6
  4533. },
  4534. {
  4535. "ComponentId": 9450029410653326667,
  4536. "SortIndex": 7
  4537. }
  4538. ]
  4539. },
  4540. "Component_[8125251054274400256]": {
  4541. "$type": "GenericComponentWrapper",
  4542. "Id": 8125251054274400256,
  4543. "m_template": {
  4544. "$type": "NetBindComponent"
  4545. }
  4546. },
  4547. "Component_[8184187118822500353]": {
  4548. "$type": "EditorMaterialComponent",
  4549. "Id": 8184187118822500353,
  4550. "Controller": {
  4551. "Configuration": {
  4552. "materials": {
  4553. "{}": {
  4554. "MaterialAsset": {
  4555. "assetId": {
  4556. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  4557. }
  4558. }
  4559. }
  4560. }
  4561. }
  4562. }
  4563. },
  4564. "Component_[9450029410653326667]": {
  4565. "$type": "GenericComponentWrapper",
  4566. "Id": 9450029410653326667,
  4567. "m_template": {
  4568. "$type": "Multiplayer::NetworkRigidBodyComponent"
  4569. }
  4570. },
  4571. "Component_[9452550092591643181]": {
  4572. "$type": "EditorLockComponent",
  4573. "Id": 9452550092591643181
  4574. }
  4575. }
  4576. },
  4577. "Entity_[617813182819]": {
  4578. "Id": "Entity_[617813182819]",
  4579. "Name": "Box2",
  4580. "Components": {
  4581. "Component_[11384954117619258935]": {
  4582. "$type": "EditorColliderComponent",
  4583. "Id": 11384954117619258935,
  4584. "ColliderConfiguration": {
  4585. "MaterialSlots": {
  4586. "Slots": [
  4587. {
  4588. "Name": "Entire object"
  4589. }
  4590. ]
  4591. }
  4592. },
  4593. "ShapeConfiguration": {
  4594. "ShapeType": 1
  4595. },
  4596. "DebugDrawSettings": {
  4597. "LocallyEnabled": false
  4598. }
  4599. },
  4600. "Component_[11829233075139704453]": {
  4601. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4602. "Id": 11829233075139704453,
  4603. "Parent Entity": "ContainerEntity",
  4604. "Transform Data": {
  4605. "Translate": [
  4606. 0.6456379890441895,
  4607. -0.6137781143188477,
  4608. 1.0648231506347656
  4609. ]
  4610. }
  4611. },
  4612. "Component_[12724016572532454792]": {
  4613. "$type": "AZ::Render::EditorMeshComponent",
  4614. "Id": 12724016572532454792,
  4615. "Controller": {
  4616. "Configuration": {
  4617. "ModelAsset": {
  4618. "assetId": {
  4619. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  4620. "subId": 285127096
  4621. },
  4622. "assetHint": "objects/cube.azmodel"
  4623. }
  4624. }
  4625. }
  4626. },
  4627. "Component_[14564562245168579615]": {
  4628. "$type": "EditorRigidBodyComponent",
  4629. "Id": 14564562245168579615,
  4630. "Configuration": {
  4631. "entityId": "",
  4632. "Mass": 999.9999389648438,
  4633. "Inertia tensor": [
  4634. 166.6666717529297,
  4635. 0.0,
  4636. 0.0,
  4637. 0.0,
  4638. 166.6666717529297,
  4639. 0.0,
  4640. 0.0,
  4641. 0.0,
  4642. 166.6666717529297
  4643. ]
  4644. }
  4645. },
  4646. "Component_[16056896985233530106]": {
  4647. "$type": "EditorDisabledCompositionComponent",
  4648. "Id": 16056896985233530106
  4649. },
  4650. "Component_[17648193282110847484]": {
  4651. "$type": "EditorOnlyEntityComponent",
  4652. "Id": 17648193282110847484
  4653. },
  4654. "Component_[17736719688956315985]": {
  4655. "$type": "GenericComponentWrapper",
  4656. "Id": 17736719688956315985,
  4657. "m_template": {
  4658. "$type": "Multiplayer::NetworkTransformComponent"
  4659. }
  4660. },
  4661. "Component_[1835082203551392000]": {
  4662. "$type": "EditorPendingCompositionComponent",
  4663. "Id": 1835082203551392000
  4664. },
  4665. "Component_[2164842339052442926]": {
  4666. "$type": "EditorEntitySortComponent",
  4667. "Id": 2164842339052442926
  4668. },
  4669. "Component_[3933618364732995768]": {
  4670. "$type": "EditorVisibilityComponent",
  4671. "Id": 3933618364732995768
  4672. },
  4673. "Component_[4455772334179006063]": {
  4674. "$type": "EditorEntityIconComponent",
  4675. "Id": 4455772334179006063
  4676. },
  4677. "Component_[7903212753103164289]": {
  4678. "$type": "EditorInspectorComponent",
  4679. "Id": 7903212753103164289,
  4680. "ComponentOrderEntryArray": [
  4681. {
  4682. "ComponentId": 11829233075139704453
  4683. },
  4684. {
  4685. "ComponentId": 8125251054274400256,
  4686. "SortIndex": 1
  4687. },
  4688. {
  4689. "ComponentId": 17736719688956315985,
  4690. "SortIndex": 2
  4691. },
  4692. {
  4693. "ComponentId": 12724016572532454792,
  4694. "SortIndex": 3
  4695. },
  4696. {
  4697. "ComponentId": 8184187118822500353,
  4698. "SortIndex": 4
  4699. },
  4700. {
  4701. "ComponentId": 11384954117619258935,
  4702. "SortIndex": 5
  4703. },
  4704. {
  4705. "ComponentId": 14564562245168579615,
  4706. "SortIndex": 6
  4707. },
  4708. {
  4709. "ComponentId": 9450029410653326667,
  4710. "SortIndex": 7
  4711. }
  4712. ]
  4713. },
  4714. "Component_[8125251054274400256]": {
  4715. "$type": "GenericComponentWrapper",
  4716. "Id": 8125251054274400256,
  4717. "m_template": {
  4718. "$type": "NetBindComponent"
  4719. }
  4720. },
  4721. "Component_[8184187118822500353]": {
  4722. "$type": "EditorMaterialComponent",
  4723. "Id": 8184187118822500353,
  4724. "Controller": {
  4725. "Configuration": {
  4726. "materials": {
  4727. "{}": {
  4728. "MaterialAsset": {
  4729. "assetId": {
  4730. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  4731. }
  4732. }
  4733. }
  4734. }
  4735. }
  4736. }
  4737. },
  4738. "Component_[9450029410653326667]": {
  4739. "$type": "GenericComponentWrapper",
  4740. "Id": 9450029410653326667,
  4741. "m_template": {
  4742. "$type": "Multiplayer::NetworkRigidBodyComponent"
  4743. }
  4744. },
  4745. "Component_[9452550092591643181]": {
  4746. "$type": "EditorLockComponent",
  4747. "Id": 9452550092591643181
  4748. }
  4749. }
  4750. },
  4751. "Entity_[622108150115]": {
  4752. "Id": "Entity_[622108150115]",
  4753. "Name": "Box2",
  4754. "Components": {
  4755. "Component_[11384954117619258935]": {
  4756. "$type": "EditorColliderComponent",
  4757. "Id": 11384954117619258935,
  4758. "ColliderConfiguration": {
  4759. "MaterialSlots": {
  4760. "Slots": [
  4761. {
  4762. "Name": "Entire object"
  4763. }
  4764. ]
  4765. }
  4766. },
  4767. "ShapeConfiguration": {
  4768. "ShapeType": 1
  4769. },
  4770. "DebugDrawSettings": {
  4771. "LocallyEnabled": false
  4772. }
  4773. },
  4774. "Component_[11829233075139704453]": {
  4775. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4776. "Id": 11829233075139704453,
  4777. "Parent Entity": "ContainerEntity",
  4778. "Transform Data": {
  4779. "Translate": [
  4780. -1.5954484939575195,
  4781. -1.725468635559082,
  4782. 1.0648231506347656
  4783. ]
  4784. }
  4785. },
  4786. "Component_[12724016572532454792]": {
  4787. "$type": "AZ::Render::EditorMeshComponent",
  4788. "Id": 12724016572532454792,
  4789. "Controller": {
  4790. "Configuration": {
  4791. "ModelAsset": {
  4792. "assetId": {
  4793. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  4794. "subId": 285127096
  4795. },
  4796. "assetHint": "objects/cube.azmodel"
  4797. }
  4798. }
  4799. }
  4800. },
  4801. "Component_[14564562245168579615]": {
  4802. "$type": "EditorRigidBodyComponent",
  4803. "Id": 14564562245168579615,
  4804. "Configuration": {
  4805. "entityId": "",
  4806. "Mass": 999.9999389648438,
  4807. "Inertia tensor": [
  4808. 166.6666717529297,
  4809. 0.0,
  4810. 0.0,
  4811. 0.0,
  4812. 166.6666717529297,
  4813. 0.0,
  4814. 0.0,
  4815. 0.0,
  4816. 166.6666717529297
  4817. ]
  4818. }
  4819. },
  4820. "Component_[16056896985233530106]": {
  4821. "$type": "EditorDisabledCompositionComponent",
  4822. "Id": 16056896985233530106
  4823. },
  4824. "Component_[17648193282110847484]": {
  4825. "$type": "EditorOnlyEntityComponent",
  4826. "Id": 17648193282110847484
  4827. },
  4828. "Component_[17736719688956315985]": {
  4829. "$type": "GenericComponentWrapper",
  4830. "Id": 17736719688956315985,
  4831. "m_template": {
  4832. "$type": "Multiplayer::NetworkTransformComponent"
  4833. }
  4834. },
  4835. "Component_[1835082203551392000]": {
  4836. "$type": "EditorPendingCompositionComponent",
  4837. "Id": 1835082203551392000
  4838. },
  4839. "Component_[2164842339052442926]": {
  4840. "$type": "EditorEntitySortComponent",
  4841. "Id": 2164842339052442926
  4842. },
  4843. "Component_[3933618364732995768]": {
  4844. "$type": "EditorVisibilityComponent",
  4845. "Id": 3933618364732995768
  4846. },
  4847. "Component_[4455772334179006063]": {
  4848. "$type": "EditorEntityIconComponent",
  4849. "Id": 4455772334179006063
  4850. },
  4851. "Component_[7903212753103164289]": {
  4852. "$type": "EditorInspectorComponent",
  4853. "Id": 7903212753103164289,
  4854. "ComponentOrderEntryArray": [
  4855. {
  4856. "ComponentId": 11829233075139704453
  4857. },
  4858. {
  4859. "ComponentId": 8125251054274400256,
  4860. "SortIndex": 1
  4861. },
  4862. {
  4863. "ComponentId": 17736719688956315985,
  4864. "SortIndex": 2
  4865. },
  4866. {
  4867. "ComponentId": 12724016572532454792,
  4868. "SortIndex": 3
  4869. },
  4870. {
  4871. "ComponentId": 8184187118822500353,
  4872. "SortIndex": 4
  4873. },
  4874. {
  4875. "ComponentId": 11384954117619258935,
  4876. "SortIndex": 5
  4877. },
  4878. {
  4879. "ComponentId": 14564562245168579615,
  4880. "SortIndex": 6
  4881. },
  4882. {
  4883. "ComponentId": 9450029410653326667,
  4884. "SortIndex": 7
  4885. }
  4886. ]
  4887. },
  4888. "Component_[8125251054274400256]": {
  4889. "$type": "GenericComponentWrapper",
  4890. "Id": 8125251054274400256,
  4891. "m_template": {
  4892. "$type": "NetBindComponent"
  4893. }
  4894. },
  4895. "Component_[8184187118822500353]": {
  4896. "$type": "EditorMaterialComponent",
  4897. "Id": 8184187118822500353,
  4898. "Controller": {
  4899. "Configuration": {
  4900. "materials": {
  4901. "{}": {
  4902. "MaterialAsset": {
  4903. "assetId": {
  4904. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  4905. }
  4906. }
  4907. }
  4908. }
  4909. }
  4910. }
  4911. },
  4912. "Component_[9450029410653326667]": {
  4913. "$type": "GenericComponentWrapper",
  4914. "Id": 9450029410653326667,
  4915. "m_template": {
  4916. "$type": "Multiplayer::NetworkRigidBodyComponent"
  4917. }
  4918. },
  4919. "Component_[9452550092591643181]": {
  4920. "$type": "EditorLockComponent",
  4921. "Id": 9452550092591643181
  4922. }
  4923. }
  4924. },
  4925. "Entity_[626403117411]": {
  4926. "Id": "Entity_[626403117411]",
  4927. "Name": "Box3",
  4928. "Components": {
  4929. "Component_[11384954117619258935]": {
  4930. "$type": "EditorColliderComponent",
  4931. "Id": 11384954117619258935,
  4932. "ColliderConfiguration": {
  4933. "MaterialSlots": {
  4934. "Slots": [
  4935. {
  4936. "Name": "Entire object"
  4937. }
  4938. ]
  4939. }
  4940. },
  4941. "ShapeConfiguration": {
  4942. "ShapeType": 1
  4943. },
  4944. "DebugDrawSettings": {
  4945. "LocallyEnabled": false
  4946. }
  4947. },
  4948. "Component_[11829233075139704453]": {
  4949. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4950. "Id": 11829233075139704453,
  4951. "Parent Entity": "ContainerEntity",
  4952. "Transform Data": {
  4953. "Translate": [
  4954. 0.6456379890441895,
  4955. 0.6112356185913086,
  4956. 2.126070022583008
  4957. ]
  4958. }
  4959. },
  4960. "Component_[12724016572532454792]": {
  4961. "$type": "AZ::Render::EditorMeshComponent",
  4962. "Id": 12724016572532454792,
  4963. "Controller": {
  4964. "Configuration": {
  4965. "ModelAsset": {
  4966. "assetId": {
  4967. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  4968. "subId": 285127096
  4969. },
  4970. "assetHint": "objects/cube.azmodel"
  4971. }
  4972. }
  4973. }
  4974. },
  4975. "Component_[14564562245168579615]": {
  4976. "$type": "EditorRigidBodyComponent",
  4977. "Id": 14564562245168579615,
  4978. "Configuration": {
  4979. "entityId": "",
  4980. "Mass": 999.9999389648438,
  4981. "Inertia tensor": [
  4982. 166.6666717529297,
  4983. 0.0,
  4984. 0.0,
  4985. 0.0,
  4986. 166.6666717529297,
  4987. 0.0,
  4988. 0.0,
  4989. 0.0,
  4990. 166.6666717529297
  4991. ]
  4992. }
  4993. },
  4994. "Component_[16056896985233530106]": {
  4995. "$type": "EditorDisabledCompositionComponent",
  4996. "Id": 16056896985233530106
  4997. },
  4998. "Component_[17648193282110847484]": {
  4999. "$type": "EditorOnlyEntityComponent",
  5000. "Id": 17648193282110847484
  5001. },
  5002. "Component_[17736719688956315985]": {
  5003. "$type": "GenericComponentWrapper",
  5004. "Id": 17736719688956315985,
  5005. "m_template": {
  5006. "$type": "Multiplayer::NetworkTransformComponent"
  5007. }
  5008. },
  5009. "Component_[1835082203551392000]": {
  5010. "$type": "EditorPendingCompositionComponent",
  5011. "Id": 1835082203551392000
  5012. },
  5013. "Component_[2164842339052442926]": {
  5014. "$type": "EditorEntitySortComponent",
  5015. "Id": 2164842339052442926
  5016. },
  5017. "Component_[3933618364732995768]": {
  5018. "$type": "EditorVisibilityComponent",
  5019. "Id": 3933618364732995768
  5020. },
  5021. "Component_[4455772334179006063]": {
  5022. "$type": "EditorEntityIconComponent",
  5023. "Id": 4455772334179006063
  5024. },
  5025. "Component_[7903212753103164289]": {
  5026. "$type": "EditorInspectorComponent",
  5027. "Id": 7903212753103164289,
  5028. "ComponentOrderEntryArray": [
  5029. {
  5030. "ComponentId": 11829233075139704453
  5031. },
  5032. {
  5033. "ComponentId": 8125251054274400256,
  5034. "SortIndex": 1
  5035. },
  5036. {
  5037. "ComponentId": 17736719688956315985,
  5038. "SortIndex": 2
  5039. },
  5040. {
  5041. "ComponentId": 12724016572532454792,
  5042. "SortIndex": 3
  5043. },
  5044. {
  5045. "ComponentId": 8184187118822500353,
  5046. "SortIndex": 4
  5047. },
  5048. {
  5049. "ComponentId": 11384954117619258935,
  5050. "SortIndex": 5
  5051. },
  5052. {
  5053. "ComponentId": 14564562245168579615,
  5054. "SortIndex": 6
  5055. },
  5056. {
  5057. "ComponentId": 9450029410653326667,
  5058. "SortIndex": 7
  5059. }
  5060. ]
  5061. },
  5062. "Component_[8125251054274400256]": {
  5063. "$type": "GenericComponentWrapper",
  5064. "Id": 8125251054274400256,
  5065. "m_template": {
  5066. "$type": "NetBindComponent"
  5067. }
  5068. },
  5069. "Component_[8184187118822500353]": {
  5070. "$type": "EditorMaterialComponent",
  5071. "Id": 8184187118822500353,
  5072. "Controller": {
  5073. "Configuration": {
  5074. "materials": {
  5075. "{}": {
  5076. "MaterialAsset": {
  5077. "assetId": {
  5078. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  5079. }
  5080. }
  5081. }
  5082. }
  5083. }
  5084. }
  5085. },
  5086. "Component_[9450029410653326667]": {
  5087. "$type": "GenericComponentWrapper",
  5088. "Id": 9450029410653326667,
  5089. "m_template": {
  5090. "$type": "Multiplayer::NetworkRigidBodyComponent"
  5091. }
  5092. },
  5093. "Component_[9452550092591643181]": {
  5094. "$type": "EditorLockComponent",
  5095. "Id": 9452550092591643181
  5096. }
  5097. }
  5098. },
  5099. "Entity_[630698084707]": {
  5100. "Id": "Entity_[630698084707]",
  5101. "Name": "Box1",
  5102. "Components": {
  5103. "Component_[11384954117619258935]": {
  5104. "$type": "EditorColliderComponent",
  5105. "Id": 11384954117619258935,
  5106. "ColliderConfiguration": {
  5107. "MaterialSlots": {
  5108. "Slots": [
  5109. {
  5110. "Name": "Entire object"
  5111. }
  5112. ]
  5113. }
  5114. },
  5115. "ShapeConfiguration": {
  5116. "ShapeType": 1
  5117. },
  5118. "DebugDrawSettings": {
  5119. "LocallyEnabled": false
  5120. }
  5121. },
  5122. "Component_[11829233075139704453]": {
  5123. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5124. "Id": 11829233075139704453,
  5125. "Parent Entity": "ContainerEntity",
  5126. "Transform Data": {
  5127. "Translate": [
  5128. -1.5954484939575195,
  5129. 1.8704166412353516,
  5130. 0.0
  5131. ]
  5132. }
  5133. },
  5134. "Component_[12724016572532454792]": {
  5135. "$type": "AZ::Render::EditorMeshComponent",
  5136. "Id": 12724016572532454792,
  5137. "Controller": {
  5138. "Configuration": {
  5139. "ModelAsset": {
  5140. "assetId": {
  5141. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  5142. "subId": 285127096
  5143. },
  5144. "assetHint": "objects/cube.azmodel"
  5145. }
  5146. }
  5147. }
  5148. },
  5149. "Component_[14564562245168579615]": {
  5150. "$type": "EditorRigidBodyComponent",
  5151. "Id": 14564562245168579615,
  5152. "Configuration": {
  5153. "entityId": "",
  5154. "Mass": 999.9999389648438,
  5155. "Inertia tensor": [
  5156. 166.6666717529297,
  5157. 0.0,
  5158. 0.0,
  5159. 0.0,
  5160. 166.6666717529297,
  5161. 0.0,
  5162. 0.0,
  5163. 0.0,
  5164. 166.6666717529297
  5165. ]
  5166. }
  5167. },
  5168. "Component_[16056896985233530106]": {
  5169. "$type": "EditorDisabledCompositionComponent",
  5170. "Id": 16056896985233530106
  5171. },
  5172. "Component_[17648193282110847484]": {
  5173. "$type": "EditorOnlyEntityComponent",
  5174. "Id": 17648193282110847484
  5175. },
  5176. "Component_[17736719688956315985]": {
  5177. "$type": "GenericComponentWrapper",
  5178. "Id": 17736719688956315985,
  5179. "m_template": {
  5180. "$type": "Multiplayer::NetworkTransformComponent"
  5181. }
  5182. },
  5183. "Component_[1835082203551392000]": {
  5184. "$type": "EditorPendingCompositionComponent",
  5185. "Id": 1835082203551392000
  5186. },
  5187. "Component_[2164842339052442926]": {
  5188. "$type": "EditorEntitySortComponent",
  5189. "Id": 2164842339052442926
  5190. },
  5191. "Component_[3933618364732995768]": {
  5192. "$type": "EditorVisibilityComponent",
  5193. "Id": 3933618364732995768
  5194. },
  5195. "Component_[4455772334179006063]": {
  5196. "$type": "EditorEntityIconComponent",
  5197. "Id": 4455772334179006063
  5198. },
  5199. "Component_[7903212753103164289]": {
  5200. "$type": "EditorInspectorComponent",
  5201. "Id": 7903212753103164289,
  5202. "ComponentOrderEntryArray": [
  5203. {
  5204. "ComponentId": 11829233075139704453
  5205. },
  5206. {
  5207. "ComponentId": 8125251054274400256,
  5208. "SortIndex": 1
  5209. },
  5210. {
  5211. "ComponentId": 17736719688956315985,
  5212. "SortIndex": 2
  5213. },
  5214. {
  5215. "ComponentId": 12724016572532454792,
  5216. "SortIndex": 3
  5217. },
  5218. {
  5219. "ComponentId": 8184187118822500353,
  5220. "SortIndex": 4
  5221. },
  5222. {
  5223. "ComponentId": 11384954117619258935,
  5224. "SortIndex": 5
  5225. },
  5226. {
  5227. "ComponentId": 14564562245168579615,
  5228. "SortIndex": 6
  5229. },
  5230. {
  5231. "ComponentId": 9450029410653326667,
  5232. "SortIndex": 7
  5233. }
  5234. ]
  5235. },
  5236. "Component_[8125251054274400256]": {
  5237. "$type": "GenericComponentWrapper",
  5238. "Id": 8125251054274400256,
  5239. "m_template": {
  5240. "$type": "NetBindComponent"
  5241. }
  5242. },
  5243. "Component_[8184187118822500353]": {
  5244. "$type": "EditorMaterialComponent",
  5245. "Id": 8184187118822500353,
  5246. "Controller": {
  5247. "Configuration": {
  5248. "materials": {
  5249. "{}": {
  5250. "MaterialAsset": {
  5251. "assetId": {
  5252. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  5253. }
  5254. }
  5255. }
  5256. }
  5257. }
  5258. }
  5259. },
  5260. "Component_[9450029410653326667]": {
  5261. "$type": "GenericComponentWrapper",
  5262. "Id": 9450029410653326667,
  5263. "m_template": {
  5264. "$type": "Multiplayer::NetworkRigidBodyComponent"
  5265. }
  5266. },
  5267. "Component_[9452550092591643181]": {
  5268. "$type": "EditorLockComponent",
  5269. "Id": 9452550092591643181
  5270. }
  5271. }
  5272. },
  5273. "Entity_[634993052003]": {
  5274. "Id": "Entity_[634993052003]",
  5275. "Name": "Box2",
  5276. "Components": {
  5277. "Component_[11384954117619258935]": {
  5278. "$type": "EditorColliderComponent",
  5279. "Id": 11384954117619258935,
  5280. "ColliderConfiguration": {
  5281. "MaterialSlots": {
  5282. "Slots": [
  5283. {
  5284. "Name": "Entire object"
  5285. }
  5286. ]
  5287. }
  5288. },
  5289. "ShapeConfiguration": {
  5290. "ShapeType": 1
  5291. },
  5292. "DebugDrawSettings": {
  5293. "LocallyEnabled": false
  5294. }
  5295. },
  5296. "Component_[11829233075139704453]": {
  5297. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5298. "Id": 11829233075139704453,
  5299. "Parent Entity": "ContainerEntity",
  5300. "Transform Data": {
  5301. "Translate": [
  5302. -0.4683690071105957,
  5303. -1.725468635559082,
  5304. 1.0648231506347656
  5305. ]
  5306. }
  5307. },
  5308. "Component_[12724016572532454792]": {
  5309. "$type": "AZ::Render::EditorMeshComponent",
  5310. "Id": 12724016572532454792,
  5311. "Controller": {
  5312. "Configuration": {
  5313. "ModelAsset": {
  5314. "assetId": {
  5315. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  5316. "subId": 285127096
  5317. },
  5318. "assetHint": "objects/cube.azmodel"
  5319. }
  5320. }
  5321. }
  5322. },
  5323. "Component_[14564562245168579615]": {
  5324. "$type": "EditorRigidBodyComponent",
  5325. "Id": 14564562245168579615,
  5326. "Configuration": {
  5327. "entityId": "",
  5328. "Mass": 999.9999389648438,
  5329. "Inertia tensor": [
  5330. 166.6666717529297,
  5331. 0.0,
  5332. 0.0,
  5333. 0.0,
  5334. 166.6666717529297,
  5335. 0.0,
  5336. 0.0,
  5337. 0.0,
  5338. 166.6666717529297
  5339. ]
  5340. }
  5341. },
  5342. "Component_[16056896985233530106]": {
  5343. "$type": "EditorDisabledCompositionComponent",
  5344. "Id": 16056896985233530106
  5345. },
  5346. "Component_[17648193282110847484]": {
  5347. "$type": "EditorOnlyEntityComponent",
  5348. "Id": 17648193282110847484
  5349. },
  5350. "Component_[17736719688956315985]": {
  5351. "$type": "GenericComponentWrapper",
  5352. "Id": 17736719688956315985,
  5353. "m_template": {
  5354. "$type": "Multiplayer::NetworkTransformComponent"
  5355. }
  5356. },
  5357. "Component_[1835082203551392000]": {
  5358. "$type": "EditorPendingCompositionComponent",
  5359. "Id": 1835082203551392000
  5360. },
  5361. "Component_[2164842339052442926]": {
  5362. "$type": "EditorEntitySortComponent",
  5363. "Id": 2164842339052442926
  5364. },
  5365. "Component_[3933618364732995768]": {
  5366. "$type": "EditorVisibilityComponent",
  5367. "Id": 3933618364732995768
  5368. },
  5369. "Component_[4455772334179006063]": {
  5370. "$type": "EditorEntityIconComponent",
  5371. "Id": 4455772334179006063
  5372. },
  5373. "Component_[7903212753103164289]": {
  5374. "$type": "EditorInspectorComponent",
  5375. "Id": 7903212753103164289,
  5376. "ComponentOrderEntryArray": [
  5377. {
  5378. "ComponentId": 11829233075139704453
  5379. },
  5380. {
  5381. "ComponentId": 8125251054274400256,
  5382. "SortIndex": 1
  5383. },
  5384. {
  5385. "ComponentId": 17736719688956315985,
  5386. "SortIndex": 2
  5387. },
  5388. {
  5389. "ComponentId": 12724016572532454792,
  5390. "SortIndex": 3
  5391. },
  5392. {
  5393. "ComponentId": 8184187118822500353,
  5394. "SortIndex": 4
  5395. },
  5396. {
  5397. "ComponentId": 11384954117619258935,
  5398. "SortIndex": 5
  5399. },
  5400. {
  5401. "ComponentId": 14564562245168579615,
  5402. "SortIndex": 6
  5403. },
  5404. {
  5405. "ComponentId": 9450029410653326667,
  5406. "SortIndex": 7
  5407. }
  5408. ]
  5409. },
  5410. "Component_[8125251054274400256]": {
  5411. "$type": "GenericComponentWrapper",
  5412. "Id": 8125251054274400256,
  5413. "m_template": {
  5414. "$type": "NetBindComponent"
  5415. }
  5416. },
  5417. "Component_[8184187118822500353]": {
  5418. "$type": "EditorMaterialComponent",
  5419. "Id": 8184187118822500353,
  5420. "Controller": {
  5421. "Configuration": {
  5422. "materials": {
  5423. "{}": {
  5424. "MaterialAsset": {
  5425. "assetId": {
  5426. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  5427. }
  5428. }
  5429. }
  5430. }
  5431. }
  5432. }
  5433. },
  5434. "Component_[9450029410653326667]": {
  5435. "$type": "GenericComponentWrapper",
  5436. "Id": 9450029410653326667,
  5437. "m_template": {
  5438. "$type": "Multiplayer::NetworkRigidBodyComponent"
  5439. }
  5440. },
  5441. "Component_[9452550092591643181]": {
  5442. "$type": "EditorLockComponent",
  5443. "Id": 9452550092591643181
  5444. }
  5445. }
  5446. },
  5447. "Entity_[639288019299]": {
  5448. "Id": "Entity_[639288019299]",
  5449. "Name": "Box2",
  5450. "Components": {
  5451. "Component_[11384954117619258935]": {
  5452. "$type": "EditorColliderComponent",
  5453. "Id": 11384954117619258935,
  5454. "ColliderConfiguration": {
  5455. "MaterialSlots": {
  5456. "Slots": [
  5457. {
  5458. "Name": "Entire object"
  5459. }
  5460. ]
  5461. }
  5462. },
  5463. "ShapeConfiguration": {
  5464. "ShapeType": 1
  5465. },
  5466. "DebugDrawSettings": {
  5467. "LocallyEnabled": false
  5468. }
  5469. },
  5470. "Component_[11829233075139704453]": {
  5471. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5472. "Id": 11829233075139704453,
  5473. "Parent Entity": "ContainerEntity",
  5474. "Transform Data": {
  5475. "Translate": [
  5476. -0.4683690071105957,
  5477. 0.6112356185913086,
  5478. 1.0648231506347656
  5479. ]
  5480. }
  5481. },
  5482. "Component_[12724016572532454792]": {
  5483. "$type": "AZ::Render::EditorMeshComponent",
  5484. "Id": 12724016572532454792,
  5485. "Controller": {
  5486. "Configuration": {
  5487. "ModelAsset": {
  5488. "assetId": {
  5489. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  5490. "subId": 285127096
  5491. },
  5492. "assetHint": "objects/cube.azmodel"
  5493. }
  5494. }
  5495. }
  5496. },
  5497. "Component_[14564562245168579615]": {
  5498. "$type": "EditorRigidBodyComponent",
  5499. "Id": 14564562245168579615,
  5500. "Configuration": {
  5501. "entityId": "",
  5502. "Mass": 999.9999389648438,
  5503. "Inertia tensor": [
  5504. 166.6666717529297,
  5505. 0.0,
  5506. 0.0,
  5507. 0.0,
  5508. 166.6666717529297,
  5509. 0.0,
  5510. 0.0,
  5511. 0.0,
  5512. 166.6666717529297
  5513. ]
  5514. }
  5515. },
  5516. "Component_[16056896985233530106]": {
  5517. "$type": "EditorDisabledCompositionComponent",
  5518. "Id": 16056896985233530106
  5519. },
  5520. "Component_[17648193282110847484]": {
  5521. "$type": "EditorOnlyEntityComponent",
  5522. "Id": 17648193282110847484
  5523. },
  5524. "Component_[17736719688956315985]": {
  5525. "$type": "GenericComponentWrapper",
  5526. "Id": 17736719688956315985,
  5527. "m_template": {
  5528. "$type": "Multiplayer::NetworkTransformComponent"
  5529. }
  5530. },
  5531. "Component_[1835082203551392000]": {
  5532. "$type": "EditorPendingCompositionComponent",
  5533. "Id": 1835082203551392000
  5534. },
  5535. "Component_[2164842339052442926]": {
  5536. "$type": "EditorEntitySortComponent",
  5537. "Id": 2164842339052442926
  5538. },
  5539. "Component_[3933618364732995768]": {
  5540. "$type": "EditorVisibilityComponent",
  5541. "Id": 3933618364732995768
  5542. },
  5543. "Component_[4455772334179006063]": {
  5544. "$type": "EditorEntityIconComponent",
  5545. "Id": 4455772334179006063
  5546. },
  5547. "Component_[7903212753103164289]": {
  5548. "$type": "EditorInspectorComponent",
  5549. "Id": 7903212753103164289,
  5550. "ComponentOrderEntryArray": [
  5551. {
  5552. "ComponentId": 11829233075139704453
  5553. },
  5554. {
  5555. "ComponentId": 8125251054274400256,
  5556. "SortIndex": 1
  5557. },
  5558. {
  5559. "ComponentId": 17736719688956315985,
  5560. "SortIndex": 2
  5561. },
  5562. {
  5563. "ComponentId": 12724016572532454792,
  5564. "SortIndex": 3
  5565. },
  5566. {
  5567. "ComponentId": 8184187118822500353,
  5568. "SortIndex": 4
  5569. },
  5570. {
  5571. "ComponentId": 11384954117619258935,
  5572. "SortIndex": 5
  5573. },
  5574. {
  5575. "ComponentId": 14564562245168579615,
  5576. "SortIndex": 6
  5577. },
  5578. {
  5579. "ComponentId": 9450029410653326667,
  5580. "SortIndex": 7
  5581. }
  5582. ]
  5583. },
  5584. "Component_[8125251054274400256]": {
  5585. "$type": "GenericComponentWrapper",
  5586. "Id": 8125251054274400256,
  5587. "m_template": {
  5588. "$type": "NetBindComponent"
  5589. }
  5590. },
  5591. "Component_[8184187118822500353]": {
  5592. "$type": "EditorMaterialComponent",
  5593. "Id": 8184187118822500353,
  5594. "Controller": {
  5595. "Configuration": {
  5596. "materials": {
  5597. "{}": {
  5598. "MaterialAsset": {
  5599. "assetId": {
  5600. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  5601. }
  5602. }
  5603. }
  5604. }
  5605. }
  5606. }
  5607. },
  5608. "Component_[9450029410653326667]": {
  5609. "$type": "GenericComponentWrapper",
  5610. "Id": 9450029410653326667,
  5611. "m_template": {
  5612. "$type": "Multiplayer::NetworkRigidBodyComponent"
  5613. }
  5614. },
  5615. "Component_[9452550092591643181]": {
  5616. "$type": "EditorLockComponent",
  5617. "Id": 9452550092591643181
  5618. }
  5619. }
  5620. },
  5621. "Entity_[643582986595]": {
  5622. "Id": "Entity_[643582986595]",
  5623. "Name": "Box2",
  5624. "Components": {
  5625. "Component_[11384954117619258935]": {
  5626. "$type": "EditorColliderComponent",
  5627. "Id": 11384954117619258935,
  5628. "ColliderConfiguration": {
  5629. "MaterialSlots": {
  5630. "Slots": [
  5631. {
  5632. "Name": "Entire object"
  5633. }
  5634. ]
  5635. }
  5636. },
  5637. "ShapeConfiguration": {
  5638. "ShapeType": 1
  5639. },
  5640. "DebugDrawSettings": {
  5641. "LocallyEnabled": false
  5642. }
  5643. },
  5644. "Component_[11829233075139704453]": {
  5645. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5646. "Id": 11829233075139704453,
  5647. "Parent Entity": "ContainerEntity",
  5648. "Transform Data": {
  5649. "Translate": [
  5650. 0.6456379890441895,
  5651. 1.8704166412353516,
  5652. 1.0648231506347656
  5653. ]
  5654. }
  5655. },
  5656. "Component_[12724016572532454792]": {
  5657. "$type": "AZ::Render::EditorMeshComponent",
  5658. "Id": 12724016572532454792,
  5659. "Controller": {
  5660. "Configuration": {
  5661. "ModelAsset": {
  5662. "assetId": {
  5663. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  5664. "subId": 285127096
  5665. },
  5666. "assetHint": "objects/cube.azmodel"
  5667. }
  5668. }
  5669. }
  5670. },
  5671. "Component_[14564562245168579615]": {
  5672. "$type": "EditorRigidBodyComponent",
  5673. "Id": 14564562245168579615,
  5674. "Configuration": {
  5675. "entityId": "",
  5676. "Mass": 999.9999389648438,
  5677. "Inertia tensor": [
  5678. 166.6666717529297,
  5679. 0.0,
  5680. 0.0,
  5681. 0.0,
  5682. 166.6666717529297,
  5683. 0.0,
  5684. 0.0,
  5685. 0.0,
  5686. 166.6666717529297
  5687. ]
  5688. }
  5689. },
  5690. "Component_[16056896985233530106]": {
  5691. "$type": "EditorDisabledCompositionComponent",
  5692. "Id": 16056896985233530106
  5693. },
  5694. "Component_[17648193282110847484]": {
  5695. "$type": "EditorOnlyEntityComponent",
  5696. "Id": 17648193282110847484
  5697. },
  5698. "Component_[17736719688956315985]": {
  5699. "$type": "GenericComponentWrapper",
  5700. "Id": 17736719688956315985,
  5701. "m_template": {
  5702. "$type": "Multiplayer::NetworkTransformComponent"
  5703. }
  5704. },
  5705. "Component_[1835082203551392000]": {
  5706. "$type": "EditorPendingCompositionComponent",
  5707. "Id": 1835082203551392000
  5708. },
  5709. "Component_[2164842339052442926]": {
  5710. "$type": "EditorEntitySortComponent",
  5711. "Id": 2164842339052442926
  5712. },
  5713. "Component_[3933618364732995768]": {
  5714. "$type": "EditorVisibilityComponent",
  5715. "Id": 3933618364732995768
  5716. },
  5717. "Component_[4455772334179006063]": {
  5718. "$type": "EditorEntityIconComponent",
  5719. "Id": 4455772334179006063
  5720. },
  5721. "Component_[7903212753103164289]": {
  5722. "$type": "EditorInspectorComponent",
  5723. "Id": 7903212753103164289,
  5724. "ComponentOrderEntryArray": [
  5725. {
  5726. "ComponentId": 11829233075139704453
  5727. },
  5728. {
  5729. "ComponentId": 8125251054274400256,
  5730. "SortIndex": 1
  5731. },
  5732. {
  5733. "ComponentId": 17736719688956315985,
  5734. "SortIndex": 2
  5735. },
  5736. {
  5737. "ComponentId": 12724016572532454792,
  5738. "SortIndex": 3
  5739. },
  5740. {
  5741. "ComponentId": 8184187118822500353,
  5742. "SortIndex": 4
  5743. },
  5744. {
  5745. "ComponentId": 11384954117619258935,
  5746. "SortIndex": 5
  5747. },
  5748. {
  5749. "ComponentId": 14564562245168579615,
  5750. "SortIndex": 6
  5751. },
  5752. {
  5753. "ComponentId": 9450029410653326667,
  5754. "SortIndex": 7
  5755. }
  5756. ]
  5757. },
  5758. "Component_[8125251054274400256]": {
  5759. "$type": "GenericComponentWrapper",
  5760. "Id": 8125251054274400256,
  5761. "m_template": {
  5762. "$type": "NetBindComponent"
  5763. }
  5764. },
  5765. "Component_[8184187118822500353]": {
  5766. "$type": "EditorMaterialComponent",
  5767. "Id": 8184187118822500353,
  5768. "Controller": {
  5769. "Configuration": {
  5770. "materials": {
  5771. "{}": {
  5772. "MaterialAsset": {
  5773. "assetId": {
  5774. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  5775. }
  5776. }
  5777. }
  5778. }
  5779. }
  5780. }
  5781. },
  5782. "Component_[9450029410653326667]": {
  5783. "$type": "GenericComponentWrapper",
  5784. "Id": 9450029410653326667,
  5785. "m_template": {
  5786. "$type": "Multiplayer::NetworkRigidBodyComponent"
  5787. }
  5788. },
  5789. "Component_[9452550092591643181]": {
  5790. "$type": "EditorLockComponent",
  5791. "Id": 9452550092591643181
  5792. }
  5793. }
  5794. },
  5795. "Entity_[647877953891]": {
  5796. "Id": "Entity_[647877953891]",
  5797. "Name": "Box2",
  5798. "Components": {
  5799. "Component_[11384954117619258935]": {
  5800. "$type": "EditorColliderComponent",
  5801. "Id": 11384954117619258935,
  5802. "ColliderConfiguration": {
  5803. "MaterialSlots": {
  5804. "Slots": [
  5805. {
  5806. "Name": "Entire object"
  5807. }
  5808. ]
  5809. }
  5810. },
  5811. "ShapeConfiguration": {
  5812. "ShapeType": 1
  5813. },
  5814. "DebugDrawSettings": {
  5815. "LocallyEnabled": false
  5816. }
  5817. },
  5818. "Component_[11829233075139704453]": {
  5819. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5820. "Id": 11829233075139704453,
  5821. "Parent Entity": "ContainerEntity",
  5822. "Transform Data": {
  5823. "Translate": [
  5824. 1.7793126106262207,
  5825. 0.6112356185913086,
  5826. 1.0648231506347656
  5827. ]
  5828. }
  5829. },
  5830. "Component_[12724016572532454792]": {
  5831. "$type": "AZ::Render::EditorMeshComponent",
  5832. "Id": 12724016572532454792,
  5833. "Controller": {
  5834. "Configuration": {
  5835. "ModelAsset": {
  5836. "assetId": {
  5837. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  5838. "subId": 285127096
  5839. },
  5840. "assetHint": "objects/cube.azmodel"
  5841. }
  5842. }
  5843. }
  5844. },
  5845. "Component_[14564562245168579615]": {
  5846. "$type": "EditorRigidBodyComponent",
  5847. "Id": 14564562245168579615,
  5848. "Configuration": {
  5849. "entityId": "",
  5850. "Mass": 999.9999389648438,
  5851. "Inertia tensor": [
  5852. 166.6666717529297,
  5853. 0.0,
  5854. 0.0,
  5855. 0.0,
  5856. 166.6666717529297,
  5857. 0.0,
  5858. 0.0,
  5859. 0.0,
  5860. 166.6666717529297
  5861. ]
  5862. }
  5863. },
  5864. "Component_[16056896985233530106]": {
  5865. "$type": "EditorDisabledCompositionComponent",
  5866. "Id": 16056896985233530106
  5867. },
  5868. "Component_[17648193282110847484]": {
  5869. "$type": "EditorOnlyEntityComponent",
  5870. "Id": 17648193282110847484
  5871. },
  5872. "Component_[17736719688956315985]": {
  5873. "$type": "GenericComponentWrapper",
  5874. "Id": 17736719688956315985,
  5875. "m_template": {
  5876. "$type": "Multiplayer::NetworkTransformComponent"
  5877. }
  5878. },
  5879. "Component_[1835082203551392000]": {
  5880. "$type": "EditorPendingCompositionComponent",
  5881. "Id": 1835082203551392000
  5882. },
  5883. "Component_[2164842339052442926]": {
  5884. "$type": "EditorEntitySortComponent",
  5885. "Id": 2164842339052442926
  5886. },
  5887. "Component_[3933618364732995768]": {
  5888. "$type": "EditorVisibilityComponent",
  5889. "Id": 3933618364732995768
  5890. },
  5891. "Component_[4455772334179006063]": {
  5892. "$type": "EditorEntityIconComponent",
  5893. "Id": 4455772334179006063
  5894. },
  5895. "Component_[7903212753103164289]": {
  5896. "$type": "EditorInspectorComponent",
  5897. "Id": 7903212753103164289,
  5898. "ComponentOrderEntryArray": [
  5899. {
  5900. "ComponentId": 11829233075139704453
  5901. },
  5902. {
  5903. "ComponentId": 8125251054274400256,
  5904. "SortIndex": 1
  5905. },
  5906. {
  5907. "ComponentId": 17736719688956315985,
  5908. "SortIndex": 2
  5909. },
  5910. {
  5911. "ComponentId": 12724016572532454792,
  5912. "SortIndex": 3
  5913. },
  5914. {
  5915. "ComponentId": 8184187118822500353,
  5916. "SortIndex": 4
  5917. },
  5918. {
  5919. "ComponentId": 11384954117619258935,
  5920. "SortIndex": 5
  5921. },
  5922. {
  5923. "ComponentId": 14564562245168579615,
  5924. "SortIndex": 6
  5925. },
  5926. {
  5927. "ComponentId": 9450029410653326667,
  5928. "SortIndex": 7
  5929. }
  5930. ]
  5931. },
  5932. "Component_[8125251054274400256]": {
  5933. "$type": "GenericComponentWrapper",
  5934. "Id": 8125251054274400256,
  5935. "m_template": {
  5936. "$type": "NetBindComponent"
  5937. }
  5938. },
  5939. "Component_[8184187118822500353]": {
  5940. "$type": "EditorMaterialComponent",
  5941. "Id": 8184187118822500353,
  5942. "Controller": {
  5943. "Configuration": {
  5944. "materials": {
  5945. "{}": {
  5946. "MaterialAsset": {
  5947. "assetId": {
  5948. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  5949. }
  5950. }
  5951. }
  5952. }
  5953. }
  5954. }
  5955. },
  5956. "Component_[9450029410653326667]": {
  5957. "$type": "GenericComponentWrapper",
  5958. "Id": 9450029410653326667,
  5959. "m_template": {
  5960. "$type": "Multiplayer::NetworkRigidBodyComponent"
  5961. }
  5962. },
  5963. "Component_[9452550092591643181]": {
  5964. "$type": "EditorLockComponent",
  5965. "Id": 9452550092591643181
  5966. }
  5967. }
  5968. },
  5969. "Entity_[652172921187]": {
  5970. "Id": "Entity_[652172921187]",
  5971. "Name": "Box2",
  5972. "Components": {
  5973. "Component_[11384954117619258935]": {
  5974. "$type": "EditorColliderComponent",
  5975. "Id": 11384954117619258935,
  5976. "ColliderConfiguration": {
  5977. "MaterialSlots": {
  5978. "Slots": [
  5979. {
  5980. "Name": "Entire object"
  5981. }
  5982. ]
  5983. }
  5984. },
  5985. "ShapeConfiguration": {
  5986. "ShapeType": 1
  5987. },
  5988. "DebugDrawSettings": {
  5989. "LocallyEnabled": false
  5990. }
  5991. },
  5992. "Component_[11829233075139704453]": {
  5993. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5994. "Id": 11829233075139704453,
  5995. "Parent Entity": "ContainerEntity",
  5996. "Transform Data": {
  5997. "Translate": [
  5998. -1.5954484939575195,
  5999. 1.8704166412353516,
  6000. 1.0648231506347656
  6001. ]
  6002. }
  6003. },
  6004. "Component_[12724016572532454792]": {
  6005. "$type": "AZ::Render::EditorMeshComponent",
  6006. "Id": 12724016572532454792,
  6007. "Controller": {
  6008. "Configuration": {
  6009. "ModelAsset": {
  6010. "assetId": {
  6011. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  6012. "subId": 285127096
  6013. },
  6014. "assetHint": "objects/cube.azmodel"
  6015. }
  6016. }
  6017. }
  6018. },
  6019. "Component_[14564562245168579615]": {
  6020. "$type": "EditorRigidBodyComponent",
  6021. "Id": 14564562245168579615,
  6022. "Configuration": {
  6023. "entityId": "",
  6024. "Mass": 999.9999389648438,
  6025. "Inertia tensor": [
  6026. 166.6666717529297,
  6027. 0.0,
  6028. 0.0,
  6029. 0.0,
  6030. 166.6666717529297,
  6031. 0.0,
  6032. 0.0,
  6033. 0.0,
  6034. 166.6666717529297
  6035. ]
  6036. }
  6037. },
  6038. "Component_[16056896985233530106]": {
  6039. "$type": "EditorDisabledCompositionComponent",
  6040. "Id": 16056896985233530106
  6041. },
  6042. "Component_[17648193282110847484]": {
  6043. "$type": "EditorOnlyEntityComponent",
  6044. "Id": 17648193282110847484
  6045. },
  6046. "Component_[17736719688956315985]": {
  6047. "$type": "GenericComponentWrapper",
  6048. "Id": 17736719688956315985,
  6049. "m_template": {
  6050. "$type": "Multiplayer::NetworkTransformComponent"
  6051. }
  6052. },
  6053. "Component_[1835082203551392000]": {
  6054. "$type": "EditorPendingCompositionComponent",
  6055. "Id": 1835082203551392000
  6056. },
  6057. "Component_[2164842339052442926]": {
  6058. "$type": "EditorEntitySortComponent",
  6059. "Id": 2164842339052442926
  6060. },
  6061. "Component_[3933618364732995768]": {
  6062. "$type": "EditorVisibilityComponent",
  6063. "Id": 3933618364732995768
  6064. },
  6065. "Component_[4455772334179006063]": {
  6066. "$type": "EditorEntityIconComponent",
  6067. "Id": 4455772334179006063
  6068. },
  6069. "Component_[7903212753103164289]": {
  6070. "$type": "EditorInspectorComponent",
  6071. "Id": 7903212753103164289,
  6072. "ComponentOrderEntryArray": [
  6073. {
  6074. "ComponentId": 11829233075139704453
  6075. },
  6076. {
  6077. "ComponentId": 8125251054274400256,
  6078. "SortIndex": 1
  6079. },
  6080. {
  6081. "ComponentId": 17736719688956315985,
  6082. "SortIndex": 2
  6083. },
  6084. {
  6085. "ComponentId": 12724016572532454792,
  6086. "SortIndex": 3
  6087. },
  6088. {
  6089. "ComponentId": 8184187118822500353,
  6090. "SortIndex": 4
  6091. },
  6092. {
  6093. "ComponentId": 11384954117619258935,
  6094. "SortIndex": 5
  6095. },
  6096. {
  6097. "ComponentId": 14564562245168579615,
  6098. "SortIndex": 6
  6099. },
  6100. {
  6101. "ComponentId": 9450029410653326667,
  6102. "SortIndex": 7
  6103. }
  6104. ]
  6105. },
  6106. "Component_[8125251054274400256]": {
  6107. "$type": "GenericComponentWrapper",
  6108. "Id": 8125251054274400256,
  6109. "m_template": {
  6110. "$type": "NetBindComponent"
  6111. }
  6112. },
  6113. "Component_[8184187118822500353]": {
  6114. "$type": "EditorMaterialComponent",
  6115. "Id": 8184187118822500353,
  6116. "Controller": {
  6117. "Configuration": {
  6118. "materials": {
  6119. "{}": {
  6120. "MaterialAsset": {
  6121. "assetId": {
  6122. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  6123. }
  6124. }
  6125. }
  6126. }
  6127. }
  6128. }
  6129. },
  6130. "Component_[9450029410653326667]": {
  6131. "$type": "GenericComponentWrapper",
  6132. "Id": 9450029410653326667,
  6133. "m_template": {
  6134. "$type": "Multiplayer::NetworkRigidBodyComponent"
  6135. }
  6136. },
  6137. "Component_[9452550092591643181]": {
  6138. "$type": "EditorLockComponent",
  6139. "Id": 9452550092591643181
  6140. }
  6141. }
  6142. },
  6143. "Entity_[656467888483]": {
  6144. "Id": "Entity_[656467888483]",
  6145. "Name": "Box4",
  6146. "Components": {
  6147. "Component_[11384954117619258935]": {
  6148. "$type": "EditorColliderComponent",
  6149. "Id": 11384954117619258935,
  6150. "ColliderConfiguration": {
  6151. "MaterialSlots": {
  6152. "Slots": [
  6153. {
  6154. "Name": "Entire object"
  6155. }
  6156. ]
  6157. }
  6158. },
  6159. "ShapeConfiguration": {
  6160. "ShapeType": 1
  6161. },
  6162. "DebugDrawSettings": {
  6163. "LocallyEnabled": false
  6164. }
  6165. },
  6166. "Component_[11829233075139704453]": {
  6167. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  6168. "Id": 11829233075139704453,
  6169. "Parent Entity": "ContainerEntity",
  6170. "Transform Data": {
  6171. "Translate": [
  6172. 0.6456379890441895,
  6173. -1.725468635559082,
  6174. 3.1908931732177734
  6175. ]
  6176. }
  6177. },
  6178. "Component_[12724016572532454792]": {
  6179. "$type": "AZ::Render::EditorMeshComponent",
  6180. "Id": 12724016572532454792,
  6181. "Controller": {
  6182. "Configuration": {
  6183. "ModelAsset": {
  6184. "assetId": {
  6185. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  6186. "subId": 285127096
  6187. },
  6188. "assetHint": "objects/cube.azmodel"
  6189. }
  6190. }
  6191. }
  6192. },
  6193. "Component_[14564562245168579615]": {
  6194. "$type": "EditorRigidBodyComponent",
  6195. "Id": 14564562245168579615,
  6196. "Configuration": {
  6197. "entityId": "",
  6198. "Mass": 999.9999389648438,
  6199. "Inertia tensor": [
  6200. 166.6666717529297,
  6201. 0.0,
  6202. 0.0,
  6203. 0.0,
  6204. 166.6666717529297,
  6205. 0.0,
  6206. 0.0,
  6207. 0.0,
  6208. 166.6666717529297
  6209. ]
  6210. }
  6211. },
  6212. "Component_[16056896985233530106]": {
  6213. "$type": "EditorDisabledCompositionComponent",
  6214. "Id": 16056896985233530106
  6215. },
  6216. "Component_[17648193282110847484]": {
  6217. "$type": "EditorOnlyEntityComponent",
  6218. "Id": 17648193282110847484
  6219. },
  6220. "Component_[17736719688956315985]": {
  6221. "$type": "GenericComponentWrapper",
  6222. "Id": 17736719688956315985,
  6223. "m_template": {
  6224. "$type": "Multiplayer::NetworkTransformComponent"
  6225. }
  6226. },
  6227. "Component_[1835082203551392000]": {
  6228. "$type": "EditorPendingCompositionComponent",
  6229. "Id": 1835082203551392000
  6230. },
  6231. "Component_[2164842339052442926]": {
  6232. "$type": "EditorEntitySortComponent",
  6233. "Id": 2164842339052442926
  6234. },
  6235. "Component_[3933618364732995768]": {
  6236. "$type": "EditorVisibilityComponent",
  6237. "Id": 3933618364732995768
  6238. },
  6239. "Component_[4455772334179006063]": {
  6240. "$type": "EditorEntityIconComponent",
  6241. "Id": 4455772334179006063
  6242. },
  6243. "Component_[7903212753103164289]": {
  6244. "$type": "EditorInspectorComponent",
  6245. "Id": 7903212753103164289,
  6246. "ComponentOrderEntryArray": [
  6247. {
  6248. "ComponentId": 11829233075139704453
  6249. },
  6250. {
  6251. "ComponentId": 8125251054274400256,
  6252. "SortIndex": 1
  6253. },
  6254. {
  6255. "ComponentId": 17736719688956315985,
  6256. "SortIndex": 2
  6257. },
  6258. {
  6259. "ComponentId": 12724016572532454792,
  6260. "SortIndex": 3
  6261. },
  6262. {
  6263. "ComponentId": 8184187118822500353,
  6264. "SortIndex": 4
  6265. },
  6266. {
  6267. "ComponentId": 11384954117619258935,
  6268. "SortIndex": 5
  6269. },
  6270. {
  6271. "ComponentId": 14564562245168579615,
  6272. "SortIndex": 6
  6273. },
  6274. {
  6275. "ComponentId": 9450029410653326667,
  6276. "SortIndex": 7
  6277. }
  6278. ]
  6279. },
  6280. "Component_[8125251054274400256]": {
  6281. "$type": "GenericComponentWrapper",
  6282. "Id": 8125251054274400256,
  6283. "m_template": {
  6284. "$type": "NetBindComponent"
  6285. }
  6286. },
  6287. "Component_[8184187118822500353]": {
  6288. "$type": "EditorMaterialComponent",
  6289. "Id": 8184187118822500353,
  6290. "Controller": {
  6291. "Configuration": {
  6292. "materials": {
  6293. "{}": {
  6294. "MaterialAsset": {
  6295. "assetId": {
  6296. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  6297. }
  6298. }
  6299. }
  6300. }
  6301. }
  6302. }
  6303. },
  6304. "Component_[9450029410653326667]": {
  6305. "$type": "GenericComponentWrapper",
  6306. "Id": 9450029410653326667,
  6307. "m_template": {
  6308. "$type": "Multiplayer::NetworkRigidBodyComponent"
  6309. }
  6310. },
  6311. "Component_[9452550092591643181]": {
  6312. "$type": "EditorLockComponent",
  6313. "Id": 9452550092591643181
  6314. }
  6315. }
  6316. },
  6317. "Entity_[660762855779]": {
  6318. "Id": "Entity_[660762855779]",
  6319. "Name": "Box3",
  6320. "Components": {
  6321. "Component_[11384954117619258935]": {
  6322. "$type": "EditorColliderComponent",
  6323. "Id": 11384954117619258935,
  6324. "ColliderConfiguration": {
  6325. "MaterialSlots": {
  6326. "Slots": [
  6327. {
  6328. "Name": "Entire object"
  6329. }
  6330. ]
  6331. }
  6332. },
  6333. "ShapeConfiguration": {
  6334. "ShapeType": 1
  6335. },
  6336. "DebugDrawSettings": {
  6337. "LocallyEnabled": false
  6338. }
  6339. },
  6340. "Component_[11829233075139704453]": {
  6341. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  6342. "Id": 11829233075139704453,
  6343. "Parent Entity": "ContainerEntity",
  6344. "Transform Data": {
  6345. "Translate": [
  6346. -1.5954484939575195,
  6347. 1.8704166412353516,
  6348. 2.126070022583008
  6349. ]
  6350. }
  6351. },
  6352. "Component_[12724016572532454792]": {
  6353. "$type": "AZ::Render::EditorMeshComponent",
  6354. "Id": 12724016572532454792,
  6355. "Controller": {
  6356. "Configuration": {
  6357. "ModelAsset": {
  6358. "assetId": {
  6359. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  6360. "subId": 285127096
  6361. },
  6362. "assetHint": "objects/cube.azmodel"
  6363. }
  6364. }
  6365. }
  6366. },
  6367. "Component_[14564562245168579615]": {
  6368. "$type": "EditorRigidBodyComponent",
  6369. "Id": 14564562245168579615,
  6370. "Configuration": {
  6371. "entityId": "",
  6372. "Mass": 999.9999389648438,
  6373. "Inertia tensor": [
  6374. 166.6666717529297,
  6375. 0.0,
  6376. 0.0,
  6377. 0.0,
  6378. 166.6666717529297,
  6379. 0.0,
  6380. 0.0,
  6381. 0.0,
  6382. 166.6666717529297
  6383. ]
  6384. }
  6385. },
  6386. "Component_[16056896985233530106]": {
  6387. "$type": "EditorDisabledCompositionComponent",
  6388. "Id": 16056896985233530106
  6389. },
  6390. "Component_[17648193282110847484]": {
  6391. "$type": "EditorOnlyEntityComponent",
  6392. "Id": 17648193282110847484
  6393. },
  6394. "Component_[17736719688956315985]": {
  6395. "$type": "GenericComponentWrapper",
  6396. "Id": 17736719688956315985,
  6397. "m_template": {
  6398. "$type": "Multiplayer::NetworkTransformComponent"
  6399. }
  6400. },
  6401. "Component_[1835082203551392000]": {
  6402. "$type": "EditorPendingCompositionComponent",
  6403. "Id": 1835082203551392000
  6404. },
  6405. "Component_[2164842339052442926]": {
  6406. "$type": "EditorEntitySortComponent",
  6407. "Id": 2164842339052442926
  6408. },
  6409. "Component_[3933618364732995768]": {
  6410. "$type": "EditorVisibilityComponent",
  6411. "Id": 3933618364732995768
  6412. },
  6413. "Component_[4455772334179006063]": {
  6414. "$type": "EditorEntityIconComponent",
  6415. "Id": 4455772334179006063
  6416. },
  6417. "Component_[7903212753103164289]": {
  6418. "$type": "EditorInspectorComponent",
  6419. "Id": 7903212753103164289,
  6420. "ComponentOrderEntryArray": [
  6421. {
  6422. "ComponentId": 11829233075139704453
  6423. },
  6424. {
  6425. "ComponentId": 8125251054274400256,
  6426. "SortIndex": 1
  6427. },
  6428. {
  6429. "ComponentId": 17736719688956315985,
  6430. "SortIndex": 2
  6431. },
  6432. {
  6433. "ComponentId": 12724016572532454792,
  6434. "SortIndex": 3
  6435. },
  6436. {
  6437. "ComponentId": 8184187118822500353,
  6438. "SortIndex": 4
  6439. },
  6440. {
  6441. "ComponentId": 11384954117619258935,
  6442. "SortIndex": 5
  6443. },
  6444. {
  6445. "ComponentId": 14564562245168579615,
  6446. "SortIndex": 6
  6447. },
  6448. {
  6449. "ComponentId": 9450029410653326667,
  6450. "SortIndex": 7
  6451. }
  6452. ]
  6453. },
  6454. "Component_[8125251054274400256]": {
  6455. "$type": "GenericComponentWrapper",
  6456. "Id": 8125251054274400256,
  6457. "m_template": {
  6458. "$type": "NetBindComponent"
  6459. }
  6460. },
  6461. "Component_[8184187118822500353]": {
  6462. "$type": "EditorMaterialComponent",
  6463. "Id": 8184187118822500353,
  6464. "Controller": {
  6465. "Configuration": {
  6466. "materials": {
  6467. "{}": {
  6468. "MaterialAsset": {
  6469. "assetId": {
  6470. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  6471. }
  6472. }
  6473. }
  6474. }
  6475. }
  6476. }
  6477. },
  6478. "Component_[9450029410653326667]": {
  6479. "$type": "GenericComponentWrapper",
  6480. "Id": 9450029410653326667,
  6481. "m_template": {
  6482. "$type": "Multiplayer::NetworkRigidBodyComponent"
  6483. }
  6484. },
  6485. "Component_[9452550092591643181]": {
  6486. "$type": "EditorLockComponent",
  6487. "Id": 9452550092591643181
  6488. }
  6489. }
  6490. },
  6491. "Entity_[665057823075]": {
  6492. "Id": "Entity_[665057823075]",
  6493. "Name": "Box3",
  6494. "Components": {
  6495. "Component_[11384954117619258935]": {
  6496. "$type": "EditorColliderComponent",
  6497. "Id": 11384954117619258935,
  6498. "ColliderConfiguration": {
  6499. "MaterialSlots": {
  6500. "Slots": [
  6501. {
  6502. "Name": "Entire object"
  6503. }
  6504. ]
  6505. }
  6506. },
  6507. "ShapeConfiguration": {
  6508. "ShapeType": 1
  6509. },
  6510. "DebugDrawSettings": {
  6511. "LocallyEnabled": false
  6512. }
  6513. },
  6514. "Component_[11829233075139704453]": {
  6515. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  6516. "Id": 11829233075139704453,
  6517. "Parent Entity": "ContainerEntity",
  6518. "Transform Data": {
  6519. "Translate": [
  6520. 1.7793126106262207,
  6521. -1.725468635559082,
  6522. 2.126070022583008
  6523. ]
  6524. }
  6525. },
  6526. "Component_[12724016572532454792]": {
  6527. "$type": "AZ::Render::EditorMeshComponent",
  6528. "Id": 12724016572532454792,
  6529. "Controller": {
  6530. "Configuration": {
  6531. "ModelAsset": {
  6532. "assetId": {
  6533. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  6534. "subId": 285127096
  6535. },
  6536. "assetHint": "objects/cube.azmodel"
  6537. }
  6538. }
  6539. }
  6540. },
  6541. "Component_[14564562245168579615]": {
  6542. "$type": "EditorRigidBodyComponent",
  6543. "Id": 14564562245168579615,
  6544. "Configuration": {
  6545. "entityId": "",
  6546. "Mass": 999.9999389648438,
  6547. "Inertia tensor": [
  6548. 166.6666717529297,
  6549. 0.0,
  6550. 0.0,
  6551. 0.0,
  6552. 166.6666717529297,
  6553. 0.0,
  6554. 0.0,
  6555. 0.0,
  6556. 166.6666717529297
  6557. ]
  6558. }
  6559. },
  6560. "Component_[16056896985233530106]": {
  6561. "$type": "EditorDisabledCompositionComponent",
  6562. "Id": 16056896985233530106
  6563. },
  6564. "Component_[17648193282110847484]": {
  6565. "$type": "EditorOnlyEntityComponent",
  6566. "Id": 17648193282110847484
  6567. },
  6568. "Component_[17736719688956315985]": {
  6569. "$type": "GenericComponentWrapper",
  6570. "Id": 17736719688956315985,
  6571. "m_template": {
  6572. "$type": "Multiplayer::NetworkTransformComponent"
  6573. }
  6574. },
  6575. "Component_[1835082203551392000]": {
  6576. "$type": "EditorPendingCompositionComponent",
  6577. "Id": 1835082203551392000
  6578. },
  6579. "Component_[2164842339052442926]": {
  6580. "$type": "EditorEntitySortComponent",
  6581. "Id": 2164842339052442926
  6582. },
  6583. "Component_[3933618364732995768]": {
  6584. "$type": "EditorVisibilityComponent",
  6585. "Id": 3933618364732995768
  6586. },
  6587. "Component_[4455772334179006063]": {
  6588. "$type": "EditorEntityIconComponent",
  6589. "Id": 4455772334179006063
  6590. },
  6591. "Component_[7903212753103164289]": {
  6592. "$type": "EditorInspectorComponent",
  6593. "Id": 7903212753103164289,
  6594. "ComponentOrderEntryArray": [
  6595. {
  6596. "ComponentId": 11829233075139704453
  6597. },
  6598. {
  6599. "ComponentId": 8125251054274400256,
  6600. "SortIndex": 1
  6601. },
  6602. {
  6603. "ComponentId": 17736719688956315985,
  6604. "SortIndex": 2
  6605. },
  6606. {
  6607. "ComponentId": 12724016572532454792,
  6608. "SortIndex": 3
  6609. },
  6610. {
  6611. "ComponentId": 8184187118822500353,
  6612. "SortIndex": 4
  6613. },
  6614. {
  6615. "ComponentId": 11384954117619258935,
  6616. "SortIndex": 5
  6617. },
  6618. {
  6619. "ComponentId": 14564562245168579615,
  6620. "SortIndex": 6
  6621. },
  6622. {
  6623. "ComponentId": 9450029410653326667,
  6624. "SortIndex": 7
  6625. }
  6626. ]
  6627. },
  6628. "Component_[8125251054274400256]": {
  6629. "$type": "GenericComponentWrapper",
  6630. "Id": 8125251054274400256,
  6631. "m_template": {
  6632. "$type": "NetBindComponent"
  6633. }
  6634. },
  6635. "Component_[8184187118822500353]": {
  6636. "$type": "EditorMaterialComponent",
  6637. "Id": 8184187118822500353,
  6638. "Controller": {
  6639. "Configuration": {
  6640. "materials": {
  6641. "{}": {
  6642. "MaterialAsset": {
  6643. "assetId": {
  6644. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  6645. }
  6646. }
  6647. }
  6648. }
  6649. }
  6650. }
  6651. },
  6652. "Component_[9450029410653326667]": {
  6653. "$type": "GenericComponentWrapper",
  6654. "Id": 9450029410653326667,
  6655. "m_template": {
  6656. "$type": "Multiplayer::NetworkRigidBodyComponent"
  6657. }
  6658. },
  6659. "Component_[9452550092591643181]": {
  6660. "$type": "EditorLockComponent",
  6661. "Id": 9452550092591643181
  6662. }
  6663. }
  6664. },
  6665. "Entity_[669352790371]": {
  6666. "Id": "Entity_[669352790371]",
  6667. "Name": "Box1",
  6668. "Components": {
  6669. "Component_[11384954117619258935]": {
  6670. "$type": "EditorColliderComponent",
  6671. "Id": 11384954117619258935,
  6672. "ColliderConfiguration": {
  6673. "MaterialSlots": {
  6674. "Slots": [
  6675. {
  6676. "Name": "Entire object"
  6677. }
  6678. ]
  6679. }
  6680. },
  6681. "ShapeConfiguration": {
  6682. "ShapeType": 1
  6683. },
  6684. "DebugDrawSettings": {
  6685. "LocallyEnabled": false
  6686. }
  6687. },
  6688. "Component_[11829233075139704453]": {
  6689. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  6690. "Id": 11829233075139704453,
  6691. "Parent Entity": "ContainerEntity",
  6692. "Transform Data": {
  6693. "Translate": [
  6694. 0.6456379890441895,
  6695. 0.6112356185913086,
  6696. 0.0
  6697. ]
  6698. }
  6699. },
  6700. "Component_[12724016572532454792]": {
  6701. "$type": "AZ::Render::EditorMeshComponent",
  6702. "Id": 12724016572532454792,
  6703. "Controller": {
  6704. "Configuration": {
  6705. "ModelAsset": {
  6706. "assetId": {
  6707. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  6708. "subId": 285127096
  6709. },
  6710. "assetHint": "objects/cube.azmodel"
  6711. }
  6712. }
  6713. }
  6714. },
  6715. "Component_[14564562245168579615]": {
  6716. "$type": "EditorRigidBodyComponent",
  6717. "Id": 14564562245168579615,
  6718. "Configuration": {
  6719. "entityId": "",
  6720. "Mass": 999.9999389648438,
  6721. "Inertia tensor": [
  6722. 166.6666717529297,
  6723. 0.0,
  6724. 0.0,
  6725. 0.0,
  6726. 166.6666717529297,
  6727. 0.0,
  6728. 0.0,
  6729. 0.0,
  6730. 166.6666717529297
  6731. ]
  6732. }
  6733. },
  6734. "Component_[16056896985233530106]": {
  6735. "$type": "EditorDisabledCompositionComponent",
  6736. "Id": 16056896985233530106
  6737. },
  6738. "Component_[17648193282110847484]": {
  6739. "$type": "EditorOnlyEntityComponent",
  6740. "Id": 17648193282110847484
  6741. },
  6742. "Component_[17736719688956315985]": {
  6743. "$type": "GenericComponentWrapper",
  6744. "Id": 17736719688956315985,
  6745. "m_template": {
  6746. "$type": "Multiplayer::NetworkTransformComponent"
  6747. }
  6748. },
  6749. "Component_[1835082203551392000]": {
  6750. "$type": "EditorPendingCompositionComponent",
  6751. "Id": 1835082203551392000
  6752. },
  6753. "Component_[2164842339052442926]": {
  6754. "$type": "EditorEntitySortComponent",
  6755. "Id": 2164842339052442926
  6756. },
  6757. "Component_[3933618364732995768]": {
  6758. "$type": "EditorVisibilityComponent",
  6759. "Id": 3933618364732995768
  6760. },
  6761. "Component_[4455772334179006063]": {
  6762. "$type": "EditorEntityIconComponent",
  6763. "Id": 4455772334179006063
  6764. },
  6765. "Component_[7903212753103164289]": {
  6766. "$type": "EditorInspectorComponent",
  6767. "Id": 7903212753103164289,
  6768. "ComponentOrderEntryArray": [
  6769. {
  6770. "ComponentId": 11829233075139704453
  6771. },
  6772. {
  6773. "ComponentId": 8125251054274400256,
  6774. "SortIndex": 1
  6775. },
  6776. {
  6777. "ComponentId": 17736719688956315985,
  6778. "SortIndex": 2
  6779. },
  6780. {
  6781. "ComponentId": 12724016572532454792,
  6782. "SortIndex": 3
  6783. },
  6784. {
  6785. "ComponentId": 8184187118822500353,
  6786. "SortIndex": 4
  6787. },
  6788. {
  6789. "ComponentId": 11384954117619258935,
  6790. "SortIndex": 5
  6791. },
  6792. {
  6793. "ComponentId": 14564562245168579615,
  6794. "SortIndex": 6
  6795. },
  6796. {
  6797. "ComponentId": 9450029410653326667,
  6798. "SortIndex": 7
  6799. }
  6800. ]
  6801. },
  6802. "Component_[8125251054274400256]": {
  6803. "$type": "GenericComponentWrapper",
  6804. "Id": 8125251054274400256,
  6805. "m_template": {
  6806. "$type": "NetBindComponent"
  6807. }
  6808. },
  6809. "Component_[8184187118822500353]": {
  6810. "$type": "EditorMaterialComponent",
  6811. "Id": 8184187118822500353,
  6812. "Controller": {
  6813. "Configuration": {
  6814. "materials": {
  6815. "{}": {
  6816. "MaterialAsset": {
  6817. "assetId": {
  6818. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  6819. }
  6820. }
  6821. }
  6822. }
  6823. }
  6824. }
  6825. },
  6826. "Component_[9450029410653326667]": {
  6827. "$type": "GenericComponentWrapper",
  6828. "Id": 9450029410653326667,
  6829. "m_template": {
  6830. "$type": "Multiplayer::NetworkRigidBodyComponent"
  6831. }
  6832. },
  6833. "Component_[9452550092591643181]": {
  6834. "$type": "EditorLockComponent",
  6835. "Id": 9452550092591643181
  6836. }
  6837. }
  6838. },
  6839. "Entity_[673647757667]": {
  6840. "Id": "Entity_[673647757667]",
  6841. "Name": "Box1",
  6842. "Components": {
  6843. "Component_[11384954117619258935]": {
  6844. "$type": "EditorColliderComponent",
  6845. "Id": 11384954117619258935,
  6846. "ColliderConfiguration": {
  6847. "MaterialSlots": {
  6848. "Slots": [
  6849. {
  6850. "Name": "Entire object"
  6851. }
  6852. ]
  6853. }
  6854. },
  6855. "ShapeConfiguration": {
  6856. "ShapeType": 1
  6857. },
  6858. "DebugDrawSettings": {
  6859. "LocallyEnabled": false
  6860. }
  6861. },
  6862. "Component_[11829233075139704453]": {
  6863. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  6864. "Id": 11829233075139704453,
  6865. "Parent Entity": "ContainerEntity",
  6866. "Transform Data": {
  6867. "Translate": [
  6868. -1.5954484939575195,
  6869. -1.725468635559082,
  6870. 0.0
  6871. ]
  6872. }
  6873. },
  6874. "Component_[12724016572532454792]": {
  6875. "$type": "AZ::Render::EditorMeshComponent",
  6876. "Id": 12724016572532454792,
  6877. "Controller": {
  6878. "Configuration": {
  6879. "ModelAsset": {
  6880. "assetId": {
  6881. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  6882. "subId": 285127096
  6883. },
  6884. "assetHint": "objects/cube.azmodel"
  6885. }
  6886. }
  6887. }
  6888. },
  6889. "Component_[14564562245168579615]": {
  6890. "$type": "EditorRigidBodyComponent",
  6891. "Id": 14564562245168579615,
  6892. "Configuration": {
  6893. "entityId": "",
  6894. "Mass": 999.9999389648438,
  6895. "Inertia tensor": [
  6896. 166.6666717529297,
  6897. 0.0,
  6898. 0.0,
  6899. 0.0,
  6900. 166.6666717529297,
  6901. 0.0,
  6902. 0.0,
  6903. 0.0,
  6904. 166.6666717529297
  6905. ]
  6906. }
  6907. },
  6908. "Component_[16056896985233530106]": {
  6909. "$type": "EditorDisabledCompositionComponent",
  6910. "Id": 16056896985233530106
  6911. },
  6912. "Component_[17648193282110847484]": {
  6913. "$type": "EditorOnlyEntityComponent",
  6914. "Id": 17648193282110847484
  6915. },
  6916. "Component_[17736719688956315985]": {
  6917. "$type": "GenericComponentWrapper",
  6918. "Id": 17736719688956315985,
  6919. "m_template": {
  6920. "$type": "Multiplayer::NetworkTransformComponent"
  6921. }
  6922. },
  6923. "Component_[1835082203551392000]": {
  6924. "$type": "EditorPendingCompositionComponent",
  6925. "Id": 1835082203551392000
  6926. },
  6927. "Component_[2164842339052442926]": {
  6928. "$type": "EditorEntitySortComponent",
  6929. "Id": 2164842339052442926
  6930. },
  6931. "Component_[3933618364732995768]": {
  6932. "$type": "EditorVisibilityComponent",
  6933. "Id": 3933618364732995768
  6934. },
  6935. "Component_[4455772334179006063]": {
  6936. "$type": "EditorEntityIconComponent",
  6937. "Id": 4455772334179006063
  6938. },
  6939. "Component_[7903212753103164289]": {
  6940. "$type": "EditorInspectorComponent",
  6941. "Id": 7903212753103164289,
  6942. "ComponentOrderEntryArray": [
  6943. {
  6944. "ComponentId": 11829233075139704453
  6945. },
  6946. {
  6947. "ComponentId": 8125251054274400256,
  6948. "SortIndex": 1
  6949. },
  6950. {
  6951. "ComponentId": 17736719688956315985,
  6952. "SortIndex": 2
  6953. },
  6954. {
  6955. "ComponentId": 12724016572532454792,
  6956. "SortIndex": 3
  6957. },
  6958. {
  6959. "ComponentId": 8184187118822500353,
  6960. "SortIndex": 4
  6961. },
  6962. {
  6963. "ComponentId": 11384954117619258935,
  6964. "SortIndex": 5
  6965. },
  6966. {
  6967. "ComponentId": 14564562245168579615,
  6968. "SortIndex": 6
  6969. },
  6970. {
  6971. "ComponentId": 9450029410653326667,
  6972. "SortIndex": 7
  6973. }
  6974. ]
  6975. },
  6976. "Component_[8125251054274400256]": {
  6977. "$type": "GenericComponentWrapper",
  6978. "Id": 8125251054274400256,
  6979. "m_template": {
  6980. "$type": "NetBindComponent"
  6981. }
  6982. },
  6983. "Component_[8184187118822500353]": {
  6984. "$type": "EditorMaterialComponent",
  6985. "Id": 8184187118822500353,
  6986. "Controller": {
  6987. "Configuration": {
  6988. "materials": {
  6989. "{}": {
  6990. "MaterialAsset": {
  6991. "assetId": {
  6992. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  6993. }
  6994. }
  6995. }
  6996. }
  6997. }
  6998. }
  6999. },
  7000. "Component_[9450029410653326667]": {
  7001. "$type": "GenericComponentWrapper",
  7002. "Id": 9450029410653326667,
  7003. "m_template": {
  7004. "$type": "Multiplayer::NetworkRigidBodyComponent"
  7005. }
  7006. },
  7007. "Component_[9452550092591643181]": {
  7008. "$type": "EditorLockComponent",
  7009. "Id": 9452550092591643181
  7010. }
  7011. }
  7012. },
  7013. "Entity_[677942724963]": {
  7014. "Id": "Entity_[677942724963]",
  7015. "Name": "Box4",
  7016. "Components": {
  7017. "Component_[11384954117619258935]": {
  7018. "$type": "EditorColliderComponent",
  7019. "Id": 11384954117619258935,
  7020. "ColliderConfiguration": {
  7021. "MaterialSlots": {
  7022. "Slots": [
  7023. {
  7024. "Name": "Entire object"
  7025. }
  7026. ]
  7027. }
  7028. },
  7029. "ShapeConfiguration": {
  7030. "ShapeType": 1
  7031. },
  7032. "DebugDrawSettings": {
  7033. "LocallyEnabled": false
  7034. }
  7035. },
  7036. "Component_[11829233075139704453]": {
  7037. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  7038. "Id": 11829233075139704453,
  7039. "Parent Entity": "ContainerEntity",
  7040. "Transform Data": {
  7041. "Translate": [
  7042. -0.4683690071105957,
  7043. 1.8704166412353516,
  7044. 3.1908931732177734
  7045. ]
  7046. }
  7047. },
  7048. "Component_[12724016572532454792]": {
  7049. "$type": "AZ::Render::EditorMeshComponent",
  7050. "Id": 12724016572532454792,
  7051. "Controller": {
  7052. "Configuration": {
  7053. "ModelAsset": {
  7054. "assetId": {
  7055. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  7056. "subId": 285127096
  7057. },
  7058. "assetHint": "objects/cube.azmodel"
  7059. }
  7060. }
  7061. }
  7062. },
  7063. "Component_[14564562245168579615]": {
  7064. "$type": "EditorRigidBodyComponent",
  7065. "Id": 14564562245168579615,
  7066. "Configuration": {
  7067. "entityId": "",
  7068. "Mass": 999.9999389648438,
  7069. "Inertia tensor": [
  7070. 166.6666717529297,
  7071. 0.0,
  7072. 0.0,
  7073. 0.0,
  7074. 166.6666717529297,
  7075. 0.0,
  7076. 0.0,
  7077. 0.0,
  7078. 166.6666717529297
  7079. ]
  7080. }
  7081. },
  7082. "Component_[16056896985233530106]": {
  7083. "$type": "EditorDisabledCompositionComponent",
  7084. "Id": 16056896985233530106
  7085. },
  7086. "Component_[17648193282110847484]": {
  7087. "$type": "EditorOnlyEntityComponent",
  7088. "Id": 17648193282110847484
  7089. },
  7090. "Component_[17736719688956315985]": {
  7091. "$type": "GenericComponentWrapper",
  7092. "Id": 17736719688956315985,
  7093. "m_template": {
  7094. "$type": "Multiplayer::NetworkTransformComponent"
  7095. }
  7096. },
  7097. "Component_[1835082203551392000]": {
  7098. "$type": "EditorPendingCompositionComponent",
  7099. "Id": 1835082203551392000
  7100. },
  7101. "Component_[2164842339052442926]": {
  7102. "$type": "EditorEntitySortComponent",
  7103. "Id": 2164842339052442926
  7104. },
  7105. "Component_[3933618364732995768]": {
  7106. "$type": "EditorVisibilityComponent",
  7107. "Id": 3933618364732995768
  7108. },
  7109. "Component_[4455772334179006063]": {
  7110. "$type": "EditorEntityIconComponent",
  7111. "Id": 4455772334179006063
  7112. },
  7113. "Component_[7903212753103164289]": {
  7114. "$type": "EditorInspectorComponent",
  7115. "Id": 7903212753103164289,
  7116. "ComponentOrderEntryArray": [
  7117. {
  7118. "ComponentId": 11829233075139704453
  7119. },
  7120. {
  7121. "ComponentId": 8125251054274400256,
  7122. "SortIndex": 1
  7123. },
  7124. {
  7125. "ComponentId": 17736719688956315985,
  7126. "SortIndex": 2
  7127. },
  7128. {
  7129. "ComponentId": 12724016572532454792,
  7130. "SortIndex": 3
  7131. },
  7132. {
  7133. "ComponentId": 8184187118822500353,
  7134. "SortIndex": 4
  7135. },
  7136. {
  7137. "ComponentId": 11384954117619258935,
  7138. "SortIndex": 5
  7139. },
  7140. {
  7141. "ComponentId": 14564562245168579615,
  7142. "SortIndex": 6
  7143. },
  7144. {
  7145. "ComponentId": 9450029410653326667,
  7146. "SortIndex": 7
  7147. }
  7148. ]
  7149. },
  7150. "Component_[8125251054274400256]": {
  7151. "$type": "GenericComponentWrapper",
  7152. "Id": 8125251054274400256,
  7153. "m_template": {
  7154. "$type": "NetBindComponent"
  7155. }
  7156. },
  7157. "Component_[8184187118822500353]": {
  7158. "$type": "EditorMaterialComponent",
  7159. "Id": 8184187118822500353,
  7160. "Controller": {
  7161. "Configuration": {
  7162. "materials": {
  7163. "{}": {
  7164. "MaterialAsset": {
  7165. "assetId": {
  7166. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  7167. }
  7168. }
  7169. }
  7170. }
  7171. }
  7172. }
  7173. },
  7174. "Component_[9450029410653326667]": {
  7175. "$type": "GenericComponentWrapper",
  7176. "Id": 9450029410653326667,
  7177. "m_template": {
  7178. "$type": "Multiplayer::NetworkRigidBodyComponent"
  7179. }
  7180. },
  7181. "Component_[9452550092591643181]": {
  7182. "$type": "EditorLockComponent",
  7183. "Id": 9452550092591643181
  7184. }
  7185. }
  7186. },
  7187. "Entity_[682237692259]": {
  7188. "Id": "Entity_[682237692259]",
  7189. "Name": "Box3",
  7190. "Components": {
  7191. "Component_[11384954117619258935]": {
  7192. "$type": "EditorColliderComponent",
  7193. "Id": 11384954117619258935,
  7194. "ColliderConfiguration": {
  7195. "MaterialSlots": {
  7196. "Slots": [
  7197. {
  7198. "Name": "Entire object"
  7199. }
  7200. ]
  7201. }
  7202. },
  7203. "ShapeConfiguration": {
  7204. "ShapeType": 1
  7205. },
  7206. "DebugDrawSettings": {
  7207. "LocallyEnabled": false
  7208. }
  7209. },
  7210. "Component_[11829233075139704453]": {
  7211. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  7212. "Id": 11829233075139704453,
  7213. "Parent Entity": "ContainerEntity",
  7214. "Transform Data": {
  7215. "Translate": [
  7216. -1.5954484939575195,
  7217. 0.6112356185913086,
  7218. 2.126070022583008
  7219. ]
  7220. }
  7221. },
  7222. "Component_[12724016572532454792]": {
  7223. "$type": "AZ::Render::EditorMeshComponent",
  7224. "Id": 12724016572532454792,
  7225. "Controller": {
  7226. "Configuration": {
  7227. "ModelAsset": {
  7228. "assetId": {
  7229. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  7230. "subId": 285127096
  7231. },
  7232. "assetHint": "objects/cube.azmodel"
  7233. }
  7234. }
  7235. }
  7236. },
  7237. "Component_[14564562245168579615]": {
  7238. "$type": "EditorRigidBodyComponent",
  7239. "Id": 14564562245168579615,
  7240. "Configuration": {
  7241. "entityId": "",
  7242. "Mass": 999.9999389648438,
  7243. "Inertia tensor": [
  7244. 166.6666717529297,
  7245. 0.0,
  7246. 0.0,
  7247. 0.0,
  7248. 166.6666717529297,
  7249. 0.0,
  7250. 0.0,
  7251. 0.0,
  7252. 166.6666717529297
  7253. ]
  7254. }
  7255. },
  7256. "Component_[16056896985233530106]": {
  7257. "$type": "EditorDisabledCompositionComponent",
  7258. "Id": 16056896985233530106
  7259. },
  7260. "Component_[17648193282110847484]": {
  7261. "$type": "EditorOnlyEntityComponent",
  7262. "Id": 17648193282110847484
  7263. },
  7264. "Component_[17736719688956315985]": {
  7265. "$type": "GenericComponentWrapper",
  7266. "Id": 17736719688956315985,
  7267. "m_template": {
  7268. "$type": "Multiplayer::NetworkTransformComponent"
  7269. }
  7270. },
  7271. "Component_[1835082203551392000]": {
  7272. "$type": "EditorPendingCompositionComponent",
  7273. "Id": 1835082203551392000
  7274. },
  7275. "Component_[2164842339052442926]": {
  7276. "$type": "EditorEntitySortComponent",
  7277. "Id": 2164842339052442926
  7278. },
  7279. "Component_[3933618364732995768]": {
  7280. "$type": "EditorVisibilityComponent",
  7281. "Id": 3933618364732995768
  7282. },
  7283. "Component_[4455772334179006063]": {
  7284. "$type": "EditorEntityIconComponent",
  7285. "Id": 4455772334179006063
  7286. },
  7287. "Component_[7903212753103164289]": {
  7288. "$type": "EditorInspectorComponent",
  7289. "Id": 7903212753103164289,
  7290. "ComponentOrderEntryArray": [
  7291. {
  7292. "ComponentId": 11829233075139704453
  7293. },
  7294. {
  7295. "ComponentId": 8125251054274400256,
  7296. "SortIndex": 1
  7297. },
  7298. {
  7299. "ComponentId": 17736719688956315985,
  7300. "SortIndex": 2
  7301. },
  7302. {
  7303. "ComponentId": 12724016572532454792,
  7304. "SortIndex": 3
  7305. },
  7306. {
  7307. "ComponentId": 8184187118822500353,
  7308. "SortIndex": 4
  7309. },
  7310. {
  7311. "ComponentId": 11384954117619258935,
  7312. "SortIndex": 5
  7313. },
  7314. {
  7315. "ComponentId": 14564562245168579615,
  7316. "SortIndex": 6
  7317. },
  7318. {
  7319. "ComponentId": 9450029410653326667,
  7320. "SortIndex": 7
  7321. }
  7322. ]
  7323. },
  7324. "Component_[8125251054274400256]": {
  7325. "$type": "GenericComponentWrapper",
  7326. "Id": 8125251054274400256,
  7327. "m_template": {
  7328. "$type": "NetBindComponent"
  7329. }
  7330. },
  7331. "Component_[8184187118822500353]": {
  7332. "$type": "EditorMaterialComponent",
  7333. "Id": 8184187118822500353,
  7334. "Controller": {
  7335. "Configuration": {
  7336. "materials": {
  7337. "{}": {
  7338. "MaterialAsset": {
  7339. "assetId": {
  7340. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  7341. }
  7342. }
  7343. }
  7344. }
  7345. }
  7346. }
  7347. },
  7348. "Component_[9450029410653326667]": {
  7349. "$type": "GenericComponentWrapper",
  7350. "Id": 9450029410653326667,
  7351. "m_template": {
  7352. "$type": "Multiplayer::NetworkRigidBodyComponent"
  7353. }
  7354. },
  7355. "Component_[9452550092591643181]": {
  7356. "$type": "EditorLockComponent",
  7357. "Id": 9452550092591643181
  7358. }
  7359. }
  7360. },
  7361. "Entity_[686532659555]": {
  7362. "Id": "Entity_[686532659555]",
  7363. "Name": "Box4",
  7364. "Components": {
  7365. "Component_[11384954117619258935]": {
  7366. "$type": "EditorColliderComponent",
  7367. "Id": 11384954117619258935,
  7368. "ColliderConfiguration": {
  7369. "MaterialSlots": {
  7370. "Slots": [
  7371. {
  7372. "Name": "Entire object"
  7373. }
  7374. ]
  7375. }
  7376. },
  7377. "ShapeConfiguration": {
  7378. "ShapeType": 1
  7379. },
  7380. "DebugDrawSettings": {
  7381. "LocallyEnabled": false
  7382. }
  7383. },
  7384. "Component_[11829233075139704453]": {
  7385. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  7386. "Id": 11829233075139704453,
  7387. "Parent Entity": "ContainerEntity",
  7388. "Transform Data": {
  7389. "Translate": [
  7390. 0.6456379890441895,
  7391. -0.6137781143188477,
  7392. 3.1908931732177734
  7393. ]
  7394. }
  7395. },
  7396. "Component_[12724016572532454792]": {
  7397. "$type": "AZ::Render::EditorMeshComponent",
  7398. "Id": 12724016572532454792,
  7399. "Controller": {
  7400. "Configuration": {
  7401. "ModelAsset": {
  7402. "assetId": {
  7403. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  7404. "subId": 285127096
  7405. },
  7406. "assetHint": "objects/cube.azmodel"
  7407. }
  7408. }
  7409. }
  7410. },
  7411. "Component_[14564562245168579615]": {
  7412. "$type": "EditorRigidBodyComponent",
  7413. "Id": 14564562245168579615,
  7414. "Configuration": {
  7415. "entityId": "",
  7416. "Mass": 999.9999389648438,
  7417. "Inertia tensor": [
  7418. 166.6666717529297,
  7419. 0.0,
  7420. 0.0,
  7421. 0.0,
  7422. 166.6666717529297,
  7423. 0.0,
  7424. 0.0,
  7425. 0.0,
  7426. 166.6666717529297
  7427. ]
  7428. }
  7429. },
  7430. "Component_[16056896985233530106]": {
  7431. "$type": "EditorDisabledCompositionComponent",
  7432. "Id": 16056896985233530106
  7433. },
  7434. "Component_[17648193282110847484]": {
  7435. "$type": "EditorOnlyEntityComponent",
  7436. "Id": 17648193282110847484
  7437. },
  7438. "Component_[17736719688956315985]": {
  7439. "$type": "GenericComponentWrapper",
  7440. "Id": 17736719688956315985,
  7441. "m_template": {
  7442. "$type": "Multiplayer::NetworkTransformComponent"
  7443. }
  7444. },
  7445. "Component_[1835082203551392000]": {
  7446. "$type": "EditorPendingCompositionComponent",
  7447. "Id": 1835082203551392000
  7448. },
  7449. "Component_[2164842339052442926]": {
  7450. "$type": "EditorEntitySortComponent",
  7451. "Id": 2164842339052442926
  7452. },
  7453. "Component_[3933618364732995768]": {
  7454. "$type": "EditorVisibilityComponent",
  7455. "Id": 3933618364732995768
  7456. },
  7457. "Component_[4455772334179006063]": {
  7458. "$type": "EditorEntityIconComponent",
  7459. "Id": 4455772334179006063
  7460. },
  7461. "Component_[7903212753103164289]": {
  7462. "$type": "EditorInspectorComponent",
  7463. "Id": 7903212753103164289,
  7464. "ComponentOrderEntryArray": [
  7465. {
  7466. "ComponentId": 11829233075139704453
  7467. },
  7468. {
  7469. "ComponentId": 8125251054274400256,
  7470. "SortIndex": 1
  7471. },
  7472. {
  7473. "ComponentId": 17736719688956315985,
  7474. "SortIndex": 2
  7475. },
  7476. {
  7477. "ComponentId": 12724016572532454792,
  7478. "SortIndex": 3
  7479. },
  7480. {
  7481. "ComponentId": 8184187118822500353,
  7482. "SortIndex": 4
  7483. },
  7484. {
  7485. "ComponentId": 11384954117619258935,
  7486. "SortIndex": 5
  7487. },
  7488. {
  7489. "ComponentId": 14564562245168579615,
  7490. "SortIndex": 6
  7491. },
  7492. {
  7493. "ComponentId": 9450029410653326667,
  7494. "SortIndex": 7
  7495. }
  7496. ]
  7497. },
  7498. "Component_[8125251054274400256]": {
  7499. "$type": "GenericComponentWrapper",
  7500. "Id": 8125251054274400256,
  7501. "m_template": {
  7502. "$type": "NetBindComponent"
  7503. }
  7504. },
  7505. "Component_[8184187118822500353]": {
  7506. "$type": "EditorMaterialComponent",
  7507. "Id": 8184187118822500353,
  7508. "Controller": {
  7509. "Configuration": {
  7510. "materials": {
  7511. "{}": {
  7512. "MaterialAsset": {
  7513. "assetId": {
  7514. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  7515. }
  7516. }
  7517. }
  7518. }
  7519. }
  7520. }
  7521. },
  7522. "Component_[9450029410653326667]": {
  7523. "$type": "GenericComponentWrapper",
  7524. "Id": 9450029410653326667,
  7525. "m_template": {
  7526. "$type": "Multiplayer::NetworkRigidBodyComponent"
  7527. }
  7528. },
  7529. "Component_[9452550092591643181]": {
  7530. "$type": "EditorLockComponent",
  7531. "Id": 9452550092591643181
  7532. }
  7533. }
  7534. },
  7535. "Entity_[695122594147]": {
  7536. "Id": "Entity_[695122594147]",
  7537. "Name": "Box2",
  7538. "Components": {
  7539. "Component_[11384954117619258935]": {
  7540. "$type": "EditorColliderComponent",
  7541. "Id": 11384954117619258935,
  7542. "ColliderConfiguration": {
  7543. "MaterialSlots": {
  7544. "Slots": [
  7545. {
  7546. "Name": "Entire object"
  7547. }
  7548. ]
  7549. }
  7550. },
  7551. "ShapeConfiguration": {
  7552. "ShapeType": 1
  7553. },
  7554. "DebugDrawSettings": {
  7555. "LocallyEnabled": false
  7556. }
  7557. },
  7558. "Component_[11829233075139704453]": {
  7559. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  7560. "Id": 11829233075139704453,
  7561. "Parent Entity": "ContainerEntity",
  7562. "Transform Data": {
  7563. "Translate": [
  7564. -0.4683690071105957,
  7565. -0.6137781143188477,
  7566. 1.0648231506347656
  7567. ]
  7568. }
  7569. },
  7570. "Component_[12724016572532454792]": {
  7571. "$type": "AZ::Render::EditorMeshComponent",
  7572. "Id": 12724016572532454792,
  7573. "Controller": {
  7574. "Configuration": {
  7575. "ModelAsset": {
  7576. "assetId": {
  7577. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  7578. "subId": 285127096
  7579. },
  7580. "assetHint": "objects/cube.azmodel"
  7581. }
  7582. }
  7583. }
  7584. },
  7585. "Component_[14564562245168579615]": {
  7586. "$type": "EditorRigidBodyComponent",
  7587. "Id": 14564562245168579615,
  7588. "Configuration": {
  7589. "entityId": "",
  7590. "Mass": 999.9999389648438,
  7591. "Inertia tensor": [
  7592. 166.6666717529297,
  7593. 0.0,
  7594. 0.0,
  7595. 0.0,
  7596. 166.6666717529297,
  7597. 0.0,
  7598. 0.0,
  7599. 0.0,
  7600. 166.6666717529297
  7601. ]
  7602. }
  7603. },
  7604. "Component_[16056896985233530106]": {
  7605. "$type": "EditorDisabledCompositionComponent",
  7606. "Id": 16056896985233530106
  7607. },
  7608. "Component_[17648193282110847484]": {
  7609. "$type": "EditorOnlyEntityComponent",
  7610. "Id": 17648193282110847484
  7611. },
  7612. "Component_[17736719688956315985]": {
  7613. "$type": "GenericComponentWrapper",
  7614. "Id": 17736719688956315985,
  7615. "m_template": {
  7616. "$type": "Multiplayer::NetworkTransformComponent"
  7617. }
  7618. },
  7619. "Component_[1835082203551392000]": {
  7620. "$type": "EditorPendingCompositionComponent",
  7621. "Id": 1835082203551392000
  7622. },
  7623. "Component_[2164842339052442926]": {
  7624. "$type": "EditorEntitySortComponent",
  7625. "Id": 2164842339052442926
  7626. },
  7627. "Component_[3933618364732995768]": {
  7628. "$type": "EditorVisibilityComponent",
  7629. "Id": 3933618364732995768
  7630. },
  7631. "Component_[4455772334179006063]": {
  7632. "$type": "EditorEntityIconComponent",
  7633. "Id": 4455772334179006063
  7634. },
  7635. "Component_[7903212753103164289]": {
  7636. "$type": "EditorInspectorComponent",
  7637. "Id": 7903212753103164289,
  7638. "ComponentOrderEntryArray": [
  7639. {
  7640. "ComponentId": 11829233075139704453
  7641. },
  7642. {
  7643. "ComponentId": 8125251054274400256,
  7644. "SortIndex": 1
  7645. },
  7646. {
  7647. "ComponentId": 17736719688956315985,
  7648. "SortIndex": 2
  7649. },
  7650. {
  7651. "ComponentId": 12724016572532454792,
  7652. "SortIndex": 3
  7653. },
  7654. {
  7655. "ComponentId": 8184187118822500353,
  7656. "SortIndex": 4
  7657. },
  7658. {
  7659. "ComponentId": 11384954117619258935,
  7660. "SortIndex": 5
  7661. },
  7662. {
  7663. "ComponentId": 14564562245168579615,
  7664. "SortIndex": 6
  7665. },
  7666. {
  7667. "ComponentId": 9450029410653326667,
  7668. "SortIndex": 7
  7669. }
  7670. ]
  7671. },
  7672. "Component_[8125251054274400256]": {
  7673. "$type": "GenericComponentWrapper",
  7674. "Id": 8125251054274400256,
  7675. "m_template": {
  7676. "$type": "NetBindComponent"
  7677. }
  7678. },
  7679. "Component_[8184187118822500353]": {
  7680. "$type": "EditorMaterialComponent",
  7681. "Id": 8184187118822500353,
  7682. "Controller": {
  7683. "Configuration": {
  7684. "materials": {
  7685. "{}": {
  7686. "MaterialAsset": {
  7687. "assetId": {
  7688. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  7689. }
  7690. }
  7691. }
  7692. }
  7693. }
  7694. }
  7695. },
  7696. "Component_[9450029410653326667]": {
  7697. "$type": "GenericComponentWrapper",
  7698. "Id": 9450029410653326667,
  7699. "m_template": {
  7700. "$type": "Multiplayer::NetworkRigidBodyComponent"
  7701. }
  7702. },
  7703. "Component_[9452550092591643181]": {
  7704. "$type": "EditorLockComponent",
  7705. "Id": 9452550092591643181
  7706. }
  7707. }
  7708. },
  7709. "Entity_[699417561443]": {
  7710. "Id": "Entity_[699417561443]",
  7711. "Name": "Box3",
  7712. "Components": {
  7713. "Component_[11384954117619258935]": {
  7714. "$type": "EditorColliderComponent",
  7715. "Id": 11384954117619258935,
  7716. "ColliderConfiguration": {
  7717. "MaterialSlots": {
  7718. "Slots": [
  7719. {
  7720. "Name": "Entire object"
  7721. }
  7722. ]
  7723. }
  7724. },
  7725. "ShapeConfiguration": {
  7726. "ShapeType": 1
  7727. },
  7728. "DebugDrawSettings": {
  7729. "LocallyEnabled": false
  7730. }
  7731. },
  7732. "Component_[11829233075139704453]": {
  7733. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  7734. "Id": 11829233075139704453,
  7735. "Parent Entity": "ContainerEntity",
  7736. "Transform Data": {
  7737. "Translate": [
  7738. -0.4683690071105957,
  7739. -1.725468635559082,
  7740. 2.126070022583008
  7741. ]
  7742. }
  7743. },
  7744. "Component_[12724016572532454792]": {
  7745. "$type": "AZ::Render::EditorMeshComponent",
  7746. "Id": 12724016572532454792,
  7747. "Controller": {
  7748. "Configuration": {
  7749. "ModelAsset": {
  7750. "assetId": {
  7751. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  7752. "subId": 285127096
  7753. },
  7754. "assetHint": "objects/cube.azmodel"
  7755. }
  7756. }
  7757. }
  7758. },
  7759. "Component_[14564562245168579615]": {
  7760. "$type": "EditorRigidBodyComponent",
  7761. "Id": 14564562245168579615,
  7762. "Configuration": {
  7763. "entityId": "",
  7764. "Mass": 999.9999389648438,
  7765. "Inertia tensor": [
  7766. 166.6666717529297,
  7767. 0.0,
  7768. 0.0,
  7769. 0.0,
  7770. 166.6666717529297,
  7771. 0.0,
  7772. 0.0,
  7773. 0.0,
  7774. 166.6666717529297
  7775. ]
  7776. }
  7777. },
  7778. "Component_[16056896985233530106]": {
  7779. "$type": "EditorDisabledCompositionComponent",
  7780. "Id": 16056896985233530106
  7781. },
  7782. "Component_[17648193282110847484]": {
  7783. "$type": "EditorOnlyEntityComponent",
  7784. "Id": 17648193282110847484
  7785. },
  7786. "Component_[17736719688956315985]": {
  7787. "$type": "GenericComponentWrapper",
  7788. "Id": 17736719688956315985,
  7789. "m_template": {
  7790. "$type": "Multiplayer::NetworkTransformComponent"
  7791. }
  7792. },
  7793. "Component_[1835082203551392000]": {
  7794. "$type": "EditorPendingCompositionComponent",
  7795. "Id": 1835082203551392000
  7796. },
  7797. "Component_[2164842339052442926]": {
  7798. "$type": "EditorEntitySortComponent",
  7799. "Id": 2164842339052442926
  7800. },
  7801. "Component_[3933618364732995768]": {
  7802. "$type": "EditorVisibilityComponent",
  7803. "Id": 3933618364732995768
  7804. },
  7805. "Component_[4455772334179006063]": {
  7806. "$type": "EditorEntityIconComponent",
  7807. "Id": 4455772334179006063
  7808. },
  7809. "Component_[7903212753103164289]": {
  7810. "$type": "EditorInspectorComponent",
  7811. "Id": 7903212753103164289,
  7812. "ComponentOrderEntryArray": [
  7813. {
  7814. "ComponentId": 11829233075139704453
  7815. },
  7816. {
  7817. "ComponentId": 8125251054274400256,
  7818. "SortIndex": 1
  7819. },
  7820. {
  7821. "ComponentId": 17736719688956315985,
  7822. "SortIndex": 2
  7823. },
  7824. {
  7825. "ComponentId": 12724016572532454792,
  7826. "SortIndex": 3
  7827. },
  7828. {
  7829. "ComponentId": 8184187118822500353,
  7830. "SortIndex": 4
  7831. },
  7832. {
  7833. "ComponentId": 11384954117619258935,
  7834. "SortIndex": 5
  7835. },
  7836. {
  7837. "ComponentId": 14564562245168579615,
  7838. "SortIndex": 6
  7839. },
  7840. {
  7841. "ComponentId": 9450029410653326667,
  7842. "SortIndex": 7
  7843. }
  7844. ]
  7845. },
  7846. "Component_[8125251054274400256]": {
  7847. "$type": "GenericComponentWrapper",
  7848. "Id": 8125251054274400256,
  7849. "m_template": {
  7850. "$type": "NetBindComponent"
  7851. }
  7852. },
  7853. "Component_[8184187118822500353]": {
  7854. "$type": "EditorMaterialComponent",
  7855. "Id": 8184187118822500353,
  7856. "Controller": {
  7857. "Configuration": {
  7858. "materials": {
  7859. "{}": {
  7860. "MaterialAsset": {
  7861. "assetId": {
  7862. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  7863. }
  7864. }
  7865. }
  7866. }
  7867. }
  7868. }
  7869. },
  7870. "Component_[9450029410653326667]": {
  7871. "$type": "GenericComponentWrapper",
  7872. "Id": 9450029410653326667,
  7873. "m_template": {
  7874. "$type": "Multiplayer::NetworkRigidBodyComponent"
  7875. }
  7876. },
  7877. "Component_[9452550092591643181]": {
  7878. "$type": "EditorLockComponent",
  7879. "Id": 9452550092591643181
  7880. }
  7881. }
  7882. },
  7883. "Entity_[703712528739]": {
  7884. "Id": "Entity_[703712528739]",
  7885. "Name": "Box4",
  7886. "Components": {
  7887. "Component_[11384954117619258935]": {
  7888. "$type": "EditorColliderComponent",
  7889. "Id": 11384954117619258935,
  7890. "ColliderConfiguration": {
  7891. "MaterialSlots": {
  7892. "Slots": [
  7893. {
  7894. "Name": "Entire object"
  7895. }
  7896. ]
  7897. }
  7898. },
  7899. "ShapeConfiguration": {
  7900. "ShapeType": 1
  7901. },
  7902. "DebugDrawSettings": {
  7903. "LocallyEnabled": false
  7904. }
  7905. },
  7906. "Component_[11829233075139704453]": {
  7907. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  7908. "Id": 11829233075139704453,
  7909. "Parent Entity": "ContainerEntity",
  7910. "Transform Data": {
  7911. "Translate": [
  7912. -0.4683690071105957,
  7913. 0.6112356185913086,
  7914. 3.1908931732177734
  7915. ]
  7916. }
  7917. },
  7918. "Component_[12724016572532454792]": {
  7919. "$type": "AZ::Render::EditorMeshComponent",
  7920. "Id": 12724016572532454792,
  7921. "Controller": {
  7922. "Configuration": {
  7923. "ModelAsset": {
  7924. "assetId": {
  7925. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  7926. "subId": 285127096
  7927. },
  7928. "assetHint": "objects/cube.azmodel"
  7929. }
  7930. }
  7931. }
  7932. },
  7933. "Component_[14564562245168579615]": {
  7934. "$type": "EditorRigidBodyComponent",
  7935. "Id": 14564562245168579615,
  7936. "Configuration": {
  7937. "entityId": "",
  7938. "Mass": 999.9999389648438,
  7939. "Inertia tensor": [
  7940. 166.6666717529297,
  7941. 0.0,
  7942. 0.0,
  7943. 0.0,
  7944. 166.6666717529297,
  7945. 0.0,
  7946. 0.0,
  7947. 0.0,
  7948. 166.6666717529297
  7949. ]
  7950. }
  7951. },
  7952. "Component_[16056896985233530106]": {
  7953. "$type": "EditorDisabledCompositionComponent",
  7954. "Id": 16056896985233530106
  7955. },
  7956. "Component_[17648193282110847484]": {
  7957. "$type": "EditorOnlyEntityComponent",
  7958. "Id": 17648193282110847484
  7959. },
  7960. "Component_[17736719688956315985]": {
  7961. "$type": "GenericComponentWrapper",
  7962. "Id": 17736719688956315985,
  7963. "m_template": {
  7964. "$type": "Multiplayer::NetworkTransformComponent"
  7965. }
  7966. },
  7967. "Component_[1835082203551392000]": {
  7968. "$type": "EditorPendingCompositionComponent",
  7969. "Id": 1835082203551392000
  7970. },
  7971. "Component_[2164842339052442926]": {
  7972. "$type": "EditorEntitySortComponent",
  7973. "Id": 2164842339052442926
  7974. },
  7975. "Component_[3933618364732995768]": {
  7976. "$type": "EditorVisibilityComponent",
  7977. "Id": 3933618364732995768
  7978. },
  7979. "Component_[4455772334179006063]": {
  7980. "$type": "EditorEntityIconComponent",
  7981. "Id": 4455772334179006063
  7982. },
  7983. "Component_[7903212753103164289]": {
  7984. "$type": "EditorInspectorComponent",
  7985. "Id": 7903212753103164289,
  7986. "ComponentOrderEntryArray": [
  7987. {
  7988. "ComponentId": 11829233075139704453
  7989. },
  7990. {
  7991. "ComponentId": 8125251054274400256,
  7992. "SortIndex": 1
  7993. },
  7994. {
  7995. "ComponentId": 17736719688956315985,
  7996. "SortIndex": 2
  7997. },
  7998. {
  7999. "ComponentId": 12724016572532454792,
  8000. "SortIndex": 3
  8001. },
  8002. {
  8003. "ComponentId": 8184187118822500353,
  8004. "SortIndex": 4
  8005. },
  8006. {
  8007. "ComponentId": 11384954117619258935,
  8008. "SortIndex": 5
  8009. },
  8010. {
  8011. "ComponentId": 14564562245168579615,
  8012. "SortIndex": 6
  8013. },
  8014. {
  8015. "ComponentId": 9450029410653326667,
  8016. "SortIndex": 7
  8017. }
  8018. ]
  8019. },
  8020. "Component_[8125251054274400256]": {
  8021. "$type": "GenericComponentWrapper",
  8022. "Id": 8125251054274400256,
  8023. "m_template": {
  8024. "$type": "NetBindComponent"
  8025. }
  8026. },
  8027. "Component_[8184187118822500353]": {
  8028. "$type": "EditorMaterialComponent",
  8029. "Id": 8184187118822500353,
  8030. "Controller": {
  8031. "Configuration": {
  8032. "materials": {
  8033. "{}": {
  8034. "MaterialAsset": {
  8035. "assetId": {
  8036. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  8037. }
  8038. }
  8039. }
  8040. }
  8041. }
  8042. }
  8043. },
  8044. "Component_[9450029410653326667]": {
  8045. "$type": "GenericComponentWrapper",
  8046. "Id": 9450029410653326667,
  8047. "m_template": {
  8048. "$type": "Multiplayer::NetworkRigidBodyComponent"
  8049. }
  8050. },
  8051. "Component_[9452550092591643181]": {
  8052. "$type": "EditorLockComponent",
  8053. "Id": 9452550092591643181
  8054. }
  8055. }
  8056. },
  8057. "Entity_[708007496035]": {
  8058. "Id": "Entity_[708007496035]",
  8059. "Name": "Box4",
  8060. "Components": {
  8061. "Component_[11384954117619258935]": {
  8062. "$type": "EditorColliderComponent",
  8063. "Id": 11384954117619258935,
  8064. "ColliderConfiguration": {
  8065. "MaterialSlots": {
  8066. "Slots": [
  8067. {
  8068. "Name": "Entire object"
  8069. }
  8070. ]
  8071. }
  8072. },
  8073. "ShapeConfiguration": {
  8074. "ShapeType": 1
  8075. },
  8076. "DebugDrawSettings": {
  8077. "LocallyEnabled": false
  8078. }
  8079. },
  8080. "Component_[11829233075139704453]": {
  8081. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  8082. "Id": 11829233075139704453,
  8083. "Parent Entity": "ContainerEntity",
  8084. "Transform Data": {
  8085. "Translate": [
  8086. 1.7793126106262207,
  8087. 0.6112356185913086,
  8088. 3.1908931732177734
  8089. ]
  8090. }
  8091. },
  8092. "Component_[12724016572532454792]": {
  8093. "$type": "AZ::Render::EditorMeshComponent",
  8094. "Id": 12724016572532454792,
  8095. "Controller": {
  8096. "Configuration": {
  8097. "ModelAsset": {
  8098. "assetId": {
  8099. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  8100. "subId": 285127096
  8101. },
  8102. "assetHint": "objects/cube.azmodel"
  8103. }
  8104. }
  8105. }
  8106. },
  8107. "Component_[14564562245168579615]": {
  8108. "$type": "EditorRigidBodyComponent",
  8109. "Id": 14564562245168579615,
  8110. "Configuration": {
  8111. "entityId": "",
  8112. "Mass": 999.9999389648438,
  8113. "Inertia tensor": [
  8114. 166.6666717529297,
  8115. 0.0,
  8116. 0.0,
  8117. 0.0,
  8118. 166.6666717529297,
  8119. 0.0,
  8120. 0.0,
  8121. 0.0,
  8122. 166.6666717529297
  8123. ]
  8124. }
  8125. },
  8126. "Component_[16056896985233530106]": {
  8127. "$type": "EditorDisabledCompositionComponent",
  8128. "Id": 16056896985233530106
  8129. },
  8130. "Component_[17648193282110847484]": {
  8131. "$type": "EditorOnlyEntityComponent",
  8132. "Id": 17648193282110847484
  8133. },
  8134. "Component_[17736719688956315985]": {
  8135. "$type": "GenericComponentWrapper",
  8136. "Id": 17736719688956315985,
  8137. "m_template": {
  8138. "$type": "Multiplayer::NetworkTransformComponent"
  8139. }
  8140. },
  8141. "Component_[1835082203551392000]": {
  8142. "$type": "EditorPendingCompositionComponent",
  8143. "Id": 1835082203551392000
  8144. },
  8145. "Component_[2164842339052442926]": {
  8146. "$type": "EditorEntitySortComponent",
  8147. "Id": 2164842339052442926
  8148. },
  8149. "Component_[3933618364732995768]": {
  8150. "$type": "EditorVisibilityComponent",
  8151. "Id": 3933618364732995768
  8152. },
  8153. "Component_[4455772334179006063]": {
  8154. "$type": "EditorEntityIconComponent",
  8155. "Id": 4455772334179006063
  8156. },
  8157. "Component_[7903212753103164289]": {
  8158. "$type": "EditorInspectorComponent",
  8159. "Id": 7903212753103164289,
  8160. "ComponentOrderEntryArray": [
  8161. {
  8162. "ComponentId": 11829233075139704453
  8163. },
  8164. {
  8165. "ComponentId": 8125251054274400256,
  8166. "SortIndex": 1
  8167. },
  8168. {
  8169. "ComponentId": 17736719688956315985,
  8170. "SortIndex": 2
  8171. },
  8172. {
  8173. "ComponentId": 12724016572532454792,
  8174. "SortIndex": 3
  8175. },
  8176. {
  8177. "ComponentId": 8184187118822500353,
  8178. "SortIndex": 4
  8179. },
  8180. {
  8181. "ComponentId": 11384954117619258935,
  8182. "SortIndex": 5
  8183. },
  8184. {
  8185. "ComponentId": 14564562245168579615,
  8186. "SortIndex": 6
  8187. },
  8188. {
  8189. "ComponentId": 9450029410653326667,
  8190. "SortIndex": 7
  8191. }
  8192. ]
  8193. },
  8194. "Component_[8125251054274400256]": {
  8195. "$type": "GenericComponentWrapper",
  8196. "Id": 8125251054274400256,
  8197. "m_template": {
  8198. "$type": "NetBindComponent"
  8199. }
  8200. },
  8201. "Component_[8184187118822500353]": {
  8202. "$type": "EditorMaterialComponent",
  8203. "Id": 8184187118822500353,
  8204. "Controller": {
  8205. "Configuration": {
  8206. "materials": {
  8207. "{}": {
  8208. "MaterialAsset": {
  8209. "assetId": {
  8210. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  8211. }
  8212. }
  8213. }
  8214. }
  8215. }
  8216. }
  8217. },
  8218. "Component_[9450029410653326667]": {
  8219. "$type": "GenericComponentWrapper",
  8220. "Id": 9450029410653326667,
  8221. "m_template": {
  8222. "$type": "Multiplayer::NetworkRigidBodyComponent"
  8223. }
  8224. },
  8225. "Component_[9452550092591643181]": {
  8226. "$type": "EditorLockComponent",
  8227. "Id": 9452550092591643181
  8228. }
  8229. }
  8230. },
  8231. "Entity_[712302463331]": {
  8232. "Id": "Entity_[712302463331]",
  8233. "Name": "Box4",
  8234. "Components": {
  8235. "Component_[11384954117619258935]": {
  8236. "$type": "EditorColliderComponent",
  8237. "Id": 11384954117619258935,
  8238. "ColliderConfiguration": {
  8239. "MaterialSlots": {
  8240. "Slots": [
  8241. {
  8242. "Name": "Entire object"
  8243. }
  8244. ]
  8245. }
  8246. },
  8247. "ShapeConfiguration": {
  8248. "ShapeType": 1
  8249. },
  8250. "DebugDrawSettings": {
  8251. "LocallyEnabled": false
  8252. }
  8253. },
  8254. "Component_[11829233075139704453]": {
  8255. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  8256. "Id": 11829233075139704453,
  8257. "Parent Entity": "ContainerEntity",
  8258. "Transform Data": {
  8259. "Translate": [
  8260. -0.4683690071105957,
  8261. -1.725468635559082,
  8262. 3.1908931732177734
  8263. ]
  8264. }
  8265. },
  8266. "Component_[12724016572532454792]": {
  8267. "$type": "AZ::Render::EditorMeshComponent",
  8268. "Id": 12724016572532454792,
  8269. "Controller": {
  8270. "Configuration": {
  8271. "ModelAsset": {
  8272. "assetId": {
  8273. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  8274. "subId": 285127096
  8275. },
  8276. "assetHint": "objects/cube.azmodel"
  8277. }
  8278. }
  8279. }
  8280. },
  8281. "Component_[14564562245168579615]": {
  8282. "$type": "EditorRigidBodyComponent",
  8283. "Id": 14564562245168579615,
  8284. "Configuration": {
  8285. "entityId": "",
  8286. "Mass": 999.9999389648438,
  8287. "Inertia tensor": [
  8288. 166.6666717529297,
  8289. 0.0,
  8290. 0.0,
  8291. 0.0,
  8292. 166.6666717529297,
  8293. 0.0,
  8294. 0.0,
  8295. 0.0,
  8296. 166.6666717529297
  8297. ]
  8298. }
  8299. },
  8300. "Component_[16056896985233530106]": {
  8301. "$type": "EditorDisabledCompositionComponent",
  8302. "Id": 16056896985233530106
  8303. },
  8304. "Component_[17648193282110847484]": {
  8305. "$type": "EditorOnlyEntityComponent",
  8306. "Id": 17648193282110847484
  8307. },
  8308. "Component_[17736719688956315985]": {
  8309. "$type": "GenericComponentWrapper",
  8310. "Id": 17736719688956315985,
  8311. "m_template": {
  8312. "$type": "Multiplayer::NetworkTransformComponent"
  8313. }
  8314. },
  8315. "Component_[1835082203551392000]": {
  8316. "$type": "EditorPendingCompositionComponent",
  8317. "Id": 1835082203551392000
  8318. },
  8319. "Component_[2164842339052442926]": {
  8320. "$type": "EditorEntitySortComponent",
  8321. "Id": 2164842339052442926
  8322. },
  8323. "Component_[3933618364732995768]": {
  8324. "$type": "EditorVisibilityComponent",
  8325. "Id": 3933618364732995768
  8326. },
  8327. "Component_[4455772334179006063]": {
  8328. "$type": "EditorEntityIconComponent",
  8329. "Id": 4455772334179006063
  8330. },
  8331. "Component_[7903212753103164289]": {
  8332. "$type": "EditorInspectorComponent",
  8333. "Id": 7903212753103164289,
  8334. "ComponentOrderEntryArray": [
  8335. {
  8336. "ComponentId": 11829233075139704453
  8337. },
  8338. {
  8339. "ComponentId": 8125251054274400256,
  8340. "SortIndex": 1
  8341. },
  8342. {
  8343. "ComponentId": 17736719688956315985,
  8344. "SortIndex": 2
  8345. },
  8346. {
  8347. "ComponentId": 12724016572532454792,
  8348. "SortIndex": 3
  8349. },
  8350. {
  8351. "ComponentId": 8184187118822500353,
  8352. "SortIndex": 4
  8353. },
  8354. {
  8355. "ComponentId": 11384954117619258935,
  8356. "SortIndex": 5
  8357. },
  8358. {
  8359. "ComponentId": 14564562245168579615,
  8360. "SortIndex": 6
  8361. },
  8362. {
  8363. "ComponentId": 9450029410653326667,
  8364. "SortIndex": 7
  8365. }
  8366. ]
  8367. },
  8368. "Component_[8125251054274400256]": {
  8369. "$type": "GenericComponentWrapper",
  8370. "Id": 8125251054274400256,
  8371. "m_template": {
  8372. "$type": "NetBindComponent"
  8373. }
  8374. },
  8375. "Component_[8184187118822500353]": {
  8376. "$type": "EditorMaterialComponent",
  8377. "Id": 8184187118822500353,
  8378. "Controller": {
  8379. "Configuration": {
  8380. "materials": {
  8381. "{}": {
  8382. "MaterialAsset": {
  8383. "assetId": {
  8384. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  8385. }
  8386. }
  8387. }
  8388. }
  8389. }
  8390. }
  8391. },
  8392. "Component_[9450029410653326667]": {
  8393. "$type": "GenericComponentWrapper",
  8394. "Id": 9450029410653326667,
  8395. "m_template": {
  8396. "$type": "Multiplayer::NetworkRigidBodyComponent"
  8397. }
  8398. },
  8399. "Component_[9452550092591643181]": {
  8400. "$type": "EditorLockComponent",
  8401. "Id": 9452550092591643181
  8402. }
  8403. }
  8404. },
  8405. "Entity_[716597430627]": {
  8406. "Id": "Entity_[716597430627]",
  8407. "Name": "Box4",
  8408. "Components": {
  8409. "Component_[11384954117619258935]": {
  8410. "$type": "EditorColliderComponent",
  8411. "Id": 11384954117619258935,
  8412. "ColliderConfiguration": {
  8413. "MaterialSlots": {
  8414. "Slots": [
  8415. {
  8416. "Name": "Entire object"
  8417. }
  8418. ]
  8419. }
  8420. },
  8421. "ShapeConfiguration": {
  8422. "ShapeType": 1
  8423. },
  8424. "DebugDrawSettings": {
  8425. "LocallyEnabled": false
  8426. }
  8427. },
  8428. "Component_[11829233075139704453]": {
  8429. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  8430. "Id": 11829233075139704453,
  8431. "Parent Entity": "ContainerEntity",
  8432. "Transform Data": {
  8433. "Translate": [
  8434. -1.5954484939575195,
  8435. 1.8704166412353516,
  8436. 3.1908931732177734
  8437. ]
  8438. }
  8439. },
  8440. "Component_[12724016572532454792]": {
  8441. "$type": "AZ::Render::EditorMeshComponent",
  8442. "Id": 12724016572532454792,
  8443. "Controller": {
  8444. "Configuration": {
  8445. "ModelAsset": {
  8446. "assetId": {
  8447. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  8448. "subId": 285127096
  8449. },
  8450. "assetHint": "objects/cube.azmodel"
  8451. }
  8452. }
  8453. }
  8454. },
  8455. "Component_[14564562245168579615]": {
  8456. "$type": "EditorRigidBodyComponent",
  8457. "Id": 14564562245168579615,
  8458. "Configuration": {
  8459. "entityId": "",
  8460. "Mass": 999.9999389648438,
  8461. "Inertia tensor": [
  8462. 166.6666717529297,
  8463. 0.0,
  8464. 0.0,
  8465. 0.0,
  8466. 166.6666717529297,
  8467. 0.0,
  8468. 0.0,
  8469. 0.0,
  8470. 166.6666717529297
  8471. ]
  8472. }
  8473. },
  8474. "Component_[16056896985233530106]": {
  8475. "$type": "EditorDisabledCompositionComponent",
  8476. "Id": 16056896985233530106
  8477. },
  8478. "Component_[17648193282110847484]": {
  8479. "$type": "EditorOnlyEntityComponent",
  8480. "Id": 17648193282110847484
  8481. },
  8482. "Component_[17736719688956315985]": {
  8483. "$type": "GenericComponentWrapper",
  8484. "Id": 17736719688956315985,
  8485. "m_template": {
  8486. "$type": "Multiplayer::NetworkTransformComponent"
  8487. }
  8488. },
  8489. "Component_[1835082203551392000]": {
  8490. "$type": "EditorPendingCompositionComponent",
  8491. "Id": 1835082203551392000
  8492. },
  8493. "Component_[2164842339052442926]": {
  8494. "$type": "EditorEntitySortComponent",
  8495. "Id": 2164842339052442926
  8496. },
  8497. "Component_[3933618364732995768]": {
  8498. "$type": "EditorVisibilityComponent",
  8499. "Id": 3933618364732995768
  8500. },
  8501. "Component_[4455772334179006063]": {
  8502. "$type": "EditorEntityIconComponent",
  8503. "Id": 4455772334179006063
  8504. },
  8505. "Component_[7903212753103164289]": {
  8506. "$type": "EditorInspectorComponent",
  8507. "Id": 7903212753103164289,
  8508. "ComponentOrderEntryArray": [
  8509. {
  8510. "ComponentId": 11829233075139704453
  8511. },
  8512. {
  8513. "ComponentId": 8125251054274400256,
  8514. "SortIndex": 1
  8515. },
  8516. {
  8517. "ComponentId": 17736719688956315985,
  8518. "SortIndex": 2
  8519. },
  8520. {
  8521. "ComponentId": 12724016572532454792,
  8522. "SortIndex": 3
  8523. },
  8524. {
  8525. "ComponentId": 8184187118822500353,
  8526. "SortIndex": 4
  8527. },
  8528. {
  8529. "ComponentId": 11384954117619258935,
  8530. "SortIndex": 5
  8531. },
  8532. {
  8533. "ComponentId": 14564562245168579615,
  8534. "SortIndex": 6
  8535. },
  8536. {
  8537. "ComponentId": 9450029410653326667,
  8538. "SortIndex": 7
  8539. }
  8540. ]
  8541. },
  8542. "Component_[8125251054274400256]": {
  8543. "$type": "GenericComponentWrapper",
  8544. "Id": 8125251054274400256,
  8545. "m_template": {
  8546. "$type": "NetBindComponent"
  8547. }
  8548. },
  8549. "Component_[8184187118822500353]": {
  8550. "$type": "EditorMaterialComponent",
  8551. "Id": 8184187118822500353,
  8552. "Controller": {
  8553. "Configuration": {
  8554. "materials": {
  8555. "{}": {
  8556. "MaterialAsset": {
  8557. "assetId": {
  8558. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  8559. }
  8560. }
  8561. }
  8562. }
  8563. }
  8564. }
  8565. },
  8566. "Component_[9450029410653326667]": {
  8567. "$type": "GenericComponentWrapper",
  8568. "Id": 9450029410653326667,
  8569. "m_template": {
  8570. "$type": "Multiplayer::NetworkRigidBodyComponent"
  8571. }
  8572. },
  8573. "Component_[9452550092591643181]": {
  8574. "$type": "EditorLockComponent",
  8575. "Id": 9452550092591643181
  8576. }
  8577. }
  8578. },
  8579. "Entity_[720892397923]": {
  8580. "Id": "Entity_[720892397923]",
  8581. "Name": "Box1",
  8582. "Components": {
  8583. "Component_[11384954117619258935]": {
  8584. "$type": "EditorColliderComponent",
  8585. "Id": 11384954117619258935,
  8586. "ColliderConfiguration": {
  8587. "MaterialSlots": {
  8588. "Slots": [
  8589. {
  8590. "Name": "Entire object"
  8591. }
  8592. ]
  8593. }
  8594. },
  8595. "ShapeConfiguration": {
  8596. "ShapeType": 1
  8597. },
  8598. "DebugDrawSettings": {
  8599. "LocallyEnabled": false
  8600. }
  8601. },
  8602. "Component_[11829233075139704453]": {
  8603. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  8604. "Id": 11829233075139704453,
  8605. "Parent Entity": "ContainerEntity",
  8606. "Transform Data": {
  8607. "Translate": [
  8608. 1.7793126106262207,
  8609. 0.6112356185913086,
  8610. 0.0
  8611. ]
  8612. }
  8613. },
  8614. "Component_[12724016572532454792]": {
  8615. "$type": "AZ::Render::EditorMeshComponent",
  8616. "Id": 12724016572532454792,
  8617. "Controller": {
  8618. "Configuration": {
  8619. "ModelAsset": {
  8620. "assetId": {
  8621. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  8622. "subId": 285127096
  8623. },
  8624. "assetHint": "objects/cube.azmodel"
  8625. }
  8626. }
  8627. }
  8628. },
  8629. "Component_[14564562245168579615]": {
  8630. "$type": "EditorRigidBodyComponent",
  8631. "Id": 14564562245168579615,
  8632. "Configuration": {
  8633. "entityId": "",
  8634. "Mass": 999.9999389648438,
  8635. "Inertia tensor": [
  8636. 166.6666717529297,
  8637. 0.0,
  8638. 0.0,
  8639. 0.0,
  8640. 166.6666717529297,
  8641. 0.0,
  8642. 0.0,
  8643. 0.0,
  8644. 166.6666717529297
  8645. ]
  8646. }
  8647. },
  8648. "Component_[16056896985233530106]": {
  8649. "$type": "EditorDisabledCompositionComponent",
  8650. "Id": 16056896985233530106
  8651. },
  8652. "Component_[17648193282110847484]": {
  8653. "$type": "EditorOnlyEntityComponent",
  8654. "Id": 17648193282110847484
  8655. },
  8656. "Component_[17736719688956315985]": {
  8657. "$type": "GenericComponentWrapper",
  8658. "Id": 17736719688956315985,
  8659. "m_template": {
  8660. "$type": "Multiplayer::NetworkTransformComponent"
  8661. }
  8662. },
  8663. "Component_[1835082203551392000]": {
  8664. "$type": "EditorPendingCompositionComponent",
  8665. "Id": 1835082203551392000
  8666. },
  8667. "Component_[2164842339052442926]": {
  8668. "$type": "EditorEntitySortComponent",
  8669. "Id": 2164842339052442926
  8670. },
  8671. "Component_[3933618364732995768]": {
  8672. "$type": "EditorVisibilityComponent",
  8673. "Id": 3933618364732995768
  8674. },
  8675. "Component_[4455772334179006063]": {
  8676. "$type": "EditorEntityIconComponent",
  8677. "Id": 4455772334179006063
  8678. },
  8679. "Component_[7903212753103164289]": {
  8680. "$type": "EditorInspectorComponent",
  8681. "Id": 7903212753103164289,
  8682. "ComponentOrderEntryArray": [
  8683. {
  8684. "ComponentId": 11829233075139704453
  8685. },
  8686. {
  8687. "ComponentId": 8125251054274400256,
  8688. "SortIndex": 1
  8689. },
  8690. {
  8691. "ComponentId": 17736719688956315985,
  8692. "SortIndex": 2
  8693. },
  8694. {
  8695. "ComponentId": 12724016572532454792,
  8696. "SortIndex": 3
  8697. },
  8698. {
  8699. "ComponentId": 8184187118822500353,
  8700. "SortIndex": 4
  8701. },
  8702. {
  8703. "ComponentId": 11384954117619258935,
  8704. "SortIndex": 5
  8705. },
  8706. {
  8707. "ComponentId": 14564562245168579615,
  8708. "SortIndex": 6
  8709. },
  8710. {
  8711. "ComponentId": 9450029410653326667,
  8712. "SortIndex": 7
  8713. }
  8714. ]
  8715. },
  8716. "Component_[8125251054274400256]": {
  8717. "$type": "GenericComponentWrapper",
  8718. "Id": 8125251054274400256,
  8719. "m_template": {
  8720. "$type": "NetBindComponent"
  8721. }
  8722. },
  8723. "Component_[8184187118822500353]": {
  8724. "$type": "EditorMaterialComponent",
  8725. "Id": 8184187118822500353,
  8726. "Controller": {
  8727. "Configuration": {
  8728. "materials": {
  8729. "{}": {
  8730. "MaterialAsset": {
  8731. "assetId": {
  8732. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  8733. }
  8734. }
  8735. }
  8736. }
  8737. }
  8738. }
  8739. },
  8740. "Component_[9450029410653326667]": {
  8741. "$type": "GenericComponentWrapper",
  8742. "Id": 9450029410653326667,
  8743. "m_template": {
  8744. "$type": "Multiplayer::NetworkRigidBodyComponent"
  8745. }
  8746. },
  8747. "Component_[9452550092591643181]": {
  8748. "$type": "EditorLockComponent",
  8749. "Id": 9452550092591643181
  8750. }
  8751. }
  8752. },
  8753. "Entity_[725187365219]": {
  8754. "Id": "Entity_[725187365219]",
  8755. "Name": "Box1",
  8756. "Components": {
  8757. "Component_[11384954117619258935]": {
  8758. "$type": "EditorColliderComponent",
  8759. "Id": 11384954117619258935,
  8760. "ColliderConfiguration": {
  8761. "MaterialSlots": {
  8762. "Slots": [
  8763. {
  8764. "Name": "Entire object"
  8765. }
  8766. ]
  8767. }
  8768. },
  8769. "ShapeConfiguration": {
  8770. "ShapeType": 1
  8771. },
  8772. "DebugDrawSettings": {
  8773. "LocallyEnabled": false
  8774. }
  8775. },
  8776. "Component_[11829233075139704453]": {
  8777. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  8778. "Id": 11829233075139704453,
  8779. "Parent Entity": "ContainerEntity",
  8780. "Transform Data": {
  8781. "Translate": [
  8782. 1.7793126106262207,
  8783. -1.725468635559082,
  8784. 0.0
  8785. ]
  8786. }
  8787. },
  8788. "Component_[12724016572532454792]": {
  8789. "$type": "AZ::Render::EditorMeshComponent",
  8790. "Id": 12724016572532454792,
  8791. "Controller": {
  8792. "Configuration": {
  8793. "ModelAsset": {
  8794. "assetId": {
  8795. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  8796. "subId": 285127096
  8797. },
  8798. "assetHint": "objects/cube.azmodel"
  8799. }
  8800. }
  8801. }
  8802. },
  8803. "Component_[14564562245168579615]": {
  8804. "$type": "EditorRigidBodyComponent",
  8805. "Id": 14564562245168579615,
  8806. "Configuration": {
  8807. "entityId": "",
  8808. "Mass": 999.9999389648438,
  8809. "Inertia tensor": [
  8810. 166.6666717529297,
  8811. 0.0,
  8812. 0.0,
  8813. 0.0,
  8814. 166.6666717529297,
  8815. 0.0,
  8816. 0.0,
  8817. 0.0,
  8818. 166.6666717529297
  8819. ]
  8820. }
  8821. },
  8822. "Component_[16056896985233530106]": {
  8823. "$type": "EditorDisabledCompositionComponent",
  8824. "Id": 16056896985233530106
  8825. },
  8826. "Component_[17648193282110847484]": {
  8827. "$type": "EditorOnlyEntityComponent",
  8828. "Id": 17648193282110847484
  8829. },
  8830. "Component_[17736719688956315985]": {
  8831. "$type": "GenericComponentWrapper",
  8832. "Id": 17736719688956315985,
  8833. "m_template": {
  8834. "$type": "Multiplayer::NetworkTransformComponent"
  8835. }
  8836. },
  8837. "Component_[1835082203551392000]": {
  8838. "$type": "EditorPendingCompositionComponent",
  8839. "Id": 1835082203551392000
  8840. },
  8841. "Component_[2164842339052442926]": {
  8842. "$type": "EditorEntitySortComponent",
  8843. "Id": 2164842339052442926
  8844. },
  8845. "Component_[3933618364732995768]": {
  8846. "$type": "EditorVisibilityComponent",
  8847. "Id": 3933618364732995768
  8848. },
  8849. "Component_[4455772334179006063]": {
  8850. "$type": "EditorEntityIconComponent",
  8851. "Id": 4455772334179006063
  8852. },
  8853. "Component_[7903212753103164289]": {
  8854. "$type": "EditorInspectorComponent",
  8855. "Id": 7903212753103164289,
  8856. "ComponentOrderEntryArray": [
  8857. {
  8858. "ComponentId": 11829233075139704453
  8859. },
  8860. {
  8861. "ComponentId": 8125251054274400256,
  8862. "SortIndex": 1
  8863. },
  8864. {
  8865. "ComponentId": 17736719688956315985,
  8866. "SortIndex": 2
  8867. },
  8868. {
  8869. "ComponentId": 12724016572532454792,
  8870. "SortIndex": 3
  8871. },
  8872. {
  8873. "ComponentId": 8184187118822500353,
  8874. "SortIndex": 4
  8875. },
  8876. {
  8877. "ComponentId": 11384954117619258935,
  8878. "SortIndex": 5
  8879. },
  8880. {
  8881. "ComponentId": 14564562245168579615,
  8882. "SortIndex": 6
  8883. },
  8884. {
  8885. "ComponentId": 9450029410653326667,
  8886. "SortIndex": 7
  8887. }
  8888. ]
  8889. },
  8890. "Component_[8125251054274400256]": {
  8891. "$type": "GenericComponentWrapper",
  8892. "Id": 8125251054274400256,
  8893. "m_template": {
  8894. "$type": "NetBindComponent"
  8895. }
  8896. },
  8897. "Component_[8184187118822500353]": {
  8898. "$type": "EditorMaterialComponent",
  8899. "Id": 8184187118822500353,
  8900. "Controller": {
  8901. "Configuration": {
  8902. "materials": {
  8903. "{}": {
  8904. "MaterialAsset": {
  8905. "assetId": {
  8906. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  8907. }
  8908. }
  8909. }
  8910. }
  8911. }
  8912. }
  8913. },
  8914. "Component_[9450029410653326667]": {
  8915. "$type": "GenericComponentWrapper",
  8916. "Id": 9450029410653326667,
  8917. "m_template": {
  8918. "$type": "Multiplayer::NetworkRigidBodyComponent"
  8919. }
  8920. },
  8921. "Component_[9452550092591643181]": {
  8922. "$type": "EditorLockComponent",
  8923. "Id": 9452550092591643181
  8924. }
  8925. }
  8926. },
  8927. "Entity_[729482332515]": {
  8928. "Id": "Entity_[729482332515]",
  8929. "Name": "Box3",
  8930. "Components": {
  8931. "Component_[11384954117619258935]": {
  8932. "$type": "EditorColliderComponent",
  8933. "Id": 11384954117619258935,
  8934. "ColliderConfiguration": {
  8935. "MaterialSlots": {
  8936. "Slots": [
  8937. {
  8938. "Name": "Entire object"
  8939. }
  8940. ]
  8941. }
  8942. },
  8943. "ShapeConfiguration": {
  8944. "ShapeType": 1
  8945. },
  8946. "DebugDrawSettings": {
  8947. "LocallyEnabled": false
  8948. }
  8949. },
  8950. "Component_[11829233075139704453]": {
  8951. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  8952. "Id": 11829233075139704453,
  8953. "Parent Entity": "ContainerEntity",
  8954. "Transform Data": {
  8955. "Translate": [
  8956. 0.6456379890441895,
  8957. 1.8704166412353516,
  8958. 2.126070022583008
  8959. ]
  8960. }
  8961. },
  8962. "Component_[12724016572532454792]": {
  8963. "$type": "AZ::Render::EditorMeshComponent",
  8964. "Id": 12724016572532454792,
  8965. "Controller": {
  8966. "Configuration": {
  8967. "ModelAsset": {
  8968. "assetId": {
  8969. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  8970. "subId": 285127096
  8971. },
  8972. "assetHint": "objects/cube.azmodel"
  8973. }
  8974. }
  8975. }
  8976. },
  8977. "Component_[14564562245168579615]": {
  8978. "$type": "EditorRigidBodyComponent",
  8979. "Id": 14564562245168579615,
  8980. "Configuration": {
  8981. "entityId": "",
  8982. "Mass": 999.9999389648438,
  8983. "Inertia tensor": [
  8984. 166.6666717529297,
  8985. 0.0,
  8986. 0.0,
  8987. 0.0,
  8988. 166.6666717529297,
  8989. 0.0,
  8990. 0.0,
  8991. 0.0,
  8992. 166.6666717529297
  8993. ]
  8994. }
  8995. },
  8996. "Component_[16056896985233530106]": {
  8997. "$type": "EditorDisabledCompositionComponent",
  8998. "Id": 16056896985233530106
  8999. },
  9000. "Component_[17648193282110847484]": {
  9001. "$type": "EditorOnlyEntityComponent",
  9002. "Id": 17648193282110847484
  9003. },
  9004. "Component_[17736719688956315985]": {
  9005. "$type": "GenericComponentWrapper",
  9006. "Id": 17736719688956315985,
  9007. "m_template": {
  9008. "$type": "Multiplayer::NetworkTransformComponent"
  9009. }
  9010. },
  9011. "Component_[1835082203551392000]": {
  9012. "$type": "EditorPendingCompositionComponent",
  9013. "Id": 1835082203551392000
  9014. },
  9015. "Component_[2164842339052442926]": {
  9016. "$type": "EditorEntitySortComponent",
  9017. "Id": 2164842339052442926
  9018. },
  9019. "Component_[3933618364732995768]": {
  9020. "$type": "EditorVisibilityComponent",
  9021. "Id": 3933618364732995768
  9022. },
  9023. "Component_[4455772334179006063]": {
  9024. "$type": "EditorEntityIconComponent",
  9025. "Id": 4455772334179006063
  9026. },
  9027. "Component_[7903212753103164289]": {
  9028. "$type": "EditorInspectorComponent",
  9029. "Id": 7903212753103164289,
  9030. "ComponentOrderEntryArray": [
  9031. {
  9032. "ComponentId": 11829233075139704453
  9033. },
  9034. {
  9035. "ComponentId": 8125251054274400256,
  9036. "SortIndex": 1
  9037. },
  9038. {
  9039. "ComponentId": 17736719688956315985,
  9040. "SortIndex": 2
  9041. },
  9042. {
  9043. "ComponentId": 12724016572532454792,
  9044. "SortIndex": 3
  9045. },
  9046. {
  9047. "ComponentId": 8184187118822500353,
  9048. "SortIndex": 4
  9049. },
  9050. {
  9051. "ComponentId": 11384954117619258935,
  9052. "SortIndex": 5
  9053. },
  9054. {
  9055. "ComponentId": 14564562245168579615,
  9056. "SortIndex": 6
  9057. },
  9058. {
  9059. "ComponentId": 9450029410653326667,
  9060. "SortIndex": 7
  9061. }
  9062. ]
  9063. },
  9064. "Component_[8125251054274400256]": {
  9065. "$type": "GenericComponentWrapper",
  9066. "Id": 8125251054274400256,
  9067. "m_template": {
  9068. "$type": "NetBindComponent"
  9069. }
  9070. },
  9071. "Component_[8184187118822500353]": {
  9072. "$type": "EditorMaterialComponent",
  9073. "Id": 8184187118822500353,
  9074. "Controller": {
  9075. "Configuration": {
  9076. "materials": {
  9077. "{}": {
  9078. "MaterialAsset": {
  9079. "assetId": {
  9080. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  9081. }
  9082. }
  9083. }
  9084. }
  9085. }
  9086. }
  9087. },
  9088. "Component_[9450029410653326667]": {
  9089. "$type": "GenericComponentWrapper",
  9090. "Id": 9450029410653326667,
  9091. "m_template": {
  9092. "$type": "Multiplayer::NetworkRigidBodyComponent"
  9093. }
  9094. },
  9095. "Component_[9452550092591643181]": {
  9096. "$type": "EditorLockComponent",
  9097. "Id": 9452550092591643181
  9098. }
  9099. }
  9100. },
  9101. "Entity_[733777299811]": {
  9102. "Id": "Entity_[733777299811]",
  9103. "Name": "Box4",
  9104. "Components": {
  9105. "Component_[11384954117619258935]": {
  9106. "$type": "EditorColliderComponent",
  9107. "Id": 11384954117619258935,
  9108. "ColliderConfiguration": {
  9109. "MaterialSlots": {
  9110. "Slots": [
  9111. {
  9112. "Name": "Entire object"
  9113. }
  9114. ]
  9115. }
  9116. },
  9117. "ShapeConfiguration": {
  9118. "ShapeType": 1
  9119. },
  9120. "DebugDrawSettings": {
  9121. "LocallyEnabled": false
  9122. }
  9123. },
  9124. "Component_[11829233075139704453]": {
  9125. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  9126. "Id": 11829233075139704453,
  9127. "Parent Entity": "ContainerEntity",
  9128. "Transform Data": {
  9129. "Translate": [
  9130. 1.7793126106262207,
  9131. 1.8704166412353516,
  9132. 3.1908931732177734
  9133. ]
  9134. }
  9135. },
  9136. "Component_[12724016572532454792]": {
  9137. "$type": "AZ::Render::EditorMeshComponent",
  9138. "Id": 12724016572532454792,
  9139. "Controller": {
  9140. "Configuration": {
  9141. "ModelAsset": {
  9142. "assetId": {
  9143. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  9144. "subId": 285127096
  9145. },
  9146. "assetHint": "objects/cube.azmodel"
  9147. }
  9148. }
  9149. }
  9150. },
  9151. "Component_[14564562245168579615]": {
  9152. "$type": "EditorRigidBodyComponent",
  9153. "Id": 14564562245168579615,
  9154. "Configuration": {
  9155. "entityId": "",
  9156. "Mass": 999.9999389648438,
  9157. "Inertia tensor": [
  9158. 166.6666717529297,
  9159. 0.0,
  9160. 0.0,
  9161. 0.0,
  9162. 166.6666717529297,
  9163. 0.0,
  9164. 0.0,
  9165. 0.0,
  9166. 166.6666717529297
  9167. ]
  9168. }
  9169. },
  9170. "Component_[16056896985233530106]": {
  9171. "$type": "EditorDisabledCompositionComponent",
  9172. "Id": 16056896985233530106
  9173. },
  9174. "Component_[17648193282110847484]": {
  9175. "$type": "EditorOnlyEntityComponent",
  9176. "Id": 17648193282110847484
  9177. },
  9178. "Component_[17736719688956315985]": {
  9179. "$type": "GenericComponentWrapper",
  9180. "Id": 17736719688956315985,
  9181. "m_template": {
  9182. "$type": "Multiplayer::NetworkTransformComponent"
  9183. }
  9184. },
  9185. "Component_[1835082203551392000]": {
  9186. "$type": "EditorPendingCompositionComponent",
  9187. "Id": 1835082203551392000
  9188. },
  9189. "Component_[2164842339052442926]": {
  9190. "$type": "EditorEntitySortComponent",
  9191. "Id": 2164842339052442926
  9192. },
  9193. "Component_[3933618364732995768]": {
  9194. "$type": "EditorVisibilityComponent",
  9195. "Id": 3933618364732995768
  9196. },
  9197. "Component_[4455772334179006063]": {
  9198. "$type": "EditorEntityIconComponent",
  9199. "Id": 4455772334179006063
  9200. },
  9201. "Component_[7903212753103164289]": {
  9202. "$type": "EditorInspectorComponent",
  9203. "Id": 7903212753103164289,
  9204. "ComponentOrderEntryArray": [
  9205. {
  9206. "ComponentId": 11829233075139704453
  9207. },
  9208. {
  9209. "ComponentId": 8125251054274400256,
  9210. "SortIndex": 1
  9211. },
  9212. {
  9213. "ComponentId": 17736719688956315985,
  9214. "SortIndex": 2
  9215. },
  9216. {
  9217. "ComponentId": 12724016572532454792,
  9218. "SortIndex": 3
  9219. },
  9220. {
  9221. "ComponentId": 8184187118822500353,
  9222. "SortIndex": 4
  9223. },
  9224. {
  9225. "ComponentId": 11384954117619258935,
  9226. "SortIndex": 5
  9227. },
  9228. {
  9229. "ComponentId": 14564562245168579615,
  9230. "SortIndex": 6
  9231. },
  9232. {
  9233. "ComponentId": 9450029410653326667,
  9234. "SortIndex": 7
  9235. }
  9236. ]
  9237. },
  9238. "Component_[8125251054274400256]": {
  9239. "$type": "GenericComponentWrapper",
  9240. "Id": 8125251054274400256,
  9241. "m_template": {
  9242. "$type": "NetBindComponent"
  9243. }
  9244. },
  9245. "Component_[8184187118822500353]": {
  9246. "$type": "EditorMaterialComponent",
  9247. "Id": 8184187118822500353,
  9248. "Controller": {
  9249. "Configuration": {
  9250. "materials": {
  9251. "{}": {
  9252. "MaterialAsset": {
  9253. "assetId": {
  9254. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  9255. }
  9256. }
  9257. }
  9258. }
  9259. }
  9260. }
  9261. },
  9262. "Component_[9450029410653326667]": {
  9263. "$type": "GenericComponentWrapper",
  9264. "Id": 9450029410653326667,
  9265. "m_template": {
  9266. "$type": "Multiplayer::NetworkRigidBodyComponent"
  9267. }
  9268. },
  9269. "Component_[9452550092591643181]": {
  9270. "$type": "EditorLockComponent",
  9271. "Id": 9452550092591643181
  9272. }
  9273. }
  9274. },
  9275. "Entity_[738072267107]": {
  9276. "Id": "Entity_[738072267107]",
  9277. "Name": "Box3",
  9278. "Components": {
  9279. "Component_[11384954117619258935]": {
  9280. "$type": "EditorColliderComponent",
  9281. "Id": 11384954117619258935,
  9282. "ColliderConfiguration": {
  9283. "MaterialSlots": {
  9284. "Slots": [
  9285. {
  9286. "Name": "Entire object"
  9287. }
  9288. ]
  9289. }
  9290. },
  9291. "ShapeConfiguration": {
  9292. "ShapeType": 1
  9293. },
  9294. "DebugDrawSettings": {
  9295. "LocallyEnabled": false
  9296. }
  9297. },
  9298. "Component_[11829233075139704453]": {
  9299. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  9300. "Id": 11829233075139704453,
  9301. "Parent Entity": "ContainerEntity",
  9302. "Transform Data": {
  9303. "Translate": [
  9304. 0.6456379890441895,
  9305. -0.6137781143188477,
  9306. 2.126070022583008
  9307. ]
  9308. }
  9309. },
  9310. "Component_[12724016572532454792]": {
  9311. "$type": "AZ::Render::EditorMeshComponent",
  9312. "Id": 12724016572532454792,
  9313. "Controller": {
  9314. "Configuration": {
  9315. "ModelAsset": {
  9316. "assetId": {
  9317. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  9318. "subId": 285127096
  9319. },
  9320. "assetHint": "objects/cube.azmodel"
  9321. }
  9322. }
  9323. }
  9324. },
  9325. "Component_[14564562245168579615]": {
  9326. "$type": "EditorRigidBodyComponent",
  9327. "Id": 14564562245168579615,
  9328. "Configuration": {
  9329. "entityId": "",
  9330. "Mass": 999.9999389648438,
  9331. "Inertia tensor": [
  9332. 166.6666717529297,
  9333. 0.0,
  9334. 0.0,
  9335. 0.0,
  9336. 166.6666717529297,
  9337. 0.0,
  9338. 0.0,
  9339. 0.0,
  9340. 166.6666717529297
  9341. ]
  9342. }
  9343. },
  9344. "Component_[16056896985233530106]": {
  9345. "$type": "EditorDisabledCompositionComponent",
  9346. "Id": 16056896985233530106
  9347. },
  9348. "Component_[17648193282110847484]": {
  9349. "$type": "EditorOnlyEntityComponent",
  9350. "Id": 17648193282110847484
  9351. },
  9352. "Component_[17736719688956315985]": {
  9353. "$type": "GenericComponentWrapper",
  9354. "Id": 17736719688956315985,
  9355. "m_template": {
  9356. "$type": "Multiplayer::NetworkTransformComponent"
  9357. }
  9358. },
  9359. "Component_[1835082203551392000]": {
  9360. "$type": "EditorPendingCompositionComponent",
  9361. "Id": 1835082203551392000
  9362. },
  9363. "Component_[2164842339052442926]": {
  9364. "$type": "EditorEntitySortComponent",
  9365. "Id": 2164842339052442926
  9366. },
  9367. "Component_[3933618364732995768]": {
  9368. "$type": "EditorVisibilityComponent",
  9369. "Id": 3933618364732995768
  9370. },
  9371. "Component_[4455772334179006063]": {
  9372. "$type": "EditorEntityIconComponent",
  9373. "Id": 4455772334179006063
  9374. },
  9375. "Component_[7903212753103164289]": {
  9376. "$type": "EditorInspectorComponent",
  9377. "Id": 7903212753103164289,
  9378. "ComponentOrderEntryArray": [
  9379. {
  9380. "ComponentId": 11829233075139704453
  9381. },
  9382. {
  9383. "ComponentId": 8125251054274400256,
  9384. "SortIndex": 1
  9385. },
  9386. {
  9387. "ComponentId": 17736719688956315985,
  9388. "SortIndex": 2
  9389. },
  9390. {
  9391. "ComponentId": 12724016572532454792,
  9392. "SortIndex": 3
  9393. },
  9394. {
  9395. "ComponentId": 8184187118822500353,
  9396. "SortIndex": 4
  9397. },
  9398. {
  9399. "ComponentId": 11384954117619258935,
  9400. "SortIndex": 5
  9401. },
  9402. {
  9403. "ComponentId": 14564562245168579615,
  9404. "SortIndex": 6
  9405. },
  9406. {
  9407. "ComponentId": 9450029410653326667,
  9408. "SortIndex": 7
  9409. }
  9410. ]
  9411. },
  9412. "Component_[8125251054274400256]": {
  9413. "$type": "GenericComponentWrapper",
  9414. "Id": 8125251054274400256,
  9415. "m_template": {
  9416. "$type": "NetBindComponent"
  9417. }
  9418. },
  9419. "Component_[8184187118822500353]": {
  9420. "$type": "EditorMaterialComponent",
  9421. "Id": 8184187118822500353,
  9422. "Controller": {
  9423. "Configuration": {
  9424. "materials": {
  9425. "{}": {
  9426. "MaterialAsset": {
  9427. "assetId": {
  9428. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  9429. }
  9430. }
  9431. }
  9432. }
  9433. }
  9434. }
  9435. },
  9436. "Component_[9450029410653326667]": {
  9437. "$type": "GenericComponentWrapper",
  9438. "Id": 9450029410653326667,
  9439. "m_template": {
  9440. "$type": "Multiplayer::NetworkRigidBodyComponent"
  9441. }
  9442. },
  9443. "Component_[9452550092591643181]": {
  9444. "$type": "EditorLockComponent",
  9445. "Id": 9452550092591643181
  9446. }
  9447. }
  9448. },
  9449. "Entity_[742367234403]": {
  9450. "Id": "Entity_[742367234403]",
  9451. "Name": "Box4",
  9452. "Components": {
  9453. "Component_[11384954117619258935]": {
  9454. "$type": "EditorColliderComponent",
  9455. "Id": 11384954117619258935,
  9456. "ColliderConfiguration": {
  9457. "MaterialSlots": {
  9458. "Slots": [
  9459. {
  9460. "Name": "Entire object"
  9461. }
  9462. ]
  9463. }
  9464. },
  9465. "ShapeConfiguration": {
  9466. "ShapeType": 1
  9467. },
  9468. "DebugDrawSettings": {
  9469. "LocallyEnabled": false
  9470. }
  9471. },
  9472. "Component_[11829233075139704453]": {
  9473. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  9474. "Id": 11829233075139704453,
  9475. "Parent Entity": "ContainerEntity",
  9476. "Transform Data": {
  9477. "Translate": [
  9478. 0.6456379890441895,
  9479. 1.8704166412353516,
  9480. 3.1908931732177734
  9481. ]
  9482. }
  9483. },
  9484. "Component_[12724016572532454792]": {
  9485. "$type": "AZ::Render::EditorMeshComponent",
  9486. "Id": 12724016572532454792,
  9487. "Controller": {
  9488. "Configuration": {
  9489. "ModelAsset": {
  9490. "assetId": {
  9491. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  9492. "subId": 285127096
  9493. },
  9494. "assetHint": "objects/cube.azmodel"
  9495. }
  9496. }
  9497. }
  9498. },
  9499. "Component_[14564562245168579615]": {
  9500. "$type": "EditorRigidBodyComponent",
  9501. "Id": 14564562245168579615,
  9502. "Configuration": {
  9503. "entityId": "",
  9504. "Mass": 999.9999389648438,
  9505. "Inertia tensor": [
  9506. 166.6666717529297,
  9507. 0.0,
  9508. 0.0,
  9509. 0.0,
  9510. 166.6666717529297,
  9511. 0.0,
  9512. 0.0,
  9513. 0.0,
  9514. 166.6666717529297
  9515. ]
  9516. }
  9517. },
  9518. "Component_[16056896985233530106]": {
  9519. "$type": "EditorDisabledCompositionComponent",
  9520. "Id": 16056896985233530106
  9521. },
  9522. "Component_[17648193282110847484]": {
  9523. "$type": "EditorOnlyEntityComponent",
  9524. "Id": 17648193282110847484
  9525. },
  9526. "Component_[17736719688956315985]": {
  9527. "$type": "GenericComponentWrapper",
  9528. "Id": 17736719688956315985,
  9529. "m_template": {
  9530. "$type": "Multiplayer::NetworkTransformComponent"
  9531. }
  9532. },
  9533. "Component_[1835082203551392000]": {
  9534. "$type": "EditorPendingCompositionComponent",
  9535. "Id": 1835082203551392000
  9536. },
  9537. "Component_[2164842339052442926]": {
  9538. "$type": "EditorEntitySortComponent",
  9539. "Id": 2164842339052442926
  9540. },
  9541. "Component_[3933618364732995768]": {
  9542. "$type": "EditorVisibilityComponent",
  9543. "Id": 3933618364732995768
  9544. },
  9545. "Component_[4455772334179006063]": {
  9546. "$type": "EditorEntityIconComponent",
  9547. "Id": 4455772334179006063
  9548. },
  9549. "Component_[7903212753103164289]": {
  9550. "$type": "EditorInspectorComponent",
  9551. "Id": 7903212753103164289,
  9552. "ComponentOrderEntryArray": [
  9553. {
  9554. "ComponentId": 11829233075139704453
  9555. },
  9556. {
  9557. "ComponentId": 8125251054274400256,
  9558. "SortIndex": 1
  9559. },
  9560. {
  9561. "ComponentId": 17736719688956315985,
  9562. "SortIndex": 2
  9563. },
  9564. {
  9565. "ComponentId": 12724016572532454792,
  9566. "SortIndex": 3
  9567. },
  9568. {
  9569. "ComponentId": 8184187118822500353,
  9570. "SortIndex": 4
  9571. },
  9572. {
  9573. "ComponentId": 11384954117619258935,
  9574. "SortIndex": 5
  9575. },
  9576. {
  9577. "ComponentId": 14564562245168579615,
  9578. "SortIndex": 6
  9579. },
  9580. {
  9581. "ComponentId": 9450029410653326667,
  9582. "SortIndex": 7
  9583. }
  9584. ]
  9585. },
  9586. "Component_[8125251054274400256]": {
  9587. "$type": "GenericComponentWrapper",
  9588. "Id": 8125251054274400256,
  9589. "m_template": {
  9590. "$type": "NetBindComponent"
  9591. }
  9592. },
  9593. "Component_[8184187118822500353]": {
  9594. "$type": "EditorMaterialComponent",
  9595. "Id": 8184187118822500353,
  9596. "Controller": {
  9597. "Configuration": {
  9598. "materials": {
  9599. "{}": {
  9600. "MaterialAsset": {
  9601. "assetId": {
  9602. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  9603. }
  9604. }
  9605. }
  9606. }
  9607. }
  9608. }
  9609. },
  9610. "Component_[9450029410653326667]": {
  9611. "$type": "GenericComponentWrapper",
  9612. "Id": 9450029410653326667,
  9613. "m_template": {
  9614. "$type": "Multiplayer::NetworkRigidBodyComponent"
  9615. }
  9616. },
  9617. "Component_[9452550092591643181]": {
  9618. "$type": "EditorLockComponent",
  9619. "Id": 9452550092591643181
  9620. }
  9621. }
  9622. },
  9623. "Entity_[746662201699]": {
  9624. "Id": "Entity_[746662201699]",
  9625. "Name": "Box4",
  9626. "Components": {
  9627. "Component_[11384954117619258935]": {
  9628. "$type": "EditorColliderComponent",
  9629. "Id": 11384954117619258935,
  9630. "ColliderConfiguration": {
  9631. "MaterialSlots": {
  9632. "Slots": [
  9633. {
  9634. "Name": "Entire object"
  9635. }
  9636. ]
  9637. }
  9638. },
  9639. "ShapeConfiguration": {
  9640. "ShapeType": 1
  9641. },
  9642. "DebugDrawSettings": {
  9643. "LocallyEnabled": false
  9644. }
  9645. },
  9646. "Component_[11829233075139704453]": {
  9647. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  9648. "Id": 11829233075139704453,
  9649. "Parent Entity": "ContainerEntity",
  9650. "Transform Data": {
  9651. "Translate": [
  9652. 0.6456379890441895,
  9653. 0.6112356185913086,
  9654. 3.1908931732177734
  9655. ]
  9656. }
  9657. },
  9658. "Component_[12724016572532454792]": {
  9659. "$type": "AZ::Render::EditorMeshComponent",
  9660. "Id": 12724016572532454792,
  9661. "Controller": {
  9662. "Configuration": {
  9663. "ModelAsset": {
  9664. "assetId": {
  9665. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  9666. "subId": 285127096
  9667. },
  9668. "assetHint": "objects/cube.azmodel"
  9669. }
  9670. }
  9671. }
  9672. },
  9673. "Component_[14564562245168579615]": {
  9674. "$type": "EditorRigidBodyComponent",
  9675. "Id": 14564562245168579615,
  9676. "Configuration": {
  9677. "entityId": "",
  9678. "Mass": 999.9999389648438,
  9679. "Inertia tensor": [
  9680. 166.6666717529297,
  9681. 0.0,
  9682. 0.0,
  9683. 0.0,
  9684. 166.6666717529297,
  9685. 0.0,
  9686. 0.0,
  9687. 0.0,
  9688. 166.6666717529297
  9689. ]
  9690. }
  9691. },
  9692. "Component_[16056896985233530106]": {
  9693. "$type": "EditorDisabledCompositionComponent",
  9694. "Id": 16056896985233530106
  9695. },
  9696. "Component_[17648193282110847484]": {
  9697. "$type": "EditorOnlyEntityComponent",
  9698. "Id": 17648193282110847484
  9699. },
  9700. "Component_[17736719688956315985]": {
  9701. "$type": "GenericComponentWrapper",
  9702. "Id": 17736719688956315985,
  9703. "m_template": {
  9704. "$type": "Multiplayer::NetworkTransformComponent"
  9705. }
  9706. },
  9707. "Component_[1835082203551392000]": {
  9708. "$type": "EditorPendingCompositionComponent",
  9709. "Id": 1835082203551392000
  9710. },
  9711. "Component_[2164842339052442926]": {
  9712. "$type": "EditorEntitySortComponent",
  9713. "Id": 2164842339052442926
  9714. },
  9715. "Component_[3933618364732995768]": {
  9716. "$type": "EditorVisibilityComponent",
  9717. "Id": 3933618364732995768
  9718. },
  9719. "Component_[4455772334179006063]": {
  9720. "$type": "EditorEntityIconComponent",
  9721. "Id": 4455772334179006063
  9722. },
  9723. "Component_[7903212753103164289]": {
  9724. "$type": "EditorInspectorComponent",
  9725. "Id": 7903212753103164289,
  9726. "ComponentOrderEntryArray": [
  9727. {
  9728. "ComponentId": 11829233075139704453
  9729. },
  9730. {
  9731. "ComponentId": 8125251054274400256,
  9732. "SortIndex": 1
  9733. },
  9734. {
  9735. "ComponentId": 17736719688956315985,
  9736. "SortIndex": 2
  9737. },
  9738. {
  9739. "ComponentId": 12724016572532454792,
  9740. "SortIndex": 3
  9741. },
  9742. {
  9743. "ComponentId": 8184187118822500353,
  9744. "SortIndex": 4
  9745. },
  9746. {
  9747. "ComponentId": 11384954117619258935,
  9748. "SortIndex": 5
  9749. },
  9750. {
  9751. "ComponentId": 14564562245168579615,
  9752. "SortIndex": 6
  9753. },
  9754. {
  9755. "ComponentId": 9450029410653326667,
  9756. "SortIndex": 7
  9757. }
  9758. ]
  9759. },
  9760. "Component_[8125251054274400256]": {
  9761. "$type": "GenericComponentWrapper",
  9762. "Id": 8125251054274400256,
  9763. "m_template": {
  9764. "$type": "NetBindComponent"
  9765. }
  9766. },
  9767. "Component_[8184187118822500353]": {
  9768. "$type": "EditorMaterialComponent",
  9769. "Id": 8184187118822500353,
  9770. "Controller": {
  9771. "Configuration": {
  9772. "materials": {
  9773. "{}": {
  9774. "MaterialAsset": {
  9775. "assetId": {
  9776. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  9777. }
  9778. }
  9779. }
  9780. }
  9781. }
  9782. }
  9783. },
  9784. "Component_[9450029410653326667]": {
  9785. "$type": "GenericComponentWrapper",
  9786. "Id": 9450029410653326667,
  9787. "m_template": {
  9788. "$type": "Multiplayer::NetworkRigidBodyComponent"
  9789. }
  9790. },
  9791. "Component_[9452550092591643181]": {
  9792. "$type": "EditorLockComponent",
  9793. "Id": 9452550092591643181
  9794. }
  9795. }
  9796. },
  9797. "Entity_[750957168995]": {
  9798. "Id": "Entity_[750957168995]",
  9799. "Name": "Box2",
  9800. "Components": {
  9801. "Component_[11384954117619258935]": {
  9802. "$type": "EditorColliderComponent",
  9803. "Id": 11384954117619258935,
  9804. "ColliderConfiguration": {
  9805. "MaterialSlots": {
  9806. "Slots": [
  9807. {
  9808. "Name": "Entire object"
  9809. }
  9810. ]
  9811. }
  9812. },
  9813. "ShapeConfiguration": {
  9814. "ShapeType": 1
  9815. },
  9816. "DebugDrawSettings": {
  9817. "LocallyEnabled": false
  9818. }
  9819. },
  9820. "Component_[11829233075139704453]": {
  9821. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  9822. "Id": 11829233075139704453,
  9823. "Parent Entity": "ContainerEntity",
  9824. "Transform Data": {
  9825. "Translate": [
  9826. 0.6456379890441895,
  9827. -1.725468635559082,
  9828. 1.0648231506347656
  9829. ]
  9830. }
  9831. },
  9832. "Component_[12724016572532454792]": {
  9833. "$type": "AZ::Render::EditorMeshComponent",
  9834. "Id": 12724016572532454792,
  9835. "Controller": {
  9836. "Configuration": {
  9837. "ModelAsset": {
  9838. "assetId": {
  9839. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  9840. "subId": 285127096
  9841. },
  9842. "assetHint": "objects/cube.azmodel"
  9843. }
  9844. }
  9845. }
  9846. },
  9847. "Component_[14564562245168579615]": {
  9848. "$type": "EditorRigidBodyComponent",
  9849. "Id": 14564562245168579615,
  9850. "Configuration": {
  9851. "entityId": "",
  9852. "Mass": 999.9999389648438,
  9853. "Inertia tensor": [
  9854. 166.6666717529297,
  9855. 0.0,
  9856. 0.0,
  9857. 0.0,
  9858. 166.6666717529297,
  9859. 0.0,
  9860. 0.0,
  9861. 0.0,
  9862. 166.6666717529297
  9863. ]
  9864. }
  9865. },
  9866. "Component_[16056896985233530106]": {
  9867. "$type": "EditorDisabledCompositionComponent",
  9868. "Id": 16056896985233530106
  9869. },
  9870. "Component_[17648193282110847484]": {
  9871. "$type": "EditorOnlyEntityComponent",
  9872. "Id": 17648193282110847484
  9873. },
  9874. "Component_[17736719688956315985]": {
  9875. "$type": "GenericComponentWrapper",
  9876. "Id": 17736719688956315985,
  9877. "m_template": {
  9878. "$type": "Multiplayer::NetworkTransformComponent"
  9879. }
  9880. },
  9881. "Component_[1835082203551392000]": {
  9882. "$type": "EditorPendingCompositionComponent",
  9883. "Id": 1835082203551392000
  9884. },
  9885. "Component_[2164842339052442926]": {
  9886. "$type": "EditorEntitySortComponent",
  9887. "Id": 2164842339052442926
  9888. },
  9889. "Component_[3933618364732995768]": {
  9890. "$type": "EditorVisibilityComponent",
  9891. "Id": 3933618364732995768
  9892. },
  9893. "Component_[4455772334179006063]": {
  9894. "$type": "EditorEntityIconComponent",
  9895. "Id": 4455772334179006063
  9896. },
  9897. "Component_[7903212753103164289]": {
  9898. "$type": "EditorInspectorComponent",
  9899. "Id": 7903212753103164289,
  9900. "ComponentOrderEntryArray": [
  9901. {
  9902. "ComponentId": 11829233075139704453
  9903. },
  9904. {
  9905. "ComponentId": 8125251054274400256,
  9906. "SortIndex": 1
  9907. },
  9908. {
  9909. "ComponentId": 17736719688956315985,
  9910. "SortIndex": 2
  9911. },
  9912. {
  9913. "ComponentId": 12724016572532454792,
  9914. "SortIndex": 3
  9915. },
  9916. {
  9917. "ComponentId": 8184187118822500353,
  9918. "SortIndex": 4
  9919. },
  9920. {
  9921. "ComponentId": 11384954117619258935,
  9922. "SortIndex": 5
  9923. },
  9924. {
  9925. "ComponentId": 14564562245168579615,
  9926. "SortIndex": 6
  9927. },
  9928. {
  9929. "ComponentId": 9450029410653326667,
  9930. "SortIndex": 7
  9931. }
  9932. ]
  9933. },
  9934. "Component_[8125251054274400256]": {
  9935. "$type": "GenericComponentWrapper",
  9936. "Id": 8125251054274400256,
  9937. "m_template": {
  9938. "$type": "NetBindComponent"
  9939. }
  9940. },
  9941. "Component_[8184187118822500353]": {
  9942. "$type": "EditorMaterialComponent",
  9943. "Id": 8184187118822500353,
  9944. "Controller": {
  9945. "Configuration": {
  9946. "materials": {
  9947. "{}": {
  9948. "MaterialAsset": {
  9949. "assetId": {
  9950. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  9951. }
  9952. }
  9953. }
  9954. }
  9955. }
  9956. }
  9957. },
  9958. "Component_[9450029410653326667]": {
  9959. "$type": "GenericComponentWrapper",
  9960. "Id": 9450029410653326667,
  9961. "m_template": {
  9962. "$type": "Multiplayer::NetworkRigidBodyComponent"
  9963. }
  9964. },
  9965. "Component_[9452550092591643181]": {
  9966. "$type": "EditorLockComponent",
  9967. "Id": 9452550092591643181
  9968. }
  9969. }
  9970. },
  9971. "Entity_[755252136291]": {
  9972. "Id": "Entity_[755252136291]",
  9973. "Name": "Box2",
  9974. "Components": {
  9975. "Component_[11384954117619258935]": {
  9976. "$type": "EditorColliderComponent",
  9977. "Id": 11384954117619258935,
  9978. "ColliderConfiguration": {
  9979. "MaterialSlots": {
  9980. "Slots": [
  9981. {
  9982. "Name": "Entire object"
  9983. }
  9984. ]
  9985. }
  9986. },
  9987. "ShapeConfiguration": {
  9988. "ShapeType": 1
  9989. },
  9990. "DebugDrawSettings": {
  9991. "LocallyEnabled": false
  9992. }
  9993. },
  9994. "Component_[11829233075139704453]": {
  9995. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  9996. "Id": 11829233075139704453,
  9997. "Parent Entity": "ContainerEntity",
  9998. "Transform Data": {
  9999. "Translate": [
  10000. -1.5954484939575195,
  10001. -0.6137781143188477,
  10002. 1.0648231506347656
  10003. ]
  10004. }
  10005. },
  10006. "Component_[12724016572532454792]": {
  10007. "$type": "AZ::Render::EditorMeshComponent",
  10008. "Id": 12724016572532454792,
  10009. "Controller": {
  10010. "Configuration": {
  10011. "ModelAsset": {
  10012. "assetId": {
  10013. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  10014. "subId": 285127096
  10015. },
  10016. "assetHint": "objects/cube.azmodel"
  10017. }
  10018. }
  10019. }
  10020. },
  10021. "Component_[14564562245168579615]": {
  10022. "$type": "EditorRigidBodyComponent",
  10023. "Id": 14564562245168579615,
  10024. "Configuration": {
  10025. "entityId": "",
  10026. "Mass": 999.9999389648438,
  10027. "Inertia tensor": [
  10028. 166.6666717529297,
  10029. 0.0,
  10030. 0.0,
  10031. 0.0,
  10032. 166.6666717529297,
  10033. 0.0,
  10034. 0.0,
  10035. 0.0,
  10036. 166.6666717529297
  10037. ]
  10038. }
  10039. },
  10040. "Component_[16056896985233530106]": {
  10041. "$type": "EditorDisabledCompositionComponent",
  10042. "Id": 16056896985233530106
  10043. },
  10044. "Component_[17648193282110847484]": {
  10045. "$type": "EditorOnlyEntityComponent",
  10046. "Id": 17648193282110847484
  10047. },
  10048. "Component_[17736719688956315985]": {
  10049. "$type": "GenericComponentWrapper",
  10050. "Id": 17736719688956315985,
  10051. "m_template": {
  10052. "$type": "Multiplayer::NetworkTransformComponent"
  10053. }
  10054. },
  10055. "Component_[1835082203551392000]": {
  10056. "$type": "EditorPendingCompositionComponent",
  10057. "Id": 1835082203551392000
  10058. },
  10059. "Component_[2164842339052442926]": {
  10060. "$type": "EditorEntitySortComponent",
  10061. "Id": 2164842339052442926
  10062. },
  10063. "Component_[3933618364732995768]": {
  10064. "$type": "EditorVisibilityComponent",
  10065. "Id": 3933618364732995768
  10066. },
  10067. "Component_[4455772334179006063]": {
  10068. "$type": "EditorEntityIconComponent",
  10069. "Id": 4455772334179006063
  10070. },
  10071. "Component_[7903212753103164289]": {
  10072. "$type": "EditorInspectorComponent",
  10073. "Id": 7903212753103164289,
  10074. "ComponentOrderEntryArray": [
  10075. {
  10076. "ComponentId": 11829233075139704453
  10077. },
  10078. {
  10079. "ComponentId": 8125251054274400256,
  10080. "SortIndex": 1
  10081. },
  10082. {
  10083. "ComponentId": 17736719688956315985,
  10084. "SortIndex": 2
  10085. },
  10086. {
  10087. "ComponentId": 12724016572532454792,
  10088. "SortIndex": 3
  10089. },
  10090. {
  10091. "ComponentId": 8184187118822500353,
  10092. "SortIndex": 4
  10093. },
  10094. {
  10095. "ComponentId": 11384954117619258935,
  10096. "SortIndex": 5
  10097. },
  10098. {
  10099. "ComponentId": 14564562245168579615,
  10100. "SortIndex": 6
  10101. },
  10102. {
  10103. "ComponentId": 9450029410653326667,
  10104. "SortIndex": 7
  10105. }
  10106. ]
  10107. },
  10108. "Component_[8125251054274400256]": {
  10109. "$type": "GenericComponentWrapper",
  10110. "Id": 8125251054274400256,
  10111. "m_template": {
  10112. "$type": "NetBindComponent"
  10113. }
  10114. },
  10115. "Component_[8184187118822500353]": {
  10116. "$type": "EditorMaterialComponent",
  10117. "Id": 8184187118822500353,
  10118. "Controller": {
  10119. "Configuration": {
  10120. "materials": {
  10121. "{}": {
  10122. "MaterialAsset": {
  10123. "assetId": {
  10124. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  10125. }
  10126. }
  10127. }
  10128. }
  10129. }
  10130. }
  10131. },
  10132. "Component_[9450029410653326667]": {
  10133. "$type": "GenericComponentWrapper",
  10134. "Id": 9450029410653326667,
  10135. "m_template": {
  10136. "$type": "Multiplayer::NetworkRigidBodyComponent"
  10137. }
  10138. },
  10139. "Component_[9452550092591643181]": {
  10140. "$type": "EditorLockComponent",
  10141. "Id": 9452550092591643181
  10142. }
  10143. }
  10144. },
  10145. "Entity_[759547103587]": {
  10146. "Id": "Entity_[759547103587]",
  10147. "Name": "Box4",
  10148. "Components": {
  10149. "Component_[11384954117619258935]": {
  10150. "$type": "EditorColliderComponent",
  10151. "Id": 11384954117619258935,
  10152. "ColliderConfiguration": {
  10153. "MaterialSlots": {
  10154. "Slots": [
  10155. {
  10156. "Name": "Entire object"
  10157. }
  10158. ]
  10159. }
  10160. },
  10161. "ShapeConfiguration": {
  10162. "ShapeType": 1
  10163. },
  10164. "DebugDrawSettings": {
  10165. "LocallyEnabled": false
  10166. }
  10167. },
  10168. "Component_[11829233075139704453]": {
  10169. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  10170. "Id": 11829233075139704453,
  10171. "Parent Entity": "ContainerEntity",
  10172. "Transform Data": {
  10173. "Translate": [
  10174. -1.5954484939575195,
  10175. -0.6137781143188477,
  10176. 3.1908931732177734
  10177. ]
  10178. }
  10179. },
  10180. "Component_[12724016572532454792]": {
  10181. "$type": "AZ::Render::EditorMeshComponent",
  10182. "Id": 12724016572532454792,
  10183. "Controller": {
  10184. "Configuration": {
  10185. "ModelAsset": {
  10186. "assetId": {
  10187. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  10188. "subId": 285127096
  10189. },
  10190. "assetHint": "objects/cube.azmodel"
  10191. }
  10192. }
  10193. }
  10194. },
  10195. "Component_[14564562245168579615]": {
  10196. "$type": "EditorRigidBodyComponent",
  10197. "Id": 14564562245168579615,
  10198. "Configuration": {
  10199. "entityId": "",
  10200. "Mass": 999.9999389648438,
  10201. "Inertia tensor": [
  10202. 166.6666717529297,
  10203. 0.0,
  10204. 0.0,
  10205. 0.0,
  10206. 166.6666717529297,
  10207. 0.0,
  10208. 0.0,
  10209. 0.0,
  10210. 166.6666717529297
  10211. ]
  10212. }
  10213. },
  10214. "Component_[16056896985233530106]": {
  10215. "$type": "EditorDisabledCompositionComponent",
  10216. "Id": 16056896985233530106
  10217. },
  10218. "Component_[17648193282110847484]": {
  10219. "$type": "EditorOnlyEntityComponent",
  10220. "Id": 17648193282110847484
  10221. },
  10222. "Component_[17736719688956315985]": {
  10223. "$type": "GenericComponentWrapper",
  10224. "Id": 17736719688956315985,
  10225. "m_template": {
  10226. "$type": "Multiplayer::NetworkTransformComponent"
  10227. }
  10228. },
  10229. "Component_[1835082203551392000]": {
  10230. "$type": "EditorPendingCompositionComponent",
  10231. "Id": 1835082203551392000
  10232. },
  10233. "Component_[2164842339052442926]": {
  10234. "$type": "EditorEntitySortComponent",
  10235. "Id": 2164842339052442926
  10236. },
  10237. "Component_[3933618364732995768]": {
  10238. "$type": "EditorVisibilityComponent",
  10239. "Id": 3933618364732995768
  10240. },
  10241. "Component_[4455772334179006063]": {
  10242. "$type": "EditorEntityIconComponent",
  10243. "Id": 4455772334179006063
  10244. },
  10245. "Component_[7903212753103164289]": {
  10246. "$type": "EditorInspectorComponent",
  10247. "Id": 7903212753103164289,
  10248. "ComponentOrderEntryArray": [
  10249. {
  10250. "ComponentId": 11829233075139704453
  10251. },
  10252. {
  10253. "ComponentId": 8125251054274400256,
  10254. "SortIndex": 1
  10255. },
  10256. {
  10257. "ComponentId": 17736719688956315985,
  10258. "SortIndex": 2
  10259. },
  10260. {
  10261. "ComponentId": 12724016572532454792,
  10262. "SortIndex": 3
  10263. },
  10264. {
  10265. "ComponentId": 8184187118822500353,
  10266. "SortIndex": 4
  10267. },
  10268. {
  10269. "ComponentId": 11384954117619258935,
  10270. "SortIndex": 5
  10271. },
  10272. {
  10273. "ComponentId": 14564562245168579615,
  10274. "SortIndex": 6
  10275. },
  10276. {
  10277. "ComponentId": 9450029410653326667,
  10278. "SortIndex": 7
  10279. }
  10280. ]
  10281. },
  10282. "Component_[8125251054274400256]": {
  10283. "$type": "GenericComponentWrapper",
  10284. "Id": 8125251054274400256,
  10285. "m_template": {
  10286. "$type": "NetBindComponent"
  10287. }
  10288. },
  10289. "Component_[8184187118822500353]": {
  10290. "$type": "EditorMaterialComponent",
  10291. "Id": 8184187118822500353,
  10292. "Controller": {
  10293. "Configuration": {
  10294. "materials": {
  10295. "{}": {
  10296. "MaterialAsset": {
  10297. "assetId": {
  10298. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  10299. }
  10300. }
  10301. }
  10302. }
  10303. }
  10304. }
  10305. },
  10306. "Component_[9450029410653326667]": {
  10307. "$type": "GenericComponentWrapper",
  10308. "Id": 9450029410653326667,
  10309. "m_template": {
  10310. "$type": "Multiplayer::NetworkRigidBodyComponent"
  10311. }
  10312. },
  10313. "Component_[9452550092591643181]": {
  10314. "$type": "EditorLockComponent",
  10315. "Id": 9452550092591643181
  10316. }
  10317. }
  10318. },
  10319. "Entity_[763842070883]": {
  10320. "Id": "Entity_[763842070883]",
  10321. "Name": "Box1",
  10322. "Components": {
  10323. "Component_[11384954117619258935]": {
  10324. "$type": "EditorColliderComponent",
  10325. "Id": 11384954117619258935,
  10326. "ColliderConfiguration": {
  10327. "MaterialSlots": {
  10328. "Slots": [
  10329. {
  10330. "Name": "Entire object"
  10331. }
  10332. ]
  10333. }
  10334. },
  10335. "ShapeConfiguration": {
  10336. "ShapeType": 1
  10337. },
  10338. "DebugDrawSettings": {
  10339. "LocallyEnabled": false
  10340. }
  10341. },
  10342. "Component_[11829233075139704453]": {
  10343. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  10344. "Id": 11829233075139704453,
  10345. "Parent Entity": "ContainerEntity",
  10346. "Transform Data": {
  10347. "Translate": [
  10348. -0.4683690071105957,
  10349. -1.725468635559082,
  10350. 0.0
  10351. ]
  10352. }
  10353. },
  10354. "Component_[12724016572532454792]": {
  10355. "$type": "AZ::Render::EditorMeshComponent",
  10356. "Id": 12724016572532454792,
  10357. "Controller": {
  10358. "Configuration": {
  10359. "ModelAsset": {
  10360. "assetId": {
  10361. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  10362. "subId": 285127096
  10363. },
  10364. "assetHint": "objects/cube.azmodel"
  10365. }
  10366. }
  10367. }
  10368. },
  10369. "Component_[14564562245168579615]": {
  10370. "$type": "EditorRigidBodyComponent",
  10371. "Id": 14564562245168579615,
  10372. "Configuration": {
  10373. "entityId": "",
  10374. "Mass": 999.9999389648438,
  10375. "Inertia tensor": [
  10376. 166.6666717529297,
  10377. 0.0,
  10378. 0.0,
  10379. 0.0,
  10380. 166.6666717529297,
  10381. 0.0,
  10382. 0.0,
  10383. 0.0,
  10384. 166.6666717529297
  10385. ]
  10386. }
  10387. },
  10388. "Component_[16056896985233530106]": {
  10389. "$type": "EditorDisabledCompositionComponent",
  10390. "Id": 16056896985233530106
  10391. },
  10392. "Component_[17648193282110847484]": {
  10393. "$type": "EditorOnlyEntityComponent",
  10394. "Id": 17648193282110847484
  10395. },
  10396. "Component_[17736719688956315985]": {
  10397. "$type": "GenericComponentWrapper",
  10398. "Id": 17736719688956315985,
  10399. "m_template": {
  10400. "$type": "Multiplayer::NetworkTransformComponent"
  10401. }
  10402. },
  10403. "Component_[1835082203551392000]": {
  10404. "$type": "EditorPendingCompositionComponent",
  10405. "Id": 1835082203551392000
  10406. },
  10407. "Component_[2164842339052442926]": {
  10408. "$type": "EditorEntitySortComponent",
  10409. "Id": 2164842339052442926
  10410. },
  10411. "Component_[3933618364732995768]": {
  10412. "$type": "EditorVisibilityComponent",
  10413. "Id": 3933618364732995768
  10414. },
  10415. "Component_[4455772334179006063]": {
  10416. "$type": "EditorEntityIconComponent",
  10417. "Id": 4455772334179006063
  10418. },
  10419. "Component_[7903212753103164289]": {
  10420. "$type": "EditorInspectorComponent",
  10421. "Id": 7903212753103164289,
  10422. "ComponentOrderEntryArray": [
  10423. {
  10424. "ComponentId": 11829233075139704453
  10425. },
  10426. {
  10427. "ComponentId": 8125251054274400256,
  10428. "SortIndex": 1
  10429. },
  10430. {
  10431. "ComponentId": 17736719688956315985,
  10432. "SortIndex": 2
  10433. },
  10434. {
  10435. "ComponentId": 12724016572532454792,
  10436. "SortIndex": 3
  10437. },
  10438. {
  10439. "ComponentId": 8184187118822500353,
  10440. "SortIndex": 4
  10441. },
  10442. {
  10443. "ComponentId": 11384954117619258935,
  10444. "SortIndex": 5
  10445. },
  10446. {
  10447. "ComponentId": 14564562245168579615,
  10448. "SortIndex": 6
  10449. },
  10450. {
  10451. "ComponentId": 9450029410653326667,
  10452. "SortIndex": 7
  10453. }
  10454. ]
  10455. },
  10456. "Component_[8125251054274400256]": {
  10457. "$type": "GenericComponentWrapper",
  10458. "Id": 8125251054274400256,
  10459. "m_template": {
  10460. "$type": "NetBindComponent"
  10461. }
  10462. },
  10463. "Component_[8184187118822500353]": {
  10464. "$type": "EditorMaterialComponent",
  10465. "Id": 8184187118822500353,
  10466. "Controller": {
  10467. "Configuration": {
  10468. "materials": {
  10469. "{}": {
  10470. "MaterialAsset": {
  10471. "assetId": {
  10472. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  10473. }
  10474. }
  10475. }
  10476. }
  10477. }
  10478. }
  10479. },
  10480. "Component_[9450029410653326667]": {
  10481. "$type": "GenericComponentWrapper",
  10482. "Id": 9450029410653326667,
  10483. "m_template": {
  10484. "$type": "Multiplayer::NetworkRigidBodyComponent"
  10485. }
  10486. },
  10487. "Component_[9452550092591643181]": {
  10488. "$type": "EditorLockComponent",
  10489. "Id": 9452550092591643181
  10490. }
  10491. }
  10492. },
  10493. "Entity_[768137038179]": {
  10494. "Id": "Entity_[768137038179]",
  10495. "Name": "Box1",
  10496. "Components": {
  10497. "Component_[11384954117619258935]": {
  10498. "$type": "EditorColliderComponent",
  10499. "Id": 11384954117619258935,
  10500. "ColliderConfiguration": {
  10501. "MaterialSlots": {
  10502. "Slots": [
  10503. {
  10504. "Name": "Entire object"
  10505. }
  10506. ]
  10507. }
  10508. },
  10509. "ShapeConfiguration": {
  10510. "ShapeType": 1
  10511. },
  10512. "DebugDrawSettings": {
  10513. "LocallyEnabled": false
  10514. }
  10515. },
  10516. "Component_[11829233075139704453]": {
  10517. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  10518. "Id": 11829233075139704453,
  10519. "Parent Entity": "ContainerEntity",
  10520. "Transform Data": {
  10521. "Translate": [
  10522. -0.4683690071105957,
  10523. 1.8704166412353516,
  10524. 0.0
  10525. ]
  10526. }
  10527. },
  10528. "Component_[12724016572532454792]": {
  10529. "$type": "AZ::Render::EditorMeshComponent",
  10530. "Id": 12724016572532454792,
  10531. "Controller": {
  10532. "Configuration": {
  10533. "ModelAsset": {
  10534. "assetId": {
  10535. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  10536. "subId": 285127096
  10537. },
  10538. "assetHint": "objects/cube.azmodel"
  10539. }
  10540. }
  10541. }
  10542. },
  10543. "Component_[14564562245168579615]": {
  10544. "$type": "EditorRigidBodyComponent",
  10545. "Id": 14564562245168579615,
  10546. "Configuration": {
  10547. "entityId": "",
  10548. "Mass": 999.9999389648438,
  10549. "Inertia tensor": [
  10550. 166.6666717529297,
  10551. 0.0,
  10552. 0.0,
  10553. 0.0,
  10554. 166.6666717529297,
  10555. 0.0,
  10556. 0.0,
  10557. 0.0,
  10558. 166.6666717529297
  10559. ]
  10560. }
  10561. },
  10562. "Component_[16056896985233530106]": {
  10563. "$type": "EditorDisabledCompositionComponent",
  10564. "Id": 16056896985233530106
  10565. },
  10566. "Component_[17648193282110847484]": {
  10567. "$type": "EditorOnlyEntityComponent",
  10568. "Id": 17648193282110847484
  10569. },
  10570. "Component_[17736719688956315985]": {
  10571. "$type": "GenericComponentWrapper",
  10572. "Id": 17736719688956315985,
  10573. "m_template": {
  10574. "$type": "Multiplayer::NetworkTransformComponent"
  10575. }
  10576. },
  10577. "Component_[1835082203551392000]": {
  10578. "$type": "EditorPendingCompositionComponent",
  10579. "Id": 1835082203551392000
  10580. },
  10581. "Component_[2164842339052442926]": {
  10582. "$type": "EditorEntitySortComponent",
  10583. "Id": 2164842339052442926
  10584. },
  10585. "Component_[3933618364732995768]": {
  10586. "$type": "EditorVisibilityComponent",
  10587. "Id": 3933618364732995768
  10588. },
  10589. "Component_[4455772334179006063]": {
  10590. "$type": "EditorEntityIconComponent",
  10591. "Id": 4455772334179006063
  10592. },
  10593. "Component_[7903212753103164289]": {
  10594. "$type": "EditorInspectorComponent",
  10595. "Id": 7903212753103164289,
  10596. "ComponentOrderEntryArray": [
  10597. {
  10598. "ComponentId": 11829233075139704453
  10599. },
  10600. {
  10601. "ComponentId": 8125251054274400256,
  10602. "SortIndex": 1
  10603. },
  10604. {
  10605. "ComponentId": 17736719688956315985,
  10606. "SortIndex": 2
  10607. },
  10608. {
  10609. "ComponentId": 12724016572532454792,
  10610. "SortIndex": 3
  10611. },
  10612. {
  10613. "ComponentId": 8184187118822500353,
  10614. "SortIndex": 4
  10615. },
  10616. {
  10617. "ComponentId": 11384954117619258935,
  10618. "SortIndex": 5
  10619. },
  10620. {
  10621. "ComponentId": 14564562245168579615,
  10622. "SortIndex": 6
  10623. },
  10624. {
  10625. "ComponentId": 9450029410653326667,
  10626. "SortIndex": 7
  10627. }
  10628. ]
  10629. },
  10630. "Component_[8125251054274400256]": {
  10631. "$type": "GenericComponentWrapper",
  10632. "Id": 8125251054274400256,
  10633. "m_template": {
  10634. "$type": "NetBindComponent"
  10635. }
  10636. },
  10637. "Component_[8184187118822500353]": {
  10638. "$type": "EditorMaterialComponent",
  10639. "Id": 8184187118822500353,
  10640. "Controller": {
  10641. "Configuration": {
  10642. "materials": {
  10643. "{}": {
  10644. "MaterialAsset": {
  10645. "assetId": {
  10646. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  10647. }
  10648. }
  10649. }
  10650. }
  10651. }
  10652. }
  10653. },
  10654. "Component_[9450029410653326667]": {
  10655. "$type": "GenericComponentWrapper",
  10656. "Id": 9450029410653326667,
  10657. "m_template": {
  10658. "$type": "Multiplayer::NetworkRigidBodyComponent"
  10659. }
  10660. },
  10661. "Component_[9452550092591643181]": {
  10662. "$type": "EditorLockComponent",
  10663. "Id": 9452550092591643181
  10664. }
  10665. }
  10666. },
  10667. "Entity_[772432005475]": {
  10668. "Id": "Entity_[772432005475]",
  10669. "Name": "Box1",
  10670. "Components": {
  10671. "Component_[11384954117619258935]": {
  10672. "$type": "EditorColliderComponent",
  10673. "Id": 11384954117619258935,
  10674. "ColliderConfiguration": {
  10675. "MaterialSlots": {
  10676. "Slots": [
  10677. {
  10678. "Name": "Entire object"
  10679. }
  10680. ]
  10681. }
  10682. },
  10683. "ShapeConfiguration": {
  10684. "ShapeType": 1
  10685. },
  10686. "DebugDrawSettings": {
  10687. "LocallyEnabled": false
  10688. }
  10689. },
  10690. "Component_[11829233075139704453]": {
  10691. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  10692. "Id": 11829233075139704453,
  10693. "Parent Entity": "ContainerEntity",
  10694. "Transform Data": {
  10695. "Translate": [
  10696. -1.5954484939575195,
  10697. -0.6137781143188477,
  10698. 0.0
  10699. ]
  10700. }
  10701. },
  10702. "Component_[12724016572532454792]": {
  10703. "$type": "AZ::Render::EditorMeshComponent",
  10704. "Id": 12724016572532454792,
  10705. "Controller": {
  10706. "Configuration": {
  10707. "ModelAsset": {
  10708. "assetId": {
  10709. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  10710. "subId": 285127096
  10711. },
  10712. "assetHint": "objects/cube.azmodel"
  10713. }
  10714. }
  10715. }
  10716. },
  10717. "Component_[14564562245168579615]": {
  10718. "$type": "EditorRigidBodyComponent",
  10719. "Id": 14564562245168579615,
  10720. "Configuration": {
  10721. "entityId": "",
  10722. "Mass": 999.9999389648438,
  10723. "Inertia tensor": [
  10724. 166.6666717529297,
  10725. 0.0,
  10726. 0.0,
  10727. 0.0,
  10728. 166.6666717529297,
  10729. 0.0,
  10730. 0.0,
  10731. 0.0,
  10732. 166.6666717529297
  10733. ]
  10734. }
  10735. },
  10736. "Component_[16056896985233530106]": {
  10737. "$type": "EditorDisabledCompositionComponent",
  10738. "Id": 16056896985233530106
  10739. },
  10740. "Component_[17648193282110847484]": {
  10741. "$type": "EditorOnlyEntityComponent",
  10742. "Id": 17648193282110847484
  10743. },
  10744. "Component_[17736719688956315985]": {
  10745. "$type": "GenericComponentWrapper",
  10746. "Id": 17736719688956315985,
  10747. "m_template": {
  10748. "$type": "Multiplayer::NetworkTransformComponent"
  10749. }
  10750. },
  10751. "Component_[1835082203551392000]": {
  10752. "$type": "EditorPendingCompositionComponent",
  10753. "Id": 1835082203551392000
  10754. },
  10755. "Component_[2164842339052442926]": {
  10756. "$type": "EditorEntitySortComponent",
  10757. "Id": 2164842339052442926
  10758. },
  10759. "Component_[3933618364732995768]": {
  10760. "$type": "EditorVisibilityComponent",
  10761. "Id": 3933618364732995768
  10762. },
  10763. "Component_[4455772334179006063]": {
  10764. "$type": "EditorEntityIconComponent",
  10765. "Id": 4455772334179006063
  10766. },
  10767. "Component_[7903212753103164289]": {
  10768. "$type": "EditorInspectorComponent",
  10769. "Id": 7903212753103164289,
  10770. "ComponentOrderEntryArray": [
  10771. {
  10772. "ComponentId": 11829233075139704453
  10773. },
  10774. {
  10775. "ComponentId": 8125251054274400256,
  10776. "SortIndex": 1
  10777. },
  10778. {
  10779. "ComponentId": 17736719688956315985,
  10780. "SortIndex": 2
  10781. },
  10782. {
  10783. "ComponentId": 12724016572532454792,
  10784. "SortIndex": 3
  10785. },
  10786. {
  10787. "ComponentId": 8184187118822500353,
  10788. "SortIndex": 4
  10789. },
  10790. {
  10791. "ComponentId": 11384954117619258935,
  10792. "SortIndex": 5
  10793. },
  10794. {
  10795. "ComponentId": 14564562245168579615,
  10796. "SortIndex": 6
  10797. },
  10798. {
  10799. "ComponentId": 9450029410653326667,
  10800. "SortIndex": 7
  10801. }
  10802. ]
  10803. },
  10804. "Component_[8125251054274400256]": {
  10805. "$type": "GenericComponentWrapper",
  10806. "Id": 8125251054274400256,
  10807. "m_template": {
  10808. "$type": "NetBindComponent"
  10809. }
  10810. },
  10811. "Component_[8184187118822500353]": {
  10812. "$type": "EditorMaterialComponent",
  10813. "Id": 8184187118822500353,
  10814. "Controller": {
  10815. "Configuration": {
  10816. "materials": {
  10817. "{}": {
  10818. "MaterialAsset": {
  10819. "assetId": {
  10820. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  10821. }
  10822. }
  10823. }
  10824. }
  10825. }
  10826. }
  10827. },
  10828. "Component_[9450029410653326667]": {
  10829. "$type": "GenericComponentWrapper",
  10830. "Id": 9450029410653326667,
  10831. "m_template": {
  10832. "$type": "Multiplayer::NetworkRigidBodyComponent"
  10833. }
  10834. },
  10835. "Component_[9452550092591643181]": {
  10836. "$type": "EditorLockComponent",
  10837. "Id": 9452550092591643181
  10838. }
  10839. }
  10840. },
  10841. "Entity_[776726972771]": {
  10842. "Id": "Entity_[776726972771]",
  10843. "Name": "Box4",
  10844. "Components": {
  10845. "Component_[11384954117619258935]": {
  10846. "$type": "EditorColliderComponent",
  10847. "Id": 11384954117619258935,
  10848. "ColliderConfiguration": {
  10849. "MaterialSlots": {
  10850. "Slots": [
  10851. {
  10852. "Name": "Entire object"
  10853. }
  10854. ]
  10855. }
  10856. },
  10857. "ShapeConfiguration": {
  10858. "ShapeType": 1
  10859. },
  10860. "DebugDrawSettings": {
  10861. "LocallyEnabled": false
  10862. }
  10863. },
  10864. "Component_[11829233075139704453]": {
  10865. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  10866. "Id": 11829233075139704453,
  10867. "Parent Entity": "ContainerEntity",
  10868. "Transform Data": {
  10869. "Translate": [
  10870. 1.7793126106262207,
  10871. -0.6137781143188477,
  10872. 3.1908931732177734
  10873. ]
  10874. }
  10875. },
  10876. "Component_[12724016572532454792]": {
  10877. "$type": "AZ::Render::EditorMeshComponent",
  10878. "Id": 12724016572532454792,
  10879. "Controller": {
  10880. "Configuration": {
  10881. "ModelAsset": {
  10882. "assetId": {
  10883. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  10884. "subId": 285127096
  10885. },
  10886. "assetHint": "objects/cube.azmodel"
  10887. }
  10888. }
  10889. }
  10890. },
  10891. "Component_[14564562245168579615]": {
  10892. "$type": "EditorRigidBodyComponent",
  10893. "Id": 14564562245168579615,
  10894. "Configuration": {
  10895. "entityId": "",
  10896. "Mass": 999.9999389648438,
  10897. "Inertia tensor": [
  10898. 166.6666717529297,
  10899. 0.0,
  10900. 0.0,
  10901. 0.0,
  10902. 166.6666717529297,
  10903. 0.0,
  10904. 0.0,
  10905. 0.0,
  10906. 166.6666717529297
  10907. ]
  10908. }
  10909. },
  10910. "Component_[16056896985233530106]": {
  10911. "$type": "EditorDisabledCompositionComponent",
  10912. "Id": 16056896985233530106
  10913. },
  10914. "Component_[17648193282110847484]": {
  10915. "$type": "EditorOnlyEntityComponent",
  10916. "Id": 17648193282110847484
  10917. },
  10918. "Component_[17736719688956315985]": {
  10919. "$type": "GenericComponentWrapper",
  10920. "Id": 17736719688956315985,
  10921. "m_template": {
  10922. "$type": "Multiplayer::NetworkTransformComponent"
  10923. }
  10924. },
  10925. "Component_[1835082203551392000]": {
  10926. "$type": "EditorPendingCompositionComponent",
  10927. "Id": 1835082203551392000
  10928. },
  10929. "Component_[2164842339052442926]": {
  10930. "$type": "EditorEntitySortComponent",
  10931. "Id": 2164842339052442926
  10932. },
  10933. "Component_[3933618364732995768]": {
  10934. "$type": "EditorVisibilityComponent",
  10935. "Id": 3933618364732995768
  10936. },
  10937. "Component_[4455772334179006063]": {
  10938. "$type": "EditorEntityIconComponent",
  10939. "Id": 4455772334179006063
  10940. },
  10941. "Component_[7903212753103164289]": {
  10942. "$type": "EditorInspectorComponent",
  10943. "Id": 7903212753103164289,
  10944. "ComponentOrderEntryArray": [
  10945. {
  10946. "ComponentId": 11829233075139704453
  10947. },
  10948. {
  10949. "ComponentId": 8125251054274400256,
  10950. "SortIndex": 1
  10951. },
  10952. {
  10953. "ComponentId": 17736719688956315985,
  10954. "SortIndex": 2
  10955. },
  10956. {
  10957. "ComponentId": 12724016572532454792,
  10958. "SortIndex": 3
  10959. },
  10960. {
  10961. "ComponentId": 8184187118822500353,
  10962. "SortIndex": 4
  10963. },
  10964. {
  10965. "ComponentId": 11384954117619258935,
  10966. "SortIndex": 5
  10967. },
  10968. {
  10969. "ComponentId": 14564562245168579615,
  10970. "SortIndex": 6
  10971. },
  10972. {
  10973. "ComponentId": 9450029410653326667,
  10974. "SortIndex": 7
  10975. }
  10976. ]
  10977. },
  10978. "Component_[8125251054274400256]": {
  10979. "$type": "GenericComponentWrapper",
  10980. "Id": 8125251054274400256,
  10981. "m_template": {
  10982. "$type": "NetBindComponent"
  10983. }
  10984. },
  10985. "Component_[8184187118822500353]": {
  10986. "$type": "EditorMaterialComponent",
  10987. "Id": 8184187118822500353,
  10988. "Controller": {
  10989. "Configuration": {
  10990. "materials": {
  10991. "{}": {
  10992. "MaterialAsset": {
  10993. "assetId": {
  10994. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  10995. }
  10996. }
  10997. }
  10998. }
  10999. }
  11000. }
  11001. },
  11002. "Component_[9450029410653326667]": {
  11003. "$type": "GenericComponentWrapper",
  11004. "Id": 9450029410653326667,
  11005. "m_template": {
  11006. "$type": "Multiplayer::NetworkRigidBodyComponent"
  11007. }
  11008. },
  11009. "Component_[9452550092591643181]": {
  11010. "$type": "EditorLockComponent",
  11011. "Id": 9452550092591643181
  11012. }
  11013. }
  11014. },
  11015. "Entity_[781021940067]": {
  11016. "Id": "Entity_[781021940067]",
  11017. "Name": "Box3",
  11018. "Components": {
  11019. "Component_[11384954117619258935]": {
  11020. "$type": "EditorColliderComponent",
  11021. "Id": 11384954117619258935,
  11022. "ColliderConfiguration": {
  11023. "MaterialSlots": {
  11024. "Slots": [
  11025. {
  11026. "Name": "Entire object"
  11027. }
  11028. ]
  11029. }
  11030. },
  11031. "ShapeConfiguration": {
  11032. "ShapeType": 1
  11033. },
  11034. "DebugDrawSettings": {
  11035. "LocallyEnabled": false
  11036. }
  11037. },
  11038. "Component_[11829233075139704453]": {
  11039. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  11040. "Id": 11829233075139704453,
  11041. "Parent Entity": "ContainerEntity",
  11042. "Transform Data": {
  11043. "Translate": [
  11044. 1.7793126106262207,
  11045. 0.6112356185913086,
  11046. 2.126070022583008
  11047. ]
  11048. }
  11049. },
  11050. "Component_[12724016572532454792]": {
  11051. "$type": "AZ::Render::EditorMeshComponent",
  11052. "Id": 12724016572532454792,
  11053. "Controller": {
  11054. "Configuration": {
  11055. "ModelAsset": {
  11056. "assetId": {
  11057. "guid": "{593006BE-FE73-5A4B-A0A6-06C02EFFE458}",
  11058. "subId": 285127096
  11059. },
  11060. "assetHint": "objects/cube.azmodel"
  11061. }
  11062. }
  11063. }
  11064. },
  11065. "Component_[14564562245168579615]": {
  11066. "$type": "EditorRigidBodyComponent",
  11067. "Id": 14564562245168579615,
  11068. "Configuration": {
  11069. "entityId": "",
  11070. "Mass": 999.9999389648438,
  11071. "Inertia tensor": [
  11072. 166.6666717529297,
  11073. 0.0,
  11074. 0.0,
  11075. 0.0,
  11076. 166.6666717529297,
  11077. 0.0,
  11078. 0.0,
  11079. 0.0,
  11080. 166.6666717529297
  11081. ]
  11082. }
  11083. },
  11084. "Component_[16056896985233530106]": {
  11085. "$type": "EditorDisabledCompositionComponent",
  11086. "Id": 16056896985233530106
  11087. },
  11088. "Component_[17648193282110847484]": {
  11089. "$type": "EditorOnlyEntityComponent",
  11090. "Id": 17648193282110847484
  11091. },
  11092. "Component_[17736719688956315985]": {
  11093. "$type": "GenericComponentWrapper",
  11094. "Id": 17736719688956315985,
  11095. "m_template": {
  11096. "$type": "Multiplayer::NetworkTransformComponent"
  11097. }
  11098. },
  11099. "Component_[1835082203551392000]": {
  11100. "$type": "EditorPendingCompositionComponent",
  11101. "Id": 1835082203551392000
  11102. },
  11103. "Component_[2164842339052442926]": {
  11104. "$type": "EditorEntitySortComponent",
  11105. "Id": 2164842339052442926
  11106. },
  11107. "Component_[3933618364732995768]": {
  11108. "$type": "EditorVisibilityComponent",
  11109. "Id": 3933618364732995768
  11110. },
  11111. "Component_[4455772334179006063]": {
  11112. "$type": "EditorEntityIconComponent",
  11113. "Id": 4455772334179006063
  11114. },
  11115. "Component_[7903212753103164289]": {
  11116. "$type": "EditorInspectorComponent",
  11117. "Id": 7903212753103164289,
  11118. "ComponentOrderEntryArray": [
  11119. {
  11120. "ComponentId": 11829233075139704453
  11121. },
  11122. {
  11123. "ComponentId": 8125251054274400256,
  11124. "SortIndex": 1
  11125. },
  11126. {
  11127. "ComponentId": 17736719688956315985,
  11128. "SortIndex": 2
  11129. },
  11130. {
  11131. "ComponentId": 12724016572532454792,
  11132. "SortIndex": 3
  11133. },
  11134. {
  11135. "ComponentId": 8184187118822500353,
  11136. "SortIndex": 4
  11137. },
  11138. {
  11139. "ComponentId": 11384954117619258935,
  11140. "SortIndex": 5
  11141. },
  11142. {
  11143. "ComponentId": 14564562245168579615,
  11144. "SortIndex": 6
  11145. },
  11146. {
  11147. "ComponentId": 9450029410653326667,
  11148. "SortIndex": 7
  11149. }
  11150. ]
  11151. },
  11152. "Component_[8125251054274400256]": {
  11153. "$type": "GenericComponentWrapper",
  11154. "Id": 8125251054274400256,
  11155. "m_template": {
  11156. "$type": "NetBindComponent"
  11157. }
  11158. },
  11159. "Component_[8184187118822500353]": {
  11160. "$type": "EditorMaterialComponent",
  11161. "Id": 8184187118822500353,
  11162. "Controller": {
  11163. "Configuration": {
  11164. "materials": {
  11165. "{}": {
  11166. "MaterialAsset": {
  11167. "assetId": {
  11168. "guid": "{A9637DF4-45A8-5362-A708-7BEC5C58FFD5}"
  11169. }
  11170. }
  11171. }
  11172. }
  11173. }
  11174. }
  11175. },
  11176. "Component_[9450029410653326667]": {
  11177. "$type": "GenericComponentWrapper",
  11178. "Id": 9450029410653326667,
  11179. "m_template": {
  11180. "$type": "Multiplayer::NetworkRigidBodyComponent"
  11181. }
  11182. },
  11183. "Component_[9452550092591643181]": {
  11184. "$type": "EditorLockComponent",
  11185. "Id": 9452550092591643181
  11186. }
  11187. }
  11188. }
  11189. }
  11190. }