4x4x4BoxGrid.prefab 424 KB

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