3
0

DepthOfField.prefab 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642
  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_[1704589524836]",
  23. "Entity_[1176639161715]",
  24. "Entity_[3931497975738]"
  25. ]
  26. },
  27. "Component_[15230859088967841193]": {
  28. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  29. "Id": 15230859088967841193,
  30. "Parent Entity": ""
  31. },
  32. "Component_[16239496886950819870]": {
  33. "$type": "EditorDisabledCompositionComponent",
  34. "Id": 16239496886950819870
  35. },
  36. "Component_[5688118765544765547]": {
  37. "$type": "EditorEntityIconComponent",
  38. "Id": 5688118765544765547
  39. },
  40. "Component_[7247035804068349658]": {
  41. "$type": "EditorPrefabComponent",
  42. "Id": 7247035804068349658
  43. },
  44. "Component_[9307224322037797205]": {
  45. "$type": "EditorLockComponent",
  46. "Id": 9307224322037797205
  47. },
  48. "Component_[9562516168917670048]": {
  49. "$type": "EditorVisibilityComponent",
  50. "Id": 9562516168917670048
  51. },
  52. "LocalViewBookmarkComponent": {
  53. "$type": "LocalViewBookmarkComponent",
  54. "Id": 4117745055298013039,
  55. "LocalBookmarkFileName": "DepthOfField_16805597396362956.setreg"
  56. }
  57. }
  58. },
  59. "Entities": {
  60. "Entity_[1064639397732]": {
  61. "Id": "Entity_[1064639397732]",
  62. "Name": "Entity1",
  63. "Components": {
  64. "AZ::Render::EditorMeshComponent": {
  65. "$type": "AZ::Render::EditorMeshComponent",
  66. "Id": 14767609300906406257,
  67. "Controller": {
  68. "Configuration": {
  69. "ModelAsset": {
  70. "assetId": {
  71. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  72. "subId": 283109893
  73. },
  74. "assetHint": "objects/bunny.azmodel"
  75. }
  76. }
  77. }
  78. },
  79. "EditorDisabledCompositionComponent": {
  80. "$type": "EditorDisabledCompositionComponent",
  81. "Id": 15710365472298700756
  82. },
  83. "EditorEntityIconComponent": {
  84. "$type": "EditorEntityIconComponent",
  85. "Id": 6095774710828788532
  86. },
  87. "EditorEntitySortComponent": {
  88. "$type": "EditorEntitySortComponent",
  89. "Id": 2015374262197931198
  90. },
  91. "EditorInspectorComponent": {
  92. "$type": "EditorInspectorComponent",
  93. "Id": 16452906587607067704
  94. },
  95. "EditorLockComponent": {
  96. "$type": "EditorLockComponent",
  97. "Id": 3973035496304432226
  98. },
  99. "EditorOnlyEntityComponent": {
  100. "$type": "EditorOnlyEntityComponent",
  101. "Id": 17702456914454803225
  102. },
  103. "EditorPendingCompositionComponent": {
  104. "$type": "EditorPendingCompositionComponent",
  105. "Id": 16545452882425456962
  106. },
  107. "EditorVisibilityComponent": {
  108. "$type": "EditorVisibilityComponent",
  109. "Id": 18306493370160356478
  110. },
  111. "TransformComponent": {
  112. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  113. "Id": 7156680400794384315,
  114. "Parent Entity": "Entity_[3931497975738]",
  115. "Transform Data": {
  116. "Translate": [
  117. -46.991939544677734,
  118. 0.0,
  119. 0.0
  120. ]
  121. }
  122. }
  123. }
  124. },
  125. "Entity_[1068934365028]": {
  126. "Id": "Entity_[1068934365028]",
  127. "Name": "Entity1",
  128. "Components": {
  129. "AZ::Render::EditorMeshComponent": {
  130. "$type": "AZ::Render::EditorMeshComponent",
  131. "Id": 14767609300906406257,
  132. "Controller": {
  133. "Configuration": {
  134. "ModelAsset": {
  135. "assetId": {
  136. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  137. "subId": 283109893
  138. },
  139. "assetHint": "objects/bunny.azmodel"
  140. }
  141. }
  142. }
  143. },
  144. "EditorDisabledCompositionComponent": {
  145. "$type": "EditorDisabledCompositionComponent",
  146. "Id": 15710365472298700756
  147. },
  148. "EditorEntityIconComponent": {
  149. "$type": "EditorEntityIconComponent",
  150. "Id": 6095774710828788532
  151. },
  152. "EditorEntitySortComponent": {
  153. "$type": "EditorEntitySortComponent",
  154. "Id": 2015374262197931198
  155. },
  156. "EditorInspectorComponent": {
  157. "$type": "EditorInspectorComponent",
  158. "Id": 16452906587607067704
  159. },
  160. "EditorLockComponent": {
  161. "$type": "EditorLockComponent",
  162. "Id": 3973035496304432226
  163. },
  164. "EditorOnlyEntityComponent": {
  165. "$type": "EditorOnlyEntityComponent",
  166. "Id": 17702456914454803225
  167. },
  168. "EditorPendingCompositionComponent": {
  169. "$type": "EditorPendingCompositionComponent",
  170. "Id": 16545452882425456962
  171. },
  172. "EditorVisibilityComponent": {
  173. "$type": "EditorVisibilityComponent",
  174. "Id": 18306493370160356478
  175. },
  176. "TransformComponent": {
  177. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  178. "Id": 7156680400794384315,
  179. "Parent Entity": "Entity_[3931497975738]",
  180. "Transform Data": {
  181. "Translate": [
  182. -35.991939544677734,
  183. 0.0,
  184. 0.0
  185. ]
  186. }
  187. }
  188. }
  189. },
  190. "Entity_[1073229332324]": {
  191. "Id": "Entity_[1073229332324]",
  192. "Name": "Entity1",
  193. "Components": {
  194. "AZ::Render::EditorMeshComponent": {
  195. "$type": "AZ::Render::EditorMeshComponent",
  196. "Id": 14767609300906406257,
  197. "Controller": {
  198. "Configuration": {
  199. "ModelAsset": {
  200. "assetId": {
  201. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  202. "subId": 283109893
  203. },
  204. "assetHint": "objects/bunny.azmodel"
  205. }
  206. }
  207. }
  208. },
  209. "EditorDisabledCompositionComponent": {
  210. "$type": "EditorDisabledCompositionComponent",
  211. "Id": 15710365472298700756
  212. },
  213. "EditorEntityIconComponent": {
  214. "$type": "EditorEntityIconComponent",
  215. "Id": 6095774710828788532
  216. },
  217. "EditorEntitySortComponent": {
  218. "$type": "EditorEntitySortComponent",
  219. "Id": 2015374262197931198
  220. },
  221. "EditorInspectorComponent": {
  222. "$type": "EditorInspectorComponent",
  223. "Id": 16452906587607067704
  224. },
  225. "EditorLockComponent": {
  226. "$type": "EditorLockComponent",
  227. "Id": 3973035496304432226
  228. },
  229. "EditorOnlyEntityComponent": {
  230. "$type": "EditorOnlyEntityComponent",
  231. "Id": 17702456914454803225
  232. },
  233. "EditorPendingCompositionComponent": {
  234. "$type": "EditorPendingCompositionComponent",
  235. "Id": 16545452882425456962
  236. },
  237. "EditorVisibilityComponent": {
  238. "$type": "EditorVisibilityComponent",
  239. "Id": 18306493370160356478
  240. },
  241. "TransformComponent": {
  242. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  243. "Id": 7156680400794384315,
  244. "Parent Entity": "Entity_[3931497975738]",
  245. "Transform Data": {
  246. "Translate": [
  247. -38.991939544677734,
  248. 0.0,
  249. 0.0
  250. ]
  251. }
  252. }
  253. }
  254. },
  255. "Entity_[1077524299620]": {
  256. "Id": "Entity_[1077524299620]",
  257. "Name": "Entity1",
  258. "Components": {
  259. "AZ::Render::EditorMeshComponent": {
  260. "$type": "AZ::Render::EditorMeshComponent",
  261. "Id": 14767609300906406257,
  262. "Controller": {
  263. "Configuration": {
  264. "ModelAsset": {
  265. "assetId": {
  266. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  267. "subId": 283109893
  268. },
  269. "assetHint": "objects/bunny.azmodel"
  270. }
  271. }
  272. }
  273. },
  274. "EditorDisabledCompositionComponent": {
  275. "$type": "EditorDisabledCompositionComponent",
  276. "Id": 15710365472298700756
  277. },
  278. "EditorEntityIconComponent": {
  279. "$type": "EditorEntityIconComponent",
  280. "Id": 6095774710828788532
  281. },
  282. "EditorEntitySortComponent": {
  283. "$type": "EditorEntitySortComponent",
  284. "Id": 2015374262197931198
  285. },
  286. "EditorInspectorComponent": {
  287. "$type": "EditorInspectorComponent",
  288. "Id": 16452906587607067704
  289. },
  290. "EditorLockComponent": {
  291. "$type": "EditorLockComponent",
  292. "Id": 3973035496304432226
  293. },
  294. "EditorOnlyEntityComponent": {
  295. "$type": "EditorOnlyEntityComponent",
  296. "Id": 17702456914454803225
  297. },
  298. "EditorPendingCompositionComponent": {
  299. "$type": "EditorPendingCompositionComponent",
  300. "Id": 16545452882425456962
  301. },
  302. "EditorVisibilityComponent": {
  303. "$type": "EditorVisibilityComponent",
  304. "Id": 18306493370160356478
  305. },
  306. "TransformComponent": {
  307. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  308. "Id": 7156680400794384315,
  309. "Parent Entity": "Entity_[3931497975738]",
  310. "Transform Data": {
  311. "Translate": [
  312. -32.991939544677734,
  313. 0.0,
  314. 0.0
  315. ]
  316. }
  317. }
  318. }
  319. },
  320. "Entity_[1081819266916]": {
  321. "Id": "Entity_[1081819266916]",
  322. "Name": "Entity1",
  323. "Components": {
  324. "AZ::Render::EditorMeshComponent": {
  325. "$type": "AZ::Render::EditorMeshComponent",
  326. "Id": 14767609300906406257,
  327. "Controller": {
  328. "Configuration": {
  329. "ModelAsset": {
  330. "assetId": {
  331. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  332. "subId": 283109893
  333. },
  334. "assetHint": "objects/bunny.azmodel"
  335. }
  336. }
  337. }
  338. },
  339. "EditorDisabledCompositionComponent": {
  340. "$type": "EditorDisabledCompositionComponent",
  341. "Id": 15710365472298700756
  342. },
  343. "EditorEntityIconComponent": {
  344. "$type": "EditorEntityIconComponent",
  345. "Id": 6095774710828788532
  346. },
  347. "EditorEntitySortComponent": {
  348. "$type": "EditorEntitySortComponent",
  349. "Id": 2015374262197931198
  350. },
  351. "EditorInspectorComponent": {
  352. "$type": "EditorInspectorComponent",
  353. "Id": 16452906587607067704
  354. },
  355. "EditorLockComponent": {
  356. "$type": "EditorLockComponent",
  357. "Id": 3973035496304432226
  358. },
  359. "EditorOnlyEntityComponent": {
  360. "$type": "EditorOnlyEntityComponent",
  361. "Id": 17702456914454803225
  362. },
  363. "EditorPendingCompositionComponent": {
  364. "$type": "EditorPendingCompositionComponent",
  365. "Id": 16545452882425456962
  366. },
  367. "EditorVisibilityComponent": {
  368. "$type": "EditorVisibilityComponent",
  369. "Id": 18306493370160356478
  370. },
  371. "TransformComponent": {
  372. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  373. "Id": 7156680400794384315,
  374. "Parent Entity": "Entity_[3931497975738]",
  375. "Transform Data": {
  376. "Translate": [
  377. -39.991939544677734,
  378. 0.0,
  379. 0.0
  380. ]
  381. }
  382. }
  383. }
  384. },
  385. "Entity_[1086114234212]": {
  386. "Id": "Entity_[1086114234212]",
  387. "Name": "Entity1",
  388. "Components": {
  389. "AZ::Render::EditorMeshComponent": {
  390. "$type": "AZ::Render::EditorMeshComponent",
  391. "Id": 14767609300906406257,
  392. "Controller": {
  393. "Configuration": {
  394. "ModelAsset": {
  395. "assetId": {
  396. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  397. "subId": 283109893
  398. },
  399. "assetHint": "objects/bunny.azmodel"
  400. }
  401. }
  402. }
  403. },
  404. "EditorDisabledCompositionComponent": {
  405. "$type": "EditorDisabledCompositionComponent",
  406. "Id": 15710365472298700756
  407. },
  408. "EditorEntityIconComponent": {
  409. "$type": "EditorEntityIconComponent",
  410. "Id": 6095774710828788532
  411. },
  412. "EditorEntitySortComponent": {
  413. "$type": "EditorEntitySortComponent",
  414. "Id": 2015374262197931198
  415. },
  416. "EditorInspectorComponent": {
  417. "$type": "EditorInspectorComponent",
  418. "Id": 16452906587607067704
  419. },
  420. "EditorLockComponent": {
  421. "$type": "EditorLockComponent",
  422. "Id": 3973035496304432226
  423. },
  424. "EditorOnlyEntityComponent": {
  425. "$type": "EditorOnlyEntityComponent",
  426. "Id": 17702456914454803225
  427. },
  428. "EditorPendingCompositionComponent": {
  429. "$type": "EditorPendingCompositionComponent",
  430. "Id": 16545452882425456962
  431. },
  432. "EditorVisibilityComponent": {
  433. "$type": "EditorVisibilityComponent",
  434. "Id": 18306493370160356478
  435. },
  436. "TransformComponent": {
  437. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  438. "Id": 7156680400794384315,
  439. "Parent Entity": "Entity_[3931497975738]",
  440. "Transform Data": {
  441. "Translate": [
  442. -31.991939544677734,
  443. 0.0,
  444. 0.0
  445. ]
  446. }
  447. }
  448. }
  449. },
  450. "Entity_[1090409201508]": {
  451. "Id": "Entity_[1090409201508]",
  452. "Name": "Entity1",
  453. "Components": {
  454. "AZ::Render::EditorMeshComponent": {
  455. "$type": "AZ::Render::EditorMeshComponent",
  456. "Id": 14767609300906406257,
  457. "Controller": {
  458. "Configuration": {
  459. "ModelAsset": {
  460. "assetId": {
  461. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  462. "subId": 283109893
  463. },
  464. "assetHint": "objects/bunny.azmodel"
  465. }
  466. }
  467. }
  468. },
  469. "EditorDisabledCompositionComponent": {
  470. "$type": "EditorDisabledCompositionComponent",
  471. "Id": 15710365472298700756
  472. },
  473. "EditorEntityIconComponent": {
  474. "$type": "EditorEntityIconComponent",
  475. "Id": 6095774710828788532
  476. },
  477. "EditorEntitySortComponent": {
  478. "$type": "EditorEntitySortComponent",
  479. "Id": 2015374262197931198
  480. },
  481. "EditorInspectorComponent": {
  482. "$type": "EditorInspectorComponent",
  483. "Id": 16452906587607067704
  484. },
  485. "EditorLockComponent": {
  486. "$type": "EditorLockComponent",
  487. "Id": 3973035496304432226
  488. },
  489. "EditorOnlyEntityComponent": {
  490. "$type": "EditorOnlyEntityComponent",
  491. "Id": 17702456914454803225
  492. },
  493. "EditorPendingCompositionComponent": {
  494. "$type": "EditorPendingCompositionComponent",
  495. "Id": 16545452882425456962
  496. },
  497. "EditorVisibilityComponent": {
  498. "$type": "EditorVisibilityComponent",
  499. "Id": 18306493370160356478
  500. },
  501. "TransformComponent": {
  502. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  503. "Id": 7156680400794384315,
  504. "Parent Entity": "Entity_[3931497975738]",
  505. "Transform Data": {
  506. "Translate": [
  507. -40.991939544677734,
  508. 0.0,
  509. 0.0
  510. ]
  511. }
  512. }
  513. }
  514. },
  515. "Entity_[1094704168804]": {
  516. "Id": "Entity_[1094704168804]",
  517. "Name": "Entity1",
  518. "Components": {
  519. "AZ::Render::EditorMeshComponent": {
  520. "$type": "AZ::Render::EditorMeshComponent",
  521. "Id": 14767609300906406257,
  522. "Controller": {
  523. "Configuration": {
  524. "ModelAsset": {
  525. "assetId": {
  526. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  527. "subId": 283109893
  528. },
  529. "assetHint": "objects/bunny.azmodel"
  530. }
  531. }
  532. }
  533. },
  534. "EditorDisabledCompositionComponent": {
  535. "$type": "EditorDisabledCompositionComponent",
  536. "Id": 15710365472298700756
  537. },
  538. "EditorEntityIconComponent": {
  539. "$type": "EditorEntityIconComponent",
  540. "Id": 6095774710828788532
  541. },
  542. "EditorEntitySortComponent": {
  543. "$type": "EditorEntitySortComponent",
  544. "Id": 2015374262197931198
  545. },
  546. "EditorInspectorComponent": {
  547. "$type": "EditorInspectorComponent",
  548. "Id": 16452906587607067704
  549. },
  550. "EditorLockComponent": {
  551. "$type": "EditorLockComponent",
  552. "Id": 3973035496304432226
  553. },
  554. "EditorOnlyEntityComponent": {
  555. "$type": "EditorOnlyEntityComponent",
  556. "Id": 17702456914454803225
  557. },
  558. "EditorPendingCompositionComponent": {
  559. "$type": "EditorPendingCompositionComponent",
  560. "Id": 16545452882425456962
  561. },
  562. "EditorVisibilityComponent": {
  563. "$type": "EditorVisibilityComponent",
  564. "Id": 18306493370160356478
  565. },
  566. "TransformComponent": {
  567. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  568. "Id": 7156680400794384315,
  569. "Parent Entity": "Entity_[3931497975738]",
  570. "Transform Data": {
  571. "Translate": [
  572. -34.991939544677734,
  573. 0.0,
  574. 0.0
  575. ]
  576. }
  577. }
  578. }
  579. },
  580. "Entity_[1098999136100]": {
  581. "Id": "Entity_[1098999136100]",
  582. "Name": "Entity1",
  583. "Components": {
  584. "AZ::Render::EditorMeshComponent": {
  585. "$type": "AZ::Render::EditorMeshComponent",
  586. "Id": 14767609300906406257,
  587. "Controller": {
  588. "Configuration": {
  589. "ModelAsset": {
  590. "assetId": {
  591. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  592. "subId": 283109893
  593. },
  594. "assetHint": "objects/bunny.azmodel"
  595. }
  596. }
  597. }
  598. },
  599. "EditorDisabledCompositionComponent": {
  600. "$type": "EditorDisabledCompositionComponent",
  601. "Id": 15710365472298700756
  602. },
  603. "EditorEntityIconComponent": {
  604. "$type": "EditorEntityIconComponent",
  605. "Id": 6095774710828788532
  606. },
  607. "EditorEntitySortComponent": {
  608. "$type": "EditorEntitySortComponent",
  609. "Id": 2015374262197931198
  610. },
  611. "EditorInspectorComponent": {
  612. "$type": "EditorInspectorComponent",
  613. "Id": 16452906587607067704
  614. },
  615. "EditorLockComponent": {
  616. "$type": "EditorLockComponent",
  617. "Id": 3973035496304432226
  618. },
  619. "EditorOnlyEntityComponent": {
  620. "$type": "EditorOnlyEntityComponent",
  621. "Id": 17702456914454803225
  622. },
  623. "EditorPendingCompositionComponent": {
  624. "$type": "EditorPendingCompositionComponent",
  625. "Id": 16545452882425456962
  626. },
  627. "EditorVisibilityComponent": {
  628. "$type": "EditorVisibilityComponent",
  629. "Id": 18306493370160356478
  630. },
  631. "TransformComponent": {
  632. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  633. "Id": 7156680400794384315,
  634. "Parent Entity": "Entity_[3931497975738]",
  635. "Transform Data": {
  636. "Translate": [
  637. -44.991939544677734,
  638. 0.0,
  639. 0.0
  640. ]
  641. }
  642. }
  643. }
  644. },
  645. "Entity_[1103294103396]": {
  646. "Id": "Entity_[1103294103396]",
  647. "Name": "Entity1",
  648. "Components": {
  649. "AZ::Render::EditorMeshComponent": {
  650. "$type": "AZ::Render::EditorMeshComponent",
  651. "Id": 14767609300906406257,
  652. "Controller": {
  653. "Configuration": {
  654. "ModelAsset": {
  655. "assetId": {
  656. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  657. "subId": 283109893
  658. },
  659. "assetHint": "objects/bunny.azmodel"
  660. }
  661. }
  662. }
  663. },
  664. "EditorDisabledCompositionComponent": {
  665. "$type": "EditorDisabledCompositionComponent",
  666. "Id": 15710365472298700756
  667. },
  668. "EditorEntityIconComponent": {
  669. "$type": "EditorEntityIconComponent",
  670. "Id": 6095774710828788532
  671. },
  672. "EditorEntitySortComponent": {
  673. "$type": "EditorEntitySortComponent",
  674. "Id": 2015374262197931198
  675. },
  676. "EditorInspectorComponent": {
  677. "$type": "EditorInspectorComponent",
  678. "Id": 16452906587607067704
  679. },
  680. "EditorLockComponent": {
  681. "$type": "EditorLockComponent",
  682. "Id": 3973035496304432226
  683. },
  684. "EditorOnlyEntityComponent": {
  685. "$type": "EditorOnlyEntityComponent",
  686. "Id": 17702456914454803225
  687. },
  688. "EditorPendingCompositionComponent": {
  689. "$type": "EditorPendingCompositionComponent",
  690. "Id": 16545452882425456962
  691. },
  692. "EditorVisibilityComponent": {
  693. "$type": "EditorVisibilityComponent",
  694. "Id": 18306493370160356478
  695. },
  696. "TransformComponent": {
  697. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  698. "Id": 7156680400794384315,
  699. "Parent Entity": "Entity_[3931497975738]",
  700. "Transform Data": {
  701. "Translate": [
  702. -43.991939544677734,
  703. 0.0,
  704. 0.0
  705. ]
  706. }
  707. }
  708. }
  709. },
  710. "Entity_[1107589070692]": {
  711. "Id": "Entity_[1107589070692]",
  712. "Name": "Entity1",
  713. "Components": {
  714. "AZ::Render::EditorMeshComponent": {
  715. "$type": "AZ::Render::EditorMeshComponent",
  716. "Id": 14767609300906406257,
  717. "Controller": {
  718. "Configuration": {
  719. "ModelAsset": {
  720. "assetId": {
  721. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  722. "subId": 283109893
  723. },
  724. "assetHint": "objects/bunny.azmodel"
  725. }
  726. }
  727. }
  728. },
  729. "EditorDisabledCompositionComponent": {
  730. "$type": "EditorDisabledCompositionComponent",
  731. "Id": 15710365472298700756
  732. },
  733. "EditorEntityIconComponent": {
  734. "$type": "EditorEntityIconComponent",
  735. "Id": 6095774710828788532
  736. },
  737. "EditorEntitySortComponent": {
  738. "$type": "EditorEntitySortComponent",
  739. "Id": 2015374262197931198
  740. },
  741. "EditorInspectorComponent": {
  742. "$type": "EditorInspectorComponent",
  743. "Id": 16452906587607067704
  744. },
  745. "EditorLockComponent": {
  746. "$type": "EditorLockComponent",
  747. "Id": 3973035496304432226
  748. },
  749. "EditorOnlyEntityComponent": {
  750. "$type": "EditorOnlyEntityComponent",
  751. "Id": 17702456914454803225
  752. },
  753. "EditorPendingCompositionComponent": {
  754. "$type": "EditorPendingCompositionComponent",
  755. "Id": 16545452882425456962
  756. },
  757. "EditorVisibilityComponent": {
  758. "$type": "EditorVisibilityComponent",
  759. "Id": 18306493370160356478
  760. },
  761. "TransformComponent": {
  762. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  763. "Id": 7156680400794384315,
  764. "Parent Entity": "Entity_[3931497975738]",
  765. "Transform Data": {
  766. "Translate": [
  767. -45.991939544677734,
  768. 0.0,
  769. 0.0
  770. ]
  771. }
  772. }
  773. }
  774. },
  775. "Entity_[1111884037988]": {
  776. "Id": "Entity_[1111884037988]",
  777. "Name": "Entity1",
  778. "Components": {
  779. "AZ::Render::EditorMeshComponent": {
  780. "$type": "AZ::Render::EditorMeshComponent",
  781. "Id": 14767609300906406257,
  782. "Controller": {
  783. "Configuration": {
  784. "ModelAsset": {
  785. "assetId": {
  786. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  787. "subId": 283109893
  788. },
  789. "assetHint": "objects/bunny.azmodel"
  790. }
  791. }
  792. }
  793. },
  794. "EditorDisabledCompositionComponent": {
  795. "$type": "EditorDisabledCompositionComponent",
  796. "Id": 15710365472298700756
  797. },
  798. "EditorEntityIconComponent": {
  799. "$type": "EditorEntityIconComponent",
  800. "Id": 6095774710828788532
  801. },
  802. "EditorEntitySortComponent": {
  803. "$type": "EditorEntitySortComponent",
  804. "Id": 2015374262197931198
  805. },
  806. "EditorInspectorComponent": {
  807. "$type": "EditorInspectorComponent",
  808. "Id": 16452906587607067704
  809. },
  810. "EditorLockComponent": {
  811. "$type": "EditorLockComponent",
  812. "Id": 3973035496304432226
  813. },
  814. "EditorOnlyEntityComponent": {
  815. "$type": "EditorOnlyEntityComponent",
  816. "Id": 17702456914454803225
  817. },
  818. "EditorPendingCompositionComponent": {
  819. "$type": "EditorPendingCompositionComponent",
  820. "Id": 16545452882425456962
  821. },
  822. "EditorVisibilityComponent": {
  823. "$type": "EditorVisibilityComponent",
  824. "Id": 18306493370160356478
  825. },
  826. "TransformComponent": {
  827. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  828. "Id": 7156680400794384315,
  829. "Parent Entity": "Entity_[3931497975738]",
  830. "Transform Data": {
  831. "Translate": [
  832. -41.991939544677734,
  833. 0.0,
  834. 0.0
  835. ]
  836. }
  837. }
  838. }
  839. },
  840. "Entity_[1116179005284]": {
  841. "Id": "Entity_[1116179005284]",
  842. "Name": "Entity1",
  843. "Components": {
  844. "AZ::Render::EditorMeshComponent": {
  845. "$type": "AZ::Render::EditorMeshComponent",
  846. "Id": 14767609300906406257,
  847. "Controller": {
  848. "Configuration": {
  849. "ModelAsset": {
  850. "assetId": {
  851. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  852. "subId": 283109893
  853. },
  854. "assetHint": "objects/bunny.azmodel"
  855. }
  856. }
  857. }
  858. },
  859. "EditorDisabledCompositionComponent": {
  860. "$type": "EditorDisabledCompositionComponent",
  861. "Id": 15710365472298700756
  862. },
  863. "EditorEntityIconComponent": {
  864. "$type": "EditorEntityIconComponent",
  865. "Id": 6095774710828788532
  866. },
  867. "EditorEntitySortComponent": {
  868. "$type": "EditorEntitySortComponent",
  869. "Id": 2015374262197931198
  870. },
  871. "EditorInspectorComponent": {
  872. "$type": "EditorInspectorComponent",
  873. "Id": 16452906587607067704
  874. },
  875. "EditorLockComponent": {
  876. "$type": "EditorLockComponent",
  877. "Id": 3973035496304432226
  878. },
  879. "EditorOnlyEntityComponent": {
  880. "$type": "EditorOnlyEntityComponent",
  881. "Id": 17702456914454803225
  882. },
  883. "EditorPendingCompositionComponent": {
  884. "$type": "EditorPendingCompositionComponent",
  885. "Id": 16545452882425456962
  886. },
  887. "EditorVisibilityComponent": {
  888. "$type": "EditorVisibilityComponent",
  889. "Id": 18306493370160356478
  890. },
  891. "TransformComponent": {
  892. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  893. "Id": 7156680400794384315,
  894. "Parent Entity": "Entity_[3931497975738]",
  895. "Transform Data": {
  896. "Translate": [
  897. -33.991939544677734,
  898. 0.0,
  899. 0.0
  900. ]
  901. }
  902. }
  903. }
  904. },
  905. "Entity_[1120473972580]": {
  906. "Id": "Entity_[1120473972580]",
  907. "Name": "Entity1",
  908. "Components": {
  909. "AZ::Render::EditorMeshComponent": {
  910. "$type": "AZ::Render::EditorMeshComponent",
  911. "Id": 14767609300906406257,
  912. "Controller": {
  913. "Configuration": {
  914. "ModelAsset": {
  915. "assetId": {
  916. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  917. "subId": 283109893
  918. },
  919. "assetHint": "objects/bunny.azmodel"
  920. }
  921. }
  922. }
  923. },
  924. "EditorDisabledCompositionComponent": {
  925. "$type": "EditorDisabledCompositionComponent",
  926. "Id": 15710365472298700756
  927. },
  928. "EditorEntityIconComponent": {
  929. "$type": "EditorEntityIconComponent",
  930. "Id": 6095774710828788532
  931. },
  932. "EditorEntitySortComponent": {
  933. "$type": "EditorEntitySortComponent",
  934. "Id": 2015374262197931198
  935. },
  936. "EditorInspectorComponent": {
  937. "$type": "EditorInspectorComponent",
  938. "Id": 16452906587607067704
  939. },
  940. "EditorLockComponent": {
  941. "$type": "EditorLockComponent",
  942. "Id": 3973035496304432226
  943. },
  944. "EditorOnlyEntityComponent": {
  945. "$type": "EditorOnlyEntityComponent",
  946. "Id": 17702456914454803225
  947. },
  948. "EditorPendingCompositionComponent": {
  949. "$type": "EditorPendingCompositionComponent",
  950. "Id": 16545452882425456962
  951. },
  952. "EditorVisibilityComponent": {
  953. "$type": "EditorVisibilityComponent",
  954. "Id": 18306493370160356478
  955. },
  956. "TransformComponent": {
  957. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  958. "Id": 7156680400794384315,
  959. "Parent Entity": "Entity_[3931497975738]",
  960. "Transform Data": {
  961. "Translate": [
  962. -36.991939544677734,
  963. 0.0,
  964. 0.0
  965. ]
  966. }
  967. }
  968. }
  969. },
  970. "Entity_[1124768939876]": {
  971. "Id": "Entity_[1124768939876]",
  972. "Name": "Entity1",
  973. "Components": {
  974. "AZ::Render::EditorMeshComponent": {
  975. "$type": "AZ::Render::EditorMeshComponent",
  976. "Id": 14767609300906406257,
  977. "Controller": {
  978. "Configuration": {
  979. "ModelAsset": {
  980. "assetId": {
  981. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  982. "subId": 283109893
  983. },
  984. "assetHint": "objects/bunny.azmodel"
  985. }
  986. }
  987. }
  988. },
  989. "EditorDisabledCompositionComponent": {
  990. "$type": "EditorDisabledCompositionComponent",
  991. "Id": 15710365472298700756
  992. },
  993. "EditorEntityIconComponent": {
  994. "$type": "EditorEntityIconComponent",
  995. "Id": 6095774710828788532
  996. },
  997. "EditorEntitySortComponent": {
  998. "$type": "EditorEntitySortComponent",
  999. "Id": 2015374262197931198
  1000. },
  1001. "EditorInspectorComponent": {
  1002. "$type": "EditorInspectorComponent",
  1003. "Id": 16452906587607067704
  1004. },
  1005. "EditorLockComponent": {
  1006. "$type": "EditorLockComponent",
  1007. "Id": 3973035496304432226
  1008. },
  1009. "EditorOnlyEntityComponent": {
  1010. "$type": "EditorOnlyEntityComponent",
  1011. "Id": 17702456914454803225
  1012. },
  1013. "EditorPendingCompositionComponent": {
  1014. "$type": "EditorPendingCompositionComponent",
  1015. "Id": 16545452882425456962
  1016. },
  1017. "EditorVisibilityComponent": {
  1018. "$type": "EditorVisibilityComponent",
  1019. "Id": 18306493370160356478
  1020. },
  1021. "TransformComponent": {
  1022. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1023. "Id": 7156680400794384315,
  1024. "Parent Entity": "Entity_[3931497975738]",
  1025. "Transform Data": {
  1026. "Translate": [
  1027. -37.991939544677734,
  1028. 0.0,
  1029. 0.0
  1030. ]
  1031. }
  1032. }
  1033. }
  1034. },
  1035. "Entity_[1129063907172]": {
  1036. "Id": "Entity_[1129063907172]",
  1037. "Name": "Entity1",
  1038. "Components": {
  1039. "AZ::Render::EditorMeshComponent": {
  1040. "$type": "AZ::Render::EditorMeshComponent",
  1041. "Id": 14767609300906406257,
  1042. "Controller": {
  1043. "Configuration": {
  1044. "ModelAsset": {
  1045. "assetId": {
  1046. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  1047. "subId": 283109893
  1048. },
  1049. "assetHint": "objects/bunny.azmodel"
  1050. }
  1051. }
  1052. }
  1053. },
  1054. "EditorDisabledCompositionComponent": {
  1055. "$type": "EditorDisabledCompositionComponent",
  1056. "Id": 15710365472298700756
  1057. },
  1058. "EditorEntityIconComponent": {
  1059. "$type": "EditorEntityIconComponent",
  1060. "Id": 6095774710828788532
  1061. },
  1062. "EditorEntitySortComponent": {
  1063. "$type": "EditorEntitySortComponent",
  1064. "Id": 2015374262197931198
  1065. },
  1066. "EditorInspectorComponent": {
  1067. "$type": "EditorInspectorComponent",
  1068. "Id": 16452906587607067704
  1069. },
  1070. "EditorLockComponent": {
  1071. "$type": "EditorLockComponent",
  1072. "Id": 3973035496304432226
  1073. },
  1074. "EditorOnlyEntityComponent": {
  1075. "$type": "EditorOnlyEntityComponent",
  1076. "Id": 17702456914454803225
  1077. },
  1078. "EditorPendingCompositionComponent": {
  1079. "$type": "EditorPendingCompositionComponent",
  1080. "Id": 16545452882425456962
  1081. },
  1082. "EditorVisibilityComponent": {
  1083. "$type": "EditorVisibilityComponent",
  1084. "Id": 18306493370160356478
  1085. },
  1086. "TransformComponent": {
  1087. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1088. "Id": 7156680400794384315,
  1089. "Parent Entity": "Entity_[3931497975738]",
  1090. "Transform Data": {
  1091. "Translate": [
  1092. -42.991939544677734,
  1093. 0.0,
  1094. 0.0
  1095. ]
  1096. }
  1097. }
  1098. }
  1099. },
  1100. "Entity_[1163754259827]": {
  1101. "Id": "Entity_[1163754259827]",
  1102. "Name": "Camera",
  1103. "Components": {
  1104. "Component_[11895140916889160460]": {
  1105. "$type": "EditorEntityIconComponent",
  1106. "Id": 11895140916889160460
  1107. },
  1108. "Component_[16880285896855930892]": {
  1109. "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
  1110. "Id": 16880285896855930892,
  1111. "Controller": {
  1112. "Configuration": {
  1113. "Field of View": 20.0,
  1114. "EditorEntityId": 10801021463230853786
  1115. }
  1116. }
  1117. },
  1118. "Component_[17187464423780271193]": {
  1119. "$type": "EditorLockComponent",
  1120. "Id": 17187464423780271193
  1121. },
  1122. "Component_[17495696818315413311]": {
  1123. "$type": "EditorEntitySortComponent",
  1124. "Id": 17495696818315413311
  1125. },
  1126. "Component_[18086214374043522055]": {
  1127. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1128. "Id": 18086214374043522055,
  1129. "Parent Entity": "Entity_[1176639161715]",
  1130. "Transform Data": {
  1131. "Translate": [
  1132. -2.7303764820098877,
  1133. -5.628857135772705,
  1134. 1.0060049295425415
  1135. ],
  1136. "Rotate": [
  1137. 0.24051477015018463,
  1138. -0.6062353253364563,
  1139. -68.3602066040039
  1140. ]
  1141. }
  1142. },
  1143. "Component_[2654521436129313160]": {
  1144. "$type": "EditorVisibilityComponent",
  1145. "Id": 2654521436129313160
  1146. },
  1147. "Component_[5265045084611556958]": {
  1148. "$type": "EditorDisabledCompositionComponent",
  1149. "Id": 5265045084611556958
  1150. },
  1151. "Component_[7169798125182238623]": {
  1152. "$type": "EditorPendingCompositionComponent",
  1153. "Id": 7169798125182238623
  1154. },
  1155. "Component_[7255796294953281766]": {
  1156. "$type": "GenericComponentWrapper",
  1157. "Id": 7255796294953281766,
  1158. "m_template": {
  1159. "$type": "FlyCameraInputComponent"
  1160. }
  1161. },
  1162. "Component_[8866210352157164042]": {
  1163. "$type": "EditorInspectorComponent",
  1164. "Id": 8866210352157164042
  1165. },
  1166. "Component_[9129253381063760879]": {
  1167. "$type": "EditorOnlyEntityComponent",
  1168. "Id": 9129253381063760879
  1169. }
  1170. }
  1171. },
  1172. "Entity_[1176639161715]": {
  1173. "Id": "Entity_[1176639161715]",
  1174. "Name": "Atom Default Environment",
  1175. "Components": {
  1176. "Component_[10757302973393310045]": {
  1177. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1178. "Id": 10757302973393310045,
  1179. "Parent Entity": "Entity_[1146574390643]"
  1180. },
  1181. "Component_[14505817420424255464]": {
  1182. "$type": "EditorInspectorComponent",
  1183. "Id": 14505817420424255464,
  1184. "ComponentOrderEntryArray": [
  1185. {
  1186. "ComponentId": 10757302973393310045
  1187. }
  1188. ]
  1189. },
  1190. "Component_[14988041764659020032]": {
  1191. "$type": "EditorLockComponent",
  1192. "Id": 14988041764659020032
  1193. },
  1194. "Component_[15900837685796817138]": {
  1195. "$type": "EditorVisibilityComponent",
  1196. "Id": 15900837685796817138
  1197. },
  1198. "Component_[3298767348226484884]": {
  1199. "$type": "EditorOnlyEntityComponent",
  1200. "Id": 3298767348226484884
  1201. },
  1202. "Component_[4076975109609220594]": {
  1203. "$type": "EditorPendingCompositionComponent",
  1204. "Id": 4076975109609220594
  1205. },
  1206. "Component_[5679760548946028854]": {
  1207. "$type": "EditorDisabledCompositionComponent",
  1208. "Id": 5679760548946028854
  1209. },
  1210. "Component_[5855590796136709437]": {
  1211. "$type": "EditorEntitySortComponent",
  1212. "Id": 5855590796136709437,
  1213. "Child Entity Order": [
  1214. "Entity_[1180934129011]",
  1215. "Entity_[1163754259827]",
  1216. "Entity_[914315542372]"
  1217. ]
  1218. },
  1219. "Component_[9277695270015777859]": {
  1220. "$type": "EditorEntityIconComponent",
  1221. "Id": 9277695270015777859
  1222. }
  1223. }
  1224. },
  1225. "Entity_[1180934129011]": {
  1226. "Id": "Entity_[1180934129011]",
  1227. "Name": "Global Sky",
  1228. "Components": {
  1229. "Component_[1428633914413949476]": {
  1230. "$type": "EditorLockComponent",
  1231. "Id": 1428633914413949476
  1232. },
  1233. "Component_[14936200426671614999]": {
  1234. "$type": "AZ::Render::EditorImageBasedLightComponent",
  1235. "Id": 14936200426671614999,
  1236. "Controller": {
  1237. "Configuration": {
  1238. "diffuseImageAsset": {
  1239. "assetId": {
  1240. "guid": "{097EDE05-7CED-553F-B76D-EDBB2E8AB442}",
  1241. "subId": 2000
  1242. },
  1243. "assetHint": "lightingpresets/lowcontrast/palermo_sidewalk_4k_iblskyboxcm_iblspecular.exr.streamingimage"
  1244. },
  1245. "specularImageAsset": {
  1246. "assetId": {
  1247. "guid": "{097EDE05-7CED-553F-B76D-EDBB2E8AB442}",
  1248. "subId": 2000
  1249. },
  1250. "assetHint": "lightingpresets/lowcontrast/palermo_sidewalk_4k_iblskyboxcm_iblspecular.exr.streamingimage"
  1251. },
  1252. "exposure": 1.0
  1253. }
  1254. },
  1255. "diffuseImageAsset": {
  1256. "assetId": {
  1257. "guid": "{097EDE05-7CED-553F-B76D-EDBB2E8AB442}",
  1258. "subId": 2000
  1259. },
  1260. "assetHint": "lightingpresets/lowcontrast/palermo_sidewalk_4k_iblskyboxcm_iblspecular.exr.streamingimage"
  1261. },
  1262. "specularImageAsset": {
  1263. "assetId": {
  1264. "guid": "{097EDE05-7CED-553F-B76D-EDBB2E8AB442}",
  1265. "subId": 2000
  1266. },
  1267. "assetHint": "lightingpresets/lowcontrast/palermo_sidewalk_4k_iblskyboxcm_iblspecular.exr.streamingimage"
  1268. },
  1269. "exposure": 1.0
  1270. },
  1271. "Component_[14994774102579326069]": {
  1272. "$type": "EditorDisabledCompositionComponent",
  1273. "Id": 14994774102579326069,
  1274. "DisabledComponents": [
  1275. {
  1276. "$type": "AZ::Render::EditorHDRiSkyboxComponent",
  1277. "Id": 11231930600558681245,
  1278. "Controller": {
  1279. "Configuration": {
  1280. "CubemapAsset": {
  1281. "assetId": {
  1282. "guid": "{215E47FD-D181-5832-B1AB-91673ABF6399}",
  1283. "subId": 1000
  1284. },
  1285. "assetHint": "lightingpresets/highcontrast/goegap_4k_skyboxcm.exr.streamingimage"
  1286. },
  1287. "Exposure": 1.0
  1288. }
  1289. }
  1290. }
  1291. ]
  1292. },
  1293. "Component_[15417479889044493340]": {
  1294. "$type": "EditorPendingCompositionComponent",
  1295. "Id": 15417479889044493340
  1296. },
  1297. "Component_[15826613364991382688]": {
  1298. "$type": "EditorEntitySortComponent",
  1299. "Id": 15826613364991382688
  1300. },
  1301. "Component_[1665003113283562343]": {
  1302. "$type": "EditorOnlyEntityComponent",
  1303. "Id": 1665003113283562343
  1304. },
  1305. "Component_[3704934735944502280]": {
  1306. "$type": "EditorEntityIconComponent",
  1307. "Id": 3704934735944502280
  1308. },
  1309. "Component_[5698542331457326479]": {
  1310. "$type": "EditorVisibilityComponent",
  1311. "Id": 5698542331457326479
  1312. },
  1313. "Component_[6644513399057217122]": {
  1314. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1315. "Id": 6644513399057217122,
  1316. "Parent Entity": "Entity_[1176639161715]"
  1317. },
  1318. "Component_[931091830724002070]": {
  1319. "$type": "EditorInspectorComponent",
  1320. "Id": 931091830724002070
  1321. }
  1322. }
  1323. },
  1324. "Entity_[1704589524836]": {
  1325. "Id": "Entity_[1704589524836]",
  1326. "Name": "DepthOfField",
  1327. "Components": {
  1328. "AZ::Render::EditorDepthOfFieldComponent": {
  1329. "$type": "AZ::Render::EditorDepthOfFieldComponent",
  1330. "Id": 10582741486867357932,
  1331. "Controller": {
  1332. "Configuration": {
  1333. "CameraEntityId": "Entity_[1163754259827]",
  1334. "Enabled": true,
  1335. "FNumber": 0.239887535572052,
  1336. "FocusDistance": 11.399999618530273,
  1337. "EnableAutoFocus": false
  1338. }
  1339. }
  1340. },
  1341. "AZ::Render::EditorPostFxLayerComponent": {
  1342. "$type": "AZ::Render::EditorPostFxLayerComponent",
  1343. "Id": 9234996000928337505
  1344. },
  1345. "EditorDisabledCompositionComponent": {
  1346. "$type": "EditorDisabledCompositionComponent",
  1347. "Id": 16626889420635777869
  1348. },
  1349. "EditorEntityIconComponent": {
  1350. "$type": "EditorEntityIconComponent",
  1351. "Id": 1787977206069984077
  1352. },
  1353. "EditorEntitySortComponent": {
  1354. "$type": "EditorEntitySortComponent",
  1355. "Id": 17946660437775870670
  1356. },
  1357. "EditorInspectorComponent": {
  1358. "$type": "EditorInspectorComponent",
  1359. "Id": 3454462742624422148
  1360. },
  1361. "EditorLockComponent": {
  1362. "$type": "EditorLockComponent",
  1363. "Id": 9785577370059056794
  1364. },
  1365. "EditorOnlyEntityComponent": {
  1366. "$type": "EditorOnlyEntityComponent",
  1367. "Id": 7618382056406183102
  1368. },
  1369. "EditorPendingCompositionComponent": {
  1370. "$type": "EditorPendingCompositionComponent",
  1371. "Id": 13484381331879260799
  1372. },
  1373. "EditorVisibilityComponent": {
  1374. "$type": "EditorVisibilityComponent",
  1375. "Id": 18297803439305726278
  1376. },
  1377. "TransformComponent": {
  1378. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1379. "Id": 17213154871777310163,
  1380. "Parent Entity": "Entity_[1146574390643]",
  1381. "Transform Data": {
  1382. "Translate": [
  1383. 0.4816172122955322,
  1384. -2.368163824081421,
  1385. 0.08957701921463013
  1386. ],
  1387. "Rotate": [
  1388. 0.4226105809211731,
  1389. -1.0651534795761108,
  1390. -14.173412322998047
  1391. ]
  1392. }
  1393. }
  1394. }
  1395. },
  1396. "Entity_[3931497975738]": {
  1397. "Id": "Entity_[3931497975738]",
  1398. "Name": "Bunnies",
  1399. "Components": {
  1400. "EditorDisabledCompositionComponent": {
  1401. "$type": "EditorDisabledCompositionComponent",
  1402. "Id": 9456866258047236067
  1403. },
  1404. "EditorEntityIconComponent": {
  1405. "$type": "EditorEntityIconComponent",
  1406. "Id": 8613089239144338486
  1407. },
  1408. "EditorEntitySortComponent": {
  1409. "$type": "EditorEntitySortComponent",
  1410. "Id": 15964790568272923084,
  1411. "Child Entity Order": [
  1412. "Entity_[1129063907172]",
  1413. "Entity_[1111884037988]",
  1414. "Entity_[493408747364]",
  1415. "Entity_[579308093284]",
  1416. "Entity_[592192995172]",
  1417. "Entity_[587898027876]",
  1418. "Entity_[617962798948]",
  1419. "Entity_[613667831652]",
  1420. "Entity_[609372864356]",
  1421. "Entity_[605077897060]",
  1422. "Entity_[867070902116]",
  1423. "Entity_[849891032932]",
  1424. "Entity_[845596065636]",
  1425. "Entity_[854186000228]",
  1426. "Entity_[875660836708]",
  1427. "Entity_[858480967524]",
  1428. "Entity_[862775934820]",
  1429. "Entity_[871365869412]",
  1430. "Entity_[957265215332]",
  1431. "Entity_[927200444260]",
  1432. "Entity_[991624953700]",
  1433. "Entity_[983035019108]",
  1434. "Entity_[974445084516]",
  1435. "Entity_[970150117220]",
  1436. "Entity_[931495411556]",
  1437. "Entity_[987329986404]",
  1438. "Entity_[944380313444]",
  1439. "Entity_[935790378852]",
  1440. "Entity_[965855149924]",
  1441. "Entity_[961560182628]",
  1442. "Entity_[948675280740]",
  1443. "Entity_[940085346148]",
  1444. "Entity_[952970248036]",
  1445. "Entity_[978740051812]",
  1446. "Entity_[1064639397732]",
  1447. "Entity_[1098999136100]",
  1448. "Entity_[1090409201508]",
  1449. "Entity_[1086114234212]",
  1450. "Entity_[1081819266916]",
  1451. "Entity_[1068934365028]",
  1452. "Entity_[1120473972580]",
  1453. "Entity_[1077524299620]",
  1454. "Entity_[1073229332324]",
  1455. "Entity_[1124768939876]",
  1456. "Entity_[1116179005284]",
  1457. "Entity_[1094704168804]",
  1458. "Entity_[1103294103396]",
  1459. "Entity_[1107589070692]"
  1460. ]
  1461. },
  1462. "EditorInspectorComponent": {
  1463. "$type": "EditorInspectorComponent",
  1464. "Id": 15526983111930446084
  1465. },
  1466. "EditorLockComponent": {
  1467. "$type": "EditorLockComponent",
  1468. "Id": 7611306589506578797
  1469. },
  1470. "EditorOnlyEntityComponent": {
  1471. "$type": "EditorOnlyEntityComponent",
  1472. "Id": 10503169956463606627
  1473. },
  1474. "EditorPendingCompositionComponent": {
  1475. "$type": "EditorPendingCompositionComponent",
  1476. "Id": 3376361558537703634
  1477. },
  1478. "EditorVisibilityComponent": {
  1479. "$type": "EditorVisibilityComponent",
  1480. "Id": 4633558343950817085
  1481. },
  1482. "TransformComponent": {
  1483. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1484. "Id": 15317455431144959287,
  1485. "Parent Entity": "Entity_[1146574390643]",
  1486. "Transform Data": {
  1487. "Translate": [
  1488. -3.0,
  1489. -0.6615595817565918,
  1490. 0.0
  1491. ],
  1492. "Rotate": [
  1493. 0.0,
  1494. 0.0,
  1495. 180.0
  1496. ]
  1497. }
  1498. }
  1499. }
  1500. },
  1501. "Entity_[493408747364]": {
  1502. "Id": "Entity_[493408747364]",
  1503. "Name": "Entity1",
  1504. "Components": {
  1505. "AZ::Render::EditorMeshComponent": {
  1506. "$type": "AZ::Render::EditorMeshComponent",
  1507. "Id": 14767609300906406257,
  1508. "Controller": {
  1509. "Configuration": {
  1510. "ModelAsset": {
  1511. "assetId": {
  1512. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  1513. "subId": 283109893
  1514. },
  1515. "assetHint": "objects/bunny.azmodel"
  1516. }
  1517. }
  1518. }
  1519. },
  1520. "EditorDisabledCompositionComponent": {
  1521. "$type": "EditorDisabledCompositionComponent",
  1522. "Id": 15710365472298700756
  1523. },
  1524. "EditorEntityIconComponent": {
  1525. "$type": "EditorEntityIconComponent",
  1526. "Id": 6095774710828788532
  1527. },
  1528. "EditorEntitySortComponent": {
  1529. "$type": "EditorEntitySortComponent",
  1530. "Id": 2015374262197931198
  1531. },
  1532. "EditorInspectorComponent": {
  1533. "$type": "EditorInspectorComponent",
  1534. "Id": 16452906587607067704
  1535. },
  1536. "EditorLockComponent": {
  1537. "$type": "EditorLockComponent",
  1538. "Id": 3973035496304432226
  1539. },
  1540. "EditorOnlyEntityComponent": {
  1541. "$type": "EditorOnlyEntityComponent",
  1542. "Id": 17702456914454803225
  1543. },
  1544. "EditorPendingCompositionComponent": {
  1545. "$type": "EditorPendingCompositionComponent",
  1546. "Id": 16545452882425456962
  1547. },
  1548. "EditorVisibilityComponent": {
  1549. "$type": "EditorVisibilityComponent",
  1550. "Id": 18306493370160356478
  1551. },
  1552. "TransformComponent": {
  1553. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1554. "Id": 7156680400794384315,
  1555. "Parent Entity": "Entity_[3931497975738]"
  1556. }
  1557. }
  1558. },
  1559. "Entity_[579308093284]": {
  1560. "Id": "Entity_[579308093284]",
  1561. "Name": "Entity1",
  1562. "Components": {
  1563. "AZ::Render::EditorMeshComponent": {
  1564. "$type": "AZ::Render::EditorMeshComponent",
  1565. "Id": 14767609300906406257,
  1566. "Controller": {
  1567. "Configuration": {
  1568. "ModelAsset": {
  1569. "assetId": {
  1570. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  1571. "subId": 283109893
  1572. },
  1573. "assetHint": "objects/bunny.azmodel"
  1574. }
  1575. }
  1576. }
  1577. },
  1578. "EditorDisabledCompositionComponent": {
  1579. "$type": "EditorDisabledCompositionComponent",
  1580. "Id": 15710365472298700756
  1581. },
  1582. "EditorEntityIconComponent": {
  1583. "$type": "EditorEntityIconComponent",
  1584. "Id": 6095774710828788532
  1585. },
  1586. "EditorEntitySortComponent": {
  1587. "$type": "EditorEntitySortComponent",
  1588. "Id": 2015374262197931198
  1589. },
  1590. "EditorInspectorComponent": {
  1591. "$type": "EditorInspectorComponent",
  1592. "Id": 16452906587607067704
  1593. },
  1594. "EditorLockComponent": {
  1595. "$type": "EditorLockComponent",
  1596. "Id": 3973035496304432226
  1597. },
  1598. "EditorOnlyEntityComponent": {
  1599. "$type": "EditorOnlyEntityComponent",
  1600. "Id": 17702456914454803225
  1601. },
  1602. "EditorPendingCompositionComponent": {
  1603. "$type": "EditorPendingCompositionComponent",
  1604. "Id": 16545452882425456962
  1605. },
  1606. "EditorVisibilityComponent": {
  1607. "$type": "EditorVisibilityComponent",
  1608. "Id": 18306493370160356478
  1609. },
  1610. "TransformComponent": {
  1611. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1612. "Id": 7156680400794384315,
  1613. "Parent Entity": "Entity_[3931497975738]",
  1614. "Transform Data": {
  1615. "Translate": [
  1616. -1.0,
  1617. 0.0,
  1618. 0.0
  1619. ]
  1620. }
  1621. }
  1622. }
  1623. },
  1624. "Entity_[587898027876]": {
  1625. "Id": "Entity_[587898027876]",
  1626. "Name": "Entity1",
  1627. "Components": {
  1628. "AZ::Render::EditorMeshComponent": {
  1629. "$type": "AZ::Render::EditorMeshComponent",
  1630. "Id": 14767609300906406257,
  1631. "Controller": {
  1632. "Configuration": {
  1633. "ModelAsset": {
  1634. "assetId": {
  1635. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  1636. "subId": 283109893
  1637. },
  1638. "assetHint": "objects/bunny.azmodel"
  1639. }
  1640. }
  1641. }
  1642. },
  1643. "EditorDisabledCompositionComponent": {
  1644. "$type": "EditorDisabledCompositionComponent",
  1645. "Id": 15710365472298700756
  1646. },
  1647. "EditorEntityIconComponent": {
  1648. "$type": "EditorEntityIconComponent",
  1649. "Id": 6095774710828788532
  1650. },
  1651. "EditorEntitySortComponent": {
  1652. "$type": "EditorEntitySortComponent",
  1653. "Id": 2015374262197931198
  1654. },
  1655. "EditorInspectorComponent": {
  1656. "$type": "EditorInspectorComponent",
  1657. "Id": 16452906587607067704
  1658. },
  1659. "EditorLockComponent": {
  1660. "$type": "EditorLockComponent",
  1661. "Id": 3973035496304432226
  1662. },
  1663. "EditorOnlyEntityComponent": {
  1664. "$type": "EditorOnlyEntityComponent",
  1665. "Id": 17702456914454803225
  1666. },
  1667. "EditorPendingCompositionComponent": {
  1668. "$type": "EditorPendingCompositionComponent",
  1669. "Id": 16545452882425456962
  1670. },
  1671. "EditorVisibilityComponent": {
  1672. "$type": "EditorVisibilityComponent",
  1673. "Id": 18306493370160356478
  1674. },
  1675. "TransformComponent": {
  1676. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1677. "Id": 7156680400794384315,
  1678. "Parent Entity": "Entity_[3931497975738]",
  1679. "Transform Data": {
  1680. "Translate": [
  1681. -3.0,
  1682. 0.0,
  1683. 0.0
  1684. ]
  1685. }
  1686. }
  1687. }
  1688. },
  1689. "Entity_[592192995172]": {
  1690. "Id": "Entity_[592192995172]",
  1691. "Name": "Entity1",
  1692. "Components": {
  1693. "AZ::Render::EditorMeshComponent": {
  1694. "$type": "AZ::Render::EditorMeshComponent",
  1695. "Id": 14767609300906406257,
  1696. "Controller": {
  1697. "Configuration": {
  1698. "ModelAsset": {
  1699. "assetId": {
  1700. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  1701. "subId": 283109893
  1702. },
  1703. "assetHint": "objects/bunny.azmodel"
  1704. }
  1705. }
  1706. }
  1707. },
  1708. "EditorDisabledCompositionComponent": {
  1709. "$type": "EditorDisabledCompositionComponent",
  1710. "Id": 15710365472298700756
  1711. },
  1712. "EditorEntityIconComponent": {
  1713. "$type": "EditorEntityIconComponent",
  1714. "Id": 6095774710828788532
  1715. },
  1716. "EditorEntitySortComponent": {
  1717. "$type": "EditorEntitySortComponent",
  1718. "Id": 2015374262197931198
  1719. },
  1720. "EditorInspectorComponent": {
  1721. "$type": "EditorInspectorComponent",
  1722. "Id": 16452906587607067704
  1723. },
  1724. "EditorLockComponent": {
  1725. "$type": "EditorLockComponent",
  1726. "Id": 3973035496304432226
  1727. },
  1728. "EditorOnlyEntityComponent": {
  1729. "$type": "EditorOnlyEntityComponent",
  1730. "Id": 17702456914454803225
  1731. },
  1732. "EditorPendingCompositionComponent": {
  1733. "$type": "EditorPendingCompositionComponent",
  1734. "Id": 16545452882425456962
  1735. },
  1736. "EditorVisibilityComponent": {
  1737. "$type": "EditorVisibilityComponent",
  1738. "Id": 18306493370160356478
  1739. },
  1740. "TransformComponent": {
  1741. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1742. "Id": 7156680400794384315,
  1743. "Parent Entity": "Entity_[3931497975738]",
  1744. "Transform Data": {
  1745. "Translate": [
  1746. -2.0,
  1747. 0.0,
  1748. 0.0
  1749. ]
  1750. }
  1751. }
  1752. }
  1753. },
  1754. "Entity_[605077897060]": {
  1755. "Id": "Entity_[605077897060]",
  1756. "Name": "Entity1",
  1757. "Components": {
  1758. "AZ::Render::EditorMeshComponent": {
  1759. "$type": "AZ::Render::EditorMeshComponent",
  1760. "Id": 14767609300906406257,
  1761. "Controller": {
  1762. "Configuration": {
  1763. "ModelAsset": {
  1764. "assetId": {
  1765. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  1766. "subId": 283109893
  1767. },
  1768. "assetHint": "objects/bunny.azmodel"
  1769. }
  1770. }
  1771. }
  1772. },
  1773. "EditorDisabledCompositionComponent": {
  1774. "$type": "EditorDisabledCompositionComponent",
  1775. "Id": 15710365472298700756
  1776. },
  1777. "EditorEntityIconComponent": {
  1778. "$type": "EditorEntityIconComponent",
  1779. "Id": 6095774710828788532
  1780. },
  1781. "EditorEntitySortComponent": {
  1782. "$type": "EditorEntitySortComponent",
  1783. "Id": 2015374262197931198
  1784. },
  1785. "EditorInspectorComponent": {
  1786. "$type": "EditorInspectorComponent",
  1787. "Id": 16452906587607067704
  1788. },
  1789. "EditorLockComponent": {
  1790. "$type": "EditorLockComponent",
  1791. "Id": 3973035496304432226
  1792. },
  1793. "EditorOnlyEntityComponent": {
  1794. "$type": "EditorOnlyEntityComponent",
  1795. "Id": 17702456914454803225
  1796. },
  1797. "EditorPendingCompositionComponent": {
  1798. "$type": "EditorPendingCompositionComponent",
  1799. "Id": 16545452882425456962
  1800. },
  1801. "EditorVisibilityComponent": {
  1802. "$type": "EditorVisibilityComponent",
  1803. "Id": 18306493370160356478
  1804. },
  1805. "TransformComponent": {
  1806. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1807. "Id": 7156680400794384315,
  1808. "Parent Entity": "Entity_[3931497975738]",
  1809. "Transform Data": {
  1810. "Translate": [
  1811. -6.0,
  1812. 0.0,
  1813. 0.0
  1814. ]
  1815. }
  1816. }
  1817. }
  1818. },
  1819. "Entity_[609372864356]": {
  1820. "Id": "Entity_[609372864356]",
  1821. "Name": "Entity1",
  1822. "Components": {
  1823. "AZ::Render::EditorMeshComponent": {
  1824. "$type": "AZ::Render::EditorMeshComponent",
  1825. "Id": 14767609300906406257,
  1826. "Controller": {
  1827. "Configuration": {
  1828. "ModelAsset": {
  1829. "assetId": {
  1830. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  1831. "subId": 283109893
  1832. },
  1833. "assetHint": "objects/bunny.azmodel"
  1834. }
  1835. }
  1836. }
  1837. },
  1838. "EditorDisabledCompositionComponent": {
  1839. "$type": "EditorDisabledCompositionComponent",
  1840. "Id": 15710365472298700756
  1841. },
  1842. "EditorEntityIconComponent": {
  1843. "$type": "EditorEntityIconComponent",
  1844. "Id": 6095774710828788532
  1845. },
  1846. "EditorEntitySortComponent": {
  1847. "$type": "EditorEntitySortComponent",
  1848. "Id": 2015374262197931198
  1849. },
  1850. "EditorInspectorComponent": {
  1851. "$type": "EditorInspectorComponent",
  1852. "Id": 16452906587607067704
  1853. },
  1854. "EditorLockComponent": {
  1855. "$type": "EditorLockComponent",
  1856. "Id": 3973035496304432226
  1857. },
  1858. "EditorOnlyEntityComponent": {
  1859. "$type": "EditorOnlyEntityComponent",
  1860. "Id": 17702456914454803225
  1861. },
  1862. "EditorPendingCompositionComponent": {
  1863. "$type": "EditorPendingCompositionComponent",
  1864. "Id": 16545452882425456962
  1865. },
  1866. "EditorVisibilityComponent": {
  1867. "$type": "EditorVisibilityComponent",
  1868. "Id": 18306493370160356478
  1869. },
  1870. "TransformComponent": {
  1871. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1872. "Id": 7156680400794384315,
  1873. "Parent Entity": "Entity_[3931497975738]",
  1874. "Transform Data": {
  1875. "Translate": [
  1876. -5.0,
  1877. 0.0,
  1878. 0.0
  1879. ]
  1880. }
  1881. }
  1882. }
  1883. },
  1884. "Entity_[613667831652]": {
  1885. "Id": "Entity_[613667831652]",
  1886. "Name": "Entity1",
  1887. "Components": {
  1888. "AZ::Render::EditorMeshComponent": {
  1889. "$type": "AZ::Render::EditorMeshComponent",
  1890. "Id": 14767609300906406257,
  1891. "Controller": {
  1892. "Configuration": {
  1893. "ModelAsset": {
  1894. "assetId": {
  1895. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  1896. "subId": 283109893
  1897. },
  1898. "assetHint": "objects/bunny.azmodel"
  1899. }
  1900. }
  1901. }
  1902. },
  1903. "EditorDisabledCompositionComponent": {
  1904. "$type": "EditorDisabledCompositionComponent",
  1905. "Id": 15710365472298700756
  1906. },
  1907. "EditorEntityIconComponent": {
  1908. "$type": "EditorEntityIconComponent",
  1909. "Id": 6095774710828788532
  1910. },
  1911. "EditorEntitySortComponent": {
  1912. "$type": "EditorEntitySortComponent",
  1913. "Id": 2015374262197931198
  1914. },
  1915. "EditorInspectorComponent": {
  1916. "$type": "EditorInspectorComponent",
  1917. "Id": 16452906587607067704
  1918. },
  1919. "EditorLockComponent": {
  1920. "$type": "EditorLockComponent",
  1921. "Id": 3973035496304432226
  1922. },
  1923. "EditorOnlyEntityComponent": {
  1924. "$type": "EditorOnlyEntityComponent",
  1925. "Id": 17702456914454803225
  1926. },
  1927. "EditorPendingCompositionComponent": {
  1928. "$type": "EditorPendingCompositionComponent",
  1929. "Id": 16545452882425456962
  1930. },
  1931. "EditorVisibilityComponent": {
  1932. "$type": "EditorVisibilityComponent",
  1933. "Id": 18306493370160356478
  1934. },
  1935. "TransformComponent": {
  1936. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1937. "Id": 7156680400794384315,
  1938. "Parent Entity": "Entity_[3931497975738]",
  1939. "Transform Data": {
  1940. "Translate": [
  1941. -7.0,
  1942. 0.0,
  1943. 0.0
  1944. ]
  1945. }
  1946. }
  1947. }
  1948. },
  1949. "Entity_[617962798948]": {
  1950. "Id": "Entity_[617962798948]",
  1951. "Name": "Entity1",
  1952. "Components": {
  1953. "AZ::Render::EditorMeshComponent": {
  1954. "$type": "AZ::Render::EditorMeshComponent",
  1955. "Id": 14767609300906406257,
  1956. "Controller": {
  1957. "Configuration": {
  1958. "ModelAsset": {
  1959. "assetId": {
  1960. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  1961. "subId": 283109893
  1962. },
  1963. "assetHint": "objects/bunny.azmodel"
  1964. }
  1965. }
  1966. }
  1967. },
  1968. "EditorDisabledCompositionComponent": {
  1969. "$type": "EditorDisabledCompositionComponent",
  1970. "Id": 15710365472298700756
  1971. },
  1972. "EditorEntityIconComponent": {
  1973. "$type": "EditorEntityIconComponent",
  1974. "Id": 6095774710828788532
  1975. },
  1976. "EditorEntitySortComponent": {
  1977. "$type": "EditorEntitySortComponent",
  1978. "Id": 2015374262197931198
  1979. },
  1980. "EditorInspectorComponent": {
  1981. "$type": "EditorInspectorComponent",
  1982. "Id": 16452906587607067704
  1983. },
  1984. "EditorLockComponent": {
  1985. "$type": "EditorLockComponent",
  1986. "Id": 3973035496304432226
  1987. },
  1988. "EditorOnlyEntityComponent": {
  1989. "$type": "EditorOnlyEntityComponent",
  1990. "Id": 17702456914454803225
  1991. },
  1992. "EditorPendingCompositionComponent": {
  1993. "$type": "EditorPendingCompositionComponent",
  1994. "Id": 16545452882425456962
  1995. },
  1996. "EditorVisibilityComponent": {
  1997. "$type": "EditorVisibilityComponent",
  1998. "Id": 18306493370160356478
  1999. },
  2000. "TransformComponent": {
  2001. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2002. "Id": 7156680400794384315,
  2003. "Parent Entity": "Entity_[3931497975738]",
  2004. "Transform Data": {
  2005. "Translate": [
  2006. -4.0,
  2007. 0.0,
  2008. 0.0
  2009. ]
  2010. }
  2011. }
  2012. }
  2013. },
  2014. "Entity_[845596065636]": {
  2015. "Id": "Entity_[845596065636]",
  2016. "Name": "Entity1",
  2017. "Components": {
  2018. "AZ::Render::EditorMeshComponent": {
  2019. "$type": "AZ::Render::EditorMeshComponent",
  2020. "Id": 14767609300906406257,
  2021. "Controller": {
  2022. "Configuration": {
  2023. "ModelAsset": {
  2024. "assetId": {
  2025. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2026. "subId": 283109893
  2027. },
  2028. "assetHint": "objects/bunny.azmodel"
  2029. }
  2030. }
  2031. }
  2032. },
  2033. "EditorDisabledCompositionComponent": {
  2034. "$type": "EditorDisabledCompositionComponent",
  2035. "Id": 15710365472298700756
  2036. },
  2037. "EditorEntityIconComponent": {
  2038. "$type": "EditorEntityIconComponent",
  2039. "Id": 6095774710828788532
  2040. },
  2041. "EditorEntitySortComponent": {
  2042. "$type": "EditorEntitySortComponent",
  2043. "Id": 2015374262197931198
  2044. },
  2045. "EditorInspectorComponent": {
  2046. "$type": "EditorInspectorComponent",
  2047. "Id": 16452906587607067704
  2048. },
  2049. "EditorLockComponent": {
  2050. "$type": "EditorLockComponent",
  2051. "Id": 3973035496304432226
  2052. },
  2053. "EditorOnlyEntityComponent": {
  2054. "$type": "EditorOnlyEntityComponent",
  2055. "Id": 17702456914454803225
  2056. },
  2057. "EditorPendingCompositionComponent": {
  2058. "$type": "EditorPendingCompositionComponent",
  2059. "Id": 16545452882425456962
  2060. },
  2061. "EditorVisibilityComponent": {
  2062. "$type": "EditorVisibilityComponent",
  2063. "Id": 18306493370160356478
  2064. },
  2065. "TransformComponent": {
  2066. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2067. "Id": 7156680400794384315,
  2068. "Parent Entity": "Entity_[3931497975738]",
  2069. "Transform Data": {
  2070. "Translate": [
  2071. -12.0,
  2072. 0.0,
  2073. 0.0
  2074. ]
  2075. }
  2076. }
  2077. }
  2078. },
  2079. "Entity_[849891032932]": {
  2080. "Id": "Entity_[849891032932]",
  2081. "Name": "Entity1",
  2082. "Components": {
  2083. "AZ::Render::EditorMeshComponent": {
  2084. "$type": "AZ::Render::EditorMeshComponent",
  2085. "Id": 14767609300906406257,
  2086. "Controller": {
  2087. "Configuration": {
  2088. "ModelAsset": {
  2089. "assetId": {
  2090. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2091. "subId": 283109893
  2092. },
  2093. "assetHint": "objects/bunny.azmodel"
  2094. }
  2095. }
  2096. }
  2097. },
  2098. "EditorDisabledCompositionComponent": {
  2099. "$type": "EditorDisabledCompositionComponent",
  2100. "Id": 15710365472298700756
  2101. },
  2102. "EditorEntityIconComponent": {
  2103. "$type": "EditorEntityIconComponent",
  2104. "Id": 6095774710828788532
  2105. },
  2106. "EditorEntitySortComponent": {
  2107. "$type": "EditorEntitySortComponent",
  2108. "Id": 2015374262197931198
  2109. },
  2110. "EditorInspectorComponent": {
  2111. "$type": "EditorInspectorComponent",
  2112. "Id": 16452906587607067704
  2113. },
  2114. "EditorLockComponent": {
  2115. "$type": "EditorLockComponent",
  2116. "Id": 3973035496304432226
  2117. },
  2118. "EditorOnlyEntityComponent": {
  2119. "$type": "EditorOnlyEntityComponent",
  2120. "Id": 17702456914454803225
  2121. },
  2122. "EditorPendingCompositionComponent": {
  2123. "$type": "EditorPendingCompositionComponent",
  2124. "Id": 16545452882425456962
  2125. },
  2126. "EditorVisibilityComponent": {
  2127. "$type": "EditorVisibilityComponent",
  2128. "Id": 18306493370160356478
  2129. },
  2130. "TransformComponent": {
  2131. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2132. "Id": 7156680400794384315,
  2133. "Parent Entity": "Entity_[3931497975738]",
  2134. "Transform Data": {
  2135. "Translate": [
  2136. -9.0,
  2137. 0.0,
  2138. 0.0
  2139. ]
  2140. }
  2141. }
  2142. }
  2143. },
  2144. "Entity_[854186000228]": {
  2145. "Id": "Entity_[854186000228]",
  2146. "Name": "Entity1",
  2147. "Components": {
  2148. "AZ::Render::EditorMeshComponent": {
  2149. "$type": "AZ::Render::EditorMeshComponent",
  2150. "Id": 14767609300906406257,
  2151. "Controller": {
  2152. "Configuration": {
  2153. "ModelAsset": {
  2154. "assetId": {
  2155. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2156. "subId": 283109893
  2157. },
  2158. "assetHint": "objects/bunny.azmodel"
  2159. }
  2160. }
  2161. }
  2162. },
  2163. "EditorDisabledCompositionComponent": {
  2164. "$type": "EditorDisabledCompositionComponent",
  2165. "Id": 15710365472298700756
  2166. },
  2167. "EditorEntityIconComponent": {
  2168. "$type": "EditorEntityIconComponent",
  2169. "Id": 6095774710828788532
  2170. },
  2171. "EditorEntitySortComponent": {
  2172. "$type": "EditorEntitySortComponent",
  2173. "Id": 2015374262197931198
  2174. },
  2175. "EditorInspectorComponent": {
  2176. "$type": "EditorInspectorComponent",
  2177. "Id": 16452906587607067704
  2178. },
  2179. "EditorLockComponent": {
  2180. "$type": "EditorLockComponent",
  2181. "Id": 3973035496304432226
  2182. },
  2183. "EditorOnlyEntityComponent": {
  2184. "$type": "EditorOnlyEntityComponent",
  2185. "Id": 17702456914454803225
  2186. },
  2187. "EditorPendingCompositionComponent": {
  2188. "$type": "EditorPendingCompositionComponent",
  2189. "Id": 16545452882425456962
  2190. },
  2191. "EditorVisibilityComponent": {
  2192. "$type": "EditorVisibilityComponent",
  2193. "Id": 18306493370160356478
  2194. },
  2195. "TransformComponent": {
  2196. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2197. "Id": 7156680400794384315,
  2198. "Parent Entity": "Entity_[3931497975738]",
  2199. "Transform Data": {
  2200. "Translate": [
  2201. -13.0,
  2202. 0.0,
  2203. 0.0
  2204. ]
  2205. }
  2206. }
  2207. }
  2208. },
  2209. "Entity_[858480967524]": {
  2210. "Id": "Entity_[858480967524]",
  2211. "Name": "Entity1",
  2212. "Components": {
  2213. "AZ::Render::EditorMeshComponent": {
  2214. "$type": "AZ::Render::EditorMeshComponent",
  2215. "Id": 14767609300906406257,
  2216. "Controller": {
  2217. "Configuration": {
  2218. "ModelAsset": {
  2219. "assetId": {
  2220. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2221. "subId": 283109893
  2222. },
  2223. "assetHint": "objects/bunny.azmodel"
  2224. }
  2225. }
  2226. }
  2227. },
  2228. "EditorDisabledCompositionComponent": {
  2229. "$type": "EditorDisabledCompositionComponent",
  2230. "Id": 15710365472298700756
  2231. },
  2232. "EditorEntityIconComponent": {
  2233. "$type": "EditorEntityIconComponent",
  2234. "Id": 6095774710828788532
  2235. },
  2236. "EditorEntitySortComponent": {
  2237. "$type": "EditorEntitySortComponent",
  2238. "Id": 2015374262197931198
  2239. },
  2240. "EditorInspectorComponent": {
  2241. "$type": "EditorInspectorComponent",
  2242. "Id": 16452906587607067704
  2243. },
  2244. "EditorLockComponent": {
  2245. "$type": "EditorLockComponent",
  2246. "Id": 3973035496304432226
  2247. },
  2248. "EditorOnlyEntityComponent": {
  2249. "$type": "EditorOnlyEntityComponent",
  2250. "Id": 17702456914454803225
  2251. },
  2252. "EditorPendingCompositionComponent": {
  2253. "$type": "EditorPendingCompositionComponent",
  2254. "Id": 16545452882425456962
  2255. },
  2256. "EditorVisibilityComponent": {
  2257. "$type": "EditorVisibilityComponent",
  2258. "Id": 18306493370160356478
  2259. },
  2260. "TransformComponent": {
  2261. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2262. "Id": 7156680400794384315,
  2263. "Parent Entity": "Entity_[3931497975738]",
  2264. "Transform Data": {
  2265. "Translate": [
  2266. -11.0,
  2267. 0.0,
  2268. 0.0
  2269. ]
  2270. }
  2271. }
  2272. }
  2273. },
  2274. "Entity_[862775934820]": {
  2275. "Id": "Entity_[862775934820]",
  2276. "Name": "Entity1",
  2277. "Components": {
  2278. "AZ::Render::EditorMeshComponent": {
  2279. "$type": "AZ::Render::EditorMeshComponent",
  2280. "Id": 14767609300906406257,
  2281. "Controller": {
  2282. "Configuration": {
  2283. "ModelAsset": {
  2284. "assetId": {
  2285. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2286. "subId": 283109893
  2287. },
  2288. "assetHint": "objects/bunny.azmodel"
  2289. }
  2290. }
  2291. }
  2292. },
  2293. "EditorDisabledCompositionComponent": {
  2294. "$type": "EditorDisabledCompositionComponent",
  2295. "Id": 15710365472298700756
  2296. },
  2297. "EditorEntityIconComponent": {
  2298. "$type": "EditorEntityIconComponent",
  2299. "Id": 6095774710828788532
  2300. },
  2301. "EditorEntitySortComponent": {
  2302. "$type": "EditorEntitySortComponent",
  2303. "Id": 2015374262197931198
  2304. },
  2305. "EditorInspectorComponent": {
  2306. "$type": "EditorInspectorComponent",
  2307. "Id": 16452906587607067704
  2308. },
  2309. "EditorLockComponent": {
  2310. "$type": "EditorLockComponent",
  2311. "Id": 3973035496304432226
  2312. },
  2313. "EditorOnlyEntityComponent": {
  2314. "$type": "EditorOnlyEntityComponent",
  2315. "Id": 17702456914454803225
  2316. },
  2317. "EditorPendingCompositionComponent": {
  2318. "$type": "EditorPendingCompositionComponent",
  2319. "Id": 16545452882425456962
  2320. },
  2321. "EditorVisibilityComponent": {
  2322. "$type": "EditorVisibilityComponent",
  2323. "Id": 18306493370160356478
  2324. },
  2325. "TransformComponent": {
  2326. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2327. "Id": 7156680400794384315,
  2328. "Parent Entity": "Entity_[3931497975738]",
  2329. "Transform Data": {
  2330. "Translate": [
  2331. -15.0,
  2332. 0.0,
  2333. 0.0
  2334. ]
  2335. }
  2336. }
  2337. }
  2338. },
  2339. "Entity_[867070902116]": {
  2340. "Id": "Entity_[867070902116]",
  2341. "Name": "Entity1",
  2342. "Components": {
  2343. "AZ::Render::EditorMeshComponent": {
  2344. "$type": "AZ::Render::EditorMeshComponent",
  2345. "Id": 14767609300906406257,
  2346. "Controller": {
  2347. "Configuration": {
  2348. "ModelAsset": {
  2349. "assetId": {
  2350. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2351. "subId": 283109893
  2352. },
  2353. "assetHint": "objects/bunny.azmodel"
  2354. }
  2355. }
  2356. }
  2357. },
  2358. "EditorDisabledCompositionComponent": {
  2359. "$type": "EditorDisabledCompositionComponent",
  2360. "Id": 15710365472298700756
  2361. },
  2362. "EditorEntityIconComponent": {
  2363. "$type": "EditorEntityIconComponent",
  2364. "Id": 6095774710828788532
  2365. },
  2366. "EditorEntitySortComponent": {
  2367. "$type": "EditorEntitySortComponent",
  2368. "Id": 2015374262197931198
  2369. },
  2370. "EditorInspectorComponent": {
  2371. "$type": "EditorInspectorComponent",
  2372. "Id": 16452906587607067704
  2373. },
  2374. "EditorLockComponent": {
  2375. "$type": "EditorLockComponent",
  2376. "Id": 3973035496304432226
  2377. },
  2378. "EditorOnlyEntityComponent": {
  2379. "$type": "EditorOnlyEntityComponent",
  2380. "Id": 17702456914454803225
  2381. },
  2382. "EditorPendingCompositionComponent": {
  2383. "$type": "EditorPendingCompositionComponent",
  2384. "Id": 16545452882425456962
  2385. },
  2386. "EditorVisibilityComponent": {
  2387. "$type": "EditorVisibilityComponent",
  2388. "Id": 18306493370160356478
  2389. },
  2390. "TransformComponent": {
  2391. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2392. "Id": 7156680400794384315,
  2393. "Parent Entity": "Entity_[3931497975738]",
  2394. "Transform Data": {
  2395. "Translate": [
  2396. -8.0,
  2397. 0.0,
  2398. 0.0
  2399. ]
  2400. }
  2401. }
  2402. }
  2403. },
  2404. "Entity_[871365869412]": {
  2405. "Id": "Entity_[871365869412]",
  2406. "Name": "Entity1",
  2407. "Components": {
  2408. "AZ::Render::EditorMeshComponent": {
  2409. "$type": "AZ::Render::EditorMeshComponent",
  2410. "Id": 14767609300906406257,
  2411. "Controller": {
  2412. "Configuration": {
  2413. "ModelAsset": {
  2414. "assetId": {
  2415. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2416. "subId": 283109893
  2417. },
  2418. "assetHint": "objects/bunny.azmodel"
  2419. }
  2420. }
  2421. }
  2422. },
  2423. "EditorDisabledCompositionComponent": {
  2424. "$type": "EditorDisabledCompositionComponent",
  2425. "Id": 15710365472298700756
  2426. },
  2427. "EditorEntityIconComponent": {
  2428. "$type": "EditorEntityIconComponent",
  2429. "Id": 6095774710828788532
  2430. },
  2431. "EditorEntitySortComponent": {
  2432. "$type": "EditorEntitySortComponent",
  2433. "Id": 2015374262197931198
  2434. },
  2435. "EditorInspectorComponent": {
  2436. "$type": "EditorInspectorComponent",
  2437. "Id": 16452906587607067704
  2438. },
  2439. "EditorLockComponent": {
  2440. "$type": "EditorLockComponent",
  2441. "Id": 3973035496304432226
  2442. },
  2443. "EditorOnlyEntityComponent": {
  2444. "$type": "EditorOnlyEntityComponent",
  2445. "Id": 17702456914454803225
  2446. },
  2447. "EditorPendingCompositionComponent": {
  2448. "$type": "EditorPendingCompositionComponent",
  2449. "Id": 16545452882425456962
  2450. },
  2451. "EditorVisibilityComponent": {
  2452. "$type": "EditorVisibilityComponent",
  2453. "Id": 18306493370160356478
  2454. },
  2455. "TransformComponent": {
  2456. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2457. "Id": 7156680400794384315,
  2458. "Parent Entity": "Entity_[3931497975738]",
  2459. "Transform Data": {
  2460. "Translate": [
  2461. -10.0,
  2462. 0.0,
  2463. 0.0
  2464. ]
  2465. }
  2466. }
  2467. }
  2468. },
  2469. "Entity_[875660836708]": {
  2470. "Id": "Entity_[875660836708]",
  2471. "Name": "Entity1",
  2472. "Components": {
  2473. "AZ::Render::EditorMeshComponent": {
  2474. "$type": "AZ::Render::EditorMeshComponent",
  2475. "Id": 14767609300906406257,
  2476. "Controller": {
  2477. "Configuration": {
  2478. "ModelAsset": {
  2479. "assetId": {
  2480. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2481. "subId": 283109893
  2482. },
  2483. "assetHint": "objects/bunny.azmodel"
  2484. }
  2485. }
  2486. }
  2487. },
  2488. "EditorDisabledCompositionComponent": {
  2489. "$type": "EditorDisabledCompositionComponent",
  2490. "Id": 15710365472298700756
  2491. },
  2492. "EditorEntityIconComponent": {
  2493. "$type": "EditorEntityIconComponent",
  2494. "Id": 6095774710828788532
  2495. },
  2496. "EditorEntitySortComponent": {
  2497. "$type": "EditorEntitySortComponent",
  2498. "Id": 2015374262197931198
  2499. },
  2500. "EditorInspectorComponent": {
  2501. "$type": "EditorInspectorComponent",
  2502. "Id": 16452906587607067704
  2503. },
  2504. "EditorLockComponent": {
  2505. "$type": "EditorLockComponent",
  2506. "Id": 3973035496304432226
  2507. },
  2508. "EditorOnlyEntityComponent": {
  2509. "$type": "EditorOnlyEntityComponent",
  2510. "Id": 17702456914454803225
  2511. },
  2512. "EditorPendingCompositionComponent": {
  2513. "$type": "EditorPendingCompositionComponent",
  2514. "Id": 16545452882425456962
  2515. },
  2516. "EditorVisibilityComponent": {
  2517. "$type": "EditorVisibilityComponent",
  2518. "Id": 18306493370160356478
  2519. },
  2520. "TransformComponent": {
  2521. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2522. "Id": 7156680400794384315,
  2523. "Parent Entity": "Entity_[3931497975738]",
  2524. "Transform Data": {
  2525. "Translate": [
  2526. -14.0,
  2527. 0.0,
  2528. 0.0
  2529. ]
  2530. }
  2531. }
  2532. }
  2533. },
  2534. "Entity_[914315542372]": {
  2535. "Id": "Entity_[914315542372]",
  2536. "Name": "Sun",
  2537. "Components": {
  2538. "AZ::Render::EditorDirectionalLightComponent": {
  2539. "$type": "AZ::Render::EditorDirectionalLightComponent",
  2540. "Id": 16946630535190443018,
  2541. "Controller": {
  2542. "Configuration": {
  2543. "IntensityMode": 2,
  2544. "Intensity": 5.0,
  2545. "CameraEntityId": "",
  2546. "ShadowFilterMethod": 1
  2547. }
  2548. }
  2549. },
  2550. "EditorDisabledCompositionComponent": {
  2551. "$type": "EditorDisabledCompositionComponent",
  2552. "Id": 14897794810375252600
  2553. },
  2554. "EditorEntityIconComponent": {
  2555. "$type": "EditorEntityIconComponent",
  2556. "Id": 15411637587659109668
  2557. },
  2558. "EditorEntitySortComponent": {
  2559. "$type": "EditorEntitySortComponent",
  2560. "Id": 10265177302857276426
  2561. },
  2562. "EditorInspectorComponent": {
  2563. "$type": "EditorInspectorComponent",
  2564. "Id": 17690256092223235645
  2565. },
  2566. "EditorLockComponent": {
  2567. "$type": "EditorLockComponent",
  2568. "Id": 15089421443549826699
  2569. },
  2570. "EditorOnlyEntityComponent": {
  2571. "$type": "EditorOnlyEntityComponent",
  2572. "Id": 3000175399073993791
  2573. },
  2574. "EditorPendingCompositionComponent": {
  2575. "$type": "EditorPendingCompositionComponent",
  2576. "Id": 9089388968727956697
  2577. },
  2578. "EditorVisibilityComponent": {
  2579. "$type": "EditorVisibilityComponent",
  2580. "Id": 9143267245440223577
  2581. },
  2582. "TransformComponent": {
  2583. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2584. "Id": 16484981410467877705,
  2585. "Parent Entity": "Entity_[1176639161715]",
  2586. "Transform Data": {
  2587. "Translate": [
  2588. 0.0,
  2589. 0.0,
  2590. 2.183845281600952
  2591. ],
  2592. "Rotate": [
  2593. -45.0,
  2594. 0.0,
  2595. -45.0
  2596. ]
  2597. }
  2598. }
  2599. }
  2600. },
  2601. "Entity_[927200444260]": {
  2602. "Id": "Entity_[927200444260]",
  2603. "Name": "Entity1",
  2604. "Components": {
  2605. "AZ::Render::EditorMeshComponent": {
  2606. "$type": "AZ::Render::EditorMeshComponent",
  2607. "Id": 14767609300906406257,
  2608. "Controller": {
  2609. "Configuration": {
  2610. "ModelAsset": {
  2611. "assetId": {
  2612. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2613. "subId": 283109893
  2614. },
  2615. "assetHint": "objects/bunny.azmodel"
  2616. }
  2617. }
  2618. }
  2619. },
  2620. "EditorDisabledCompositionComponent": {
  2621. "$type": "EditorDisabledCompositionComponent",
  2622. "Id": 15710365472298700756
  2623. },
  2624. "EditorEntityIconComponent": {
  2625. "$type": "EditorEntityIconComponent",
  2626. "Id": 6095774710828788532
  2627. },
  2628. "EditorEntitySortComponent": {
  2629. "$type": "EditorEntitySortComponent",
  2630. "Id": 2015374262197931198
  2631. },
  2632. "EditorInspectorComponent": {
  2633. "$type": "EditorInspectorComponent",
  2634. "Id": 16452906587607067704
  2635. },
  2636. "EditorLockComponent": {
  2637. "$type": "EditorLockComponent",
  2638. "Id": 3973035496304432226
  2639. },
  2640. "EditorOnlyEntityComponent": {
  2641. "$type": "EditorOnlyEntityComponent",
  2642. "Id": 17702456914454803225
  2643. },
  2644. "EditorPendingCompositionComponent": {
  2645. "$type": "EditorPendingCompositionComponent",
  2646. "Id": 16545452882425456962
  2647. },
  2648. "EditorVisibilityComponent": {
  2649. "$type": "EditorVisibilityComponent",
  2650. "Id": 18306493370160356478
  2651. },
  2652. "TransformComponent": {
  2653. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2654. "Id": 7156680400794384315,
  2655. "Parent Entity": "Entity_[3931497975738]",
  2656. "Transform Data": {
  2657. "Translate": [
  2658. -27.002769470214844,
  2659. 0.0,
  2660. 0.0
  2661. ]
  2662. }
  2663. }
  2664. }
  2665. },
  2666. "Entity_[931495411556]": {
  2667. "Id": "Entity_[931495411556]",
  2668. "Name": "Entity1",
  2669. "Components": {
  2670. "AZ::Render::EditorMeshComponent": {
  2671. "$type": "AZ::Render::EditorMeshComponent",
  2672. "Id": 14767609300906406257,
  2673. "Controller": {
  2674. "Configuration": {
  2675. "ModelAsset": {
  2676. "assetId": {
  2677. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2678. "subId": 283109893
  2679. },
  2680. "assetHint": "objects/bunny.azmodel"
  2681. }
  2682. }
  2683. }
  2684. },
  2685. "EditorDisabledCompositionComponent": {
  2686. "$type": "EditorDisabledCompositionComponent",
  2687. "Id": 15710365472298700756
  2688. },
  2689. "EditorEntityIconComponent": {
  2690. "$type": "EditorEntityIconComponent",
  2691. "Id": 6095774710828788532
  2692. },
  2693. "EditorEntitySortComponent": {
  2694. "$type": "EditorEntitySortComponent",
  2695. "Id": 2015374262197931198
  2696. },
  2697. "EditorInspectorComponent": {
  2698. "$type": "EditorInspectorComponent",
  2699. "Id": 16452906587607067704
  2700. },
  2701. "EditorLockComponent": {
  2702. "$type": "EditorLockComponent",
  2703. "Id": 3973035496304432226
  2704. },
  2705. "EditorOnlyEntityComponent": {
  2706. "$type": "EditorOnlyEntityComponent",
  2707. "Id": 17702456914454803225
  2708. },
  2709. "EditorPendingCompositionComponent": {
  2710. "$type": "EditorPendingCompositionComponent",
  2711. "Id": 16545452882425456962
  2712. },
  2713. "EditorVisibilityComponent": {
  2714. "$type": "EditorVisibilityComponent",
  2715. "Id": 18306493370160356478
  2716. },
  2717. "TransformComponent": {
  2718. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2719. "Id": 7156680400794384315,
  2720. "Parent Entity": "Entity_[3931497975738]",
  2721. "Transform Data": {
  2722. "Translate": [
  2723. -19.002769470214844,
  2724. 0.0,
  2725. 0.0
  2726. ]
  2727. }
  2728. }
  2729. }
  2730. },
  2731. "Entity_[935790378852]": {
  2732. "Id": "Entity_[935790378852]",
  2733. "Name": "Entity1",
  2734. "Components": {
  2735. "AZ::Render::EditorMeshComponent": {
  2736. "$type": "AZ::Render::EditorMeshComponent",
  2737. "Id": 14767609300906406257,
  2738. "Controller": {
  2739. "Configuration": {
  2740. "ModelAsset": {
  2741. "assetId": {
  2742. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2743. "subId": 283109893
  2744. },
  2745. "assetHint": "objects/bunny.azmodel"
  2746. }
  2747. }
  2748. }
  2749. },
  2750. "EditorDisabledCompositionComponent": {
  2751. "$type": "EditorDisabledCompositionComponent",
  2752. "Id": 15710365472298700756
  2753. },
  2754. "EditorEntityIconComponent": {
  2755. "$type": "EditorEntityIconComponent",
  2756. "Id": 6095774710828788532
  2757. },
  2758. "EditorEntitySortComponent": {
  2759. "$type": "EditorEntitySortComponent",
  2760. "Id": 2015374262197931198
  2761. },
  2762. "EditorInspectorComponent": {
  2763. "$type": "EditorInspectorComponent",
  2764. "Id": 16452906587607067704
  2765. },
  2766. "EditorLockComponent": {
  2767. "$type": "EditorLockComponent",
  2768. "Id": 3973035496304432226
  2769. },
  2770. "EditorOnlyEntityComponent": {
  2771. "$type": "EditorOnlyEntityComponent",
  2772. "Id": 17702456914454803225
  2773. },
  2774. "EditorPendingCompositionComponent": {
  2775. "$type": "EditorPendingCompositionComponent",
  2776. "Id": 16545452882425456962
  2777. },
  2778. "EditorVisibilityComponent": {
  2779. "$type": "EditorVisibilityComponent",
  2780. "Id": 18306493370160356478
  2781. },
  2782. "TransformComponent": {
  2783. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2784. "Id": 7156680400794384315,
  2785. "Parent Entity": "Entity_[3931497975738]",
  2786. "Transform Data": {
  2787. "Translate": [
  2788. -21.002769470214844,
  2789. 0.0,
  2790. 0.0
  2791. ]
  2792. }
  2793. }
  2794. }
  2795. },
  2796. "Entity_[940085346148]": {
  2797. "Id": "Entity_[940085346148]",
  2798. "Name": "Entity1",
  2799. "Components": {
  2800. "AZ::Render::EditorMeshComponent": {
  2801. "$type": "AZ::Render::EditorMeshComponent",
  2802. "Id": 14767609300906406257,
  2803. "Controller": {
  2804. "Configuration": {
  2805. "ModelAsset": {
  2806. "assetId": {
  2807. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2808. "subId": 283109893
  2809. },
  2810. "assetHint": "objects/bunny.azmodel"
  2811. }
  2812. }
  2813. }
  2814. },
  2815. "EditorDisabledCompositionComponent": {
  2816. "$type": "EditorDisabledCompositionComponent",
  2817. "Id": 15710365472298700756
  2818. },
  2819. "EditorEntityIconComponent": {
  2820. "$type": "EditorEntityIconComponent",
  2821. "Id": 6095774710828788532
  2822. },
  2823. "EditorEntitySortComponent": {
  2824. "$type": "EditorEntitySortComponent",
  2825. "Id": 2015374262197931198
  2826. },
  2827. "EditorInspectorComponent": {
  2828. "$type": "EditorInspectorComponent",
  2829. "Id": 16452906587607067704
  2830. },
  2831. "EditorLockComponent": {
  2832. "$type": "EditorLockComponent",
  2833. "Id": 3973035496304432226
  2834. },
  2835. "EditorOnlyEntityComponent": {
  2836. "$type": "EditorOnlyEntityComponent",
  2837. "Id": 17702456914454803225
  2838. },
  2839. "EditorPendingCompositionComponent": {
  2840. "$type": "EditorPendingCompositionComponent",
  2841. "Id": 16545452882425456962
  2842. },
  2843. "EditorVisibilityComponent": {
  2844. "$type": "EditorVisibilityComponent",
  2845. "Id": 18306493370160356478
  2846. },
  2847. "TransformComponent": {
  2848. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2849. "Id": 7156680400794384315,
  2850. "Parent Entity": "Entity_[3931497975738]",
  2851. "Transform Data": {
  2852. "Translate": [
  2853. -30.002769470214844,
  2854. 0.0,
  2855. 0.0
  2856. ]
  2857. }
  2858. }
  2859. }
  2860. },
  2861. "Entity_[944380313444]": {
  2862. "Id": "Entity_[944380313444]",
  2863. "Name": "Entity1",
  2864. "Components": {
  2865. "AZ::Render::EditorMeshComponent": {
  2866. "$type": "AZ::Render::EditorMeshComponent",
  2867. "Id": 14767609300906406257,
  2868. "Controller": {
  2869. "Configuration": {
  2870. "ModelAsset": {
  2871. "assetId": {
  2872. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2873. "subId": 283109893
  2874. },
  2875. "assetHint": "objects/bunny.azmodel"
  2876. }
  2877. }
  2878. }
  2879. },
  2880. "EditorDisabledCompositionComponent": {
  2881. "$type": "EditorDisabledCompositionComponent",
  2882. "Id": 15710365472298700756
  2883. },
  2884. "EditorEntityIconComponent": {
  2885. "$type": "EditorEntityIconComponent",
  2886. "Id": 6095774710828788532
  2887. },
  2888. "EditorEntitySortComponent": {
  2889. "$type": "EditorEntitySortComponent",
  2890. "Id": 2015374262197931198
  2891. },
  2892. "EditorInspectorComponent": {
  2893. "$type": "EditorInspectorComponent",
  2894. "Id": 16452906587607067704
  2895. },
  2896. "EditorLockComponent": {
  2897. "$type": "EditorLockComponent",
  2898. "Id": 3973035496304432226
  2899. },
  2900. "EditorOnlyEntityComponent": {
  2901. "$type": "EditorOnlyEntityComponent",
  2902. "Id": 17702456914454803225
  2903. },
  2904. "EditorPendingCompositionComponent": {
  2905. "$type": "EditorPendingCompositionComponent",
  2906. "Id": 16545452882425456962
  2907. },
  2908. "EditorVisibilityComponent": {
  2909. "$type": "EditorVisibilityComponent",
  2910. "Id": 18306493370160356478
  2911. },
  2912. "TransformComponent": {
  2913. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2914. "Id": 7156680400794384315,
  2915. "Parent Entity": "Entity_[3931497975738]",
  2916. "Transform Data": {
  2917. "Translate": [
  2918. -31.002769470214844,
  2919. 0.0,
  2920. 0.0
  2921. ]
  2922. }
  2923. }
  2924. }
  2925. },
  2926. "Entity_[948675280740]": {
  2927. "Id": "Entity_[948675280740]",
  2928. "Name": "Entity1",
  2929. "Components": {
  2930. "AZ::Render::EditorMeshComponent": {
  2931. "$type": "AZ::Render::EditorMeshComponent",
  2932. "Id": 14767609300906406257,
  2933. "Controller": {
  2934. "Configuration": {
  2935. "ModelAsset": {
  2936. "assetId": {
  2937. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  2938. "subId": 283109893
  2939. },
  2940. "assetHint": "objects/bunny.azmodel"
  2941. }
  2942. }
  2943. }
  2944. },
  2945. "EditorDisabledCompositionComponent": {
  2946. "$type": "EditorDisabledCompositionComponent",
  2947. "Id": 15710365472298700756
  2948. },
  2949. "EditorEntityIconComponent": {
  2950. "$type": "EditorEntityIconComponent",
  2951. "Id": 6095774710828788532
  2952. },
  2953. "EditorEntitySortComponent": {
  2954. "$type": "EditorEntitySortComponent",
  2955. "Id": 2015374262197931198
  2956. },
  2957. "EditorInspectorComponent": {
  2958. "$type": "EditorInspectorComponent",
  2959. "Id": 16452906587607067704
  2960. },
  2961. "EditorLockComponent": {
  2962. "$type": "EditorLockComponent",
  2963. "Id": 3973035496304432226
  2964. },
  2965. "EditorOnlyEntityComponent": {
  2966. "$type": "EditorOnlyEntityComponent",
  2967. "Id": 17702456914454803225
  2968. },
  2969. "EditorPendingCompositionComponent": {
  2970. "$type": "EditorPendingCompositionComponent",
  2971. "Id": 16545452882425456962
  2972. },
  2973. "EditorVisibilityComponent": {
  2974. "$type": "EditorVisibilityComponent",
  2975. "Id": 18306493370160356478
  2976. },
  2977. "TransformComponent": {
  2978. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  2979. "Id": 7156680400794384315,
  2980. "Parent Entity": "Entity_[3931497975738]",
  2981. "Transform Data": {
  2982. "Translate": [
  2983. -16.002769470214844,
  2984. 0.0,
  2985. 0.0
  2986. ]
  2987. }
  2988. }
  2989. }
  2990. },
  2991. "Entity_[952970248036]": {
  2992. "Id": "Entity_[952970248036]",
  2993. "Name": "Entity1",
  2994. "Components": {
  2995. "AZ::Render::EditorMeshComponent": {
  2996. "$type": "AZ::Render::EditorMeshComponent",
  2997. "Id": 14767609300906406257,
  2998. "Controller": {
  2999. "Configuration": {
  3000. "ModelAsset": {
  3001. "assetId": {
  3002. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  3003. "subId": 283109893
  3004. },
  3005. "assetHint": "objects/bunny.azmodel"
  3006. }
  3007. }
  3008. }
  3009. },
  3010. "EditorDisabledCompositionComponent": {
  3011. "$type": "EditorDisabledCompositionComponent",
  3012. "Id": 15710365472298700756
  3013. },
  3014. "EditorEntityIconComponent": {
  3015. "$type": "EditorEntityIconComponent",
  3016. "Id": 6095774710828788532
  3017. },
  3018. "EditorEntitySortComponent": {
  3019. "$type": "EditorEntitySortComponent",
  3020. "Id": 2015374262197931198
  3021. },
  3022. "EditorInspectorComponent": {
  3023. "$type": "EditorInspectorComponent",
  3024. "Id": 16452906587607067704
  3025. },
  3026. "EditorLockComponent": {
  3027. "$type": "EditorLockComponent",
  3028. "Id": 3973035496304432226
  3029. },
  3030. "EditorOnlyEntityComponent": {
  3031. "$type": "EditorOnlyEntityComponent",
  3032. "Id": 17702456914454803225
  3033. },
  3034. "EditorPendingCompositionComponent": {
  3035. "$type": "EditorPendingCompositionComponent",
  3036. "Id": 16545452882425456962
  3037. },
  3038. "EditorVisibilityComponent": {
  3039. "$type": "EditorVisibilityComponent",
  3040. "Id": 18306493370160356478
  3041. },
  3042. "TransformComponent": {
  3043. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3044. "Id": 7156680400794384315,
  3045. "Parent Entity": "Entity_[3931497975738]",
  3046. "Transform Data": {
  3047. "Translate": [
  3048. -22.002769470214844,
  3049. 0.0,
  3050. 0.0
  3051. ]
  3052. }
  3053. }
  3054. }
  3055. },
  3056. "Entity_[957265215332]": {
  3057. "Id": "Entity_[957265215332]",
  3058. "Name": "Entity1",
  3059. "Components": {
  3060. "AZ::Render::EditorMeshComponent": {
  3061. "$type": "AZ::Render::EditorMeshComponent",
  3062. "Id": 14767609300906406257,
  3063. "Controller": {
  3064. "Configuration": {
  3065. "ModelAsset": {
  3066. "assetId": {
  3067. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  3068. "subId": 283109893
  3069. },
  3070. "assetHint": "objects/bunny.azmodel"
  3071. }
  3072. }
  3073. }
  3074. },
  3075. "EditorDisabledCompositionComponent": {
  3076. "$type": "EditorDisabledCompositionComponent",
  3077. "Id": 15710365472298700756
  3078. },
  3079. "EditorEntityIconComponent": {
  3080. "$type": "EditorEntityIconComponent",
  3081. "Id": 6095774710828788532
  3082. },
  3083. "EditorEntitySortComponent": {
  3084. "$type": "EditorEntitySortComponent",
  3085. "Id": 2015374262197931198
  3086. },
  3087. "EditorInspectorComponent": {
  3088. "$type": "EditorInspectorComponent",
  3089. "Id": 16452906587607067704
  3090. },
  3091. "EditorLockComponent": {
  3092. "$type": "EditorLockComponent",
  3093. "Id": 3973035496304432226
  3094. },
  3095. "EditorOnlyEntityComponent": {
  3096. "$type": "EditorOnlyEntityComponent",
  3097. "Id": 17702456914454803225
  3098. },
  3099. "EditorPendingCompositionComponent": {
  3100. "$type": "EditorPendingCompositionComponent",
  3101. "Id": 16545452882425456962
  3102. },
  3103. "EditorVisibilityComponent": {
  3104. "$type": "EditorVisibilityComponent",
  3105. "Id": 18306493370160356478
  3106. },
  3107. "TransformComponent": {
  3108. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3109. "Id": 7156680400794384315,
  3110. "Parent Entity": "Entity_[3931497975738]",
  3111. "Transform Data": {
  3112. "Translate": [
  3113. -18.002769470214844,
  3114. 0.0,
  3115. 0.0
  3116. ]
  3117. }
  3118. }
  3119. }
  3120. },
  3121. "Entity_[961560182628]": {
  3122. "Id": "Entity_[961560182628]",
  3123. "Name": "Entity1",
  3124. "Components": {
  3125. "AZ::Render::EditorMeshComponent": {
  3126. "$type": "AZ::Render::EditorMeshComponent",
  3127. "Id": 14767609300906406257,
  3128. "Controller": {
  3129. "Configuration": {
  3130. "ModelAsset": {
  3131. "assetId": {
  3132. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  3133. "subId": 283109893
  3134. },
  3135. "assetHint": "objects/bunny.azmodel"
  3136. }
  3137. }
  3138. }
  3139. },
  3140. "EditorDisabledCompositionComponent": {
  3141. "$type": "EditorDisabledCompositionComponent",
  3142. "Id": 15710365472298700756
  3143. },
  3144. "EditorEntityIconComponent": {
  3145. "$type": "EditorEntityIconComponent",
  3146. "Id": 6095774710828788532
  3147. },
  3148. "EditorEntitySortComponent": {
  3149. "$type": "EditorEntitySortComponent",
  3150. "Id": 2015374262197931198
  3151. },
  3152. "EditorInspectorComponent": {
  3153. "$type": "EditorInspectorComponent",
  3154. "Id": 16452906587607067704
  3155. },
  3156. "EditorLockComponent": {
  3157. "$type": "EditorLockComponent",
  3158. "Id": 3973035496304432226
  3159. },
  3160. "EditorOnlyEntityComponent": {
  3161. "$type": "EditorOnlyEntityComponent",
  3162. "Id": 17702456914454803225
  3163. },
  3164. "EditorPendingCompositionComponent": {
  3165. "$type": "EditorPendingCompositionComponent",
  3166. "Id": 16545452882425456962
  3167. },
  3168. "EditorVisibilityComponent": {
  3169. "$type": "EditorVisibilityComponent",
  3170. "Id": 18306493370160356478
  3171. },
  3172. "TransformComponent": {
  3173. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3174. "Id": 7156680400794384315,
  3175. "Parent Entity": "Entity_[3931497975738]",
  3176. "Transform Data": {
  3177. "Translate": [
  3178. -29.002769470214844,
  3179. 0.0,
  3180. 0.0
  3181. ]
  3182. }
  3183. }
  3184. }
  3185. },
  3186. "Entity_[965855149924]": {
  3187. "Id": "Entity_[965855149924]",
  3188. "Name": "Entity1",
  3189. "Components": {
  3190. "AZ::Render::EditorMeshComponent": {
  3191. "$type": "AZ::Render::EditorMeshComponent",
  3192. "Id": 14767609300906406257,
  3193. "Controller": {
  3194. "Configuration": {
  3195. "ModelAsset": {
  3196. "assetId": {
  3197. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  3198. "subId": 283109893
  3199. },
  3200. "assetHint": "objects/bunny.azmodel"
  3201. }
  3202. }
  3203. }
  3204. },
  3205. "EditorDisabledCompositionComponent": {
  3206. "$type": "EditorDisabledCompositionComponent",
  3207. "Id": 15710365472298700756
  3208. },
  3209. "EditorEntityIconComponent": {
  3210. "$type": "EditorEntityIconComponent",
  3211. "Id": 6095774710828788532
  3212. },
  3213. "EditorEntitySortComponent": {
  3214. "$type": "EditorEntitySortComponent",
  3215. "Id": 2015374262197931198
  3216. },
  3217. "EditorInspectorComponent": {
  3218. "$type": "EditorInspectorComponent",
  3219. "Id": 16452906587607067704
  3220. },
  3221. "EditorLockComponent": {
  3222. "$type": "EditorLockComponent",
  3223. "Id": 3973035496304432226
  3224. },
  3225. "EditorOnlyEntityComponent": {
  3226. "$type": "EditorOnlyEntityComponent",
  3227. "Id": 17702456914454803225
  3228. },
  3229. "EditorPendingCompositionComponent": {
  3230. "$type": "EditorPendingCompositionComponent",
  3231. "Id": 16545452882425456962
  3232. },
  3233. "EditorVisibilityComponent": {
  3234. "$type": "EditorVisibilityComponent",
  3235. "Id": 18306493370160356478
  3236. },
  3237. "TransformComponent": {
  3238. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3239. "Id": 7156680400794384315,
  3240. "Parent Entity": "Entity_[3931497975738]",
  3241. "Transform Data": {
  3242. "Translate": [
  3243. -23.002769470214844,
  3244. 0.0,
  3245. 0.0
  3246. ]
  3247. }
  3248. }
  3249. }
  3250. },
  3251. "Entity_[970150117220]": {
  3252. "Id": "Entity_[970150117220]",
  3253. "Name": "Entity1",
  3254. "Components": {
  3255. "AZ::Render::EditorMeshComponent": {
  3256. "$type": "AZ::Render::EditorMeshComponent",
  3257. "Id": 14767609300906406257,
  3258. "Controller": {
  3259. "Configuration": {
  3260. "ModelAsset": {
  3261. "assetId": {
  3262. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  3263. "subId": 283109893
  3264. },
  3265. "assetHint": "objects/bunny.azmodel"
  3266. }
  3267. }
  3268. }
  3269. },
  3270. "EditorDisabledCompositionComponent": {
  3271. "$type": "EditorDisabledCompositionComponent",
  3272. "Id": 15710365472298700756
  3273. },
  3274. "EditorEntityIconComponent": {
  3275. "$type": "EditorEntityIconComponent",
  3276. "Id": 6095774710828788532
  3277. },
  3278. "EditorEntitySortComponent": {
  3279. "$type": "EditorEntitySortComponent",
  3280. "Id": 2015374262197931198
  3281. },
  3282. "EditorInspectorComponent": {
  3283. "$type": "EditorInspectorComponent",
  3284. "Id": 16452906587607067704
  3285. },
  3286. "EditorLockComponent": {
  3287. "$type": "EditorLockComponent",
  3288. "Id": 3973035496304432226
  3289. },
  3290. "EditorOnlyEntityComponent": {
  3291. "$type": "EditorOnlyEntityComponent",
  3292. "Id": 17702456914454803225
  3293. },
  3294. "EditorPendingCompositionComponent": {
  3295. "$type": "EditorPendingCompositionComponent",
  3296. "Id": 16545452882425456962
  3297. },
  3298. "EditorVisibilityComponent": {
  3299. "$type": "EditorVisibilityComponent",
  3300. "Id": 18306493370160356478
  3301. },
  3302. "TransformComponent": {
  3303. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3304. "Id": 7156680400794384315,
  3305. "Parent Entity": "Entity_[3931497975738]",
  3306. "Transform Data": {
  3307. "Translate": [
  3308. -25.002769470214844,
  3309. 0.0,
  3310. 0.0
  3311. ]
  3312. }
  3313. }
  3314. }
  3315. },
  3316. "Entity_[974445084516]": {
  3317. "Id": "Entity_[974445084516]",
  3318. "Name": "Entity1",
  3319. "Components": {
  3320. "AZ::Render::EditorMeshComponent": {
  3321. "$type": "AZ::Render::EditorMeshComponent",
  3322. "Id": 14767609300906406257,
  3323. "Controller": {
  3324. "Configuration": {
  3325. "ModelAsset": {
  3326. "assetId": {
  3327. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  3328. "subId": 283109893
  3329. },
  3330. "assetHint": "objects/bunny.azmodel"
  3331. }
  3332. }
  3333. }
  3334. },
  3335. "EditorDisabledCompositionComponent": {
  3336. "$type": "EditorDisabledCompositionComponent",
  3337. "Id": 15710365472298700756
  3338. },
  3339. "EditorEntityIconComponent": {
  3340. "$type": "EditorEntityIconComponent",
  3341. "Id": 6095774710828788532
  3342. },
  3343. "EditorEntitySortComponent": {
  3344. "$type": "EditorEntitySortComponent",
  3345. "Id": 2015374262197931198
  3346. },
  3347. "EditorInspectorComponent": {
  3348. "$type": "EditorInspectorComponent",
  3349. "Id": 16452906587607067704
  3350. },
  3351. "EditorLockComponent": {
  3352. "$type": "EditorLockComponent",
  3353. "Id": 3973035496304432226
  3354. },
  3355. "EditorOnlyEntityComponent": {
  3356. "$type": "EditorOnlyEntityComponent",
  3357. "Id": 17702456914454803225
  3358. },
  3359. "EditorPendingCompositionComponent": {
  3360. "$type": "EditorPendingCompositionComponent",
  3361. "Id": 16545452882425456962
  3362. },
  3363. "EditorVisibilityComponent": {
  3364. "$type": "EditorVisibilityComponent",
  3365. "Id": 18306493370160356478
  3366. },
  3367. "TransformComponent": {
  3368. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3369. "Id": 7156680400794384315,
  3370. "Parent Entity": "Entity_[3931497975738]",
  3371. "Transform Data": {
  3372. "Translate": [
  3373. -26.002769470214844,
  3374. 0.0,
  3375. 0.0
  3376. ]
  3377. }
  3378. }
  3379. }
  3380. },
  3381. "Entity_[978740051812]": {
  3382. "Id": "Entity_[978740051812]",
  3383. "Name": "Entity1",
  3384. "Components": {
  3385. "AZ::Render::EditorMeshComponent": {
  3386. "$type": "AZ::Render::EditorMeshComponent",
  3387. "Id": 14767609300906406257,
  3388. "Controller": {
  3389. "Configuration": {
  3390. "ModelAsset": {
  3391. "assetId": {
  3392. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  3393. "subId": 283109893
  3394. },
  3395. "assetHint": "objects/bunny.azmodel"
  3396. }
  3397. }
  3398. }
  3399. },
  3400. "EditorDisabledCompositionComponent": {
  3401. "$type": "EditorDisabledCompositionComponent",
  3402. "Id": 15710365472298700756
  3403. },
  3404. "EditorEntityIconComponent": {
  3405. "$type": "EditorEntityIconComponent",
  3406. "Id": 6095774710828788532
  3407. },
  3408. "EditorEntitySortComponent": {
  3409. "$type": "EditorEntitySortComponent",
  3410. "Id": 2015374262197931198
  3411. },
  3412. "EditorInspectorComponent": {
  3413. "$type": "EditorInspectorComponent",
  3414. "Id": 16452906587607067704
  3415. },
  3416. "EditorLockComponent": {
  3417. "$type": "EditorLockComponent",
  3418. "Id": 3973035496304432226
  3419. },
  3420. "EditorOnlyEntityComponent": {
  3421. "$type": "EditorOnlyEntityComponent",
  3422. "Id": 17702456914454803225
  3423. },
  3424. "EditorPendingCompositionComponent": {
  3425. "$type": "EditorPendingCompositionComponent",
  3426. "Id": 16545452882425456962
  3427. },
  3428. "EditorVisibilityComponent": {
  3429. "$type": "EditorVisibilityComponent",
  3430. "Id": 18306493370160356478
  3431. },
  3432. "TransformComponent": {
  3433. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3434. "Id": 7156680400794384315,
  3435. "Parent Entity": "Entity_[3931497975738]",
  3436. "Transform Data": {
  3437. "Translate": [
  3438. -20.002769470214844,
  3439. 0.0,
  3440. 0.0
  3441. ]
  3442. }
  3443. }
  3444. }
  3445. },
  3446. "Entity_[983035019108]": {
  3447. "Id": "Entity_[983035019108]",
  3448. "Name": "Entity1",
  3449. "Components": {
  3450. "AZ::Render::EditorMeshComponent": {
  3451. "$type": "AZ::Render::EditorMeshComponent",
  3452. "Id": 14767609300906406257,
  3453. "Controller": {
  3454. "Configuration": {
  3455. "ModelAsset": {
  3456. "assetId": {
  3457. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  3458. "subId": 283109893
  3459. },
  3460. "assetHint": "objects/bunny.azmodel"
  3461. }
  3462. }
  3463. }
  3464. },
  3465. "EditorDisabledCompositionComponent": {
  3466. "$type": "EditorDisabledCompositionComponent",
  3467. "Id": 15710365472298700756
  3468. },
  3469. "EditorEntityIconComponent": {
  3470. "$type": "EditorEntityIconComponent",
  3471. "Id": 6095774710828788532
  3472. },
  3473. "EditorEntitySortComponent": {
  3474. "$type": "EditorEntitySortComponent",
  3475. "Id": 2015374262197931198
  3476. },
  3477. "EditorInspectorComponent": {
  3478. "$type": "EditorInspectorComponent",
  3479. "Id": 16452906587607067704
  3480. },
  3481. "EditorLockComponent": {
  3482. "$type": "EditorLockComponent",
  3483. "Id": 3973035496304432226
  3484. },
  3485. "EditorOnlyEntityComponent": {
  3486. "$type": "EditorOnlyEntityComponent",
  3487. "Id": 17702456914454803225
  3488. },
  3489. "EditorPendingCompositionComponent": {
  3490. "$type": "EditorPendingCompositionComponent",
  3491. "Id": 16545452882425456962
  3492. },
  3493. "EditorVisibilityComponent": {
  3494. "$type": "EditorVisibilityComponent",
  3495. "Id": 18306493370160356478
  3496. },
  3497. "TransformComponent": {
  3498. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3499. "Id": 7156680400794384315,
  3500. "Parent Entity": "Entity_[3931497975738]",
  3501. "Transform Data": {
  3502. "Translate": [
  3503. -28.002769470214844,
  3504. 0.0,
  3505. 0.0
  3506. ]
  3507. }
  3508. }
  3509. }
  3510. },
  3511. "Entity_[987329986404]": {
  3512. "Id": "Entity_[987329986404]",
  3513. "Name": "Entity1",
  3514. "Components": {
  3515. "AZ::Render::EditorMeshComponent": {
  3516. "$type": "AZ::Render::EditorMeshComponent",
  3517. "Id": 14767609300906406257,
  3518. "Controller": {
  3519. "Configuration": {
  3520. "ModelAsset": {
  3521. "assetId": {
  3522. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  3523. "subId": 283109893
  3524. },
  3525. "assetHint": "objects/bunny.azmodel"
  3526. }
  3527. }
  3528. }
  3529. },
  3530. "EditorDisabledCompositionComponent": {
  3531. "$type": "EditorDisabledCompositionComponent",
  3532. "Id": 15710365472298700756
  3533. },
  3534. "EditorEntityIconComponent": {
  3535. "$type": "EditorEntityIconComponent",
  3536. "Id": 6095774710828788532
  3537. },
  3538. "EditorEntitySortComponent": {
  3539. "$type": "EditorEntitySortComponent",
  3540. "Id": 2015374262197931198
  3541. },
  3542. "EditorInspectorComponent": {
  3543. "$type": "EditorInspectorComponent",
  3544. "Id": 16452906587607067704
  3545. },
  3546. "EditorLockComponent": {
  3547. "$type": "EditorLockComponent",
  3548. "Id": 3973035496304432226
  3549. },
  3550. "EditorOnlyEntityComponent": {
  3551. "$type": "EditorOnlyEntityComponent",
  3552. "Id": 17702456914454803225
  3553. },
  3554. "EditorPendingCompositionComponent": {
  3555. "$type": "EditorPendingCompositionComponent",
  3556. "Id": 16545452882425456962
  3557. },
  3558. "EditorVisibilityComponent": {
  3559. "$type": "EditorVisibilityComponent",
  3560. "Id": 18306493370160356478
  3561. },
  3562. "TransformComponent": {
  3563. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3564. "Id": 7156680400794384315,
  3565. "Parent Entity": "Entity_[3931497975738]",
  3566. "Transform Data": {
  3567. "Translate": [
  3568. -24.002769470214844,
  3569. 0.0,
  3570. 0.0
  3571. ]
  3572. }
  3573. }
  3574. }
  3575. },
  3576. "Entity_[991624953700]": {
  3577. "Id": "Entity_[991624953700]",
  3578. "Name": "Entity1",
  3579. "Components": {
  3580. "AZ::Render::EditorMeshComponent": {
  3581. "$type": "AZ::Render::EditorMeshComponent",
  3582. "Id": 14767609300906406257,
  3583. "Controller": {
  3584. "Configuration": {
  3585. "ModelAsset": {
  3586. "assetId": {
  3587. "guid": "{0C6BBB76-4EC2-583A-B8C6-1A4C4FD1FE9D}",
  3588. "subId": 283109893
  3589. },
  3590. "assetHint": "objects/bunny.azmodel"
  3591. }
  3592. }
  3593. }
  3594. },
  3595. "EditorDisabledCompositionComponent": {
  3596. "$type": "EditorDisabledCompositionComponent",
  3597. "Id": 15710365472298700756
  3598. },
  3599. "EditorEntityIconComponent": {
  3600. "$type": "EditorEntityIconComponent",
  3601. "Id": 6095774710828788532
  3602. },
  3603. "EditorEntitySortComponent": {
  3604. "$type": "EditorEntitySortComponent",
  3605. "Id": 2015374262197931198
  3606. },
  3607. "EditorInspectorComponent": {
  3608. "$type": "EditorInspectorComponent",
  3609. "Id": 16452906587607067704
  3610. },
  3611. "EditorLockComponent": {
  3612. "$type": "EditorLockComponent",
  3613. "Id": 3973035496304432226
  3614. },
  3615. "EditorOnlyEntityComponent": {
  3616. "$type": "EditorOnlyEntityComponent",
  3617. "Id": 17702456914454803225
  3618. },
  3619. "EditorPendingCompositionComponent": {
  3620. "$type": "EditorPendingCompositionComponent",
  3621. "Id": 16545452882425456962
  3622. },
  3623. "EditorVisibilityComponent": {
  3624. "$type": "EditorVisibilityComponent",
  3625. "Id": 18306493370160356478
  3626. },
  3627. "TransformComponent": {
  3628. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  3629. "Id": 7156680400794384315,
  3630. "Parent Entity": "Entity_[3931497975738]",
  3631. "Transform Data": {
  3632. "Translate": [
  3633. -17.002769470214844,
  3634. 0.0,
  3635. 0.0
  3636. ]
  3637. }
  3638. }
  3639. }
  3640. }
  3641. }
  3642. }