123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902 |
- {
- "ContainerEntity": {
- "Id": "Entity_[356758116574]",
- "Name": "Level",
- "Components": {
- "Component_[11018767466550552329]": {
- "$type": "EditorVisibilityComponent",
- "Id": 11018767466550552329
- },
- "Component_[11051623022504095148]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11051623022504095148
- },
- "Component_[12471136275375599108]": {
- "$type": "EditorPrefabComponent",
- "Id": 12471136275375599108
- },
- "Component_[12759979290397858955]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 12759979290397858955
- },
- "Component_[12966497369029307320]": {
- "$type": "LocalViewBookmarkComponent",
- "Id": 12966497369029307320,
- "LocalBookmarkFileName": "SampleBase_85988121320.setreg"
- },
- "Component_[13524277649697810352]": {
- "$type": "EditorEntityIconComponent",
- "Id": 13524277649697810352
- },
- "Component_[13533444088377782884]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 13533444088377782884
- },
- "Component_[14619812868403384733]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 14619812868403384733,
- "Parent Entity": ""
- },
- "Component_[17738894840857488786]": {
- "$type": "GenericComponentWrapper",
- "Id": 17738894840857488786,
- "m_template": {
- "$type": "MultiplayerSample::ExampleFilteredEntityComponent"
- }
- },
- "Component_[3902259769182016681]": {
- "$type": "EditorLockComponent",
- "Id": 3902259769182016681
- },
- "Component_[5457951959748258208]": {
- "$type": "EditorInspectorComponent",
- "Id": 5457951959748258208
- },
- "Component_[8247764638131379605]": {
- "$type": "EditorEntitySortComponent",
- "Id": 8247764638131379605,
- "Child Entity Order": [
- "Instance_[2834016307555]/ContainerEntity",
- "Instance_[2915620686179]/ContainerEntity",
- "Instance_[3293577808227]/ContainerEntity",
- "Instance_[785316907363]/ContainerEntity",
- "Entity_[830977005898]",
- "Entity_[611359903594]",
- "Entity_[412839637138]",
- "Entity_[1863191303392]",
- "Entity_[14030996048227]",
- "Entity_[5919988826203]",
- "Entity_[5924283793499]",
- "Entity_[5997298237531]",
- "Entity_[6070312681563]",
- "Entity_[527570584484]",
- "Entity_[58245980399131]",
- "Entity_[37677838535797]"
- ]
- }
- }
- },
- "Entities": {
- "Entity_[115072692692507]": {
- "Id": "Entity_[115072692692507]",
- "Name": "Placard - Non-Networked Static Collider",
- "Components": {
- "Component_[1221971212384525398]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1221971212384525398,
- "Parent Entity": "Entity_[58245980399131]",
- "Transform Data": {
- "Translate": [
- -5.010808944702148,
- 1.7580976486206055,
- -1.8031244277954102
- ],
- "Rotate": [
- 62.453956604003906,
- 47.07986831665039,
- 19.72440528869629
- ]
- }
- },
- "Component_[12521148944687292920]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12521148944687292920
- },
- "Component_[12835321665484227646]": {
- "$type": "EditorLockComponent",
- "Id": 12835321665484227646
- },
- "Component_[13357275932950081715]": {
- "$type": "EditorEntitySortComponent",
- "Id": 13357275932950081715
- },
- "Component_[14633572382975316691]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 14633572382975316691,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
- "subId": 285003870
- },
- "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
- }
- }
- }
- },
- "Component_[15400803850908131451]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15400803850908131451
- },
- "Component_[3637526016639674263]": {
- "$type": "EditorInspectorComponent",
- "Id": 3637526016639674263
- },
- "Component_[411288956840653761]": {
- "$type": "EditorVisibilityComponent",
- "Id": 411288956840653761
- },
- "Component_[7478123538122523484]": {
- "$type": "EditorMaterialComponent",
- "Id": 7478123538122523484,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1803671422
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{7097621F-8E36-5B9A-A0EB-822F8D5F6C87}"
- },
- "assetHint": "materials/demoplacard.azmaterial"
- },
- "PropertyOverrides": {
- "baseColor.textureMap": {
- "$type": "AssetId",
- "Value": {
- "guid": "{EC56C38E-66BD-59E4-8284-35C30520767D}",
- "subId": 1000
- }
- }
- }
- }
- }
- ]
- }
- }
- },
- "Component_[7814534240752180395]": {
- "$type": "EditorEntityIconComponent",
- "Id": 7814534240752180395
- },
- "Component_[8328462562183634271]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 8328462562183634271
- }
- }
- },
- "Entity_[1234584512027]": {
- "Id": "Entity_[1234584512027]",
- "Name": "Placard - Nested Prefab of Network Entities",
- "Components": {
- "Component_[1221971212384525398]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1221971212384525398,
- "Parent Entity": "Entity_[58245980399131]",
- "Transform Data": {
- "Translate": [
- 1.5695266723632813,
- -0.6469998359680176,
- -1.8681058883666992
- ],
- "Rotate": [
- 44.0,
- 0.0,
- 0.0
- ]
- }
- },
- "Component_[12521148944687292920]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12521148944687292920
- },
- "Component_[12835321665484227646]": {
- "$type": "EditorLockComponent",
- "Id": 12835321665484227646
- },
- "Component_[13357275932950081715]": {
- "$type": "EditorEntitySortComponent",
- "Id": 13357275932950081715
- },
- "Component_[14633572382975316691]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 14633572382975316691,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
- "subId": 285003870
- },
- "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
- }
- }
- }
- },
- "Component_[15400803850908131451]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15400803850908131451
- },
- "Component_[3637526016639674263]": {
- "$type": "EditorInspectorComponent",
- "Id": 3637526016639674263
- },
- "Component_[411288956840653761]": {
- "$type": "EditorVisibilityComponent",
- "Id": 411288956840653761
- },
- "Component_[7478123538122523484]": {
- "$type": "EditorMaterialComponent",
- "Id": 7478123538122523484,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1803671422
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{7097621F-8E36-5B9A-A0EB-822F8D5F6C87}"
- },
- "assetHint": "materials/demoplacard.azmaterial"
- },
- "PropertyOverrides": {
- "baseColor.textureMap": {
- "$type": "AssetId",
- "Value": {
- "guid": "{EAD9016E-2AB7-5A00-90DD-B869E08671AD}",
- "subId": 1000
- }
- }
- }
- }
- }
- ]
- }
- }
- },
- "Component_[7814534240752180395]": {
- "$type": "EditorEntityIconComponent",
- "Id": 7814534240752180395
- },
- "Component_[8328462562183634271]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 8328462562183634271
- }
- }
- },
- "Entity_[14030996048227]": {
- "Id": "Entity_[14030996048227]",
- "Name": "StressTestEntity",
- "Components": {
- "Component_[11071255408563586395]": {
- "$type": "EditorEntitySortComponent",
- "Id": 11071255408563586395
- },
- "Component_[13137916724228702403]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 13137916724228702403
- },
- "Component_[13587877359869569916]": {
- "$type": "EditorEntityIconComponent",
- "Id": 13587877359869569916
- },
- "Component_[14015850877258941312]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 14015850877258941312
- },
- "Component_[16224318489599771652]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16224318489599771652
- },
- "Component_[17036114540992779581]": {
- "$type": "EditorLockComponent",
- "Id": 17036114540992779581
- },
- "Component_[17455045336231784718]": {
- "$type": "GenericComponentWrapper",
- "Id": 17455045336231784718,
- "m_template": {
- "$type": "Multiplayer::NetworkTransformComponent"
- }
- },
- "Component_[2460158543297630222]": {
- "$type": "EditorInspectorComponent",
- "Id": 2460158543297630222
- },
- "Component_[4439287455987253256]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 4439287455987253256
- },
- "Component_[509088171691650234]": {
- "$type": "GenericComponentWrapper",
- "Id": 509088171691650234,
- "m_template": {
- "$type": "NetBindComponent"
- }
- },
- "Component_[7256215421682667603]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 7256215421682667603,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 1.0
- ]
- }
- },
- "Component_[7492029015899717881]": {
- "$type": "GenericComponentWrapper",
- "Id": 7492029015899717881,
- "m_template": {
- "$type": "MultiplayerSample::NetworkStressTestComponent",
- "AutoSpawnIntervalMs": 94320322519752,
- "MaxSpawns": 2806761648
- }
- }
- }
- },
- "Entity_[150339125677173]": {
- "Id": "Entity_[150339125677173]",
- "Name": "ParticleFx",
- "Components": {
- "Component_[1081237748441298056]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 1081237748441298056
- },
- "Component_[11216887171796495829]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11216887171796495829
- },
- "Component_[16452504819099518150]": {
- "$type": "EditorEntitySortComponent",
- "Id": 16452504819099518150
- },
- "Component_[17596114369670733307]": {
- "$type": "EditorLockComponent",
- "Id": 17596114369670733307
- },
- "Component_[3710752804473727545]": {
- "$type": "EditorMaterialComponent",
- "Id": 3710752804473727545,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1803671422
- },
- "Value": {
- "PropertyOverrides": {
- "baseColor.color": {
- "$type": "Color",
- "Value": [
- 0.027908751741051674,
- 0.48299381136894226,
- 0.08099488914012909,
- 1.0
- ]
- },
- "general.doubleSided": {
- "$type": "bool",
- "Value": true
- }
- }
- }
- }
- ]
- }
- }
- },
- "Component_[4066033160078355562]": {
- "$type": "EditorInspectorComponent",
- "Id": 4066033160078355562
- },
- "Component_[4536896907644442920]": {
- "$type": "EditorEntityIconComponent",
- "Id": 4536896907644442920
- },
- "Component_[6646359010016832696]": {
- "$type": "EditorVisibilityComponent",
- "Id": 6646359010016832696
- },
- "Component_[8154059186082421813]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8154059186082421813,
- "Parent Entity": "Entity_[37677838535797]"
- },
- "Component_[9186732160580009404]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 9186732160580009404,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
- "subId": 285003870
- },
- "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
- }
- }
- }
- },
- "Component_[939429558173407653]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 939429558173407653
- }
- }
- },
- "Entity_[163168192990325]": {
- "Id": "Entity_[163168192990325]",
- "Name": "Placard - Net-Ball with Non-Net ParticleFx",
- "Components": {
- "Component_[1221971212384525398]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1221971212384525398,
- "Parent Entity": "Entity_[58245980399131]",
- "Transform Data": {
- "Translate": [
- 6.083848476409912,
- 1.3854260444641113,
- -1.9000980854034424
- ],
- "Rotate": [
- 44.0,
- 0.0,
- 0.0
- ]
- }
- },
- "Component_[12521148944687292920]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12521148944687292920
- },
- "Component_[12835321665484227646]": {
- "$type": "EditorLockComponent",
- "Id": 12835321665484227646
- },
- "Component_[13357275932950081715]": {
- "$type": "EditorEntitySortComponent",
- "Id": 13357275932950081715
- },
- "Component_[14633572382975316691]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 14633572382975316691,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
- "subId": 285003870
- },
- "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
- }
- }
- }
- },
- "Component_[15400803850908131451]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15400803850908131451
- },
- "Component_[3637526016639674263]": {
- "$type": "EditorInspectorComponent",
- "Id": 3637526016639674263
- },
- "Component_[411288956840653761]": {
- "$type": "EditorVisibilityComponent",
- "Id": 411288956840653761
- },
- "Component_[7478123538122523484]": {
- "$type": "EditorMaterialComponent",
- "Id": 7478123538122523484,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1803671422
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{7097621F-8E36-5B9A-A0EB-822F8D5F6C87}"
- },
- "assetHint": "materials/demoplacard.azmaterial"
- },
- "PropertyOverrides": {
- "baseColor.textureMap": {
- "$type": "AssetId",
- "Value": {
- "guid": "{1DFA38B9-4725-5CC4-8A44-926064180026}",
- "subId": 1000
- }
- }
- }
- }
- }
- ]
- }
- }
- },
- "Component_[7814534240752180395]": {
- "$type": "EditorEntityIconComponent",
- "Id": 7814534240752180395
- },
- "Component_[8328462562183634271]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 8328462562183634271
- }
- }
- },
- "Entity_[1863191303392]": {
- "Id": "Entity_[1863191303392]",
- "Name": "Spawn On Server",
- "Components": {
- "Component_[11694963092145732257]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 11694963092145732257
- },
- "Component_[12168972718315127051]": {
- "$type": "EditorEntityIconComponent",
- "Id": 12168972718315127051
- },
- "Component_[12802329719955739455]": {
- "$type": "EditorScriptCanvasComponent",
- "Id": 12802329719955739455,
- "configuration": {
- "sourceHandle": {
- "id": "{B605AD71-0689-5650-B3F5-558D471B6351}",
- "path": "scriptcanvas/SpawnIfAuthority.scriptcanvas"
- },
- "sourceName": "SpawnIfAuthority.scriptcanvas",
- "propertyOverrides": {
- "source": {
- "id": "{B605AD71-0689-5650-B3F5-558D471B6351}",
- "path": "scriptcanvas/SpawnIfAuthority.scriptcanvas"
- },
- "variables": [
- {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
- },
- "isNullPointer": false,
- "$type": "AzFramework::Scripts::SpawnableScriptAssetRef"
- },
- "VariableId": {
- "m_id": "{DA8B04C5-A23C-40E0-8577-56A74B6B2086}"
- },
- "VariableName": "Prefab",
- "InitialValueSource": 1
- }
- ],
- "overrides": [
- {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
- },
- "isNullPointer": false,
- "$type": "AzFramework::Scripts::SpawnableScriptAssetRef",
- "value": {
- "asset": {
- "assetId": {
- "guid": "{F6990C4F-540A-56EF-8C07-3ECECB09BBE7}",
- "subId": 2960582392
- },
- "assetHint": "prefabs/filteredgroup.spawnable"
- }
- }
- },
- "InputControlVisibility": {
- "Value": 850104567
- },
- "VariableId": {
- "m_id": "{DA8B04C5-A23C-40E0-8577-56A74B6B2086}"
- },
- "VariableName": "Prefab",
- "InitialValueSource": 1
- }
- ]
- }
- }
- },
- "Component_[15194128185768259769]": {
- "$type": "EditorLockComponent",
- "Id": 15194128185768259769
- },
- "Component_[15807254068344673462]": {
- "$type": "EditorVisibilityComponent",
- "Id": 15807254068344673462
- },
- "Component_[16123618383967744353]": {
- "$type": "EditorEntitySortComponent",
- "Id": 16123618383967744353
- },
- "Component_[17552782890585275482]": {
- "$type": "EditorInspectorComponent",
- "Id": 17552782890585275482
- },
- "Component_[495949337740718080]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 495949337740718080,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 0.0,
- 9.633794784545898
- ]
- }
- },
- "Component_[6471614284017878558]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 6471614284017878558
- },
- "Component_[92855489511868459]": {
- "$type": "GenericComponentWrapper",
- "Id": 92855489511868459,
- "m_template": {
- "$type": "NetBindComponent"
- }
- },
- "Component_[9871950863787101514]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 9871950863787101514
- }
- }
- },
- "Entity_[218912573525109]": {
- "Id": "Entity_[218912573525109]",
- "Name": "ParticleFx",
- "Components": {
- "Component_[1081237748441298056]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 1081237748441298056
- },
- "Component_[11216887171796495829]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 11216887171796495829
- },
- "Component_[16452504819099518150]": {
- "$type": "EditorEntitySortComponent",
- "Id": 16452504819099518150
- },
- "Component_[17596114369670733307]": {
- "$type": "EditorLockComponent",
- "Id": 17596114369670733307
- },
- "Component_[3710752804473727545]": {
- "$type": "EditorMaterialComponent",
- "Id": 3710752804473727545,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1803671422
- },
- "Value": {
- "PropertyOverrides": {
- "baseColor.color": {
- "$type": "Color",
- "Value": [
- 0.027908751741051674,
- 0.48299381136894226,
- 0.08099488914012909,
- 1.0
- ]
- },
- "general.doubleSided": {
- "$type": "bool",
- "Value": true
- }
- }
- }
- }
- ]
- }
- }
- },
- "Component_[4066033160078355562]": {
- "$type": "EditorInspectorComponent",
- "Id": 4066033160078355562
- },
- "Component_[4536896907644442920]": {
- "$type": "EditorEntityIconComponent",
- "Id": 4536896907644442920
- },
- "Component_[6646359010016832696]": {
- "$type": "EditorVisibilityComponent",
- "Id": 6646359010016832696
- },
- "Component_[8154059186082421813]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8154059186082421813,
- "Parent Entity": "Entity_[37677838535797]",
- "Transform Data": {
- "Rotate": [
- 0.0,
- -86.88057708740234,
- 0.0
- ]
- }
- },
- "Component_[9186732160580009404]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 9186732160580009404,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
- "subId": 285003870
- },
- "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
- }
- }
- }
- },
- "Component_[939429558173407653]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 939429558173407653
- }
- }
- },
- "Entity_[32726940402596]": {
- "Id": "Entity_[32726940402596]",
- "Name": "Placard - Player Spawner",
- "Components": {
- "Component_[1221971212384525398]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 1221971212384525398,
- "Parent Entity": "Entity_[58245980399131]",
- "Transform Data": {
- "Translate": [
- 6.656980514526367,
- -2.9074654579162598,
- -1.861106514930725
- ],
- "Rotate": [
- 44.0,
- 0.0,
- 0.0
- ]
- }
- },
- "Component_[12521148944687292920]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 12521148944687292920
- },
- "Component_[12835321665484227646]": {
- "$type": "EditorLockComponent",
- "Id": 12835321665484227646
- },
- "Component_[13357275932950081715]": {
- "$type": "EditorEntitySortComponent",
- "Id": 13357275932950081715
- },
- "Component_[14633572382975316691]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 14633572382975316691,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
- "subId": 285003870
- },
- "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
- }
- }
- }
- },
- "Component_[15400803850908131451]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 15400803850908131451
- },
- "Component_[3637526016639674263]": {
- "$type": "EditorInspectorComponent",
- "Id": 3637526016639674263
- },
- "Component_[411288956840653761]": {
- "$type": "EditorVisibilityComponent",
- "Id": 411288956840653761
- },
- "Component_[7478123538122523484]": {
- "$type": "EditorMaterialComponent",
- "Id": 7478123538122523484,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1803671422
- },
- "Value": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{7097621F-8E36-5B9A-A0EB-822F8D5F6C87}"
- },
- "assetHint": "materials/demoplacard.azmaterial"
- },
- "PropertyOverrides": {
- "baseColor.textureMap": {
- "$type": "AssetId",
- "Value": {
- "guid": "{D71272BE-8D7E-51E7-99DE-81A4473939D4}",
- "subId": 1000
- }
- }
- }
- }
- }
- ]
- }
- }
- },
- "Component_[7814534240752180395]": {
- "$type": "EditorEntityIconComponent",
- "Id": 7814534240752180395
- },
- "Component_[8328462562183634271]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 8328462562183634271
- }
- }
- },
- "Entity_[37677838535797]": {
- "Id": "Entity_[37677838535797]",
- "Name": "Ball Net-Entity with Non-Net Child",
- "Components": {
- "Component_[12367515919186104091]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 12367515919186104091,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{8CC9B575-39D7-5914-AC42-92A77833E63A}",
- "subId": 268692035
- },
- "assetHint": "models/diffuseprobesphere.azmodel"
- }
- }
- }
- },
- "Component_[13027672609292727721]": {
- "$type": "EditorSphereShapeComponent",
- "Id": 13027672609292727721,
- "SphereShape": {
- "Configuration": {
- "Radius": 0.550000011920929
- }
- }
- },
- "Component_[14720166059315733780]": {
- "$type": "EditorRigidBodyComponent",
- "Id": 14720166059315733780,
- "Configuration": {
- "entityId": "",
- "Linear damping": 5.0,
- "Mass": 523.5988159179688,
- "Inertia tensor": [
- 52.35987854003906,
- 0.0,
- 0.0,
- 0.0,
- 52.35987854003906,
- 0.0,
- 0.0,
- 0.0,
- 52.35987854003906
- ]
- }
- },
- "Component_[1480501426020384086]": {
- "$type": "EditorVisibilityComponent",
- "Id": 1480501426020384086
- },
- "Component_[14875568387651782137]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 14875568387651782137
- },
- "Component_[16377420513017824424]": {
- "$type": "EditorEntityIconComponent",
- "Id": 16377420513017824424
- },
- "Component_[1775496397764089233]": {
- "$type": "EditorLockComponent",
- "Id": 1775496397764089233
- },
- "Component_[18210194396034179368]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 18210194396034179368,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- -0.7649859189987183,
- -5.974349498748779,
- 0.439389705657959
- ]
- }
- },
- "Component_[3919011340731659607]": {
- "$type": "GenericComponentWrapper",
- "Id": 3919011340731659607,
- "m_template": {
- "$type": "NetBindComponent"
- }
- },
- "Component_[4912773530096322309]": {
- "$type": "EditorInspectorComponent",
- "Id": 4912773530096322309
- },
- "Component_[5057386170116920896]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5057386170116920896
- },
- "Component_[6029021062967785129]": {
- "$type": "GenericComponentWrapper",
- "Id": 6029021062967785129,
- "m_template": {
- "$type": "Multiplayer::NetworkRigidBodyComponent"
- }
- },
- "Component_[725984638850969331]": {
- "$type": "GenericComponentWrapper",
- "Id": 725984638850969331,
- "m_template": {
- "$type": "Multiplayer::NetworkTransformComponent"
- }
- },
- "Component_[7757820644470971111]": {
- "$type": "EditorColliderComponent",
- "Id": 7757820644470971111,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Entire object"
- }
- ]
- }
- },
- "ShapeConfiguration": {
- "ShapeType": 0
- }
- },
- "Component_[9717622753391867483]": {
- "$type": "EditorEntitySortComponent",
- "Id": 9717622753391867483,
- "Child Entity Order": [
- "Entity_[150339125677173]",
- "Entity_[218912573525109]"
- ]
- },
- "Component_[981514129882235647]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 981514129882235647
- }
- }
- },
- "Entity_[412839637138]": {
- "Id": "Entity_[412839637138]",
- "Name": "Ground",
- "Components": {
- "Component_[14576502551830180300]": {
- "$type": "EditorColliderComponent",
- "Id": 14576502551830180300,
- "ColliderConfiguration": {
- "Position": [
- 0.0,
- 0.0,
- -0.5
- ],
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Entire object"
- }
- ]
- },
- "MaterialSelection": {
- "MaterialIds": [
- {}
- ]
- }
- },
- "ShapeConfiguration": {
- "ShapeType": 1,
- "Box": {
- "Configuration": [
- 512.0,
- 512.0,
- 1.0
- ]
- }
- }
- },
- "Component_[14931881393326243518]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 14931881393326243518
- },
- "Component_[15524201486796047970]": {
- "$type": "EditorEntityIconComponent",
- "Id": 15524201486796047970
- },
- "Component_[15840258338216491819]": {
- "$type": "EditorEntitySortComponent",
- "Id": 15840258338216491819,
- "Child Entity Order": [
- "Entity_[611359903594]"
- ]
- },
- "Component_[16611535888956034510]": {
- "$type": "EditorMaterialComponent",
- "Id": 16611535888956034510,
- "Controller": {
- "Configuration": {
- "materials": {
- "{}": {
- "MaterialAsset": {
- "assetId": {
- "guid": "{39704C53-AC3A-51BE-81EA-23CEA2455340}"
- },
- "assetHint": "materials/defaultpbr.azmaterial"
- }
- }
- }
- }
- }
- },
- "Component_[1703359235958163404]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 1703359235958163404,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
- "subId": 277889906
- },
- "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
- }
- }
- }
- },
- "Component_[17127586586201826931]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 17127586586201826931
- },
- "Component_[17527605270048086659]": {
- "$type": "EditorLockComponent",
- "Id": 17527605270048086659
- },
- "Component_[18071521120297870282]": {
- "$type": "EditorInspectorComponent",
- "Id": 18071521120297870282
- },
- "Component_[3185353748732299189]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 3185353748732299189
- },
- "Component_[3236207122750598279]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 3236207122750598279,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 20.376968383789063,
- 0.0
- ]
- }
- },
- "Component_[3412423409421084023]": {
- "$type": "EditorVisibilityComponent",
- "Id": 3412423409421084023
- }
- }
- },
- "Entity_[527570584484]": {
- "Id": "Entity_[527570584484]",
- "Name": "Non-Networked Collider Cone",
- "Components": {
- "Component_[11365849032811673334]": {
- "$type": "AZ::Render::EditorMeshComponent",
- "Id": 11365849032811673334,
- "Controller": {
- "Configuration": {
- "ModelAsset": {
- "assetId": {
- "guid": "{8E6D29E3-0019-5C5A-9F5D-61656BC02DD7}",
- "subId": 284874770
- },
- "assetHint": "materialeditor/viewportmodels/cone.azmodel"
- }
- }
- }
- },
- "Component_[11893727649211090220]": {
- "$type": "EditorInspectorComponent",
- "Id": 11893727649211090220
- },
- "Component_[12666512609188305871]": {
- "$type": "EditorEntitySortComponent",
- "Id": 12666512609188305871
- },
- "Component_[12759718584319174873]": {
- "$type": "EditorMaterialComponent",
- "Id": 12759718584319174873,
- "Controller": {
- "Configuration": {
- "materials": [
- {
- "Key": {
- "materialSlotStableId": 1803671422
- },
- "Value": {
- "PropertyOverrides": {
- "baseColor.color": {
- "$type": "Color",
- "Value": [
- 1.0,
- 0.07110704481601715,
- 0.07110704481601715,
- 1.0
- ]
- }
- }
- }
- }
- ]
- }
- }
- },
- "Component_[13144559215878829395]": {
- "$type": "EditorCapsuleShapeComponent",
- "Id": 13144559215878829395,
- "CapsuleShape": {
- "Configuration": {
- "Height": 2.0199995040893555,
- "Radius": 0.5099998116493225
- }
- }
- },
- "Component_[13545070526863732984]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 13545070526863732984
- },
- "Component_[2917092960552172245]": {
- "$type": "EditorVisibilityComponent",
- "Id": 2917092960552172245
- },
- "Component_[314388126526494153]": {
- "$type": "EditorLockComponent",
- "Id": 314388126526494153
- },
- "Component_[4556394461817145286]": {
- "$type": "EditorShapeColliderComponent",
- "Id": 4556394461817145286,
- "ColliderConfiguration": {
- "MaterialSlots": {
- "Slots": [
- {
- "Name": "Entire object"
- }
- ]
- }
- },
- "ShapeConfigs": [
- {
- "$type": "CapsuleShapeConfiguration",
- "Scale": [
- 5.0,
- 5.0,
- 5.0
- ],
- "Height": 2.0199995040893555,
- "Radius": 0.5099998116493225
- }
- ]
- },
- "Component_[5659232833946237858]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5659232833946237858
- },
- "Component_[5750980930171977015]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 5750980930171977015
- },
- "Component_[8183427957295968439]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 8183427957295968439,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- -13.409862518310547,
- -4.682985305786133,
- -0.057463884353637695
- ],
- "UniformScale": 5.0
- }
- },
- "Component_[9587580064430300452]": {
- "$type": "EditorEntityIconComponent",
- "Id": 9587580064430300452
- }
- }
- },
- "Entity_[58245980399131]": {
- "Id": "Entity_[58245980399131]",
- "Name": "Placards",
- "Components": {
- "Component_[10845841516258260476]": {
- "$type": "EditorInspectorComponent",
- "Id": 10845841516258260476
- },
- "Component_[1124249492795142133]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 1124249492795142133
- },
- "Component_[13128272933725231188]": {
- "$type": "EditorEntityIconComponent",
- "Id": 13128272933725231188
- },
- "Component_[13859939896291816591]": {
- "$type": "EditorLockComponent",
- "Id": 13859939896291816591
- },
- "Component_[15064289562588327909]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 15064289562588327909
- },
- "Component_[16677726473912230180]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 16677726473912230180,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- -5.770221710205078,
- -7.2389349937438965,
- 2.2522220611572266
- ]
- }
- },
- "Component_[5177580943559829252]": {
- "$type": "EditorVisibilityComponent",
- "Id": 5177580943559829252
- },
- "Component_[5742617148984903511]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 5742617148984903511
- },
- "Component_[7244139806392340775]": {
- "$type": "EditorEntitySortComponent",
- "Id": 7244139806392340775,
- "Child Entity Order": [
- "Entity_[32726940402596]",
- "Entity_[163168192990325]",
- "Entity_[1234584512027]",
- "Entity_[115072692692507]"
- ]
- }
- }
- },
- "Entity_[5919988826203]": {
- "Id": "Entity_[5919988826203]",
- "Name": "Player Spawner 1",
- "Components": {
- "Component_[12821202692257528540]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12821202692257528540
- },
- "Component_[14597378810391071687]": {
- "$type": "EditorLockComponent",
- "Id": 14597378810391071687
- },
- "Component_[16196520229993883676]": {
- "$type": "GenericComponentWrapper",
- "Id": 16196520229993883676,
- "m_template": {
- "$type": "NetworkPlayerSpawnerComponent",
- "SnapToGround": true,
- "SpawnableAsset": {
- "assetId": {
- "guid": "{13BAFCBF-6669-5E4E-B3B0-8610349B2C01}",
- "subId": 738868766
- },
- "assetHint": "prefabs/player.network.spawnable"
- }
- }
- },
- "Component_[16396226858949964701]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16396226858949964701
- },
- "Component_[17457334425592723879]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 17457334425592723879,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- 0.0,
- -10.0,
- 0.0
- ]
- }
- },
- "Component_[18034126654383632242]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 18034126654383632242
- },
- "Component_[2447566750412767001]": {
- "$type": "GenericComponentWrapper",
- "Id": 2447566750412767001,
- "m_template": {
- "$type": "NetBindComponent"
- }
- },
- "Component_[2794843823854361819]": {
- "$type": "EditorEntitySortComponent",
- "Id": 2794843823854361819
- },
- "Component_[6068793232317605117]": {
- "$type": "EditorEntityIconComponent",
- "Id": 6068793232317605117
- },
- "Component_[6441649010823970020]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 6441649010823970020
- },
- "Component_[720388358424552920]": {
- "$type": "EditorInspectorComponent",
- "Id": 720388358424552920
- }
- }
- },
- "Entity_[5924283793499]": {
- "Id": "Entity_[5924283793499]",
- "Name": "Player Spawner 2",
- "Components": {
- "Component_[12821202692257528540]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12821202692257528540
- },
- "Component_[14597378810391071687]": {
- "$type": "EditorLockComponent",
- "Id": 14597378810391071687
- },
- "Component_[16396226858949964701]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16396226858949964701
- },
- "Component_[17457334425592723879]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 17457334425592723879,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- 10.0,
- 0.0,
- 0.0
- ],
- "Rotate": [
- 0.0,
- 0.0,
- 90.0
- ]
- }
- },
- "Component_[18034126654383632242]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 18034126654383632242
- },
- "Component_[2447566750412767001]": {
- "$type": "GenericComponentWrapper",
- "Id": 2447566750412767001,
- "m_template": {
- "$type": "NetBindComponent"
- }
- },
- "Component_[2794843823854361819]": {
- "$type": "EditorEntitySortComponent",
- "Id": 2794843823854361819
- },
- "Component_[6068793232317605117]": {
- "$type": "EditorEntityIconComponent",
- "Id": 6068793232317605117
- },
- "Component_[6416839191484803184]": {
- "$type": "GenericComponentWrapper",
- "Id": 6416839191484803184,
- "m_template": {
- "$type": "NetworkPlayerSpawnerComponent",
- "SnapToGround": true,
- "SpawnableAsset": {
- "assetId": {
- "guid": "{13BAFCBF-6669-5E4E-B3B0-8610349B2C01}",
- "subId": 738868766
- },
- "assetHint": "prefabs/player.network.spawnable"
- }
- }
- },
- "Component_[6441649010823970020]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 6441649010823970020
- },
- "Component_[720388358424552920]": {
- "$type": "EditorInspectorComponent",
- "Id": 720388358424552920
- }
- }
- },
- "Entity_[5997298237531]": {
- "Id": "Entity_[5997298237531]",
- "Name": "Player Spawner 3",
- "Components": {
- "Component_[10353920187632550272]": {
- "$type": "GenericComponentWrapper",
- "Id": 10353920187632550272,
- "m_template": {
- "$type": "NetworkPlayerSpawnerComponent",
- "SnapToGround": true,
- "SpawnableAsset": {
- "assetId": {
- "guid": "{13BAFCBF-6669-5E4E-B3B0-8610349B2C01}",
- "subId": 738868766
- },
- "assetHint": "prefabs/player.network.spawnable"
- }
- }
- },
- "Component_[12821202692257528540]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12821202692257528540
- },
- "Component_[14597378810391071687]": {
- "$type": "EditorLockComponent",
- "Id": 14597378810391071687
- },
- "Component_[16396226858949964701]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16396226858949964701
- },
- "Component_[17457334425592723879]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 17457334425592723879,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- 0.0,
- 10.0,
- 0.0
- ],
- "Rotate": [
- 0.0,
- 0.0,
- 180.0
- ]
- }
- },
- "Component_[18034126654383632242]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 18034126654383632242
- },
- "Component_[2447566750412767001]": {
- "$type": "GenericComponentWrapper",
- "Id": 2447566750412767001,
- "m_template": {
- "$type": "NetBindComponent"
- }
- },
- "Component_[2794843823854361819]": {
- "$type": "EditorEntitySortComponent",
- "Id": 2794843823854361819
- },
- "Component_[6068793232317605117]": {
- "$type": "EditorEntityIconComponent",
- "Id": 6068793232317605117
- },
- "Component_[6441649010823970020]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 6441649010823970020
- },
- "Component_[720388358424552920]": {
- "$type": "EditorInspectorComponent",
- "Id": 720388358424552920
- }
- }
- },
- "Entity_[6070312681563]": {
- "Id": "Entity_[6070312681563]",
- "Name": "Player Spawner 4",
- "Components": {
- "Component_[12821202692257528540]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12821202692257528540
- },
- "Component_[14597378810391071687]": {
- "$type": "EditorLockComponent",
- "Id": 14597378810391071687
- },
- "Component_[16310256925382960666]": {
- "$type": "GenericComponentWrapper",
- "Id": 16310256925382960666,
- "m_template": {
- "$type": "NetworkPlayerSpawnerComponent",
- "SnapToGround": true,
- "SpawnableAsset": {
- "assetId": {
- "guid": "{13BAFCBF-6669-5E4E-B3B0-8610349B2C01}",
- "subId": 738868766
- },
- "assetHint": "prefabs/player.network.spawnable"
- }
- }
- },
- "Component_[16396226858949964701]": {
- "$type": "EditorVisibilityComponent",
- "Id": 16396226858949964701
- },
- "Component_[17457334425592723879]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 17457334425592723879,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- -10.0,
- 0.0,
- 0.0
- ],
- "Rotate": [
- 0.0,
- 0.0,
- 270.0
- ]
- }
- },
- "Component_[18034126654383632242]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 18034126654383632242
- },
- "Component_[2447566750412767001]": {
- "$type": "GenericComponentWrapper",
- "Id": 2447566750412767001,
- "m_template": {
- "$type": "NetBindComponent"
- }
- },
- "Component_[2794843823854361819]": {
- "$type": "EditorEntitySortComponent",
- "Id": 2794843823854361819
- },
- "Component_[6068793232317605117]": {
- "$type": "EditorEntityIconComponent",
- "Id": 6068793232317605117
- },
- "Component_[6441649010823970020]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 6441649010823970020
- },
- "Component_[720388358424552920]": {
- "$type": "EditorInspectorComponent",
- "Id": 720388358424552920
- }
- }
- },
- "Entity_[611359903594]": {
- "Id": "Entity_[611359903594]",
- "Name": "Sky",
- "Components": {
- "Component_[12020387915929175314]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 12020387915929175314
- },
- "Component_[12113168580323165094]": {
- "$type": "EditorEntitySortComponent",
- "Id": 12113168580323165094
- },
- "Component_[15868007870507055798]": {
- "$type": "AZ::Render::EditorPhysicalSkyComponent",
- "Id": 15868007870507055798,
- "Controller": {
- "Configuration": {
- "FogSettings": {
- "Enable": true
- }
- }
- }
- },
- "Component_[16939772704288602141]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 16939772704288602141,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- -4.764087677001953,
- 12.970443725585938,
- 19.850555419921875
- ],
- "Rotate": [
- -69.53874206542969,
- -4.26886799687054e-7,
- -12.672529220581055
- ]
- }
- },
- "Component_[181484920425426795]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 181484920425426795
- },
- "Component_[1924698028746237056]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 1924698028746237056
- },
- "Component_[3097249092599449156]": {
- "$type": "AZ::Render::EditorDirectionalLightComponent",
- "Id": 3097249092599449156,
- "Controller": {
- "Configuration": {
- "Color": [
- 0.26219576597213745,
- 0.4600900411605835,
- 0.5198748707771301
- ],
- "Intensity": 0.0,
- "CameraEntityId": ""
- }
- }
- },
- "Component_[3991835182627485406]": {
- "$type": "EditorLockComponent",
- "Id": 3991835182627485406
- },
- "Component_[5074029630700212404]": {
- "$type": "AZ::Render::EditorImageBasedLightComponent",
- "Id": 5074029630700212404,
- "Controller": {
- "Configuration": {
- "diffuseImageAsset": {
- "assetId": {
- "guid": "{A5767C6B-5DB4-5999-A717-4587BEDF5CDE}",
- "subId": 3000
- },
- "assetHint": "lightingpresets/default_iblskyboxcm_ibldiffuse.exr.streamingimage"
- },
- "specularImageAsset": {
- "assetId": {
- "guid": "{FF892EA4-60B2-5E14-8610-CA2A793C86A7}",
- "subId": 2000
- },
- "assetHint": "engineassets/textures/cubemap/default_level_cubemap_iblspecular.tif.streamingimage"
- }
- }
- }
- },
- "Component_[8034472642282561588]": {
- "$type": "EditorInspectorComponent",
- "Id": 8034472642282561588
- },
- "Component_[8915786006739025830]": {
- "$type": "EditorVisibilityComponent",
- "Id": 8915786006739025830
- },
- "Component_[9242372134971919133]": {
- "$type": "EditorEntityIconComponent",
- "Id": 9242372134971919133
- }
- }
- },
- "Entity_[830977005898]": {
- "Id": "Entity_[830977005898]",
- "Name": "Camera",
- "Components": {
- "Component_[13707688659030262739]": {
- "$type": "EditorEntityIconComponent",
- "Id": 13707688659030262739
- },
- "Component_[15209981873132626600]": {
- "$type": "EditorVisibilityComponent",
- "Id": 15209981873132626600
- },
- "Component_[154105298091518109]": {
- "$type": "EditorInspectorComponent",
- "Id": 154105298091518109
- },
- "Component_[17443734220531699641]": {
- "$type": "EditorOnlyEntityComponent",
- "Id": 17443734220531699641
- },
- "Component_[2046025781821881524]": {
- "$type": "EditorPendingCompositionComponent",
- "Id": 2046025781821881524
- },
- "Component_[2763779754963209072]": {
- "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
- "Id": 2763779754963209072,
- "Parent Entity": "Entity_[356758116574]",
- "Transform Data": {
- "Translate": [
- -4.670708179473877,
- -12.568869590759277,
- 2.5842885971069336
- ],
- "Rotate": [
- -15.064143180847168,
- -1.8968206644058228,
- 7.010972023010254
- ]
- }
- },
- "Component_[3970187958414398085]": {
- "$type": "EditorLockComponent",
- "Id": 3970187958414398085
- },
- "Component_[6170729524149437702]": {
- "$type": "EditorDisabledCompositionComponent",
- "Id": 6170729524149437702
- },
- "Component_[7092071161962745685]": {
- "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
- "Id": 7092071161962745685,
- "Controller": {
- "Configuration": {
- "EditorEntityId": 6083481197924942768
- }
- }
- },
- "Component_[9321193093942328270]": {
- "$type": "EditorEntitySortComponent",
- "Id": 9321193093942328270
- }
- }
- }
- },
- "Instances": {
- "Instance_[2834016307555]": {
- "Source": "Prefabs/4x4x4BoxGrid.prefab",
- "Patches": [
- {
- "op": "replace",
- "path": "/ContainerEntity/Name",
- "value": "4x4x4BoxGrid_1"
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Parent Entity",
- "value": "../Entity_[356758116574]"
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/0",
- "value": 4.981606483459473
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/1",
- "value": -5.013465881347656
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/2",
- "value": 0.5
- }
- ]
- },
- "Instance_[2915620686179]": {
- "Source": "Prefabs/4x4x4BoxGrid.prefab",
- "Patches": [
- {
- "op": "replace",
- "path": "/ContainerEntity/Name",
- "value": "4x4x4BoxGrid_2"
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Parent Entity",
- "value": "../Entity_[356758116574]"
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/0",
- "value": 4.981606483459473
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/1",
- "value": 4.986534118652344
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/2",
- "value": 0.5
- }
- ]
- },
- "Instance_[3293577808227]": {
- "Source": "Prefabs/4x4x4BoxGrid.prefab",
- "Patches": [
- {
- "op": "replace",
- "path": "/ContainerEntity/Name",
- "value": "4x4x4BoxGrid_3"
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Parent Entity",
- "value": "../Entity_[356758116574]"
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/0",
- "value": -5.018393516540527
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/1",
- "value": -5.013465881347656
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/2",
- "value": 0.5
- }
- ]
- },
- "Instance_[785316907363]": {
- "Source": "Prefabs/4x4x4BoxGrid.prefab",
- "Patches": [
- {
- "op": "replace",
- "path": "/ContainerEntity/Name",
- "value": "4x4x4BoxGrid_4"
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Parent Entity",
- "value": "../Entity_[356758116574]"
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/0",
- "value": -5.018393516540527
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/1",
- "value": 4.986534118652344
- },
- {
- "op": "replace",
- "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/2",
- "value": 0.5
- }
- ]
- }
- }
- }
|