SampleBase.prefab 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902
  1. {
  2. "ContainerEntity": {
  3. "Id": "Entity_[356758116574]",
  4. "Name": "Level",
  5. "Components": {
  6. "Component_[11018767466550552329]": {
  7. "$type": "EditorVisibilityComponent",
  8. "Id": 11018767466550552329
  9. },
  10. "Component_[11051623022504095148]": {
  11. "$type": "EditorOnlyEntityComponent",
  12. "Id": 11051623022504095148
  13. },
  14. "Component_[12471136275375599108]": {
  15. "$type": "EditorPrefabComponent",
  16. "Id": 12471136275375599108
  17. },
  18. "Component_[12759979290397858955]": {
  19. "$type": "EditorDisabledCompositionComponent",
  20. "Id": 12759979290397858955
  21. },
  22. "Component_[12966497369029307320]": {
  23. "$type": "LocalViewBookmarkComponent",
  24. "Id": 12966497369029307320,
  25. "LocalBookmarkFileName": "SampleBase_85988121320.setreg"
  26. },
  27. "Component_[13524277649697810352]": {
  28. "$type": "EditorEntityIconComponent",
  29. "Id": 13524277649697810352
  30. },
  31. "Component_[13533444088377782884]": {
  32. "$type": "EditorPendingCompositionComponent",
  33. "Id": 13533444088377782884
  34. },
  35. "Component_[14619812868403384733]": {
  36. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  37. "Id": 14619812868403384733,
  38. "Parent Entity": ""
  39. },
  40. "Component_[17738894840857488786]": {
  41. "$type": "GenericComponentWrapper",
  42. "Id": 17738894840857488786,
  43. "m_template": {
  44. "$type": "MultiplayerSample::ExampleFilteredEntityComponent"
  45. }
  46. },
  47. "Component_[3902259769182016681]": {
  48. "$type": "EditorLockComponent",
  49. "Id": 3902259769182016681
  50. },
  51. "Component_[5457951959748258208]": {
  52. "$type": "EditorInspectorComponent",
  53. "Id": 5457951959748258208
  54. },
  55. "Component_[8247764638131379605]": {
  56. "$type": "EditorEntitySortComponent",
  57. "Id": 8247764638131379605,
  58. "Child Entity Order": [
  59. "Instance_[2834016307555]/ContainerEntity",
  60. "Instance_[2915620686179]/ContainerEntity",
  61. "Instance_[3293577808227]/ContainerEntity",
  62. "Instance_[785316907363]/ContainerEntity",
  63. "Entity_[830977005898]",
  64. "Entity_[611359903594]",
  65. "Entity_[412839637138]",
  66. "Entity_[1863191303392]",
  67. "Entity_[14030996048227]",
  68. "Entity_[5919988826203]",
  69. "Entity_[5924283793499]",
  70. "Entity_[5997298237531]",
  71. "Entity_[6070312681563]",
  72. "Entity_[527570584484]",
  73. "Entity_[58245980399131]",
  74. "Entity_[37677838535797]"
  75. ]
  76. }
  77. }
  78. },
  79. "Entities": {
  80. "Entity_[115072692692507]": {
  81. "Id": "Entity_[115072692692507]",
  82. "Name": "Placard - Non-Networked Static Collider",
  83. "Components": {
  84. "Component_[1221971212384525398]": {
  85. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  86. "Id": 1221971212384525398,
  87. "Parent Entity": "Entity_[58245980399131]",
  88. "Transform Data": {
  89. "Translate": [
  90. -5.010808944702148,
  91. 1.7580976486206055,
  92. -1.8031244277954102
  93. ],
  94. "Rotate": [
  95. 62.453956604003906,
  96. 47.07986831665039,
  97. 19.72440528869629
  98. ]
  99. }
  100. },
  101. "Component_[12521148944687292920]": {
  102. "$type": "EditorOnlyEntityComponent",
  103. "Id": 12521148944687292920
  104. },
  105. "Component_[12835321665484227646]": {
  106. "$type": "EditorLockComponent",
  107. "Id": 12835321665484227646
  108. },
  109. "Component_[13357275932950081715]": {
  110. "$type": "EditorEntitySortComponent",
  111. "Id": 13357275932950081715
  112. },
  113. "Component_[14633572382975316691]": {
  114. "$type": "AZ::Render::EditorMeshComponent",
  115. "Id": 14633572382975316691,
  116. "Controller": {
  117. "Configuration": {
  118. "ModelAsset": {
  119. "assetId": {
  120. "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
  121. "subId": 285003870
  122. },
  123. "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
  124. }
  125. }
  126. }
  127. },
  128. "Component_[15400803850908131451]": {
  129. "$type": "EditorDisabledCompositionComponent",
  130. "Id": 15400803850908131451
  131. },
  132. "Component_[3637526016639674263]": {
  133. "$type": "EditorInspectorComponent",
  134. "Id": 3637526016639674263
  135. },
  136. "Component_[411288956840653761]": {
  137. "$type": "EditorVisibilityComponent",
  138. "Id": 411288956840653761
  139. },
  140. "Component_[7478123538122523484]": {
  141. "$type": "EditorMaterialComponent",
  142. "Id": 7478123538122523484,
  143. "Controller": {
  144. "Configuration": {
  145. "materials": [
  146. {
  147. "Key": {
  148. "materialSlotStableId": 1803671422
  149. },
  150. "Value": {
  151. "MaterialAsset": {
  152. "assetId": {
  153. "guid": "{7097621F-8E36-5B9A-A0EB-822F8D5F6C87}"
  154. },
  155. "assetHint": "materials/demoplacard.azmaterial"
  156. },
  157. "PropertyOverrides": {
  158. "baseColor.textureMap": {
  159. "$type": "AssetId",
  160. "Value": {
  161. "guid": "{EC56C38E-66BD-59E4-8284-35C30520767D}",
  162. "subId": 1000
  163. }
  164. }
  165. }
  166. }
  167. }
  168. ]
  169. }
  170. }
  171. },
  172. "Component_[7814534240752180395]": {
  173. "$type": "EditorEntityIconComponent",
  174. "Id": 7814534240752180395
  175. },
  176. "Component_[8328462562183634271]": {
  177. "$type": "EditorPendingCompositionComponent",
  178. "Id": 8328462562183634271
  179. }
  180. }
  181. },
  182. "Entity_[1234584512027]": {
  183. "Id": "Entity_[1234584512027]",
  184. "Name": "Placard - Nested Prefab of Network Entities",
  185. "Components": {
  186. "Component_[1221971212384525398]": {
  187. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  188. "Id": 1221971212384525398,
  189. "Parent Entity": "Entity_[58245980399131]",
  190. "Transform Data": {
  191. "Translate": [
  192. 1.5695266723632813,
  193. -0.6469998359680176,
  194. -1.8681058883666992
  195. ],
  196. "Rotate": [
  197. 44.0,
  198. 0.0,
  199. 0.0
  200. ]
  201. }
  202. },
  203. "Component_[12521148944687292920]": {
  204. "$type": "EditorOnlyEntityComponent",
  205. "Id": 12521148944687292920
  206. },
  207. "Component_[12835321665484227646]": {
  208. "$type": "EditorLockComponent",
  209. "Id": 12835321665484227646
  210. },
  211. "Component_[13357275932950081715]": {
  212. "$type": "EditorEntitySortComponent",
  213. "Id": 13357275932950081715
  214. },
  215. "Component_[14633572382975316691]": {
  216. "$type": "AZ::Render::EditorMeshComponent",
  217. "Id": 14633572382975316691,
  218. "Controller": {
  219. "Configuration": {
  220. "ModelAsset": {
  221. "assetId": {
  222. "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
  223. "subId": 285003870
  224. },
  225. "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
  226. }
  227. }
  228. }
  229. },
  230. "Component_[15400803850908131451]": {
  231. "$type": "EditorDisabledCompositionComponent",
  232. "Id": 15400803850908131451
  233. },
  234. "Component_[3637526016639674263]": {
  235. "$type": "EditorInspectorComponent",
  236. "Id": 3637526016639674263
  237. },
  238. "Component_[411288956840653761]": {
  239. "$type": "EditorVisibilityComponent",
  240. "Id": 411288956840653761
  241. },
  242. "Component_[7478123538122523484]": {
  243. "$type": "EditorMaterialComponent",
  244. "Id": 7478123538122523484,
  245. "Controller": {
  246. "Configuration": {
  247. "materials": [
  248. {
  249. "Key": {
  250. "materialSlotStableId": 1803671422
  251. },
  252. "Value": {
  253. "MaterialAsset": {
  254. "assetId": {
  255. "guid": "{7097621F-8E36-5B9A-A0EB-822F8D5F6C87}"
  256. },
  257. "assetHint": "materials/demoplacard.azmaterial"
  258. },
  259. "PropertyOverrides": {
  260. "baseColor.textureMap": {
  261. "$type": "AssetId",
  262. "Value": {
  263. "guid": "{EAD9016E-2AB7-5A00-90DD-B869E08671AD}",
  264. "subId": 1000
  265. }
  266. }
  267. }
  268. }
  269. }
  270. ]
  271. }
  272. }
  273. },
  274. "Component_[7814534240752180395]": {
  275. "$type": "EditorEntityIconComponent",
  276. "Id": 7814534240752180395
  277. },
  278. "Component_[8328462562183634271]": {
  279. "$type": "EditorPendingCompositionComponent",
  280. "Id": 8328462562183634271
  281. }
  282. }
  283. },
  284. "Entity_[14030996048227]": {
  285. "Id": "Entity_[14030996048227]",
  286. "Name": "StressTestEntity",
  287. "Components": {
  288. "Component_[11071255408563586395]": {
  289. "$type": "EditorEntitySortComponent",
  290. "Id": 11071255408563586395
  291. },
  292. "Component_[13137916724228702403]": {
  293. "$type": "EditorPendingCompositionComponent",
  294. "Id": 13137916724228702403
  295. },
  296. "Component_[13587877359869569916]": {
  297. "$type": "EditorEntityIconComponent",
  298. "Id": 13587877359869569916
  299. },
  300. "Component_[14015850877258941312]": {
  301. "$type": "EditorDisabledCompositionComponent",
  302. "Id": 14015850877258941312
  303. },
  304. "Component_[16224318489599771652]": {
  305. "$type": "EditorVisibilityComponent",
  306. "Id": 16224318489599771652
  307. },
  308. "Component_[17036114540992779581]": {
  309. "$type": "EditorLockComponent",
  310. "Id": 17036114540992779581
  311. },
  312. "Component_[17455045336231784718]": {
  313. "$type": "GenericComponentWrapper",
  314. "Id": 17455045336231784718,
  315. "m_template": {
  316. "$type": "Multiplayer::NetworkTransformComponent"
  317. }
  318. },
  319. "Component_[2460158543297630222]": {
  320. "$type": "EditorInspectorComponent",
  321. "Id": 2460158543297630222
  322. },
  323. "Component_[4439287455987253256]": {
  324. "$type": "EditorOnlyEntityComponent",
  325. "Id": 4439287455987253256
  326. },
  327. "Component_[509088171691650234]": {
  328. "$type": "GenericComponentWrapper",
  329. "Id": 509088171691650234,
  330. "m_template": {
  331. "$type": "NetBindComponent"
  332. }
  333. },
  334. "Component_[7256215421682667603]": {
  335. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  336. "Id": 7256215421682667603,
  337. "Parent Entity": "Entity_[356758116574]",
  338. "Transform Data": {
  339. "Translate": [
  340. 0.0,
  341. 0.0,
  342. 1.0
  343. ]
  344. }
  345. },
  346. "Component_[7492029015899717881]": {
  347. "$type": "GenericComponentWrapper",
  348. "Id": 7492029015899717881,
  349. "m_template": {
  350. "$type": "MultiplayerSample::NetworkStressTestComponent",
  351. "AutoSpawnIntervalMs": 94320322519752,
  352. "MaxSpawns": 2806761648
  353. }
  354. }
  355. }
  356. },
  357. "Entity_[150339125677173]": {
  358. "Id": "Entity_[150339125677173]",
  359. "Name": "ParticleFx",
  360. "Components": {
  361. "Component_[1081237748441298056]": {
  362. "$type": "EditorPendingCompositionComponent",
  363. "Id": 1081237748441298056
  364. },
  365. "Component_[11216887171796495829]": {
  366. "$type": "EditorOnlyEntityComponent",
  367. "Id": 11216887171796495829
  368. },
  369. "Component_[16452504819099518150]": {
  370. "$type": "EditorEntitySortComponent",
  371. "Id": 16452504819099518150
  372. },
  373. "Component_[17596114369670733307]": {
  374. "$type": "EditorLockComponent",
  375. "Id": 17596114369670733307
  376. },
  377. "Component_[3710752804473727545]": {
  378. "$type": "EditorMaterialComponent",
  379. "Id": 3710752804473727545,
  380. "Controller": {
  381. "Configuration": {
  382. "materials": [
  383. {
  384. "Key": {
  385. "materialSlotStableId": 1803671422
  386. },
  387. "Value": {
  388. "PropertyOverrides": {
  389. "baseColor.color": {
  390. "$type": "Color",
  391. "Value": [
  392. 0.027908751741051674,
  393. 0.48299381136894226,
  394. 0.08099488914012909,
  395. 1.0
  396. ]
  397. },
  398. "general.doubleSided": {
  399. "$type": "bool",
  400. "Value": true
  401. }
  402. }
  403. }
  404. }
  405. ]
  406. }
  407. }
  408. },
  409. "Component_[4066033160078355562]": {
  410. "$type": "EditorInspectorComponent",
  411. "Id": 4066033160078355562
  412. },
  413. "Component_[4536896907644442920]": {
  414. "$type": "EditorEntityIconComponent",
  415. "Id": 4536896907644442920
  416. },
  417. "Component_[6646359010016832696]": {
  418. "$type": "EditorVisibilityComponent",
  419. "Id": 6646359010016832696
  420. },
  421. "Component_[8154059186082421813]": {
  422. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  423. "Id": 8154059186082421813,
  424. "Parent Entity": "Entity_[37677838535797]"
  425. },
  426. "Component_[9186732160580009404]": {
  427. "$type": "AZ::Render::EditorMeshComponent",
  428. "Id": 9186732160580009404,
  429. "Controller": {
  430. "Configuration": {
  431. "ModelAsset": {
  432. "assetId": {
  433. "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
  434. "subId": 285003870
  435. },
  436. "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
  437. }
  438. }
  439. }
  440. },
  441. "Component_[939429558173407653]": {
  442. "$type": "EditorDisabledCompositionComponent",
  443. "Id": 939429558173407653
  444. }
  445. }
  446. },
  447. "Entity_[163168192990325]": {
  448. "Id": "Entity_[163168192990325]",
  449. "Name": "Placard - Net-Ball with Non-Net ParticleFx",
  450. "Components": {
  451. "Component_[1221971212384525398]": {
  452. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  453. "Id": 1221971212384525398,
  454. "Parent Entity": "Entity_[58245980399131]",
  455. "Transform Data": {
  456. "Translate": [
  457. 6.083848476409912,
  458. 1.3854260444641113,
  459. -1.9000980854034424
  460. ],
  461. "Rotate": [
  462. 44.0,
  463. 0.0,
  464. 0.0
  465. ]
  466. }
  467. },
  468. "Component_[12521148944687292920]": {
  469. "$type": "EditorOnlyEntityComponent",
  470. "Id": 12521148944687292920
  471. },
  472. "Component_[12835321665484227646]": {
  473. "$type": "EditorLockComponent",
  474. "Id": 12835321665484227646
  475. },
  476. "Component_[13357275932950081715]": {
  477. "$type": "EditorEntitySortComponent",
  478. "Id": 13357275932950081715
  479. },
  480. "Component_[14633572382975316691]": {
  481. "$type": "AZ::Render::EditorMeshComponent",
  482. "Id": 14633572382975316691,
  483. "Controller": {
  484. "Configuration": {
  485. "ModelAsset": {
  486. "assetId": {
  487. "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
  488. "subId": 285003870
  489. },
  490. "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
  491. }
  492. }
  493. }
  494. },
  495. "Component_[15400803850908131451]": {
  496. "$type": "EditorDisabledCompositionComponent",
  497. "Id": 15400803850908131451
  498. },
  499. "Component_[3637526016639674263]": {
  500. "$type": "EditorInspectorComponent",
  501. "Id": 3637526016639674263
  502. },
  503. "Component_[411288956840653761]": {
  504. "$type": "EditorVisibilityComponent",
  505. "Id": 411288956840653761
  506. },
  507. "Component_[7478123538122523484]": {
  508. "$type": "EditorMaterialComponent",
  509. "Id": 7478123538122523484,
  510. "Controller": {
  511. "Configuration": {
  512. "materials": [
  513. {
  514. "Key": {
  515. "materialSlotStableId": 1803671422
  516. },
  517. "Value": {
  518. "MaterialAsset": {
  519. "assetId": {
  520. "guid": "{7097621F-8E36-5B9A-A0EB-822F8D5F6C87}"
  521. },
  522. "assetHint": "materials/demoplacard.azmaterial"
  523. },
  524. "PropertyOverrides": {
  525. "baseColor.textureMap": {
  526. "$type": "AssetId",
  527. "Value": {
  528. "guid": "{1DFA38B9-4725-5CC4-8A44-926064180026}",
  529. "subId": 1000
  530. }
  531. }
  532. }
  533. }
  534. }
  535. ]
  536. }
  537. }
  538. },
  539. "Component_[7814534240752180395]": {
  540. "$type": "EditorEntityIconComponent",
  541. "Id": 7814534240752180395
  542. },
  543. "Component_[8328462562183634271]": {
  544. "$type": "EditorPendingCompositionComponent",
  545. "Id": 8328462562183634271
  546. }
  547. }
  548. },
  549. "Entity_[1863191303392]": {
  550. "Id": "Entity_[1863191303392]",
  551. "Name": "Spawn On Server",
  552. "Components": {
  553. "Component_[11694963092145732257]": {
  554. "$type": "EditorPendingCompositionComponent",
  555. "Id": 11694963092145732257
  556. },
  557. "Component_[12168972718315127051]": {
  558. "$type": "EditorEntityIconComponent",
  559. "Id": 12168972718315127051
  560. },
  561. "Component_[12802329719955739455]": {
  562. "$type": "EditorScriptCanvasComponent",
  563. "Id": 12802329719955739455,
  564. "configuration": {
  565. "sourceHandle": {
  566. "id": "{B605AD71-0689-5650-B3F5-558D471B6351}",
  567. "path": "scriptcanvas/SpawnIfAuthority.scriptcanvas"
  568. },
  569. "sourceName": "SpawnIfAuthority.scriptcanvas",
  570. "propertyOverrides": {
  571. "source": {
  572. "id": "{B605AD71-0689-5650-B3F5-558D471B6351}",
  573. "path": "scriptcanvas/SpawnIfAuthority.scriptcanvas"
  574. },
  575. "variables": [
  576. {
  577. "Datum": {
  578. "isOverloadedStorage": false,
  579. "scriptCanvasType": {
  580. "m_type": 4,
  581. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  582. },
  583. "isNullPointer": false,
  584. "$type": "AzFramework::Scripts::SpawnableScriptAssetRef"
  585. },
  586. "VariableId": {
  587. "m_id": "{DA8B04C5-A23C-40E0-8577-56A74B6B2086}"
  588. },
  589. "VariableName": "Prefab",
  590. "InitialValueSource": 1
  591. }
  592. ],
  593. "overrides": [
  594. {
  595. "Datum": {
  596. "isOverloadedStorage": false,
  597. "scriptCanvasType": {
  598. "m_type": 4,
  599. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  600. },
  601. "isNullPointer": false,
  602. "$type": "AzFramework::Scripts::SpawnableScriptAssetRef",
  603. "value": {
  604. "asset": {
  605. "assetId": {
  606. "guid": "{F6990C4F-540A-56EF-8C07-3ECECB09BBE7}",
  607. "subId": 2960582392
  608. },
  609. "assetHint": "prefabs/filteredgroup.spawnable"
  610. }
  611. }
  612. },
  613. "InputControlVisibility": {
  614. "Value": 850104567
  615. },
  616. "VariableId": {
  617. "m_id": "{DA8B04C5-A23C-40E0-8577-56A74B6B2086}"
  618. },
  619. "VariableName": "Prefab",
  620. "InitialValueSource": 1
  621. }
  622. ]
  623. }
  624. }
  625. },
  626. "Component_[15194128185768259769]": {
  627. "$type": "EditorLockComponent",
  628. "Id": 15194128185768259769
  629. },
  630. "Component_[15807254068344673462]": {
  631. "$type": "EditorVisibilityComponent",
  632. "Id": 15807254068344673462
  633. },
  634. "Component_[16123618383967744353]": {
  635. "$type": "EditorEntitySortComponent",
  636. "Id": 16123618383967744353
  637. },
  638. "Component_[17552782890585275482]": {
  639. "$type": "EditorInspectorComponent",
  640. "Id": 17552782890585275482
  641. },
  642. "Component_[495949337740718080]": {
  643. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  644. "Id": 495949337740718080,
  645. "Parent Entity": "Entity_[356758116574]",
  646. "Transform Data": {
  647. "Translate": [
  648. 0.0,
  649. 0.0,
  650. 9.633794784545898
  651. ]
  652. }
  653. },
  654. "Component_[6471614284017878558]": {
  655. "$type": "EditorOnlyEntityComponent",
  656. "Id": 6471614284017878558
  657. },
  658. "Component_[92855489511868459]": {
  659. "$type": "GenericComponentWrapper",
  660. "Id": 92855489511868459,
  661. "m_template": {
  662. "$type": "NetBindComponent"
  663. }
  664. },
  665. "Component_[9871950863787101514]": {
  666. "$type": "EditorDisabledCompositionComponent",
  667. "Id": 9871950863787101514
  668. }
  669. }
  670. },
  671. "Entity_[218912573525109]": {
  672. "Id": "Entity_[218912573525109]",
  673. "Name": "ParticleFx",
  674. "Components": {
  675. "Component_[1081237748441298056]": {
  676. "$type": "EditorPendingCompositionComponent",
  677. "Id": 1081237748441298056
  678. },
  679. "Component_[11216887171796495829]": {
  680. "$type": "EditorOnlyEntityComponent",
  681. "Id": 11216887171796495829
  682. },
  683. "Component_[16452504819099518150]": {
  684. "$type": "EditorEntitySortComponent",
  685. "Id": 16452504819099518150
  686. },
  687. "Component_[17596114369670733307]": {
  688. "$type": "EditorLockComponent",
  689. "Id": 17596114369670733307
  690. },
  691. "Component_[3710752804473727545]": {
  692. "$type": "EditorMaterialComponent",
  693. "Id": 3710752804473727545,
  694. "Controller": {
  695. "Configuration": {
  696. "materials": [
  697. {
  698. "Key": {
  699. "materialSlotStableId": 1803671422
  700. },
  701. "Value": {
  702. "PropertyOverrides": {
  703. "baseColor.color": {
  704. "$type": "Color",
  705. "Value": [
  706. 0.027908751741051674,
  707. 0.48299381136894226,
  708. 0.08099488914012909,
  709. 1.0
  710. ]
  711. },
  712. "general.doubleSided": {
  713. "$type": "bool",
  714. "Value": true
  715. }
  716. }
  717. }
  718. }
  719. ]
  720. }
  721. }
  722. },
  723. "Component_[4066033160078355562]": {
  724. "$type": "EditorInspectorComponent",
  725. "Id": 4066033160078355562
  726. },
  727. "Component_[4536896907644442920]": {
  728. "$type": "EditorEntityIconComponent",
  729. "Id": 4536896907644442920
  730. },
  731. "Component_[6646359010016832696]": {
  732. "$type": "EditorVisibilityComponent",
  733. "Id": 6646359010016832696
  734. },
  735. "Component_[8154059186082421813]": {
  736. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  737. "Id": 8154059186082421813,
  738. "Parent Entity": "Entity_[37677838535797]",
  739. "Transform Data": {
  740. "Rotate": [
  741. 0.0,
  742. -86.88057708740234,
  743. 0.0
  744. ]
  745. }
  746. },
  747. "Component_[9186732160580009404]": {
  748. "$type": "AZ::Render::EditorMeshComponent",
  749. "Id": 9186732160580009404,
  750. "Controller": {
  751. "Configuration": {
  752. "ModelAsset": {
  753. "assetId": {
  754. "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
  755. "subId": 285003870
  756. },
  757. "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
  758. }
  759. }
  760. }
  761. },
  762. "Component_[939429558173407653]": {
  763. "$type": "EditorDisabledCompositionComponent",
  764. "Id": 939429558173407653
  765. }
  766. }
  767. },
  768. "Entity_[32726940402596]": {
  769. "Id": "Entity_[32726940402596]",
  770. "Name": "Placard - Player Spawner",
  771. "Components": {
  772. "Component_[1221971212384525398]": {
  773. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  774. "Id": 1221971212384525398,
  775. "Parent Entity": "Entity_[58245980399131]",
  776. "Transform Data": {
  777. "Translate": [
  778. 6.656980514526367,
  779. -2.9074654579162598,
  780. -1.861106514930725
  781. ],
  782. "Rotate": [
  783. 44.0,
  784. 0.0,
  785. 0.0
  786. ]
  787. }
  788. },
  789. "Component_[12521148944687292920]": {
  790. "$type": "EditorOnlyEntityComponent",
  791. "Id": 12521148944687292920
  792. },
  793. "Component_[12835321665484227646]": {
  794. "$type": "EditorLockComponent",
  795. "Id": 12835321665484227646
  796. },
  797. "Component_[13357275932950081715]": {
  798. "$type": "EditorEntitySortComponent",
  799. "Id": 13357275932950081715
  800. },
  801. "Component_[14633572382975316691]": {
  802. "$type": "AZ::Render::EditorMeshComponent",
  803. "Id": 14633572382975316691,
  804. "Controller": {
  805. "Configuration": {
  806. "ModelAsset": {
  807. "assetId": {
  808. "guid": "{767B3209-EDF7-503A-BF3D-6A69DAABC966}",
  809. "subId": 285003870
  810. },
  811. "assetHint": "materialeditor/viewportmodels/plane_1x1.azmodel"
  812. }
  813. }
  814. }
  815. },
  816. "Component_[15400803850908131451]": {
  817. "$type": "EditorDisabledCompositionComponent",
  818. "Id": 15400803850908131451
  819. },
  820. "Component_[3637526016639674263]": {
  821. "$type": "EditorInspectorComponent",
  822. "Id": 3637526016639674263
  823. },
  824. "Component_[411288956840653761]": {
  825. "$type": "EditorVisibilityComponent",
  826. "Id": 411288956840653761
  827. },
  828. "Component_[7478123538122523484]": {
  829. "$type": "EditorMaterialComponent",
  830. "Id": 7478123538122523484,
  831. "Controller": {
  832. "Configuration": {
  833. "materials": [
  834. {
  835. "Key": {
  836. "materialSlotStableId": 1803671422
  837. },
  838. "Value": {
  839. "MaterialAsset": {
  840. "assetId": {
  841. "guid": "{7097621F-8E36-5B9A-A0EB-822F8D5F6C87}"
  842. },
  843. "assetHint": "materials/demoplacard.azmaterial"
  844. },
  845. "PropertyOverrides": {
  846. "baseColor.textureMap": {
  847. "$type": "AssetId",
  848. "Value": {
  849. "guid": "{D71272BE-8D7E-51E7-99DE-81A4473939D4}",
  850. "subId": 1000
  851. }
  852. }
  853. }
  854. }
  855. }
  856. ]
  857. }
  858. }
  859. },
  860. "Component_[7814534240752180395]": {
  861. "$type": "EditorEntityIconComponent",
  862. "Id": 7814534240752180395
  863. },
  864. "Component_[8328462562183634271]": {
  865. "$type": "EditorPendingCompositionComponent",
  866. "Id": 8328462562183634271
  867. }
  868. }
  869. },
  870. "Entity_[37677838535797]": {
  871. "Id": "Entity_[37677838535797]",
  872. "Name": "Ball Net-Entity with Non-Net Child",
  873. "Components": {
  874. "Component_[12367515919186104091]": {
  875. "$type": "AZ::Render::EditorMeshComponent",
  876. "Id": 12367515919186104091,
  877. "Controller": {
  878. "Configuration": {
  879. "ModelAsset": {
  880. "assetId": {
  881. "guid": "{8CC9B575-39D7-5914-AC42-92A77833E63A}",
  882. "subId": 268692035
  883. },
  884. "assetHint": "models/diffuseprobesphere.azmodel"
  885. }
  886. }
  887. }
  888. },
  889. "Component_[13027672609292727721]": {
  890. "$type": "EditorSphereShapeComponent",
  891. "Id": 13027672609292727721,
  892. "SphereShape": {
  893. "Configuration": {
  894. "Radius": 0.550000011920929
  895. }
  896. }
  897. },
  898. "Component_[14720166059315733780]": {
  899. "$type": "EditorRigidBodyComponent",
  900. "Id": 14720166059315733780,
  901. "Configuration": {
  902. "entityId": "",
  903. "Linear damping": 5.0,
  904. "Mass": 523.5988159179688,
  905. "Inertia tensor": [
  906. 52.35987854003906,
  907. 0.0,
  908. 0.0,
  909. 0.0,
  910. 52.35987854003906,
  911. 0.0,
  912. 0.0,
  913. 0.0,
  914. 52.35987854003906
  915. ]
  916. }
  917. },
  918. "Component_[1480501426020384086]": {
  919. "$type": "EditorVisibilityComponent",
  920. "Id": 1480501426020384086
  921. },
  922. "Component_[14875568387651782137]": {
  923. "$type": "EditorDisabledCompositionComponent",
  924. "Id": 14875568387651782137
  925. },
  926. "Component_[16377420513017824424]": {
  927. "$type": "EditorEntityIconComponent",
  928. "Id": 16377420513017824424
  929. },
  930. "Component_[1775496397764089233]": {
  931. "$type": "EditorLockComponent",
  932. "Id": 1775496397764089233
  933. },
  934. "Component_[18210194396034179368]": {
  935. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  936. "Id": 18210194396034179368,
  937. "Parent Entity": "Entity_[356758116574]",
  938. "Transform Data": {
  939. "Translate": [
  940. -0.7649859189987183,
  941. -5.974349498748779,
  942. 0.439389705657959
  943. ]
  944. }
  945. },
  946. "Component_[3919011340731659607]": {
  947. "$type": "GenericComponentWrapper",
  948. "Id": 3919011340731659607,
  949. "m_template": {
  950. "$type": "NetBindComponent"
  951. }
  952. },
  953. "Component_[4912773530096322309]": {
  954. "$type": "EditorInspectorComponent",
  955. "Id": 4912773530096322309
  956. },
  957. "Component_[5057386170116920896]": {
  958. "$type": "EditorOnlyEntityComponent",
  959. "Id": 5057386170116920896
  960. },
  961. "Component_[6029021062967785129]": {
  962. "$type": "GenericComponentWrapper",
  963. "Id": 6029021062967785129,
  964. "m_template": {
  965. "$type": "Multiplayer::NetworkRigidBodyComponent"
  966. }
  967. },
  968. "Component_[725984638850969331]": {
  969. "$type": "GenericComponentWrapper",
  970. "Id": 725984638850969331,
  971. "m_template": {
  972. "$type": "Multiplayer::NetworkTransformComponent"
  973. }
  974. },
  975. "Component_[7757820644470971111]": {
  976. "$type": "EditorColliderComponent",
  977. "Id": 7757820644470971111,
  978. "ColliderConfiguration": {
  979. "MaterialSlots": {
  980. "Slots": [
  981. {
  982. "Name": "Entire object"
  983. }
  984. ]
  985. }
  986. },
  987. "ShapeConfiguration": {
  988. "ShapeType": 0
  989. }
  990. },
  991. "Component_[9717622753391867483]": {
  992. "$type": "EditorEntitySortComponent",
  993. "Id": 9717622753391867483,
  994. "Child Entity Order": [
  995. "Entity_[150339125677173]",
  996. "Entity_[218912573525109]"
  997. ]
  998. },
  999. "Component_[981514129882235647]": {
  1000. "$type": "EditorPendingCompositionComponent",
  1001. "Id": 981514129882235647
  1002. }
  1003. }
  1004. },
  1005. "Entity_[412839637138]": {
  1006. "Id": "Entity_[412839637138]",
  1007. "Name": "Ground",
  1008. "Components": {
  1009. "Component_[14576502551830180300]": {
  1010. "$type": "EditorColliderComponent",
  1011. "Id": 14576502551830180300,
  1012. "ColliderConfiguration": {
  1013. "Position": [
  1014. 0.0,
  1015. 0.0,
  1016. -0.5
  1017. ],
  1018. "MaterialSlots": {
  1019. "Slots": [
  1020. {
  1021. "Name": "Entire object"
  1022. }
  1023. ]
  1024. },
  1025. "MaterialSelection": {
  1026. "MaterialIds": [
  1027. {}
  1028. ]
  1029. }
  1030. },
  1031. "ShapeConfiguration": {
  1032. "ShapeType": 1,
  1033. "Box": {
  1034. "Configuration": [
  1035. 512.0,
  1036. 512.0,
  1037. 1.0
  1038. ]
  1039. }
  1040. }
  1041. },
  1042. "Component_[14931881393326243518]": {
  1043. "$type": "EditorOnlyEntityComponent",
  1044. "Id": 14931881393326243518
  1045. },
  1046. "Component_[15524201486796047970]": {
  1047. "$type": "EditorEntityIconComponent",
  1048. "Id": 15524201486796047970
  1049. },
  1050. "Component_[15840258338216491819]": {
  1051. "$type": "EditorEntitySortComponent",
  1052. "Id": 15840258338216491819,
  1053. "Child Entity Order": [
  1054. "Entity_[611359903594]"
  1055. ]
  1056. },
  1057. "Component_[16611535888956034510]": {
  1058. "$type": "EditorMaterialComponent",
  1059. "Id": 16611535888956034510,
  1060. "Controller": {
  1061. "Configuration": {
  1062. "materials": {
  1063. "{}": {
  1064. "MaterialAsset": {
  1065. "assetId": {
  1066. "guid": "{39704C53-AC3A-51BE-81EA-23CEA2455340}"
  1067. },
  1068. "assetHint": "materials/defaultpbr.azmaterial"
  1069. }
  1070. }
  1071. }
  1072. }
  1073. }
  1074. },
  1075. "Component_[1703359235958163404]": {
  1076. "$type": "AZ::Render::EditorMeshComponent",
  1077. "Id": 1703359235958163404,
  1078. "Controller": {
  1079. "Configuration": {
  1080. "ModelAsset": {
  1081. "assetId": {
  1082. "guid": "{0CD745C0-6AA8-569A-A68A-73A3270986C4}",
  1083. "subId": 277889906
  1084. },
  1085. "assetHint": "objects/groudplane/groundplane_512x512m.azmodel"
  1086. }
  1087. }
  1088. }
  1089. },
  1090. "Component_[17127586586201826931]": {
  1091. "$type": "EditorPendingCompositionComponent",
  1092. "Id": 17127586586201826931
  1093. },
  1094. "Component_[17527605270048086659]": {
  1095. "$type": "EditorLockComponent",
  1096. "Id": 17527605270048086659
  1097. },
  1098. "Component_[18071521120297870282]": {
  1099. "$type": "EditorInspectorComponent",
  1100. "Id": 18071521120297870282
  1101. },
  1102. "Component_[3185353748732299189]": {
  1103. "$type": "EditorDisabledCompositionComponent",
  1104. "Id": 3185353748732299189
  1105. },
  1106. "Component_[3236207122750598279]": {
  1107. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1108. "Id": 3236207122750598279,
  1109. "Parent Entity": "Entity_[356758116574]",
  1110. "Transform Data": {
  1111. "Translate": [
  1112. 0.0,
  1113. 20.376968383789063,
  1114. 0.0
  1115. ]
  1116. }
  1117. },
  1118. "Component_[3412423409421084023]": {
  1119. "$type": "EditorVisibilityComponent",
  1120. "Id": 3412423409421084023
  1121. }
  1122. }
  1123. },
  1124. "Entity_[527570584484]": {
  1125. "Id": "Entity_[527570584484]",
  1126. "Name": "Non-Networked Collider Cone",
  1127. "Components": {
  1128. "Component_[11365849032811673334]": {
  1129. "$type": "AZ::Render::EditorMeshComponent",
  1130. "Id": 11365849032811673334,
  1131. "Controller": {
  1132. "Configuration": {
  1133. "ModelAsset": {
  1134. "assetId": {
  1135. "guid": "{8E6D29E3-0019-5C5A-9F5D-61656BC02DD7}",
  1136. "subId": 284874770
  1137. },
  1138. "assetHint": "materialeditor/viewportmodels/cone.azmodel"
  1139. }
  1140. }
  1141. }
  1142. },
  1143. "Component_[11893727649211090220]": {
  1144. "$type": "EditorInspectorComponent",
  1145. "Id": 11893727649211090220
  1146. },
  1147. "Component_[12666512609188305871]": {
  1148. "$type": "EditorEntitySortComponent",
  1149. "Id": 12666512609188305871
  1150. },
  1151. "Component_[12759718584319174873]": {
  1152. "$type": "EditorMaterialComponent",
  1153. "Id": 12759718584319174873,
  1154. "Controller": {
  1155. "Configuration": {
  1156. "materials": [
  1157. {
  1158. "Key": {
  1159. "materialSlotStableId": 1803671422
  1160. },
  1161. "Value": {
  1162. "PropertyOverrides": {
  1163. "baseColor.color": {
  1164. "$type": "Color",
  1165. "Value": [
  1166. 1.0,
  1167. 0.07110704481601715,
  1168. 0.07110704481601715,
  1169. 1.0
  1170. ]
  1171. }
  1172. }
  1173. }
  1174. }
  1175. ]
  1176. }
  1177. }
  1178. },
  1179. "Component_[13144559215878829395]": {
  1180. "$type": "EditorCapsuleShapeComponent",
  1181. "Id": 13144559215878829395,
  1182. "CapsuleShape": {
  1183. "Configuration": {
  1184. "Height": 2.0199995040893555,
  1185. "Radius": 0.5099998116493225
  1186. }
  1187. }
  1188. },
  1189. "Component_[13545070526863732984]": {
  1190. "$type": "EditorPendingCompositionComponent",
  1191. "Id": 13545070526863732984
  1192. },
  1193. "Component_[2917092960552172245]": {
  1194. "$type": "EditorVisibilityComponent",
  1195. "Id": 2917092960552172245
  1196. },
  1197. "Component_[314388126526494153]": {
  1198. "$type": "EditorLockComponent",
  1199. "Id": 314388126526494153
  1200. },
  1201. "Component_[4556394461817145286]": {
  1202. "$type": "EditorShapeColliderComponent",
  1203. "Id": 4556394461817145286,
  1204. "ColliderConfiguration": {
  1205. "MaterialSlots": {
  1206. "Slots": [
  1207. {
  1208. "Name": "Entire object"
  1209. }
  1210. ]
  1211. }
  1212. },
  1213. "ShapeConfigs": [
  1214. {
  1215. "$type": "CapsuleShapeConfiguration",
  1216. "Scale": [
  1217. 5.0,
  1218. 5.0,
  1219. 5.0
  1220. ],
  1221. "Height": 2.0199995040893555,
  1222. "Radius": 0.5099998116493225
  1223. }
  1224. ]
  1225. },
  1226. "Component_[5659232833946237858]": {
  1227. "$type": "EditorOnlyEntityComponent",
  1228. "Id": 5659232833946237858
  1229. },
  1230. "Component_[5750980930171977015]": {
  1231. "$type": "EditorDisabledCompositionComponent",
  1232. "Id": 5750980930171977015
  1233. },
  1234. "Component_[8183427957295968439]": {
  1235. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1236. "Id": 8183427957295968439,
  1237. "Parent Entity": "Entity_[356758116574]",
  1238. "Transform Data": {
  1239. "Translate": [
  1240. -13.409862518310547,
  1241. -4.682985305786133,
  1242. -0.057463884353637695
  1243. ],
  1244. "UniformScale": 5.0
  1245. }
  1246. },
  1247. "Component_[9587580064430300452]": {
  1248. "$type": "EditorEntityIconComponent",
  1249. "Id": 9587580064430300452
  1250. }
  1251. }
  1252. },
  1253. "Entity_[58245980399131]": {
  1254. "Id": "Entity_[58245980399131]",
  1255. "Name": "Placards",
  1256. "Components": {
  1257. "Component_[10845841516258260476]": {
  1258. "$type": "EditorInspectorComponent",
  1259. "Id": 10845841516258260476
  1260. },
  1261. "Component_[1124249492795142133]": {
  1262. "$type": "EditorDisabledCompositionComponent",
  1263. "Id": 1124249492795142133
  1264. },
  1265. "Component_[13128272933725231188]": {
  1266. "$type": "EditorEntityIconComponent",
  1267. "Id": 13128272933725231188
  1268. },
  1269. "Component_[13859939896291816591]": {
  1270. "$type": "EditorLockComponent",
  1271. "Id": 13859939896291816591
  1272. },
  1273. "Component_[15064289562588327909]": {
  1274. "$type": "EditorPendingCompositionComponent",
  1275. "Id": 15064289562588327909
  1276. },
  1277. "Component_[16677726473912230180]": {
  1278. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1279. "Id": 16677726473912230180,
  1280. "Parent Entity": "Entity_[356758116574]",
  1281. "Transform Data": {
  1282. "Translate": [
  1283. -5.770221710205078,
  1284. -7.2389349937438965,
  1285. 2.2522220611572266
  1286. ]
  1287. }
  1288. },
  1289. "Component_[5177580943559829252]": {
  1290. "$type": "EditorVisibilityComponent",
  1291. "Id": 5177580943559829252
  1292. },
  1293. "Component_[5742617148984903511]": {
  1294. "$type": "EditorOnlyEntityComponent",
  1295. "Id": 5742617148984903511
  1296. },
  1297. "Component_[7244139806392340775]": {
  1298. "$type": "EditorEntitySortComponent",
  1299. "Id": 7244139806392340775,
  1300. "Child Entity Order": [
  1301. "Entity_[32726940402596]",
  1302. "Entity_[163168192990325]",
  1303. "Entity_[1234584512027]",
  1304. "Entity_[115072692692507]"
  1305. ]
  1306. }
  1307. }
  1308. },
  1309. "Entity_[5919988826203]": {
  1310. "Id": "Entity_[5919988826203]",
  1311. "Name": "Player Spawner 1",
  1312. "Components": {
  1313. "Component_[12821202692257528540]": {
  1314. "$type": "EditorPendingCompositionComponent",
  1315. "Id": 12821202692257528540
  1316. },
  1317. "Component_[14597378810391071687]": {
  1318. "$type": "EditorLockComponent",
  1319. "Id": 14597378810391071687
  1320. },
  1321. "Component_[16196520229993883676]": {
  1322. "$type": "GenericComponentWrapper",
  1323. "Id": 16196520229993883676,
  1324. "m_template": {
  1325. "$type": "NetworkPlayerSpawnerComponent",
  1326. "SnapToGround": true,
  1327. "SpawnableAsset": {
  1328. "assetId": {
  1329. "guid": "{13BAFCBF-6669-5E4E-B3B0-8610349B2C01}",
  1330. "subId": 738868766
  1331. },
  1332. "assetHint": "prefabs/player.network.spawnable"
  1333. }
  1334. }
  1335. },
  1336. "Component_[16396226858949964701]": {
  1337. "$type": "EditorVisibilityComponent",
  1338. "Id": 16396226858949964701
  1339. },
  1340. "Component_[17457334425592723879]": {
  1341. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1342. "Id": 17457334425592723879,
  1343. "Parent Entity": "Entity_[356758116574]",
  1344. "Transform Data": {
  1345. "Translate": [
  1346. 0.0,
  1347. -10.0,
  1348. 0.0
  1349. ]
  1350. }
  1351. },
  1352. "Component_[18034126654383632242]": {
  1353. "$type": "EditorDisabledCompositionComponent",
  1354. "Id": 18034126654383632242
  1355. },
  1356. "Component_[2447566750412767001]": {
  1357. "$type": "GenericComponentWrapper",
  1358. "Id": 2447566750412767001,
  1359. "m_template": {
  1360. "$type": "NetBindComponent"
  1361. }
  1362. },
  1363. "Component_[2794843823854361819]": {
  1364. "$type": "EditorEntitySortComponent",
  1365. "Id": 2794843823854361819
  1366. },
  1367. "Component_[6068793232317605117]": {
  1368. "$type": "EditorEntityIconComponent",
  1369. "Id": 6068793232317605117
  1370. },
  1371. "Component_[6441649010823970020]": {
  1372. "$type": "EditorOnlyEntityComponent",
  1373. "Id": 6441649010823970020
  1374. },
  1375. "Component_[720388358424552920]": {
  1376. "$type": "EditorInspectorComponent",
  1377. "Id": 720388358424552920
  1378. }
  1379. }
  1380. },
  1381. "Entity_[5924283793499]": {
  1382. "Id": "Entity_[5924283793499]",
  1383. "Name": "Player Spawner 2",
  1384. "Components": {
  1385. "Component_[12821202692257528540]": {
  1386. "$type": "EditorPendingCompositionComponent",
  1387. "Id": 12821202692257528540
  1388. },
  1389. "Component_[14597378810391071687]": {
  1390. "$type": "EditorLockComponent",
  1391. "Id": 14597378810391071687
  1392. },
  1393. "Component_[16396226858949964701]": {
  1394. "$type": "EditorVisibilityComponent",
  1395. "Id": 16396226858949964701
  1396. },
  1397. "Component_[17457334425592723879]": {
  1398. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1399. "Id": 17457334425592723879,
  1400. "Parent Entity": "Entity_[356758116574]",
  1401. "Transform Data": {
  1402. "Translate": [
  1403. 10.0,
  1404. 0.0,
  1405. 0.0
  1406. ],
  1407. "Rotate": [
  1408. 0.0,
  1409. 0.0,
  1410. 90.0
  1411. ]
  1412. }
  1413. },
  1414. "Component_[18034126654383632242]": {
  1415. "$type": "EditorDisabledCompositionComponent",
  1416. "Id": 18034126654383632242
  1417. },
  1418. "Component_[2447566750412767001]": {
  1419. "$type": "GenericComponentWrapper",
  1420. "Id": 2447566750412767001,
  1421. "m_template": {
  1422. "$type": "NetBindComponent"
  1423. }
  1424. },
  1425. "Component_[2794843823854361819]": {
  1426. "$type": "EditorEntitySortComponent",
  1427. "Id": 2794843823854361819
  1428. },
  1429. "Component_[6068793232317605117]": {
  1430. "$type": "EditorEntityIconComponent",
  1431. "Id": 6068793232317605117
  1432. },
  1433. "Component_[6416839191484803184]": {
  1434. "$type": "GenericComponentWrapper",
  1435. "Id": 6416839191484803184,
  1436. "m_template": {
  1437. "$type": "NetworkPlayerSpawnerComponent",
  1438. "SnapToGround": true,
  1439. "SpawnableAsset": {
  1440. "assetId": {
  1441. "guid": "{13BAFCBF-6669-5E4E-B3B0-8610349B2C01}",
  1442. "subId": 738868766
  1443. },
  1444. "assetHint": "prefabs/player.network.spawnable"
  1445. }
  1446. }
  1447. },
  1448. "Component_[6441649010823970020]": {
  1449. "$type": "EditorOnlyEntityComponent",
  1450. "Id": 6441649010823970020
  1451. },
  1452. "Component_[720388358424552920]": {
  1453. "$type": "EditorInspectorComponent",
  1454. "Id": 720388358424552920
  1455. }
  1456. }
  1457. },
  1458. "Entity_[5997298237531]": {
  1459. "Id": "Entity_[5997298237531]",
  1460. "Name": "Player Spawner 3",
  1461. "Components": {
  1462. "Component_[10353920187632550272]": {
  1463. "$type": "GenericComponentWrapper",
  1464. "Id": 10353920187632550272,
  1465. "m_template": {
  1466. "$type": "NetworkPlayerSpawnerComponent",
  1467. "SnapToGround": true,
  1468. "SpawnableAsset": {
  1469. "assetId": {
  1470. "guid": "{13BAFCBF-6669-5E4E-B3B0-8610349B2C01}",
  1471. "subId": 738868766
  1472. },
  1473. "assetHint": "prefabs/player.network.spawnable"
  1474. }
  1475. }
  1476. },
  1477. "Component_[12821202692257528540]": {
  1478. "$type": "EditorPendingCompositionComponent",
  1479. "Id": 12821202692257528540
  1480. },
  1481. "Component_[14597378810391071687]": {
  1482. "$type": "EditorLockComponent",
  1483. "Id": 14597378810391071687
  1484. },
  1485. "Component_[16396226858949964701]": {
  1486. "$type": "EditorVisibilityComponent",
  1487. "Id": 16396226858949964701
  1488. },
  1489. "Component_[17457334425592723879]": {
  1490. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1491. "Id": 17457334425592723879,
  1492. "Parent Entity": "Entity_[356758116574]",
  1493. "Transform Data": {
  1494. "Translate": [
  1495. 0.0,
  1496. 10.0,
  1497. 0.0
  1498. ],
  1499. "Rotate": [
  1500. 0.0,
  1501. 0.0,
  1502. 180.0
  1503. ]
  1504. }
  1505. },
  1506. "Component_[18034126654383632242]": {
  1507. "$type": "EditorDisabledCompositionComponent",
  1508. "Id": 18034126654383632242
  1509. },
  1510. "Component_[2447566750412767001]": {
  1511. "$type": "GenericComponentWrapper",
  1512. "Id": 2447566750412767001,
  1513. "m_template": {
  1514. "$type": "NetBindComponent"
  1515. }
  1516. },
  1517. "Component_[2794843823854361819]": {
  1518. "$type": "EditorEntitySortComponent",
  1519. "Id": 2794843823854361819
  1520. },
  1521. "Component_[6068793232317605117]": {
  1522. "$type": "EditorEntityIconComponent",
  1523. "Id": 6068793232317605117
  1524. },
  1525. "Component_[6441649010823970020]": {
  1526. "$type": "EditorOnlyEntityComponent",
  1527. "Id": 6441649010823970020
  1528. },
  1529. "Component_[720388358424552920]": {
  1530. "$type": "EditorInspectorComponent",
  1531. "Id": 720388358424552920
  1532. }
  1533. }
  1534. },
  1535. "Entity_[6070312681563]": {
  1536. "Id": "Entity_[6070312681563]",
  1537. "Name": "Player Spawner 4",
  1538. "Components": {
  1539. "Component_[12821202692257528540]": {
  1540. "$type": "EditorPendingCompositionComponent",
  1541. "Id": 12821202692257528540
  1542. },
  1543. "Component_[14597378810391071687]": {
  1544. "$type": "EditorLockComponent",
  1545. "Id": 14597378810391071687
  1546. },
  1547. "Component_[16310256925382960666]": {
  1548. "$type": "GenericComponentWrapper",
  1549. "Id": 16310256925382960666,
  1550. "m_template": {
  1551. "$type": "NetworkPlayerSpawnerComponent",
  1552. "SnapToGround": true,
  1553. "SpawnableAsset": {
  1554. "assetId": {
  1555. "guid": "{13BAFCBF-6669-5E4E-B3B0-8610349B2C01}",
  1556. "subId": 738868766
  1557. },
  1558. "assetHint": "prefabs/player.network.spawnable"
  1559. }
  1560. }
  1561. },
  1562. "Component_[16396226858949964701]": {
  1563. "$type": "EditorVisibilityComponent",
  1564. "Id": 16396226858949964701
  1565. },
  1566. "Component_[17457334425592723879]": {
  1567. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1568. "Id": 17457334425592723879,
  1569. "Parent Entity": "Entity_[356758116574]",
  1570. "Transform Data": {
  1571. "Translate": [
  1572. -10.0,
  1573. 0.0,
  1574. 0.0
  1575. ],
  1576. "Rotate": [
  1577. 0.0,
  1578. 0.0,
  1579. 270.0
  1580. ]
  1581. }
  1582. },
  1583. "Component_[18034126654383632242]": {
  1584. "$type": "EditorDisabledCompositionComponent",
  1585. "Id": 18034126654383632242
  1586. },
  1587. "Component_[2447566750412767001]": {
  1588. "$type": "GenericComponentWrapper",
  1589. "Id": 2447566750412767001,
  1590. "m_template": {
  1591. "$type": "NetBindComponent"
  1592. }
  1593. },
  1594. "Component_[2794843823854361819]": {
  1595. "$type": "EditorEntitySortComponent",
  1596. "Id": 2794843823854361819
  1597. },
  1598. "Component_[6068793232317605117]": {
  1599. "$type": "EditorEntityIconComponent",
  1600. "Id": 6068793232317605117
  1601. },
  1602. "Component_[6441649010823970020]": {
  1603. "$type": "EditorOnlyEntityComponent",
  1604. "Id": 6441649010823970020
  1605. },
  1606. "Component_[720388358424552920]": {
  1607. "$type": "EditorInspectorComponent",
  1608. "Id": 720388358424552920
  1609. }
  1610. }
  1611. },
  1612. "Entity_[611359903594]": {
  1613. "Id": "Entity_[611359903594]",
  1614. "Name": "Sky",
  1615. "Components": {
  1616. "Component_[12020387915929175314]": {
  1617. "$type": "EditorPendingCompositionComponent",
  1618. "Id": 12020387915929175314
  1619. },
  1620. "Component_[12113168580323165094]": {
  1621. "$type": "EditorEntitySortComponent",
  1622. "Id": 12113168580323165094
  1623. },
  1624. "Component_[15868007870507055798]": {
  1625. "$type": "AZ::Render::EditorPhysicalSkyComponent",
  1626. "Id": 15868007870507055798,
  1627. "Controller": {
  1628. "Configuration": {
  1629. "FogSettings": {
  1630. "Enable": true
  1631. }
  1632. }
  1633. }
  1634. },
  1635. "Component_[16939772704288602141]": {
  1636. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1637. "Id": 16939772704288602141,
  1638. "Parent Entity": "Entity_[356758116574]",
  1639. "Transform Data": {
  1640. "Translate": [
  1641. -4.764087677001953,
  1642. 12.970443725585938,
  1643. 19.850555419921875
  1644. ],
  1645. "Rotate": [
  1646. -69.53874206542969,
  1647. -4.26886799687054e-7,
  1648. -12.672529220581055
  1649. ]
  1650. }
  1651. },
  1652. "Component_[181484920425426795]": {
  1653. "$type": "EditorDisabledCompositionComponent",
  1654. "Id": 181484920425426795
  1655. },
  1656. "Component_[1924698028746237056]": {
  1657. "$type": "EditorOnlyEntityComponent",
  1658. "Id": 1924698028746237056
  1659. },
  1660. "Component_[3097249092599449156]": {
  1661. "$type": "AZ::Render::EditorDirectionalLightComponent",
  1662. "Id": 3097249092599449156,
  1663. "Controller": {
  1664. "Configuration": {
  1665. "Color": [
  1666. 0.26219576597213745,
  1667. 0.4600900411605835,
  1668. 0.5198748707771301
  1669. ],
  1670. "Intensity": 0.0,
  1671. "CameraEntityId": ""
  1672. }
  1673. }
  1674. },
  1675. "Component_[3991835182627485406]": {
  1676. "$type": "EditorLockComponent",
  1677. "Id": 3991835182627485406
  1678. },
  1679. "Component_[5074029630700212404]": {
  1680. "$type": "AZ::Render::EditorImageBasedLightComponent",
  1681. "Id": 5074029630700212404,
  1682. "Controller": {
  1683. "Configuration": {
  1684. "diffuseImageAsset": {
  1685. "assetId": {
  1686. "guid": "{A5767C6B-5DB4-5999-A717-4587BEDF5CDE}",
  1687. "subId": 3000
  1688. },
  1689. "assetHint": "lightingpresets/default_iblskyboxcm_ibldiffuse.exr.streamingimage"
  1690. },
  1691. "specularImageAsset": {
  1692. "assetId": {
  1693. "guid": "{FF892EA4-60B2-5E14-8610-CA2A793C86A7}",
  1694. "subId": 2000
  1695. },
  1696. "assetHint": "engineassets/textures/cubemap/default_level_cubemap_iblspecular.tif.streamingimage"
  1697. }
  1698. }
  1699. }
  1700. },
  1701. "Component_[8034472642282561588]": {
  1702. "$type": "EditorInspectorComponent",
  1703. "Id": 8034472642282561588
  1704. },
  1705. "Component_[8915786006739025830]": {
  1706. "$type": "EditorVisibilityComponent",
  1707. "Id": 8915786006739025830
  1708. },
  1709. "Component_[9242372134971919133]": {
  1710. "$type": "EditorEntityIconComponent",
  1711. "Id": 9242372134971919133
  1712. }
  1713. }
  1714. },
  1715. "Entity_[830977005898]": {
  1716. "Id": "Entity_[830977005898]",
  1717. "Name": "Camera",
  1718. "Components": {
  1719. "Component_[13707688659030262739]": {
  1720. "$type": "EditorEntityIconComponent",
  1721. "Id": 13707688659030262739
  1722. },
  1723. "Component_[15209981873132626600]": {
  1724. "$type": "EditorVisibilityComponent",
  1725. "Id": 15209981873132626600
  1726. },
  1727. "Component_[154105298091518109]": {
  1728. "$type": "EditorInspectorComponent",
  1729. "Id": 154105298091518109
  1730. },
  1731. "Component_[17443734220531699641]": {
  1732. "$type": "EditorOnlyEntityComponent",
  1733. "Id": 17443734220531699641
  1734. },
  1735. "Component_[2046025781821881524]": {
  1736. "$type": "EditorPendingCompositionComponent",
  1737. "Id": 2046025781821881524
  1738. },
  1739. "Component_[2763779754963209072]": {
  1740. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1741. "Id": 2763779754963209072,
  1742. "Parent Entity": "Entity_[356758116574]",
  1743. "Transform Data": {
  1744. "Translate": [
  1745. -4.670708179473877,
  1746. -12.568869590759277,
  1747. 2.5842885971069336
  1748. ],
  1749. "Rotate": [
  1750. -15.064143180847168,
  1751. -1.8968206644058228,
  1752. 7.010972023010254
  1753. ]
  1754. }
  1755. },
  1756. "Component_[3970187958414398085]": {
  1757. "$type": "EditorLockComponent",
  1758. "Id": 3970187958414398085
  1759. },
  1760. "Component_[6170729524149437702]": {
  1761. "$type": "EditorDisabledCompositionComponent",
  1762. "Id": 6170729524149437702
  1763. },
  1764. "Component_[7092071161962745685]": {
  1765. "$type": "{CA11DA46-29FF-4083-B5F6-E02C3A8C3A3D} EditorCameraComponent",
  1766. "Id": 7092071161962745685,
  1767. "Controller": {
  1768. "Configuration": {
  1769. "EditorEntityId": 6083481197924942768
  1770. }
  1771. }
  1772. },
  1773. "Component_[9321193093942328270]": {
  1774. "$type": "EditorEntitySortComponent",
  1775. "Id": 9321193093942328270
  1776. }
  1777. }
  1778. }
  1779. },
  1780. "Instances": {
  1781. "Instance_[2834016307555]": {
  1782. "Source": "Prefabs/4x4x4BoxGrid.prefab",
  1783. "Patches": [
  1784. {
  1785. "op": "replace",
  1786. "path": "/ContainerEntity/Name",
  1787. "value": "4x4x4BoxGrid_1"
  1788. },
  1789. {
  1790. "op": "replace",
  1791. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Parent Entity",
  1792. "value": "../Entity_[356758116574]"
  1793. },
  1794. {
  1795. "op": "replace",
  1796. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/0",
  1797. "value": 4.981606483459473
  1798. },
  1799. {
  1800. "op": "replace",
  1801. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/1",
  1802. "value": -5.013465881347656
  1803. },
  1804. {
  1805. "op": "replace",
  1806. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/2",
  1807. "value": 0.5
  1808. }
  1809. ]
  1810. },
  1811. "Instance_[2915620686179]": {
  1812. "Source": "Prefabs/4x4x4BoxGrid.prefab",
  1813. "Patches": [
  1814. {
  1815. "op": "replace",
  1816. "path": "/ContainerEntity/Name",
  1817. "value": "4x4x4BoxGrid_2"
  1818. },
  1819. {
  1820. "op": "replace",
  1821. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Parent Entity",
  1822. "value": "../Entity_[356758116574]"
  1823. },
  1824. {
  1825. "op": "replace",
  1826. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/0",
  1827. "value": 4.981606483459473
  1828. },
  1829. {
  1830. "op": "replace",
  1831. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/1",
  1832. "value": 4.986534118652344
  1833. },
  1834. {
  1835. "op": "replace",
  1836. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/2",
  1837. "value": 0.5
  1838. }
  1839. ]
  1840. },
  1841. "Instance_[3293577808227]": {
  1842. "Source": "Prefabs/4x4x4BoxGrid.prefab",
  1843. "Patches": [
  1844. {
  1845. "op": "replace",
  1846. "path": "/ContainerEntity/Name",
  1847. "value": "4x4x4BoxGrid_3"
  1848. },
  1849. {
  1850. "op": "replace",
  1851. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Parent Entity",
  1852. "value": "../Entity_[356758116574]"
  1853. },
  1854. {
  1855. "op": "replace",
  1856. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/0",
  1857. "value": -5.018393516540527
  1858. },
  1859. {
  1860. "op": "replace",
  1861. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/1",
  1862. "value": -5.013465881347656
  1863. },
  1864. {
  1865. "op": "replace",
  1866. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/2",
  1867. "value": 0.5
  1868. }
  1869. ]
  1870. },
  1871. "Instance_[785316907363]": {
  1872. "Source": "Prefabs/4x4x4BoxGrid.prefab",
  1873. "Patches": [
  1874. {
  1875. "op": "replace",
  1876. "path": "/ContainerEntity/Name",
  1877. "value": "4x4x4BoxGrid_4"
  1878. },
  1879. {
  1880. "op": "replace",
  1881. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Parent Entity",
  1882. "value": "../Entity_[356758116574]"
  1883. },
  1884. {
  1885. "op": "replace",
  1886. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/0",
  1887. "value": -5.018393516540527
  1888. },
  1889. {
  1890. "op": "replace",
  1891. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/1",
  1892. "value": 4.986534118652344
  1893. },
  1894. {
  1895. "op": "replace",
  1896. "path": "/ContainerEntity/Components/Component_[4107956514252411312]/Transform Data/Translate/2",
  1897. "value": 0.5
  1898. }
  1899. ]
  1900. }
  1901. }
  1902. }