Warehouse.prefab 606 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168
  1. {
  2. "ContainerEntity": {
  3. "Id": "ContainerEntity",
  4. "Name": "Warehouse",
  5. "Components": {
  6. "EditorDisabledCompositionComponent": {
  7. "$type": "EditorDisabledCompositionComponent",
  8. "Id": 14671392399846135761
  9. },
  10. "EditorEntityIconComponent": {
  11. "$type": "EditorEntityIconComponent",
  12. "Id": 636540351180103799
  13. },
  14. "EditorEntitySortComponent": {
  15. "$type": "EditorEntitySortComponent",
  16. "Id": 10085931660882807285,
  17. "Child Entity Order": [
  18. "Entity_[996096428895746]"
  19. ]
  20. },
  21. "EditorInspectorComponent": {
  22. "$type": "EditorInspectorComponent",
  23. "Id": 6584862127852984490
  24. },
  25. "EditorLockComponent": {
  26. "$type": "EditorLockComponent",
  27. "Id": 316922748067739713
  28. },
  29. "EditorOnlyEntityComponent": {
  30. "$type": "EditorOnlyEntityComponent",
  31. "Id": 3904370330439032419
  32. },
  33. "EditorPendingCompositionComponent": {
  34. "$type": "EditorPendingCompositionComponent",
  35. "Id": 8073818825627277537
  36. },
  37. "EditorPrefabComponent": {
  38. "$type": "EditorPrefabComponent",
  39. "Id": 13936072012582414107
  40. },
  41. "EditorVisibilityComponent": {
  42. "$type": "EditorVisibilityComponent",
  43. "Id": 18053045436088048308
  44. },
  45. "TransformComponent": {
  46. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  47. "Id": 4005961120214299853,
  48. "Parent Entity": ""
  49. }
  50. }
  51. },
  52. "Entities": {
  53. "Entity_[995817256021506]": {
  54. "Id": "Entity_[995817256021506]",
  55. "Name": "corner",
  56. "Components": {
  57. "Component_[10500648739299668939]": {
  58. "$type": "EditorDisabledCompositionComponent",
  59. "Id": 10500648739299668939
  60. },
  61. "Component_[1054428503372686093]": {
  62. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  63. "Id": 1054428503372686093,
  64. "Parent Entity": "Entity_[996143673536002]",
  65. "Transform Data": {
  66. "Translate": [
  67. -3.5059452056884766,
  68. -2.138000011444092,
  69. 0.0
  70. ]
  71. }
  72. },
  73. "Component_[12045779898573478531]": {
  74. "$type": "EditorInspectorComponent",
  75. "Id": 12045779898573478531
  76. },
  77. "Component_[12228613816215076155]": {
  78. "$type": "EditorEntitySortComponent",
  79. "Id": 12228613816215076155
  80. },
  81. "Component_[12502744294820326116]": {
  82. "$type": "EditorOnlyEntityComponent",
  83. "Id": 12502744294820326116
  84. },
  85. "Component_[12903035105505580650]": {
  86. "$type": "EditorVisibilityComponent",
  87. "Id": 12903035105505580650
  88. },
  89. "Component_[17622569680873604777]": {
  90. "$type": "EditorPendingCompositionComponent",
  91. "Id": 17622569680873604777
  92. },
  93. "Component_[184072808979487519]": {
  94. "$type": "EditorLockComponent",
  95. "Id": 184072808979487519
  96. },
  97. "Component_[6699738828310866771]": {
  98. "$type": "AZ::Render::EditorDecalComponent",
  99. "Id": 6699738828310866771,
  100. "Controller": {
  101. "Configuration": {
  102. "Opacity": 0.3199999928474426,
  103. "Material": {
  104. "assetId": {
  105. "guid": "{39CC958C-1BBB-512A-816D-919023CE3E90}"
  106. },
  107. "assetHint": "assets/warehouse/floor_markings/markings_corner.azmaterial"
  108. }
  109. }
  110. }
  111. },
  112. "Component_[8716140543667152403]": {
  113. "$type": "EditorEntityIconComponent",
  114. "Id": 8716140543667152403
  115. }
  116. }
  117. },
  118. "Entity_[995821550988802]": {
  119. "Id": "Entity_[995821550988802]",
  120. "Name": "mid2",
  121. "Components": {
  122. "Component_[10500648739299668939]": {
  123. "$type": "EditorDisabledCompositionComponent",
  124. "Id": 10500648739299668939
  125. },
  126. "Component_[1054428503372686093]": {
  127. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  128. "Id": 1054428503372686093,
  129. "Parent Entity": "Entity_[995928925171202]",
  130. "Transform Data": {
  131. "Translate": [
  132. -8.014589309692383,
  133. -0.006518006324768066,
  134. 0.0
  135. ],
  136. "Rotate": [
  137. 0.0,
  138. 0.0,
  139. -89.99994659423828
  140. ]
  141. }
  142. },
  143. "Component_[12045779898573478531]": {
  144. "$type": "EditorInspectorComponent",
  145. "Id": 12045779898573478531
  146. },
  147. "Component_[12228613816215076155]": {
  148. "$type": "EditorEntitySortComponent",
  149. "Id": 12228613816215076155
  150. },
  151. "Component_[12502744294820326116]": {
  152. "$type": "EditorOnlyEntityComponent",
  153. "Id": 12502744294820326116
  154. },
  155. "Component_[12903035105505580650]": {
  156. "$type": "EditorVisibilityComponent",
  157. "Id": 12903035105505580650
  158. },
  159. "Component_[15136090500032023536]": {
  160. "$type": "EditorNonUniformScaleComponent",
  161. "Id": 15136090500032023536
  162. },
  163. "Component_[17622569680873604777]": {
  164. "$type": "EditorPendingCompositionComponent",
  165. "Id": 17622569680873604777
  166. },
  167. "Component_[184072808979487519]": {
  168. "$type": "EditorLockComponent",
  169. "Id": 184072808979487519
  170. },
  171. "Component_[6699738828310866771]": {
  172. "$type": "AZ::Render::EditorDecalComponent",
  173. "Id": 6699738828310866771,
  174. "Controller": {
  175. "Configuration": {
  176. "Opacity": 0.3199999928474426,
  177. "Material": {
  178. "assetId": {
  179. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  180. },
  181. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  182. }
  183. }
  184. }
  185. },
  186. "Component_[8716140543667152403]": {
  187. "$type": "EditorEntityIconComponent",
  188. "Id": 8716140543667152403
  189. }
  190. }
  191. },
  192. "Entity_[995825845956098]": {
  193. "Id": "Entity_[995825845956098]",
  194. "Name": "end1",
  195. "Components": {
  196. "Component_[10500648739299668939]": {
  197. "$type": "EditorDisabledCompositionComponent",
  198. "Id": 10500648739299668939
  199. },
  200. "Component_[1054428503372686093]": {
  201. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  202. "Id": 1054428503372686093,
  203. "Parent Entity": "Entity_[995928925171202]",
  204. "Transform Data": {
  205. "Translate": [
  206. -0.01623392105102539,
  207. -0.006514906883239746,
  208. 0.0
  209. ],
  210. "Rotate": [
  211. 0.0,
  212. 0.0,
  213. -89.99994659423828
  214. ]
  215. }
  216. },
  217. "Component_[12045779898573478531]": {
  218. "$type": "EditorInspectorComponent",
  219. "Id": 12045779898573478531
  220. },
  221. "Component_[12228613816215076155]": {
  222. "$type": "EditorEntitySortComponent",
  223. "Id": 12228613816215076155
  224. },
  225. "Component_[12502744294820326116]": {
  226. "$type": "EditorOnlyEntityComponent",
  227. "Id": 12502744294820326116
  228. },
  229. "Component_[12903035105505580650]": {
  230. "$type": "EditorVisibilityComponent",
  231. "Id": 12903035105505580650
  232. },
  233. "Component_[17622569680873604777]": {
  234. "$type": "EditorPendingCompositionComponent",
  235. "Id": 17622569680873604777
  236. },
  237. "Component_[184072808979487519]": {
  238. "$type": "EditorLockComponent",
  239. "Id": 184072808979487519
  240. },
  241. "Component_[6699738828310866771]": {
  242. "$type": "AZ::Render::EditorDecalComponent",
  243. "Id": 6699738828310866771,
  244. "Controller": {
  245. "Configuration": {
  246. "Opacity": 0.3199999928474426,
  247. "Material": {
  248. "assetId": {
  249. "guid": "{F4C96494-A086-59D2-A605-06E760588573}"
  250. },
  251. "assetHint": "assets/warehouse/floor_markings/markings_end1.azmaterial"
  252. }
  253. }
  254. }
  255. },
  256. "Component_[8716140543667152403]": {
  257. "$type": "EditorEntityIconComponent",
  258. "Id": 8716140543667152403
  259. }
  260. }
  261. },
  262. "Entity_[995830140923394]": {
  263. "Id": "Entity_[995830140923394]",
  264. "Name": "mid2",
  265. "Components": {
  266. "Component_[10500648739299668939]": {
  267. "$type": "EditorDisabledCompositionComponent",
  268. "Id": 10500648739299668939
  269. },
  270. "Component_[1054428503372686093]": {
  271. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  272. "Id": 1054428503372686093,
  273. "Parent Entity": "Entity_[996010529549826]",
  274. "Transform Data": {
  275. "Translate": [
  276. -20.00970458984375,
  277. -0.006518363952636719,
  278. 0.0
  279. ],
  280. "Rotate": [
  281. 0.0,
  282. 0.0,
  283. -89.99994659423828
  284. ]
  285. }
  286. },
  287. "Component_[12045779898573478531]": {
  288. "$type": "EditorInspectorComponent",
  289. "Id": 12045779898573478531
  290. },
  291. "Component_[12228613816215076155]": {
  292. "$type": "EditorEntitySortComponent",
  293. "Id": 12228613816215076155
  294. },
  295. "Component_[12502744294820326116]": {
  296. "$type": "EditorOnlyEntityComponent",
  297. "Id": 12502744294820326116
  298. },
  299. "Component_[12903035105505580650]": {
  300. "$type": "EditorVisibilityComponent",
  301. "Id": 12903035105505580650
  302. },
  303. "Component_[17622569680873604777]": {
  304. "$type": "EditorPendingCompositionComponent",
  305. "Id": 17622569680873604777
  306. },
  307. "Component_[184072808979487519]": {
  308. "$type": "EditorLockComponent",
  309. "Id": 184072808979487519
  310. },
  311. "Component_[8716140543667152403]": {
  312. "$type": "EditorEntityIconComponent",
  313. "Id": 8716140543667152403
  314. },
  315. "Component_[9674067328213239035]": {
  316. "$type": "AZ::Render::EditorDecalComponent",
  317. "Id": 9674067328213239035,
  318. "Controller": {
  319. "Configuration": {
  320. "Opacity": 0.3199999928474426,
  321. "Material": {
  322. "assetId": {
  323. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  324. },
  325. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  326. }
  327. }
  328. }
  329. }
  330. }
  331. },
  332. "Entity_[995834435890690]": {
  333. "Id": "Entity_[995834435890690]",
  334. "Name": "mid2",
  335. "Components": {
  336. "Component_[10500648739299668939]": {
  337. "$type": "EditorDisabledCompositionComponent",
  338. "Id": 10500648739299668939
  339. },
  340. "Component_[1054428503372686093]": {
  341. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  342. "Id": 1054428503372686093,
  343. "Parent Entity": "Entity_[996010529549826]",
  344. "Transform Data": {
  345. "Translate": [
  346. -4.016423225402832,
  347. -0.006518363952636719,
  348. 0.0
  349. ],
  350. "Rotate": [
  351. 0.0,
  352. 0.0,
  353. -89.99994659423828
  354. ]
  355. }
  356. },
  357. "Component_[11836374392916574008]": {
  358. "$type": "AZ::Render::EditorDecalComponent",
  359. "Id": 11836374392916574008,
  360. "Controller": {
  361. "Configuration": {
  362. "Opacity": 0.3199999928474426,
  363. "Material": {
  364. "assetId": {
  365. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  366. },
  367. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  368. }
  369. }
  370. }
  371. },
  372. "Component_[12045779898573478531]": {
  373. "$type": "EditorInspectorComponent",
  374. "Id": 12045779898573478531
  375. },
  376. "Component_[12228613816215076155]": {
  377. "$type": "EditorEntitySortComponent",
  378. "Id": 12228613816215076155
  379. },
  380. "Component_[12502744294820326116]": {
  381. "$type": "EditorOnlyEntityComponent",
  382. "Id": 12502744294820326116
  383. },
  384. "Component_[12903035105505580650]": {
  385. "$type": "EditorVisibilityComponent",
  386. "Id": 12903035105505580650
  387. },
  388. "Component_[17622569680873604777]": {
  389. "$type": "EditorPendingCompositionComponent",
  390. "Id": 17622569680873604777
  391. },
  392. "Component_[184072808979487519]": {
  393. "$type": "EditorLockComponent",
  394. "Id": 184072808979487519
  395. },
  396. "Component_[8716140543667152403]": {
  397. "$type": "EditorEntityIconComponent",
  398. "Id": 8716140543667152403
  399. }
  400. }
  401. },
  402. "Entity_[995838730857986]": {
  403. "Id": "Entity_[995838730857986]",
  404. "Name": "row3",
  405. "Components": {
  406. "Component_[10311219420704440311]": {
  407. "$type": "EditorOnlyEntityComponent",
  408. "Id": 10311219420704440311
  409. },
  410. "Component_[10613465856665953947]": {
  411. "$type": "EditorDisabledCompositionComponent",
  412. "Id": 10613465856665953947
  413. },
  414. "Component_[1099445320312667240]": {
  415. "$type": "EditorLockComponent",
  416. "Id": 1099445320312667240
  417. },
  418. "Component_[11553853199545380956]": {
  419. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  420. "Id": 11553853199545380956,
  421. "Parent Entity": "Entity_[995855910727170]",
  422. "Transform Data": {
  423. "Translate": [
  424. -1.1725715398788452,
  425. 8.14289379119873,
  426. 9.125040054321289
  427. ]
  428. }
  429. },
  430. "Component_[15291901364082073937]": {
  431. "$type": "EditorEntityIconComponent",
  432. "Id": 15291901364082073937
  433. },
  434. "Component_[17384941475010859956]": {
  435. "$type": "EditorVisibilityComponent",
  436. "Id": 17384941475010859956
  437. },
  438. "Component_[17889284555767441878]": {
  439. "$type": "EditorInspectorComponent",
  440. "Id": 17889284555767441878
  441. },
  442. "Component_[6748173508085193281]": {
  443. "$type": "EditorEntitySortComponent",
  444. "Id": 6748173508085193281,
  445. "Child Entity Order": [
  446. "Instance_[42121288032893]/ContainerEntity",
  447. "Instance_[42112698098301]/ContainerEntity",
  448. "Instance_[42116993065597]/ContainerEntity",
  449. "Instance_[42172827640445]/ContainerEntity",
  450. "Instance_[42164237705853]/ContainerEntity",
  451. "Instance_[42168532673149]/ContainerEntity"
  452. ]
  453. },
  454. "Component_[7432015336954531022]": {
  455. "$type": "EditorPendingCompositionComponent",
  456. "Id": 7432015336954531022
  457. }
  458. }
  459. },
  460. "Entity_[995843025825282]": {
  461. "Id": "Entity_[995843025825282]",
  462. "Name": "mid2",
  463. "Components": {
  464. "Component_[10500648739299668939]": {
  465. "$type": "EditorDisabledCompositionComponent",
  466. "Id": 10500648739299668939
  467. },
  468. "Component_[1054428503372686093]": {
  469. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  470. "Id": 1054428503372686093,
  471. "Parent Entity": "Entity_[995928925171202]",
  472. "Transform Data": {
  473. "Translate": [
  474. -20.00970458984375,
  475. -0.006518006324768066,
  476. 0.0
  477. ],
  478. "Rotate": [
  479. 0.0,
  480. 0.0,
  481. -89.99994659423828
  482. ]
  483. }
  484. },
  485. "Component_[12045779898573478531]": {
  486. "$type": "EditorInspectorComponent",
  487. "Id": 12045779898573478531
  488. },
  489. "Component_[12228613816215076155]": {
  490. "$type": "EditorEntitySortComponent",
  491. "Id": 12228613816215076155
  492. },
  493. "Component_[12502744294820326116]": {
  494. "$type": "EditorOnlyEntityComponent",
  495. "Id": 12502744294820326116
  496. },
  497. "Component_[12903035105505580650]": {
  498. "$type": "EditorVisibilityComponent",
  499. "Id": 12903035105505580650
  500. },
  501. "Component_[17622569680873604777]": {
  502. "$type": "EditorPendingCompositionComponent",
  503. "Id": 17622569680873604777
  504. },
  505. "Component_[184072808979487519]": {
  506. "$type": "EditorLockComponent",
  507. "Id": 184072808979487519
  508. },
  509. "Component_[8638646148012638843]": {
  510. "$type": "AZ::Render::EditorDecalComponent",
  511. "Id": 8638646148012638843,
  512. "Controller": {
  513. "Configuration": {
  514. "Opacity": 0.3199999928474426,
  515. "Material": {
  516. "assetId": {
  517. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  518. },
  519. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  520. }
  521. }
  522. }
  523. },
  524. "Component_[8716140543667152403]": {
  525. "$type": "EditorEntityIconComponent",
  526. "Id": 8716140543667152403
  527. }
  528. }
  529. },
  530. "Entity_[995847320792578]": {
  531. "Id": "Entity_[995847320792578]",
  532. "Name": "mid2",
  533. "Components": {
  534. "Component_[10500648739299668939]": {
  535. "$type": "EditorDisabledCompositionComponent",
  536. "Id": 10500648739299668939
  537. },
  538. "Component_[1054428503372686093]": {
  539. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  540. "Id": 1054428503372686093,
  541. "Parent Entity": "Entity_[996156558437890]",
  542. "Transform Data": {
  543. "Translate": [
  544. -4.016423225402832,
  545. -0.006518363952636719,
  546. 0.0
  547. ],
  548. "Rotate": [
  549. 0.0,
  550. 0.0,
  551. -89.99994659423828
  552. ]
  553. }
  554. },
  555. "Component_[12045779898573478531]": {
  556. "$type": "EditorInspectorComponent",
  557. "Id": 12045779898573478531
  558. },
  559. "Component_[12228613816215076155]": {
  560. "$type": "EditorEntitySortComponent",
  561. "Id": 12228613816215076155
  562. },
  563. "Component_[12502744294820326116]": {
  564. "$type": "EditorOnlyEntityComponent",
  565. "Id": 12502744294820326116
  566. },
  567. "Component_[12903035105505580650]": {
  568. "$type": "EditorVisibilityComponent",
  569. "Id": 12903035105505580650
  570. },
  571. "Component_[17622569680873604777]": {
  572. "$type": "EditorPendingCompositionComponent",
  573. "Id": 17622569680873604777
  574. },
  575. "Component_[184072808979487519]": {
  576. "$type": "EditorLockComponent",
  577. "Id": 184072808979487519
  578. },
  579. "Component_[6699738828310866771]": {
  580. "$type": "AZ::Render::EditorDecalComponent",
  581. "Id": 6699738828310866771,
  582. "Controller": {
  583. "Configuration": {
  584. "Opacity": 0.3199999928474426,
  585. "Material": {
  586. "assetId": {
  587. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  588. },
  589. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  590. }
  591. }
  592. }
  593. },
  594. "Component_[8716140543667152403]": {
  595. "$type": "EditorEntityIconComponent",
  596. "Id": 8716140543667152403
  597. }
  598. }
  599. },
  600. "Entity_[995851615759874]": {
  601. "Id": "Entity_[995851615759874]",
  602. "Name": "corner",
  603. "Components": {
  604. "Component_[10500648739299668939]": {
  605. "$type": "EditorDisabledCompositionComponent",
  606. "Id": 10500648739299668939
  607. },
  608. "Component_[1054428503372686093]": {
  609. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  610. "Id": 1054428503372686093,
  611. "Parent Entity": "Entity_[995989054713346]",
  612. "Transform Data": {
  613. "Translate": [
  614. -3.4920077323913574,
  615. -0.1381152868270874,
  616. 0.0
  617. ],
  618. "Rotate": [
  619. 0.0,
  620. 0.0,
  621. -89.99994659423828
  622. ]
  623. }
  624. },
  625. "Component_[12045779898573478531]": {
  626. "$type": "EditorInspectorComponent",
  627. "Id": 12045779898573478531
  628. },
  629. "Component_[12228613816215076155]": {
  630. "$type": "EditorEntitySortComponent",
  631. "Id": 12228613816215076155
  632. },
  633. "Component_[12502744294820326116]": {
  634. "$type": "EditorOnlyEntityComponent",
  635. "Id": 12502744294820326116
  636. },
  637. "Component_[12903035105505580650]": {
  638. "$type": "EditorVisibilityComponent",
  639. "Id": 12903035105505580650
  640. },
  641. "Component_[17622569680873604777]": {
  642. "$type": "EditorPendingCompositionComponent",
  643. "Id": 17622569680873604777
  644. },
  645. "Component_[184072808979487519]": {
  646. "$type": "EditorLockComponent",
  647. "Id": 184072808979487519
  648. },
  649. "Component_[6699738828310866771]": {
  650. "$type": "AZ::Render::EditorDecalComponent",
  651. "Id": 6699738828310866771,
  652. "Controller": {
  653. "Configuration": {
  654. "Opacity": 0.3199999928474426,
  655. "Material": {
  656. "assetId": {
  657. "guid": "{39CC958C-1BBB-512A-816D-919023CE3E90}"
  658. },
  659. "assetHint": "assets/warehouse/floor_markings/markings_corner.azmaterial"
  660. }
  661. }
  662. }
  663. },
  664. "Component_[8716140543667152403]": {
  665. "$type": "EditorEntityIconComponent",
  666. "Id": 8716140543667152403
  667. }
  668. }
  669. },
  670. "Entity_[995855910727170]": {
  671. "Id": "Entity_[995855910727170]",
  672. "Name": "Lights",
  673. "Components": {
  674. "Component_[10986098954968295878]": {
  675. "$type": "EditorDisabledCompositionComponent",
  676. "Id": 10986098954968295878
  677. },
  678. "Component_[11901749182025327972]": {
  679. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  680. "Id": 11901749182025327972,
  681. "Parent Entity": "Entity_[996040594320898]",
  682. "Transform Data": {
  683. "Translate": [
  684. 28.637195587158203,
  685. -7.540553092956543,
  686. -1.9806101322174072
  687. ]
  688. }
  689. },
  690. "Component_[1685220300737509820]": {
  691. "$type": "EditorEntityIconComponent",
  692. "Id": 1685220300737509820
  693. },
  694. "Component_[18212935934052258424]": {
  695. "$type": "EditorVisibilityComponent",
  696. "Id": 18212935934052258424
  697. },
  698. "Component_[3514887250984985573]": {
  699. "$type": "EditorEntitySortComponent",
  700. "Id": 3514887250984985573,
  701. "Child Entity Order": [
  702. "Entity_[995920335236610]",
  703. "Entity_[996122198699522]",
  704. "Entity_[995838730857986]",
  705. "Entity_[995967579876866]",
  706. "Entity_[996087838961154]",
  707. "Entity_[995873090596354]",
  708. "Entity_[995984759746050]"
  709. ]
  710. },
  711. "Component_[3801970221126031042]": {
  712. "$type": "EditorOnlyEntityComponent",
  713. "Id": 3801970221126031042
  714. },
  715. "Component_[4764108266284292865]": {
  716. "$type": "EditorLockComponent",
  717. "Id": 4764108266284292865
  718. },
  719. "Component_[9416731180903450407]": {
  720. "$type": "EditorPendingCompositionComponent",
  721. "Id": 9416731180903450407
  722. },
  723. "Component_[9949866120966122803]": {
  724. "$type": "EditorInspectorComponent",
  725. "Id": 9949866120966122803
  726. }
  727. }
  728. },
  729. "Entity_[995860205694466]": {
  730. "Id": "Entity_[995860205694466]",
  731. "Name": "mid1",
  732. "Components": {
  733. "Component_[10500648739299668939]": {
  734. "$type": "EditorDisabledCompositionComponent",
  735. "Id": 10500648739299668939
  736. },
  737. "Component_[1054428503372686093]": {
  738. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  739. "Id": 1054428503372686093,
  740. "Parent Entity": "Entity_[995928925171202]",
  741. "Transform Data": {
  742. "Translate": [
  743. -25.8799991607666,
  744. -0.006519675254821777,
  745. 0.0
  746. ],
  747. "Rotate": [
  748. 0.0,
  749. 0.0,
  750. -89.99994659423828
  751. ]
  752. }
  753. },
  754. "Component_[11525446969161604231]": {
  755. "$type": "AZ::Render::EditorDecalComponent",
  756. "Id": 11525446969161604231,
  757. "Controller": {
  758. "Configuration": {
  759. "Opacity": 0.3199999928474426,
  760. "Material": {
  761. "assetId": {
  762. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  763. },
  764. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  765. }
  766. }
  767. }
  768. },
  769. "Component_[12045779898573478531]": {
  770. "$type": "EditorInspectorComponent",
  771. "Id": 12045779898573478531
  772. },
  773. "Component_[12228613816215076155]": {
  774. "$type": "EditorEntitySortComponent",
  775. "Id": 12228613816215076155
  776. },
  777. "Component_[12502744294820326116]": {
  778. "$type": "EditorOnlyEntityComponent",
  779. "Id": 12502744294820326116
  780. },
  781. "Component_[12903035105505580650]": {
  782. "$type": "EditorVisibilityComponent",
  783. "Id": 12903035105505580650
  784. },
  785. "Component_[17622569680873604777]": {
  786. "$type": "EditorPendingCompositionComponent",
  787. "Id": 17622569680873604777
  788. },
  789. "Component_[184072808979487519]": {
  790. "$type": "EditorLockComponent",
  791. "Id": 184072808979487519
  792. },
  793. "Component_[5600569940493692809]": {
  794. "$type": "EditorNonUniformScaleComponent",
  795. "Id": 5600569940493692809,
  796. "NonUniformScale": [
  797. 1.0,
  798. 0.871999979019165,
  799. 1.0
  800. ]
  801. },
  802. "Component_[8716140543667152403]": {
  803. "$type": "EditorEntityIconComponent",
  804. "Id": 8716140543667152403
  805. }
  806. }
  807. },
  808. "Entity_[995864500661762]": {
  809. "Id": "Entity_[995864500661762]",
  810. "Name": "mid2",
  811. "Components": {
  812. "Component_[10500648739299668939]": {
  813. "$type": "EditorDisabledCompositionComponent",
  814. "Id": 10500648739299668939
  815. },
  816. "Component_[1054428503372686093]": {
  817. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  818. "Id": 1054428503372686093,
  819. "Parent Entity": "Entity_[996010529549826]",
  820. "Transform Data": {
  821. "Translate": [
  822. -8.014589309692383,
  823. -0.006518363952636719,
  824. 0.0
  825. ],
  826. "Rotate": [
  827. 0.0,
  828. 0.0,
  829. -89.99994659423828
  830. ]
  831. }
  832. },
  833. "Component_[12045779898573478531]": {
  834. "$type": "EditorInspectorComponent",
  835. "Id": 12045779898573478531
  836. },
  837. "Component_[12228613816215076155]": {
  838. "$type": "EditorEntitySortComponent",
  839. "Id": 12228613816215076155
  840. },
  841. "Component_[12502744294820326116]": {
  842. "$type": "EditorOnlyEntityComponent",
  843. "Id": 12502744294820326116
  844. },
  845. "Component_[12903035105505580650]": {
  846. "$type": "EditorVisibilityComponent",
  847. "Id": 12903035105505580650
  848. },
  849. "Component_[15136090500032023536]": {
  850. "$type": "EditorNonUniformScaleComponent",
  851. "Id": 15136090500032023536
  852. },
  853. "Component_[16245507229345556357]": {
  854. "$type": "AZ::Render::EditorDecalComponent",
  855. "Id": 16245507229345556357,
  856. "Controller": {
  857. "Configuration": {
  858. "Opacity": 0.3199999928474426,
  859. "Material": {
  860. "assetId": {
  861. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  862. },
  863. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  864. }
  865. }
  866. }
  867. },
  868. "Component_[17622569680873604777]": {
  869. "$type": "EditorPendingCompositionComponent",
  870. "Id": 17622569680873604777
  871. },
  872. "Component_[184072808979487519]": {
  873. "$type": "EditorLockComponent",
  874. "Id": 184072808979487519
  875. },
  876. "Component_[8716140543667152403]": {
  877. "$type": "EditorEntityIconComponent",
  878. "Id": 8716140543667152403
  879. }
  880. }
  881. },
  882. "Entity_[995868795629058]": {
  883. "Id": "Entity_[995868795629058]",
  884. "Name": "end1",
  885. "Components": {
  886. "Component_[10500648739299668939]": {
  887. "$type": "EditorDisabledCompositionComponent",
  888. "Id": 10500648739299668939
  889. },
  890. "Component_[1054428503372686093]": {
  891. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  892. "Id": 1054428503372686093,
  893. "Parent Entity": "Entity_[996010529549826]",
  894. "Transform Data": {
  895. "Translate": [
  896. -0.01623392105102539,
  897. -0.0065155029296875,
  898. 0.0
  899. ],
  900. "Rotate": [
  901. 0.0,
  902. 0.0,
  903. -89.99994659423828
  904. ]
  905. }
  906. },
  907. "Component_[12045779898573478531]": {
  908. "$type": "EditorInspectorComponent",
  909. "Id": 12045779898573478531
  910. },
  911. "Component_[12228613816215076155]": {
  912. "$type": "EditorEntitySortComponent",
  913. "Id": 12228613816215076155
  914. },
  915. "Component_[12502744294820326116]": {
  916. "$type": "EditorOnlyEntityComponent",
  917. "Id": 12502744294820326116
  918. },
  919. "Component_[12903035105505580650]": {
  920. "$type": "EditorVisibilityComponent",
  921. "Id": 12903035105505580650
  922. },
  923. "Component_[17622569680873604777]": {
  924. "$type": "EditorPendingCompositionComponent",
  925. "Id": 17622569680873604777
  926. },
  927. "Component_[184072808979487519]": {
  928. "$type": "EditorLockComponent",
  929. "Id": 184072808979487519
  930. },
  931. "Component_[6699738828310866771]": {
  932. "$type": "AZ::Render::EditorDecalComponent",
  933. "Id": 6699738828310866771,
  934. "Controller": {
  935. "Configuration": {
  936. "Opacity": 0.3199999928474426,
  937. "Material": {
  938. "assetId": {
  939. "guid": "{F4C96494-A086-59D2-A605-06E760588573}"
  940. },
  941. "assetHint": "assets/warehouse/floor_markings/markings_end1.azmaterial"
  942. }
  943. }
  944. }
  945. },
  946. "Component_[8716140543667152403]": {
  947. "$type": "EditorEntityIconComponent",
  948. "Id": 8716140543667152403
  949. }
  950. }
  951. },
  952. "Entity_[995873090596354]": {
  953. "Id": "Entity_[995873090596354]",
  954. "Name": "row6",
  955. "Components": {
  956. "Component_[10311219420704440311]": {
  957. "$type": "EditorOnlyEntityComponent",
  958. "Id": 10311219420704440311
  959. },
  960. "Component_[10613465856665953947]": {
  961. "$type": "EditorDisabledCompositionComponent",
  962. "Id": 10613465856665953947
  963. },
  964. "Component_[1099445320312667240]": {
  965. "$type": "EditorLockComponent",
  966. "Id": 1099445320312667240
  967. },
  968. "Component_[11553853199545380956]": {
  969. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  970. "Id": 11553853199545380956,
  971. "Parent Entity": "Entity_[995855910727170]",
  972. "Transform Data": {
  973. "Translate": [
  974. -31.160919189453125,
  975. 8.14289379119873,
  976. 9.125040054321289
  977. ]
  978. }
  979. },
  980. "Component_[15291901364082073937]": {
  981. "$type": "EditorEntityIconComponent",
  982. "Id": 15291901364082073937
  983. },
  984. "Component_[17384941475010859956]": {
  985. "$type": "EditorVisibilityComponent",
  986. "Id": 17384941475010859956
  987. },
  988. "Component_[17889284555767441878]": {
  989. "$type": "EditorInspectorComponent",
  990. "Id": 17889284555767441878
  991. },
  992. "Component_[6748173508085193281]": {
  993. "$type": "EditorEntitySortComponent",
  994. "Id": 6748173508085193281,
  995. "Child Entity Order": [
  996. "Instance_[42121288032893]/ContainerEntity",
  997. "Instance_[42112698098301]/ContainerEntity",
  998. "Instance_[42116993065597]/ContainerEntity",
  999. "Instance_[42172827640445]/ContainerEntity",
  1000. "Instance_[42164237705853]/ContainerEntity",
  1001. "Instance_[42168532673149]/ContainerEntity",
  1002. "Instance_[42224367247997]/ContainerEntity",
  1003. "Instance_[42215777313405]/ContainerEntity",
  1004. "Instance_[42220072280701]/ContainerEntity",
  1005. "Instance_[42275906855549]/ContainerEntity",
  1006. "Instance_[42267316920957]/ContainerEntity",
  1007. "Instance_[42271611888253]/ContainerEntity",
  1008. "Instance_[42327446463101]/ContainerEntity",
  1009. "Instance_[42318856528509]/ContainerEntity",
  1010. "Instance_[42323151495805]/ContainerEntity"
  1011. ]
  1012. },
  1013. "Component_[7432015336954531022]": {
  1014. "$type": "EditorPendingCompositionComponent",
  1015. "Id": 7432015336954531022
  1016. }
  1017. }
  1018. },
  1019. "Entity_[995877385563650]": {
  1020. "Id": "Entity_[995877385563650]",
  1021. "Name": "end2",
  1022. "Components": {
  1023. "Component_[10500648739299668939]": {
  1024. "$type": "EditorDisabledCompositionComponent",
  1025. "Id": 10500648739299668939
  1026. },
  1027. "Component_[1054428503372686093]": {
  1028. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1029. "Id": 1054428503372686093,
  1030. "Parent Entity": "Entity_[995903155367426]",
  1031. "Transform Data": {
  1032. "Translate": [
  1033. -7.215170860290527,
  1034. -0.0065250396728515625,
  1035. 0.0
  1036. ],
  1037. "Rotate": [
  1038. 0.0,
  1039. 0.0,
  1040. -89.99994659423828
  1041. ]
  1042. }
  1043. },
  1044. "Component_[12045779898573478531]": {
  1045. "$type": "EditorInspectorComponent",
  1046. "Id": 12045779898573478531
  1047. },
  1048. "Component_[12228613816215076155]": {
  1049. "$type": "EditorEntitySortComponent",
  1050. "Id": 12228613816215076155
  1051. },
  1052. "Component_[12502744294820326116]": {
  1053. "$type": "EditorOnlyEntityComponent",
  1054. "Id": 12502744294820326116
  1055. },
  1056. "Component_[12903035105505580650]": {
  1057. "$type": "EditorVisibilityComponent",
  1058. "Id": 12903035105505580650
  1059. },
  1060. "Component_[17622569680873604777]": {
  1061. "$type": "EditorPendingCompositionComponent",
  1062. "Id": 17622569680873604777
  1063. },
  1064. "Component_[184072808979487519]": {
  1065. "$type": "EditorLockComponent",
  1066. "Id": 184072808979487519
  1067. },
  1068. "Component_[6699738828310866771]": {
  1069. "$type": "AZ::Render::EditorDecalComponent",
  1070. "Id": 6699738828310866771,
  1071. "Controller": {
  1072. "Configuration": {
  1073. "Opacity": 0.3199999928474426,
  1074. "Material": {
  1075. "assetId": {
  1076. "guid": "{C36BF373-CBAF-52C0-8515-283579CBFBDE}"
  1077. },
  1078. "assetHint": "assets/warehouse/floor_markings/markings_end2.azmaterial"
  1079. }
  1080. }
  1081. }
  1082. },
  1083. "Component_[8716140543667152403]": {
  1084. "$type": "EditorEntityIconComponent",
  1085. "Id": 8716140543667152403
  1086. }
  1087. }
  1088. },
  1089. "Entity_[995881680530946]": {
  1090. "Id": "Entity_[995881680530946]",
  1091. "Name": "mid2",
  1092. "Components": {
  1093. "Component_[10500648739299668939]": {
  1094. "$type": "EditorDisabledCompositionComponent",
  1095. "Id": 10500648739299668939
  1096. },
  1097. "Component_[1054428503372686093]": {
  1098. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1099. "Id": 1054428503372686093,
  1100. "Parent Entity": "Entity_[995928925171202]",
  1101. "Transform Data": {
  1102. "Translate": [
  1103. -12.01333236694336,
  1104. -0.006518006324768066,
  1105. 0.0
  1106. ],
  1107. "Rotate": [
  1108. 0.0,
  1109. 0.0,
  1110. -89.99994659423828
  1111. ]
  1112. }
  1113. },
  1114. "Component_[12045779898573478531]": {
  1115. "$type": "EditorInspectorComponent",
  1116. "Id": 12045779898573478531
  1117. },
  1118. "Component_[12228613816215076155]": {
  1119. "$type": "EditorEntitySortComponent",
  1120. "Id": 12228613816215076155
  1121. },
  1122. "Component_[12502744294820326116]": {
  1123. "$type": "EditorOnlyEntityComponent",
  1124. "Id": 12502744294820326116
  1125. },
  1126. "Component_[12903035105505580650]": {
  1127. "$type": "EditorVisibilityComponent",
  1128. "Id": 12903035105505580650
  1129. },
  1130. "Component_[17622569680873604777]": {
  1131. "$type": "EditorPendingCompositionComponent",
  1132. "Id": 17622569680873604777
  1133. },
  1134. "Component_[184072808979487519]": {
  1135. "$type": "EditorLockComponent",
  1136. "Id": 184072808979487519
  1137. },
  1138. "Component_[3760710367340249675]": {
  1139. "$type": "AZ::Render::EditorDecalComponent",
  1140. "Id": 3760710367340249675,
  1141. "Controller": {
  1142. "Configuration": {
  1143. "Opacity": 0.3199999928474426,
  1144. "Material": {
  1145. "assetId": {
  1146. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  1147. },
  1148. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  1149. }
  1150. }
  1151. }
  1152. },
  1153. "Component_[8716140543667152403]": {
  1154. "$type": "EditorEntityIconComponent",
  1155. "Id": 8716140543667152403
  1156. }
  1157. }
  1158. },
  1159. "Entity_[995885975498242]": {
  1160. "Id": "Entity_[995885975498242]",
  1161. "Name": "2",
  1162. "Components": {
  1163. "Component_[10321909275187222931]": {
  1164. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1165. "Id": 10321909275187222931,
  1166. "Parent Entity": "Entity_[995950400007682]",
  1167. "Transform Data": {
  1168. "Translate": [
  1169. -8.247879981994629,
  1170. 9.789491653442383,
  1171. 0.0
  1172. ],
  1173. "Rotate": [
  1174. 0.0,
  1175. 0.0,
  1176. 180.0
  1177. ]
  1178. }
  1179. },
  1180. "Component_[10681537930500446053]": {
  1181. "$type": "EditorEntitySortComponent",
  1182. "Id": 10681537930500446053,
  1183. "Child Entity Order": [
  1184. "Instance_[1261728088686882]/ContainerEntity",
  1185. "Instance_[1261809693065506]/ContainerEntity",
  1186. "Instance_[1261822577967394]/ContainerEntity",
  1187. "Instance_[1261861232673058]/ContainerEntity",
  1188. "Instance_[1859282593612066]/ContainerEntity",
  1189. "Instance_[1859274003677474]/ContainerEntity",
  1190. "Instance_[1560331394973986]/ContainerEntity",
  1191. "Instance_[1560327100006690]/ContainerEntity",
  1192. "Instance_[1560339984908578]/ContainerEntity",
  1193. "Instance_[1560335689941282]/ContainerEntity",
  1194. "Instance_[1859278298644770]/ContainerEntity",
  1195. "Instance_[1261856937705762]/ContainerEntity",
  1196. "Instance_[2457863595720994]/ContainerEntity",
  1197. "Instance_[2457876480622882]/ContainerEntity",
  1198. "Instance_[2457906545393954]/ContainerEntity",
  1199. "Instance_[2457919430295842]/ContainerEntity",
  1200. "Instance_[2457915135328546]/ContainerEntity",
  1201. "Instance_[2457893660492066]/ContainerEntity",
  1202. "Instance_[2457889365524770]/ContainerEntity",
  1203. "Instance_[2457880775590178]/ContainerEntity",
  1204. "Instance_[2457867890688290]/ContainerEntity"
  1205. ]
  1206. },
  1207. "Component_[11217564894606926180]": {
  1208. "$type": "EditorPendingCompositionComponent",
  1209. "Id": 11217564894606926180
  1210. },
  1211. "Component_[12647362886010771168]": {
  1212. "$type": "EditorInspectorComponent",
  1213. "Id": 12647362886010771168
  1214. },
  1215. "Component_[13008426432773336905]": {
  1216. "$type": "EditorOnlyEntityComponent",
  1217. "Id": 13008426432773336905
  1218. },
  1219. "Component_[15225701871626598457]": {
  1220. "$type": "EditorVisibilityComponent",
  1221. "Id": 15225701871626598457
  1222. },
  1223. "Component_[238064552553574844]": {
  1224. "$type": "EditorLockComponent",
  1225. "Id": 238064552553574844
  1226. },
  1227. "Component_[4209670188283020330]": {
  1228. "$type": "EditorDisabledCompositionComponent",
  1229. "Id": 4209670188283020330
  1230. },
  1231. "Component_[6237799727571163432]": {
  1232. "$type": "EditorEntityIconComponent",
  1233. "Id": 6237799727571163432
  1234. }
  1235. }
  1236. },
  1237. "Entity_[995890270465538]": {
  1238. "Id": "Entity_[995890270465538]",
  1239. "Name": "mid1",
  1240. "Components": {
  1241. "Component_[10500648739299668939]": {
  1242. "$type": "EditorDisabledCompositionComponent",
  1243. "Id": 10500648739299668939
  1244. },
  1245. "Component_[1054428503372686093]": {
  1246. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1247. "Id": 1054428503372686093,
  1248. "Parent Entity": "Entity_[996156558437890]",
  1249. "Transform Data": {
  1250. "Translate": [
  1251. -2.0163726806640625,
  1252. -0.006516695022583008,
  1253. 0.0
  1254. ],
  1255. "Rotate": [
  1256. 0.0,
  1257. 0.0,
  1258. -89.99994659423828
  1259. ]
  1260. }
  1261. },
  1262. "Component_[12045779898573478531]": {
  1263. "$type": "EditorInspectorComponent",
  1264. "Id": 12045779898573478531
  1265. },
  1266. "Component_[12228613816215076155]": {
  1267. "$type": "EditorEntitySortComponent",
  1268. "Id": 12228613816215076155
  1269. },
  1270. "Component_[12502744294820326116]": {
  1271. "$type": "EditorOnlyEntityComponent",
  1272. "Id": 12502744294820326116
  1273. },
  1274. "Component_[12903035105505580650]": {
  1275. "$type": "EditorVisibilityComponent",
  1276. "Id": 12903035105505580650
  1277. },
  1278. "Component_[17622569680873604777]": {
  1279. "$type": "EditorPendingCompositionComponent",
  1280. "Id": 17622569680873604777
  1281. },
  1282. "Component_[184072808979487519]": {
  1283. "$type": "EditorLockComponent",
  1284. "Id": 184072808979487519
  1285. },
  1286. "Component_[6699738828310866771]": {
  1287. "$type": "AZ::Render::EditorDecalComponent",
  1288. "Id": 6699738828310866771,
  1289. "Controller": {
  1290. "Configuration": {
  1291. "Opacity": 0.3199999928474426,
  1292. "Material": {
  1293. "assetId": {
  1294. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  1295. },
  1296. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  1297. }
  1298. }
  1299. }
  1300. },
  1301. "Component_[8716140543667152403]": {
  1302. "$type": "EditorEntityIconComponent",
  1303. "Id": 8716140543667152403
  1304. }
  1305. }
  1306. },
  1307. "Entity_[995894565432834]": {
  1308. "Id": "Entity_[995894565432834]",
  1309. "Name": "3",
  1310. "Components": {
  1311. "Component_[10321909275187222931]": {
  1312. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1313. "Id": 10321909275187222931,
  1314. "Parent Entity": "Entity_[995950400007682]",
  1315. "Transform Data": {
  1316. "Translate": [
  1317. -8.788877487182617,
  1318. -7.439632892608643,
  1319. 0.0
  1320. ],
  1321. "Rotate": [
  1322. 0.0,
  1323. 0.0,
  1324. -90.00000762939453
  1325. ]
  1326. }
  1327. },
  1328. "Component_[10681537930500446053]": {
  1329. "$type": "EditorEntitySortComponent",
  1330. "Id": 10681537930500446053,
  1331. "Child Entity Order": [
  1332. "Instance_[1261728088686882]/ContainerEntity",
  1333. "Instance_[1261809693065506]/ContainerEntity",
  1334. "Instance_[1261822577967394]/ContainerEntity",
  1335. "Instance_[1261861232673058]/ContainerEntity",
  1336. "Instance_[1859282593612066]/ContainerEntity",
  1337. "Instance_[1859274003677474]/ContainerEntity",
  1338. "Instance_[1560331394973986]/ContainerEntity",
  1339. "Instance_[1560327100006690]/ContainerEntity",
  1340. "Instance_[1560339984908578]/ContainerEntity",
  1341. "Instance_[1560335689941282]/ContainerEntity",
  1342. "Instance_[1859278298644770]/ContainerEntity",
  1343. "Instance_[1261856937705762]/ContainerEntity",
  1344. "Instance_[2457863595720994]/ContainerEntity",
  1345. "Instance_[2457876480622882]/ContainerEntity",
  1346. "Instance_[2457906545393954]/ContainerEntity",
  1347. "Instance_[2457919430295842]/ContainerEntity",
  1348. "Instance_[2457915135328546]/ContainerEntity",
  1349. "Instance_[2457893660492066]/ContainerEntity",
  1350. "Instance_[2457889365524770]/ContainerEntity",
  1351. "Instance_[2457880775590178]/ContainerEntity",
  1352. "Instance_[2457867890688290]/ContainerEntity"
  1353. ]
  1354. },
  1355. "Component_[11217564894606926180]": {
  1356. "$type": "EditorPendingCompositionComponent",
  1357. "Id": 11217564894606926180
  1358. },
  1359. "Component_[12647362886010771168]": {
  1360. "$type": "EditorInspectorComponent",
  1361. "Id": 12647362886010771168
  1362. },
  1363. "Component_[13008426432773336905]": {
  1364. "$type": "EditorOnlyEntityComponent",
  1365. "Id": 13008426432773336905
  1366. },
  1367. "Component_[15225701871626598457]": {
  1368. "$type": "EditorVisibilityComponent",
  1369. "Id": 15225701871626598457
  1370. },
  1371. "Component_[238064552553574844]": {
  1372. "$type": "EditorLockComponent",
  1373. "Id": 238064552553574844
  1374. },
  1375. "Component_[4209670188283020330]": {
  1376. "$type": "EditorDisabledCompositionComponent",
  1377. "Id": 4209670188283020330
  1378. },
  1379. "Component_[6237799727571163432]": {
  1380. "$type": "EditorEntityIconComponent",
  1381. "Id": 6237799727571163432
  1382. }
  1383. }
  1384. },
  1385. "Entity_[995898860400130]": {
  1386. "Id": "Entity_[995898860400130]",
  1387. "Name": "mid2",
  1388. "Components": {
  1389. "Component_[10500648739299668939]": {
  1390. "$type": "EditorDisabledCompositionComponent",
  1391. "Id": 10500648739299668939
  1392. },
  1393. "Component_[1054428503372686093]": {
  1394. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1395. "Id": 1054428503372686093,
  1396. "Parent Entity": "Entity_[996010529549826]",
  1397. "Transform Data": {
  1398. "Translate": [
  1399. -16.01150131225586,
  1400. -0.006518363952636719,
  1401. 0.0
  1402. ],
  1403. "Rotate": [
  1404. 0.0,
  1405. 0.0,
  1406. -89.99994659423828
  1407. ]
  1408. }
  1409. },
  1410. "Component_[12045779898573478531]": {
  1411. "$type": "EditorInspectorComponent",
  1412. "Id": 12045779898573478531
  1413. },
  1414. "Component_[12228613816215076155]": {
  1415. "$type": "EditorEntitySortComponent",
  1416. "Id": 12228613816215076155
  1417. },
  1418. "Component_[12502744294820326116]": {
  1419. "$type": "EditorOnlyEntityComponent",
  1420. "Id": 12502744294820326116
  1421. },
  1422. "Component_[12903035105505580650]": {
  1423. "$type": "EditorVisibilityComponent",
  1424. "Id": 12903035105505580650
  1425. },
  1426. "Component_[15136090500032023536]": {
  1427. "$type": "EditorNonUniformScaleComponent",
  1428. "Id": 15136090500032023536
  1429. },
  1430. "Component_[17622569680873604777]": {
  1431. "$type": "EditorPendingCompositionComponent",
  1432. "Id": 17622569680873604777
  1433. },
  1434. "Component_[184072808979487519]": {
  1435. "$type": "EditorLockComponent",
  1436. "Id": 184072808979487519
  1437. },
  1438. "Component_[8716140543667152403]": {
  1439. "$type": "EditorEntityIconComponent",
  1440. "Id": 8716140543667152403
  1441. },
  1442. "Component_[9681598081969843461]": {
  1443. "$type": "AZ::Render::EditorDecalComponent",
  1444. "Id": 9681598081969843461,
  1445. "Controller": {
  1446. "Configuration": {
  1447. "Opacity": 0.3199999928474426,
  1448. "Material": {
  1449. "assetId": {
  1450. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  1451. },
  1452. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  1453. }
  1454. }
  1455. }
  1456. }
  1457. }
  1458. },
  1459. "Entity_[995903155367426]": {
  1460. "Id": "Entity_[995903155367426]",
  1461. "Name": "row_short",
  1462. "Components": {
  1463. "Component_[11358105557128824214]": {
  1464. "$type": "EditorLockComponent",
  1465. "Id": 11358105557128824214
  1466. },
  1467. "Component_[13946020643802045435]": {
  1468. "$type": "EditorInspectorComponent",
  1469. "Id": 13946020643802045435
  1470. },
  1471. "Component_[16808686584333473094]": {
  1472. "$type": "EditorDisabledCompositionComponent",
  1473. "Id": 16808686584333473094
  1474. },
  1475. "Component_[3531174978848893918]": {
  1476. "$type": "EditorVisibilityComponent",
  1477. "Id": 3531174978848893918
  1478. },
  1479. "Component_[3675136203864957774]": {
  1480. "$type": "EditorEntityIconComponent",
  1481. "Id": 3675136203864957774
  1482. },
  1483. "Component_[5147878209571874574]": {
  1484. "$type": "EditorPendingCompositionComponent",
  1485. "Id": 5147878209571874574
  1486. },
  1487. "Component_[6529333310674229373]": {
  1488. "$type": "EditorEntitySortComponent",
  1489. "Id": 6529333310674229373,
  1490. "Child Entity Order": [
  1491. "Entity_[996130788634114]",
  1492. "Entity_[996160853405186]",
  1493. "Entity_[996079249026562]",
  1494. "Entity_[995993349680642]",
  1495. "Entity_[995877385563650]"
  1496. ]
  1497. },
  1498. "Component_[8438145710848209955]": {
  1499. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1500. "Id": 8438145710848209955,
  1501. "Parent Entity": "Entity_[995937515105794]",
  1502. "Transform Data": {
  1503. "Translate": [
  1504. -15.785727500915527,
  1505. 4.456752777099609,
  1506. 0.0
  1507. ]
  1508. }
  1509. },
  1510. "Component_[9165328650543530788]": {
  1511. "$type": "EditorOnlyEntityComponent",
  1512. "Id": 9165328650543530788
  1513. }
  1514. }
  1515. },
  1516. "Entity_[995907450334722]": {
  1517. "Id": "Entity_[995907450334722]",
  1518. "Name": "mid1",
  1519. "Components": {
  1520. "Component_[10500648739299668939]": {
  1521. "$type": "EditorDisabledCompositionComponent",
  1522. "Id": 10500648739299668939
  1523. },
  1524. "Component_[1054428503372686093]": {
  1525. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1526. "Id": 1054428503372686093,
  1527. "Parent Entity": "Entity_[995928925171202]",
  1528. "Transform Data": {
  1529. "Translate": [
  1530. -6.015745639801025,
  1531. -0.006519913673400879,
  1532. 0.0
  1533. ],
  1534. "Rotate": [
  1535. 0.0,
  1536. 0.0,
  1537. -89.99994659423828
  1538. ]
  1539. }
  1540. },
  1541. "Component_[12045779898573478531]": {
  1542. "$type": "EditorInspectorComponent",
  1543. "Id": 12045779898573478531
  1544. },
  1545. "Component_[12228613816215076155]": {
  1546. "$type": "EditorEntitySortComponent",
  1547. "Id": 12228613816215076155
  1548. },
  1549. "Component_[12502744294820326116]": {
  1550. "$type": "EditorOnlyEntityComponent",
  1551. "Id": 12502744294820326116
  1552. },
  1553. "Component_[12903035105505580650]": {
  1554. "$type": "EditorVisibilityComponent",
  1555. "Id": 12903035105505580650
  1556. },
  1557. "Component_[17622569680873604777]": {
  1558. "$type": "EditorPendingCompositionComponent",
  1559. "Id": 17622569680873604777
  1560. },
  1561. "Component_[184072808979487519]": {
  1562. "$type": "EditorLockComponent",
  1563. "Id": 184072808979487519
  1564. },
  1565. "Component_[6699738828310866771]": {
  1566. "$type": "AZ::Render::EditorDecalComponent",
  1567. "Id": 6699738828310866771,
  1568. "Controller": {
  1569. "Configuration": {
  1570. "Opacity": 0.3199999928474426,
  1571. "Material": {
  1572. "assetId": {
  1573. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  1574. },
  1575. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  1576. }
  1577. }
  1578. }
  1579. },
  1580. "Component_[8716140543667152403]": {
  1581. "$type": "EditorEntityIconComponent",
  1582. "Id": 8716140543667152403
  1583. }
  1584. }
  1585. },
  1586. "Entity_[995911745302018]": {
  1587. "Id": "Entity_[995911745302018]",
  1588. "Name": "mid1",
  1589. "Components": {
  1590. "Component_[10500648739299668939]": {
  1591. "$type": "EditorDisabledCompositionComponent",
  1592. "Id": 10500648739299668939
  1593. },
  1594. "Component_[1054428503372686093]": {
  1595. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1596. "Id": 1054428503372686093,
  1597. "Parent Entity": "Entity_[996156558437890]",
  1598. "Transform Data": {
  1599. "Translate": [
  1600. -5.615097999572754,
  1601. -0.00652003288269043,
  1602. 0.0
  1603. ],
  1604. "Rotate": [
  1605. 0.0,
  1606. 0.0,
  1607. -89.99994659423828
  1608. ]
  1609. }
  1610. },
  1611. "Component_[12045779898573478531]": {
  1612. "$type": "EditorInspectorComponent",
  1613. "Id": 12045779898573478531
  1614. },
  1615. "Component_[12228613816215076155]": {
  1616. "$type": "EditorEntitySortComponent",
  1617. "Id": 12228613816215076155
  1618. },
  1619. "Component_[12502744294820326116]": {
  1620. "$type": "EditorOnlyEntityComponent",
  1621. "Id": 12502744294820326116
  1622. },
  1623. "Component_[12903035105505580650]": {
  1624. "$type": "EditorVisibilityComponent",
  1625. "Id": 12903035105505580650
  1626. },
  1627. "Component_[17622569680873604777]": {
  1628. "$type": "EditorPendingCompositionComponent",
  1629. "Id": 17622569680873604777
  1630. },
  1631. "Component_[184072808979487519]": {
  1632. "$type": "EditorLockComponent",
  1633. "Id": 184072808979487519
  1634. },
  1635. "Component_[5600569940493692809]": {
  1636. "$type": "EditorNonUniformScaleComponent",
  1637. "Id": 5600569940493692809,
  1638. "NonUniformScale": [
  1639. 1.0,
  1640. 0.6000000238418579,
  1641. 1.0
  1642. ]
  1643. },
  1644. "Component_[6699738828310866771]": {
  1645. "$type": "AZ::Render::EditorDecalComponent",
  1646. "Id": 6699738828310866771,
  1647. "Controller": {
  1648. "Configuration": {
  1649. "Opacity": 0.3199999928474426,
  1650. "Material": {
  1651. "assetId": {
  1652. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  1653. },
  1654. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  1655. }
  1656. }
  1657. }
  1658. },
  1659. "Component_[8716140543667152403]": {
  1660. "$type": "EditorEntityIconComponent",
  1661. "Id": 8716140543667152403
  1662. }
  1663. }
  1664. },
  1665. "Entity_[995916040269314]": {
  1666. "Id": "Entity_[995916040269314]",
  1667. "Name": "mid2",
  1668. "Components": {
  1669. "Component_[10500648739299668939]": {
  1670. "$type": "EditorDisabledCompositionComponent",
  1671. "Id": 10500648739299668939
  1672. },
  1673. "Component_[1054428503372686093]": {
  1674. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1675. "Id": 1054428503372686093,
  1676. "Parent Entity": "Entity_[996010529549826]",
  1677. "Transform Data": {
  1678. "Translate": [
  1679. -24.00787925720215,
  1680. -0.006518363952636719,
  1681. 0.0
  1682. ],
  1683. "Rotate": [
  1684. 0.0,
  1685. 0.0,
  1686. -89.99994659423828
  1687. ]
  1688. }
  1689. },
  1690. "Component_[12045779898573478531]": {
  1691. "$type": "EditorInspectorComponent",
  1692. "Id": 12045779898573478531
  1693. },
  1694. "Component_[12228613816215076155]": {
  1695. "$type": "EditorEntitySortComponent",
  1696. "Id": 12228613816215076155
  1697. },
  1698. "Component_[12502744294820326116]": {
  1699. "$type": "EditorOnlyEntityComponent",
  1700. "Id": 12502744294820326116
  1701. },
  1702. "Component_[12903035105505580650]": {
  1703. "$type": "EditorVisibilityComponent",
  1704. "Id": 12903035105505580650
  1705. },
  1706. "Component_[15136090500032023536]": {
  1707. "$type": "EditorNonUniformScaleComponent",
  1708. "Id": 15136090500032023536
  1709. },
  1710. "Component_[15565581520585610004]": {
  1711. "$type": "AZ::Render::EditorDecalComponent",
  1712. "Id": 15565581520585610004,
  1713. "Controller": {
  1714. "Configuration": {
  1715. "Opacity": 0.3199999928474426,
  1716. "Material": {
  1717. "assetId": {
  1718. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  1719. },
  1720. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  1721. }
  1722. }
  1723. }
  1724. },
  1725. "Component_[17622569680873604777]": {
  1726. "$type": "EditorPendingCompositionComponent",
  1727. "Id": 17622569680873604777
  1728. },
  1729. "Component_[184072808979487519]": {
  1730. "$type": "EditorLockComponent",
  1731. "Id": 184072808979487519
  1732. },
  1733. "Component_[8716140543667152403]": {
  1734. "$type": "EditorEntityIconComponent",
  1735. "Id": 8716140543667152403
  1736. }
  1737. }
  1738. },
  1739. "Entity_[995920335236610]": {
  1740. "Id": "Entity_[995920335236610]",
  1741. "Name": "row1",
  1742. "Components": {
  1743. "Component_[10311219420704440311]": {
  1744. "$type": "EditorOnlyEntityComponent",
  1745. "Id": 10311219420704440311
  1746. },
  1747. "Component_[10613465856665953947]": {
  1748. "$type": "EditorDisabledCompositionComponent",
  1749. "Id": 10613465856665953947
  1750. },
  1751. "Component_[1099445320312667240]": {
  1752. "$type": "EditorLockComponent",
  1753. "Id": 1099445320312667240
  1754. },
  1755. "Component_[11553853199545380956]": {
  1756. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1757. "Id": 11553853199545380956,
  1758. "Parent Entity": "Entity_[995855910727170]",
  1759. "Transform Data": {
  1760. "Translate": [
  1761. 17.07560157775879,
  1762. 8.14289379119873,
  1763. 9.125040054321289
  1764. ]
  1765. }
  1766. },
  1767. "Component_[15291901364082073937]": {
  1768. "$type": "EditorEntityIconComponent",
  1769. "Id": 15291901364082073937
  1770. },
  1771. "Component_[17384941475010859956]": {
  1772. "$type": "EditorVisibilityComponent",
  1773. "Id": 17384941475010859956
  1774. },
  1775. "Component_[17889284555767441878]": {
  1776. "$type": "EditorInspectorComponent",
  1777. "Id": 17889284555767441878
  1778. },
  1779. "Component_[6748173508085193281]": {
  1780. "$type": "EditorEntitySortComponent",
  1781. "Id": 6748173508085193281,
  1782. "Child Entity Order": [
  1783. "Instance_[7684319373153]/ContainerEntity",
  1784. "Instance_[7675729438561]/ContainerEntity",
  1785. "Instance_[7680024405857]/ContainerEntity"
  1786. ]
  1787. },
  1788. "Component_[7432015336954531022]": {
  1789. "$type": "EditorPendingCompositionComponent",
  1790. "Id": 7432015336954531022
  1791. }
  1792. }
  1793. },
  1794. "Entity_[995924630203906]": {
  1795. "Id": "Entity_[995924630203906]",
  1796. "Name": "Warehouse_Walls",
  1797. "Components": {
  1798. "Component_[11130047813806589549]": {
  1799. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1800. "Id": 11130047813806589549,
  1801. "Parent Entity": "Entity_[996096428895746]"
  1802. },
  1803. "Component_[16493500619402072926]": {
  1804. "$type": "EditorInspectorComponent",
  1805. "Id": 16493500619402072926
  1806. },
  1807. "Component_[17240528618589589854]": {
  1808. "$type": "EditorVisibilityComponent",
  1809. "Id": 17240528618589589854
  1810. },
  1811. "Component_[17714208687234119446]": {
  1812. "$type": "EditorLockComponent",
  1813. "Id": 17714208687234119446
  1814. },
  1815. "Component_[3271201494846386483]": {
  1816. "$type": "EditorEntityIconComponent",
  1817. "Id": 3271201494846386483
  1818. },
  1819. "Component_[3781140342982968733]": {
  1820. "$type": "EditorOnlyEntityComponent",
  1821. "Id": 3781140342982968733
  1822. },
  1823. "Component_[4430844310160085149]": {
  1824. "$type": "EditorPendingCompositionComponent",
  1825. "Id": 4430844310160085149
  1826. },
  1827. "Component_[4524121326450126764]": {
  1828. "$type": "EditorEntitySortComponent",
  1829. "Id": 4524121326450126764,
  1830. "Child Entity Order": [
  1831. "Entity_[996053479222786]"
  1832. ]
  1833. },
  1834. "Component_[4779908313239811206]": {
  1835. "$type": "EditorDisabledCompositionComponent",
  1836. "Id": 4779908313239811206
  1837. }
  1838. }
  1839. },
  1840. "Entity_[995928925171202]": {
  1841. "Id": "Entity_[995928925171202]",
  1842. "Name": "row_long123",
  1843. "Components": {
  1844. "Component_[11358105557128824214]": {
  1845. "$type": "EditorLockComponent",
  1846. "Id": 11358105557128824214
  1847. },
  1848. "Component_[13946020643802045435]": {
  1849. "$type": "EditorInspectorComponent",
  1850. "Id": 13946020643802045435
  1851. },
  1852. "Component_[16808686584333473094]": {
  1853. "$type": "EditorDisabledCompositionComponent",
  1854. "Id": 16808686584333473094
  1855. },
  1856. "Component_[3531174978848893918]": {
  1857. "$type": "EditorVisibilityComponent",
  1858. "Id": 3531174978848893918
  1859. },
  1860. "Component_[3675136203864957774]": {
  1861. "$type": "EditorEntityIconComponent",
  1862. "Id": 3675136203864957774
  1863. },
  1864. "Component_[5147878209571874574]": {
  1865. "$type": "EditorPendingCompositionComponent",
  1866. "Id": 5147878209571874574
  1867. },
  1868. "Component_[6529333310674229373]": {
  1869. "$type": "EditorEntitySortComponent",
  1870. "Id": 6529333310674229373,
  1871. "Child Entity Order": [
  1872. "Entity_[995825845956098]",
  1873. "Entity_[996139378568706]",
  1874. "Entity_[995976169811458]",
  1875. "Entity_[995907450334722]",
  1876. "Entity_[995821550988802]",
  1877. "Entity_[996152263470594]",
  1878. "Entity_[996117903732226]",
  1879. "Entity_[995881680530946]",
  1880. "Entity_[996014824517122]",
  1881. "Entity_[995843025825282]",
  1882. "Entity_[996147968503298]",
  1883. "Entity_[996100723863042]",
  1884. "Entity_[996165148372482]",
  1885. "Entity_[995860205694466]",
  1886. "Entity_[995997644647938]"
  1887. ]
  1888. },
  1889. "Component_[8438145710848209955]": {
  1890. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1891. "Id": 8438145710848209955,
  1892. "Parent Entity": "Entity_[995937515105794]",
  1893. "Transform Data": {
  1894. "Translate": [
  1895. 1.6006743907928467,
  1896. -4.4837799072265625,
  1897. 0.0
  1898. ]
  1899. }
  1900. },
  1901. "Component_[9165328650543530788]": {
  1902. "$type": "EditorOnlyEntityComponent",
  1903. "Id": 9165328650543530788
  1904. }
  1905. }
  1906. },
  1907. "Entity_[995933220138498]": {
  1908. "Id": "Entity_[995933220138498]",
  1909. "Name": "Front_gate",
  1910. "Components": {
  1911. "Component_[10232715223514738948]": {
  1912. "$type": "AZ::Render::EditorMeshComponent",
  1913. "Id": 10232715223514738948,
  1914. "Controller": {
  1915. "Configuration": {
  1916. "ModelAsset": {
  1917. "assetId": {
  1918. "guid": "{34CA9168-D5C7-5554-BE7D-8485A3D67AB6}",
  1919. "subId": 279103289
  1920. },
  1921. "assetHint": "assets/warehouse/models/warehouse_walls_front_gate.azmodel"
  1922. }
  1923. }
  1924. }
  1925. },
  1926. "Component_[10813453887359688918]": {
  1927. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1928. "Id": 10813453887359688918,
  1929. "Parent Entity": "Entity_[996006234582530]",
  1930. "Transform Data": {
  1931. "Translate": [
  1932. 39.78621292114258,
  1933. 1.0,
  1934. 0.0
  1935. ],
  1936. "Rotate": [
  1937. 0.0,
  1938. 0.0,
  1939. -179.99989318847656
  1940. ]
  1941. }
  1942. },
  1943. "Component_[11235052944295479876]": {
  1944. "$type": "EditorStaticRigidBodyComponent",
  1945. "Id": 11235052944295479876
  1946. },
  1947. "Component_[11718397946111790072]": {
  1948. "$type": "EditorMaterialComponent",
  1949. "Id": 11718397946111790072,
  1950. "Controller": {
  1951. "Configuration": {
  1952. "materials": [
  1953. {
  1954. "Key": {
  1955. "materialSlotStableId": 103484566
  1956. },
  1957. "Value": {
  1958. "MaterialAsset": {
  1959. "assetId": {
  1960. "guid": "{9FF0270B-8936-528A-89EC-3E73A01AF755}"
  1961. },
  1962. "assetHint": "assets/warehouse/materials/mwarehousemodules.azmaterial"
  1963. }
  1964. }
  1965. }
  1966. ]
  1967. }
  1968. }
  1969. },
  1970. "Component_[1554132197757752789]": {
  1971. "$type": "EditorMeshColliderComponent",
  1972. "Id": 1554132197757752789,
  1973. "ColliderConfiguration": {
  1974. "MaterialSlots": {
  1975. "Slots": [
  1976. {
  1977. "Name": "MWarehouseModules"
  1978. }
  1979. ]
  1980. }
  1981. },
  1982. "ShapeConfiguration": {
  1983. "PhysicsAsset": {
  1984. "Asset": {
  1985. "assetId": {
  1986. "guid": "{34CA9168-D5C7-5554-BE7D-8485A3D67AB6}",
  1987. "subId": 3814177680
  1988. },
  1989. "assetHint": "assets/warehouse/models/warehouse_walls_front_gate.pxmesh"
  1990. },
  1991. "Configuration": {
  1992. "PhysicsAsset": {
  1993. "assetId": {
  1994. "guid": "{34CA9168-D5C7-5554-BE7D-8485A3D67AB6}",
  1995. "subId": 3814177680
  1996. },
  1997. "loadBehavior": "QueueLoad",
  1998. "assetHint": "assets/warehouse/models/warehouse_walls_front_gate.pxmesh"
  1999. }
  2000. }
  2001. }
  2002. }
  2003. },
  2004. "Component_[18360744952719232820]": {
  2005. "$type": "EditorEntitySortComponent",
  2006. "Id": 18360744952719232820
  2007. },
  2008. "Component_[2298197826914367238]": {
  2009. "$type": "EditorLockComponent",
  2010. "Id": 2298197826914367238
  2011. },
  2012. "Component_[3149718320647090514]": {
  2013. "$type": "EditorVisibilityComponent",
  2014. "Id": 3149718320647090514
  2015. },
  2016. "Component_[4932017064714589766]": {
  2017. "$type": "EditorEntityIconComponent",
  2018. "Id": 4932017064714589766
  2019. },
  2020. "Component_[7017245480046407512]": {
  2021. "$type": "EditorDisabledCompositionComponent",
  2022. "Id": 7017245480046407512
  2023. },
  2024. "Component_[8212625672736002681]": {
  2025. "$type": "EditorPendingCompositionComponent",
  2026. "Id": 8212625672736002681
  2027. },
  2028. "Component_[9253383058600544919]": {
  2029. "$type": "EditorInspectorComponent",
  2030. "Id": 9253383058600544919
  2031. },
  2032. "Component_[9529209697264184359]": {
  2033. "$type": "EditorOnlyEntityComponent",
  2034. "Id": 9529209697264184359
  2035. }
  2036. }
  2037. },
  2038. "Entity_[995937515105794]": {
  2039. "Id": "Entity_[995937515105794]",
  2040. "Name": "Floor_markings",
  2041. "Components": {
  2042. "Component_[10867255344845163709]": {
  2043. "$type": "EditorEntitySortComponent",
  2044. "Id": 10867255344845163709,
  2045. "Child Entity Order": [
  2046. "Entity_[996156558437890]",
  2047. "Entity_[995903155367426]",
  2048. "Entity_[995928925171202]",
  2049. "Entity_[996010529549826]",
  2050. "Entity_[996143673536002]",
  2051. "Entity_[995989054713346]"
  2052. ]
  2053. },
  2054. "Component_[11910289122794586246]": {
  2055. "$type": "EditorEntityIconComponent",
  2056. "Id": 11910289122794586246
  2057. },
  2058. "Component_[11913108768645549826]": {
  2059. "$type": "EditorDisabledCompositionComponent",
  2060. "Id": 11913108768645549826
  2061. },
  2062. "Component_[13885407065610674883]": {
  2063. "$type": "EditorOnlyEntityComponent",
  2064. "Id": 13885407065610674883
  2065. },
  2066. "Component_[14785914631400385997]": {
  2067. "$type": "EditorPendingCompositionComponent",
  2068. "Id": 14785914631400385997
  2069. },
  2070. "Component_[17335188110448799704]": {
  2071. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2072. "Id": 17335188110448799704,
  2073. "Parent Entity": "Entity_[996096428895746]",
  2074. "Transform Data": {
  2075. "Translate": [
  2076. 31.674999237060547,
  2077. -2.789872169494629,
  2078. -10.49936294555664
  2079. ],
  2080. "UniformScale": 1.5
  2081. }
  2082. },
  2083. "Component_[18372525104666073664]": {
  2084. "$type": "EditorVisibilityComponent",
  2085. "Id": 18372525104666073664
  2086. },
  2087. "Component_[2232932327542320930]": {
  2088. "$type": "EditorLockComponent",
  2089. "Id": 2232932327542320930
  2090. },
  2091. "Component_[8473878406116408454]": {
  2092. "$type": "EditorInspectorComponent",
  2093. "Id": 8473878406116408454
  2094. }
  2095. }
  2096. },
  2097. "Entity_[995941810073090]": {
  2098. "Id": "Entity_[995941810073090]",
  2099. "Name": "mid1",
  2100. "Components": {
  2101. "Component_[10500648739299668939]": {
  2102. "$type": "EditorDisabledCompositionComponent",
  2103. "Id": 10500648739299668939
  2104. },
  2105. "Component_[1054428503372686093]": {
  2106. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2107. "Id": 1054428503372686093,
  2108. "Parent Entity": "Entity_[996010529549826]",
  2109. "Transform Data": {
  2110. "Translate": [
  2111. -6.015746116638184,
  2112. -0.0065212249755859375,
  2113. 0.0
  2114. ],
  2115. "Rotate": [
  2116. 0.0,
  2117. 0.0,
  2118. -89.99994659423828
  2119. ]
  2120. }
  2121. },
  2122. "Component_[12045779898573478531]": {
  2123. "$type": "EditorInspectorComponent",
  2124. "Id": 12045779898573478531
  2125. },
  2126. "Component_[12228613816215076155]": {
  2127. "$type": "EditorEntitySortComponent",
  2128. "Id": 12228613816215076155
  2129. },
  2130. "Component_[12502744294820326116]": {
  2131. "$type": "EditorOnlyEntityComponent",
  2132. "Id": 12502744294820326116
  2133. },
  2134. "Component_[12903035105505580650]": {
  2135. "$type": "EditorVisibilityComponent",
  2136. "Id": 12903035105505580650
  2137. },
  2138. "Component_[17622569680873604777]": {
  2139. "$type": "EditorPendingCompositionComponent",
  2140. "Id": 17622569680873604777
  2141. },
  2142. "Component_[17932005918525510279]": {
  2143. "$type": "AZ::Render::EditorDecalComponent",
  2144. "Id": 17932005918525510279,
  2145. "Controller": {
  2146. "Configuration": {
  2147. "Opacity": 0.3199999928474426,
  2148. "Material": {
  2149. "assetId": {
  2150. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  2151. },
  2152. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  2153. }
  2154. }
  2155. }
  2156. },
  2157. "Component_[184072808979487519]": {
  2158. "$type": "EditorLockComponent",
  2159. "Id": 184072808979487519
  2160. },
  2161. "Component_[8716140543667152403]": {
  2162. "$type": "EditorEntityIconComponent",
  2163. "Id": 8716140543667152403
  2164. }
  2165. }
  2166. },
  2167. "Entity_[995946105040386]": {
  2168. "Id": "Entity_[995946105040386]",
  2169. "Name": "mid1",
  2170. "Components": {
  2171. "Component_[10500648739299668939]": {
  2172. "$type": "EditorDisabledCompositionComponent",
  2173. "Id": 10500648739299668939
  2174. },
  2175. "Component_[1054428503372686093]": {
  2176. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2177. "Id": 1054428503372686093,
  2178. "Parent Entity": "Entity_[996010529549826]",
  2179. "Transform Data": {
  2180. "Translate": [
  2181. -22.009029388427734,
  2182. -0.0065212249755859375,
  2183. 0.0
  2184. ],
  2185. "Rotate": [
  2186. 0.0,
  2187. 0.0,
  2188. -89.99994659423828
  2189. ]
  2190. }
  2191. },
  2192. "Component_[12045779898573478531]": {
  2193. "$type": "EditorInspectorComponent",
  2194. "Id": 12045779898573478531
  2195. },
  2196. "Component_[12228613816215076155]": {
  2197. "$type": "EditorEntitySortComponent",
  2198. "Id": 12228613816215076155
  2199. },
  2200. "Component_[12502744294820326116]": {
  2201. "$type": "EditorOnlyEntityComponent",
  2202. "Id": 12502744294820326116
  2203. },
  2204. "Component_[12903035105505580650]": {
  2205. "$type": "EditorVisibilityComponent",
  2206. "Id": 12903035105505580650
  2207. },
  2208. "Component_[16531891483390612962]": {
  2209. "$type": "AZ::Render::EditorDecalComponent",
  2210. "Id": 16531891483390612962,
  2211. "Controller": {
  2212. "Configuration": {
  2213. "Opacity": 0.3199999928474426,
  2214. "Material": {
  2215. "assetId": {
  2216. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  2217. },
  2218. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  2219. }
  2220. }
  2221. }
  2222. },
  2223. "Component_[17622569680873604777]": {
  2224. "$type": "EditorPendingCompositionComponent",
  2225. "Id": 17622569680873604777
  2226. },
  2227. "Component_[184072808979487519]": {
  2228. "$type": "EditorLockComponent",
  2229. "Id": 184072808979487519
  2230. },
  2231. "Component_[8716140543667152403]": {
  2232. "$type": "EditorEntityIconComponent",
  2233. "Id": 8716140543667152403
  2234. }
  2235. }
  2236. },
  2237. "Entity_[995950400007682]": {
  2238. "Id": "Entity_[995950400007682]",
  2239. "Name": "Rack_protectors",
  2240. "Components": {
  2241. "Component_[14445787496987285298]": {
  2242. "$type": "EditorDisabledCompositionComponent",
  2243. "Id": 14445787496987285298
  2244. },
  2245. "Component_[14838178878000388623]": {
  2246. "$type": "EditorVisibilityComponent",
  2247. "Id": 14838178878000388623
  2248. },
  2249. "Component_[16385501280161495205]": {
  2250. "$type": "EditorLockComponent",
  2251. "Id": 16385501280161495205
  2252. },
  2253. "Component_[5557373882929158072]": {
  2254. "$type": "EditorInspectorComponent",
  2255. "Id": 5557373882929158072
  2256. },
  2257. "Component_[6315541705603915654]": {
  2258. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2259. "Id": 6315541705603915654,
  2260. "Parent Entity": "Entity_[996096428895746]"
  2261. },
  2262. "Component_[6726514025564182360]": {
  2263. "$type": "EditorOnlyEntityComponent",
  2264. "Id": 6726514025564182360
  2265. },
  2266. "Component_[7450213149296368044]": {
  2267. "$type": "EditorPendingCompositionComponent",
  2268. "Id": 7450213149296368044
  2269. },
  2270. "Component_[8264293139563789689]": {
  2271. "$type": "EditorEntityIconComponent",
  2272. "Id": 8264293139563789689
  2273. },
  2274. "Component_[8350517200035729664]": {
  2275. "$type": "EditorEntitySortComponent",
  2276. "Id": 8350517200035729664,
  2277. "Child Entity Order": [
  2278. "Entity_[996062069157378]",
  2279. "Entity_[995885975498242]",
  2280. "Entity_[995894565432834]",
  2281. "Entity_[995958989942274]",
  2282. "Entity_[996126493666818]",
  2283. "Entity_[996135083601410]"
  2284. ]
  2285. }
  2286. }
  2287. },
  2288. "Entity_[995954694974978]": {
  2289. "Id": "Entity_[995954694974978]",
  2290. "Name": "Storage_racks",
  2291. "Components": {
  2292. "Component_[10294071830029104210]": {
  2293. "$type": "EditorVisibilityComponent",
  2294. "Id": 10294071830029104210
  2295. },
  2296. "Component_[12251477748729893171]": {
  2297. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2298. "Id": 12251477748729893171,
  2299. "Parent Entity": "Entity_[996096428895746]"
  2300. },
  2301. "Component_[1373826179324480013]": {
  2302. "$type": "EditorOnlyEntityComponent",
  2303. "Id": 1373826179324480013
  2304. },
  2305. "Component_[3896426725278765127]": {
  2306. "$type": "EditorInspectorComponent",
  2307. "Id": 3896426725278765127
  2308. },
  2309. "Component_[6673563148870563873]": {
  2310. "$type": "EditorDisabledCompositionComponent",
  2311. "Id": 6673563148870563873
  2312. },
  2313. "Component_[7286953677365602193]": {
  2314. "$type": "EditorEntityIconComponent",
  2315. "Id": 7286953677365602193
  2316. },
  2317. "Component_[8734311684345081192]": {
  2318. "$type": "EditorPendingCompositionComponent",
  2319. "Id": 8734311684345081192
  2320. },
  2321. "Component_[9601200767400676386]": {
  2322. "$type": "EditorLockComponent",
  2323. "Id": 9601200767400676386
  2324. },
  2325. "Component_[9883705517918417190]": {
  2326. "$type": "EditorEntitySortComponent",
  2327. "Id": 9883705517918417190,
  2328. "Child Entity Order": [
  2329. "Entity_[996074954059266]",
  2330. "Entity_[996092133928450]",
  2331. "Entity_[996109313797634]",
  2332. "Instance_[402446049242626]/ContainerEntity",
  2333. "Instance_[402433164340738]/ContainerEntity"
  2334. ]
  2335. }
  2336. }
  2337. },
  2338. "Entity_[995958989942274]": {
  2339. "Id": "Entity_[995958989942274]",
  2340. "Name": "4",
  2341. "Components": {
  2342. "Component_[10321909275187222931]": {
  2343. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2344. "Id": 10321909275187222931,
  2345. "Parent Entity": "Entity_[995950400007682]",
  2346. "Transform Data": {
  2347. "Translate": [
  2348. 32.40053176879883,
  2349. -1.9089155197143555,
  2350. 0.0
  2351. ]
  2352. }
  2353. },
  2354. "Component_[10681537930500446053]": {
  2355. "$type": "EditorEntitySortComponent",
  2356. "Id": 10681537930500446053,
  2357. "Child Entity Order": [
  2358. "Instance_[1261728088686882]/ContainerEntity",
  2359. "Instance_[1261809693065506]/ContainerEntity",
  2360. "Instance_[1261822577967394]/ContainerEntity",
  2361. "Instance_[1261861232673058]/ContainerEntity",
  2362. "Instance_[1859282593612066]/ContainerEntity",
  2363. "Instance_[1859274003677474]/ContainerEntity",
  2364. "Instance_[1560331394973986]/ContainerEntity",
  2365. "Instance_[1560327100006690]/ContainerEntity",
  2366. "Instance_[1560339984908578]/ContainerEntity",
  2367. "Instance_[1560335689941282]/ContainerEntity",
  2368. "Instance_[1859278298644770]/ContainerEntity",
  2369. "Instance_[1261856937705762]/ContainerEntity",
  2370. "Instance_[71728244217693]/ContainerEntity",
  2371. "Instance_[71702474413917]/ContainerEntity",
  2372. "Instance_[71758308988765]/ContainerEntity",
  2373. "Instance_[71706769381213]/ContainerEntity",
  2374. "Instance_[71754014021469]/ContainerEntity",
  2375. "Instance_[72011712059229]/ContainerEntity",
  2376. "Instance_[72016007026525]/ContainerEntity",
  2377. "Instance_[72020301993821]/ContainerEntity",
  2378. "Instance_[72024596961117]/ContainerEntity",
  2379. "Instance_[72007417091933]/ContainerEntity"
  2380. ]
  2381. },
  2382. "Component_[11217564894606926180]": {
  2383. "$type": "EditorPendingCompositionComponent",
  2384. "Id": 11217564894606926180
  2385. },
  2386. "Component_[12647362886010771168]": {
  2387. "$type": "EditorInspectorComponent",
  2388. "Id": 12647362886010771168
  2389. },
  2390. "Component_[13008426432773336905]": {
  2391. "$type": "EditorOnlyEntityComponent",
  2392. "Id": 13008426432773336905
  2393. },
  2394. "Component_[15225701871626598457]": {
  2395. "$type": "EditorVisibilityComponent",
  2396. "Id": 15225701871626598457
  2397. },
  2398. "Component_[238064552553574844]": {
  2399. "$type": "EditorLockComponent",
  2400. "Id": 238064552553574844
  2401. },
  2402. "Component_[4209670188283020330]": {
  2403. "$type": "EditorDisabledCompositionComponent",
  2404. "Id": 4209670188283020330
  2405. },
  2406. "Component_[6237799727571163432]": {
  2407. "$type": "EditorEntityIconComponent",
  2408. "Id": 6237799727571163432
  2409. }
  2410. }
  2411. },
  2412. "Entity_[995963284909570]": {
  2413. "Id": "Entity_[995963284909570]",
  2414. "Name": "Front1",
  2415. "Components": {
  2416. "Component_[10675392329055704282]": {
  2417. "$type": "EditorVisibilityComponent",
  2418. "Id": 10675392329055704282
  2419. },
  2420. "Component_[11277376333132157077]": {
  2421. "$type": "EditorEntitySortComponent",
  2422. "Id": 11277376333132157077
  2423. },
  2424. "Component_[12192685081034189143]": {
  2425. "$type": "EditorPendingCompositionComponent",
  2426. "Id": 12192685081034189143
  2427. },
  2428. "Component_[13472739380983823541]": {
  2429. "$type": "EditorOnlyEntityComponent",
  2430. "Id": 13472739380983823541
  2431. },
  2432. "Component_[17511796010133602507]": {
  2433. "$type": "EditorInspectorComponent",
  2434. "Id": 17511796010133602507
  2435. },
  2436. "Component_[212655776334236379]": {
  2437. "$type": "EditorEntityIconComponent",
  2438. "Id": 212655776334236379
  2439. },
  2440. "Component_[3826376754495947163]": {
  2441. "$type": "EditorLockComponent",
  2442. "Id": 3826376754495947163
  2443. },
  2444. "Component_[6318375458175840590]": {
  2445. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2446. "Id": 6318375458175840590,
  2447. "Parent Entity": "Entity_[996053479222786]"
  2448. },
  2449. "Component_[8686459695169801456]": {
  2450. "$type": "EditorDisabledCompositionComponent",
  2451. "Id": 8686459695169801456
  2452. }
  2453. }
  2454. },
  2455. "Entity_[995967579876866]": {
  2456. "Id": "Entity_[995967579876866]",
  2457. "Name": "row4",
  2458. "Components": {
  2459. "Component_[10311219420704440311]": {
  2460. "$type": "EditorOnlyEntityComponent",
  2461. "Id": 10311219420704440311
  2462. },
  2463. "Component_[10613465856665953947]": {
  2464. "$type": "EditorDisabledCompositionComponent",
  2465. "Id": 10613465856665953947
  2466. },
  2467. "Component_[1099445320312667240]": {
  2468. "$type": "EditorLockComponent",
  2469. "Id": 1099445320312667240
  2470. },
  2471. "Component_[11553853199545380956]": {
  2472. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2473. "Id": 11553853199545380956,
  2474. "Parent Entity": "Entity_[995855910727170]",
  2475. "Transform Data": {
  2476. "Translate": [
  2477. -11.207353591918945,
  2478. 8.14289379119873,
  2479. 9.125040054321289
  2480. ]
  2481. }
  2482. },
  2483. "Component_[15291901364082073937]": {
  2484. "$type": "EditorEntityIconComponent",
  2485. "Id": 15291901364082073937
  2486. },
  2487. "Component_[17384941475010859956]": {
  2488. "$type": "EditorVisibilityComponent",
  2489. "Id": 17384941475010859956
  2490. },
  2491. "Component_[17889284555767441878]": {
  2492. "$type": "EditorInspectorComponent",
  2493. "Id": 17889284555767441878
  2494. },
  2495. "Component_[6748173508085193281]": {
  2496. "$type": "EditorEntitySortComponent",
  2497. "Id": 6748173508085193281,
  2498. "Child Entity Order": [
  2499. "Instance_[42121288032893]/ContainerEntity",
  2500. "Instance_[42112698098301]/ContainerEntity",
  2501. "Instance_[42116993065597]/ContainerEntity",
  2502. "Instance_[42172827640445]/ContainerEntity",
  2503. "Instance_[42164237705853]/ContainerEntity",
  2504. "Instance_[42168532673149]/ContainerEntity",
  2505. "Instance_[42224367247997]/ContainerEntity",
  2506. "Instance_[42215777313405]/ContainerEntity",
  2507. "Instance_[42220072280701]/ContainerEntity"
  2508. ]
  2509. },
  2510. "Component_[7432015336954531022]": {
  2511. "$type": "EditorPendingCompositionComponent",
  2512. "Id": 7432015336954531022
  2513. }
  2514. }
  2515. },
  2516. "Entity_[995971874844162]": {
  2517. "Id": "Entity_[995971874844162]",
  2518. "Name": "ceiling",
  2519. "Components": {
  2520. "AZ::Render::EditorAreaLightComponent": {
  2521. "$type": "AZ::Render::EditorAreaLightComponent",
  2522. "Id": 14301120171382169358,
  2523. "Controller": {
  2524. "Configuration": {
  2525. "LightType": 4,
  2526. "Intensity": 1500.0,
  2527. "AttenuationRadius": 122.47449493408203
  2528. }
  2529. }
  2530. },
  2531. "EditorDisabledCompositionComponent": {
  2532. "$type": "EditorDisabledCompositionComponent",
  2533. "Id": 8621481874331765428
  2534. },
  2535. "EditorEntityIconComponent": {
  2536. "$type": "EditorEntityIconComponent",
  2537. "Id": 8005070308427698571
  2538. },
  2539. "EditorEntitySortComponent": {
  2540. "$type": "EditorEntitySortComponent",
  2541. "Id": 8725642304273800253
  2542. },
  2543. "EditorInspectorComponent": {
  2544. "$type": "EditorInspectorComponent",
  2545. "Id": 15001128081382431049
  2546. },
  2547. "EditorLockComponent": {
  2548. "$type": "EditorLockComponent",
  2549. "Id": 12842208376669853745
  2550. },
  2551. "EditorOnlyEntityComponent": {
  2552. "$type": "EditorOnlyEntityComponent",
  2553. "Id": 15804942075461689816
  2554. },
  2555. "EditorPendingCompositionComponent": {
  2556. "$type": "EditorPendingCompositionComponent",
  2557. "Id": 14491724706053130548
  2558. },
  2559. "EditorVisibilityComponent": {
  2560. "$type": "EditorVisibilityComponent",
  2561. "Id": 7688742086376016038
  2562. },
  2563. "LmbrCentral::EditorQuadShapeComponent": {
  2564. "$type": "LmbrCentral::EditorQuadShapeComponent",
  2565. "Id": 1769539291878749258,
  2566. "ShapeColor": [
  2567. 1.0,
  2568. 1.0,
  2569. 1.0,
  2570. 1.0
  2571. ],
  2572. "QuadShape": {
  2573. "Configuration": {
  2574. "Width": 58.0,
  2575. "Height": 18.0
  2576. }
  2577. }
  2578. },
  2579. "TransformComponent": {
  2580. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2581. "Id": 14068757883979357442,
  2582. "Parent Entity": "Entity_[996036299353602]",
  2583. "Transform Data": {
  2584. "Translate": [
  2585. -8.691713333129883,
  2586. 8.062321662902832,
  2587. 8.371367454528809
  2588. ]
  2589. }
  2590. }
  2591. }
  2592. },
  2593. "Entity_[995976169811458]": {
  2594. "Id": "Entity_[995976169811458]",
  2595. "Name": "mid2",
  2596. "Components": {
  2597. "Component_[10500648739299668939]": {
  2598. "$type": "EditorDisabledCompositionComponent",
  2599. "Id": 10500648739299668939
  2600. },
  2601. "Component_[1054428503372686093]": {
  2602. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2603. "Id": 1054428503372686093,
  2604. "Parent Entity": "Entity_[995928925171202]",
  2605. "Transform Data": {
  2606. "Translate": [
  2607. -4.016423225402832,
  2608. -0.006518006324768066,
  2609. 0.0
  2610. ],
  2611. "Rotate": [
  2612. 0.0,
  2613. 0.0,
  2614. -89.99994659423828
  2615. ]
  2616. }
  2617. },
  2618. "Component_[12045779898573478531]": {
  2619. "$type": "EditorInspectorComponent",
  2620. "Id": 12045779898573478531
  2621. },
  2622. "Component_[12228613816215076155]": {
  2623. "$type": "EditorEntitySortComponent",
  2624. "Id": 12228613816215076155
  2625. },
  2626. "Component_[12502744294820326116]": {
  2627. "$type": "EditorOnlyEntityComponent",
  2628. "Id": 12502744294820326116
  2629. },
  2630. "Component_[12903035105505580650]": {
  2631. "$type": "EditorVisibilityComponent",
  2632. "Id": 12903035105505580650
  2633. },
  2634. "Component_[17622569680873604777]": {
  2635. "$type": "EditorPendingCompositionComponent",
  2636. "Id": 17622569680873604777
  2637. },
  2638. "Component_[184072808979487519]": {
  2639. "$type": "EditorLockComponent",
  2640. "Id": 184072808979487519
  2641. },
  2642. "Component_[6699738828310866771]": {
  2643. "$type": "AZ::Render::EditorDecalComponent",
  2644. "Id": 6699738828310866771,
  2645. "Controller": {
  2646. "Configuration": {
  2647. "Opacity": 0.3199999928474426,
  2648. "Material": {
  2649. "assetId": {
  2650. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  2651. },
  2652. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  2653. }
  2654. }
  2655. }
  2656. },
  2657. "Component_[8716140543667152403]": {
  2658. "$type": "EditorEntityIconComponent",
  2659. "Id": 8716140543667152403
  2660. }
  2661. }
  2662. },
  2663. "Entity_[995980464778754]": {
  2664. "Id": "Entity_[995980464778754]",
  2665. "Name": "end2",
  2666. "Components": {
  2667. "Component_[10500648739299668939]": {
  2668. "$type": "EditorDisabledCompositionComponent",
  2669. "Id": 10500648739299668939
  2670. },
  2671. "Component_[1054428503372686093]": {
  2672. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2673. "Id": 1054428503372686093,
  2674. "Parent Entity": "Entity_[996010529549826]",
  2675. "Transform Data": {
  2676. "Translate": [
  2677. -27.750730514526367,
  2678. -0.006525993347167969,
  2679. 0.0
  2680. ],
  2681. "Rotate": [
  2682. 0.0,
  2683. 0.0,
  2684. -89.99994659423828
  2685. ]
  2686. }
  2687. },
  2688. "Component_[12045779898573478531]": {
  2689. "$type": "EditorInspectorComponent",
  2690. "Id": 12045779898573478531
  2691. },
  2692. "Component_[12228613816215076155]": {
  2693. "$type": "EditorEntitySortComponent",
  2694. "Id": 12228613816215076155
  2695. },
  2696. "Component_[12502744294820326116]": {
  2697. "$type": "EditorOnlyEntityComponent",
  2698. "Id": 12502744294820326116
  2699. },
  2700. "Component_[12903035105505580650]": {
  2701. "$type": "EditorVisibilityComponent",
  2702. "Id": 12903035105505580650
  2703. },
  2704. "Component_[17622569680873604777]": {
  2705. "$type": "EditorPendingCompositionComponent",
  2706. "Id": 17622569680873604777
  2707. },
  2708. "Component_[184072808979487519]": {
  2709. "$type": "EditorLockComponent",
  2710. "Id": 184072808979487519
  2711. },
  2712. "Component_[6699738828310866771]": {
  2713. "$type": "AZ::Render::EditorDecalComponent",
  2714. "Id": 6699738828310866771,
  2715. "Controller": {
  2716. "Configuration": {
  2717. "Opacity": 0.3199999928474426,
  2718. "Material": {
  2719. "assetId": {
  2720. "guid": "{C36BF373-CBAF-52C0-8515-283579CBFBDE}"
  2721. },
  2722. "assetHint": "assets/warehouse/floor_markings/markings_end2.azmaterial"
  2723. }
  2724. }
  2725. }
  2726. },
  2727. "Component_[8716140543667152403]": {
  2728. "$type": "EditorEntityIconComponent",
  2729. "Id": 8716140543667152403
  2730. }
  2731. }
  2732. },
  2733. "Entity_[995984759746050]": {
  2734. "Id": "Entity_[995984759746050]",
  2735. "Name": "GI",
  2736. "Components": {
  2737. "Component_[12108912945022556939]": {
  2738. "$type": "EditorPendingCompositionComponent",
  2739. "Id": 12108912945022556939
  2740. },
  2741. "Component_[12396088050775600309]": {
  2742. "$type": "EditorEntityIconComponent",
  2743. "Id": 12396088050775600309
  2744. },
  2745. "Component_[13725020903289063450]": {
  2746. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2747. "Id": 13725020903289063450,
  2748. "Parent Entity": "Entity_[995855910727170]"
  2749. },
  2750. "Component_[14735622265906696355]": {
  2751. "$type": "EditorEntitySortComponent",
  2752. "Id": 14735622265906696355,
  2753. "Child Entity Order": [
  2754. "Instance_[372106884808041]/ContainerEntity",
  2755. "Instance_[379056141892969]/ContainerEntity",
  2756. "Instance_[379043256991081]/ContainerEntity",
  2757. "Instance_[379030372089193]/ContainerEntity",
  2758. "Instance_[379090501631337]/ContainerEntity",
  2759. "Instance_[383905159970153]/ContainerEntity",
  2760. "Instance_[379069026794857]/ContainerEntity",
  2761. "Instance_[379073321762153]/ContainerEntity",
  2762. "Instance_[379017487187305]/ContainerEntity",
  2763. "Instance_[379086206664041]/ContainerEntity",
  2764. "Instance_[379077616729449]/ContainerEntity",
  2765. "Instance_[379081911696745]/ContainerEntity",
  2766. "Instance_[379004602285417]/ContainerEntity",
  2767. "Instance_[383918044872041]/ContainerEntity"
  2768. ]
  2769. },
  2770. "Component_[14845953584109227989]": {
  2771. "$type": "EditorLockComponent",
  2772. "Id": 14845953584109227989
  2773. },
  2774. "Component_[17050029216838975748]": {
  2775. "$type": "EditorDisabledCompositionComponent",
  2776. "Id": 17050029216838975748
  2777. },
  2778. "Component_[17900050837813429935]": {
  2779. "$type": "EditorVisibilityComponent",
  2780. "Id": 17900050837813429935
  2781. },
  2782. "Component_[6353241986572028436]": {
  2783. "$type": "EditorOnlyEntityComponent",
  2784. "Id": 6353241986572028436
  2785. },
  2786. "Component_[8336468672217053778]": {
  2787. "$type": "EditorInspectorComponent",
  2788. "Id": 8336468672217053778
  2789. }
  2790. }
  2791. },
  2792. "Entity_[995989054713346]": {
  2793. "Id": "Entity_[995989054713346]",
  2794. "Name": "gate",
  2795. "Components": {
  2796. "Component_[11358105557128824214]": {
  2797. "$type": "EditorLockComponent",
  2798. "Id": 11358105557128824214
  2799. },
  2800. "Component_[13946020643802045435]": {
  2801. "$type": "EditorInspectorComponent",
  2802. "Id": 13946020643802045435
  2803. },
  2804. "Component_[16808686584333473094]": {
  2805. "$type": "EditorDisabledCompositionComponent",
  2806. "Id": 16808686584333473094
  2807. },
  2808. "Component_[3531174978848893918]": {
  2809. "$type": "EditorVisibilityComponent",
  2810. "Id": 3531174978848893918
  2811. },
  2812. "Component_[3675136203864957774]": {
  2813. "$type": "EditorEntityIconComponent",
  2814. "Id": 3675136203864957774
  2815. },
  2816. "Component_[5147878209571874574]": {
  2817. "$type": "EditorPendingCompositionComponent",
  2818. "Id": 5147878209571874574
  2819. },
  2820. "Component_[6529333310674229373]": {
  2821. "$type": "EditorEntitySortComponent",
  2822. "Id": 6529333310674229373,
  2823. "Child Entity Order": [
  2824. "Entity_[995851615759874]",
  2825. "Entity_[996173738307074]"
  2826. ]
  2827. },
  2828. "Component_[8438145710848209955]": {
  2829. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2830. "Id": 8438145710848209955,
  2831. "Parent Entity": "Entity_[995937515105794]",
  2832. "Transform Data": {
  2833. "Translate": [
  2834. -31.49814224243164,
  2835. 1.0638384819030762,
  2836. 0.0
  2837. ],
  2838. "Rotate": [
  2839. 0.0,
  2840. 0.0,
  2841. -179.99989318847656
  2842. ]
  2843. }
  2844. },
  2845. "Component_[9165328650543530788]": {
  2846. "$type": "EditorOnlyEntityComponent",
  2847. "Id": 9165328650543530788
  2848. }
  2849. }
  2850. },
  2851. "Entity_[995993349680642]": {
  2852. "Id": "Entity_[995993349680642]",
  2853. "Name": "mid1",
  2854. "Components": {
  2855. "Component_[10500648739299668939]": {
  2856. "$type": "EditorDisabledCompositionComponent",
  2857. "Id": 10500648739299668939
  2858. },
  2859. "Component_[1054428503372686093]": {
  2860. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2861. "Id": 1054428503372686093,
  2862. "Parent Entity": "Entity_[995903155367426]",
  2863. "Transform Data": {
  2864. "Translate": [
  2865. -5.615097999572754,
  2866. -0.00652003288269043,
  2867. 0.0
  2868. ],
  2869. "Rotate": [
  2870. 0.0,
  2871. 0.0,
  2872. -89.99994659423828
  2873. ]
  2874. }
  2875. },
  2876. "Component_[12045779898573478531]": {
  2877. "$type": "EditorInspectorComponent",
  2878. "Id": 12045779898573478531
  2879. },
  2880. "Component_[12228613816215076155]": {
  2881. "$type": "EditorEntitySortComponent",
  2882. "Id": 12228613816215076155
  2883. },
  2884. "Component_[12502744294820326116]": {
  2885. "$type": "EditorOnlyEntityComponent",
  2886. "Id": 12502744294820326116
  2887. },
  2888. "Component_[12903035105505580650]": {
  2889. "$type": "EditorVisibilityComponent",
  2890. "Id": 12903035105505580650
  2891. },
  2892. "Component_[17622569680873604777]": {
  2893. "$type": "EditorPendingCompositionComponent",
  2894. "Id": 17622569680873604777
  2895. },
  2896. "Component_[184072808979487519]": {
  2897. "$type": "EditorLockComponent",
  2898. "Id": 184072808979487519
  2899. },
  2900. "Component_[5600569940493692809]": {
  2901. "$type": "EditorNonUniformScaleComponent",
  2902. "Id": 5600569940493692809,
  2903. "NonUniformScale": [
  2904. 1.0,
  2905. 0.6000000238418579,
  2906. 1.0
  2907. ]
  2908. },
  2909. "Component_[6699738828310866771]": {
  2910. "$type": "AZ::Render::EditorDecalComponent",
  2911. "Id": 6699738828310866771,
  2912. "Controller": {
  2913. "Configuration": {
  2914. "Opacity": 0.3199999928474426,
  2915. "Material": {
  2916. "assetId": {
  2917. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  2918. },
  2919. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  2920. }
  2921. }
  2922. }
  2923. },
  2924. "Component_[8716140543667152403]": {
  2925. "$type": "EditorEntityIconComponent",
  2926. "Id": 8716140543667152403
  2927. }
  2928. }
  2929. },
  2930. "Entity_[995997644647938]": {
  2931. "Id": "Entity_[995997644647938]",
  2932. "Name": "end2",
  2933. "Components": {
  2934. "Component_[10500648739299668939]": {
  2935. "$type": "EditorDisabledCompositionComponent",
  2936. "Id": 10500648739299668939
  2937. },
  2938. "Component_[1054428503372686093]": {
  2939. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2940. "Id": 1054428503372686093,
  2941. "Parent Entity": "Entity_[995928925171202]",
  2942. "Transform Data": {
  2943. "Translate": [
  2944. -27.750730514526367,
  2945. -0.00652468204498291,
  2946. 0.0
  2947. ],
  2948. "Rotate": [
  2949. 0.0,
  2950. 0.0,
  2951. -89.99994659423828
  2952. ]
  2953. }
  2954. },
  2955. "Component_[12045779898573478531]": {
  2956. "$type": "EditorInspectorComponent",
  2957. "Id": 12045779898573478531
  2958. },
  2959. "Component_[12228613816215076155]": {
  2960. "$type": "EditorEntitySortComponent",
  2961. "Id": 12228613816215076155
  2962. },
  2963. "Component_[12502744294820326116]": {
  2964. "$type": "EditorOnlyEntityComponent",
  2965. "Id": 12502744294820326116
  2966. },
  2967. "Component_[12903035105505580650]": {
  2968. "$type": "EditorVisibilityComponent",
  2969. "Id": 12903035105505580650
  2970. },
  2971. "Component_[17622569680873604777]": {
  2972. "$type": "EditorPendingCompositionComponent",
  2973. "Id": 17622569680873604777
  2974. },
  2975. "Component_[184072808979487519]": {
  2976. "$type": "EditorLockComponent",
  2977. "Id": 184072808979487519
  2978. },
  2979. "Component_[6699738828310866771]": {
  2980. "$type": "AZ::Render::EditorDecalComponent",
  2981. "Id": 6699738828310866771,
  2982. "Controller": {
  2983. "Configuration": {
  2984. "Opacity": 0.3199999928474426,
  2985. "Material": {
  2986. "assetId": {
  2987. "guid": "{C36BF373-CBAF-52C0-8515-283579CBFBDE}"
  2988. },
  2989. "assetHint": "assets/warehouse/floor_markings/markings_end2.azmaterial"
  2990. }
  2991. }
  2992. }
  2993. },
  2994. "Component_[8716140543667152403]": {
  2995. "$type": "EditorEntityIconComponent",
  2996. "Id": 8716140543667152403
  2997. }
  2998. }
  2999. },
  3000. "Entity_[996001939615234]": {
  3001. "Id": "Entity_[996001939615234]",
  3002. "Name": "end2",
  3003. "Components": {
  3004. "Component_[10500648739299668939]": {
  3005. "$type": "EditorDisabledCompositionComponent",
  3006. "Id": 10500648739299668939
  3007. },
  3008. "Component_[1054428503372686093]": {
  3009. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3010. "Id": 1054428503372686093,
  3011. "Parent Entity": "Entity_[996156558437890]",
  3012. "Transform Data": {
  3013. "Translate": [
  3014. -7.215170860290527,
  3015. -0.0065250396728515625,
  3016. 0.0
  3017. ],
  3018. "Rotate": [
  3019. 0.0,
  3020. 0.0,
  3021. -89.99994659423828
  3022. ]
  3023. }
  3024. },
  3025. "Component_[12045779898573478531]": {
  3026. "$type": "EditorInspectorComponent",
  3027. "Id": 12045779898573478531
  3028. },
  3029. "Component_[12228613816215076155]": {
  3030. "$type": "EditorEntitySortComponent",
  3031. "Id": 12228613816215076155
  3032. },
  3033. "Component_[12502744294820326116]": {
  3034. "$type": "EditorOnlyEntityComponent",
  3035. "Id": 12502744294820326116
  3036. },
  3037. "Component_[12903035105505580650]": {
  3038. "$type": "EditorVisibilityComponent",
  3039. "Id": 12903035105505580650
  3040. },
  3041. "Component_[17622569680873604777]": {
  3042. "$type": "EditorPendingCompositionComponent",
  3043. "Id": 17622569680873604777
  3044. },
  3045. "Component_[184072808979487519]": {
  3046. "$type": "EditorLockComponent",
  3047. "Id": 184072808979487519
  3048. },
  3049. "Component_[6699738828310866771]": {
  3050. "$type": "AZ::Render::EditorDecalComponent",
  3051. "Id": 6699738828310866771,
  3052. "Controller": {
  3053. "Configuration": {
  3054. "Opacity": 0.3199999928474426,
  3055. "Material": {
  3056. "assetId": {
  3057. "guid": "{C36BF373-CBAF-52C0-8515-283579CBFBDE}"
  3058. },
  3059. "assetHint": "assets/warehouse/floor_markings/markings_end2.azmaterial"
  3060. }
  3061. }
  3062. }
  3063. },
  3064. "Component_[8716140543667152403]": {
  3065. "$type": "EditorEntityIconComponent",
  3066. "Id": 8716140543667152403
  3067. }
  3068. }
  3069. },
  3070. "Entity_[996006234582530]": {
  3071. "Id": "Entity_[996006234582530]",
  3072. "Name": "Front2",
  3073. "Components": {
  3074. "Component_[15625508061898731304]": {
  3075. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3076. "Id": 15625508061898731304,
  3077. "Parent Entity": "Entity_[996053479222786]"
  3078. },
  3079. "Component_[17280997006571776701]": {
  3080. "$type": "EditorOnlyEntityComponent",
  3081. "Id": 17280997006571776701
  3082. },
  3083. "Component_[2814986339543353948]": {
  3084. "$type": "EditorEntityIconComponent",
  3085. "Id": 2814986339543353948
  3086. },
  3087. "Component_[3090896649552868795]": {
  3088. "$type": "EditorInspectorComponent",
  3089. "Id": 3090896649552868795
  3090. },
  3091. "Component_[4078029949707370992]": {
  3092. "$type": "EditorPendingCompositionComponent",
  3093. "Id": 4078029949707370992
  3094. },
  3095. "Component_[4936373086232838858]": {
  3096. "$type": "EditorLockComponent",
  3097. "Id": 4936373086232838858
  3098. },
  3099. "Component_[4977736227609570658]": {
  3100. "$type": "EditorEntitySortComponent",
  3101. "Id": 4977736227609570658,
  3102. "Child Entity Order": [
  3103. "Entity_[995933220138498]",
  3104. "Entity_[996049184255490]"
  3105. ]
  3106. },
  3107. "Component_[5023574651152404159]": {
  3108. "$type": "EditorVisibilityComponent",
  3109. "Id": 5023574651152404159
  3110. },
  3111. "Component_[9952495842130799677]": {
  3112. "$type": "EditorDisabledCompositionComponent",
  3113. "Id": 9952495842130799677
  3114. }
  3115. }
  3116. },
  3117. "Entity_[996010529549826]": {
  3118. "Id": "Entity_[996010529549826]",
  3119. "Name": "row_long",
  3120. "Components": {
  3121. "Component_[11358105557128824214]": {
  3122. "$type": "EditorLockComponent",
  3123. "Id": 11358105557128824214
  3124. },
  3125. "Component_[13946020643802045435]": {
  3126. "$type": "EditorInspectorComponent",
  3127. "Id": 13946020643802045435
  3128. },
  3129. "Component_[16808686584333473094]": {
  3130. "$type": "EditorDisabledCompositionComponent",
  3131. "Id": 16808686584333473094
  3132. },
  3133. "Component_[3531174978848893918]": {
  3134. "$type": "EditorVisibilityComponent",
  3135. "Id": 3531174978848893918
  3136. },
  3137. "Component_[3675136203864957774]": {
  3138. "$type": "EditorEntityIconComponent",
  3139. "Id": 3675136203864957774
  3140. },
  3141. "Component_[5147878209571874574]": {
  3142. "$type": "EditorPendingCompositionComponent",
  3143. "Id": 5147878209571874574
  3144. },
  3145. "Component_[6529333310674229373]": {
  3146. "$type": "EditorEntitySortComponent",
  3147. "Id": 6529333310674229373,
  3148. "Child Entity Order": [
  3149. "Entity_[995868795629058]",
  3150. "Entity_[996019119484418]",
  3151. "Entity_[995834435890690]",
  3152. "Entity_[995941810073090]",
  3153. "Entity_[995864500661762]",
  3154. "Entity_[995898860400130]",
  3155. "Entity_[996066364124674]",
  3156. "Entity_[996027709419010]",
  3157. "Entity_[996083543993858]",
  3158. "Entity_[995830140923394]",
  3159. "Entity_[995946105040386]",
  3160. "Entity_[995916040269314]",
  3161. "Entity_[996023414451714]",
  3162. "Entity_[996169443339778]",
  3163. "Entity_[995980464778754]"
  3164. ]
  3165. },
  3166. "Component_[8438145710848209955]": {
  3167. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3168. "Id": 8438145710848209955,
  3169. "Parent Entity": "Entity_[995937515105794]",
  3170. "Transform Data": {
  3171. "Translate": [
  3172. 1.6006743907928467,
  3173. 9.034758567810059,
  3174. 0.0
  3175. ]
  3176. }
  3177. },
  3178. "Component_[9165328650543530788]": {
  3179. "$type": "EditorOnlyEntityComponent",
  3180. "Id": 9165328650543530788
  3181. }
  3182. }
  3183. },
  3184. "Entity_[996014824517122]": {
  3185. "Id": "Entity_[996014824517122]",
  3186. "Name": "mid1",
  3187. "Components": {
  3188. "Component_[10500648739299668939]": {
  3189. "$type": "EditorDisabledCompositionComponent",
  3190. "Id": 10500648739299668939
  3191. },
  3192. "Component_[1054428503372686093]": {
  3193. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3194. "Id": 1054428503372686093,
  3195. "Parent Entity": "Entity_[995928925171202]",
  3196. "Transform Data": {
  3197. "Translate": [
  3198. -10.01328182220459,
  3199. -0.006516456604003906,
  3200. 0.0
  3201. ],
  3202. "Rotate": [
  3203. 0.0,
  3204. 0.0,
  3205. -89.99994659423828
  3206. ]
  3207. }
  3208. },
  3209. "Component_[12045779898573478531]": {
  3210. "$type": "EditorInspectorComponent",
  3211. "Id": 12045779898573478531
  3212. },
  3213. "Component_[12228613816215076155]": {
  3214. "$type": "EditorEntitySortComponent",
  3215. "Id": 12228613816215076155
  3216. },
  3217. "Component_[12502744294820326116]": {
  3218. "$type": "EditorOnlyEntityComponent",
  3219. "Id": 12502744294820326116
  3220. },
  3221. "Component_[12903035105505580650]": {
  3222. "$type": "EditorVisibilityComponent",
  3223. "Id": 12903035105505580650
  3224. },
  3225. "Component_[17622569680873604777]": {
  3226. "$type": "EditorPendingCompositionComponent",
  3227. "Id": 17622569680873604777
  3228. },
  3229. "Component_[184072808979487519]": {
  3230. "$type": "EditorLockComponent",
  3231. "Id": 184072808979487519
  3232. },
  3233. "Component_[1876784684196611333]": {
  3234. "$type": "AZ::Render::EditorDecalComponent",
  3235. "Id": 1876784684196611333,
  3236. "Controller": {
  3237. "Configuration": {
  3238. "Opacity": 0.3199999928474426,
  3239. "Material": {
  3240. "assetId": {
  3241. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  3242. },
  3243. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  3244. }
  3245. }
  3246. }
  3247. },
  3248. "Component_[8716140543667152403]": {
  3249. "$type": "EditorEntityIconComponent",
  3250. "Id": 8716140543667152403
  3251. }
  3252. }
  3253. },
  3254. "Entity_[996019119484418]": {
  3255. "Id": "Entity_[996019119484418]",
  3256. "Name": "mid1",
  3257. "Components": {
  3258. "Component_[10500648739299668939]": {
  3259. "$type": "EditorDisabledCompositionComponent",
  3260. "Id": 10500648739299668939
  3261. },
  3262. "Component_[1054428503372686093]": {
  3263. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3264. "Id": 1054428503372686093,
  3265. "Parent Entity": "Entity_[996010529549826]",
  3266. "Transform Data": {
  3267. "Translate": [
  3268. -2.0163729190826416,
  3269. -0.006518363952636719,
  3270. 0.0
  3271. ],
  3272. "Rotate": [
  3273. 0.0,
  3274. 0.0,
  3275. -89.99994659423828
  3276. ]
  3277. }
  3278. },
  3279. "Component_[12045779898573478531]": {
  3280. "$type": "EditorInspectorComponent",
  3281. "Id": 12045779898573478531
  3282. },
  3283. "Component_[12228613816215076155]": {
  3284. "$type": "EditorEntitySortComponent",
  3285. "Id": 12228613816215076155
  3286. },
  3287. "Component_[12502744294820326116]": {
  3288. "$type": "EditorOnlyEntityComponent",
  3289. "Id": 12502744294820326116
  3290. },
  3291. "Component_[12903035105505580650]": {
  3292. "$type": "EditorVisibilityComponent",
  3293. "Id": 12903035105505580650
  3294. },
  3295. "Component_[17622569680873604777]": {
  3296. "$type": "EditorPendingCompositionComponent",
  3297. "Id": 17622569680873604777
  3298. },
  3299. "Component_[184072808979487519]": {
  3300. "$type": "EditorLockComponent",
  3301. "Id": 184072808979487519
  3302. },
  3303. "Component_[6754792070157175513]": {
  3304. "$type": "AZ::Render::EditorDecalComponent",
  3305. "Id": 6754792070157175513,
  3306. "Controller": {
  3307. "Configuration": {
  3308. "Opacity": 0.3199999928474426,
  3309. "Material": {
  3310. "assetId": {
  3311. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  3312. },
  3313. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  3314. }
  3315. }
  3316. }
  3317. },
  3318. "Component_[8716140543667152403]": {
  3319. "$type": "EditorEntityIconComponent",
  3320. "Id": 8716140543667152403
  3321. }
  3322. }
  3323. },
  3324. "Entity_[996023414451714]": {
  3325. "Id": "Entity_[996023414451714]",
  3326. "Name": "mid1",
  3327. "Components": {
  3328. "Component_[10500648739299668939]": {
  3329. "$type": "EditorDisabledCompositionComponent",
  3330. "Id": 10500648739299668939
  3331. },
  3332. "Component_[1054428503372686093]": {
  3333. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3334. "Id": 1054428503372686093,
  3335. "Parent Entity": "Entity_[996010529549826]",
  3336. "Transform Data": {
  3337. "Translate": [
  3338. -18.009654998779297,
  3339. -0.006518363952636719,
  3340. 0.0
  3341. ],
  3342. "Rotate": [
  3343. 0.0,
  3344. 0.0,
  3345. -89.99994659423828
  3346. ]
  3347. }
  3348. },
  3349. "Component_[12045779898573478531]": {
  3350. "$type": "EditorInspectorComponent",
  3351. "Id": 12045779898573478531
  3352. },
  3353. "Component_[12228613816215076155]": {
  3354. "$type": "EditorEntitySortComponent",
  3355. "Id": 12228613816215076155
  3356. },
  3357. "Component_[12502744294820326116]": {
  3358. "$type": "EditorOnlyEntityComponent",
  3359. "Id": 12502744294820326116
  3360. },
  3361. "Component_[12903035105505580650]": {
  3362. "$type": "EditorVisibilityComponent",
  3363. "Id": 12903035105505580650
  3364. },
  3365. "Component_[14267448082087384660]": {
  3366. "$type": "AZ::Render::EditorDecalComponent",
  3367. "Id": 14267448082087384660,
  3368. "Controller": {
  3369. "Configuration": {
  3370. "Opacity": 0.3199999928474426,
  3371. "Material": {
  3372. "assetId": {
  3373. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  3374. },
  3375. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  3376. }
  3377. }
  3378. }
  3379. },
  3380. "Component_[17622569680873604777]": {
  3381. "$type": "EditorPendingCompositionComponent",
  3382. "Id": 17622569680873604777
  3383. },
  3384. "Component_[184072808979487519]": {
  3385. "$type": "EditorLockComponent",
  3386. "Id": 184072808979487519
  3387. },
  3388. "Component_[8716140543667152403]": {
  3389. "$type": "EditorEntityIconComponent",
  3390. "Id": 8716140543667152403
  3391. }
  3392. }
  3393. },
  3394. "Entity_[996027709419010]": {
  3395. "Id": "Entity_[996027709419010]",
  3396. "Name": "mid2",
  3397. "Components": {
  3398. "Component_[10500648739299668939]": {
  3399. "$type": "EditorDisabledCompositionComponent",
  3400. "Id": 10500648739299668939
  3401. },
  3402. "Component_[1054428503372686093]": {
  3403. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3404. "Id": 1054428503372686093,
  3405. "Parent Entity": "Entity_[996010529549826]",
  3406. "Transform Data": {
  3407. "Translate": [
  3408. -12.01333236694336,
  3409. -0.006518363952636719,
  3410. 0.0
  3411. ],
  3412. "Rotate": [
  3413. 0.0,
  3414. 0.0,
  3415. -89.99994659423828
  3416. ]
  3417. }
  3418. },
  3419. "Component_[12045779898573478531]": {
  3420. "$type": "EditorInspectorComponent",
  3421. "Id": 12045779898573478531
  3422. },
  3423. "Component_[12228613816215076155]": {
  3424. "$type": "EditorEntitySortComponent",
  3425. "Id": 12228613816215076155
  3426. },
  3427. "Component_[12502744294820326116]": {
  3428. "$type": "EditorOnlyEntityComponent",
  3429. "Id": 12502744294820326116
  3430. },
  3431. "Component_[12903035105505580650]": {
  3432. "$type": "EditorVisibilityComponent",
  3433. "Id": 12903035105505580650
  3434. },
  3435. "Component_[15222639611894372230]": {
  3436. "$type": "AZ::Render::EditorDecalComponent",
  3437. "Id": 15222639611894372230,
  3438. "Controller": {
  3439. "Configuration": {
  3440. "Opacity": 0.3199999928474426,
  3441. "Material": {
  3442. "assetId": {
  3443. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  3444. },
  3445. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  3446. }
  3447. }
  3448. }
  3449. },
  3450. "Component_[17622569680873604777]": {
  3451. "$type": "EditorPendingCompositionComponent",
  3452. "Id": 17622569680873604777
  3453. },
  3454. "Component_[184072808979487519]": {
  3455. "$type": "EditorLockComponent",
  3456. "Id": 184072808979487519
  3457. },
  3458. "Component_[8716140543667152403]": {
  3459. "$type": "EditorEntityIconComponent",
  3460. "Id": 8716140543667152403
  3461. }
  3462. }
  3463. },
  3464. "Entity_[996032004386306]": {
  3465. "Id": "Entity_[996032004386306]",
  3466. "Name": "corner",
  3467. "Components": {
  3468. "Component_[10500648739299668939]": {
  3469. "$type": "EditorDisabledCompositionComponent",
  3470. "Id": 10500648739299668939
  3471. },
  3472. "Component_[1054428503372686093]": {
  3473. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3474. "Id": 1054428503372686093,
  3475. "Parent Entity": "Entity_[996143673536002]",
  3476. "Transform Data": {
  3477. "Translate": [
  3478. -3.492000102996826,
  3479. -0.13811999559402466,
  3480. 0.0
  3481. ],
  3482. "Rotate": [
  3483. 0.0,
  3484. 0.0,
  3485. -89.99994659423828
  3486. ]
  3487. }
  3488. },
  3489. "Component_[12045779898573478531]": {
  3490. "$type": "EditorInspectorComponent",
  3491. "Id": 12045779898573478531
  3492. },
  3493. "Component_[12228613816215076155]": {
  3494. "$type": "EditorEntitySortComponent",
  3495. "Id": 12228613816215076155
  3496. },
  3497. "Component_[12502744294820326116]": {
  3498. "$type": "EditorOnlyEntityComponent",
  3499. "Id": 12502744294820326116
  3500. },
  3501. "Component_[12903035105505580650]": {
  3502. "$type": "EditorVisibilityComponent",
  3503. "Id": 12903035105505580650
  3504. },
  3505. "Component_[17622569680873604777]": {
  3506. "$type": "EditorPendingCompositionComponent",
  3507. "Id": 17622569680873604777
  3508. },
  3509. "Component_[184072808979487519]": {
  3510. "$type": "EditorLockComponent",
  3511. "Id": 184072808979487519
  3512. },
  3513. "Component_[6699738828310866771]": {
  3514. "$type": "AZ::Render::EditorDecalComponent",
  3515. "Id": 6699738828310866771,
  3516. "Controller": {
  3517. "Configuration": {
  3518. "Opacity": 0.3199999928474426,
  3519. "Material": {
  3520. "assetId": {
  3521. "guid": "{39CC958C-1BBB-512A-816D-919023CE3E90}"
  3522. },
  3523. "assetHint": "assets/warehouse/floor_markings/markings_corner.azmaterial"
  3524. }
  3525. }
  3526. }
  3527. },
  3528. "Component_[8716140543667152403]": {
  3529. "$type": "EditorEntityIconComponent",
  3530. "Id": 8716140543667152403
  3531. }
  3532. }
  3533. },
  3534. "Entity_[996036299353602]": {
  3535. "Id": "Entity_[996036299353602]",
  3536. "Name": "Global_illumination",
  3537. "Components": {
  3538. "Component_[1127458783275098080]": {
  3539. "$type": "EditorPendingCompositionComponent",
  3540. "Id": 1127458783275098080
  3541. },
  3542. "Component_[12715094688327665427]": {
  3543. "$type": "EditorDisabledCompositionComponent",
  3544. "Id": 12715094688327665427
  3545. },
  3546. "Component_[13578452495796811563]": {
  3547. "$type": "EditorLockComponent",
  3548. "Id": 13578452495796811563
  3549. },
  3550. "Component_[1510865034130332399]": {
  3551. "$type": "EditorEntityIconComponent",
  3552. "Id": 1510865034130332399
  3553. },
  3554. "Component_[17485067918467983926]": {
  3555. "$type": "EditorInspectorComponent",
  3556. "Id": 17485067918467983926,
  3557. "ComponentOrderEntryArray": [
  3558. {
  3559. "ComponentId": 534034920821573116
  3560. }
  3561. ]
  3562. },
  3563. "Component_[4864413277718661129]": {
  3564. "$type": "EditorVisibilityComponent",
  3565. "Id": 4864413277718661129
  3566. },
  3567. "Component_[534034920821573116]": {
  3568. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3569. "Id": 534034920821573116,
  3570. "Parent Entity": "Entity_[996096428895746]",
  3571. "Transform Data": {
  3572. "Translate": [
  3573. 28.637195587158203,
  3574. -7.540553092956543,
  3575. -3.0972278118133545
  3576. ]
  3577. }
  3578. },
  3579. "Component_[5693942250159058413]": {
  3580. "$type": "EditorEntitySortComponent",
  3581. "Id": 5693942250159058413,
  3582. "Child Entity Order": [
  3583. "Entity_[995971874844162]",
  3584. "Entity_[996113608764930]"
  3585. ]
  3586. },
  3587. "Component_[92805011640044331]": {
  3588. "$type": "EditorOnlyEntityComponent",
  3589. "Id": 92805011640044331
  3590. }
  3591. }
  3592. },
  3593. "Entity_[996040594320898]": {
  3594. "Id": "Entity_[996040594320898]",
  3595. "Name": "Roof",
  3596. "Components": {
  3597. "Component_[11897281651755581940]": {
  3598. "$type": "EditorLockComponent",
  3599. "Id": 11897281651755581940
  3600. },
  3601. "Component_[13929733457951358484]": {
  3602. "$type": "EditorDisabledCompositionComponent",
  3603. "Id": 13929733457951358484
  3604. },
  3605. "Component_[14449426647190231543]": {
  3606. "$type": "EditorVisibilityComponent",
  3607. "Id": 14449426647190231543
  3608. },
  3609. "Component_[15564134635072402401]": {
  3610. "$type": "EditorPendingCompositionComponent",
  3611. "Id": 15564134635072402401
  3612. },
  3613. "Component_[17106305311624608125]": {
  3614. "$type": "EditorEntitySortComponent",
  3615. "Id": 17106305311624608125,
  3616. "Child Entity Order": [
  3617. "Entity_[995855910727170]",
  3618. "Entity_[996105018830338]"
  3619. ]
  3620. },
  3621. "Component_[2185243914678739866]": {
  3622. "$type": "EditorInspectorComponent",
  3623. "Id": 2185243914678739866,
  3624. "ComponentOrderEntryArray": [
  3625. {
  3626. "ComponentId": 4075839978245151462
  3627. }
  3628. ]
  3629. },
  3630. "Component_[4075839978245151462]": {
  3631. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3632. "Id": 4075839978245151462,
  3633. "Parent Entity": "Entity_[996070659091970]"
  3634. },
  3635. "Component_[8022660110480589526]": {
  3636. "$type": "EditorOnlyEntityComponent",
  3637. "Id": 8022660110480589526
  3638. },
  3639. "Component_[9956857898130168105]": {
  3640. "$type": "EditorEntityIconComponent",
  3641. "Id": 9956857898130168105
  3642. }
  3643. }
  3644. },
  3645. "Entity_[996044889288194]": {
  3646. "Id": "Entity_[996044889288194]",
  3647. "Name": "end1",
  3648. "Components": {
  3649. "Component_[10500648739299668939]": {
  3650. "$type": "EditorDisabledCompositionComponent",
  3651. "Id": 10500648739299668939
  3652. },
  3653. "Component_[1054428503372686093]": {
  3654. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3655. "Id": 1054428503372686093,
  3656. "Parent Entity": "Entity_[996156558437890]",
  3657. "Transform Data": {
  3658. "Translate": [
  3659. -0.016234397888183594,
  3660. -0.0065152645111083984,
  3661. 0.0
  3662. ],
  3663. "Rotate": [
  3664. 0.0,
  3665. 0.0,
  3666. -89.99994659423828
  3667. ]
  3668. }
  3669. },
  3670. "Component_[12045779898573478531]": {
  3671. "$type": "EditorInspectorComponent",
  3672. "Id": 12045779898573478531
  3673. },
  3674. "Component_[12228613816215076155]": {
  3675. "$type": "EditorEntitySortComponent",
  3676. "Id": 12228613816215076155
  3677. },
  3678. "Component_[12502744294820326116]": {
  3679. "$type": "EditorOnlyEntityComponent",
  3680. "Id": 12502744294820326116
  3681. },
  3682. "Component_[12903035105505580650]": {
  3683. "$type": "EditorVisibilityComponent",
  3684. "Id": 12903035105505580650
  3685. },
  3686. "Component_[17622569680873604777]": {
  3687. "$type": "EditorPendingCompositionComponent",
  3688. "Id": 17622569680873604777
  3689. },
  3690. "Component_[184072808979487519]": {
  3691. "$type": "EditorLockComponent",
  3692. "Id": 184072808979487519
  3693. },
  3694. "Component_[6699738828310866771]": {
  3695. "$type": "AZ::Render::EditorDecalComponent",
  3696. "Id": 6699738828310866771,
  3697. "Controller": {
  3698. "Configuration": {
  3699. "Opacity": 0.3199999928474426,
  3700. "Material": {
  3701. "assetId": {
  3702. "guid": "{F4C96494-A086-59D2-A605-06E760588573}"
  3703. },
  3704. "assetHint": "assets/warehouse/floor_markings/markings_end1.azmaterial"
  3705. }
  3706. }
  3707. }
  3708. },
  3709. "Component_[8716140543667152403]": {
  3710. "$type": "EditorEntityIconComponent",
  3711. "Id": 8716140543667152403
  3712. }
  3713. }
  3714. },
  3715. "Entity_[996049184255490]": {
  3716. "Id": "Entity_[996049184255490]",
  3717. "Name": "Gate",
  3718. "Components": {
  3719. "Component_[10387122939797774050]": {
  3720. "$type": "AZ::Render::EditorMeshComponent",
  3721. "Id": 10387122939797774050,
  3722. "Controller": {
  3723. "Configuration": {
  3724. "ModelAsset": {
  3725. "assetId": {
  3726. "guid": "{9F3790A0-9383-5BBA-BB91-2AD9F04086B3}",
  3727. "subId": 279508339
  3728. },
  3729. "assetHint": "assets/warehouse/models/warehouse_gate_closed.azmodel"
  3730. }
  3731. }
  3732. }
  3733. },
  3734. "Component_[12188643545659218893]": {
  3735. "$type": "EditorMaterialComponent",
  3736. "Id": 12188643545659218893,
  3737. "Controller": {
  3738. "Configuration": {
  3739. "materials": [
  3740. {
  3741. "Key": {
  3742. "materialSlotStableId": 103484566
  3743. },
  3744. "Value": {
  3745. "MaterialAsset": {
  3746. "assetId": {
  3747. "guid": "{9FF0270B-8936-528A-89EC-3E73A01AF755}"
  3748. },
  3749. "assetHint": "assets/warehouse/materials/mwarehousemodules.azmaterial"
  3750. }
  3751. }
  3752. },
  3753. {
  3754. "Key": {
  3755. "materialSlotStableId": 745211904
  3756. },
  3757. "Value": {
  3758. "MaterialAsset": {
  3759. "assetId": {
  3760. "guid": "{06298918-E750-5053-B55B-10D158B1ED8C}"
  3761. },
  3762. "assetHint": "assets/warehouse/materials/mwarehousegate.azmaterial"
  3763. }
  3764. }
  3765. }
  3766. ]
  3767. }
  3768. }
  3769. },
  3770. "Component_[13600490855520413730]": {
  3771. "$type": "EditorLockComponent",
  3772. "Id": 13600490855520413730
  3773. },
  3774. "Component_[15167189095873685279]": {
  3775. "$type": "EditorInspectorComponent",
  3776. "Id": 15167189095873685279
  3777. },
  3778. "Component_[16809483465388003559]": {
  3779. "$type": "EditorMeshColliderComponent",
  3780. "Id": 16809483465388003559,
  3781. "ColliderConfiguration": {
  3782. "MaterialSlots": {
  3783. "Slots": [
  3784. {
  3785. "Name": "MWarehouseGate"
  3786. },
  3787. {
  3788. "Name": "MWarehouseModules"
  3789. }
  3790. ]
  3791. }
  3792. },
  3793. "ShapeConfiguration": {
  3794. "PhysicsAsset": {
  3795. "Asset": {
  3796. "assetId": {
  3797. "guid": "{9F3790A0-9383-5BBA-BB91-2AD9F04086B3}",
  3798. "subId": 675098786
  3799. },
  3800. "assetHint": "assets/warehouse/models/warehouse_gate_closed.pxmesh"
  3801. },
  3802. "Configuration": {
  3803. "PhysicsAsset": {
  3804. "assetId": {
  3805. "guid": "{9F3790A0-9383-5BBA-BB91-2AD9F04086B3}",
  3806. "subId": 675098786
  3807. },
  3808. "loadBehavior": "QueueLoad",
  3809. "assetHint": "assets/warehouse/models/warehouse_gate_closed.pxmesh"
  3810. }
  3811. }
  3812. }
  3813. }
  3814. },
  3815. "Component_[17614188821325671055]": {
  3816. "$type": "EditorDisabledCompositionComponent",
  3817. "Id": 17614188821325671055
  3818. },
  3819. "Component_[17714278481541526192]": {
  3820. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3821. "Id": 17714278481541526192,
  3822. "Parent Entity": "Entity_[996006234582530]",
  3823. "Transform Data": {
  3824. "Translate": [
  3825. 39.78621292114258,
  3826. 1.0,
  3827. 0.0
  3828. ],
  3829. "Rotate": [
  3830. 0.0,
  3831. 0.0,
  3832. -179.99989318847656
  3833. ]
  3834. }
  3835. },
  3836. "Component_[17751943132203388929]": {
  3837. "$type": "EditorVisibilityComponent",
  3838. "Id": 17751943132203388929
  3839. },
  3840. "Component_[18437099534701703658]": {
  3841. "$type": "EditorOnlyEntityComponent",
  3842. "Id": 18437099534701703658
  3843. },
  3844. "Component_[5781546573867269447]": {
  3845. "$type": "EditorEntitySortComponent",
  3846. "Id": 5781546573867269447
  3847. },
  3848. "Component_[7578485257791727565]": {
  3849. "$type": "EditorEntityIconComponent",
  3850. "Id": 7578485257791727565
  3851. },
  3852. "Component_[8806906810237163444]": {
  3853. "$type": "EditorPendingCompositionComponent",
  3854. "Id": 8806906810237163444
  3855. },
  3856. "Component_[9994022325695796853]": {
  3857. "$type": "EditorStaticRigidBodyComponent",
  3858. "Id": 9994022325695796853
  3859. }
  3860. }
  3861. },
  3862. "Entity_[996053479222786]": {
  3863. "Id": "Entity_[996053479222786]",
  3864. "Name": "Walls",
  3865. "Components": {
  3866. "Component_[12320187153160134497]": {
  3867. "$type": "EditorLockComponent",
  3868. "Id": 12320187153160134497
  3869. },
  3870. "Component_[12872591643689638314]": {
  3871. "$type": "EditorInspectorComponent",
  3872. "Id": 12872591643689638314,
  3873. "ComponentOrderEntryArray": [
  3874. {
  3875. "ComponentId": 6260322509154249675
  3876. }
  3877. ]
  3878. },
  3879. "Component_[15163030242604913180]": {
  3880. "$type": "EditorEntitySortComponent",
  3881. "Id": 15163030242604913180,
  3882. "Child Entity Order": [
  3883. "Entity_[995963284909570]",
  3884. "Entity_[996006234582530]"
  3885. ]
  3886. },
  3887. "Component_[17205482816227847850]": {
  3888. "$type": "EditorVisibilityComponent",
  3889. "Id": 17205482816227847850
  3890. },
  3891. "Component_[2888948921024549052]": {
  3892. "$type": "EditorEntityIconComponent",
  3893. "Id": 2888948921024549052
  3894. },
  3895. "Component_[6170519587749023860]": {
  3896. "$type": "EditorDisabledCompositionComponent",
  3897. "Id": 6170519587749023860
  3898. },
  3899. "Component_[6260322509154249675]": {
  3900. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3901. "Id": 6260322509154249675,
  3902. "Parent Entity": "Entity_[995924630203906]"
  3903. },
  3904. "Component_[8210191216031664981]": {
  3905. "$type": "EditorOnlyEntityComponent",
  3906. "Id": 8210191216031664981
  3907. },
  3908. "Component_[9054034388357325412]": {
  3909. "$type": "EditorPendingCompositionComponent",
  3910. "Id": 9054034388357325412
  3911. }
  3912. }
  3913. },
  3914. "Entity_[996057774190082]": {
  3915. "Id": "Entity_[996057774190082]",
  3916. "Name": "Storage_markings",
  3917. "Components": {
  3918. "Component_[1269631343096125166]": {
  3919. "$type": "EditorVisibilityComponent",
  3920. "Id": 1269631343096125166
  3921. },
  3922. "Component_[16118165559572558549]": {
  3923. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3924. "Id": 16118165559572558549,
  3925. "Parent Entity": "Entity_[996096428895746]",
  3926. "Transform Data": {
  3927. "Translate": [
  3928. 28.637195587158203,
  3929. -7.540553092956543,
  3930. -3.4281985759735107
  3931. ]
  3932. }
  3933. },
  3934. "Component_[16283120450007197294]": {
  3935. "$type": "EditorLockComponent",
  3936. "Id": 16283120450007197294
  3937. },
  3938. "Component_[16360795866672387305]": {
  3939. "$type": "EditorPendingCompositionComponent",
  3940. "Id": 16360795866672387305
  3941. },
  3942. "Component_[17898637527085254329]": {
  3943. "$type": "EditorDisabledCompositionComponent",
  3944. "Id": 17898637527085254329
  3945. },
  3946. "Component_[5239606497649298205]": {
  3947. "$type": "EditorOnlyEntityComponent",
  3948. "Id": 5239606497649298205
  3949. },
  3950. "Component_[6855262709470529671]": {
  3951. "$type": "EditorEntityIconComponent",
  3952. "Id": 6855262709470529671
  3953. },
  3954. "Component_[7223525965538837930]": {
  3955. "$type": "EditorEntitySortComponent",
  3956. "Id": 7223525965538837930
  3957. },
  3958. "Component_[7672421981488037874]": {
  3959. "$type": "EditorInspectorComponent",
  3960. "Id": 7672421981488037874
  3961. }
  3962. }
  3963. },
  3964. "Entity_[996062069157378]": {
  3965. "Id": "Entity_[996062069157378]",
  3966. "Name": "1",
  3967. "Components": {
  3968. "Component_[10321909275187222931]": {
  3969. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3970. "Id": 10321909275187222931,
  3971. "Parent Entity": "Entity_[995950400007682]",
  3972. "Transform Data": {
  3973. "Translate": [
  3974. 34.927528381347656,
  3975. -8.665308952331543,
  3976. 0.0
  3977. ]
  3978. }
  3979. },
  3980. "Component_[10681537930500446053]": {
  3981. "$type": "EditorEntitySortComponent",
  3982. "Id": 10681537930500446053,
  3983. "Child Entity Order": [
  3984. "Instance_[1261728088686882]/ContainerEntity",
  3985. "Instance_[1261809693065506]/ContainerEntity",
  3986. "Instance_[1261822577967394]/ContainerEntity",
  3987. "Instance_[1261861232673058]/ContainerEntity",
  3988. "Instance_[1859282593612066]/ContainerEntity",
  3989. "Instance_[1859274003677474]/ContainerEntity",
  3990. "Instance_[1560331394973986]/ContainerEntity",
  3991. "Instance_[1560327100006690]/ContainerEntity",
  3992. "Instance_[1560339984908578]/ContainerEntity",
  3993. "Instance_[1560335689941282]/ContainerEntity",
  3994. "Instance_[1859278298644770]/ContainerEntity",
  3995. "Instance_[1261856937705762]/ContainerEntity"
  3996. ]
  3997. },
  3998. "Component_[11217564894606926180]": {
  3999. "$type": "EditorPendingCompositionComponent",
  4000. "Id": 11217564894606926180
  4001. },
  4002. "Component_[12647362886010771168]": {
  4003. "$type": "EditorInspectorComponent",
  4004. "Id": 12647362886010771168
  4005. },
  4006. "Component_[13008426432773336905]": {
  4007. "$type": "EditorOnlyEntityComponent",
  4008. "Id": 13008426432773336905
  4009. },
  4010. "Component_[15225701871626598457]": {
  4011. "$type": "EditorVisibilityComponent",
  4012. "Id": 15225701871626598457
  4013. },
  4014. "Component_[238064552553574844]": {
  4015. "$type": "EditorLockComponent",
  4016. "Id": 238064552553574844
  4017. },
  4018. "Component_[4209670188283020330]": {
  4019. "$type": "EditorDisabledCompositionComponent",
  4020. "Id": 4209670188283020330
  4021. },
  4022. "Component_[6237799727571163432]": {
  4023. "$type": "EditorEntityIconComponent",
  4024. "Id": 6237799727571163432
  4025. }
  4026. }
  4027. },
  4028. "Entity_[996066364124674]": {
  4029. "Id": "Entity_[996066364124674]",
  4030. "Name": "mid1",
  4031. "Components": {
  4032. "Component_[10500648739299668939]": {
  4033. "$type": "EditorDisabledCompositionComponent",
  4034. "Id": 10500648739299668939
  4035. },
  4036. "Component_[1054428503372686093]": {
  4037. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4038. "Id": 1054428503372686093,
  4039. "Parent Entity": "Entity_[996010529549826]",
  4040. "Transform Data": {
  4041. "Translate": [
  4042. -14.012656211853027,
  4043. -0.0065212249755859375,
  4044. 0.0
  4045. ],
  4046. "Rotate": [
  4047. 0.0,
  4048. 0.0,
  4049. -89.99994659423828
  4050. ]
  4051. }
  4052. },
  4053. "Component_[12045779898573478531]": {
  4054. "$type": "EditorInspectorComponent",
  4055. "Id": 12045779898573478531
  4056. },
  4057. "Component_[12228613816215076155]": {
  4058. "$type": "EditorEntitySortComponent",
  4059. "Id": 12228613816215076155
  4060. },
  4061. "Component_[12502744294820326116]": {
  4062. "$type": "EditorOnlyEntityComponent",
  4063. "Id": 12502744294820326116
  4064. },
  4065. "Component_[12903035105505580650]": {
  4066. "$type": "EditorVisibilityComponent",
  4067. "Id": 12903035105505580650
  4068. },
  4069. "Component_[17622569680873604777]": {
  4070. "$type": "EditorPendingCompositionComponent",
  4071. "Id": 17622569680873604777
  4072. },
  4073. "Component_[184072808979487519]": {
  4074. "$type": "EditorLockComponent",
  4075. "Id": 184072808979487519
  4076. },
  4077. "Component_[5190345744616876246]": {
  4078. "$type": "AZ::Render::EditorDecalComponent",
  4079. "Id": 5190345744616876246,
  4080. "Controller": {
  4081. "Configuration": {
  4082. "Opacity": 0.3199999928474426,
  4083. "Material": {
  4084. "assetId": {
  4085. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  4086. },
  4087. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  4088. }
  4089. }
  4090. }
  4091. },
  4092. "Component_[8716140543667152403]": {
  4093. "$type": "EditorEntityIconComponent",
  4094. "Id": 8716140543667152403
  4095. }
  4096. }
  4097. },
  4098. "Entity_[996070659091970]": {
  4099. "Id": "Entity_[996070659091970]",
  4100. "Name": "Warehouse_Roof",
  4101. "Components": {
  4102. "Component_[11717146280804731117]": {
  4103. "$type": "EditorVisibilityComponent",
  4104. "Id": 11717146280804731117
  4105. },
  4106. "Component_[14702950922314264420]": {
  4107. "$type": "EditorPendingCompositionComponent",
  4108. "Id": 14702950922314264420
  4109. },
  4110. "Component_[3274981898203187592]": {
  4111. "$type": "EditorLockComponent",
  4112. "Id": 3274981898203187592
  4113. },
  4114. "Component_[3972712270344311677]": {
  4115. "$type": "EditorEntitySortComponent",
  4116. "Id": 3972712270344311677,
  4117. "Child Entity Order": [
  4118. "Entity_[996040594320898]"
  4119. ]
  4120. },
  4121. "Component_[4581293085890052798]": {
  4122. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4123. "Id": 4581293085890052798,
  4124. "Parent Entity": "Entity_[996096428895746]"
  4125. },
  4126. "Component_[6309286408856347534]": {
  4127. "$type": "EditorOnlyEntityComponent",
  4128. "Id": 6309286408856347534
  4129. },
  4130. "Component_[7574275747264505285]": {
  4131. "$type": "EditorDisabledCompositionComponent",
  4132. "Id": 7574275747264505285
  4133. },
  4134. "Component_[8578370547218809002]": {
  4135. "$type": "EditorInspectorComponent",
  4136. "Id": 8578370547218809002
  4137. },
  4138. "Component_[9449821809272091050]": {
  4139. "$type": "EditorEntityIconComponent",
  4140. "Id": 9449821809272091050
  4141. }
  4142. }
  4143. },
  4144. "Entity_[996074954059266]": {
  4145. "Id": "Entity_[996074954059266]",
  4146. "Name": "Unpacked",
  4147. "Components": {
  4148. "Component_[1142782237355458274]": {
  4149. "$type": "EditorPendingCompositionComponent",
  4150. "Id": 1142782237355458274
  4151. },
  4152. "Component_[14059899138925494196]": {
  4153. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4154. "Id": 14059899138925494196,
  4155. "Parent Entity": "Entity_[995954694974978]"
  4156. },
  4157. "Component_[16032976125136096501]": {
  4158. "$type": "EditorEntityIconComponent",
  4159. "Id": 16032976125136096501
  4160. },
  4161. "Component_[1981593544749333580]": {
  4162. "$type": "EditorOnlyEntityComponent",
  4163. "Id": 1981593544749333580
  4164. },
  4165. "Component_[2370876785908093374]": {
  4166. "$type": "EditorDisabledCompositionComponent",
  4167. "Id": 2370876785908093374
  4168. },
  4169. "Component_[488559478896392830]": {
  4170. "$type": "EditorEntitySortComponent",
  4171. "Id": 488559478896392830,
  4172. "Child Entity Order": [
  4173. "Instance_[1467088291343243]/ContainerEntity",
  4174. "Instance_[1467354579315595]/ContainerEntity",
  4175. "Instance_[1667826472823691]/ContainerEntity",
  4176. "Instance_[1665464240810891]/ContainerEntity",
  4177. "Instance_[1666765615901579]/ContainerEntity",
  4178. "Instance_[1665477125712779]/ContainerEntity",
  4179. "Instance_[1667817882889099]/ContainerEntity",
  4180. "Instance_[1667804997987211]/ContainerEntity",
  4181. "Instance_[1667238062304139]/ContainerEntity",
  4182. "Instance_[1667839357725579]/ContainerEntity",
  4183. "Instance_[1665481420680075]/ContainerEntity",
  4184. "Instance_[1667835062758283]/ContainerEntity",
  4185. "Instance_[1667787818118027]/ContainerEntity",
  4186. "Instance_[1667036198841227]/ContainerEntity",
  4187. "Instance_[1665468535778187]/ContainerEntity",
  4188. "Instance_[1667800703019915]/ContainerEntity",
  4189. "Instance_[1667792113085323]/ContainerEntity",
  4190. "Instance_[1665472830745483]/ContainerEntity"
  4191. ]
  4192. },
  4193. "Component_[6815158051091967917]": {
  4194. "$type": "EditorLockComponent",
  4195. "Id": 6815158051091967917
  4196. },
  4197. "Component_[8798768250319223526]": {
  4198. "$type": "EditorInspectorComponent",
  4199. "Id": 8798768250319223526
  4200. },
  4201. "Component_[9589446052489877136]": {
  4202. "$type": "EditorVisibilityComponent",
  4203. "Id": 9589446052489877136
  4204. }
  4205. }
  4206. },
  4207. "Entity_[996079249026562]": {
  4208. "Id": "Entity_[996079249026562]",
  4209. "Name": "mid1",
  4210. "Components": {
  4211. "Component_[10500648739299668939]": {
  4212. "$type": "EditorDisabledCompositionComponent",
  4213. "Id": 10500648739299668939
  4214. },
  4215. "Component_[1054428503372686093]": {
  4216. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4217. "Id": 1054428503372686093,
  4218. "Parent Entity": "Entity_[995903155367426]",
  4219. "Transform Data": {
  4220. "Translate": [
  4221. -2.0163726806640625,
  4222. -0.006516695022583008,
  4223. 0.0
  4224. ],
  4225. "Rotate": [
  4226. 0.0,
  4227. 0.0,
  4228. -89.99994659423828
  4229. ]
  4230. }
  4231. },
  4232. "Component_[12045779898573478531]": {
  4233. "$type": "EditorInspectorComponent",
  4234. "Id": 12045779898573478531
  4235. },
  4236. "Component_[12228613816215076155]": {
  4237. "$type": "EditorEntitySortComponent",
  4238. "Id": 12228613816215076155
  4239. },
  4240. "Component_[12502744294820326116]": {
  4241. "$type": "EditorOnlyEntityComponent",
  4242. "Id": 12502744294820326116
  4243. },
  4244. "Component_[12903035105505580650]": {
  4245. "$type": "EditorVisibilityComponent",
  4246. "Id": 12903035105505580650
  4247. },
  4248. "Component_[17622569680873604777]": {
  4249. "$type": "EditorPendingCompositionComponent",
  4250. "Id": 17622569680873604777
  4251. },
  4252. "Component_[184072808979487519]": {
  4253. "$type": "EditorLockComponent",
  4254. "Id": 184072808979487519
  4255. },
  4256. "Component_[6699738828310866771]": {
  4257. "$type": "AZ::Render::EditorDecalComponent",
  4258. "Id": 6699738828310866771,
  4259. "Controller": {
  4260. "Configuration": {
  4261. "Opacity": 0.3199999928474426,
  4262. "Material": {
  4263. "assetId": {
  4264. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  4265. },
  4266. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  4267. }
  4268. }
  4269. }
  4270. },
  4271. "Component_[8716140543667152403]": {
  4272. "$type": "EditorEntityIconComponent",
  4273. "Id": 8716140543667152403
  4274. }
  4275. }
  4276. },
  4277. "Entity_[996083543993858]": {
  4278. "Id": "Entity_[996083543993858]",
  4279. "Name": "mid1",
  4280. "Components": {
  4281. "Component_[10500648739299668939]": {
  4282. "$type": "EditorDisabledCompositionComponent",
  4283. "Id": 10500648739299668939
  4284. },
  4285. "Component_[1054428503372686093]": {
  4286. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4287. "Id": 1054428503372686093,
  4288. "Parent Entity": "Entity_[996010529549826]",
  4289. "Transform Data": {
  4290. "Translate": [
  4291. -10.01328182220459,
  4292. -0.006518363952636719,
  4293. 0.0
  4294. ],
  4295. "Rotate": [
  4296. 0.0,
  4297. 0.0,
  4298. -89.99994659423828
  4299. ]
  4300. }
  4301. },
  4302. "Component_[12045779898573478531]": {
  4303. "$type": "EditorInspectorComponent",
  4304. "Id": 12045779898573478531
  4305. },
  4306. "Component_[12228613816215076155]": {
  4307. "$type": "EditorEntitySortComponent",
  4308. "Id": 12228613816215076155
  4309. },
  4310. "Component_[12502744294820326116]": {
  4311. "$type": "EditorOnlyEntityComponent",
  4312. "Id": 12502744294820326116
  4313. },
  4314. "Component_[12903035105505580650]": {
  4315. "$type": "EditorVisibilityComponent",
  4316. "Id": 12903035105505580650
  4317. },
  4318. "Component_[17622569680873604777]": {
  4319. "$type": "EditorPendingCompositionComponent",
  4320. "Id": 17622569680873604777
  4321. },
  4322. "Component_[18259465125987145806]": {
  4323. "$type": "AZ::Render::EditorDecalComponent",
  4324. "Id": 18259465125987145806,
  4325. "Controller": {
  4326. "Configuration": {
  4327. "Opacity": 0.3199999928474426,
  4328. "Material": {
  4329. "assetId": {
  4330. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  4331. },
  4332. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  4333. }
  4334. }
  4335. }
  4336. },
  4337. "Component_[184072808979487519]": {
  4338. "$type": "EditorLockComponent",
  4339. "Id": 184072808979487519
  4340. },
  4341. "Component_[8716140543667152403]": {
  4342. "$type": "EditorEntityIconComponent",
  4343. "Id": 8716140543667152403
  4344. }
  4345. }
  4346. },
  4347. "Entity_[996087838961154]": {
  4348. "Id": "Entity_[996087838961154]",
  4349. "Name": "row5",
  4350. "Components": {
  4351. "Component_[10311219420704440311]": {
  4352. "$type": "EditorOnlyEntityComponent",
  4353. "Id": 10311219420704440311
  4354. },
  4355. "Component_[10613465856665953947]": {
  4356. "$type": "EditorDisabledCompositionComponent",
  4357. "Id": 10613465856665953947
  4358. },
  4359. "Component_[1099445320312667240]": {
  4360. "$type": "EditorLockComponent",
  4361. "Id": 1099445320312667240
  4362. },
  4363. "Component_[11553853199545380956]": {
  4364. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4365. "Id": 11553853199545380956,
  4366. "Parent Entity": "Entity_[995855910727170]",
  4367. "Transform Data": {
  4368. "Translate": [
  4369. -21.213319778442383,
  4370. 8.14289379119873,
  4371. 9.125040054321289
  4372. ]
  4373. }
  4374. },
  4375. "Component_[15291901364082073937]": {
  4376. "$type": "EditorEntityIconComponent",
  4377. "Id": 15291901364082073937
  4378. },
  4379. "Component_[17384941475010859956]": {
  4380. "$type": "EditorVisibilityComponent",
  4381. "Id": 17384941475010859956
  4382. },
  4383. "Component_[17889284555767441878]": {
  4384. "$type": "EditorInspectorComponent",
  4385. "Id": 17889284555767441878
  4386. },
  4387. "Component_[6748173508085193281]": {
  4388. "$type": "EditorEntitySortComponent",
  4389. "Id": 6748173508085193281,
  4390. "Child Entity Order": [
  4391. "Instance_[42121288032893]/ContainerEntity",
  4392. "Instance_[42112698098301]/ContainerEntity",
  4393. "Instance_[42116993065597]/ContainerEntity",
  4394. "Instance_[42172827640445]/ContainerEntity",
  4395. "Instance_[42164237705853]/ContainerEntity",
  4396. "Instance_[42168532673149]/ContainerEntity",
  4397. "Instance_[42224367247997]/ContainerEntity",
  4398. "Instance_[42215777313405]/ContainerEntity",
  4399. "Instance_[42220072280701]/ContainerEntity",
  4400. "Instance_[42275906855549]/ContainerEntity",
  4401. "Instance_[42267316920957]/ContainerEntity",
  4402. "Instance_[42271611888253]/ContainerEntity"
  4403. ]
  4404. },
  4405. "Component_[7432015336954531022]": {
  4406. "$type": "EditorPendingCompositionComponent",
  4407. "Id": 7432015336954531022
  4408. }
  4409. }
  4410. },
  4411. "Entity_[996092133928450]": {
  4412. "Id": "Entity_[996092133928450]",
  4413. "Name": "Packs",
  4414. "Components": {
  4415. "Component_[10140259015133055073]": {
  4416. "$type": "EditorEntitySortComponent",
  4417. "Id": 10140259015133055073,
  4418. "Child Entity Order": [
  4419. "Instance_[437112386737667]/ContainerEntity",
  4420. "Instance_[435067982304771]/ContainerEntity",
  4421. "Instance_[435072277272067]/ContainerEntity",
  4422. "Instance_[437116681704963]/ContainerEntity",
  4423. "Instance_[411538495008258]/ContainerEntity",
  4424. "Instance_[411572854746626]/ContainerEntity"
  4425. ]
  4426. },
  4427. "Component_[14500671534845046519]": {
  4428. "$type": "EditorLockComponent",
  4429. "Id": 14500671534845046519
  4430. },
  4431. "Component_[15377120676093863308]": {
  4432. "$type": "EditorEntityIconComponent",
  4433. "Id": 15377120676093863308
  4434. },
  4435. "Component_[16142060204619522775]": {
  4436. "$type": "EditorInspectorComponent",
  4437. "Id": 16142060204619522775
  4438. },
  4439. "Component_[2112337402341948246]": {
  4440. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4441. "Id": 2112337402341948246,
  4442. "Parent Entity": "Entity_[995954694974978]"
  4443. },
  4444. "Component_[2789692607809628996]": {
  4445. "$type": "EditorPendingCompositionComponent",
  4446. "Id": 2789692607809628996
  4447. },
  4448. "Component_[375429537054148922]": {
  4449. "$type": "EditorDisabledCompositionComponent",
  4450. "Id": 375429537054148922
  4451. },
  4452. "Component_[4606527421908844546]": {
  4453. "$type": "EditorVisibilityComponent",
  4454. "Id": 4606527421908844546
  4455. },
  4456. "Component_[715074056075941653]": {
  4457. "$type": "EditorOnlyEntityComponent",
  4458. "Id": 715074056075941653
  4459. }
  4460. }
  4461. },
  4462. "Entity_[996096428895746]": {
  4463. "Id": "Entity_[996096428895746]",
  4464. "Name": "Warehouse",
  4465. "Components": {
  4466. "EditorDisabledCompositionComponent": {
  4467. "$type": "EditorDisabledCompositionComponent",
  4468. "Id": 9858660446987981502
  4469. },
  4470. "EditorEntityIconComponent": {
  4471. "$type": "EditorEntityIconComponent",
  4472. "Id": 658321407129382787
  4473. },
  4474. "EditorEntitySortComponent": {
  4475. "$type": "EditorEntitySortComponent",
  4476. "Id": 5807883180838942121,
  4477. "Child Entity Order": [
  4478. "Entity_[996057774190082]",
  4479. "Entity_[995937515105794]",
  4480. "Entity_[995954694974978]",
  4481. "Entity_[995950400007682]",
  4482. "Entity_[996036299353602]",
  4483. "Entity_[996070659091970]",
  4484. "Instance_[368108574611269]/ContainerEntity",
  4485. "Instance_[368117164545861]/ContainerEntity",
  4486. "Entity_[995924630203906]"
  4487. ]
  4488. },
  4489. "EditorInspectorComponent": {
  4490. "$type": "EditorInspectorComponent",
  4491. "Id": 3433701068436824810,
  4492. "ComponentOrderEntryArray": [
  4493. {
  4494. "ComponentId": 6157035458865005519
  4495. }
  4496. ]
  4497. },
  4498. "EditorLockComponent": {
  4499. "$type": "EditorLockComponent",
  4500. "Id": 12262165710188078757
  4501. },
  4502. "EditorOnlyEntityComponent": {
  4503. "$type": "EditorOnlyEntityComponent",
  4504. "Id": 3985329881102567174
  4505. },
  4506. "EditorPendingCompositionComponent": {
  4507. "$type": "EditorPendingCompositionComponent",
  4508. "Id": 14090893631259400851
  4509. },
  4510. "EditorVisibilityComponent": {
  4511. "$type": "EditorVisibilityComponent",
  4512. "Id": 14727052943638816579
  4513. },
  4514. "TransformComponent": {
  4515. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4516. "Id": 6157035458865005519,
  4517. "Parent Entity": "ContainerEntity"
  4518. }
  4519. }
  4520. },
  4521. "Entity_[996100723863042]": {
  4522. "Id": "Entity_[996100723863042]",
  4523. "Name": "mid2",
  4524. "Components": {
  4525. "Component_[10500648739299668939]": {
  4526. "$type": "EditorDisabledCompositionComponent",
  4527. "Id": 10500648739299668939
  4528. },
  4529. "Component_[1054428503372686093]": {
  4530. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4531. "Id": 1054428503372686093,
  4532. "Parent Entity": "Entity_[995928925171202]",
  4533. "Transform Data": {
  4534. "Translate": [
  4535. -24.007875442504883,
  4536. -0.006518006324768066,
  4537. 0.0
  4538. ],
  4539. "Rotate": [
  4540. 0.0,
  4541. 0.0,
  4542. -89.99994659423828
  4543. ]
  4544. }
  4545. },
  4546. "Component_[12045779898573478531]": {
  4547. "$type": "EditorInspectorComponent",
  4548. "Id": 12045779898573478531
  4549. },
  4550. "Component_[12228613816215076155]": {
  4551. "$type": "EditorEntitySortComponent",
  4552. "Id": 12228613816215076155
  4553. },
  4554. "Component_[12502744294820326116]": {
  4555. "$type": "EditorOnlyEntityComponent",
  4556. "Id": 12502744294820326116
  4557. },
  4558. "Component_[12903035105505580650]": {
  4559. "$type": "EditorVisibilityComponent",
  4560. "Id": 12903035105505580650
  4561. },
  4562. "Component_[15136090500032023536]": {
  4563. "$type": "EditorNonUniformScaleComponent",
  4564. "Id": 15136090500032023536
  4565. },
  4566. "Component_[15581572017194186500]": {
  4567. "$type": "AZ::Render::EditorDecalComponent",
  4568. "Id": 15581572017194186500,
  4569. "Controller": {
  4570. "Configuration": {
  4571. "Opacity": 0.3199999928474426,
  4572. "Material": {
  4573. "assetId": {
  4574. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  4575. },
  4576. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  4577. }
  4578. }
  4579. }
  4580. },
  4581. "Component_[17622569680873604777]": {
  4582. "$type": "EditorPendingCompositionComponent",
  4583. "Id": 17622569680873604777
  4584. },
  4585. "Component_[184072808979487519]": {
  4586. "$type": "EditorLockComponent",
  4587. "Id": 184072808979487519
  4588. },
  4589. "Component_[8716140543667152403]": {
  4590. "$type": "EditorEntityIconComponent",
  4591. "Id": 8716140543667152403
  4592. }
  4593. }
  4594. },
  4595. "Entity_[996105018830338]": {
  4596. "Id": "Entity_[996105018830338]",
  4597. "Name": "Ceiling",
  4598. "Components": {
  4599. "Component_[10235758443571662435]": {
  4600. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4601. "Id": 10235758443571662435,
  4602. "Parent Entity": "Entity_[996040594320898]"
  4603. },
  4604. "Component_[11710239440016138198]": {
  4605. "$type": "EditorOnlyEntityComponent",
  4606. "Id": 11710239440016138198
  4607. },
  4608. "Component_[12380856149042228567]": {
  4609. "$type": "EditorInspectorComponent",
  4610. "Id": 12380856149042228567
  4611. },
  4612. "Component_[12907286452983293379]": {
  4613. "$type": "EditorEntitySortComponent",
  4614. "Id": 12907286452983293379
  4615. },
  4616. "Component_[15076177949597653857]": {
  4617. "$type": "EditorPendingCompositionComponent",
  4618. "Id": 15076177949597653857
  4619. },
  4620. "Component_[3499273447026786505]": {
  4621. "$type": "EditorVisibilityComponent",
  4622. "Id": 3499273447026786505
  4623. },
  4624. "Component_[3823168380999278223]": {
  4625. "$type": "AZ::Render::EditorMeshComponent",
  4626. "Id": 3823168380999278223,
  4627. "Controller": {
  4628. "Configuration": {
  4629. "ModelAsset": {
  4630. "assetId": {
  4631. "guid": "{C8DB7BC9-31FC-5548-9E7A-CE1A886BE5E4}",
  4632. "subId": 277880160
  4633. },
  4634. "assetHint": "assets/warehouse/models/warehouse_ceiling.azmodel"
  4635. }
  4636. }
  4637. }
  4638. },
  4639. "Component_[5394089585515082464]": {
  4640. "$type": "EditorEntityIconComponent",
  4641. "Id": 5394089585515082464
  4642. },
  4643. "Component_[6818003535569614684]": {
  4644. "$type": "EditorDisabledCompositionComponent",
  4645. "Id": 6818003535569614684
  4646. },
  4647. "Component_[6833420480095665924]": {
  4648. "$type": "EditorLockComponent",
  4649. "Id": 6833420480095665924
  4650. },
  4651. "Component_[8213000083583143141]": {
  4652. "$type": "EditorMaterialComponent",
  4653. "Id": 8213000083583143141,
  4654. "Controller": {
  4655. "Configuration": {
  4656. "materials": [
  4657. {
  4658. "Key": {
  4659. "materialSlotStableId": 103484566
  4660. },
  4661. "Value": {
  4662. "MaterialAsset": {
  4663. "assetId": {
  4664. "guid": "{4D881031-88E9-5300-B525-6F6E35182D97}"
  4665. },
  4666. "assetHint": "assets/warehouse/materials/mwarehousemodules_roof.azmaterial"
  4667. }
  4668. }
  4669. }
  4670. ]
  4671. }
  4672. }
  4673. }
  4674. }
  4675. },
  4676. "Entity_[996109313797634]": {
  4677. "Id": "Entity_[996109313797634]",
  4678. "Name": "Packs",
  4679. "Components": {
  4680. "Component_[10140259015133055073]": {
  4681. "$type": "EditorEntitySortComponent",
  4682. "Id": 10140259015133055073,
  4683. "Child Entity Order": [
  4684. "Instance_[437112386737667]/ContainerEntity",
  4685. "Instance_[435067982304771]/ContainerEntity",
  4686. "Instance_[435072277272067]/ContainerEntity",
  4687. "Instance_[437116681704963]/ContainerEntity"
  4688. ]
  4689. },
  4690. "Component_[14500671534845046519]": {
  4691. "$type": "EditorLockComponent",
  4692. "Id": 14500671534845046519
  4693. },
  4694. "Component_[15377120676093863308]": {
  4695. "$type": "EditorEntityIconComponent",
  4696. "Id": 15377120676093863308
  4697. },
  4698. "Component_[16142060204619522775]": {
  4699. "$type": "EditorInspectorComponent",
  4700. "Id": 16142060204619522775
  4701. },
  4702. "Component_[2112337402341948246]": {
  4703. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4704. "Id": 2112337402341948246,
  4705. "Parent Entity": "Entity_[995954694974978]",
  4706. "Transform Data": {
  4707. "Translate": [
  4708. 16.710643768310547,
  4709. 0.0,
  4710. 0.0
  4711. ]
  4712. }
  4713. },
  4714. "Component_[2789692607809628996]": {
  4715. "$type": "EditorPendingCompositionComponent",
  4716. "Id": 2789692607809628996
  4717. },
  4718. "Component_[375429537054148922]": {
  4719. "$type": "EditorDisabledCompositionComponent",
  4720. "Id": 375429537054148922
  4721. },
  4722. "Component_[4606527421908844546]": {
  4723. "$type": "EditorVisibilityComponent",
  4724. "Id": 4606527421908844546
  4725. },
  4726. "Component_[715074056075941653]": {
  4727. "$type": "EditorOnlyEntityComponent",
  4728. "Id": 715074056075941653
  4729. }
  4730. }
  4731. },
  4732. "Entity_[996113608764930]": {
  4733. "Id": "Entity_[996113608764930]",
  4734. "Name": "light_over_storage",
  4735. "Components": {
  4736. "Component_[10246961423769789808]": {
  4737. "$type": "EditorPendingCompositionComponent",
  4738. "Id": 10246961423769789808
  4739. },
  4740. "Component_[15015433339401845873]": {
  4741. "$type": "EditorVisibilityComponent",
  4742. "Id": 15015433339401845873
  4743. },
  4744. "Component_[15718979264175954159]": {
  4745. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4746. "Id": 15718979264175954159,
  4747. "Parent Entity": "Entity_[996036299353602]"
  4748. },
  4749. "Component_[15849090344330362977]": {
  4750. "$type": "EditorInspectorComponent",
  4751. "Id": 15849090344330362977
  4752. },
  4753. "Component_[16446025837964182056]": {
  4754. "$type": "EditorEntityIconComponent",
  4755. "Id": 16446025837964182056
  4756. },
  4757. "Component_[17147582893942866663]": {
  4758. "$type": "EditorEntitySortComponent",
  4759. "Id": 17147582893942866663,
  4760. "Child Entity Order": [
  4761. "Instance_[23433692391818]/ContainerEntity",
  4762. "Instance_[23545361541514]/ContainerEntity",
  4763. "Instance_[23403627620746]/ContainerEntity",
  4764. "Instance_[23223238994314]/ContainerEntity",
  4765. "Instance_[23244713830794]/ContainerEntity",
  4766. "Instance_[23236123896202]/ContainerEntity",
  4767. "Instance_[23343498078602]/ContainerEntity",
  4768. "Instance_[23128749713802]/ContainerEntity",
  4769. "Instance_[23317728274826]/ContainerEntity",
  4770. "Instance_[23437987359114]/ContainerEntity",
  4771. "Instance_[23279073569162]/ContainerEntity",
  4772. "Instance_[23506706835850]/ContainerEntity",
  4773. "Instance_[23416512522634]/ContainerEntity",
  4774. "Instance_[23339203111306]/ContainerEntity",
  4775. "Instance_[23442282326410]/ContainerEntity",
  4776. "Instance_[23283368536458]/ContainerEntity",
  4777. "Instance_[23369267882378]/ContainerEntity",
  4778. "Instance_[23313433307530]/ContainerEntity"
  4779. ]
  4780. },
  4781. "Component_[233607885520692205]": {
  4782. "$type": "EditorDisabledCompositionComponent",
  4783. "Id": 233607885520692205
  4784. },
  4785. "Component_[2747934571980347704]": {
  4786. "$type": "EditorOnlyEntityComponent",
  4787. "Id": 2747934571980347704
  4788. },
  4789. "Component_[4858008268077248164]": {
  4790. "$type": "EditorLockComponent",
  4791. "Id": 4858008268077248164
  4792. }
  4793. }
  4794. },
  4795. "Entity_[996117903732226]": {
  4796. "Id": "Entity_[996117903732226]",
  4797. "Name": "mid1",
  4798. "Components": {
  4799. "Component_[10500648739299668939]": {
  4800. "$type": "EditorDisabledCompositionComponent",
  4801. "Id": 10500648739299668939
  4802. },
  4803. "Component_[1054428503372686093]": {
  4804. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4805. "Id": 1054428503372686093,
  4806. "Parent Entity": "Entity_[995928925171202]",
  4807. "Transform Data": {
  4808. "Translate": [
  4809. -14.012656211853027,
  4810. -0.006519913673400879,
  4811. 0.0
  4812. ],
  4813. "Rotate": [
  4814. 0.0,
  4815. 0.0,
  4816. -89.99994659423828
  4817. ]
  4818. }
  4819. },
  4820. "Component_[12045779898573478531]": {
  4821. "$type": "EditorInspectorComponent",
  4822. "Id": 12045779898573478531
  4823. },
  4824. "Component_[12228613816215076155]": {
  4825. "$type": "EditorEntitySortComponent",
  4826. "Id": 12228613816215076155
  4827. },
  4828. "Component_[12502744294820326116]": {
  4829. "$type": "EditorOnlyEntityComponent",
  4830. "Id": 12502744294820326116
  4831. },
  4832. "Component_[12903035105505580650]": {
  4833. "$type": "EditorVisibilityComponent",
  4834. "Id": 12903035105505580650
  4835. },
  4836. "Component_[16197604831420367756]": {
  4837. "$type": "AZ::Render::EditorDecalComponent",
  4838. "Id": 16197604831420367756,
  4839. "Controller": {
  4840. "Configuration": {
  4841. "Opacity": 0.3199999928474426,
  4842. "Material": {
  4843. "assetId": {
  4844. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  4845. },
  4846. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  4847. }
  4848. }
  4849. }
  4850. },
  4851. "Component_[17622569680873604777]": {
  4852. "$type": "EditorPendingCompositionComponent",
  4853. "Id": 17622569680873604777
  4854. },
  4855. "Component_[184072808979487519]": {
  4856. "$type": "EditorLockComponent",
  4857. "Id": 184072808979487519
  4858. },
  4859. "Component_[8716140543667152403]": {
  4860. "$type": "EditorEntityIconComponent",
  4861. "Id": 8716140543667152403
  4862. }
  4863. }
  4864. },
  4865. "Entity_[996122198699522]": {
  4866. "Id": "Entity_[996122198699522]",
  4867. "Name": "row2",
  4868. "Components": {
  4869. "Component_[10311219420704440311]": {
  4870. "$type": "EditorOnlyEntityComponent",
  4871. "Id": 10311219420704440311
  4872. },
  4873. "Component_[10613465856665953947]": {
  4874. "$type": "EditorDisabledCompositionComponent",
  4875. "Id": 10613465856665953947
  4876. },
  4877. "Component_[1099445320312667240]": {
  4878. "$type": "EditorLockComponent",
  4879. "Id": 1099445320312667240
  4880. },
  4881. "Component_[11553853199545380956]": {
  4882. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4883. "Id": 11553853199545380956,
  4884. "Parent Entity": "Entity_[995855910727170]",
  4885. "Transform Data": {
  4886. "Translate": [
  4887. 8.827146530151367,
  4888. 8.14289379119873,
  4889. 9.125040054321289
  4890. ]
  4891. }
  4892. },
  4893. "Component_[15291901364082073937]": {
  4894. "$type": "EditorEntityIconComponent",
  4895. "Id": 15291901364082073937
  4896. },
  4897. "Component_[17384941475010859956]": {
  4898. "$type": "EditorVisibilityComponent",
  4899. "Id": 17384941475010859956
  4900. },
  4901. "Component_[17889284555767441878]": {
  4902. "$type": "EditorInspectorComponent",
  4903. "Id": 17889284555767441878
  4904. },
  4905. "Component_[6748173508085193281]": {
  4906. "$type": "EditorEntitySortComponent",
  4907. "Id": 6748173508085193281,
  4908. "Child Entity Order": [
  4909. "Instance_[42121288032893]/ContainerEntity",
  4910. "Instance_[42112698098301]/ContainerEntity",
  4911. "Instance_[42116993065597]/ContainerEntity"
  4912. ]
  4913. },
  4914. "Component_[7432015336954531022]": {
  4915. "$type": "EditorPendingCompositionComponent",
  4916. "Id": 7432015336954531022
  4917. }
  4918. }
  4919. },
  4920. "Entity_[996126493666818]": {
  4921. "Id": "Entity_[996126493666818]",
  4922. "Name": "5",
  4923. "Components": {
  4924. "Component_[10321909275187222931]": {
  4925. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  4926. "Id": 10321909275187222931,
  4927. "Parent Entity": "Entity_[995950400007682]",
  4928. "Transform Data": {
  4929. "Translate": [
  4930. 32.40053176879883,
  4931. 4.762507438659668,
  4932. 0.0
  4933. ]
  4934. }
  4935. },
  4936. "Component_[10681537930500446053]": {
  4937. "$type": "EditorEntitySortComponent",
  4938. "Id": 10681537930500446053,
  4939. "Child Entity Order": [
  4940. "Instance_[1261728088686882]/ContainerEntity",
  4941. "Instance_[1261809693065506]/ContainerEntity",
  4942. "Instance_[1261822577967394]/ContainerEntity",
  4943. "Instance_[1261861232673058]/ContainerEntity",
  4944. "Instance_[1859282593612066]/ContainerEntity",
  4945. "Instance_[1859274003677474]/ContainerEntity",
  4946. "Instance_[1560331394973986]/ContainerEntity",
  4947. "Instance_[1560327100006690]/ContainerEntity",
  4948. "Instance_[1560339984908578]/ContainerEntity",
  4949. "Instance_[1560335689941282]/ContainerEntity",
  4950. "Instance_[1859278298644770]/ContainerEntity",
  4951. "Instance_[1261856937705762]/ContainerEntity",
  4952. "Instance_[71728244217693]/ContainerEntity",
  4953. "Instance_[71702474413917]/ContainerEntity",
  4954. "Instance_[71758308988765]/ContainerEntity",
  4955. "Instance_[71706769381213]/ContainerEntity",
  4956. "Instance_[71754014021469]/ContainerEntity",
  4957. "Instance_[72011712059229]/ContainerEntity",
  4958. "Instance_[72024596961117]/ContainerEntity",
  4959. "Instance_[72007417091933]/ContainerEntity",
  4960. "Instance_[72016007026525]/ContainerEntity",
  4961. "Instance_[72020301993821]/ContainerEntity",
  4962. "Instance_[378062491637597]/ContainerEntity",
  4963. "Instance_[378114031245149]/ContainerEntity",
  4964. "Instance_[378083966474077]/ContainerEntity",
  4965. "Instance_[378131211114333]/ContainerEntity",
  4966. "Instance_[378036721833821]/ContainerEntity",
  4967. "Instance_[378105441310557]/ContainerEntity",
  4968. "Instance_[378049606735709]/ContainerEntity",
  4969. "Instance_[378058196670301]/ContainerEntity",
  4970. "Instance_[378096851375965]/ContainerEntity",
  4971. "Instance_[378066786604893]/ContainerEntity",
  4972. "Instance_[411529905073666]/ContainerEntity",
  4973. "Instance_[411521315139074]/ContainerEntity",
  4974. "Instance_[411559969844738]/ContainerEntity",
  4975. "Instance_[411555674877442]/ContainerEntity",
  4976. "Instance_[411534200040962]/ContainerEntity",
  4977. "Instance_[411525610106370]/ContainerEntity",
  4978. "Instance_[411568559779330]/ContainerEntity",
  4979. "Instance_[411551379910146]/ContainerEntity",
  4980. "Instance_[411547084942850]/ContainerEntity"
  4981. ]
  4982. },
  4983. "Component_[11217564894606926180]": {
  4984. "$type": "EditorPendingCompositionComponent",
  4985. "Id": 11217564894606926180
  4986. },
  4987. "Component_[12647362886010771168]": {
  4988. "$type": "EditorInspectorComponent",
  4989. "Id": 12647362886010771168
  4990. },
  4991. "Component_[13008426432773336905]": {
  4992. "$type": "EditorOnlyEntityComponent",
  4993. "Id": 13008426432773336905
  4994. },
  4995. "Component_[15225701871626598457]": {
  4996. "$type": "EditorVisibilityComponent",
  4997. "Id": 15225701871626598457
  4998. },
  4999. "Component_[238064552553574844]": {
  5000. "$type": "EditorLockComponent",
  5001. "Id": 238064552553574844
  5002. },
  5003. "Component_[4209670188283020330]": {
  5004. "$type": "EditorDisabledCompositionComponent",
  5005. "Id": 4209670188283020330
  5006. },
  5007. "Component_[6237799727571163432]": {
  5008. "$type": "EditorEntityIconComponent",
  5009. "Id": 6237799727571163432
  5010. }
  5011. }
  5012. },
  5013. "Entity_[996130788634114]": {
  5014. "Id": "Entity_[996130788634114]",
  5015. "Name": "end1",
  5016. "Components": {
  5017. "Component_[10500648739299668939]": {
  5018. "$type": "EditorDisabledCompositionComponent",
  5019. "Id": 10500648739299668939
  5020. },
  5021. "Component_[1054428503372686093]": {
  5022. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5023. "Id": 1054428503372686093,
  5024. "Parent Entity": "Entity_[995903155367426]",
  5025. "Transform Data": {
  5026. "Translate": [
  5027. -0.016234397888183594,
  5028. -0.0065152645111083984,
  5029. 0.0
  5030. ],
  5031. "Rotate": [
  5032. 0.0,
  5033. 0.0,
  5034. -89.99994659423828
  5035. ]
  5036. }
  5037. },
  5038. "Component_[12045779898573478531]": {
  5039. "$type": "EditorInspectorComponent",
  5040. "Id": 12045779898573478531
  5041. },
  5042. "Component_[12228613816215076155]": {
  5043. "$type": "EditorEntitySortComponent",
  5044. "Id": 12228613816215076155
  5045. },
  5046. "Component_[12502744294820326116]": {
  5047. "$type": "EditorOnlyEntityComponent",
  5048. "Id": 12502744294820326116
  5049. },
  5050. "Component_[12903035105505580650]": {
  5051. "$type": "EditorVisibilityComponent",
  5052. "Id": 12903035105505580650
  5053. },
  5054. "Component_[17622569680873604777]": {
  5055. "$type": "EditorPendingCompositionComponent",
  5056. "Id": 17622569680873604777
  5057. },
  5058. "Component_[184072808979487519]": {
  5059. "$type": "EditorLockComponent",
  5060. "Id": 184072808979487519
  5061. },
  5062. "Component_[6699738828310866771]": {
  5063. "$type": "AZ::Render::EditorDecalComponent",
  5064. "Id": 6699738828310866771,
  5065. "Controller": {
  5066. "Configuration": {
  5067. "Opacity": 0.3199999928474426,
  5068. "Material": {
  5069. "assetId": {
  5070. "guid": "{F4C96494-A086-59D2-A605-06E760588573}"
  5071. },
  5072. "assetHint": "assets/warehouse/floor_markings/markings_end1.azmaterial"
  5073. }
  5074. }
  5075. }
  5076. },
  5077. "Component_[8716140543667152403]": {
  5078. "$type": "EditorEntityIconComponent",
  5079. "Id": 8716140543667152403
  5080. }
  5081. }
  5082. },
  5083. "Entity_[996135083601410]": {
  5084. "Id": "Entity_[996135083601410]",
  5085. "Name": "side",
  5086. "Components": {
  5087. "Component_[10142074076271122719]": {
  5088. "$type": "EditorLockComponent",
  5089. "Id": 10142074076271122719
  5090. },
  5091. "Component_[10939993389388535508]": {
  5092. "$type": "EditorVisibilityComponent",
  5093. "Id": 10939993389388535508
  5094. },
  5095. "Component_[13902094521801159488]": {
  5096. "$type": "EditorDisabledCompositionComponent",
  5097. "Id": 13902094521801159488
  5098. },
  5099. "Component_[14251235589187529420]": {
  5100. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5101. "Id": 14251235589187529420,
  5102. "Parent Entity": "Entity_[995950400007682]"
  5103. },
  5104. "Component_[1593855532319190642]": {
  5105. "$type": "EditorInspectorComponent",
  5106. "Id": 1593855532319190642
  5107. },
  5108. "Component_[5217300904563993740]": {
  5109. "$type": "EditorOnlyEntityComponent",
  5110. "Id": 5217300904563993740
  5111. },
  5112. "Component_[7577794227596239257]": {
  5113. "$type": "EditorPendingCompositionComponent",
  5114. "Id": 7577794227596239257
  5115. },
  5116. "Component_[8680977690020044100]": {
  5117. "$type": "EditorEntitySortComponent",
  5118. "Id": 8680977690020044100,
  5119. "Child Entity Order": [
  5120. "Instance_[1924349502445405]/ContainerEntity",
  5121. "Instance_[1614768259749725]/ContainerEntity",
  5122. "Instance_[1614772554717021]/ContainerEntity",
  5123. "Instance_[1924353797412701]/ContainerEntity",
  5124. "Instance_[411564264812034]/ContainerEntity",
  5125. "Instance_[411542789975554]/ContainerEntity"
  5126. ]
  5127. },
  5128. "Component_[9947386346568766721]": {
  5129. "$type": "EditorEntityIconComponent",
  5130. "Id": 9947386346568766721
  5131. }
  5132. }
  5133. },
  5134. "Entity_[996139378568706]": {
  5135. "Id": "Entity_[996139378568706]",
  5136. "Name": "mid1",
  5137. "Components": {
  5138. "Component_[10500648739299668939]": {
  5139. "$type": "EditorDisabledCompositionComponent",
  5140. "Id": 10500648739299668939
  5141. },
  5142. "Component_[1054428503372686093]": {
  5143. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5144. "Id": 1054428503372686093,
  5145. "Parent Entity": "Entity_[995928925171202]",
  5146. "Transform Data": {
  5147. "Translate": [
  5148. -2.0163729190826416,
  5149. -0.006516456604003906,
  5150. 0.0
  5151. ],
  5152. "Rotate": [
  5153. 0.0,
  5154. 0.0,
  5155. -89.99994659423828
  5156. ]
  5157. }
  5158. },
  5159. "Component_[12045779898573478531]": {
  5160. "$type": "EditorInspectorComponent",
  5161. "Id": 12045779898573478531
  5162. },
  5163. "Component_[12228613816215076155]": {
  5164. "$type": "EditorEntitySortComponent",
  5165. "Id": 12228613816215076155
  5166. },
  5167. "Component_[12502744294820326116]": {
  5168. "$type": "EditorOnlyEntityComponent",
  5169. "Id": 12502744294820326116
  5170. },
  5171. "Component_[12903035105505580650]": {
  5172. "$type": "EditorVisibilityComponent",
  5173. "Id": 12903035105505580650
  5174. },
  5175. "Component_[17622569680873604777]": {
  5176. "$type": "EditorPendingCompositionComponent",
  5177. "Id": 17622569680873604777
  5178. },
  5179. "Component_[184072808979487519]": {
  5180. "$type": "EditorLockComponent",
  5181. "Id": 184072808979487519
  5182. },
  5183. "Component_[6699738828310866771]": {
  5184. "$type": "AZ::Render::EditorDecalComponent",
  5185. "Id": 6699738828310866771,
  5186. "Controller": {
  5187. "Configuration": {
  5188. "Opacity": 0.3199999928474426,
  5189. "Material": {
  5190. "assetId": {
  5191. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  5192. },
  5193. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  5194. }
  5195. }
  5196. }
  5197. },
  5198. "Component_[8716140543667152403]": {
  5199. "$type": "EditorEntityIconComponent",
  5200. "Id": 8716140543667152403
  5201. }
  5202. }
  5203. },
  5204. "Entity_[996143673536002]": {
  5205. "Id": "Entity_[996143673536002]",
  5206. "Name": "gate",
  5207. "Components": {
  5208. "Component_[11358105557128824214]": {
  5209. "$type": "EditorLockComponent",
  5210. "Id": 11358105557128824214
  5211. },
  5212. "Component_[13946020643802045435]": {
  5213. "$type": "EditorInspectorComponent",
  5214. "Id": 13946020643802045435
  5215. },
  5216. "Component_[16808686584333473094]": {
  5217. "$type": "EditorDisabledCompositionComponent",
  5218. "Id": 16808686584333473094
  5219. },
  5220. "Component_[3531174978848893918]": {
  5221. "$type": "EditorVisibilityComponent",
  5222. "Id": 3531174978848893918
  5223. },
  5224. "Component_[3675136203864957774]": {
  5225. "$type": "EditorEntityIconComponent",
  5226. "Id": 3675136203864957774
  5227. },
  5228. "Component_[5147878209571874574]": {
  5229. "$type": "EditorPendingCompositionComponent",
  5230. "Id": 5147878209571874574
  5231. },
  5232. "Component_[6529333310674229373]": {
  5233. "$type": "EditorEntitySortComponent",
  5234. "Id": 6529333310674229373,
  5235. "Child Entity Order": [
  5236. "Entity_[996032004386306]",
  5237. "Entity_[995817256021506]"
  5238. ]
  5239. },
  5240. "Component_[8438145710848209955]": {
  5241. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5242. "Id": 8438145710848209955,
  5243. "Parent Entity": "Entity_[995937515105794]",
  5244. "Transform Data": {
  5245. "Translate": [
  5246. 15.755332946777344,
  5247. 3.377704620361328,
  5248. 0.0
  5249. ]
  5250. }
  5251. },
  5252. "Component_[9165328650543530788]": {
  5253. "$type": "EditorOnlyEntityComponent",
  5254. "Id": 9165328650543530788
  5255. }
  5256. }
  5257. },
  5258. "Entity_[996147968503298]": {
  5259. "Id": "Entity_[996147968503298]",
  5260. "Name": "mid1",
  5261. "Components": {
  5262. "Component_[10500648739299668939]": {
  5263. "$type": "EditorDisabledCompositionComponent",
  5264. "Id": 10500648739299668939
  5265. },
  5266. "Component_[1054428503372686093]": {
  5267. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5268. "Id": 1054428503372686093,
  5269. "Parent Entity": "Entity_[995928925171202]",
  5270. "Transform Data": {
  5271. "Translate": [
  5272. -22.009029388427734,
  5273. -0.006519913673400879,
  5274. 0.0
  5275. ],
  5276. "Rotate": [
  5277. 0.0,
  5278. 0.0,
  5279. -89.99994659423828
  5280. ]
  5281. }
  5282. },
  5283. "Component_[12045779898573478531]": {
  5284. "$type": "EditorInspectorComponent",
  5285. "Id": 12045779898573478531
  5286. },
  5287. "Component_[12228613816215076155]": {
  5288. "$type": "EditorEntitySortComponent",
  5289. "Id": 12228613816215076155
  5290. },
  5291. "Component_[12502744294820326116]": {
  5292. "$type": "EditorOnlyEntityComponent",
  5293. "Id": 12502744294820326116
  5294. },
  5295. "Component_[12903035105505580650]": {
  5296. "$type": "EditorVisibilityComponent",
  5297. "Id": 12903035105505580650
  5298. },
  5299. "Component_[17622569680873604777]": {
  5300. "$type": "EditorPendingCompositionComponent",
  5301. "Id": 17622569680873604777
  5302. },
  5303. "Component_[184072808979487519]": {
  5304. "$type": "EditorLockComponent",
  5305. "Id": 184072808979487519
  5306. },
  5307. "Component_[3027674818488953819]": {
  5308. "$type": "AZ::Render::EditorDecalComponent",
  5309. "Id": 3027674818488953819,
  5310. "Controller": {
  5311. "Configuration": {
  5312. "Opacity": 0.3199999928474426,
  5313. "Material": {
  5314. "assetId": {
  5315. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  5316. },
  5317. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  5318. }
  5319. }
  5320. }
  5321. },
  5322. "Component_[8716140543667152403]": {
  5323. "$type": "EditorEntityIconComponent",
  5324. "Id": 8716140543667152403
  5325. }
  5326. }
  5327. },
  5328. "Entity_[996152263470594]": {
  5329. "Id": "Entity_[996152263470594]",
  5330. "Name": "mid2",
  5331. "Components": {
  5332. "Component_[10500648739299668939]": {
  5333. "$type": "EditorDisabledCompositionComponent",
  5334. "Id": 10500648739299668939
  5335. },
  5336. "Component_[1054428503372686093]": {
  5337. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5338. "Id": 1054428503372686093,
  5339. "Parent Entity": "Entity_[995928925171202]",
  5340. "Transform Data": {
  5341. "Translate": [
  5342. -16.011499404907227,
  5343. -0.006518006324768066,
  5344. 0.0
  5345. ],
  5346. "Rotate": [
  5347. 0.0,
  5348. 0.0,
  5349. -89.99994659423828
  5350. ]
  5351. }
  5352. },
  5353. "Component_[12045779898573478531]": {
  5354. "$type": "EditorInspectorComponent",
  5355. "Id": 12045779898573478531
  5356. },
  5357. "Component_[12228613816215076155]": {
  5358. "$type": "EditorEntitySortComponent",
  5359. "Id": 12228613816215076155
  5360. },
  5361. "Component_[12502744294820326116]": {
  5362. "$type": "EditorOnlyEntityComponent",
  5363. "Id": 12502744294820326116
  5364. },
  5365. "Component_[12903035105505580650]": {
  5366. "$type": "EditorVisibilityComponent",
  5367. "Id": 12903035105505580650
  5368. },
  5369. "Component_[15136090500032023536]": {
  5370. "$type": "EditorNonUniformScaleComponent",
  5371. "Id": 15136090500032023536
  5372. },
  5373. "Component_[17622569680873604777]": {
  5374. "$type": "EditorPendingCompositionComponent",
  5375. "Id": 17622569680873604777
  5376. },
  5377. "Component_[184072808979487519]": {
  5378. "$type": "EditorLockComponent",
  5379. "Id": 184072808979487519
  5380. },
  5381. "Component_[6699738828310866771]": {
  5382. "$type": "AZ::Render::EditorDecalComponent",
  5383. "Id": 6699738828310866771,
  5384. "Controller": {
  5385. "Configuration": {
  5386. "Opacity": 0.3199999928474426,
  5387. "Material": {
  5388. "assetId": {
  5389. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  5390. },
  5391. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  5392. }
  5393. }
  5394. }
  5395. },
  5396. "Component_[8716140543667152403]": {
  5397. "$type": "EditorEntityIconComponent",
  5398. "Id": 8716140543667152403
  5399. }
  5400. }
  5401. },
  5402. "Entity_[996156558437890]": {
  5403. "Id": "Entity_[996156558437890]",
  5404. "Name": "row_short",
  5405. "Components": {
  5406. "Component_[11358105557128824214]": {
  5407. "$type": "EditorLockComponent",
  5408. "Id": 11358105557128824214
  5409. },
  5410. "Component_[13946020643802045435]": {
  5411. "$type": "EditorInspectorComponent",
  5412. "Id": 13946020643802045435
  5413. },
  5414. "Component_[16808686584333473094]": {
  5415. "$type": "EditorDisabledCompositionComponent",
  5416. "Id": 16808686584333473094
  5417. },
  5418. "Component_[3531174978848893918]": {
  5419. "$type": "EditorVisibilityComponent",
  5420. "Id": 3531174978848893918
  5421. },
  5422. "Component_[3675136203864957774]": {
  5423. "$type": "EditorEntityIconComponent",
  5424. "Id": 3675136203864957774
  5425. },
  5426. "Component_[5147878209571874574]": {
  5427. "$type": "EditorPendingCompositionComponent",
  5428. "Id": 5147878209571874574
  5429. },
  5430. "Component_[6529333310674229373]": {
  5431. "$type": "EditorEntitySortComponent",
  5432. "Id": 6529333310674229373,
  5433. "Child Entity Order": [
  5434. "Entity_[996044889288194]",
  5435. "Entity_[995847320792578]",
  5436. "Entity_[995890270465538]",
  5437. "Entity_[995911745302018]",
  5438. "Entity_[996001939615234]"
  5439. ]
  5440. },
  5441. "Component_[8438145710848209955]": {
  5442. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5443. "Id": 8438145710848209955,
  5444. "Parent Entity": "Entity_[995937515105794]",
  5445. "Transform Data": {
  5446. "Translate": [
  5447. -15.785727500915527,
  5448. 0.0,
  5449. 0.0
  5450. ]
  5451. }
  5452. },
  5453. "Component_[9165328650543530788]": {
  5454. "$type": "EditorOnlyEntityComponent",
  5455. "Id": 9165328650543530788
  5456. }
  5457. }
  5458. },
  5459. "Entity_[996160853405186]": {
  5460. "Id": "Entity_[996160853405186]",
  5461. "Name": "mid2",
  5462. "Components": {
  5463. "Component_[10500648739299668939]": {
  5464. "$type": "EditorDisabledCompositionComponent",
  5465. "Id": 10500648739299668939
  5466. },
  5467. "Component_[1054428503372686093]": {
  5468. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5469. "Id": 1054428503372686093,
  5470. "Parent Entity": "Entity_[995903155367426]",
  5471. "Transform Data": {
  5472. "Translate": [
  5473. -4.016423225402832,
  5474. -0.006518363952636719,
  5475. 0.0
  5476. ],
  5477. "Rotate": [
  5478. 0.0,
  5479. 0.0,
  5480. -89.99994659423828
  5481. ]
  5482. }
  5483. },
  5484. "Component_[12045779898573478531]": {
  5485. "$type": "EditorInspectorComponent",
  5486. "Id": 12045779898573478531
  5487. },
  5488. "Component_[12228613816215076155]": {
  5489. "$type": "EditorEntitySortComponent",
  5490. "Id": 12228613816215076155
  5491. },
  5492. "Component_[12502744294820326116]": {
  5493. "$type": "EditorOnlyEntityComponent",
  5494. "Id": 12502744294820326116
  5495. },
  5496. "Component_[12903035105505580650]": {
  5497. "$type": "EditorVisibilityComponent",
  5498. "Id": 12903035105505580650
  5499. },
  5500. "Component_[17622569680873604777]": {
  5501. "$type": "EditorPendingCompositionComponent",
  5502. "Id": 17622569680873604777
  5503. },
  5504. "Component_[184072808979487519]": {
  5505. "$type": "EditorLockComponent",
  5506. "Id": 184072808979487519
  5507. },
  5508. "Component_[6699738828310866771]": {
  5509. "$type": "AZ::Render::EditorDecalComponent",
  5510. "Id": 6699738828310866771,
  5511. "Controller": {
  5512. "Configuration": {
  5513. "Opacity": 0.3199999928474426,
  5514. "Material": {
  5515. "assetId": {
  5516. "guid": "{BF7DF511-C611-51C6-98E3-25D0A4DED8F2}"
  5517. },
  5518. "assetHint": "assets/warehouse/floor_markings/markings_mid2.azmaterial"
  5519. }
  5520. }
  5521. }
  5522. },
  5523. "Component_[8716140543667152403]": {
  5524. "$type": "EditorEntityIconComponent",
  5525. "Id": 8716140543667152403
  5526. }
  5527. }
  5528. },
  5529. "Entity_[996165148372482]": {
  5530. "Id": "Entity_[996165148372482]",
  5531. "Name": "mid1",
  5532. "Components": {
  5533. "Component_[10500648739299668939]": {
  5534. "$type": "EditorDisabledCompositionComponent",
  5535. "Id": 10500648739299668939
  5536. },
  5537. "Component_[1054428503372686093]": {
  5538. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5539. "Id": 1054428503372686093,
  5540. "Parent Entity": "Entity_[995928925171202]",
  5541. "Transform Data": {
  5542. "Translate": [
  5543. -18.009654998779297,
  5544. -0.006516456604003906,
  5545. 0.0
  5546. ],
  5547. "Rotate": [
  5548. 0.0,
  5549. 0.0,
  5550. -89.99994659423828
  5551. ]
  5552. }
  5553. },
  5554. "Component_[12045779898573478531]": {
  5555. "$type": "EditorInspectorComponent",
  5556. "Id": 12045779898573478531
  5557. },
  5558. "Component_[12228613816215076155]": {
  5559. "$type": "EditorEntitySortComponent",
  5560. "Id": 12228613816215076155
  5561. },
  5562. "Component_[12502744294820326116]": {
  5563. "$type": "EditorOnlyEntityComponent",
  5564. "Id": 12502744294820326116
  5565. },
  5566. "Component_[12903035105505580650]": {
  5567. "$type": "EditorVisibilityComponent",
  5568. "Id": 12903035105505580650
  5569. },
  5570. "Component_[17622569680873604777]": {
  5571. "$type": "EditorPendingCompositionComponent",
  5572. "Id": 17622569680873604777
  5573. },
  5574. "Component_[184072808979487519]": {
  5575. "$type": "EditorLockComponent",
  5576. "Id": 184072808979487519
  5577. },
  5578. "Component_[7836269715814736284]": {
  5579. "$type": "AZ::Render::EditorDecalComponent",
  5580. "Id": 7836269715814736284,
  5581. "Controller": {
  5582. "Configuration": {
  5583. "Opacity": 0.3199999928474426,
  5584. "Material": {
  5585. "assetId": {
  5586. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  5587. },
  5588. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  5589. }
  5590. }
  5591. }
  5592. },
  5593. "Component_[8716140543667152403]": {
  5594. "$type": "EditorEntityIconComponent",
  5595. "Id": 8716140543667152403
  5596. }
  5597. }
  5598. },
  5599. "Entity_[996169443339778]": {
  5600. "Id": "Entity_[996169443339778]",
  5601. "Name": "mid1",
  5602. "Components": {
  5603. "Component_[10500648739299668939]": {
  5604. "$type": "EditorDisabledCompositionComponent",
  5605. "Id": 10500648739299668939
  5606. },
  5607. "Component_[1054428503372686093]": {
  5608. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5609. "Id": 1054428503372686093,
  5610. "Parent Entity": "Entity_[996010529549826]",
  5611. "Transform Data": {
  5612. "Translate": [
  5613. -25.880001068115234,
  5614. -0.006519317626953125,
  5615. 0.0
  5616. ],
  5617. "Rotate": [
  5618. 0.0,
  5619. 0.0,
  5620. -89.99994659423828
  5621. ]
  5622. }
  5623. },
  5624. "Component_[12045779898573478531]": {
  5625. "$type": "EditorInspectorComponent",
  5626. "Id": 12045779898573478531
  5627. },
  5628. "Component_[12228613816215076155]": {
  5629. "$type": "EditorEntitySortComponent",
  5630. "Id": 12228613816215076155
  5631. },
  5632. "Component_[12502744294820326116]": {
  5633. "$type": "EditorOnlyEntityComponent",
  5634. "Id": 12502744294820326116
  5635. },
  5636. "Component_[12903035105505580650]": {
  5637. "$type": "EditorVisibilityComponent",
  5638. "Id": 12903035105505580650
  5639. },
  5640. "Component_[17622569680873604777]": {
  5641. "$type": "EditorPendingCompositionComponent",
  5642. "Id": 17622569680873604777
  5643. },
  5644. "Component_[17974497628582361492]": {
  5645. "$type": "AZ::Render::EditorDecalComponent",
  5646. "Id": 17974497628582361492,
  5647. "Controller": {
  5648. "Configuration": {
  5649. "Opacity": 0.3199999928474426,
  5650. "Material": {
  5651. "assetId": {
  5652. "guid": "{3F853EDA-6BB1-52CD-BF8E-9E8495880526}"
  5653. },
  5654. "assetHint": "assets/warehouse/floor_markings/markings_mid1.azmaterial"
  5655. }
  5656. }
  5657. }
  5658. },
  5659. "Component_[184072808979487519]": {
  5660. "$type": "EditorLockComponent",
  5661. "Id": 184072808979487519
  5662. },
  5663. "Component_[5600569940493692809]": {
  5664. "$type": "EditorNonUniformScaleComponent",
  5665. "Id": 5600569940493692809,
  5666. "NonUniformScale": [
  5667. 1.0,
  5668. 0.871999979019165,
  5669. 1.0
  5670. ]
  5671. },
  5672. "Component_[8716140543667152403]": {
  5673. "$type": "EditorEntityIconComponent",
  5674. "Id": 8716140543667152403
  5675. }
  5676. }
  5677. },
  5678. "Entity_[996173738307074]": {
  5679. "Id": "Entity_[996173738307074]",
  5680. "Name": "corner",
  5681. "Components": {
  5682. "Component_[10500648739299668939]": {
  5683. "$type": "EditorDisabledCompositionComponent",
  5684. "Id": 10500648739299668939
  5685. },
  5686. "Component_[1054428503372686093]": {
  5687. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  5688. "Id": 1054428503372686093,
  5689. "Parent Entity": "Entity_[995989054713346]",
  5690. "Transform Data": {
  5691. "Translate": [
  5692. -3.5059561729431152,
  5693. -2.1379952430725098,
  5694. 0.0
  5695. ],
  5696. "Rotate": [
  5697. 0.0,
  5698. 0.0,
  5699. -0.000013660377589985728
  5700. ]
  5701. }
  5702. },
  5703. "Component_[12045779898573478531]": {
  5704. "$type": "EditorInspectorComponent",
  5705. "Id": 12045779898573478531
  5706. },
  5707. "Component_[12228613816215076155]": {
  5708. "$type": "EditorEntitySortComponent",
  5709. "Id": 12228613816215076155
  5710. },
  5711. "Component_[12502744294820326116]": {
  5712. "$type": "EditorOnlyEntityComponent",
  5713. "Id": 12502744294820326116
  5714. },
  5715. "Component_[12903035105505580650]": {
  5716. "$type": "EditorVisibilityComponent",
  5717. "Id": 12903035105505580650
  5718. },
  5719. "Component_[17622569680873604777]": {
  5720. "$type": "EditorPendingCompositionComponent",
  5721. "Id": 17622569680873604777
  5722. },
  5723. "Component_[184072808979487519]": {
  5724. "$type": "EditorLockComponent",
  5725. "Id": 184072808979487519
  5726. },
  5727. "Component_[6699738828310866771]": {
  5728. "$type": "AZ::Render::EditorDecalComponent",
  5729. "Id": 6699738828310866771,
  5730. "Controller": {
  5731. "Configuration": {
  5732. "Opacity": 0.3199999928474426,
  5733. "Material": {
  5734. "assetId": {
  5735. "guid": "{39CC958C-1BBB-512A-816D-919023CE3E90}"
  5736. },
  5737. "assetHint": "assets/warehouse/floor_markings/markings_corner.azmaterial"
  5738. }
  5739. }
  5740. }
  5741. },
  5742. "Component_[8716140543667152403]": {
  5743. "$type": "EditorEntityIconComponent",
  5744. "Id": 8716140543667152403
  5745. }
  5746. }
  5747. }
  5748. },
  5749. "Instances": {
  5750. "Instance_[1261728088686882]": {
  5751. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  5752. "Patches": [
  5753. {
  5754. "op": "replace",
  5755. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  5756. "value": "../Entity_[996062069157378]"
  5757. },
  5758. {
  5759. "op": "replace",
  5760. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  5761. "value": 0.10306549072265624
  5762. },
  5763. {
  5764. "op": "replace",
  5765. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  5766. "value": 0.19962787628173828
  5767. }
  5768. ]
  5769. },
  5770. "Instance_[1261809693065506]": {
  5771. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  5772. "Patches": [
  5773. {
  5774. "op": "replace",
  5775. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  5776. "value": "../Entity_[996062069157378]"
  5777. },
  5778. {
  5779. "op": "replace",
  5780. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  5781. "value": -2.925628662109375
  5782. },
  5783. {
  5784. "op": "replace",
  5785. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  5786. "value": 0.19962787628173828
  5787. }
  5788. ]
  5789. },
  5790. "Instance_[1261822577967394]": {
  5791. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  5792. "Patches": [
  5793. {
  5794. "op": "replace",
  5795. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  5796. "value": "../Entity_[996062069157378]"
  5797. },
  5798. {
  5799. "op": "replace",
  5800. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  5801. "value": -6.046365737915039
  5802. },
  5803. {
  5804. "op": "replace",
  5805. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  5806. "value": 0.19962787628173828
  5807. }
  5808. ]
  5809. },
  5810. "Instance_[1261856937705762]": {
  5811. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  5812. "Patches": [
  5813. {
  5814. "op": "replace",
  5815. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  5816. "value": "../Entity_[996062069157378]"
  5817. },
  5818. {
  5819. "op": "replace",
  5820. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  5821. "value": -18.495830535888672
  5822. },
  5823. {
  5824. "op": "replace",
  5825. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  5826. "value": 0.19962787628173828
  5827. }
  5828. ]
  5829. },
  5830. "Instance_[1261861232673058]": {
  5831. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  5832. "Patches": [
  5833. {
  5834. "op": "replace",
  5835. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  5836. "value": "../Entity_[996062069157378]"
  5837. },
  5838. {
  5839. "op": "replace",
  5840. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  5841. "value": -21.601394653320313
  5842. },
  5843. {
  5844. "op": "replace",
  5845. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  5846. "value": 0.19962787628173828
  5847. }
  5848. ]
  5849. },
  5850. "Instance_[1467088291343243]": {
  5851. "Source": "Prefabs/Warehouse_storage/Storage_rack1.prefab",
  5852. "Patches": [
  5853. {
  5854. "op": "replace",
  5855. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Parent Entity",
  5856. "value": "../Entity_[996074954059266]"
  5857. },
  5858. {
  5859. "op": "replace",
  5860. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Translate/0",
  5861. "value": 30.441688537597656
  5862. },
  5863. {
  5864. "op": "replace",
  5865. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Translate/1",
  5866. "value": -9.075700759887695
  5867. },
  5868. {
  5869. "op": "replace",
  5870. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Rotate/2",
  5871. "value": -89.99994659423828
  5872. },
  5873. {
  5874. "op": "replace",
  5875. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  5876. "value": "Entity_[72088477497790]"
  5877. },
  5878. {
  5879. "op": "replace",
  5880. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  5881. "value": "Entity_[72092772465086]"
  5882. },
  5883. {
  5884. "op": "replace",
  5885. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  5886. "value": "Entity_[72079887563198]"
  5887. },
  5888. {
  5889. "op": "remove",
  5890. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/7"
  5891. },
  5892. {
  5893. "op": "remove",
  5894. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/6"
  5895. },
  5896. {
  5897. "op": "remove",
  5898. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  5899. },
  5900. {
  5901. "op": "remove",
  5902. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  5903. },
  5904. {
  5905. "op": "remove",
  5906. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  5907. },
  5908. {
  5909. "op": "replace",
  5910. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  5911. "value": "Instance_[71500066978238]/ContainerEntity"
  5912. },
  5913. {
  5914. "op": "replace",
  5915. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  5916. "value": "Instance_[71470002207166]/ContainerEntity"
  5917. },
  5918. {
  5919. "op": "replace",
  5920. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  5921. "value": "Instance_[71504361945534]/ContainerEntity"
  5922. },
  5923. {
  5924. "op": "replace",
  5925. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  5926. "value": "Instance_[71448527370686]/ContainerEntity"
  5927. },
  5928. {
  5929. "op": "replace",
  5930. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  5931. "value": "Instance_[71414167632318]/ContainerEntity"
  5932. },
  5933. {
  5934. "op": "replace",
  5935. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  5936. "value": "Instance_[71465707239870]/ContainerEntity"
  5937. },
  5938. {
  5939. "op": "replace",
  5940. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  5941. "value": "Instance_[71461412272574]/ContainerEntity"
  5942. },
  5943. {
  5944. "op": "replace",
  5945. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  5946. "value": "Instance_[71422757566910]/ContainerEntity"
  5947. },
  5948. {
  5949. "op": "replace",
  5950. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  5951. "value": "Instance_[71396987763134]/ContainerEntity"
  5952. },
  5953. {
  5954. "op": "replace",
  5955. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  5956. "value": "Instance_[71457117305278]/ContainerEntity"
  5957. },
  5958. {
  5959. "op": "remove",
  5960. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/39"
  5961. },
  5962. {
  5963. "op": "remove",
  5964. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/38"
  5965. },
  5966. {
  5967. "op": "remove",
  5968. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/37"
  5969. },
  5970. {
  5971. "op": "remove",
  5972. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/36"
  5973. },
  5974. {
  5975. "op": "remove",
  5976. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/35"
  5977. },
  5978. {
  5979. "op": "remove",
  5980. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/34"
  5981. },
  5982. {
  5983. "op": "remove",
  5984. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/33"
  5985. },
  5986. {
  5987. "op": "remove",
  5988. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/32"
  5989. },
  5990. {
  5991. "op": "remove",
  5992. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/31"
  5993. },
  5994. {
  5995. "op": "remove",
  5996. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/30"
  5997. },
  5998. {
  5999. "op": "remove",
  6000. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/29"
  6001. },
  6002. {
  6003. "op": "remove",
  6004. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/28"
  6005. },
  6006. {
  6007. "op": "remove",
  6008. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/27"
  6009. },
  6010. {
  6011. "op": "remove",
  6012. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/26"
  6013. },
  6014. {
  6015. "op": "remove",
  6016. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/25"
  6017. },
  6018. {
  6019. "op": "remove",
  6020. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/24"
  6021. },
  6022. {
  6023. "op": "remove",
  6024. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  6025. },
  6026. {
  6027. "op": "remove",
  6028. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  6029. },
  6030. {
  6031. "op": "remove",
  6032. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  6033. },
  6034. {
  6035. "op": "remove",
  6036. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  6037. },
  6038. {
  6039. "op": "remove",
  6040. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  6041. },
  6042. {
  6043. "op": "remove",
  6044. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  6045. },
  6046. {
  6047. "op": "remove",
  6048. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  6049. },
  6050. {
  6051. "op": "remove",
  6052. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  6053. },
  6054. {
  6055. "op": "remove",
  6056. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  6057. },
  6058. {
  6059. "op": "remove",
  6060. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  6061. },
  6062. {
  6063. "op": "remove",
  6064. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  6065. },
  6066. {
  6067. "op": "remove",
  6068. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  6069. },
  6070. {
  6071. "op": "remove",
  6072. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  6073. },
  6074. {
  6075. "op": "remove",
  6076. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  6077. },
  6078. {
  6079. "op": "remove",
  6080. "path": "/Entities/Entity_[72084182530494]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  6081. },
  6082. {
  6083. "op": "remove",
  6084. "path": "/Entities/Entity_[72084182530494]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  6085. },
  6086. {
  6087. "op": "replace",
  6088. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  6089. "value": "Instance_[71371217959358]/ContainerEntity"
  6090. },
  6091. {
  6092. "op": "replace",
  6093. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  6094. "value": "Instance_[71478592141758]/ContainerEntity"
  6095. },
  6096. {
  6097. "op": "replace",
  6098. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  6099. "value": "Instance_[71379807893950]/ContainerEntity"
  6100. },
  6101. {
  6102. "op": "replace",
  6103. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  6104. "value": "Instance_[71388397828542]/ContainerEntity"
  6105. },
  6106. {
  6107. "op": "replace",
  6108. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  6109. "value": "Instance_[71431347501502]/ContainerEntity"
  6110. },
  6111. {
  6112. "op": "replace",
  6113. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  6114. "value": "Instance_[71439937436094]/ContainerEntity"
  6115. },
  6116. {
  6117. "op": "replace",
  6118. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  6119. "value": "Instance_[71427052534206]/ContainerEntity"
  6120. },
  6121. {
  6122. "op": "replace",
  6123. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  6124. "value": "Instance_[71409872665022]/ContainerEntity"
  6125. },
  6126. {
  6127. "op": "replace",
  6128. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  6129. "value": "Instance_[71487182076350]/ContainerEntity"
  6130. },
  6131. {
  6132. "op": "replace",
  6133. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  6134. "value": "Instance_[71405577697726]/ContainerEntity"
  6135. },
  6136. {
  6137. "op": "remove",
  6138. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  6139. },
  6140. {
  6141. "op": "remove",
  6142. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  6143. },
  6144. {
  6145. "op": "remove",
  6146. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  6147. },
  6148. {
  6149. "op": "remove",
  6150. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  6151. },
  6152. {
  6153. "op": "remove",
  6154. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  6155. },
  6156. {
  6157. "op": "remove",
  6158. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  6159. },
  6160. {
  6161. "op": "remove",
  6162. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  6163. },
  6164. {
  6165. "op": "remove",
  6166. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  6167. },
  6168. {
  6169. "op": "remove",
  6170. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  6171. },
  6172. {
  6173. "op": "remove",
  6174. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  6175. },
  6176. {
  6177. "op": "replace",
  6178. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  6179. "value": "Instance_[71384102861246]/ContainerEntity"
  6180. },
  6181. {
  6182. "op": "replace",
  6183. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  6184. "value": "Instance_[71392692795838]/ContainerEntity"
  6185. },
  6186. {
  6187. "op": "replace",
  6188. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  6189. "value": "Instance_[71444232403390]/ContainerEntity"
  6190. },
  6191. {
  6192. "op": "replace",
  6193. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  6194. "value": "Instance_[71495772010942]/ContainerEntity"
  6195. },
  6196. {
  6197. "op": "replace",
  6198. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  6199. "value": "Instance_[71482887109054]/ContainerEntity"
  6200. },
  6201. {
  6202. "op": "replace",
  6203. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  6204. "value": "Instance_[71435642468798]/ContainerEntity"
  6205. },
  6206. {
  6207. "op": "replace",
  6208. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  6209. "value": "Instance_[71452822337982]/ContainerEntity"
  6210. },
  6211. {
  6212. "op": "replace",
  6213. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  6214. "value": "Instance_[71375512926654]/ContainerEntity"
  6215. },
  6216. {
  6217. "op": "replace",
  6218. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  6219. "value": "Instance_[71474297174462]/ContainerEntity"
  6220. },
  6221. {
  6222. "op": "remove",
  6223. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/28"
  6224. },
  6225. {
  6226. "op": "remove",
  6227. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/27"
  6228. },
  6229. {
  6230. "op": "remove",
  6231. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/26"
  6232. },
  6233. {
  6234. "op": "remove",
  6235. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/25"
  6236. },
  6237. {
  6238. "op": "remove",
  6239. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/24"
  6240. },
  6241. {
  6242. "op": "remove",
  6243. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  6244. },
  6245. {
  6246. "op": "remove",
  6247. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  6248. },
  6249. {
  6250. "op": "remove",
  6251. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  6252. },
  6253. {
  6254. "op": "remove",
  6255. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  6256. },
  6257. {
  6258. "op": "remove",
  6259. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  6260. },
  6261. {
  6262. "op": "remove",
  6263. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  6264. },
  6265. {
  6266. "op": "remove",
  6267. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  6268. },
  6269. {
  6270. "op": "remove",
  6271. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  6272. },
  6273. {
  6274. "op": "remove",
  6275. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  6276. },
  6277. {
  6278. "op": "remove",
  6279. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  6280. },
  6281. {
  6282. "op": "remove",
  6283. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  6284. },
  6285. {
  6286. "op": "remove",
  6287. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  6288. },
  6289. {
  6290. "op": "remove",
  6291. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  6292. },
  6293. {
  6294. "op": "remove",
  6295. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  6296. },
  6297. {
  6298. "op": "remove",
  6299. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  6300. }
  6301. ]
  6302. },
  6303. "Instance_[1467354579315595]": {
  6304. "Source": "Prefabs/Warehouse_storage/Storage_rack2.prefab",
  6305. "Patches": [
  6306. {
  6307. "op": "replace",
  6308. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Parent Entity",
  6309. "value": "../Entity_[996074954059266]"
  6310. },
  6311. {
  6312. "op": "replace",
  6313. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Translate/0",
  6314. "value": 33.5367317199707
  6315. },
  6316. {
  6317. "op": "replace",
  6318. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Translate/1",
  6319. "value": -9.075700759887695
  6320. },
  6321. {
  6322. "op": "replace",
  6323. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Rotate/2",
  6324. "value": -89.99994659423828
  6325. },
  6326. {
  6327. "op": "add",
  6328. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  6329. "value": "Instance_[151111580776894]/ContainerEntity"
  6330. },
  6331. {
  6332. "op": "add",
  6333. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  6334. "value": "Instance_[112224946878910]/ContainerEntity"
  6335. },
  6336. {
  6337. "op": "add",
  6338. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  6339. "value": "Instance_[151098695875006]/ContainerEntity"
  6340. },
  6341. {
  6342. "op": "add",
  6343. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  6344. "value": "Instance_[151085810973118]/ContainerEntity"
  6345. },
  6346. {
  6347. "op": "add",
  6348. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  6349. "value": "Instance_[112220651911614]/ContainerEntity"
  6350. },
  6351. {
  6352. "op": "add",
  6353. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  6354. "value": "Instance_[112229241846206]/ContainerEntity"
  6355. },
  6356. {
  6357. "op": "add",
  6358. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  6359. "value": "Instance_[112207767009726]/ContainerEntity"
  6360. },
  6361. {
  6362. "op": "add",
  6363. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  6364. "value": "Instance_[112194882107838]/ContainerEntity"
  6365. },
  6366. {
  6367. "op": "replace",
  6368. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  6369. "value": "Instance_[5971750943166]/ContainerEntity"
  6370. },
  6371. {
  6372. "op": "replace",
  6373. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  6374. "value": "Instance_[5997520746942]/ContainerEntity"
  6375. },
  6376. {
  6377. "op": "replace",
  6378. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  6379. "value": "Instance_[6027585518014]/ContainerEntity"
  6380. },
  6381. {
  6382. "op": "replace",
  6383. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  6384. "value": "Instance_[5984635845054]/ContainerEntity"
  6385. },
  6386. {
  6387. "op": "replace",
  6388. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  6389. "value": "Instance_[6010405648830]/ContainerEntity"
  6390. },
  6391. {
  6392. "op": "replace",
  6393. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  6394. "value": "Instance_[6023290550718]/ContainerEntity"
  6395. },
  6396. {
  6397. "op": "replace",
  6398. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  6399. "value": "Instance_[6122074798526]/ContainerEntity"
  6400. },
  6401. {
  6402. "op": "replace",
  6403. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  6404. "value": "Instance_[6096304994750]/ContainerEntity"
  6405. },
  6406. {
  6407. "op": "replace",
  6408. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  6409. "value": "Instance_[6104894929342]/ContainerEntity"
  6410. },
  6411. {
  6412. "op": "replace",
  6413. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  6414. "value": "Instance_[6117779831230]/ContainerEntity"
  6415. },
  6416. {
  6417. "op": "replace",
  6418. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/10",
  6419. "value": "Instance_[6126369765822]/ContainerEntity"
  6420. },
  6421. {
  6422. "op": "replace",
  6423. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/11",
  6424. "value": "Instance_[6113484863934]/ContainerEntity"
  6425. },
  6426. {
  6427. "op": "replace",
  6428. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/12",
  6429. "value": "Instance_[6109189896638]/ContainerEntity"
  6430. },
  6431. {
  6432. "op": "replace",
  6433. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/13",
  6434. "value": "Instance_[6134959700414]/ContainerEntity"
  6435. },
  6436. {
  6437. "op": "replace",
  6438. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/14",
  6439. "value": "Instance_[6100599962046]/ContainerEntity"
  6440. },
  6441. {
  6442. "op": "remove",
  6443. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  6444. },
  6445. {
  6446. "op": "remove",
  6447. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  6448. },
  6449. {
  6450. "op": "remove",
  6451. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  6452. },
  6453. {
  6454. "op": "remove",
  6455. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  6456. },
  6457. {
  6458. "op": "replace",
  6459. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  6460. "value": "Entity_[186489226394046]"
  6461. },
  6462. {
  6463. "op": "replace",
  6464. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  6465. "value": "Entity_[186484931426750]"
  6466. },
  6467. {
  6468. "op": "replace",
  6469. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  6470. "value": "Entity_[186480636459454]"
  6471. },
  6472. {
  6473. "op": "remove",
  6474. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  6475. },
  6476. {
  6477. "op": "remove",
  6478. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  6479. },
  6480. {
  6481. "op": "remove",
  6482. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  6483. },
  6484. {
  6485. "op": "remove",
  6486. "path": "/Entities/Entity_[186497816328638]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  6487. }
  6488. ]
  6489. },
  6490. "Instance_[1560327100006690]": {
  6491. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  6492. "Patches": [
  6493. {
  6494. "op": "replace",
  6495. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  6496. "value": "../Entity_[996062069157378]"
  6497. },
  6498. {
  6499. "op": "replace",
  6500. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  6501. "value": -34.023895263671875
  6502. },
  6503. {
  6504. "op": "replace",
  6505. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  6506. "value": 0.19962787628173828
  6507. }
  6508. ]
  6509. },
  6510. "Instance_[1560331394973986]": {
  6511. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  6512. "Patches": [
  6513. {
  6514. "op": "replace",
  6515. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  6516. "value": "../Entity_[996062069157378]"
  6517. },
  6518. {
  6519. "op": "replace",
  6520. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  6521. "value": -30.908912658691406
  6522. },
  6523. {
  6524. "op": "replace",
  6525. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  6526. "value": 0.19962787628173828
  6527. }
  6528. ]
  6529. },
  6530. "Instance_[1560335689941282]": {
  6531. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  6532. "Patches": [
  6533. {
  6534. "op": "replace",
  6535. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  6536. "value": "../Entity_[996062069157378]"
  6537. },
  6538. {
  6539. "op": "replace",
  6540. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  6541. "value": -27.803783416748047
  6542. },
  6543. {
  6544. "op": "replace",
  6545. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  6546. "value": 0.19962787628173828
  6547. }
  6548. ]
  6549. },
  6550. "Instance_[1560339984908578]": {
  6551. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  6552. "Patches": [
  6553. {
  6554. "op": "replace",
  6555. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  6556. "value": "../Entity_[996062069157378]"
  6557. },
  6558. {
  6559. "op": "replace",
  6560. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  6561. "value": -24.71051597595215
  6562. },
  6563. {
  6564. "op": "replace",
  6565. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  6566. "value": 0.19962787628173828
  6567. }
  6568. ]
  6569. },
  6570. "Instance_[1614768259749725]": {
  6571. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_side_protector.prefab",
  6572. "Patches": [
  6573. {
  6574. "op": "replace",
  6575. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Parent Entity",
  6576. "value": "../Entity_[996135083601410]"
  6577. },
  6578. {
  6579. "op": "replace",
  6580. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/0",
  6581. "value": 9.155025482177734
  6582. },
  6583. {
  6584. "op": "replace",
  6585. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/1",
  6586. "value": -2.7918167114257813
  6587. },
  6588. {
  6589. "op": "replace",
  6590. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/2",
  6591. "value": -0.08320403099060059
  6592. },
  6593. {
  6594. "op": "replace",
  6595. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Rotate/2",
  6596. "value": 180.0
  6597. }
  6598. ]
  6599. },
  6600. "Instance_[1614772554717021]": {
  6601. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_side_protector.prefab",
  6602. "Patches": [
  6603. {
  6604. "op": "replace",
  6605. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Parent Entity",
  6606. "value": "../Entity_[996135083601410]"
  6607. },
  6608. {
  6609. "op": "replace",
  6610. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/0",
  6611. "value": 9.155025482177734
  6612. },
  6613. {
  6614. "op": "replace",
  6615. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/1",
  6616. "value": 3.893092393875122
  6617. },
  6618. {
  6619. "op": "replace",
  6620. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/2",
  6621. "value": -0.08320403099060059
  6622. },
  6623. {
  6624. "op": "replace",
  6625. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Rotate/2",
  6626. "value": 180.0
  6627. }
  6628. ]
  6629. },
  6630. "Instance_[1665464240810891]": {
  6631. "Source": "Prefabs/Warehouse_storage/Storage_rack1.prefab",
  6632. "Patches": [
  6633. {
  6634. "op": "replace",
  6635. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Parent Entity",
  6636. "value": "../Entity_[996074954059266]"
  6637. },
  6638. {
  6639. "op": "replace",
  6640. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Translate/0",
  6641. "value": 2.4521541595458984
  6642. },
  6643. {
  6644. "op": "replace",
  6645. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Translate/1",
  6646. "value": -9.075700759887695
  6647. },
  6648. {
  6649. "op": "replace",
  6650. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Rotate/2",
  6651. "value": -89.99994659423828
  6652. },
  6653. {
  6654. "op": "replace",
  6655. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  6656. "value": "Entity_[72088477497790]"
  6657. },
  6658. {
  6659. "op": "replace",
  6660. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  6661. "value": "Entity_[72092772465086]"
  6662. },
  6663. {
  6664. "op": "replace",
  6665. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  6666. "value": "Entity_[72079887563198]"
  6667. },
  6668. {
  6669. "op": "remove",
  6670. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/7"
  6671. },
  6672. {
  6673. "op": "remove",
  6674. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/6"
  6675. },
  6676. {
  6677. "op": "remove",
  6678. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  6679. },
  6680. {
  6681. "op": "remove",
  6682. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  6683. },
  6684. {
  6685. "op": "remove",
  6686. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  6687. },
  6688. {
  6689. "op": "replace",
  6690. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  6691. "value": "Instance_[71500066978238]/ContainerEntity"
  6692. },
  6693. {
  6694. "op": "replace",
  6695. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  6696. "value": "Instance_[71470002207166]/ContainerEntity"
  6697. },
  6698. {
  6699. "op": "replace",
  6700. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  6701. "value": "Instance_[71504361945534]/ContainerEntity"
  6702. },
  6703. {
  6704. "op": "replace",
  6705. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  6706. "value": "Instance_[71448527370686]/ContainerEntity"
  6707. },
  6708. {
  6709. "op": "replace",
  6710. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  6711. "value": "Instance_[71414167632318]/ContainerEntity"
  6712. },
  6713. {
  6714. "op": "replace",
  6715. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  6716. "value": "Instance_[71465707239870]/ContainerEntity"
  6717. },
  6718. {
  6719. "op": "replace",
  6720. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  6721. "value": "Instance_[71461412272574]/ContainerEntity"
  6722. },
  6723. {
  6724. "op": "replace",
  6725. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  6726. "value": "Instance_[71422757566910]/ContainerEntity"
  6727. },
  6728. {
  6729. "op": "replace",
  6730. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  6731. "value": "Instance_[71396987763134]/ContainerEntity"
  6732. },
  6733. {
  6734. "op": "replace",
  6735. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  6736. "value": "Instance_[71457117305278]/ContainerEntity"
  6737. },
  6738. {
  6739. "op": "remove",
  6740. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/39"
  6741. },
  6742. {
  6743. "op": "remove",
  6744. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/38"
  6745. },
  6746. {
  6747. "op": "remove",
  6748. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/37"
  6749. },
  6750. {
  6751. "op": "remove",
  6752. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/36"
  6753. },
  6754. {
  6755. "op": "remove",
  6756. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/35"
  6757. },
  6758. {
  6759. "op": "remove",
  6760. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/34"
  6761. },
  6762. {
  6763. "op": "remove",
  6764. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/33"
  6765. },
  6766. {
  6767. "op": "remove",
  6768. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/32"
  6769. },
  6770. {
  6771. "op": "remove",
  6772. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/31"
  6773. },
  6774. {
  6775. "op": "remove",
  6776. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/30"
  6777. },
  6778. {
  6779. "op": "remove",
  6780. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/29"
  6781. },
  6782. {
  6783. "op": "remove",
  6784. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/28"
  6785. },
  6786. {
  6787. "op": "remove",
  6788. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/27"
  6789. },
  6790. {
  6791. "op": "remove",
  6792. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/26"
  6793. },
  6794. {
  6795. "op": "remove",
  6796. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/25"
  6797. },
  6798. {
  6799. "op": "remove",
  6800. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/24"
  6801. },
  6802. {
  6803. "op": "remove",
  6804. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  6805. },
  6806. {
  6807. "op": "remove",
  6808. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  6809. },
  6810. {
  6811. "op": "remove",
  6812. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  6813. },
  6814. {
  6815. "op": "remove",
  6816. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  6817. },
  6818. {
  6819. "op": "remove",
  6820. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  6821. },
  6822. {
  6823. "op": "remove",
  6824. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  6825. },
  6826. {
  6827. "op": "remove",
  6828. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  6829. },
  6830. {
  6831. "op": "remove",
  6832. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  6833. },
  6834. {
  6835. "op": "remove",
  6836. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  6837. },
  6838. {
  6839. "op": "remove",
  6840. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  6841. },
  6842. {
  6843. "op": "remove",
  6844. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  6845. },
  6846. {
  6847. "op": "remove",
  6848. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  6849. },
  6850. {
  6851. "op": "remove",
  6852. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  6853. },
  6854. {
  6855. "op": "remove",
  6856. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  6857. },
  6858. {
  6859. "op": "remove",
  6860. "path": "/Entities/Entity_[72084182530494]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  6861. },
  6862. {
  6863. "op": "remove",
  6864. "path": "/Entities/Entity_[72084182530494]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  6865. },
  6866. {
  6867. "op": "replace",
  6868. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  6869. "value": "Instance_[71371217959358]/ContainerEntity"
  6870. },
  6871. {
  6872. "op": "replace",
  6873. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  6874. "value": "Instance_[71478592141758]/ContainerEntity"
  6875. },
  6876. {
  6877. "op": "replace",
  6878. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  6879. "value": "Instance_[71379807893950]/ContainerEntity"
  6880. },
  6881. {
  6882. "op": "replace",
  6883. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  6884. "value": "Instance_[71388397828542]/ContainerEntity"
  6885. },
  6886. {
  6887. "op": "replace",
  6888. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  6889. "value": "Instance_[71431347501502]/ContainerEntity"
  6890. },
  6891. {
  6892. "op": "replace",
  6893. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  6894. "value": "Instance_[71439937436094]/ContainerEntity"
  6895. },
  6896. {
  6897. "op": "replace",
  6898. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  6899. "value": "Instance_[71427052534206]/ContainerEntity"
  6900. },
  6901. {
  6902. "op": "replace",
  6903. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  6904. "value": "Instance_[71409872665022]/ContainerEntity"
  6905. },
  6906. {
  6907. "op": "replace",
  6908. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  6909. "value": "Instance_[71487182076350]/ContainerEntity"
  6910. },
  6911. {
  6912. "op": "replace",
  6913. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  6914. "value": "Instance_[71405577697726]/ContainerEntity"
  6915. },
  6916. {
  6917. "op": "remove",
  6918. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  6919. },
  6920. {
  6921. "op": "remove",
  6922. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  6923. },
  6924. {
  6925. "op": "remove",
  6926. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  6927. },
  6928. {
  6929. "op": "remove",
  6930. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  6931. },
  6932. {
  6933. "op": "remove",
  6934. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  6935. },
  6936. {
  6937. "op": "remove",
  6938. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  6939. },
  6940. {
  6941. "op": "remove",
  6942. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  6943. },
  6944. {
  6945. "op": "remove",
  6946. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  6947. },
  6948. {
  6949. "op": "remove",
  6950. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  6951. },
  6952. {
  6953. "op": "remove",
  6954. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  6955. },
  6956. {
  6957. "op": "replace",
  6958. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  6959. "value": "Instance_[71384102861246]/ContainerEntity"
  6960. },
  6961. {
  6962. "op": "replace",
  6963. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  6964. "value": "Instance_[71392692795838]/ContainerEntity"
  6965. },
  6966. {
  6967. "op": "replace",
  6968. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  6969. "value": "Instance_[71444232403390]/ContainerEntity"
  6970. },
  6971. {
  6972. "op": "replace",
  6973. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  6974. "value": "Instance_[71495772010942]/ContainerEntity"
  6975. },
  6976. {
  6977. "op": "replace",
  6978. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  6979. "value": "Instance_[71482887109054]/ContainerEntity"
  6980. },
  6981. {
  6982. "op": "replace",
  6983. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  6984. "value": "Instance_[71435642468798]/ContainerEntity"
  6985. },
  6986. {
  6987. "op": "replace",
  6988. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  6989. "value": "Instance_[71452822337982]/ContainerEntity"
  6990. },
  6991. {
  6992. "op": "replace",
  6993. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  6994. "value": "Instance_[71375512926654]/ContainerEntity"
  6995. },
  6996. {
  6997. "op": "replace",
  6998. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  6999. "value": "Instance_[71474297174462]/ContainerEntity"
  7000. },
  7001. {
  7002. "op": "remove",
  7003. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/28"
  7004. },
  7005. {
  7006. "op": "remove",
  7007. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/27"
  7008. },
  7009. {
  7010. "op": "remove",
  7011. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/26"
  7012. },
  7013. {
  7014. "op": "remove",
  7015. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/25"
  7016. },
  7017. {
  7018. "op": "remove",
  7019. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/24"
  7020. },
  7021. {
  7022. "op": "remove",
  7023. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  7024. },
  7025. {
  7026. "op": "remove",
  7027. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  7028. },
  7029. {
  7030. "op": "remove",
  7031. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  7032. },
  7033. {
  7034. "op": "remove",
  7035. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  7036. },
  7037. {
  7038. "op": "remove",
  7039. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  7040. },
  7041. {
  7042. "op": "remove",
  7043. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  7044. },
  7045. {
  7046. "op": "remove",
  7047. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  7048. },
  7049. {
  7050. "op": "remove",
  7051. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  7052. },
  7053. {
  7054. "op": "remove",
  7055. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  7056. },
  7057. {
  7058. "op": "remove",
  7059. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  7060. },
  7061. {
  7062. "op": "remove",
  7063. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  7064. },
  7065. {
  7066. "op": "remove",
  7067. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  7068. },
  7069. {
  7070. "op": "remove",
  7071. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  7072. },
  7073. {
  7074. "op": "remove",
  7075. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  7076. },
  7077. {
  7078. "op": "remove",
  7079. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  7080. }
  7081. ]
  7082. },
  7083. "Instance_[1665468535778187]": {
  7084. "Source": "Prefabs/Warehouse_storage/Storage_rack4.prefab",
  7085. "Patches": [
  7086. {
  7087. "op": "replace",
  7088. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Parent Entity",
  7089. "value": "../Entity_[996074954059266]"
  7090. },
  7091. {
  7092. "op": "replace",
  7093. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Translate/0",
  7094. "value": -6.871879577636719
  7095. },
  7096. {
  7097. "op": "replace",
  7098. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Translate/1",
  7099. "value": -9.075700759887695
  7100. },
  7101. {
  7102. "op": "replace",
  7103. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Rotate/2",
  7104. "value": -89.99994659423828
  7105. },
  7106. {
  7107. "op": "replace",
  7108. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  7109. "value": "Instance_[10201320632057]/ContainerEntity"
  7110. },
  7111. {
  7112. "op": "replace",
  7113. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  7114. "value": "Instance_[10179845795577]/ContainerEntity"
  7115. },
  7116. {
  7117. "op": "replace",
  7118. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  7119. "value": "Instance_[10111126318841]/ContainerEntity"
  7120. },
  7121. {
  7122. "op": "replace",
  7123. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  7124. "value": "Instance_[10162665926393]/ContainerEntity"
  7125. },
  7126. {
  7127. "op": "replace",
  7128. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  7129. "value": "Instance_[10115421286137]/ContainerEntity"
  7130. },
  7131. {
  7132. "op": "replace",
  7133. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  7134. "value": "Instance_[10145486057209]/ContainerEntity"
  7135. },
  7136. {
  7137. "op": "replace",
  7138. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  7139. "value": "Instance_[10205615599353]/ContainerEntity"
  7140. },
  7141. {
  7142. "op": "replace",
  7143. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  7144. "value": "Instance_[10197025664761]/ContainerEntity"
  7145. },
  7146. {
  7147. "op": "replace",
  7148. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  7149. "value": "Instance_[10214205533945]/ContainerEntity"
  7150. },
  7151. {
  7152. "op": "remove",
  7153. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  7154. },
  7155. {
  7156. "op": "remove",
  7157. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  7158. },
  7159. {
  7160. "op": "remove",
  7161. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  7162. },
  7163. {
  7164. "op": "remove",
  7165. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  7166. },
  7167. {
  7168. "op": "remove",
  7169. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  7170. },
  7171. {
  7172. "op": "remove",
  7173. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  7174. },
  7175. {
  7176. "op": "remove",
  7177. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  7178. },
  7179. {
  7180. "op": "remove",
  7181. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  7182. },
  7183. {
  7184. "op": "remove",
  7185. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  7186. },
  7187. {
  7188. "op": "remove",
  7189. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  7190. },
  7191. {
  7192. "op": "remove",
  7193. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  7194. },
  7195. {
  7196. "op": "remove",
  7197. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  7198. },
  7199. {
  7200. "op": "remove",
  7201. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  7202. },
  7203. {
  7204. "op": "remove",
  7205. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  7206. },
  7207. {
  7208. "op": "remove",
  7209. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  7210. },
  7211. {
  7212. "op": "replace",
  7213. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  7214. "value": "Entity_[147885087239929]"
  7215. },
  7216. {
  7217. "op": "replace",
  7218. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  7219. "value": "Entity_[147876497305337]"
  7220. },
  7221. {
  7222. "op": "replace",
  7223. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  7224. "value": "Entity_[147880792272633]"
  7225. },
  7226. {
  7227. "op": "remove",
  7228. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/6"
  7229. },
  7230. {
  7231. "op": "remove",
  7232. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  7233. },
  7234. {
  7235. "op": "remove",
  7236. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  7237. },
  7238. {
  7239. "op": "remove",
  7240. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  7241. },
  7242. {
  7243. "op": "remove",
  7244. "path": "/Entities/Entity_[147893677174521]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  7245. },
  7246. {
  7247. "op": "remove",
  7248. "path": "/Entities/Entity_[147893677174521]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  7249. }
  7250. ]
  7251. },
  7252. "Instance_[1665472830745483]": {
  7253. "Source": "Prefabs/Warehouse_storage/Storage_rack5.prefab",
  7254. "Patches": [
  7255. {
  7256. "op": "replace",
  7257. "path": "/ContainerEntity/Components/Component_[226710958716547824]/Parent Entity",
  7258. "value": "../Entity_[996074954059266]"
  7259. },
  7260. {
  7261. "op": "replace",
  7262. "path": "/ContainerEntity/Components/Component_[226710958716547824]/Transform Data/Translate/0",
  7263. "value": -3.774856567382813
  7264. },
  7265. {
  7266. "op": "replace",
  7267. "path": "/ContainerEntity/Components/Component_[226710958716547824]/Transform Data/Translate/1",
  7268. "value": -9.075700759887695
  7269. },
  7270. {
  7271. "op": "replace",
  7272. "path": "/ContainerEntity/Components/Component_[226710958716547824]/Transform Data/Rotate/2",
  7273. "value": -89.99994659423828
  7274. },
  7275. {
  7276. "op": "add",
  7277. "path": "/Entities/Entity_[339376204132089]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  7278. "value": "Instance_[292732859297529]/ContainerEntity"
  7279. },
  7280. {
  7281. "op": "add",
  7282. "path": "/Entities/Entity_[339376204132089]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  7283. "value": "Instance_[292737154264825]/ContainerEntity"
  7284. },
  7285. {
  7286. "op": "add",
  7287. "path": "/Entities/Entity_[339376204132089]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  7288. "value": "Instance_[292719974395641]/ContainerEntity"
  7289. },
  7290. {
  7291. "op": "add",
  7292. "path": "/Entities/Entity_[339380499099385]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  7293. "value": "Instance_[199742522371833]/ContainerEntity"
  7294. },
  7295. {
  7296. "op": "add",
  7297. "path": "/Entities/Entity_[339380499099385]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  7298. "value": "Instance_[246003615117049]/ContainerEntity"
  7299. },
  7300. {
  7301. "op": "add",
  7302. "path": "/Entities/Entity_[339380499099385]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  7303. "value": "Instance_[246016500018937]/ContainerEntity"
  7304. },
  7305. {
  7306. "op": "replace",
  7307. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  7308. "value": "Entity_[339380499099385]"
  7309. },
  7310. {
  7311. "op": "replace",
  7312. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  7313. "value": "Entity_[339389089033977]"
  7314. },
  7315. {
  7316. "op": "replace",
  7317. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  7318. "value": "Entity_[339376204132089]"
  7319. },
  7320. {
  7321. "op": "remove",
  7322. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  7323. },
  7324. {
  7325. "op": "remove",
  7326. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  7327. },
  7328. {
  7329. "op": "remove",
  7330. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  7331. },
  7332. {
  7333. "op": "add",
  7334. "path": "/Entities/Entity_[339389089033977]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  7335. "value": "Instance_[246059449691897]/ContainerEntity"
  7336. },
  7337. {
  7338. "op": "add",
  7339. "path": "/Entities/Entity_[339389089033977]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  7340. "value": "Instance_[246046564790009]/ContainerEntity"
  7341. },
  7342. {
  7343. "op": "add",
  7344. "path": "/Entities/Entity_[339389089033977]/Components/Component_[4058468385591425268]/Child Entity Order/10",
  7345. "value": "Instance_[246072334593785]/ContainerEntity"
  7346. }
  7347. ]
  7348. },
  7349. "Instance_[1665477125712779]": {
  7350. "Source": "Prefabs/Warehouse_storage/Storage_rack2.prefab",
  7351. "Patches": [
  7352. {
  7353. "op": "replace",
  7354. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Parent Entity",
  7355. "value": "../Entity_[996074954059266]"
  7356. },
  7357. {
  7358. "op": "replace",
  7359. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Translate/0",
  7360. "value": 5.56212043762207
  7361. },
  7362. {
  7363. "op": "replace",
  7364. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Translate/1",
  7365. "value": -9.075700759887695
  7366. },
  7367. {
  7368. "op": "replace",
  7369. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Rotate/2",
  7370. "value": -89.99994659423828
  7371. },
  7372. {
  7373. "op": "add",
  7374. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  7375. "value": "Instance_[151111580776894]/ContainerEntity"
  7376. },
  7377. {
  7378. "op": "add",
  7379. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  7380. "value": "Instance_[112224946878910]/ContainerEntity"
  7381. },
  7382. {
  7383. "op": "add",
  7384. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  7385. "value": "Instance_[151098695875006]/ContainerEntity"
  7386. },
  7387. {
  7388. "op": "add",
  7389. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  7390. "value": "Instance_[151085810973118]/ContainerEntity"
  7391. },
  7392. {
  7393. "op": "add",
  7394. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  7395. "value": "Instance_[112220651911614]/ContainerEntity"
  7396. },
  7397. {
  7398. "op": "add",
  7399. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  7400. "value": "Instance_[112229241846206]/ContainerEntity"
  7401. },
  7402. {
  7403. "op": "add",
  7404. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  7405. "value": "Instance_[112207767009726]/ContainerEntity"
  7406. },
  7407. {
  7408. "op": "add",
  7409. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  7410. "value": "Instance_[112194882107838]/ContainerEntity"
  7411. },
  7412. {
  7413. "op": "replace",
  7414. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  7415. "value": "Instance_[5971750943166]/ContainerEntity"
  7416. },
  7417. {
  7418. "op": "replace",
  7419. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  7420. "value": "Instance_[5997520746942]/ContainerEntity"
  7421. },
  7422. {
  7423. "op": "replace",
  7424. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  7425. "value": "Instance_[6027585518014]/ContainerEntity"
  7426. },
  7427. {
  7428. "op": "replace",
  7429. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  7430. "value": "Instance_[5984635845054]/ContainerEntity"
  7431. },
  7432. {
  7433. "op": "replace",
  7434. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  7435. "value": "Instance_[6010405648830]/ContainerEntity"
  7436. },
  7437. {
  7438. "op": "replace",
  7439. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  7440. "value": "Instance_[6023290550718]/ContainerEntity"
  7441. },
  7442. {
  7443. "op": "replace",
  7444. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  7445. "value": "Instance_[6122074798526]/ContainerEntity"
  7446. },
  7447. {
  7448. "op": "replace",
  7449. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  7450. "value": "Instance_[6096304994750]/ContainerEntity"
  7451. },
  7452. {
  7453. "op": "replace",
  7454. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  7455. "value": "Instance_[6104894929342]/ContainerEntity"
  7456. },
  7457. {
  7458. "op": "replace",
  7459. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  7460. "value": "Instance_[6117779831230]/ContainerEntity"
  7461. },
  7462. {
  7463. "op": "replace",
  7464. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/10",
  7465. "value": "Instance_[6126369765822]/ContainerEntity"
  7466. },
  7467. {
  7468. "op": "replace",
  7469. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/11",
  7470. "value": "Instance_[6113484863934]/ContainerEntity"
  7471. },
  7472. {
  7473. "op": "replace",
  7474. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/12",
  7475. "value": "Instance_[6109189896638]/ContainerEntity"
  7476. },
  7477. {
  7478. "op": "replace",
  7479. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/13",
  7480. "value": "Instance_[6134959700414]/ContainerEntity"
  7481. },
  7482. {
  7483. "op": "replace",
  7484. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/14",
  7485. "value": "Instance_[6100599962046]/ContainerEntity"
  7486. },
  7487. {
  7488. "op": "remove",
  7489. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  7490. },
  7491. {
  7492. "op": "remove",
  7493. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  7494. },
  7495. {
  7496. "op": "remove",
  7497. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  7498. },
  7499. {
  7500. "op": "remove",
  7501. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  7502. },
  7503. {
  7504. "op": "replace",
  7505. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  7506. "value": "Entity_[186489226394046]"
  7507. },
  7508. {
  7509. "op": "replace",
  7510. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  7511. "value": "Entity_[186484931426750]"
  7512. },
  7513. {
  7514. "op": "replace",
  7515. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  7516. "value": "Entity_[186480636459454]"
  7517. },
  7518. {
  7519. "op": "remove",
  7520. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  7521. },
  7522. {
  7523. "op": "remove",
  7524. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  7525. },
  7526. {
  7527. "op": "remove",
  7528. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  7529. },
  7530. {
  7531. "op": "remove",
  7532. "path": "/Entities/Entity_[186497816328638]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  7533. }
  7534. ]
  7535. },
  7536. "Instance_[1665481420680075]": {
  7537. "Source": "Prefabs/Warehouse_storage/Storage_rack3.prefab",
  7538. "Patches": [
  7539. {
  7540. "op": "replace",
  7541. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Parent Entity",
  7542. "value": "../Entity_[996074954059266]"
  7543. },
  7544. {
  7545. "op": "replace",
  7546. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Translate/0",
  7547. "value": -0.6433277130126953
  7548. },
  7549. {
  7550. "op": "replace",
  7551. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Translate/1",
  7552. "value": -9.075700759887695
  7553. },
  7554. {
  7555. "op": "replace",
  7556. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Rotate/2",
  7557. "value": -89.99994659423828
  7558. },
  7559. {
  7560. "op": "replace",
  7561. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  7562. "value": "Instance_[259933167155646]/ContainerEntity"
  7563. },
  7564. {
  7565. "op": "replace",
  7566. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  7567. "value": "Instance_[259950347024830]/ContainerEntity"
  7568. },
  7569. {
  7570. "op": "replace",
  7571. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  7572. "value": "Instance_[260019066501566]/ContainerEntity"
  7573. },
  7574. {
  7575. "op": "replace",
  7576. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  7577. "value": "Instance_[260014771534270]/ContainerEntity"
  7578. },
  7579. {
  7580. "op": "replace",
  7581. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  7582. "value": "Instance_[259958936959422]/ContainerEntity"
  7583. },
  7584. {
  7585. "op": "replace",
  7586. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  7587. "value": "Instance_[259976116828606]/ContainerEntity"
  7588. },
  7589. {
  7590. "op": "remove",
  7591. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  7592. },
  7593. {
  7594. "op": "remove",
  7595. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  7596. },
  7597. {
  7598. "op": "remove",
  7599. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  7600. },
  7601. {
  7602. "op": "remove",
  7603. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  7604. },
  7605. {
  7606. "op": "remove",
  7607. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  7608. },
  7609. {
  7610. "op": "remove",
  7611. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  7612. },
  7613. {
  7614. "op": "remove",
  7615. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  7616. },
  7617. {
  7618. "op": "remove",
  7619. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  7620. },
  7621. {
  7622. "op": "remove",
  7623. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  7624. },
  7625. {
  7626. "op": "remove",
  7627. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  7628. },
  7629. {
  7630. "op": "remove",
  7631. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  7632. },
  7633. {
  7634. "op": "remove",
  7635. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  7636. },
  7637. {
  7638. "op": "remove",
  7639. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/8"
  7640. },
  7641. {
  7642. "op": "remove",
  7643. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/7"
  7644. },
  7645. {
  7646. "op": "remove",
  7647. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/6"
  7648. },
  7649. {
  7650. "op": "add",
  7651. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  7652. "value": "Instance_[295529856104894]/ContainerEntity"
  7653. },
  7654. {
  7655. "op": "add",
  7656. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  7657. "value": "Instance_[260431383361982]/ContainerEntity"
  7658. },
  7659. {
  7660. "op": "add",
  7661. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  7662. "value": "Instance_[295456841660862]/ContainerEntity"
  7663. },
  7664. {
  7665. "op": "add",
  7666. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  7667. "value": "Instance_[295491201399230]/ContainerEntity"
  7668. },
  7669. {
  7670. "op": "add",
  7671. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/10",
  7672. "value": "Instance_[295461136628158]/ContainerEntity"
  7673. },
  7674. {
  7675. "op": "add",
  7676. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/11",
  7677. "value": "Instance_[260444268263870]/ContainerEntity"
  7678. },
  7679. {
  7680. "op": "add",
  7681. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/12",
  7682. "value": "Instance_[295495496366526]/ContainerEntity"
  7683. },
  7684. {
  7685. "op": "add",
  7686. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/13",
  7687. "value": "Instance_[295452546693566]/ContainerEntity"
  7688. },
  7689. {
  7690. "op": "add",
  7691. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/14",
  7692. "value": "Instance_[295499791333822]/ContainerEntity"
  7693. },
  7694. {
  7695. "op": "add",
  7696. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/15",
  7697. "value": "Instance_[295538446039486]/ContainerEntity"
  7698. },
  7699. {
  7700. "op": "add",
  7701. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/16",
  7702. "value": "Instance_[295534151072190]/ContainerEntity"
  7703. },
  7704. {
  7705. "op": "replace",
  7706. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  7707. "value": "Instance_[259937462122942]/ContainerEntity"
  7708. },
  7709. {
  7710. "op": "replace",
  7711. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  7712. "value": "Instance_[259984706763198]/ContainerEntity"
  7713. },
  7714. {
  7715. "op": "replace",
  7716. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  7717. "value": "Instance_[260040541338046]/ContainerEntity"
  7718. },
  7719. {
  7720. "op": "replace",
  7721. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  7722. "value": "Instance_[260001886632382]/ContainerEntity"
  7723. },
  7724. {
  7725. "op": "replace",
  7726. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  7727. "value": "Instance_[260023361468862]/ContainerEntity"
  7728. },
  7729. {
  7730. "op": "replace",
  7731. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  7732. "value": "Instance_[259989001730494]/ContainerEntity"
  7733. },
  7734. {
  7735. "op": "replace",
  7736. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  7737. "value": "Instance_[260306829310398]/ContainerEntity"
  7738. },
  7739. {
  7740. "op": "replace",
  7741. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  7742. "value": "Instance_[260293944408510]/ContainerEntity"
  7743. },
  7744. {
  7745. "op": "remove",
  7746. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  7747. },
  7748. {
  7749. "op": "remove",
  7750. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  7751. },
  7752. {
  7753. "op": "remove",
  7754. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  7755. },
  7756. {
  7757. "op": "remove",
  7758. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/8"
  7759. },
  7760. {
  7761. "op": "remove",
  7762. "path": "/Entities/Entity_[367745436219838]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  7763. },
  7764. {
  7765. "op": "remove",
  7766. "path": "/Entities/Entity_[367745436219838]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  7767. }
  7768. ]
  7769. },
  7770. "Instance_[1666765615901579]": {
  7771. "Source": "Prefabs/Warehouse_storage/Storage_rack1.prefab",
  7772. "Patches": [
  7773. {
  7774. "op": "replace",
  7775. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Parent Entity",
  7776. "value": "../Entity_[996074954059266]"
  7777. },
  7778. {
  7779. "op": "replace",
  7780. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Translate/0",
  7781. "value": 8.671731948852539
  7782. },
  7783. {
  7784. "op": "replace",
  7785. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Translate/1",
  7786. "value": -9.075700759887695
  7787. },
  7788. {
  7789. "op": "replace",
  7790. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Rotate/2",
  7791. "value": -89.99994659423828
  7792. },
  7793. {
  7794. "op": "replace",
  7795. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  7796. "value": "Entity_[72088477497790]"
  7797. },
  7798. {
  7799. "op": "replace",
  7800. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  7801. "value": "Entity_[72092772465086]"
  7802. },
  7803. {
  7804. "op": "replace",
  7805. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  7806. "value": "Entity_[72079887563198]"
  7807. },
  7808. {
  7809. "op": "remove",
  7810. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/7"
  7811. },
  7812. {
  7813. "op": "remove",
  7814. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/6"
  7815. },
  7816. {
  7817. "op": "remove",
  7818. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  7819. },
  7820. {
  7821. "op": "remove",
  7822. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  7823. },
  7824. {
  7825. "op": "remove",
  7826. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  7827. },
  7828. {
  7829. "op": "replace",
  7830. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  7831. "value": "Instance_[71500066978238]/ContainerEntity"
  7832. },
  7833. {
  7834. "op": "replace",
  7835. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  7836. "value": "Instance_[71470002207166]/ContainerEntity"
  7837. },
  7838. {
  7839. "op": "replace",
  7840. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  7841. "value": "Instance_[71504361945534]/ContainerEntity"
  7842. },
  7843. {
  7844. "op": "replace",
  7845. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  7846. "value": "Instance_[71448527370686]/ContainerEntity"
  7847. },
  7848. {
  7849. "op": "replace",
  7850. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  7851. "value": "Instance_[71414167632318]/ContainerEntity"
  7852. },
  7853. {
  7854. "op": "replace",
  7855. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  7856. "value": "Instance_[71465707239870]/ContainerEntity"
  7857. },
  7858. {
  7859. "op": "replace",
  7860. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  7861. "value": "Instance_[71461412272574]/ContainerEntity"
  7862. },
  7863. {
  7864. "op": "replace",
  7865. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  7866. "value": "Instance_[71422757566910]/ContainerEntity"
  7867. },
  7868. {
  7869. "op": "replace",
  7870. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  7871. "value": "Instance_[71396987763134]/ContainerEntity"
  7872. },
  7873. {
  7874. "op": "replace",
  7875. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  7876. "value": "Instance_[71457117305278]/ContainerEntity"
  7877. },
  7878. {
  7879. "op": "remove",
  7880. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/39"
  7881. },
  7882. {
  7883. "op": "remove",
  7884. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/38"
  7885. },
  7886. {
  7887. "op": "remove",
  7888. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/37"
  7889. },
  7890. {
  7891. "op": "remove",
  7892. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/36"
  7893. },
  7894. {
  7895. "op": "remove",
  7896. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/35"
  7897. },
  7898. {
  7899. "op": "remove",
  7900. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/34"
  7901. },
  7902. {
  7903. "op": "remove",
  7904. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/33"
  7905. },
  7906. {
  7907. "op": "remove",
  7908. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/32"
  7909. },
  7910. {
  7911. "op": "remove",
  7912. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/31"
  7913. },
  7914. {
  7915. "op": "remove",
  7916. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/30"
  7917. },
  7918. {
  7919. "op": "remove",
  7920. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/29"
  7921. },
  7922. {
  7923. "op": "remove",
  7924. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/28"
  7925. },
  7926. {
  7927. "op": "remove",
  7928. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/27"
  7929. },
  7930. {
  7931. "op": "remove",
  7932. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/26"
  7933. },
  7934. {
  7935. "op": "remove",
  7936. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/25"
  7937. },
  7938. {
  7939. "op": "remove",
  7940. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/24"
  7941. },
  7942. {
  7943. "op": "remove",
  7944. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  7945. },
  7946. {
  7947. "op": "remove",
  7948. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  7949. },
  7950. {
  7951. "op": "remove",
  7952. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  7953. },
  7954. {
  7955. "op": "remove",
  7956. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  7957. },
  7958. {
  7959. "op": "remove",
  7960. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  7961. },
  7962. {
  7963. "op": "remove",
  7964. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  7965. },
  7966. {
  7967. "op": "remove",
  7968. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  7969. },
  7970. {
  7971. "op": "remove",
  7972. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  7973. },
  7974. {
  7975. "op": "remove",
  7976. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  7977. },
  7978. {
  7979. "op": "remove",
  7980. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  7981. },
  7982. {
  7983. "op": "remove",
  7984. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  7985. },
  7986. {
  7987. "op": "remove",
  7988. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  7989. },
  7990. {
  7991. "op": "remove",
  7992. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  7993. },
  7994. {
  7995. "op": "remove",
  7996. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  7997. },
  7998. {
  7999. "op": "remove",
  8000. "path": "/Entities/Entity_[72084182530494]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  8001. },
  8002. {
  8003. "op": "remove",
  8004. "path": "/Entities/Entity_[72084182530494]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  8005. },
  8006. {
  8007. "op": "replace",
  8008. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  8009. "value": "Instance_[71371217959358]/ContainerEntity"
  8010. },
  8011. {
  8012. "op": "replace",
  8013. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  8014. "value": "Instance_[71478592141758]/ContainerEntity"
  8015. },
  8016. {
  8017. "op": "replace",
  8018. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  8019. "value": "Instance_[71379807893950]/ContainerEntity"
  8020. },
  8021. {
  8022. "op": "replace",
  8023. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  8024. "value": "Instance_[71388397828542]/ContainerEntity"
  8025. },
  8026. {
  8027. "op": "replace",
  8028. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  8029. "value": "Instance_[71431347501502]/ContainerEntity"
  8030. },
  8031. {
  8032. "op": "replace",
  8033. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  8034. "value": "Instance_[71439937436094]/ContainerEntity"
  8035. },
  8036. {
  8037. "op": "replace",
  8038. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  8039. "value": "Instance_[71427052534206]/ContainerEntity"
  8040. },
  8041. {
  8042. "op": "replace",
  8043. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  8044. "value": "Instance_[71409872665022]/ContainerEntity"
  8045. },
  8046. {
  8047. "op": "replace",
  8048. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  8049. "value": "Instance_[71487182076350]/ContainerEntity"
  8050. },
  8051. {
  8052. "op": "replace",
  8053. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  8054. "value": "Instance_[71405577697726]/ContainerEntity"
  8055. },
  8056. {
  8057. "op": "remove",
  8058. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  8059. },
  8060. {
  8061. "op": "remove",
  8062. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  8063. },
  8064. {
  8065. "op": "remove",
  8066. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  8067. },
  8068. {
  8069. "op": "remove",
  8070. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  8071. },
  8072. {
  8073. "op": "remove",
  8074. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  8075. },
  8076. {
  8077. "op": "remove",
  8078. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  8079. },
  8080. {
  8081. "op": "remove",
  8082. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  8083. },
  8084. {
  8085. "op": "remove",
  8086. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  8087. },
  8088. {
  8089. "op": "remove",
  8090. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  8091. },
  8092. {
  8093. "op": "remove",
  8094. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  8095. },
  8096. {
  8097. "op": "replace",
  8098. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  8099. "value": "Instance_[71384102861246]/ContainerEntity"
  8100. },
  8101. {
  8102. "op": "replace",
  8103. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  8104. "value": "Instance_[71392692795838]/ContainerEntity"
  8105. },
  8106. {
  8107. "op": "replace",
  8108. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  8109. "value": "Instance_[71444232403390]/ContainerEntity"
  8110. },
  8111. {
  8112. "op": "replace",
  8113. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  8114. "value": "Instance_[71495772010942]/ContainerEntity"
  8115. },
  8116. {
  8117. "op": "replace",
  8118. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  8119. "value": "Instance_[71482887109054]/ContainerEntity"
  8120. },
  8121. {
  8122. "op": "replace",
  8123. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  8124. "value": "Instance_[71435642468798]/ContainerEntity"
  8125. },
  8126. {
  8127. "op": "replace",
  8128. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  8129. "value": "Instance_[71452822337982]/ContainerEntity"
  8130. },
  8131. {
  8132. "op": "replace",
  8133. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  8134. "value": "Instance_[71375512926654]/ContainerEntity"
  8135. },
  8136. {
  8137. "op": "replace",
  8138. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  8139. "value": "Instance_[71474297174462]/ContainerEntity"
  8140. },
  8141. {
  8142. "op": "remove",
  8143. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/28"
  8144. },
  8145. {
  8146. "op": "remove",
  8147. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/27"
  8148. },
  8149. {
  8150. "op": "remove",
  8151. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/26"
  8152. },
  8153. {
  8154. "op": "remove",
  8155. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/25"
  8156. },
  8157. {
  8158. "op": "remove",
  8159. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/24"
  8160. },
  8161. {
  8162. "op": "remove",
  8163. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  8164. },
  8165. {
  8166. "op": "remove",
  8167. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  8168. },
  8169. {
  8170. "op": "remove",
  8171. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  8172. },
  8173. {
  8174. "op": "remove",
  8175. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  8176. },
  8177. {
  8178. "op": "remove",
  8179. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  8180. },
  8181. {
  8182. "op": "remove",
  8183. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  8184. },
  8185. {
  8186. "op": "remove",
  8187. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  8188. },
  8189. {
  8190. "op": "remove",
  8191. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  8192. },
  8193. {
  8194. "op": "remove",
  8195. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  8196. },
  8197. {
  8198. "op": "remove",
  8199. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  8200. },
  8201. {
  8202. "op": "remove",
  8203. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  8204. },
  8205. {
  8206. "op": "remove",
  8207. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  8208. },
  8209. {
  8210. "op": "remove",
  8211. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  8212. },
  8213. {
  8214. "op": "remove",
  8215. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  8216. },
  8217. {
  8218. "op": "remove",
  8219. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  8220. }
  8221. ]
  8222. },
  8223. "Instance_[1667036198841227]": {
  8224. "Source": "Prefabs/Warehouse_storage/Storage_rack4.prefab",
  8225. "Patches": [
  8226. {
  8227. "op": "replace",
  8228. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Parent Entity",
  8229. "value": "../Entity_[996074954059266]"
  8230. },
  8231. {
  8232. "op": "replace",
  8233. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Translate/0",
  8234. "value": 11.772357940673828
  8235. },
  8236. {
  8237. "op": "replace",
  8238. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Translate/1",
  8239. "value": -9.075700759887695
  8240. },
  8241. {
  8242. "op": "replace",
  8243. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Rotate/2",
  8244. "value": -89.99994659423828
  8245. },
  8246. {
  8247. "op": "replace",
  8248. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  8249. "value": "Instance_[10201320632057]/ContainerEntity"
  8250. },
  8251. {
  8252. "op": "replace",
  8253. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  8254. "value": "Instance_[10179845795577]/ContainerEntity"
  8255. },
  8256. {
  8257. "op": "replace",
  8258. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  8259. "value": "Instance_[10111126318841]/ContainerEntity"
  8260. },
  8261. {
  8262. "op": "replace",
  8263. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  8264. "value": "Instance_[10162665926393]/ContainerEntity"
  8265. },
  8266. {
  8267. "op": "replace",
  8268. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  8269. "value": "Instance_[10115421286137]/ContainerEntity"
  8270. },
  8271. {
  8272. "op": "replace",
  8273. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  8274. "value": "Instance_[10145486057209]/ContainerEntity"
  8275. },
  8276. {
  8277. "op": "replace",
  8278. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  8279. "value": "Instance_[10205615599353]/ContainerEntity"
  8280. },
  8281. {
  8282. "op": "replace",
  8283. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  8284. "value": "Instance_[10197025664761]/ContainerEntity"
  8285. },
  8286. {
  8287. "op": "replace",
  8288. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  8289. "value": "Instance_[10214205533945]/ContainerEntity"
  8290. },
  8291. {
  8292. "op": "remove",
  8293. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  8294. },
  8295. {
  8296. "op": "remove",
  8297. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  8298. },
  8299. {
  8300. "op": "remove",
  8301. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  8302. },
  8303. {
  8304. "op": "remove",
  8305. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  8306. },
  8307. {
  8308. "op": "remove",
  8309. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  8310. },
  8311. {
  8312. "op": "remove",
  8313. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  8314. },
  8315. {
  8316. "op": "remove",
  8317. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  8318. },
  8319. {
  8320. "op": "remove",
  8321. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  8322. },
  8323. {
  8324. "op": "remove",
  8325. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  8326. },
  8327. {
  8328. "op": "remove",
  8329. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  8330. },
  8331. {
  8332. "op": "remove",
  8333. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  8334. },
  8335. {
  8336. "op": "remove",
  8337. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  8338. },
  8339. {
  8340. "op": "remove",
  8341. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  8342. },
  8343. {
  8344. "op": "remove",
  8345. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  8346. },
  8347. {
  8348. "op": "remove",
  8349. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  8350. },
  8351. {
  8352. "op": "replace",
  8353. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  8354. "value": "Entity_[147885087239929]"
  8355. },
  8356. {
  8357. "op": "replace",
  8358. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  8359. "value": "Entity_[147876497305337]"
  8360. },
  8361. {
  8362. "op": "replace",
  8363. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  8364. "value": "Entity_[147880792272633]"
  8365. },
  8366. {
  8367. "op": "remove",
  8368. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/6"
  8369. },
  8370. {
  8371. "op": "remove",
  8372. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  8373. },
  8374. {
  8375. "op": "remove",
  8376. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  8377. },
  8378. {
  8379. "op": "remove",
  8380. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  8381. },
  8382. {
  8383. "op": "remove",
  8384. "path": "/Entities/Entity_[147893677174521]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  8385. },
  8386. {
  8387. "op": "remove",
  8388. "path": "/Entities/Entity_[147893677174521]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  8389. }
  8390. ]
  8391. },
  8392. "Instance_[1667238062304139]": {
  8393. "Source": "Prefabs/Warehouse_storage/Storage_rack3.prefab",
  8394. "Patches": [
  8395. {
  8396. "op": "replace",
  8397. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Parent Entity",
  8398. "value": "../Entity_[996074954059266]"
  8399. },
  8400. {
  8401. "op": "replace",
  8402. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Translate/0",
  8403. "value": 14.877618789672852
  8404. },
  8405. {
  8406. "op": "replace",
  8407. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Translate/1",
  8408. "value": -9.075700759887695
  8409. },
  8410. {
  8411. "op": "replace",
  8412. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Rotate/2",
  8413. "value": -89.99994659423828
  8414. },
  8415. {
  8416. "op": "replace",
  8417. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  8418. "value": "Instance_[259933167155646]/ContainerEntity"
  8419. },
  8420. {
  8421. "op": "replace",
  8422. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  8423. "value": "Instance_[259950347024830]/ContainerEntity"
  8424. },
  8425. {
  8426. "op": "replace",
  8427. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  8428. "value": "Instance_[260019066501566]/ContainerEntity"
  8429. },
  8430. {
  8431. "op": "replace",
  8432. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  8433. "value": "Instance_[260014771534270]/ContainerEntity"
  8434. },
  8435. {
  8436. "op": "replace",
  8437. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  8438. "value": "Instance_[259958936959422]/ContainerEntity"
  8439. },
  8440. {
  8441. "op": "replace",
  8442. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  8443. "value": "Instance_[259976116828606]/ContainerEntity"
  8444. },
  8445. {
  8446. "op": "remove",
  8447. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  8448. },
  8449. {
  8450. "op": "remove",
  8451. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  8452. },
  8453. {
  8454. "op": "remove",
  8455. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  8456. },
  8457. {
  8458. "op": "remove",
  8459. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  8460. },
  8461. {
  8462. "op": "remove",
  8463. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  8464. },
  8465. {
  8466. "op": "remove",
  8467. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  8468. },
  8469. {
  8470. "op": "remove",
  8471. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  8472. },
  8473. {
  8474. "op": "remove",
  8475. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  8476. },
  8477. {
  8478. "op": "remove",
  8479. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  8480. },
  8481. {
  8482. "op": "remove",
  8483. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  8484. },
  8485. {
  8486. "op": "remove",
  8487. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  8488. },
  8489. {
  8490. "op": "remove",
  8491. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  8492. },
  8493. {
  8494. "op": "remove",
  8495. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/8"
  8496. },
  8497. {
  8498. "op": "remove",
  8499. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/7"
  8500. },
  8501. {
  8502. "op": "remove",
  8503. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/6"
  8504. },
  8505. {
  8506. "op": "add",
  8507. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  8508. "value": "Instance_[295529856104894]/ContainerEntity"
  8509. },
  8510. {
  8511. "op": "add",
  8512. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  8513. "value": "Instance_[260431383361982]/ContainerEntity"
  8514. },
  8515. {
  8516. "op": "add",
  8517. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  8518. "value": "Instance_[295456841660862]/ContainerEntity"
  8519. },
  8520. {
  8521. "op": "add",
  8522. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  8523. "value": "Instance_[295491201399230]/ContainerEntity"
  8524. },
  8525. {
  8526. "op": "add",
  8527. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/10",
  8528. "value": "Instance_[295461136628158]/ContainerEntity"
  8529. },
  8530. {
  8531. "op": "add",
  8532. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/11",
  8533. "value": "Instance_[260444268263870]/ContainerEntity"
  8534. },
  8535. {
  8536. "op": "add",
  8537. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/12",
  8538. "value": "Instance_[295495496366526]/ContainerEntity"
  8539. },
  8540. {
  8541. "op": "add",
  8542. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/13",
  8543. "value": "Instance_[295452546693566]/ContainerEntity"
  8544. },
  8545. {
  8546. "op": "add",
  8547. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/14",
  8548. "value": "Instance_[295499791333822]/ContainerEntity"
  8549. },
  8550. {
  8551. "op": "add",
  8552. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/15",
  8553. "value": "Instance_[295538446039486]/ContainerEntity"
  8554. },
  8555. {
  8556. "op": "add",
  8557. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/16",
  8558. "value": "Instance_[295534151072190]/ContainerEntity"
  8559. },
  8560. {
  8561. "op": "replace",
  8562. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  8563. "value": "Instance_[259937462122942]/ContainerEntity"
  8564. },
  8565. {
  8566. "op": "replace",
  8567. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  8568. "value": "Instance_[259984706763198]/ContainerEntity"
  8569. },
  8570. {
  8571. "op": "replace",
  8572. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  8573. "value": "Instance_[260040541338046]/ContainerEntity"
  8574. },
  8575. {
  8576. "op": "replace",
  8577. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  8578. "value": "Instance_[260001886632382]/ContainerEntity"
  8579. },
  8580. {
  8581. "op": "replace",
  8582. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  8583. "value": "Instance_[260023361468862]/ContainerEntity"
  8584. },
  8585. {
  8586. "op": "replace",
  8587. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  8588. "value": "Instance_[259989001730494]/ContainerEntity"
  8589. },
  8590. {
  8591. "op": "replace",
  8592. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  8593. "value": "Instance_[260306829310398]/ContainerEntity"
  8594. },
  8595. {
  8596. "op": "replace",
  8597. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  8598. "value": "Instance_[260293944408510]/ContainerEntity"
  8599. },
  8600. {
  8601. "op": "remove",
  8602. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  8603. },
  8604. {
  8605. "op": "remove",
  8606. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  8607. },
  8608. {
  8609. "op": "remove",
  8610. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  8611. },
  8612. {
  8613. "op": "remove",
  8614. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/8"
  8615. },
  8616. {
  8617. "op": "remove",
  8618. "path": "/Entities/Entity_[367745436219838]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  8619. },
  8620. {
  8621. "op": "remove",
  8622. "path": "/Entities/Entity_[367745436219838]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  8623. }
  8624. ]
  8625. },
  8626. "Instance_[1667787818118027]": {
  8627. "Source": "Prefabs/Warehouse_storage/Storage_rack4.prefab",
  8628. "Patches": [
  8629. {
  8630. "op": "replace",
  8631. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Parent Entity",
  8632. "value": "../Entity_[996074954059266]"
  8633. },
  8634. {
  8635. "op": "replace",
  8636. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Translate/0",
  8637. "value": 5.568691253662109
  8638. },
  8639. {
  8640. "op": "replace",
  8641. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Translate/1",
  8642. "value": 10.1941499710083
  8643. },
  8644. {
  8645. "op": "replace",
  8646. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Rotate/2",
  8647. "value": 90.00000762939453
  8648. },
  8649. {
  8650. "op": "replace",
  8651. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  8652. "value": "Instance_[10201320632057]/ContainerEntity"
  8653. },
  8654. {
  8655. "op": "replace",
  8656. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  8657. "value": "Instance_[10179845795577]/ContainerEntity"
  8658. },
  8659. {
  8660. "op": "replace",
  8661. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  8662. "value": "Instance_[10111126318841]/ContainerEntity"
  8663. },
  8664. {
  8665. "op": "replace",
  8666. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  8667. "value": "Instance_[10162665926393]/ContainerEntity"
  8668. },
  8669. {
  8670. "op": "replace",
  8671. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  8672. "value": "Instance_[10115421286137]/ContainerEntity"
  8673. },
  8674. {
  8675. "op": "replace",
  8676. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  8677. "value": "Instance_[10145486057209]/ContainerEntity"
  8678. },
  8679. {
  8680. "op": "replace",
  8681. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  8682. "value": "Instance_[10205615599353]/ContainerEntity"
  8683. },
  8684. {
  8685. "op": "replace",
  8686. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  8687. "value": "Instance_[10197025664761]/ContainerEntity"
  8688. },
  8689. {
  8690. "op": "replace",
  8691. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  8692. "value": "Instance_[10214205533945]/ContainerEntity"
  8693. },
  8694. {
  8695. "op": "remove",
  8696. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  8697. },
  8698. {
  8699. "op": "remove",
  8700. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  8701. },
  8702. {
  8703. "op": "remove",
  8704. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  8705. },
  8706. {
  8707. "op": "remove",
  8708. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  8709. },
  8710. {
  8711. "op": "remove",
  8712. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  8713. },
  8714. {
  8715. "op": "remove",
  8716. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  8717. },
  8718. {
  8719. "op": "remove",
  8720. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  8721. },
  8722. {
  8723. "op": "remove",
  8724. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  8725. },
  8726. {
  8727. "op": "remove",
  8728. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  8729. },
  8730. {
  8731. "op": "remove",
  8732. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  8733. },
  8734. {
  8735. "op": "remove",
  8736. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  8737. },
  8738. {
  8739. "op": "remove",
  8740. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  8741. },
  8742. {
  8743. "op": "remove",
  8744. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  8745. },
  8746. {
  8747. "op": "remove",
  8748. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  8749. },
  8750. {
  8751. "op": "remove",
  8752. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  8753. },
  8754. {
  8755. "op": "replace",
  8756. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  8757. "value": "Entity_[147885087239929]"
  8758. },
  8759. {
  8760. "op": "replace",
  8761. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  8762. "value": "Entity_[147876497305337]"
  8763. },
  8764. {
  8765. "op": "replace",
  8766. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  8767. "value": "Entity_[147880792272633]"
  8768. },
  8769. {
  8770. "op": "remove",
  8771. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/6"
  8772. },
  8773. {
  8774. "op": "remove",
  8775. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  8776. },
  8777. {
  8778. "op": "remove",
  8779. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  8780. },
  8781. {
  8782. "op": "remove",
  8783. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  8784. },
  8785. {
  8786. "op": "remove",
  8787. "path": "/Entities/Entity_[147893677174521]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  8788. },
  8789. {
  8790. "op": "remove",
  8791. "path": "/Entities/Entity_[147893677174521]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  8792. }
  8793. ]
  8794. },
  8795. "Instance_[1667792113085323]": {
  8796. "Source": "Prefabs/Warehouse_storage/Storage_rack5.prefab",
  8797. "Patches": [
  8798. {
  8799. "op": "replace",
  8800. "path": "/ContainerEntity/Components/Component_[226710958716547824]/Parent Entity",
  8801. "value": "../Entity_[996074954059266]"
  8802. },
  8803. {
  8804. "op": "replace",
  8805. "path": "/ContainerEntity/Components/Component_[226710958716547824]/Transform Data/Translate/0",
  8806. "value": 2.464508056640625
  8807. },
  8808. {
  8809. "op": "replace",
  8810. "path": "/ContainerEntity/Components/Component_[226710958716547824]/Transform Data/Translate/1",
  8811. "value": 10.1941499710083
  8812. },
  8813. {
  8814. "op": "replace",
  8815. "path": "/ContainerEntity/Components/Component_[226710958716547824]/Transform Data/Rotate/2",
  8816. "value": 90.00000762939453
  8817. },
  8818. {
  8819. "op": "add",
  8820. "path": "/Entities/Entity_[339376204132089]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  8821. "value": "Instance_[292732859297529]/ContainerEntity"
  8822. },
  8823. {
  8824. "op": "add",
  8825. "path": "/Entities/Entity_[339376204132089]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  8826. "value": "Instance_[292737154264825]/ContainerEntity"
  8827. },
  8828. {
  8829. "op": "add",
  8830. "path": "/Entities/Entity_[339376204132089]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  8831. "value": "Instance_[292719974395641]/ContainerEntity"
  8832. },
  8833. {
  8834. "op": "add",
  8835. "path": "/Entities/Entity_[339380499099385]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  8836. "value": "Instance_[199742522371833]/ContainerEntity"
  8837. },
  8838. {
  8839. "op": "add",
  8840. "path": "/Entities/Entity_[339380499099385]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  8841. "value": "Instance_[246003615117049]/ContainerEntity"
  8842. },
  8843. {
  8844. "op": "add",
  8845. "path": "/Entities/Entity_[339380499099385]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  8846. "value": "Instance_[246016500018937]/ContainerEntity"
  8847. },
  8848. {
  8849. "op": "replace",
  8850. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  8851. "value": "Entity_[339380499099385]"
  8852. },
  8853. {
  8854. "op": "replace",
  8855. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  8856. "value": "Entity_[339389089033977]"
  8857. },
  8858. {
  8859. "op": "replace",
  8860. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  8861. "value": "Entity_[339376204132089]"
  8862. },
  8863. {
  8864. "op": "remove",
  8865. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  8866. },
  8867. {
  8868. "op": "remove",
  8869. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  8870. },
  8871. {
  8872. "op": "remove",
  8873. "path": "/Entities/Entity_[339384794066681]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  8874. },
  8875. {
  8876. "op": "add",
  8877. "path": "/Entities/Entity_[339389089033977]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  8878. "value": "Instance_[246059449691897]/ContainerEntity"
  8879. },
  8880. {
  8881. "op": "add",
  8882. "path": "/Entities/Entity_[339389089033977]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  8883. "value": "Instance_[246046564790009]/ContainerEntity"
  8884. },
  8885. {
  8886. "op": "add",
  8887. "path": "/Entities/Entity_[339389089033977]/Components/Component_[4058468385591425268]/Child Entity Order/10",
  8888. "value": "Instance_[246072334593785]/ContainerEntity"
  8889. }
  8890. ]
  8891. },
  8892. "Instance_[1667800703019915]": {
  8893. "Source": "Prefabs/Warehouse_storage/Storage_rack4.prefab",
  8894. "Patches": [
  8895. {
  8896. "op": "replace",
  8897. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Parent Entity",
  8898. "value": "../Entity_[996074954059266]"
  8899. },
  8900. {
  8901. "op": "replace",
  8902. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Translate/0",
  8903. "value": 14.892494201660156
  8904. },
  8905. {
  8906. "op": "replace",
  8907. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Translate/1",
  8908. "value": 10.1941499710083
  8909. },
  8910. {
  8911. "op": "replace",
  8912. "path": "/ContainerEntity/Components/Component_[8299323846030470908]/Transform Data/Rotate/2",
  8913. "value": 90.00000762939453
  8914. },
  8915. {
  8916. "op": "replace",
  8917. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  8918. "value": "Instance_[10201320632057]/ContainerEntity"
  8919. },
  8920. {
  8921. "op": "replace",
  8922. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  8923. "value": "Instance_[10179845795577]/ContainerEntity"
  8924. },
  8925. {
  8926. "op": "replace",
  8927. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  8928. "value": "Instance_[10111126318841]/ContainerEntity"
  8929. },
  8930. {
  8931. "op": "replace",
  8932. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  8933. "value": "Instance_[10162665926393]/ContainerEntity"
  8934. },
  8935. {
  8936. "op": "replace",
  8937. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  8938. "value": "Instance_[10115421286137]/ContainerEntity"
  8939. },
  8940. {
  8941. "op": "replace",
  8942. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  8943. "value": "Instance_[10145486057209]/ContainerEntity"
  8944. },
  8945. {
  8946. "op": "replace",
  8947. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  8948. "value": "Instance_[10205615599353]/ContainerEntity"
  8949. },
  8950. {
  8951. "op": "replace",
  8952. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  8953. "value": "Instance_[10197025664761]/ContainerEntity"
  8954. },
  8955. {
  8956. "op": "replace",
  8957. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  8958. "value": "Instance_[10214205533945]/ContainerEntity"
  8959. },
  8960. {
  8961. "op": "remove",
  8962. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  8963. },
  8964. {
  8965. "op": "remove",
  8966. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  8967. },
  8968. {
  8969. "op": "remove",
  8970. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  8971. },
  8972. {
  8973. "op": "remove",
  8974. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  8975. },
  8976. {
  8977. "op": "remove",
  8978. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  8979. },
  8980. {
  8981. "op": "remove",
  8982. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  8983. },
  8984. {
  8985. "op": "remove",
  8986. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  8987. },
  8988. {
  8989. "op": "remove",
  8990. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  8991. },
  8992. {
  8993. "op": "remove",
  8994. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  8995. },
  8996. {
  8997. "op": "remove",
  8998. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  8999. },
  9000. {
  9001. "op": "remove",
  9002. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  9003. },
  9004. {
  9005. "op": "remove",
  9006. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  9007. },
  9008. {
  9009. "op": "remove",
  9010. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  9011. },
  9012. {
  9013. "op": "remove",
  9014. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  9015. },
  9016. {
  9017. "op": "remove",
  9018. "path": "/Entities/Entity_[147876497305337]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  9019. },
  9020. {
  9021. "op": "replace",
  9022. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  9023. "value": "Entity_[147885087239929]"
  9024. },
  9025. {
  9026. "op": "replace",
  9027. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  9028. "value": "Entity_[147876497305337]"
  9029. },
  9030. {
  9031. "op": "replace",
  9032. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  9033. "value": "Entity_[147880792272633]"
  9034. },
  9035. {
  9036. "op": "remove",
  9037. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/6"
  9038. },
  9039. {
  9040. "op": "remove",
  9041. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  9042. },
  9043. {
  9044. "op": "remove",
  9045. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  9046. },
  9047. {
  9048. "op": "remove",
  9049. "path": "/Entities/Entity_[147889382207225]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  9050. },
  9051. {
  9052. "op": "remove",
  9053. "path": "/Entities/Entity_[147893677174521]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  9054. },
  9055. {
  9056. "op": "remove",
  9057. "path": "/Entities/Entity_[147893677174521]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  9058. }
  9059. ]
  9060. },
  9061. "Instance_[1667804997987211]": {
  9062. "Source": "Prefabs/Warehouse_storage/Storage_rack2.prefab",
  9063. "Patches": [
  9064. {
  9065. "op": "replace",
  9066. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Parent Entity",
  9067. "value": "../Entity_[996074954059266]"
  9068. },
  9069. {
  9070. "op": "replace",
  9071. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Translate/0",
  9072. "value": 8.67557144165039
  9073. },
  9074. {
  9075. "op": "replace",
  9076. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Translate/1",
  9077. "value": 10.1941499710083
  9078. },
  9079. {
  9080. "op": "replace",
  9081. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Rotate/2",
  9082. "value": 90.00000762939453
  9083. },
  9084. {
  9085. "op": "add",
  9086. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  9087. "value": "Instance_[151111580776894]/ContainerEntity"
  9088. },
  9089. {
  9090. "op": "add",
  9091. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  9092. "value": "Instance_[112224946878910]/ContainerEntity"
  9093. },
  9094. {
  9095. "op": "add",
  9096. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  9097. "value": "Instance_[151098695875006]/ContainerEntity"
  9098. },
  9099. {
  9100. "op": "add",
  9101. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  9102. "value": "Instance_[151085810973118]/ContainerEntity"
  9103. },
  9104. {
  9105. "op": "add",
  9106. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  9107. "value": "Instance_[112220651911614]/ContainerEntity"
  9108. },
  9109. {
  9110. "op": "add",
  9111. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  9112. "value": "Instance_[112229241846206]/ContainerEntity"
  9113. },
  9114. {
  9115. "op": "add",
  9116. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  9117. "value": "Instance_[112207767009726]/ContainerEntity"
  9118. },
  9119. {
  9120. "op": "add",
  9121. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  9122. "value": "Instance_[112194882107838]/ContainerEntity"
  9123. },
  9124. {
  9125. "op": "replace",
  9126. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  9127. "value": "Instance_[5971750943166]/ContainerEntity"
  9128. },
  9129. {
  9130. "op": "replace",
  9131. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  9132. "value": "Instance_[5997520746942]/ContainerEntity"
  9133. },
  9134. {
  9135. "op": "replace",
  9136. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  9137. "value": "Instance_[6027585518014]/ContainerEntity"
  9138. },
  9139. {
  9140. "op": "replace",
  9141. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  9142. "value": "Instance_[5984635845054]/ContainerEntity"
  9143. },
  9144. {
  9145. "op": "replace",
  9146. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  9147. "value": "Instance_[6010405648830]/ContainerEntity"
  9148. },
  9149. {
  9150. "op": "replace",
  9151. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  9152. "value": "Instance_[6023290550718]/ContainerEntity"
  9153. },
  9154. {
  9155. "op": "replace",
  9156. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  9157. "value": "Instance_[6122074798526]/ContainerEntity"
  9158. },
  9159. {
  9160. "op": "replace",
  9161. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  9162. "value": "Instance_[6096304994750]/ContainerEntity"
  9163. },
  9164. {
  9165. "op": "replace",
  9166. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  9167. "value": "Instance_[6104894929342]/ContainerEntity"
  9168. },
  9169. {
  9170. "op": "replace",
  9171. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  9172. "value": "Instance_[6117779831230]/ContainerEntity"
  9173. },
  9174. {
  9175. "op": "replace",
  9176. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/10",
  9177. "value": "Instance_[6126369765822]/ContainerEntity"
  9178. },
  9179. {
  9180. "op": "replace",
  9181. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/11",
  9182. "value": "Instance_[6113484863934]/ContainerEntity"
  9183. },
  9184. {
  9185. "op": "replace",
  9186. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/12",
  9187. "value": "Instance_[6109189896638]/ContainerEntity"
  9188. },
  9189. {
  9190. "op": "replace",
  9191. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/13",
  9192. "value": "Instance_[6134959700414]/ContainerEntity"
  9193. },
  9194. {
  9195. "op": "replace",
  9196. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/14",
  9197. "value": "Instance_[6100599962046]/ContainerEntity"
  9198. },
  9199. {
  9200. "op": "remove",
  9201. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  9202. },
  9203. {
  9204. "op": "remove",
  9205. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  9206. },
  9207. {
  9208. "op": "remove",
  9209. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  9210. },
  9211. {
  9212. "op": "remove",
  9213. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  9214. },
  9215. {
  9216. "op": "replace",
  9217. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  9218. "value": "Entity_[186489226394046]"
  9219. },
  9220. {
  9221. "op": "replace",
  9222. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  9223. "value": "Entity_[186484931426750]"
  9224. },
  9225. {
  9226. "op": "replace",
  9227. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  9228. "value": "Entity_[186480636459454]"
  9229. },
  9230. {
  9231. "op": "remove",
  9232. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  9233. },
  9234. {
  9235. "op": "remove",
  9236. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  9237. },
  9238. {
  9239. "op": "remove",
  9240. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  9241. },
  9242. {
  9243. "op": "remove",
  9244. "path": "/Entities/Entity_[186497816328638]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  9245. }
  9246. ]
  9247. },
  9248. "Instance_[1667817882889099]": {
  9249. "Source": "Prefabs/Warehouse_storage/Storage_rack2.prefab",
  9250. "Patches": [
  9251. {
  9252. "op": "replace",
  9253. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Parent Entity",
  9254. "value": "../Entity_[996074954059266]"
  9255. },
  9256. {
  9257. "op": "replace",
  9258. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Translate/0",
  9259. "value": -6.871879577636719
  9260. },
  9261. {
  9262. "op": "replace",
  9263. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Translate/1",
  9264. "value": 10.1941499710083
  9265. },
  9266. {
  9267. "op": "replace",
  9268. "path": "/ContainerEntity/Components/Component_[13145888225493921784]/Transform Data/Rotate/2",
  9269. "value": 90.00000762939453
  9270. },
  9271. {
  9272. "op": "add",
  9273. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  9274. "value": "Instance_[151111580776894]/ContainerEntity"
  9275. },
  9276. {
  9277. "op": "add",
  9278. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  9279. "value": "Instance_[112224946878910]/ContainerEntity"
  9280. },
  9281. {
  9282. "op": "add",
  9283. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  9284. "value": "Instance_[151098695875006]/ContainerEntity"
  9285. },
  9286. {
  9287. "op": "add",
  9288. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  9289. "value": "Instance_[151085810973118]/ContainerEntity"
  9290. },
  9291. {
  9292. "op": "add",
  9293. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  9294. "value": "Instance_[112220651911614]/ContainerEntity"
  9295. },
  9296. {
  9297. "op": "add",
  9298. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  9299. "value": "Instance_[112229241846206]/ContainerEntity"
  9300. },
  9301. {
  9302. "op": "add",
  9303. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  9304. "value": "Instance_[112207767009726]/ContainerEntity"
  9305. },
  9306. {
  9307. "op": "add",
  9308. "path": "/Entities/Entity_[186480636459454]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  9309. "value": "Instance_[112194882107838]/ContainerEntity"
  9310. },
  9311. {
  9312. "op": "replace",
  9313. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  9314. "value": "Instance_[5971750943166]/ContainerEntity"
  9315. },
  9316. {
  9317. "op": "replace",
  9318. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  9319. "value": "Instance_[5997520746942]/ContainerEntity"
  9320. },
  9321. {
  9322. "op": "replace",
  9323. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  9324. "value": "Instance_[6027585518014]/ContainerEntity"
  9325. },
  9326. {
  9327. "op": "replace",
  9328. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  9329. "value": "Instance_[5984635845054]/ContainerEntity"
  9330. },
  9331. {
  9332. "op": "replace",
  9333. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  9334. "value": "Instance_[6010405648830]/ContainerEntity"
  9335. },
  9336. {
  9337. "op": "replace",
  9338. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  9339. "value": "Instance_[6023290550718]/ContainerEntity"
  9340. },
  9341. {
  9342. "op": "replace",
  9343. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  9344. "value": "Instance_[6122074798526]/ContainerEntity"
  9345. },
  9346. {
  9347. "op": "replace",
  9348. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  9349. "value": "Instance_[6096304994750]/ContainerEntity"
  9350. },
  9351. {
  9352. "op": "replace",
  9353. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  9354. "value": "Instance_[6104894929342]/ContainerEntity"
  9355. },
  9356. {
  9357. "op": "replace",
  9358. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  9359. "value": "Instance_[6117779831230]/ContainerEntity"
  9360. },
  9361. {
  9362. "op": "replace",
  9363. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/10",
  9364. "value": "Instance_[6126369765822]/ContainerEntity"
  9365. },
  9366. {
  9367. "op": "replace",
  9368. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/11",
  9369. "value": "Instance_[6113484863934]/ContainerEntity"
  9370. },
  9371. {
  9372. "op": "replace",
  9373. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/12",
  9374. "value": "Instance_[6109189896638]/ContainerEntity"
  9375. },
  9376. {
  9377. "op": "replace",
  9378. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/13",
  9379. "value": "Instance_[6134959700414]/ContainerEntity"
  9380. },
  9381. {
  9382. "op": "replace",
  9383. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/14",
  9384. "value": "Instance_[6100599962046]/ContainerEntity"
  9385. },
  9386. {
  9387. "op": "remove",
  9388. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  9389. },
  9390. {
  9391. "op": "remove",
  9392. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  9393. },
  9394. {
  9395. "op": "remove",
  9396. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  9397. },
  9398. {
  9399. "op": "remove",
  9400. "path": "/Entities/Entity_[186484931426750]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  9401. },
  9402. {
  9403. "op": "replace",
  9404. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  9405. "value": "Entity_[186489226394046]"
  9406. },
  9407. {
  9408. "op": "replace",
  9409. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  9410. "value": "Entity_[186484931426750]"
  9411. },
  9412. {
  9413. "op": "replace",
  9414. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  9415. "value": "Entity_[186480636459454]"
  9416. },
  9417. {
  9418. "op": "remove",
  9419. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  9420. },
  9421. {
  9422. "op": "remove",
  9423. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  9424. },
  9425. {
  9426. "op": "remove",
  9427. "path": "/Entities/Entity_[186493521361342]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  9428. },
  9429. {
  9430. "op": "remove",
  9431. "path": "/Entities/Entity_[186497816328638]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  9432. }
  9433. ]
  9434. },
  9435. "Instance_[1667826472823691]": {
  9436. "Source": "Prefabs/Warehouse_storage/Storage_rack1.prefab",
  9437. "Patches": [
  9438. {
  9439. "op": "replace",
  9440. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Parent Entity",
  9441. "value": "../Entity_[996074954059266]"
  9442. },
  9443. {
  9444. "op": "replace",
  9445. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Translate/0",
  9446. "value": -3.776836395263672
  9447. },
  9448. {
  9449. "op": "replace",
  9450. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Translate/1",
  9451. "value": 10.1941499710083
  9452. },
  9453. {
  9454. "op": "replace",
  9455. "path": "/ContainerEntity/Components/Component_[1543914289413346359]/Transform Data/Rotate/2",
  9456. "value": 90.00000762939453
  9457. },
  9458. {
  9459. "op": "replace",
  9460. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/0",
  9461. "value": "Entity_[72088477497790]"
  9462. },
  9463. {
  9464. "op": "replace",
  9465. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/1",
  9466. "value": "Entity_[72092772465086]"
  9467. },
  9468. {
  9469. "op": "replace",
  9470. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/2",
  9471. "value": "Entity_[72079887563198]"
  9472. },
  9473. {
  9474. "op": "remove",
  9475. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/7"
  9476. },
  9477. {
  9478. "op": "remove",
  9479. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/6"
  9480. },
  9481. {
  9482. "op": "remove",
  9483. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/5"
  9484. },
  9485. {
  9486. "op": "remove",
  9487. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/4"
  9488. },
  9489. {
  9490. "op": "remove",
  9491. "path": "/Entities/Entity_[72075592595902]/Components/Component_[13951741074857396852]/Child Entity Order/3"
  9492. },
  9493. {
  9494. "op": "replace",
  9495. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  9496. "value": "Instance_[71500066978238]/ContainerEntity"
  9497. },
  9498. {
  9499. "op": "replace",
  9500. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  9501. "value": "Instance_[71470002207166]/ContainerEntity"
  9502. },
  9503. {
  9504. "op": "replace",
  9505. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  9506. "value": "Instance_[71504361945534]/ContainerEntity"
  9507. },
  9508. {
  9509. "op": "replace",
  9510. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  9511. "value": "Instance_[71448527370686]/ContainerEntity"
  9512. },
  9513. {
  9514. "op": "replace",
  9515. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  9516. "value": "Instance_[71414167632318]/ContainerEntity"
  9517. },
  9518. {
  9519. "op": "replace",
  9520. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  9521. "value": "Instance_[71465707239870]/ContainerEntity"
  9522. },
  9523. {
  9524. "op": "replace",
  9525. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  9526. "value": "Instance_[71461412272574]/ContainerEntity"
  9527. },
  9528. {
  9529. "op": "replace",
  9530. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  9531. "value": "Instance_[71422757566910]/ContainerEntity"
  9532. },
  9533. {
  9534. "op": "replace",
  9535. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  9536. "value": "Instance_[71396987763134]/ContainerEntity"
  9537. },
  9538. {
  9539. "op": "replace",
  9540. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  9541. "value": "Instance_[71457117305278]/ContainerEntity"
  9542. },
  9543. {
  9544. "op": "remove",
  9545. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/39"
  9546. },
  9547. {
  9548. "op": "remove",
  9549. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/38"
  9550. },
  9551. {
  9552. "op": "remove",
  9553. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/37"
  9554. },
  9555. {
  9556. "op": "remove",
  9557. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/36"
  9558. },
  9559. {
  9560. "op": "remove",
  9561. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/35"
  9562. },
  9563. {
  9564. "op": "remove",
  9565. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/34"
  9566. },
  9567. {
  9568. "op": "remove",
  9569. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/33"
  9570. },
  9571. {
  9572. "op": "remove",
  9573. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/32"
  9574. },
  9575. {
  9576. "op": "remove",
  9577. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/31"
  9578. },
  9579. {
  9580. "op": "remove",
  9581. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/30"
  9582. },
  9583. {
  9584. "op": "remove",
  9585. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/29"
  9586. },
  9587. {
  9588. "op": "remove",
  9589. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/28"
  9590. },
  9591. {
  9592. "op": "remove",
  9593. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/27"
  9594. },
  9595. {
  9596. "op": "remove",
  9597. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/26"
  9598. },
  9599. {
  9600. "op": "remove",
  9601. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/25"
  9602. },
  9603. {
  9604. "op": "remove",
  9605. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/24"
  9606. },
  9607. {
  9608. "op": "remove",
  9609. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  9610. },
  9611. {
  9612. "op": "remove",
  9613. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  9614. },
  9615. {
  9616. "op": "remove",
  9617. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  9618. },
  9619. {
  9620. "op": "remove",
  9621. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  9622. },
  9623. {
  9624. "op": "remove",
  9625. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  9626. },
  9627. {
  9628. "op": "remove",
  9629. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  9630. },
  9631. {
  9632. "op": "remove",
  9633. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  9634. },
  9635. {
  9636. "op": "remove",
  9637. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  9638. },
  9639. {
  9640. "op": "remove",
  9641. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  9642. },
  9643. {
  9644. "op": "remove",
  9645. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  9646. },
  9647. {
  9648. "op": "remove",
  9649. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  9650. },
  9651. {
  9652. "op": "remove",
  9653. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  9654. },
  9655. {
  9656. "op": "remove",
  9657. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  9658. },
  9659. {
  9660. "op": "remove",
  9661. "path": "/Entities/Entity_[72079887563198]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  9662. },
  9663. {
  9664. "op": "remove",
  9665. "path": "/Entities/Entity_[72084182530494]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  9666. },
  9667. {
  9668. "op": "remove",
  9669. "path": "/Entities/Entity_[72084182530494]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  9670. },
  9671. {
  9672. "op": "replace",
  9673. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  9674. "value": "Instance_[71371217959358]/ContainerEntity"
  9675. },
  9676. {
  9677. "op": "replace",
  9678. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  9679. "value": "Instance_[71478592141758]/ContainerEntity"
  9680. },
  9681. {
  9682. "op": "replace",
  9683. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  9684. "value": "Instance_[71379807893950]/ContainerEntity"
  9685. },
  9686. {
  9687. "op": "replace",
  9688. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  9689. "value": "Instance_[71388397828542]/ContainerEntity"
  9690. },
  9691. {
  9692. "op": "replace",
  9693. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  9694. "value": "Instance_[71431347501502]/ContainerEntity"
  9695. },
  9696. {
  9697. "op": "replace",
  9698. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  9699. "value": "Instance_[71439937436094]/ContainerEntity"
  9700. },
  9701. {
  9702. "op": "replace",
  9703. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  9704. "value": "Instance_[71427052534206]/ContainerEntity"
  9705. },
  9706. {
  9707. "op": "replace",
  9708. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  9709. "value": "Instance_[71409872665022]/ContainerEntity"
  9710. },
  9711. {
  9712. "op": "replace",
  9713. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  9714. "value": "Instance_[71487182076350]/ContainerEntity"
  9715. },
  9716. {
  9717. "op": "replace",
  9718. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  9719. "value": "Instance_[71405577697726]/ContainerEntity"
  9720. },
  9721. {
  9722. "op": "remove",
  9723. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  9724. },
  9725. {
  9726. "op": "remove",
  9727. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  9728. },
  9729. {
  9730. "op": "remove",
  9731. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  9732. },
  9733. {
  9734. "op": "remove",
  9735. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  9736. },
  9737. {
  9738. "op": "remove",
  9739. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  9740. },
  9741. {
  9742. "op": "remove",
  9743. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  9744. },
  9745. {
  9746. "op": "remove",
  9747. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  9748. },
  9749. {
  9750. "op": "remove",
  9751. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  9752. },
  9753. {
  9754. "op": "remove",
  9755. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  9756. },
  9757. {
  9758. "op": "remove",
  9759. "path": "/Entities/Entity_[72088477497790]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  9760. },
  9761. {
  9762. "op": "replace",
  9763. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  9764. "value": "Instance_[71384102861246]/ContainerEntity"
  9765. },
  9766. {
  9767. "op": "replace",
  9768. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  9769. "value": "Instance_[71392692795838]/ContainerEntity"
  9770. },
  9771. {
  9772. "op": "replace",
  9773. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  9774. "value": "Instance_[71444232403390]/ContainerEntity"
  9775. },
  9776. {
  9777. "op": "replace",
  9778. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  9779. "value": "Instance_[71495772010942]/ContainerEntity"
  9780. },
  9781. {
  9782. "op": "replace",
  9783. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  9784. "value": "Instance_[71482887109054]/ContainerEntity"
  9785. },
  9786. {
  9787. "op": "replace",
  9788. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  9789. "value": "Instance_[71435642468798]/ContainerEntity"
  9790. },
  9791. {
  9792. "op": "replace",
  9793. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  9794. "value": "Instance_[71452822337982]/ContainerEntity"
  9795. },
  9796. {
  9797. "op": "replace",
  9798. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  9799. "value": "Instance_[71375512926654]/ContainerEntity"
  9800. },
  9801. {
  9802. "op": "replace",
  9803. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  9804. "value": "Instance_[71474297174462]/ContainerEntity"
  9805. },
  9806. {
  9807. "op": "remove",
  9808. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/28"
  9809. },
  9810. {
  9811. "op": "remove",
  9812. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/27"
  9813. },
  9814. {
  9815. "op": "remove",
  9816. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/26"
  9817. },
  9818. {
  9819. "op": "remove",
  9820. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/25"
  9821. },
  9822. {
  9823. "op": "remove",
  9824. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/24"
  9825. },
  9826. {
  9827. "op": "remove",
  9828. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/23"
  9829. },
  9830. {
  9831. "op": "remove",
  9832. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/22"
  9833. },
  9834. {
  9835. "op": "remove",
  9836. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/21"
  9837. },
  9838. {
  9839. "op": "remove",
  9840. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  9841. },
  9842. {
  9843. "op": "remove",
  9844. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  9845. },
  9846. {
  9847. "op": "remove",
  9848. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  9849. },
  9850. {
  9851. "op": "remove",
  9852. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  9853. },
  9854. {
  9855. "op": "remove",
  9856. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  9857. },
  9858. {
  9859. "op": "remove",
  9860. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  9861. },
  9862. {
  9863. "op": "remove",
  9864. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  9865. },
  9866. {
  9867. "op": "remove",
  9868. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  9869. },
  9870. {
  9871. "op": "remove",
  9872. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  9873. },
  9874. {
  9875. "op": "remove",
  9876. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  9877. },
  9878. {
  9879. "op": "remove",
  9880. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  9881. },
  9882. {
  9883. "op": "remove",
  9884. "path": "/Entities/Entity_[72092772465086]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  9885. }
  9886. ]
  9887. },
  9888. "Instance_[1667835062758283]": {
  9889. "Source": "Prefabs/Warehouse_storage/Storage_rack3.prefab",
  9890. "Patches": [
  9891. {
  9892. "op": "replace",
  9893. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Parent Entity",
  9894. "value": "../Entity_[996074954059266]"
  9895. },
  9896. {
  9897. "op": "replace",
  9898. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Translate/0",
  9899. "value": 11.787233352661133
  9900. },
  9901. {
  9902. "op": "replace",
  9903. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Translate/1",
  9904. "value": 10.1941499710083
  9905. },
  9906. {
  9907. "op": "replace",
  9908. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Rotate/2",
  9909. "value": 90.00000762939453
  9910. },
  9911. {
  9912. "op": "replace",
  9913. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  9914. "value": "Instance_[259933167155646]/ContainerEntity"
  9915. },
  9916. {
  9917. "op": "replace",
  9918. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  9919. "value": "Instance_[259950347024830]/ContainerEntity"
  9920. },
  9921. {
  9922. "op": "replace",
  9923. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  9924. "value": "Instance_[260019066501566]/ContainerEntity"
  9925. },
  9926. {
  9927. "op": "replace",
  9928. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  9929. "value": "Instance_[260014771534270]/ContainerEntity"
  9930. },
  9931. {
  9932. "op": "replace",
  9933. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  9934. "value": "Instance_[259958936959422]/ContainerEntity"
  9935. },
  9936. {
  9937. "op": "replace",
  9938. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  9939. "value": "Instance_[259976116828606]/ContainerEntity"
  9940. },
  9941. {
  9942. "op": "remove",
  9943. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  9944. },
  9945. {
  9946. "op": "remove",
  9947. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  9948. },
  9949. {
  9950. "op": "remove",
  9951. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  9952. },
  9953. {
  9954. "op": "remove",
  9955. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  9956. },
  9957. {
  9958. "op": "remove",
  9959. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  9960. },
  9961. {
  9962. "op": "remove",
  9963. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  9964. },
  9965. {
  9966. "op": "remove",
  9967. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  9968. },
  9969. {
  9970. "op": "remove",
  9971. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  9972. },
  9973. {
  9974. "op": "remove",
  9975. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  9976. },
  9977. {
  9978. "op": "remove",
  9979. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  9980. },
  9981. {
  9982. "op": "remove",
  9983. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  9984. },
  9985. {
  9986. "op": "remove",
  9987. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  9988. },
  9989. {
  9990. "op": "remove",
  9991. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/8"
  9992. },
  9993. {
  9994. "op": "remove",
  9995. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/7"
  9996. },
  9997. {
  9998. "op": "remove",
  9999. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/6"
  10000. },
  10001. {
  10002. "op": "add",
  10003. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  10004. "value": "Instance_[295529856104894]/ContainerEntity"
  10005. },
  10006. {
  10007. "op": "add",
  10008. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  10009. "value": "Instance_[260431383361982]/ContainerEntity"
  10010. },
  10011. {
  10012. "op": "add",
  10013. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  10014. "value": "Instance_[295456841660862]/ContainerEntity"
  10015. },
  10016. {
  10017. "op": "add",
  10018. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  10019. "value": "Instance_[295491201399230]/ContainerEntity"
  10020. },
  10021. {
  10022. "op": "add",
  10023. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/10",
  10024. "value": "Instance_[295461136628158]/ContainerEntity"
  10025. },
  10026. {
  10027. "op": "add",
  10028. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/11",
  10029. "value": "Instance_[260444268263870]/ContainerEntity"
  10030. },
  10031. {
  10032. "op": "add",
  10033. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/12",
  10034. "value": "Instance_[295495496366526]/ContainerEntity"
  10035. },
  10036. {
  10037. "op": "add",
  10038. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/13",
  10039. "value": "Instance_[295452546693566]/ContainerEntity"
  10040. },
  10041. {
  10042. "op": "add",
  10043. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/14",
  10044. "value": "Instance_[295499791333822]/ContainerEntity"
  10045. },
  10046. {
  10047. "op": "add",
  10048. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/15",
  10049. "value": "Instance_[295538446039486]/ContainerEntity"
  10050. },
  10051. {
  10052. "op": "add",
  10053. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/16",
  10054. "value": "Instance_[295534151072190]/ContainerEntity"
  10055. },
  10056. {
  10057. "op": "replace",
  10058. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  10059. "value": "Instance_[259937462122942]/ContainerEntity"
  10060. },
  10061. {
  10062. "op": "replace",
  10063. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  10064. "value": "Instance_[259984706763198]/ContainerEntity"
  10065. },
  10066. {
  10067. "op": "replace",
  10068. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  10069. "value": "Instance_[260040541338046]/ContainerEntity"
  10070. },
  10071. {
  10072. "op": "replace",
  10073. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  10074. "value": "Instance_[260001886632382]/ContainerEntity"
  10075. },
  10076. {
  10077. "op": "replace",
  10078. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  10079. "value": "Instance_[260023361468862]/ContainerEntity"
  10080. },
  10081. {
  10082. "op": "replace",
  10083. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  10084. "value": "Instance_[259989001730494]/ContainerEntity"
  10085. },
  10086. {
  10087. "op": "replace",
  10088. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  10089. "value": "Instance_[260306829310398]/ContainerEntity"
  10090. },
  10091. {
  10092. "op": "replace",
  10093. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  10094. "value": "Instance_[260293944408510]/ContainerEntity"
  10095. },
  10096. {
  10097. "op": "remove",
  10098. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  10099. },
  10100. {
  10101. "op": "remove",
  10102. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  10103. },
  10104. {
  10105. "op": "remove",
  10106. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  10107. },
  10108. {
  10109. "op": "remove",
  10110. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/8"
  10111. },
  10112. {
  10113. "op": "remove",
  10114. "path": "/Entities/Entity_[367745436219838]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  10115. },
  10116. {
  10117. "op": "remove",
  10118. "path": "/Entities/Entity_[367745436219838]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  10119. }
  10120. ]
  10121. },
  10122. "Instance_[1667839357725579]": {
  10123. "Source": "Prefabs/Warehouse_storage/Storage_rack3.prefab",
  10124. "Patches": [
  10125. {
  10126. "op": "replace",
  10127. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Parent Entity",
  10128. "value": "../Entity_[996074954059266]"
  10129. },
  10130. {
  10131. "op": "replace",
  10132. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Translate/0",
  10133. "value": -0.6521949768066406
  10134. },
  10135. {
  10136. "op": "replace",
  10137. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Translate/1",
  10138. "value": 10.1941499710083
  10139. },
  10140. {
  10141. "op": "replace",
  10142. "path": "/ContainerEntity/Components/Component_[4386105510620949505]/Transform Data/Rotate/2",
  10143. "value": 90.00000762939453
  10144. },
  10145. {
  10146. "op": "replace",
  10147. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  10148. "value": "Instance_[259933167155646]/ContainerEntity"
  10149. },
  10150. {
  10151. "op": "replace",
  10152. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  10153. "value": "Instance_[259950347024830]/ContainerEntity"
  10154. },
  10155. {
  10156. "op": "replace",
  10157. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  10158. "value": "Instance_[260019066501566]/ContainerEntity"
  10159. },
  10160. {
  10161. "op": "replace",
  10162. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  10163. "value": "Instance_[260014771534270]/ContainerEntity"
  10164. },
  10165. {
  10166. "op": "replace",
  10167. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  10168. "value": "Instance_[259958936959422]/ContainerEntity"
  10169. },
  10170. {
  10171. "op": "replace",
  10172. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  10173. "value": "Instance_[259976116828606]/ContainerEntity"
  10174. },
  10175. {
  10176. "op": "remove",
  10177. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/20"
  10178. },
  10179. {
  10180. "op": "remove",
  10181. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/19"
  10182. },
  10183. {
  10184. "op": "remove",
  10185. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/18"
  10186. },
  10187. {
  10188. "op": "remove",
  10189. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/17"
  10190. },
  10191. {
  10192. "op": "remove",
  10193. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/16"
  10194. },
  10195. {
  10196. "op": "remove",
  10197. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/15"
  10198. },
  10199. {
  10200. "op": "remove",
  10201. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/14"
  10202. },
  10203. {
  10204. "op": "remove",
  10205. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/13"
  10206. },
  10207. {
  10208. "op": "remove",
  10209. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/12"
  10210. },
  10211. {
  10212. "op": "remove",
  10213. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  10214. },
  10215. {
  10216. "op": "remove",
  10217. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  10218. },
  10219. {
  10220. "op": "remove",
  10221. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  10222. },
  10223. {
  10224. "op": "remove",
  10225. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/8"
  10226. },
  10227. {
  10228. "op": "remove",
  10229. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/7"
  10230. },
  10231. {
  10232. "op": "remove",
  10233. "path": "/Entities/Entity_[367732551317950]/Components/Component_[4058468385591425268]/Child Entity Order/6"
  10234. },
  10235. {
  10236. "op": "add",
  10237. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  10238. "value": "Instance_[295529856104894]/ContainerEntity"
  10239. },
  10240. {
  10241. "op": "add",
  10242. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  10243. "value": "Instance_[260431383361982]/ContainerEntity"
  10244. },
  10245. {
  10246. "op": "add",
  10247. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/8",
  10248. "value": "Instance_[295456841660862]/ContainerEntity"
  10249. },
  10250. {
  10251. "op": "add",
  10252. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/9",
  10253. "value": "Instance_[295491201399230]/ContainerEntity"
  10254. },
  10255. {
  10256. "op": "add",
  10257. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/10",
  10258. "value": "Instance_[295461136628158]/ContainerEntity"
  10259. },
  10260. {
  10261. "op": "add",
  10262. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/11",
  10263. "value": "Instance_[260444268263870]/ContainerEntity"
  10264. },
  10265. {
  10266. "op": "add",
  10267. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/12",
  10268. "value": "Instance_[295495496366526]/ContainerEntity"
  10269. },
  10270. {
  10271. "op": "add",
  10272. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/13",
  10273. "value": "Instance_[295452546693566]/ContainerEntity"
  10274. },
  10275. {
  10276. "op": "add",
  10277. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/14",
  10278. "value": "Instance_[295499791333822]/ContainerEntity"
  10279. },
  10280. {
  10281. "op": "add",
  10282. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/15",
  10283. "value": "Instance_[295538446039486]/ContainerEntity"
  10284. },
  10285. {
  10286. "op": "add",
  10287. "path": "/Entities/Entity_[367736846285246]/Components/Component_[4058468385591425268]/Child Entity Order/16",
  10288. "value": "Instance_[295534151072190]/ContainerEntity"
  10289. },
  10290. {
  10291. "op": "replace",
  10292. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/0",
  10293. "value": "Instance_[259937462122942]/ContainerEntity"
  10294. },
  10295. {
  10296. "op": "replace",
  10297. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/1",
  10298. "value": "Instance_[259984706763198]/ContainerEntity"
  10299. },
  10300. {
  10301. "op": "replace",
  10302. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/2",
  10303. "value": "Instance_[260040541338046]/ContainerEntity"
  10304. },
  10305. {
  10306. "op": "replace",
  10307. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/3",
  10308. "value": "Instance_[260001886632382]/ContainerEntity"
  10309. },
  10310. {
  10311. "op": "replace",
  10312. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/4",
  10313. "value": "Instance_[260023361468862]/ContainerEntity"
  10314. },
  10315. {
  10316. "op": "replace",
  10317. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/5",
  10318. "value": "Instance_[259989001730494]/ContainerEntity"
  10319. },
  10320. {
  10321. "op": "replace",
  10322. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/6",
  10323. "value": "Instance_[260306829310398]/ContainerEntity"
  10324. },
  10325. {
  10326. "op": "replace",
  10327. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/7",
  10328. "value": "Instance_[260293944408510]/ContainerEntity"
  10329. },
  10330. {
  10331. "op": "remove",
  10332. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/11"
  10333. },
  10334. {
  10335. "op": "remove",
  10336. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/10"
  10337. },
  10338. {
  10339. "op": "remove",
  10340. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/9"
  10341. },
  10342. {
  10343. "op": "remove",
  10344. "path": "/Entities/Entity_[367741141252542]/Components/Component_[4058468385591425268]/Child Entity Order/8"
  10345. },
  10346. {
  10347. "op": "remove",
  10348. "path": "/Entities/Entity_[367745436219838]/Components/Component_[3937996073827386159]/Child Entity Order/3"
  10349. },
  10350. {
  10351. "op": "remove",
  10352. "path": "/Entities/Entity_[367745436219838]/Components/Component_[3937996073827386159]/Child Entity Order/2"
  10353. }
  10354. ]
  10355. },
  10356. "Instance_[1859274003677474]": {
  10357. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  10358. "Patches": [
  10359. {
  10360. "op": "replace",
  10361. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  10362. "value": "../Entity_[996062069157378]"
  10363. },
  10364. {
  10365. "op": "replace",
  10366. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  10367. "value": -37.12784957885742
  10368. },
  10369. {
  10370. "op": "replace",
  10371. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  10372. "value": 0.19962787628173828
  10373. }
  10374. ]
  10375. },
  10376. "Instance_[1859278298644770]": {
  10377. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  10378. "Patches": [
  10379. {
  10380. "op": "replace",
  10381. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  10382. "value": "../Entity_[996062069157378]"
  10383. },
  10384. {
  10385. "op": "replace",
  10386. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  10387. "value": -40.25891876220703
  10388. },
  10389. {
  10390. "op": "replace",
  10391. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  10392. "value": 0.19962787628173828
  10393. }
  10394. ]
  10395. },
  10396. "Instance_[1859282593612066]": {
  10397. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  10398. "Patches": [
  10399. {
  10400. "op": "replace",
  10401. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  10402. "value": "../Entity_[996062069157378]"
  10403. },
  10404. {
  10405. "op": "replace",
  10406. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  10407. "value": -43.31779479980469
  10408. },
  10409. {
  10410. "op": "replace",
  10411. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  10412. "value": 0.19962787628173828
  10413. }
  10414. ]
  10415. },
  10416. "Instance_[1924349502445405]": {
  10417. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_side_protector.prefab",
  10418. "Patches": [
  10419. {
  10420. "op": "replace",
  10421. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Parent Entity",
  10422. "value": "../Entity_[996135083601410]"
  10423. },
  10424. {
  10425. "op": "replace",
  10426. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/0",
  10427. "value": -3.9615635871887207
  10428. },
  10429. {
  10430. "op": "replace",
  10431. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/1",
  10432. "value": 3.893092155456543
  10433. },
  10434. {
  10435. "op": "replace",
  10436. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/2",
  10437. "value": -0.08320403099060059
  10438. },
  10439. {
  10440. "op": "replace",
  10441. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Rotate/2",
  10442. "value": 0.00001366034302918706
  10443. }
  10444. ]
  10445. },
  10446. "Instance_[1924353797412701]": {
  10447. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_side_protector.prefab",
  10448. "Patches": [
  10449. {
  10450. "op": "replace",
  10451. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Parent Entity",
  10452. "value": "../Entity_[996135083601410]"
  10453. },
  10454. {
  10455. "op": "replace",
  10456. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/0",
  10457. "value": -3.961561679840088
  10458. },
  10459. {
  10460. "op": "replace",
  10461. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/1",
  10462. "value": -2.7918169498443604
  10463. },
  10464. {
  10465. "op": "replace",
  10466. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/2",
  10467. "value": -0.08320403099060059
  10468. },
  10469. {
  10470. "op": "replace",
  10471. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Rotate/2",
  10472. "value": 0.00001366034302918706
  10473. }
  10474. ]
  10475. },
  10476. "Instance_[23128749713802]": {
  10477. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10478. "Patches": [
  10479. {
  10480. "op": "replace",
  10481. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10482. "value": "../Entity_[996113608764930]"
  10483. },
  10484. {
  10485. "op": "replace",
  10486. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10487. "value": -0.8065325021743774
  10488. },
  10489. {
  10490. "op": "replace",
  10491. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10492. "value": 4.698137283325195
  10493. },
  10494. {
  10495. "op": "replace",
  10496. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10497. "value": 8.107885360717773
  10498. }
  10499. ]
  10500. },
  10501. "Instance_[23223238994314]": {
  10502. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10503. "Patches": [
  10504. {
  10505. "op": "replace",
  10506. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10507. "value": "../Entity_[996113608764930]"
  10508. },
  10509. {
  10510. "op": "replace",
  10511. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10512. "value": -11.565778732299805
  10513. },
  10514. {
  10515. "op": "replace",
  10516. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10517. "value": 4.698137283325195
  10518. },
  10519. {
  10520. "op": "replace",
  10521. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10522. "value": 8.107885360717773
  10523. }
  10524. ]
  10525. },
  10526. "Instance_[23236123896202]": {
  10527. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10528. "Patches": [
  10529. {
  10530. "op": "replace",
  10531. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10532. "value": "../Entity_[996113608764930]"
  10533. },
  10534. {
  10535. "op": "replace",
  10536. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10537. "value": -0.8065325021743774
  10538. },
  10539. {
  10540. "op": "replace",
  10541. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10542. "value": 11.346572875976564
  10543. },
  10544. {
  10545. "op": "replace",
  10546. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10547. "value": 8.107885360717773
  10548. }
  10549. ]
  10550. },
  10551. "Instance_[23244713830794]": {
  10552. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10553. "Patches": [
  10554. {
  10555. "op": "replace",
  10556. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10557. "value": "../Entity_[996113608764930]"
  10558. },
  10559. {
  10560. "op": "replace",
  10561. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10562. "value": -11.565778732299805
  10563. },
  10564. {
  10565. "op": "replace",
  10566. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10567. "value": 11.346572875976564
  10568. },
  10569. {
  10570. "op": "replace",
  10571. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10572. "value": 8.107885360717773
  10573. }
  10574. ]
  10575. },
  10576. "Instance_[23279073569162]": {
  10577. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10578. "Patches": [
  10579. {
  10580. "op": "replace",
  10581. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10582. "value": "../Entity_[996113608764930]"
  10583. },
  10584. {
  10585. "op": "replace",
  10586. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10587. "value": -0.8158743381500244
  10588. },
  10589. {
  10590. "op": "replace",
  10591. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10592. "value": 17.255874633789063
  10593. },
  10594. {
  10595. "op": "replace",
  10596. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10597. "value": 8.107885360717773
  10598. },
  10599. {
  10600. "op": "replace",
  10601. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Rotate/0",
  10602. "value": -20.0
  10603. }
  10604. ]
  10605. },
  10606. "Instance_[23283368536458]": {
  10607. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10608. "Patches": [
  10609. {
  10610. "op": "replace",
  10611. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10612. "value": "../Entity_[996113608764930]"
  10613. },
  10614. {
  10615. "op": "replace",
  10616. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10617. "value": -11.177569389343262
  10618. },
  10619. {
  10620. "op": "replace",
  10621. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10622. "value": 17.255874633789063
  10623. },
  10624. {
  10625. "op": "replace",
  10626. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10627. "value": 8.107885360717773
  10628. },
  10629. {
  10630. "op": "replace",
  10631. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Rotate/0",
  10632. "value": -20.0
  10633. }
  10634. ]
  10635. },
  10636. "Instance_[23313433307530]": {
  10637. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10638. "Patches": [
  10639. {
  10640. "op": "replace",
  10641. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10642. "value": "../Entity_[996113608764930]"
  10643. },
  10644. {
  10645. "op": "replace",
  10646. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10647. "value": -30.217512130737305
  10648. },
  10649. {
  10650. "op": "replace",
  10651. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10652. "value": 4.698137283325195
  10653. },
  10654. {
  10655. "op": "replace",
  10656. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10657. "value": 8.107885360717773
  10658. }
  10659. ]
  10660. },
  10661. "Instance_[23317728274826]": {
  10662. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10663. "Patches": [
  10664. {
  10665. "op": "replace",
  10666. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10667. "value": "../Entity_[996113608764930]"
  10668. },
  10669. {
  10670. "op": "replace",
  10671. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10672. "value": -22.208717346191406
  10673. },
  10674. {
  10675. "op": "replace",
  10676. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10677. "value": 4.698137283325195
  10678. },
  10679. {
  10680. "op": "replace",
  10681. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10682. "value": 8.107885360717773
  10683. }
  10684. ]
  10685. },
  10686. "Instance_[23339203111306]": {
  10687. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10688. "Patches": [
  10689. {
  10690. "op": "replace",
  10691. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10692. "value": "../Entity_[996113608764930]"
  10693. },
  10694. {
  10695. "op": "replace",
  10696. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10697. "value": -30.217512130737305
  10698. },
  10699. {
  10700. "op": "replace",
  10701. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10702. "value": 11.357141494750977
  10703. },
  10704. {
  10705. "op": "replace",
  10706. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10707. "value": 8.107885360717773
  10708. }
  10709. ]
  10710. },
  10711. "Instance_[23343498078602]": {
  10712. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10713. "Patches": [
  10714. {
  10715. "op": "replace",
  10716. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10717. "value": "../Entity_[996113608764930]"
  10718. },
  10719. {
  10720. "op": "replace",
  10721. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10722. "value": -22.208717346191406
  10723. },
  10724. {
  10725. "op": "replace",
  10726. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10727. "value": 11.357141494750977
  10728. },
  10729. {
  10730. "op": "replace",
  10731. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10732. "value": 8.107885360717773
  10733. }
  10734. ]
  10735. },
  10736. "Instance_[23369267882378]": {
  10737. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10738. "Patches": [
  10739. {
  10740. "op": "replace",
  10741. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10742. "value": "../Entity_[996113608764930]"
  10743. },
  10744. {
  10745. "op": "replace",
  10746. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10747. "value": -21.495054244995117
  10748. },
  10749. {
  10750. "op": "replace",
  10751. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10752. "value": 17.255874633789063
  10753. },
  10754. {
  10755. "op": "replace",
  10756. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10757. "value": 8.107885360717773
  10758. },
  10759. {
  10760. "op": "replace",
  10761. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Rotate/0",
  10762. "value": -20.0
  10763. }
  10764. ]
  10765. },
  10766. "Instance_[23403627620746]": {
  10767. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10768. "Patches": [
  10769. {
  10770. "op": "replace",
  10771. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10772. "value": "../Entity_[996113608764930]"
  10773. },
  10774. {
  10775. "op": "replace",
  10776. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10777. "value": -31.71200180053711
  10778. },
  10779. {
  10780. "op": "replace",
  10781. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10782. "value": 17.255874633789063
  10783. },
  10784. {
  10785. "op": "replace",
  10786. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10787. "value": 8.107885360717773
  10788. },
  10789. {
  10790. "op": "replace",
  10791. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Rotate/0",
  10792. "value": -20.0
  10793. }
  10794. ]
  10795. },
  10796. "Instance_[23416512522634]": {
  10797. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10798. "Patches": [
  10799. {
  10800. "op": "replace",
  10801. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10802. "value": "../Entity_[996113608764930]"
  10803. },
  10804. {
  10805. "op": "replace",
  10806. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10807. "value": -0.8158743381500244
  10808. },
  10809. {
  10810. "op": "replace",
  10811. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10812. "value": -1.3544974327087402
  10813. },
  10814. {
  10815. "op": "replace",
  10816. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10817. "value": 8.107885360717773
  10818. },
  10819. {
  10820. "op": "replace",
  10821. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Rotate/0",
  10822. "value": 20.0
  10823. }
  10824. ]
  10825. },
  10826. "Instance_[23433692391818]": {
  10827. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10828. "Patches": [
  10829. {
  10830. "op": "replace",
  10831. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10832. "value": "../Entity_[996113608764930]"
  10833. },
  10834. {
  10835. "op": "replace",
  10836. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10837. "value": -21.495054244995117
  10838. },
  10839. {
  10840. "op": "replace",
  10841. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10842. "value": -1.3544974327087402
  10843. },
  10844. {
  10845. "op": "replace",
  10846. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10847. "value": 8.107885360717773
  10848. },
  10849. {
  10850. "op": "replace",
  10851. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Rotate/0",
  10852. "value": 20.0
  10853. }
  10854. ]
  10855. },
  10856. "Instance_[23437987359114]": {
  10857. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10858. "Patches": [
  10859. {
  10860. "op": "replace",
  10861. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10862. "value": "../Entity_[996113608764930]"
  10863. },
  10864. {
  10865. "op": "replace",
  10866. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10867. "value": -11.177569389343262
  10868. },
  10869. {
  10870. "op": "replace",
  10871. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10872. "value": -1.3544974327087402
  10873. },
  10874. {
  10875. "op": "replace",
  10876. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10877. "value": 8.107885360717773
  10878. },
  10879. {
  10880. "op": "replace",
  10881. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Rotate/0",
  10882. "value": 20.0
  10883. }
  10884. ]
  10885. },
  10886. "Instance_[23442282326410]": {
  10887. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10888. "Patches": [
  10889. {
  10890. "op": "replace",
  10891. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10892. "value": "../Entity_[996113608764930]"
  10893. },
  10894. {
  10895. "op": "replace",
  10896. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10897. "value": -31.71200180053711
  10898. },
  10899. {
  10900. "op": "replace",
  10901. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10902. "value": -1.3544974327087402
  10903. },
  10904. {
  10905. "op": "replace",
  10906. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10907. "value": 8.107885360717773
  10908. },
  10909. {
  10910. "op": "replace",
  10911. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Rotate/0",
  10912. "value": 20.0
  10913. }
  10914. ]
  10915. },
  10916. "Instance_[23506706835850]": {
  10917. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10918. "Patches": [
  10919. {
  10920. "op": "replace",
  10921. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10922. "value": "../Entity_[996113608764930]"
  10923. },
  10924. {
  10925. "op": "replace",
  10926. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10927. "value": -39.19920349121094
  10928. },
  10929. {
  10930. "op": "replace",
  10931. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10932. "value": 3.7106857299804688
  10933. },
  10934. {
  10935. "op": "replace",
  10936. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10937. "value": 8.107885360717773
  10938. },
  10939. {
  10940. "op": "replace",
  10941. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Rotate/2",
  10942. "value": 89.99994659423828
  10943. }
  10944. ]
  10945. },
  10946. "Instance_[23545361541514]": {
  10947. "Source": "Prefabs/Warehouse_structural/Components/Storage_GI_light.prefab",
  10948. "Patches": [
  10949. {
  10950. "op": "replace",
  10951. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Parent Entity",
  10952. "value": "../Entity_[996113608764930]"
  10953. },
  10954. {
  10955. "op": "replace",
  10956. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/0",
  10957. "value": -39.199195861816406
  10958. },
  10959. {
  10960. "op": "replace",
  10961. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/1",
  10962. "value": 10.957256317138672
  10963. },
  10964. {
  10965. "op": "replace",
  10966. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Translate/2",
  10967. "value": 8.107885360717773
  10968. },
  10969. {
  10970. "op": "replace",
  10971. "path": "/ContainerEntity/Components/Component_[1197716680588779752]/Transform Data/Rotate/2",
  10972. "value": 89.99994659423828
  10973. }
  10974. ]
  10975. },
  10976. "Instance_[2457863595720994]": {
  10977. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  10978. "Patches": [
  10979. {
  10980. "op": "replace",
  10981. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  10982. "value": "../Entity_[995885975498242]"
  10983. },
  10984. {
  10985. "op": "replace",
  10986. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  10987. "value": -2.925628662109375
  10988. },
  10989. {
  10990. "op": "replace",
  10991. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  10992. "value": 0.19962787628173828
  10993. }
  10994. ]
  10995. },
  10996. "Instance_[2457867890688290]": {
  10997. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  10998. "Patches": [
  10999. {
  11000. "op": "replace",
  11001. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11002. "value": "../Entity_[995885975498242]"
  11003. },
  11004. {
  11005. "op": "replace",
  11006. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11007. "value": -18.495830535888672
  11008. },
  11009. {
  11010. "op": "replace",
  11011. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11012. "value": 0.19962787628173828
  11013. }
  11014. ]
  11015. },
  11016. "Instance_[2457876480622882]": {
  11017. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11018. "Patches": [
  11019. {
  11020. "op": "replace",
  11021. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11022. "value": "../Entity_[995885975498242]"
  11023. },
  11024. {
  11025. "op": "replace",
  11026. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11027. "value": -6.046365737915039
  11028. },
  11029. {
  11030. "op": "replace",
  11031. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11032. "value": 0.19962787628173828
  11033. }
  11034. ]
  11035. },
  11036. "Instance_[2457880775590178]": {
  11037. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11038. "Patches": [
  11039. {
  11040. "op": "replace",
  11041. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11042. "value": "../Entity_[995885975498242]"
  11043. },
  11044. {
  11045. "op": "replace",
  11046. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11047. "value": -15.380401611328123
  11048. },
  11049. {
  11050. "op": "replace",
  11051. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11052. "value": 0.19962787628173828
  11053. }
  11054. ]
  11055. },
  11056. "Instance_[2457889365524770]": {
  11057. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11058. "Patches": [
  11059. {
  11060. "op": "replace",
  11061. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11062. "value": "../Entity_[995885975498242]"
  11063. },
  11064. {
  11065. "op": "replace",
  11066. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11067. "value": -24.71051597595215
  11068. },
  11069. {
  11070. "op": "replace",
  11071. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11072. "value": 0.19962787628173828
  11073. }
  11074. ]
  11075. },
  11076. "Instance_[2457893660492066]": {
  11077. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11078. "Patches": [
  11079. {
  11080. "op": "replace",
  11081. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11082. "value": "../Entity_[995885975498242]"
  11083. },
  11084. {
  11085. "op": "replace",
  11086. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11087. "value": -12.280981063842772
  11088. },
  11089. {
  11090. "op": "replace",
  11091. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11092. "value": 0.19962787628173828
  11093. }
  11094. ]
  11095. },
  11096. "Instance_[2457906545393954]": {
  11097. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11098. "Patches": [
  11099. {
  11100. "op": "replace",
  11101. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11102. "value": "../Entity_[995885975498242]"
  11103. },
  11104. {
  11105. "op": "replace",
  11106. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11107. "value": -21.601394653320313
  11108. },
  11109. {
  11110. "op": "replace",
  11111. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11112. "value": 0.19962787628173828
  11113. }
  11114. ]
  11115. },
  11116. "Instance_[2457915135328546]": {
  11117. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11118. "Patches": [
  11119. {
  11120. "op": "replace",
  11121. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11122. "value": "../Entity_[995885975498242]"
  11123. },
  11124. {
  11125. "op": "replace",
  11126. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11127. "value": -9.164655685424805
  11128. },
  11129. {
  11130. "op": "replace",
  11131. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11132. "value": 0.19962787628173828
  11133. }
  11134. ]
  11135. },
  11136. "Instance_[2457919430295842]": {
  11137. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11138. "Patches": [
  11139. {
  11140. "op": "replace",
  11141. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11142. "value": "../Entity_[995885975498242]"
  11143. },
  11144. {
  11145. "op": "replace",
  11146. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11147. "value": 0.10306549072265624
  11148. },
  11149. {
  11150. "op": "replace",
  11151. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11152. "value": 0.19962787628173828
  11153. }
  11154. ]
  11155. },
  11156. "Instance_[368108574611269]": {
  11157. "Source": "Prefabs/Warehouse_structural/Warehouse_Floor.prefab",
  11158. "Patches": [
  11159. {
  11160. "op": "replace",
  11161. "path": "/ContainerEntity/Components/Component_[13730770129766598217]/Parent Entity",
  11162. "value": "../Entity_[996096428895746]"
  11163. },
  11164. {
  11165. "op": "replace",
  11166. "path": "/Entities/Entity_[376147448073284]/Components/Component_[13299402086043239524]/HasNonUniformScale",
  11167. "value": true
  11168. }
  11169. ]
  11170. },
  11171. "Instance_[368117164545861]": {
  11172. "Source": "Prefabs/Warehouse_structural/Warehouse_Walls.prefab",
  11173. "Patches": [
  11174. {
  11175. "op": "replace",
  11176. "path": "/Entities/Entity_[463295006318240]/Components/Component_[17751943132203388929]/VisibilityFlag",
  11177. "value": true
  11178. },
  11179. {
  11180. "op": "replace",
  11181. "path": "/Entities/Entity_[463290711350944]/Components/Component_[3149718320647090514]/VisibilityFlag",
  11182. "value": true
  11183. },
  11184. {
  11185. "op": "replace",
  11186. "path": "/Entities/Entity_[463080257953440]/Components/Component_[3149718320647090514]/VisibilityFlag",
  11187. "value": true
  11188. },
  11189. {
  11190. "op": "replace",
  11191. "path": "/Entities/Entity_[375979944348740]/Components/Component_[7017245480046407512]/DisabledComponents",
  11192. "value": {
  11193. "Component_[10232715223514738948]": {
  11194. "$type": "AZ::Render::EditorMeshComponent",
  11195. "Id": 10232715223514738948,
  11196. "Controller": {
  11197. "Configuration": {
  11198. "ModelAsset": {
  11199. "assetId": {
  11200. "guid": "{995CFC9D-3583-51BC-B46E-4554DEF0650E}",
  11201. "subId": 269507228
  11202. },
  11203. "loadBehavior": "QueueLoad",
  11204. "assetHint": "assets/warehouse/models/warehouse_walls_front.azmodel"
  11205. },
  11206. "SortKey": 0,
  11207. "ExcludeFromReflectionCubeMaps": false,
  11208. "UseForwardPassIBLSpecular": false,
  11209. "IsRayTracingEnabled": true,
  11210. "IsAlwaysDynamic": false,
  11211. "LodType": 0,
  11212. "LodOverride": 0,
  11213. "MinimumScreenCoverage": 0.0009259259095415472,
  11214. "QualityDecayRate": 0.5
  11215. }
  11216. },
  11217. "meshStats": {}
  11218. },
  11219. "Component_[3790789121538053334]": {
  11220. "$type": "EditorMeshColliderComponent",
  11221. "Id": 3790789121538053334,
  11222. "ColliderConfiguration": {
  11223. "CollisionLayer": {
  11224. "Index": 0
  11225. },
  11226. "CollisionGroupId": {
  11227. "GroupId": "{00000000-0000-0000-0000-000000000000}"
  11228. },
  11229. "Visible": false,
  11230. "Trigger": false,
  11231. "Simulated": true,
  11232. "DummySimulated": false,
  11233. "InSceneQueries": true,
  11234. "Exclusive": true,
  11235. "Position": [
  11236. 0.0,
  11237. 0.0,
  11238. 0.0
  11239. ],
  11240. "Rotation": [
  11241. 0.0,
  11242. 0.0,
  11243. 0.0,
  11244. 1.0
  11245. ],
  11246. "MaterialSlots": {
  11247. "Slots": [
  11248. {
  11249. "Name": "MWarehouseModules",
  11250. "MaterialAsset": {
  11251. "assetId": {
  11252. "guid": "{00000000-0000-0000-0000-000000000000}",
  11253. "subId": 0
  11254. },
  11255. "loadBehavior": "QueueLoad",
  11256. "assetHint": ""
  11257. }
  11258. }
  11259. ]
  11260. },
  11261. "propertyVisibilityFlags": 255,
  11262. "ColliderTag": "",
  11263. "RestOffset": 0.0,
  11264. "ContactOffset": 0.019999999552965164
  11265. },
  11266. "ShapeConfiguration": {
  11267. "PhysicsAsset": {
  11268. "Asset": {
  11269. "assetId": {
  11270. "guid": "{995CFC9D-3583-51BC-B46E-4554DEF0650E}",
  11271. "subId": 2510506373
  11272. },
  11273. "loadBehavior": "QueueLoad",
  11274. "assetHint": "assets/warehouse/models/warehouse_walls_front.pxmesh"
  11275. },
  11276. "Configuration": {
  11277. "Scale": [
  11278. 1.0,
  11279. 1.0,
  11280. 1.0
  11281. ],
  11282. "PhysicsAsset": {
  11283. "assetId": {
  11284. "guid": "{995CFC9D-3583-51BC-B46E-4554DEF0650E}",
  11285. "subId": 2510506373
  11286. },
  11287. "loadBehavior": "QueueLoad",
  11288. "assetHint": "assets/warehouse/models/warehouse_walls_front.pxmesh"
  11289. },
  11290. "AssetScale": [
  11291. 1.0,
  11292. 1.0,
  11293. 1.0
  11294. ],
  11295. "UseMaterialsFromAsset": true,
  11296. "SubdivisionLevel": 4
  11297. }
  11298. },
  11299. "HasNonUniformScale": false,
  11300. "SubdivisionLevel": 4
  11301. },
  11302. "DebugDrawSettings": {
  11303. "LocallyEnabled": true
  11304. },
  11305. "ComponentMode": {},
  11306. "HasNonUniformScale": false
  11307. }
  11308. }
  11309. },
  11310. {
  11311. "op": "replace",
  11312. "path": "/Entities/Entity_[375979944348740]/Components/Component_[8212625672736002681]/PendingComponents",
  11313. "value": {
  11314. "Component_[11718397946111790072]": {
  11315. "$type": "EditorMaterialComponent",
  11316. "Id": 11718397946111790072,
  11317. "Controller": {
  11318. "Configuration": {
  11319. "materials": [
  11320. {
  11321. "Key": {
  11322. "lodIndex": 18446744073709551615,
  11323. "materialSlotStableId": 103484566
  11324. },
  11325. "Value": {
  11326. "MaterialAsset": {
  11327. "assetId": {
  11328. "guid": "{9FF0270B-8936-528A-89EC-3E73A01AF755}",
  11329. "subId": 0
  11330. },
  11331. "loadBehavior": "QueueLoad",
  11332. "assetHint": "assets/warehouse/materials/mwarehousemodules.azmaterial"
  11333. },
  11334. "PropertyOverrides": [],
  11335. "ModelUvOverrides": []
  11336. }
  11337. }
  11338. ]
  11339. }
  11340. },
  11341. "materialSlotsByLodEnabled": false
  11342. }
  11343. }
  11344. },
  11345. {
  11346. "op": "remove",
  11347. "path": "/Entities/Entity_[375979944348740]/Components/Component_[10232715223514738948]"
  11348. },
  11349. {
  11350. "op": "remove",
  11351. "path": "/Entities/Entity_[375979944348740]/Components/Component_[11718397946111790072]"
  11352. },
  11353. {
  11354. "op": "remove",
  11355. "path": "/Entities/Entity_[375979944348740]/Components/Component_[3790789121538053334]"
  11356. },
  11357. {
  11358. "op": "replace",
  11359. "path": "/ContainerEntity/Components/Component_[11130047813806589549]/Parent Entity",
  11360. "value": "../Entity_[996096428895746]"
  11361. }
  11362. ]
  11363. },
  11364. "Instance_[372106884808041]": {
  11365. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11366. "Patches": [
  11367. {
  11368. "op": "replace",
  11369. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11370. "value": 80.0
  11371. },
  11372. {
  11373. "op": "replace",
  11374. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11375. "value": "../Entity_[995984759746050]"
  11376. },
  11377. {
  11378. "op": "replace",
  11379. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11380. "value": 18.672874450683594
  11381. },
  11382. {
  11383. "op": "replace",
  11384. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11385. "value": -1.43389892578125
  11386. },
  11387. {
  11388. "op": "replace",
  11389. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11390. "value": 7.073646545410156
  11391. },
  11392. {
  11393. "op": "replace",
  11394. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11395. "value": 17.34310531616211
  11396. }
  11397. ]
  11398. },
  11399. "Instance_[378036721833821]": {
  11400. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11401. "Patches": [
  11402. {
  11403. "op": "replace",
  11404. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11405. "value": "../Entity_[996126493666818]"
  11406. },
  11407. {
  11408. "op": "replace",
  11409. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11410. "value": -35.964752197265625
  11411. },
  11412. {
  11413. "op": "replace",
  11414. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11415. "value": 0.19962787628173828
  11416. }
  11417. ]
  11418. },
  11419. "Instance_[378049606735709]": {
  11420. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11421. "Patches": [
  11422. {
  11423. "op": "replace",
  11424. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11425. "value": "../Entity_[996126493666818]"
  11426. },
  11427. {
  11428. "op": "replace",
  11429. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11430. "value": -23.606029510498047
  11431. },
  11432. {
  11433. "op": "replace",
  11434. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11435. "value": 0.19962787628173828
  11436. }
  11437. ]
  11438. },
  11439. "Instance_[378058196670301]": {
  11440. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11441. "Patches": [
  11442. {
  11443. "op": "replace",
  11444. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11445. "value": "../Entity_[996126493666818]"
  11446. },
  11447. {
  11448. "op": "replace",
  11449. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11450. "value": -23.606029510498047
  11451. },
  11452. {
  11453. "op": "replace",
  11454. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11455. "value": -1.9911556243896484
  11456. },
  11457. {
  11458. "op": "replace",
  11459. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  11460. "value": -179.99989318847656
  11461. }
  11462. ]
  11463. },
  11464. "Instance_[378062491637597]": {
  11465. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11466. "Patches": [
  11467. {
  11468. "op": "replace",
  11469. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11470. "value": "../Entity_[996126493666818]"
  11471. },
  11472. {
  11473. "op": "replace",
  11474. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11475. "value": -35.964752197265625
  11476. },
  11477. {
  11478. "op": "replace",
  11479. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11480. "value": -1.9911613464355469
  11481. },
  11482. {
  11483. "op": "replace",
  11484. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  11485. "value": -179.99989318847656
  11486. }
  11487. ]
  11488. },
  11489. "Instance_[378066786604893]": {
  11490. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11491. "Patches": [
  11492. {
  11493. "op": "replace",
  11494. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11495. "value": "../Entity_[996126493666818]"
  11496. },
  11497. {
  11498. "op": "replace",
  11499. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11500. "value": -26.699295043945313
  11501. },
  11502. {
  11503. "op": "replace",
  11504. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11505. "value": 0.19962787628173828
  11506. }
  11507. ]
  11508. },
  11509. "Instance_[378083966474077]": {
  11510. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11511. "Patches": [
  11512. {
  11513. "op": "replace",
  11514. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11515. "value": "../Entity_[996126493666818]"
  11516. },
  11517. {
  11518. "op": "replace",
  11519. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11520. "value": -29.804424285888672
  11521. },
  11522. {
  11523. "op": "replace",
  11524. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11525. "value": 0.19962787628173828
  11526. }
  11527. ]
  11528. },
  11529. "Instance_[378096851375965]": {
  11530. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11531. "Patches": [
  11532. {
  11533. "op": "replace",
  11534. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11535. "value": "../Entity_[996126493666818]"
  11536. },
  11537. {
  11538. "op": "replace",
  11539. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11540. "value": -32.87148666381836
  11541. },
  11542. {
  11543. "op": "replace",
  11544. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11545. "value": -1.9911603927612305
  11546. },
  11547. {
  11548. "op": "replace",
  11549. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  11550. "value": -179.99989318847656
  11551. }
  11552. ]
  11553. },
  11554. "Instance_[378105441310557]": {
  11555. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11556. "Patches": [
  11557. {
  11558. "op": "replace",
  11559. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11560. "value": "../Entity_[996126493666818]"
  11561. },
  11562. {
  11563. "op": "replace",
  11564. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11565. "value": -26.6956844329834
  11566. },
  11567. {
  11568. "op": "replace",
  11569. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11570. "value": -1.991157054901123
  11571. },
  11572. {
  11573. "op": "replace",
  11574. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  11575. "value": -179.99989318847656
  11576. }
  11577. ]
  11578. },
  11579. "Instance_[378114031245149]": {
  11580. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11581. "Patches": [
  11582. {
  11583. "op": "replace",
  11584. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11585. "value": "../Entity_[996126493666818]"
  11586. },
  11587. {
  11588. "op": "replace",
  11589. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11590. "value": -32.87509536743164
  11591. },
  11592. {
  11593. "op": "replace",
  11594. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11595. "value": 0.19962787628173828
  11596. }
  11597. ]
  11598. },
  11599. "Instance_[378131211114333]": {
  11600. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  11601. "Patches": [
  11602. {
  11603. "op": "replace",
  11604. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  11605. "value": "../Entity_[996126493666818]"
  11606. },
  11607. {
  11608. "op": "replace",
  11609. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  11610. "value": -29.766355514526367
  11611. },
  11612. {
  11613. "op": "replace",
  11614. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  11615. "value": -1.9911584854125977
  11616. },
  11617. {
  11618. "op": "replace",
  11619. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  11620. "value": -179.99989318847656
  11621. }
  11622. ]
  11623. },
  11624. "Instance_[379004602285417]": {
  11625. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11626. "Patches": [
  11627. {
  11628. "op": "replace",
  11629. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11630. "value": "../Entity_[995984759746050]"
  11631. },
  11632. {
  11633. "op": "replace",
  11634. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11635. "value": 8.695465087890625
  11636. },
  11637. {
  11638. "op": "replace",
  11639. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11640. "value": -1.43389892578125
  11641. },
  11642. {
  11643. "op": "replace",
  11644. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11645. "value": 7.073646545410156
  11646. },
  11647. {
  11648. "op": "replace",
  11649. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11650. "value": 17.34310531616211
  11651. },
  11652. {
  11653. "op": "replace",
  11654. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11655. "value": 80.0
  11656. }
  11657. ]
  11658. },
  11659. "Instance_[379017487187305]": {
  11660. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11661. "Patches": [
  11662. {
  11663. "op": "replace",
  11664. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11665. "value": "../Entity_[995984759746050]"
  11666. },
  11667. {
  11668. "op": "replace",
  11669. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11670. "value": -0.9611320495605468
  11671. },
  11672. {
  11673. "op": "replace",
  11674. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11675. "value": -1.43389892578125
  11676. },
  11677. {
  11678. "op": "replace",
  11679. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11680. "value": 7.073646545410156
  11681. },
  11682. {
  11683. "op": "replace",
  11684. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11685. "value": 17.34310531616211
  11686. },
  11687. {
  11688. "op": "replace",
  11689. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11690. "value": 80.0
  11691. }
  11692. ]
  11693. },
  11694. "Instance_[379030372089193]": {
  11695. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11696. "Patches": [
  11697. {
  11698. "op": "replace",
  11699. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11700. "value": "../Entity_[995984759746050]"
  11701. },
  11702. {
  11703. "op": "replace",
  11704. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11705. "value": -11.14780616760254
  11706. },
  11707. {
  11708. "op": "replace",
  11709. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11710. "value": -1.43389892578125
  11711. },
  11712. {
  11713. "op": "replace",
  11714. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11715. "value": 7.073646545410156
  11716. },
  11717. {
  11718. "op": "replace",
  11719. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11720. "value": 17.34310531616211
  11721. },
  11722. {
  11723. "op": "replace",
  11724. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11725. "value": 80.0
  11726. }
  11727. ]
  11728. },
  11729. "Instance_[379043256991081]": {
  11730. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11731. "Patches": [
  11732. {
  11733. "op": "replace",
  11734. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11735. "value": "../Entity_[995984759746050]"
  11736. },
  11737. {
  11738. "op": "replace",
  11739. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11740. "value": -21.102249145507813
  11741. },
  11742. {
  11743. "op": "replace",
  11744. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11745. "value": -1.43389892578125
  11746. },
  11747. {
  11748. "op": "replace",
  11749. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11750. "value": 7.073646545410156
  11751. },
  11752. {
  11753. "op": "replace",
  11754. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11755. "value": 17.34310531616211
  11756. },
  11757. {
  11758. "op": "replace",
  11759. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11760. "value": 80.0
  11761. }
  11762. ]
  11763. },
  11764. "Instance_[379056141892969]": {
  11765. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11766. "Patches": [
  11767. {
  11768. "op": "replace",
  11769. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11770. "value": 80.0
  11771. },
  11772. {
  11773. "op": "replace",
  11774. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11775. "value": "../Entity_[995984759746050]"
  11776. },
  11777. {
  11778. "op": "replace",
  11779. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11780. "value": -31.242164611816406
  11781. },
  11782. {
  11783. "op": "replace",
  11784. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11785. "value": -1.43389892578125
  11786. },
  11787. {
  11788. "op": "replace",
  11789. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11790. "value": 7.073646545410156
  11791. },
  11792. {
  11793. "op": "replace",
  11794. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11795. "value": 17.34310531616211
  11796. }
  11797. ]
  11798. },
  11799. "Instance_[379069026794857]": {
  11800. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11801. "Patches": [
  11802. {
  11803. "op": "replace",
  11804. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11805. "value": 80.0
  11806. },
  11807. {
  11808. "op": "replace",
  11809. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11810. "value": "../Entity_[995984759746050]"
  11811. },
  11812. {
  11813. "op": "replace",
  11814. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11815. "value": 8.695465087890625
  11816. },
  11817. {
  11818. "op": "replace",
  11819. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11820. "value": 18.035842895507813
  11821. },
  11822. {
  11823. "op": "replace",
  11824. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11825. "value": 7.073646545410156
  11826. },
  11827. {
  11828. "op": "replace",
  11829. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11830. "value": -17.85944175720215
  11831. }
  11832. ]
  11833. },
  11834. "Instance_[379073321762153]": {
  11835. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11836. "Patches": [
  11837. {
  11838. "op": "replace",
  11839. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11840. "value": "../Entity_[995984759746050]"
  11841. },
  11842. {
  11843. "op": "replace",
  11844. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11845. "value": -0.9611339569091796
  11846. },
  11847. {
  11848. "op": "replace",
  11849. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11850. "value": 18.035842895507813
  11851. },
  11852. {
  11853. "op": "replace",
  11854. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11855. "value": 7.073646545410156
  11856. },
  11857. {
  11858. "op": "replace",
  11859. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11860. "value": -17.85944175720215
  11861. },
  11862. {
  11863. "op": "replace",
  11864. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11865. "value": 80.0
  11866. }
  11867. ]
  11868. },
  11869. "Instance_[379077616729449]": {
  11870. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11871. "Patches": [
  11872. {
  11873. "op": "replace",
  11874. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11875. "value": 80.0
  11876. },
  11877. {
  11878. "op": "replace",
  11879. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11880. "value": "../Entity_[995984759746050]"
  11881. },
  11882. {
  11883. "op": "replace",
  11884. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11885. "value": -11.14780616760254
  11886. },
  11887. {
  11888. "op": "replace",
  11889. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11890. "value": 18.035842895507813
  11891. },
  11892. {
  11893. "op": "replace",
  11894. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11895. "value": 7.073646545410156
  11896. },
  11897. {
  11898. "op": "replace",
  11899. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11900. "value": -17.85944175720215
  11901. }
  11902. ]
  11903. },
  11904. "Instance_[379081911696745]": {
  11905. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11906. "Patches": [
  11907. {
  11908. "op": "replace",
  11909. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11910. "value": "../Entity_[995984759746050]"
  11911. },
  11912. {
  11913. "op": "replace",
  11914. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11915. "value": 18.672870635986328
  11916. },
  11917. {
  11918. "op": "replace",
  11919. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11920. "value": 18.035842895507813
  11921. },
  11922. {
  11923. "op": "replace",
  11924. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11925. "value": 7.073646545410156
  11926. },
  11927. {
  11928. "op": "replace",
  11929. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11930. "value": -17.85944175720215
  11931. },
  11932. {
  11933. "op": "replace",
  11934. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11935. "value": 80.0
  11936. }
  11937. ]
  11938. },
  11939. "Instance_[379086206664041]": {
  11940. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11941. "Patches": [
  11942. {
  11943. "op": "replace",
  11944. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11945. "value": 80.0
  11946. },
  11947. {
  11948. "op": "replace",
  11949. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11950. "value": "../Entity_[995984759746050]"
  11951. },
  11952. {
  11953. "op": "replace",
  11954. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11955. "value": -31.24216079711914
  11956. },
  11957. {
  11958. "op": "replace",
  11959. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11960. "value": 18.035842895507813
  11961. },
  11962. {
  11963. "op": "replace",
  11964. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  11965. "value": 7.073646545410156
  11966. },
  11967. {
  11968. "op": "replace",
  11969. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  11970. "value": -17.85944175720215
  11971. }
  11972. ]
  11973. },
  11974. "Instance_[379090501631337]": {
  11975. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  11976. "Patches": [
  11977. {
  11978. "op": "replace",
  11979. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  11980. "value": 80.0
  11981. },
  11982. {
  11983. "op": "replace",
  11984. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  11985. "value": "../Entity_[995984759746050]"
  11986. },
  11987. {
  11988. "op": "replace",
  11989. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  11990. "value": -21.102249145507813
  11991. },
  11992. {
  11993. "op": "replace",
  11994. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  11995. "value": 18.035842895507813
  11996. },
  11997. {
  11998. "op": "replace",
  11999. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  12000. "value": 7.073646545410156
  12001. },
  12002. {
  12003. "op": "replace",
  12004. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  12005. "value": -17.85944175720215
  12006. }
  12007. ]
  12008. },
  12009. "Instance_[383905159970153]": {
  12010. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  12011. "Patches": [
  12012. {
  12013. "op": "replace",
  12014. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  12015. "value": "../Entity_[995984759746050]"
  12016. },
  12017. {
  12018. "op": "replace",
  12019. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  12020. "value": 19.8397216796875
  12021. },
  12022. {
  12023. "op": "replace",
  12024. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  12025. "value": 8.162531852722168
  12026. },
  12027. {
  12028. "op": "replace",
  12029. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  12030. "value": 8.231513023376465
  12031. },
  12032. {
  12033. "op": "replace",
  12034. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  12035. "value": 0.00000822122638055589
  12036. },
  12037. {
  12038. "op": "replace",
  12039. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/1",
  12040. "value": 20.828462600708008
  12041. },
  12042. {
  12043. "op": "replace",
  12044. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/2",
  12045. "value": 89.99995422363281
  12046. },
  12047. {
  12048. "op": "replace",
  12049. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/UniformScale",
  12050. "value": 1.5
  12051. },
  12052. {
  12053. "op": "replace",
  12054. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  12055. "value": 100.0
  12056. }
  12057. ]
  12058. },
  12059. "Instance_[383918044872041]": {
  12060. "Source": "Prefabs/Warehouse_structural/Components/Wall_GI.prefab",
  12061. "Patches": [
  12062. {
  12063. "op": "replace",
  12064. "path": "/Entities/Entity_[138630885591220]/Components/Component_[14236052505126209256]/Controller/Configuration/Intensity",
  12065. "value": 150.0
  12066. },
  12067. {
  12068. "op": "replace",
  12069. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Parent Entity",
  12070. "value": "../Entity_[995984759746050]"
  12071. },
  12072. {
  12073. "op": "replace",
  12074. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/0",
  12075. "value": -37.103424072265625
  12076. },
  12077. {
  12078. "op": "replace",
  12079. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/1",
  12080. "value": 8.162531852722168
  12081. },
  12082. {
  12083. "op": "replace",
  12084. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Translate/2",
  12085. "value": 8.231513023376465
  12086. },
  12087. {
  12088. "op": "replace",
  12089. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/0",
  12090. "value": 0.000004550475750875194
  12091. },
  12092. {
  12093. "op": "replace",
  12094. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/1",
  12095. "value": -20.26268768310547
  12096. },
  12097. {
  12098. "op": "replace",
  12099. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/Rotate/2",
  12100. "value": 89.99994659423828
  12101. },
  12102. {
  12103. "op": "replace",
  12104. "path": "/ContainerEntity/Components/Component_[13192832100143011963]/Transform Data/UniformScale",
  12105. "value": 1.5
  12106. }
  12107. ]
  12108. },
  12109. "Instance_[402433164340738]": {
  12110. "Source": "Prefabs/Warehouse_storage/Components/WarehouseRack.prefab",
  12111. "Patches": [
  12112. {
  12113. "op": "replace",
  12114. "path": "/ContainerEntity/Components/Component_[15832779900574876777]/Parent Entity",
  12115. "value": "../Entity_[995954694974978]"
  12116. },
  12117. {
  12118. "op": "replace",
  12119. "path": "/ContainerEntity/Components/Component_[15832779900574876777]/Transform Data/Translate/0",
  12120. "value": 31.83595085144043
  12121. },
  12122. {
  12123. "op": "replace",
  12124. "path": "/ContainerEntity/Components/Component_[15832779900574876777]/Transform Data/Translate/1",
  12125. "value": 10.475499153137209
  12126. },
  12127. {
  12128. "op": "replace",
  12129. "path": "/ContainerEntity/Components/Component_[15832779900574876777]/Transform Data/Rotate/2",
  12130. "value": 89.99994659423828
  12131. }
  12132. ]
  12133. },
  12134. "Instance_[402446049242626]": {
  12135. "Source": "Prefabs/Warehouse_storage/Components/WarehouseRack.prefab",
  12136. "Patches": [
  12137. {
  12138. "op": "replace",
  12139. "path": "/ContainerEntity/Components/Component_[15832779900574876777]/Parent Entity",
  12140. "value": "../Entity_[995954694974978]"
  12141. },
  12142. {
  12143. "op": "replace",
  12144. "path": "/ContainerEntity/Components/Component_[15832779900574876777]/Transform Data/Translate/0",
  12145. "value": 35.052734375
  12146. },
  12147. {
  12148. "op": "replace",
  12149. "path": "/ContainerEntity/Components/Component_[15832779900574876777]/Transform Data/Translate/1",
  12150. "value": 10.475496292114258
  12151. },
  12152. {
  12153. "op": "replace",
  12154. "path": "/ContainerEntity/Components/Component_[15832779900574876777]/Transform Data/Rotate/2",
  12155. "value": 89.99994659423828
  12156. }
  12157. ]
  12158. },
  12159. "Instance_[411521315139074]": {
  12160. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12161. "Patches": [
  12162. {
  12163. "op": "replace",
  12164. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12165. "value": "../Entity_[996126493666818]"
  12166. },
  12167. {
  12168. "op": "replace",
  12169. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12170. "value": -9.741939544677734
  12171. },
  12172. {
  12173. "op": "replace",
  12174. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12175. "value": 2.819753885269165
  12176. },
  12177. {
  12178. "op": "replace",
  12179. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/2",
  12180. "value": -1.1175870895385742e-8
  12181. },
  12182. {
  12183. "op": "replace",
  12184. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  12185. "value": -89.99988555908203
  12186. }
  12187. ]
  12188. },
  12189. "Instance_[411525610106370]": {
  12190. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12191. "Patches": [
  12192. {
  12193. "op": "replace",
  12194. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12195. "value": "../Entity_[996126493666818]"
  12196. },
  12197. {
  12198. "op": "replace",
  12199. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12200. "value": -11.93272590637207
  12201. },
  12202. {
  12203. "op": "replace",
  12204. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12205. "value": 2.816145181655884
  12206. },
  12207. {
  12208. "op": "replace",
  12209. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/2",
  12210. "value": -1.1175870895385742e-8
  12211. },
  12212. {
  12213. "op": "replace",
  12214. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  12215. "value": 89.99994659423828
  12216. }
  12217. ]
  12218. },
  12219. "Instance_[411529905073666]": {
  12220. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12221. "Patches": [
  12222. {
  12223. "op": "replace",
  12224. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12225. "value": "../Entity_[996126493666818]"
  12226. },
  12227. {
  12228. "op": "replace",
  12229. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12230. "value": -9.741943359375
  12231. },
  12232. {
  12233. "op": "replace",
  12234. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12235. "value": -8.012200355529785
  12236. },
  12237. {
  12238. "op": "replace",
  12239. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/2",
  12240. "value": -1.1175870895385742e-8
  12241. },
  12242. {
  12243. "op": "replace",
  12244. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  12245. "value": -89.99988555908203
  12246. }
  12247. ]
  12248. },
  12249. "Instance_[411534200040962]": {
  12250. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12251. "Patches": [
  12252. {
  12253. "op": "remove",
  12254. "path": "/ContainerEntity/Components/Component_[14813767717040944203]/Child Entity Order/0"
  12255. },
  12256. {
  12257. "op": "replace",
  12258. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12259. "value": "../Entity_[996126493666818]"
  12260. },
  12261. {
  12262. "op": "replace",
  12263. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12264. "value": -9.741941452026367
  12265. },
  12266. {
  12267. "op": "replace",
  12268. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12269. "value": -14.17252254486084
  12270. },
  12271. {
  12272. "op": "replace",
  12273. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/2",
  12274. "value": -1.1175870895385742e-8
  12275. },
  12276. {
  12277. "op": "replace",
  12278. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  12279. "value": -89.99988555908203
  12280. },
  12281. {
  12282. "op": "remove",
  12283. "path": "/Entities/Entity_[1261736678621474]"
  12284. }
  12285. ]
  12286. },
  12287. "Instance_[411538495008258]": {
  12288. "Source": "Prefabs/Warehouse_storage/Storage_2x2_Pack2.prefab",
  12289. "Patches": [
  12290. {
  12291. "op": "replace",
  12292. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Parent Entity",
  12293. "value": "../Entity_[996092133928450]"
  12294. },
  12295. {
  12296. "op": "replace",
  12297. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Transform Data/Translate/0",
  12298. "value": 21.544225692749023
  12299. },
  12300. {
  12301. "op": "replace",
  12302. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Transform Data/Translate/1",
  12303. "value": -6.341175079345703
  12304. },
  12305. {
  12306. "op": "replace",
  12307. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Transform Data/Translate/2",
  12308. "value": -1.1175870895385742e-8
  12309. },
  12310. {
  12311. "op": "replace",
  12312. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Transform Data/Rotate/2",
  12313. "value": 89.99994659423828
  12314. }
  12315. ]
  12316. },
  12317. "Instance_[411542789975554]": {
  12318. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_side_protector.prefab",
  12319. "Patches": [
  12320. {
  12321. "op": "replace",
  12322. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Parent Entity",
  12323. "value": "../Entity_[996135083601410]"
  12324. },
  12325. {
  12326. "op": "replace",
  12327. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/0",
  12328. "value": 21.536848068237305
  12329. },
  12330. {
  12331. "op": "replace",
  12332. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/1",
  12333. "value": 4.0916547775268555
  12334. },
  12335. {
  12336. "op": "replace",
  12337. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/2",
  12338. "value": -0.08320401608943939
  12339. },
  12340. {
  12341. "op": "replace",
  12342. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Rotate/2",
  12343. "value": 89.99994659423828
  12344. }
  12345. ]
  12346. },
  12347. "Instance_[411547084942850]": {
  12348. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12349. "Patches": [
  12350. {
  12351. "op": "replace",
  12352. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12353. "value": "../Entity_[996126493666818]"
  12354. },
  12355. {
  12356. "op": "replace",
  12357. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12358. "value": -9.741942405700684
  12359. },
  12360. {
  12361. "op": "replace",
  12362. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12363. "value": -11.101851463317873
  12364. },
  12365. {
  12366. "op": "replace",
  12367. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/2",
  12368. "value": -1.1175870895385742e-8
  12369. },
  12370. {
  12371. "op": "replace",
  12372. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  12373. "value": -89.99988555908203
  12374. }
  12375. ]
  12376. },
  12377. "Instance_[411551379910146]": {
  12378. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12379. "Patches": [
  12380. {
  12381. "op": "replace",
  12382. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12383. "value": "../Entity_[996126493666818]"
  12384. },
  12385. {
  12386. "op": "replace",
  12387. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12388. "value": -11.932727813720703
  12389. },
  12390. {
  12391. "op": "replace",
  12392. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12393. "value": -0.2735118865966797
  12394. },
  12395. {
  12396. "op": "replace",
  12397. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/2",
  12398. "value": -1.1175870895385742e-8
  12399. },
  12400. {
  12401. "op": "replace",
  12402. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  12403. "value": 89.99994659423828
  12404. }
  12405. ]
  12406. },
  12407. "Instance_[411555674877442]": {
  12408. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12409. "Patches": [
  12410. {
  12411. "op": "replace",
  12412. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12413. "value": "../Entity_[996126493666818]"
  12414. },
  12415. {
  12416. "op": "replace",
  12417. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12418. "value": -11.93272590637207
  12419. },
  12420. {
  12421. "op": "replace",
  12422. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12423. "value": -11.105463981628418
  12424. },
  12425. {
  12426. "op": "replace",
  12427. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/2",
  12428. "value": -1.1175870895385742e-8
  12429. },
  12430. {
  12431. "op": "replace",
  12432. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  12433. "value": 89.99994659423828
  12434. }
  12435. ]
  12436. },
  12437. "Instance_[411559969844738]": {
  12438. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12439. "Patches": [
  12440. {
  12441. "op": "replace",
  12442. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12443. "value": "../Entity_[996126493666818]"
  12444. },
  12445. {
  12446. "op": "replace",
  12447. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12448. "value": -9.741938591003418
  12449. },
  12450. {
  12451. "op": "replace",
  12452. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12453. "value": -0.2735128402709961
  12454. },
  12455. {
  12456. "op": "replace",
  12457. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/2",
  12458. "value": -1.1175870895385742e-8
  12459. },
  12460. {
  12461. "op": "replace",
  12462. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  12463. "value": -89.99988555908203
  12464. }
  12465. ]
  12466. },
  12467. "Instance_[411564264812034]": {
  12468. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_side_protector.prefab",
  12469. "Patches": [
  12470. {
  12471. "op": "replace",
  12472. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Parent Entity",
  12473. "value": "../Entity_[996135083601410]"
  12474. },
  12475. {
  12476. "op": "replace",
  12477. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/0",
  12478. "value": 21.536849975585938
  12479. },
  12480. {
  12481. "op": "replace",
  12482. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/1",
  12483. "value": -2.889167547225952
  12484. },
  12485. {
  12486. "op": "replace",
  12487. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Translate/2",
  12488. "value": -0.08320401608943939
  12489. },
  12490. {
  12491. "op": "replace",
  12492. "path": "/ContainerEntity/Components/Component_[10442679396929814510]/Transform Data/Rotate/2",
  12493. "value": -89.99994659423828
  12494. }
  12495. ]
  12496. },
  12497. "Instance_[411568559779330]": {
  12498. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12499. "Patches": [
  12500. {
  12501. "op": "replace",
  12502. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12503. "value": "../Entity_[996126493666818]"
  12504. },
  12505. {
  12506. "op": "replace",
  12507. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12508. "value": -11.93272590637207
  12509. },
  12510. {
  12511. "op": "replace",
  12512. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12513. "value": -8.012198448181152
  12514. },
  12515. {
  12516. "op": "replace",
  12517. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/2",
  12518. "value": -1.1175870895385742e-8
  12519. },
  12520. {
  12521. "op": "replace",
  12522. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  12523. "value": 89.99994659423828
  12524. }
  12525. ]
  12526. },
  12527. "Instance_[411572854746626]": {
  12528. "Source": "Prefabs/Warehouse_storage/Storage_2x2_Pack3.prefab",
  12529. "Patches": [
  12530. {
  12531. "op": "replace",
  12532. "path": "/ContainerEntity/Components/Component_[5282531384285083817]/Parent Entity",
  12533. "value": "../Entity_[996092133928450]"
  12534. },
  12535. {
  12536. "op": "replace",
  12537. "path": "/ContainerEntity/Components/Component_[5282531384285083817]/Transform Data/Translate/0",
  12538. "value": 21.544225692749023
  12539. },
  12540. {
  12541. "op": "replace",
  12542. "path": "/ContainerEntity/Components/Component_[5282531384285083817]/Transform Data/Translate/1",
  12543. "value": 7.588147163391113
  12544. },
  12545. {
  12546. "op": "replace",
  12547. "path": "/ContainerEntity/Components/Component_[5282531384285083817]/Transform Data/Translate/2",
  12548. "value": -1.1175870895385742e-8
  12549. },
  12550. {
  12551. "op": "replace",
  12552. "path": "/ContainerEntity/Components/Component_[5282531384285083817]/Transform Data/Rotate/2",
  12553. "value": 89.99994659423828
  12554. }
  12555. ]
  12556. },
  12557. "Instance_[42112698098301]": {
  12558. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12559. "Patches": [
  12560. {
  12561. "op": "replace",
  12562. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12563. "value": "../Entity_[996122198699522]"
  12564. },
  12565. {
  12566. "op": "replace",
  12567. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  12568. "value": -7.477227210998535
  12569. }
  12570. ]
  12571. },
  12572. "Instance_[42116993065597]": {
  12573. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12574. "Patches": [
  12575. {
  12576. "op": "replace",
  12577. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12578. "value": "../Entity_[996122198699522]"
  12579. },
  12580. {
  12581. "op": "replace",
  12582. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  12583. "value": 7.444989204406738
  12584. },
  12585. {
  12586. "op": "replace",
  12587. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/2",
  12588. "value": -0.0096588134765625
  12589. }
  12590. ]
  12591. },
  12592. "Instance_[42121288032893]": {
  12593. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12594. "Patches": [
  12595. {
  12596. "op": "replace",
  12597. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12598. "value": "../Entity_[996122198699522]"
  12599. }
  12600. ]
  12601. },
  12602. "Instance_[42164237705853]": {
  12603. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12604. "Patches": [
  12605. {
  12606. "op": "replace",
  12607. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12608. "value": "../Entity_[995838730857986]"
  12609. },
  12610. {
  12611. "op": "replace",
  12612. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  12613. "value": 7.426568031311035
  12614. }
  12615. ]
  12616. },
  12617. "Instance_[42168532673149]": {
  12618. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12619. "Patches": [
  12620. {
  12621. "op": "replace",
  12622. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12623. "value": "../Entity_[995838730857986]"
  12624. }
  12625. ]
  12626. },
  12627. "Instance_[42172827640445]": {
  12628. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12629. "Patches": [
  12630. {
  12631. "op": "replace",
  12632. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12633. "value": "../Entity_[995838730857986]"
  12634. },
  12635. {
  12636. "op": "replace",
  12637. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  12638. "value": -7.480495452880859
  12639. }
  12640. ]
  12641. },
  12642. "Instance_[42215777313405]": {
  12643. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12644. "Patches": [
  12645. {
  12646. "op": "replace",
  12647. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12648. "value": "../Entity_[995967579876866]"
  12649. },
  12650. {
  12651. "op": "replace",
  12652. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  12653. "value": 7.418001174926758
  12654. }
  12655. ]
  12656. },
  12657. "Instance_[42220072280701]": {
  12658. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12659. "Patches": [
  12660. {
  12661. "op": "replace",
  12662. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12663. "value": "../Entity_[995967579876866]"
  12664. },
  12665. {
  12666. "op": "replace",
  12667. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  12668. "value": -7.496318817138672
  12669. },
  12670. {
  12671. "op": "replace",
  12672. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/2",
  12673. "value": -0.004523277282714844
  12674. }
  12675. ]
  12676. },
  12677. "Instance_[42224367247997]": {
  12678. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12679. "Patches": [
  12680. {
  12681. "op": "replace",
  12682. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12683. "value": "../Entity_[995967579876866]"
  12684. }
  12685. ]
  12686. },
  12687. "Instance_[42267316920957]": {
  12688. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12689. "Patches": [
  12690. {
  12691. "op": "replace",
  12692. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12693. "value": "../Entity_[996087838961154]"
  12694. },
  12695. {
  12696. "op": "replace",
  12697. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/0",
  12698. "value": 0.004425048828125
  12699. },
  12700. {
  12701. "op": "replace",
  12702. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  12703. "value": -7.498147964477539
  12704. },
  12705. {
  12706. "op": "replace",
  12707. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/2",
  12708. "value": 0.007918357849121094
  12709. }
  12710. ]
  12711. },
  12712. "Instance_[42271611888253]": {
  12713. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12714. "Patches": [
  12715. {
  12716. "op": "replace",
  12717. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12718. "value": "../Entity_[996087838961154]"
  12719. },
  12720. {
  12721. "op": "replace",
  12722. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/0",
  12723. "value": 0.02536773681640625
  12724. },
  12725. {
  12726. "op": "replace",
  12727. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  12728. "value": 7.447552680969238
  12729. }
  12730. ]
  12731. },
  12732. "Instance_[42275906855549]": {
  12733. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12734. "Patches": [
  12735. {
  12736. "op": "replace",
  12737. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12738. "value": "../Entity_[996087838961154]"
  12739. }
  12740. ]
  12741. },
  12742. "Instance_[42318856528509]": {
  12743. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12744. "Patches": [
  12745. {
  12746. "op": "replace",
  12747. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12748. "value": "../Entity_[995873090596354]"
  12749. },
  12750. {
  12751. "op": "replace",
  12752. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/0",
  12753. "value": -9.5367431640625e-7
  12754. }
  12755. ]
  12756. },
  12757. "Instance_[42323151495805]": {
  12758. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12759. "Patches": [
  12760. {
  12761. "op": "replace",
  12762. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12763. "value": "../Entity_[995873090596354]"
  12764. },
  12765. {
  12766. "op": "replace",
  12767. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/0",
  12768. "value": -0.009557723999023438
  12769. },
  12770. {
  12771. "op": "replace",
  12772. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  12773. "value": 7.452919960021973
  12774. },
  12775. {
  12776. "op": "replace",
  12777. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/2",
  12778. "value": 0.006000518798828125
  12779. }
  12780. ]
  12781. },
  12782. "Instance_[42327446463101]": {
  12783. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  12784. "Patches": [
  12785. {
  12786. "op": "replace",
  12787. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  12788. "value": "../Entity_[995873090596354]"
  12789. },
  12790. {
  12791. "op": "replace",
  12792. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/0",
  12793. "value": -9.5367431640625e-7
  12794. },
  12795. {
  12796. "op": "replace",
  12797. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  12798. "value": -7.520071983337402
  12799. }
  12800. ]
  12801. },
  12802. "Instance_[435067982304771]": {
  12803. "Source": "Prefabs/Warehouse_storage/Storage_2x2_Pack2.prefab",
  12804. "Patches": [
  12805. {
  12806. "op": "replace",
  12807. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Parent Entity",
  12808. "value": "../Entity_[996092133928450]"
  12809. },
  12810. {
  12811. "op": "replace",
  12812. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Transform Data/Translate/0",
  12813. "value": 5.718687534332275
  12814. },
  12815. {
  12816. "op": "replace",
  12817. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Transform Data/Translate/1",
  12818. "value": -2.803100347518921
  12819. },
  12820. {
  12821. "op": "replace",
  12822. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Transform Data/Rotate/2",
  12823. "value": 180.0
  12824. }
  12825. ]
  12826. },
  12827. "Instance_[435072277272067]": {
  12828. "Source": "Prefabs/Warehouse_storage/Storage_2x2_Pack1.prefab",
  12829. "Patches": [
  12830. {
  12831. "op": "replace",
  12832. "path": "/ContainerEntity/Components/Component_[8129882389223959288]/Parent Entity",
  12833. "value": "../Entity_[996092133928450]"
  12834. },
  12835. {
  12836. "op": "replace",
  12837. "path": "/ContainerEntity/Components/Component_[8129882389223959288]/Transform Data/Translate/0",
  12838. "value": -0.4792113304138184
  12839. },
  12840. {
  12841. "op": "replace",
  12842. "path": "/ContainerEntity/Components/Component_[8129882389223959288]/Transform Data/Translate/1",
  12843. "value": -2.803100347518921
  12844. },
  12845. {
  12846. "op": "replace",
  12847. "path": "/ContainerEntity/Components/Component_[8129882389223959288]/Transform Data/Rotate/2",
  12848. "value": 180.0
  12849. }
  12850. ]
  12851. },
  12852. "Instance_[437112386737667]": {
  12853. "Source": "Prefabs/Warehouse_storage/Storage_2x2_Pack3.prefab",
  12854. "Patches": [
  12855. {
  12856. "op": "replace",
  12857. "path": "/ContainerEntity/Components/Component_[5282531384285083817]/Parent Entity",
  12858. "value": "../Entity_[996092133928450]"
  12859. },
  12860. {
  12861. "op": "replace",
  12862. "path": "/ContainerEntity/Components/Component_[5282531384285083817]/Transform Data/Translate/0",
  12863. "value": -0.4650670289993286
  12864. },
  12865. {
  12866. "op": "replace",
  12867. "path": "/ContainerEntity/Components/Component_[5282531384285083817]/Transform Data/Translate/1",
  12868. "value": 3.8857154846191406
  12869. }
  12870. ]
  12871. },
  12872. "Instance_[437116681704963]": {
  12873. "Source": "Prefabs/Warehouse_storage/Storage_2x2_Pack2.prefab",
  12874. "Patches": [
  12875. {
  12876. "op": "replace",
  12877. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Parent Entity",
  12878. "value": "../Entity_[996092133928450]"
  12879. },
  12880. {
  12881. "op": "replace",
  12882. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Transform Data/Translate/0",
  12883. "value": 5.70301628112793
  12884. },
  12885. {
  12886. "op": "replace",
  12887. "path": "/ContainerEntity/Components/Component_[1237438155322650380]/Transform Data/Translate/1",
  12888. "value": 3.8857154846191406
  12889. }
  12890. ]
  12891. },
  12892. "Instance_[71702474413917]": {
  12893. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12894. "Patches": [
  12895. {
  12896. "op": "replace",
  12897. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12898. "value": "../Entity_[995958989942274]"
  12899. },
  12900. {
  12901. "op": "replace",
  12902. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12903. "value": -26.699295043945313
  12904. },
  12905. {
  12906. "op": "replace",
  12907. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12908. "value": 0.19962787628173828
  12909. }
  12910. ]
  12911. },
  12912. "Instance_[71706769381213]": {
  12913. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12914. "Patches": [
  12915. {
  12916. "op": "replace",
  12917. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12918. "value": "../Entity_[995958989942274]"
  12919. },
  12920. {
  12921. "op": "replace",
  12922. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12923. "value": -29.804424285888672
  12924. },
  12925. {
  12926. "op": "replace",
  12927. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12928. "value": 0.19962787628173828
  12929. }
  12930. ]
  12931. },
  12932. "Instance_[71728244217693]": {
  12933. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12934. "Patches": [
  12935. {
  12936. "op": "replace",
  12937. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12938. "value": "../Entity_[995958989942274]"
  12939. },
  12940. {
  12941. "op": "replace",
  12942. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12943. "value": -23.606029510498047
  12944. },
  12945. {
  12946. "op": "replace",
  12947. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12948. "value": 0.19962787628173828
  12949. }
  12950. ]
  12951. },
  12952. "Instance_[71754014021469]": {
  12953. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12954. "Patches": [
  12955. {
  12956. "op": "replace",
  12957. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12958. "value": "../Entity_[995958989942274]"
  12959. },
  12960. {
  12961. "op": "replace",
  12962. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12963. "value": -32.87509536743164
  12964. },
  12965. {
  12966. "op": "replace",
  12967. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12968. "value": 0.19962787628173828
  12969. }
  12970. ]
  12971. },
  12972. "Instance_[71758308988765]": {
  12973. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12974. "Patches": [
  12975. {
  12976. "op": "replace",
  12977. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12978. "value": "../Entity_[995958989942274]"
  12979. },
  12980. {
  12981. "op": "replace",
  12982. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  12983. "value": -35.964752197265625
  12984. },
  12985. {
  12986. "op": "replace",
  12987. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  12988. "value": 0.19962787628173828
  12989. }
  12990. ]
  12991. },
  12992. "Instance_[72007417091933]": {
  12993. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  12994. "Patches": [
  12995. {
  12996. "op": "replace",
  12997. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  12998. "value": "../Entity_[995958989942274]"
  12999. },
  13000. {
  13001. "op": "replace",
  13002. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  13003. "value": -23.606029510498047
  13004. },
  13005. {
  13006. "op": "replace",
  13007. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  13008. "value": -1.9911556243896484
  13009. },
  13010. {
  13011. "op": "replace",
  13012. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  13013. "value": -179.99989318847656
  13014. }
  13015. ]
  13016. },
  13017. "Instance_[72011712059229]": {
  13018. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  13019. "Patches": [
  13020. {
  13021. "op": "replace",
  13022. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  13023. "value": "../Entity_[995958989942274]"
  13024. },
  13025. {
  13026. "op": "replace",
  13027. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  13028. "value": -26.6956844329834
  13029. },
  13030. {
  13031. "op": "replace",
  13032. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  13033. "value": -1.991157054901123
  13034. },
  13035. {
  13036. "op": "replace",
  13037. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  13038. "value": -179.99989318847656
  13039. }
  13040. ]
  13041. },
  13042. "Instance_[72016007026525]": {
  13043. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  13044. "Patches": [
  13045. {
  13046. "op": "replace",
  13047. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  13048. "value": "../Entity_[995958989942274]"
  13049. },
  13050. {
  13051. "op": "replace",
  13052. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  13053. "value": -32.87148666381836
  13054. },
  13055. {
  13056. "op": "replace",
  13057. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  13058. "value": -1.9911603927612305
  13059. },
  13060. {
  13061. "op": "replace",
  13062. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  13063. "value": -179.99989318847656
  13064. }
  13065. ]
  13066. },
  13067. "Instance_[72020301993821]": {
  13068. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  13069. "Patches": [
  13070. {
  13071. "op": "replace",
  13072. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  13073. "value": "../Entity_[995958989942274]"
  13074. },
  13075. {
  13076. "op": "replace",
  13077. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  13078. "value": -29.766355514526367
  13079. },
  13080. {
  13081. "op": "replace",
  13082. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  13083. "value": -1.9911584854125977
  13084. },
  13085. {
  13086. "op": "replace",
  13087. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  13088. "value": -179.99989318847656
  13089. }
  13090. ]
  13091. },
  13092. "Instance_[72024596961117]": {
  13093. "Source": "Prefabs/Warehouse_storage/Rack_protectors/Rack_front_protector.prefab",
  13094. "Patches": [
  13095. {
  13096. "op": "replace",
  13097. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Parent Entity",
  13098. "value": "../Entity_[995958989942274]"
  13099. },
  13100. {
  13101. "op": "replace",
  13102. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/0",
  13103. "value": -35.964752197265625
  13104. },
  13105. {
  13106. "op": "replace",
  13107. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Translate/1",
  13108. "value": -1.9911613464355469
  13109. },
  13110. {
  13111. "op": "replace",
  13112. "path": "/ContainerEntity/Components/Component_[8441000053586138474]/Transform Data/Rotate/2",
  13113. "value": -179.99989318847656
  13114. }
  13115. ]
  13116. },
  13117. "Instance_[7675729438561]": {
  13118. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  13119. "Patches": [
  13120. {
  13121. "op": "replace",
  13122. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  13123. "value": "../Entity_[995920335236610]"
  13124. },
  13125. {
  13126. "op": "replace",
  13127. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  13128. "value": -7.499316215515137
  13129. },
  13130. {
  13131. "op": "replace",
  13132. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/2",
  13133. "value": -0.002166748046875
  13134. }
  13135. ]
  13136. },
  13137. "Instance_[7680024405857]": {
  13138. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  13139. "Patches": [
  13140. {
  13141. "op": "replace",
  13142. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  13143. "value": "../Entity_[995920335236610]"
  13144. }
  13145. ]
  13146. },
  13147. "Instance_[7684319373153]": {
  13148. "Source": "Prefabs/Warehouse_structural/Components/Ceiling_Lamp.prefab",
  13149. "Patches": [
  13150. {
  13151. "op": "replace",
  13152. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Parent Entity",
  13153. "value": "../Entity_[995920335236610]"
  13154. },
  13155. {
  13156. "op": "replace",
  13157. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/1",
  13158. "value": 7.447383880615234
  13159. },
  13160. {
  13161. "op": "replace",
  13162. "path": "/ContainerEntity/Components/Component_[6945026850029702537]/Transform Data/Translate/2",
  13163. "value": -0.0022640228271484375
  13164. }
  13165. ]
  13166. }
  13167. }
  13168. }