AreaLight.prefab 385 KB

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