projectile_spawner.scriptcanvas 321 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 218606898507476
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[1781600148982149980]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 1781600148982149980,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{01891BBF-BC8A-4CEE-BF6A-03FC241885A8}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 7
  26. },
  27. "isNullPointer": false,
  28. "$type": "Transform",
  29. "value": {
  30. "Translation": [
  31. 0.0,
  32. 0.0,
  33. 0.0
  34. ],
  35. "Rotation": [
  36. 0.0,
  37. 0.0,
  38. 0.0,
  39. 1.0
  40. ],
  41. "Scale": 1.0
  42. }
  43. },
  44. "VariableId": {
  45. "m_id": "{01891BBF-BC8A-4CEE-BF6A-03FC241885A8}"
  46. },
  47. "VariableName": "NextTransform"
  48. }
  49. },
  50. {
  51. "Key": {
  52. "m_id": "{42157C2F-F9DF-49EB-91D8-12C3AD391DAF}"
  53. },
  54. "Value": {
  55. "Datum": {
  56. "isOverloadedStorage": false,
  57. "scriptCanvasType": {
  58. "m_type": 8
  59. },
  60. "isNullPointer": false,
  61. "$type": "Vector3",
  62. "value": [
  63. 0.0,
  64. 0.0,
  65. 0.0
  66. ]
  67. },
  68. "VariableId": {
  69. "m_id": "{42157C2F-F9DF-49EB-91D8-12C3AD391DAF}"
  70. },
  71. "VariableName": "Temp"
  72. }
  73. },
  74. {
  75. "Key": {
  76. "m_id": "{800B6529-8E4E-4B63-BC9F-0CFB95D38D8E}"
  77. },
  78. "Value": {
  79. "Datum": {
  80. "isOverloadedStorage": false,
  81. "scriptCanvasType": {
  82. "m_type": 4,
  83. "m_azType": "{7541F631-BA89-54F3-A6B8-33FF75B60192}"
  84. },
  85. "isNullPointer": false,
  86. "$type": "AZStd::vector<AzFramework::EntitySpawnTicket, allocator>"
  87. },
  88. "VariableId": {
  89. "m_id": "{800B6529-8E4E-4B63-BC9F-0CFB95D38D8E}"
  90. },
  91. "VariableName": "Spawned Projectile Tickets"
  92. }
  93. },
  94. {
  95. "Key": {
  96. "m_id": "{88D42D1C-E4E6-4370-AA0C-FBCDB448535F}"
  97. },
  98. "Value": {
  99. "Datum": {
  100. "isOverloadedStorage": false,
  101. "scriptCanvasType": {
  102. "m_type": 4,
  103. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  104. },
  105. "isNullPointer": false,
  106. "$type": "AzFramework::Scripts::SpawnableScriptAssetRef",
  107. "value": {
  108. "asset": {
  109. "assetId": {
  110. "guid": "{5C1850AF-61DE-542A-B1E9-3563643316EE}",
  111. "subId": 1929060263
  112. },
  113. "assetHint": "levels/multiplayerscriptingsample/multiplayer_projectile.spawnable"
  114. }
  115. }
  116. },
  117. "VariableId": {
  118. "m_id": "{88D42D1C-E4E6-4370-AA0C-FBCDB448535F}"
  119. },
  120. "VariableName": "Projectile Prefab"
  121. }
  122. }
  123. ]
  124. }
  125. },
  126. "Component_[8361276232608538014]": {
  127. "$type": "EditorGraph",
  128. "Id": 8361276232608538014,
  129. "m_graphData": {
  130. "m_nodes": [
  131. {
  132. "Id": {
  133. "id": 218679912951508
  134. },
  135. "Name": "SC-Node(IncrementResetCount)",
  136. "Components": {
  137. "Component_[10297958924731086777]": {
  138. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  139. "Id": 10297958924731086777,
  140. "Slots": [
  141. {
  142. "id": {
  143. "m_id": "{D248C524-97F8-41A8-BC1E-1B95BFB0CE0E}"
  144. },
  145. "contracts": [
  146. {
  147. "$type": "SlotTypeContract"
  148. }
  149. ],
  150. "slotName": "EntityId",
  151. "Descriptor": {
  152. "ConnectionType": 1,
  153. "SlotType": 2
  154. },
  155. "DataType": 1
  156. },
  157. {
  158. "id": {
  159. "m_id": "{FA80E36C-777A-4426-9281-EB6B7FAA979F}"
  160. },
  161. "contracts": [
  162. {
  163. "$type": "SlotTypeContract"
  164. }
  165. ],
  166. "slotName": "In",
  167. "Descriptor": {
  168. "ConnectionType": 1,
  169. "SlotType": 1
  170. }
  171. },
  172. {
  173. "id": {
  174. "m_id": "{08314DDD-3560-48D4-B44E-F5B6B2A3ECBE}"
  175. },
  176. "contracts": [
  177. {
  178. "$type": "SlotTypeContract"
  179. }
  180. ],
  181. "slotName": "Out",
  182. "Descriptor": {
  183. "ConnectionType": 2,
  184. "SlotType": 1
  185. }
  186. }
  187. ],
  188. "Datums": [
  189. {
  190. "isOverloadedStorage": false,
  191. "scriptCanvasType": {
  192. "m_type": 1
  193. },
  194. "isNullPointer": false,
  195. "$type": "EntityId",
  196. "value": {
  197. "id": 2901262558
  198. },
  199. "label": "Entity Id"
  200. }
  201. ],
  202. "methodType": 2,
  203. "methodName": "IncrementResetCount",
  204. "className": "NetworkTransformComponent",
  205. "resultSlotIDs": [
  206. {}
  207. ],
  208. "inputSlots": [
  209. {
  210. "m_id": "{D248C524-97F8-41A8-BC1E-1B95BFB0CE0E}"
  211. }
  212. ],
  213. "prettyClassName": "NetworkTransformComponent"
  214. }
  215. }
  216. },
  217. {
  218. "Id": {
  219. "id": 238625741074132
  220. },
  221. "Name": "SC-Node(DrawTextOnScreen)",
  222. "Components": {
  223. "Component_[10487662536440629763]": {
  224. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  225. "Id": 10487662536440629763,
  226. "Slots": [
  227. {
  228. "id": {
  229. "m_id": "{59D48AB3-BC24-43A7-A6AA-93F3CE4049BD}"
  230. },
  231. "contracts": [
  232. {
  233. "$type": "SlotTypeContract"
  234. }
  235. ],
  236. "slotName": "String: 0",
  237. "Descriptor": {
  238. "ConnectionType": 1,
  239. "SlotType": 2
  240. },
  241. "DataType": 1
  242. },
  243. {
  244. "id": {
  245. "m_id": "{C23E6C9A-0AD2-4FC1-93C5-F7FEB94339EC}"
  246. },
  247. "contracts": [
  248. {
  249. "$type": "SlotTypeContract"
  250. }
  251. ],
  252. "slotName": "Color: 1",
  253. "Descriptor": {
  254. "ConnectionType": 1,
  255. "SlotType": 2
  256. },
  257. "DataType": 1
  258. },
  259. {
  260. "id": {
  261. "m_id": "{4675CC90-42FE-42CB-8E63-E58DB7A1B02E}"
  262. },
  263. "contracts": [
  264. {
  265. "$type": "SlotTypeContract"
  266. }
  267. ],
  268. "slotName": "Number: 2",
  269. "Descriptor": {
  270. "ConnectionType": 1,
  271. "SlotType": 2
  272. },
  273. "DataType": 1
  274. },
  275. {
  276. "id": {
  277. "m_id": "{AB8FC392-3F1A-4F53-AA6C-3DB4F2CED5AE}"
  278. },
  279. "contracts": [
  280. {
  281. "$type": "SlotTypeContract"
  282. }
  283. ],
  284. "slotName": "In",
  285. "Descriptor": {
  286. "ConnectionType": 1,
  287. "SlotType": 1
  288. }
  289. },
  290. {
  291. "id": {
  292. "m_id": "{93BE9642-8AC7-4741-BE0E-30D21A939F3D}"
  293. },
  294. "contracts": [
  295. {
  296. "$type": "SlotTypeContract"
  297. }
  298. ],
  299. "slotName": "Out",
  300. "Descriptor": {
  301. "ConnectionType": 2,
  302. "SlotType": 1
  303. }
  304. }
  305. ],
  306. "Datums": [
  307. {
  308. "isOverloadedStorage": false,
  309. "scriptCanvasType": {
  310. "m_type": 5
  311. },
  312. "isNullPointer": false,
  313. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  314. "value": "This multiplayer level uses Script Canvas and one XML file. No C++!",
  315. "label": "Text"
  316. },
  317. {
  318. "isOverloadedStorage": false,
  319. "scriptCanvasType": {
  320. "m_type": 12
  321. },
  322. "isNullPointer": false,
  323. "$type": "Color",
  324. "value": [
  325. 0.017085902392864227,
  326. 0.134409099817276,
  327. 0.40816327929496765,
  328. 1.0
  329. ],
  330. "label": "Color"
  331. },
  332. {
  333. "isOverloadedStorage": false,
  334. "scriptCanvasType": {
  335. "m_type": 3
  336. },
  337. "isNullPointer": false,
  338. "$type": "double",
  339. "value": 10.0,
  340. "label": "Duration"
  341. }
  342. ],
  343. "methodType": 0,
  344. "methodName": "DrawTextOnScreen",
  345. "className": "DebugDrawRequestBus",
  346. "inputSlots": [
  347. {
  348. "m_id": "{59D48AB3-BC24-43A7-A6AA-93F3CE4049BD}"
  349. },
  350. {
  351. "m_id": "{C23E6C9A-0AD2-4FC1-93C5-F7FEB94339EC}"
  352. },
  353. {
  354. "m_id": "{4675CC90-42FE-42CB-8E63-E58DB7A1B02E}"
  355. }
  356. ],
  357. "prettyClassName": "DebugDrawRequestBus"
  358. }
  359. }
  360. },
  361. {
  362. "Id": {
  363. "id": 218667028049620
  364. },
  365. "Name": "EBusEventHandler",
  366. "Components": {
  367. "Component_[12164655040314907619]": {
  368. "$type": "EBusEventHandler",
  369. "Id": 12164655040314907619,
  370. "Slots": [
  371. {
  372. "id": {
  373. "m_id": "{114C91E6-B838-42C9-A85B-10B3E4B15575}"
  374. },
  375. "contracts": [
  376. {
  377. "$type": "SlotTypeContract"
  378. }
  379. ],
  380. "slotName": "Connect",
  381. "toolTip": "Connect this event handler to the specified entity.",
  382. "Descriptor": {
  383. "ConnectionType": 1,
  384. "SlotType": 1
  385. }
  386. },
  387. {
  388. "id": {
  389. "m_id": "{0A17137E-CDFC-4EC4-9A07-96FE2FB0778C}"
  390. },
  391. "contracts": [
  392. {
  393. "$type": "SlotTypeContract"
  394. }
  395. ],
  396. "slotName": "Disconnect",
  397. "toolTip": "Disconnect this event handler.",
  398. "Descriptor": {
  399. "ConnectionType": 1,
  400. "SlotType": 1
  401. }
  402. },
  403. {
  404. "id": {
  405. "m_id": "{42132070-0503-496A-AF5F-A13F802D9C7D}"
  406. },
  407. "contracts": [
  408. {
  409. "$type": "SlotTypeContract"
  410. }
  411. ],
  412. "slotName": "OnConnected",
  413. "toolTip": "Signaled when a connection has taken place.",
  414. "Descriptor": {
  415. "ConnectionType": 2,
  416. "SlotType": 1
  417. }
  418. },
  419. {
  420. "id": {
  421. "m_id": "{53C6729E-888D-4EBD-B1AF-49D93659A380}"
  422. },
  423. "contracts": [
  424. {
  425. "$type": "SlotTypeContract"
  426. }
  427. ],
  428. "slotName": "OnDisconnected",
  429. "toolTip": "Signaled when this event handler is disconnected.",
  430. "Descriptor": {
  431. "ConnectionType": 2,
  432. "SlotType": 1
  433. }
  434. },
  435. {
  436. "id": {
  437. "m_id": "{CC62276B-B2D5-4819-95F1-AD34BADB2103}"
  438. },
  439. "contracts": [
  440. {
  441. "$type": "SlotTypeContract"
  442. }
  443. ],
  444. "slotName": "OnFailure",
  445. "toolTip": "Signaled when it is not possible to connect this handler.",
  446. "Descriptor": {
  447. "ConnectionType": 2,
  448. "SlotType": 1
  449. }
  450. },
  451. {
  452. "id": {
  453. "m_id": "{6D972E11-6D0A-475B-91AA-3041E16384BC}"
  454. },
  455. "contracts": [
  456. {
  457. "$type": "SlotTypeContract"
  458. }
  459. ],
  460. "slotName": "Source",
  461. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  462. "Descriptor": {
  463. "ConnectionType": 1,
  464. "SlotType": 2
  465. },
  466. "DataType": 1
  467. },
  468. {
  469. "id": {
  470. "m_id": "{02E6CD28-1E52-407C-A8A9-F5660E1F04E1}"
  471. },
  472. "contracts": [
  473. {
  474. "$type": "SlotTypeContract"
  475. }
  476. ],
  477. "slotName": "EntityId",
  478. "DisplayDataType": {
  479. "m_type": 1
  480. },
  481. "Descriptor": {
  482. "ConnectionType": 2,
  483. "SlotType": 2
  484. },
  485. "DataType": 1
  486. },
  487. {
  488. "id": {
  489. "m_id": "{44EEF056-C32A-4883-9B26-94EC6243E200}"
  490. },
  491. "contracts": [
  492. {
  493. "$type": "SlotTypeContract"
  494. }
  495. ],
  496. "slotName": "ExecutionSlot:OnEntityActivated",
  497. "Descriptor": {
  498. "ConnectionType": 2,
  499. "SlotType": 1
  500. },
  501. "IsLatent": true
  502. },
  503. {
  504. "id": {
  505. "m_id": "{B385A327-7224-4FED-AAC5-ED6836E1189F}"
  506. },
  507. "contracts": [
  508. {
  509. "$type": "SlotTypeContract"
  510. }
  511. ],
  512. "slotName": "EntityId",
  513. "DisplayDataType": {
  514. "m_type": 1
  515. },
  516. "Descriptor": {
  517. "ConnectionType": 2,
  518. "SlotType": 2
  519. },
  520. "DataType": 1
  521. },
  522. {
  523. "id": {
  524. "m_id": "{924B6CC3-52FC-4E1A-B4AC-F99B29CC17BE}"
  525. },
  526. "contracts": [
  527. {
  528. "$type": "SlotTypeContract"
  529. }
  530. ],
  531. "slotName": "ExecutionSlot:OnEntityDeactivated",
  532. "Descriptor": {
  533. "ConnectionType": 2,
  534. "SlotType": 1
  535. },
  536. "IsLatent": true
  537. }
  538. ],
  539. "Datums": [
  540. {
  541. "isOverloadedStorage": false,
  542. "scriptCanvasType": {
  543. "m_type": 1
  544. },
  545. "isNullPointer": false,
  546. "$type": "EntityId",
  547. "value": {
  548. "id": 2901262558
  549. },
  550. "label": "Source"
  551. }
  552. ],
  553. "m_eventMap": [
  554. {
  555. "Key": {
  556. "Value": 245425936
  557. },
  558. "Value": {
  559. "m_eventName": "OnEntityActivated",
  560. "m_eventId": {
  561. "Value": 245425936
  562. },
  563. "m_eventSlotId": {
  564. "m_id": "{44EEF056-C32A-4883-9B26-94EC6243E200}"
  565. },
  566. "m_parameterSlotIds": [
  567. {
  568. "m_id": "{02E6CD28-1E52-407C-A8A9-F5660E1F04E1}"
  569. }
  570. ],
  571. "m_numExpectedArguments": 1
  572. }
  573. },
  574. {
  575. "Key": {
  576. "Value": 4273369222
  577. },
  578. "Value": {
  579. "m_eventName": "OnEntityDeactivated",
  580. "m_eventId": {
  581. "Value": 4273369222
  582. },
  583. "m_eventSlotId": {
  584. "m_id": "{924B6CC3-52FC-4E1A-B4AC-F99B29CC17BE}"
  585. },
  586. "m_parameterSlotIds": [
  587. {
  588. "m_id": "{B385A327-7224-4FED-AAC5-ED6836E1189F}"
  589. }
  590. ],
  591. "m_numExpectedArguments": 1
  592. }
  593. }
  594. ],
  595. "m_ebusName": "EntityBus",
  596. "m_busId": {
  597. "Value": 3358774020
  598. }
  599. }
  600. }
  601. },
  602. {
  603. "Id": {
  604. "id": 218671323016916
  605. },
  606. "Name": "SC-Node(SetWorldTM)",
  607. "Components": {
  608. "Component_[13634542696721860186]": {
  609. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  610. "Id": 13634542696721860186,
  611. "Slots": [
  612. {
  613. "id": {
  614. "m_id": "{B2FE673F-A72B-4457-B2FE-E8E2F48EDA3E}"
  615. },
  616. "contracts": [
  617. {
  618. "$type": "SlotTypeContract"
  619. }
  620. ],
  621. "slotName": "EntityId: 0",
  622. "Descriptor": {
  623. "ConnectionType": 1,
  624. "SlotType": 2
  625. },
  626. "DataType": 1
  627. },
  628. {
  629. "id": {
  630. "m_id": "{0EA53BBF-7660-4276-9C18-558AD588739B}"
  631. },
  632. "contracts": [
  633. {
  634. "$type": "SlotTypeContract"
  635. }
  636. ],
  637. "slotName": "Transform: 1",
  638. "Descriptor": {
  639. "ConnectionType": 1,
  640. "SlotType": 2
  641. },
  642. "DataType": 1
  643. },
  644. {
  645. "id": {
  646. "m_id": "{8192BDA0-8BE2-4B7A-9798-6F30F1DC31C6}"
  647. },
  648. "contracts": [
  649. {
  650. "$type": "SlotTypeContract"
  651. }
  652. ],
  653. "slotName": "In",
  654. "Descriptor": {
  655. "ConnectionType": 1,
  656. "SlotType": 1
  657. }
  658. },
  659. {
  660. "id": {
  661. "m_id": "{3B7F730E-2932-43FD-9A20-C4287DF9EDED}"
  662. },
  663. "contracts": [
  664. {
  665. "$type": "SlotTypeContract"
  666. }
  667. ],
  668. "slotName": "Out",
  669. "Descriptor": {
  670. "ConnectionType": 2,
  671. "SlotType": 1
  672. }
  673. }
  674. ],
  675. "Datums": [
  676. {
  677. "isOverloadedStorage": false,
  678. "scriptCanvasType": {
  679. "m_type": 1
  680. },
  681. "isNullPointer": false,
  682. "$type": "EntityId",
  683. "value": {
  684. "id": 2901262558
  685. },
  686. "label": "Source"
  687. },
  688. {
  689. "isOverloadedStorage": false,
  690. "scriptCanvasType": {
  691. "m_type": 7
  692. },
  693. "isNullPointer": false,
  694. "$type": "Transform",
  695. "value": {
  696. "Translation": [
  697. 0.0,
  698. 0.0,
  699. 0.0
  700. ],
  701. "Rotation": [
  702. 0.0,
  703. 0.0,
  704. 0.0,
  705. 1.0
  706. ],
  707. "Scale": 1.0
  708. },
  709. "label": "Transform"
  710. }
  711. ],
  712. "methodType": 0,
  713. "methodName": "SetWorldTM",
  714. "className": "TransformBus",
  715. "resultSlotIDs": [
  716. {}
  717. ],
  718. "inputSlots": [
  719. {
  720. "m_id": "{B2FE673F-A72B-4457-B2FE-E8E2F48EDA3E}"
  721. },
  722. {
  723. "m_id": "{0EA53BBF-7660-4276-9C18-558AD588739B}"
  724. }
  725. ],
  726. "prettyClassName": "TransformBus"
  727. }
  728. }
  729. },
  730. {
  731. "Id": {
  732. "id": 218675617984212
  733. },
  734. "Name": "SC-Node(IfNetRoleNodeableNode)",
  735. "Components": {
  736. "Component_[13865352688332710689]": {
  737. "$type": "IfNetRoleNodeableNode",
  738. "Id": 13865352688332710689,
  739. "Slots": [
  740. {
  741. "id": {
  742. "m_id": "{7619838D-F339-4CFE-8D7D-B1482681208A}"
  743. },
  744. "contracts": [
  745. {
  746. "$type": "SlotTypeContract"
  747. }
  748. ],
  749. "slotName": "In",
  750. "toolTip": "In",
  751. "DisplayGroup": {
  752. "Value": 1609338446
  753. },
  754. "Descriptor": {
  755. "ConnectionType": 1,
  756. "SlotType": 1
  757. }
  758. },
  759. {
  760. "id": {
  761. "m_id": "{4BF43E31-499C-400D-B83D-0DFB746A73D2}"
  762. },
  763. "contracts": [
  764. {
  765. "$type": "SlotTypeContract"
  766. }
  767. ],
  768. "slotName": "Multiplayer Entity",
  769. "toolTip": "An entity with Net Bind component",
  770. "DisplayGroup": {
  771. "Value": 1609338446
  772. },
  773. "Descriptor": {
  774. "ConnectionType": 1,
  775. "SlotType": 2
  776. },
  777. "DataType": 1
  778. },
  779. {
  780. "id": {
  781. "m_id": "{FBCC6DC0-0388-4B2F-861B-BD17EDF400E6}"
  782. },
  783. "contracts": [
  784. {
  785. "$type": "SlotTypeContract"
  786. }
  787. ],
  788. "slotName": "If Client Role",
  789. "toolTip": "An entity with a client role is not controlled by player and only exists on a client",
  790. "DisplayGroup": {
  791. "Value": 1609338446
  792. },
  793. "Descriptor": {
  794. "ConnectionType": 2,
  795. "SlotType": 1
  796. }
  797. },
  798. {
  799. "id": {
  800. "m_id": "{971C7737-609A-4306-A581-D35BD242EF23}"
  801. },
  802. "contracts": [
  803. {
  804. "$type": "SlotTypeContract"
  805. }
  806. ],
  807. "slotName": "If Autonomous Role",
  808. "toolTip": "An entity with an autonomous role is controlled by the local player and exists on a client",
  809. "DisplayGroup": {
  810. "Value": 1609338446
  811. },
  812. "Descriptor": {
  813. "ConnectionType": 2,
  814. "SlotType": 1
  815. }
  816. },
  817. {
  818. "id": {
  819. "m_id": "{532D548A-B128-48A0-97C7-4B0609F8082F}"
  820. },
  821. "contracts": [
  822. {
  823. "$type": "SlotTypeContract"
  824. }
  825. ],
  826. "slotName": "If Authority Role",
  827. "toolTip": "An entity with an authority role is owned by a server and exists on the server",
  828. "DisplayGroup": {
  829. "Value": 1609338446
  830. },
  831. "Descriptor": {
  832. "ConnectionType": 2,
  833. "SlotType": 1
  834. }
  835. },
  836. {
  837. "id": {
  838. "m_id": "{4D570049-A17C-4C39-B4DE-866FBDD94AF6}"
  839. },
  840. "contracts": [
  841. {
  842. "$type": "SlotTypeContract"
  843. }
  844. ],
  845. "slotName": "If Server Role",
  846. "toolTip": "An entity with a server role is a view of an entity that is controlled by another server",
  847. "DisplayGroup": {
  848. "Value": 1609338446
  849. },
  850. "Descriptor": {
  851. "ConnectionType": 2,
  852. "SlotType": 1
  853. }
  854. },
  855. {
  856. "id": {
  857. "m_id": "{22CC543F-F22D-494C-BCE5-EBF873F40636}"
  858. },
  859. "contracts": [
  860. {
  861. "$type": "SlotTypeContract"
  862. }
  863. ],
  864. "slotName": "If Invalid Role",
  865. "toolTip": "A non-multiplayer entity, that is either missing NetBindComponent or the application is not in a multiplayer mode",
  866. "DisplayGroup": {
  867. "Value": 1609338446
  868. },
  869. "Descriptor": {
  870. "ConnectionType": 2,
  871. "SlotType": 1
  872. }
  873. }
  874. ],
  875. "Datums": [
  876. {
  877. "isOverloadedStorage": false,
  878. "scriptCanvasType": {
  879. "m_type": 1
  880. },
  881. "isNullPointer": false,
  882. "$type": "EntityId",
  883. "value": {
  884. "id": 2901262558
  885. },
  886. "label": "Multiplayer Entity"
  887. }
  888. ],
  889. "slotExecutionMap": {
  890. "ins": [
  891. {
  892. "_slotId": {
  893. "m_id": "{7619838D-F339-4CFE-8D7D-B1482681208A}"
  894. },
  895. "_inputs": [
  896. {
  897. "_slotId": {
  898. "m_id": "{4BF43E31-499C-400D-B83D-0DFB746A73D2}"
  899. }
  900. }
  901. ],
  902. "_outs": [
  903. {
  904. "_slotId": {
  905. "m_id": "{FBCC6DC0-0388-4B2F-861B-BD17EDF400E6}"
  906. },
  907. "_name": "If Client Role"
  908. },
  909. {
  910. "_slotId": {
  911. "m_id": "{971C7737-609A-4306-A581-D35BD242EF23}"
  912. },
  913. "_name": "If Autonomous Role"
  914. },
  915. {
  916. "_slotId": {
  917. "m_id": "{532D548A-B128-48A0-97C7-4B0609F8082F}"
  918. },
  919. "_name": "If Authority Role"
  920. },
  921. {
  922. "_slotId": {
  923. "m_id": "{4D570049-A17C-4C39-B4DE-866FBDD94AF6}"
  924. },
  925. "_name": "If Server Role"
  926. },
  927. {
  928. "_slotId": {
  929. "m_id": "{22CC543F-F22D-494C-BCE5-EBF873F40636}"
  930. },
  931. "_name": "If Invalid Role"
  932. }
  933. ]
  934. }
  935. ]
  936. }
  937. }
  938. }
  939. },
  940. {
  941. "Id": {
  942. "id": 218662733082324
  943. },
  944. "Name": "SC-Node(Add Element at End)",
  945. "Components": {
  946. "Component_[14659254912079395849]": {
  947. "$type": "MethodOverloaded",
  948. "Id": 14659254912079395849,
  949. "Slots": [
  950. {
  951. "id": {
  952. "m_id": "{726F4B20-500C-4620-9F9B-4D6AC57D4617}"
  953. },
  954. "DynamicTypeOverride": 2,
  955. "contracts": [
  956. {
  957. "$type": "SlotTypeContract"
  958. },
  959. {
  960. "$type": "OverloadContract"
  961. }
  962. ],
  963. "slotName": "Container",
  964. "toolTip": "The container into which to add an element to",
  965. "DisplayDataType": {
  966. "m_type": 4,
  967. "m_azType": "{7541F631-BA89-54F3-A6B8-33FF75B60192}"
  968. },
  969. "Descriptor": {
  970. "ConnectionType": 1,
  971. "SlotType": 2
  972. },
  973. "DataType": 1
  974. },
  975. {
  976. "id": {
  977. "m_id": "{3C9235A5-E299-4ADE-9499-E40AD19FFBAE}"
  978. },
  979. "DynamicTypeOverride": 1,
  980. "contracts": [
  981. {
  982. "$type": "SlotTypeContract"
  983. },
  984. {
  985. "$type": "OverloadContract"
  986. }
  987. ],
  988. "slotName": "Value",
  989. "toolTip": "The value to be added",
  990. "DisplayDataType": {
  991. "m_type": 4,
  992. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  993. },
  994. "Descriptor": {
  995. "ConnectionType": 1,
  996. "SlotType": 2
  997. },
  998. "DataType": 1
  999. },
  1000. {
  1001. "id": {
  1002. "m_id": "{C6D2C92A-985B-43E6-8B5A-C79652D0403D}"
  1003. },
  1004. "contracts": [
  1005. {
  1006. "$type": "SlotTypeContract"
  1007. }
  1008. ],
  1009. "slotName": "In",
  1010. "Descriptor": {
  1011. "ConnectionType": 1,
  1012. "SlotType": 1
  1013. }
  1014. },
  1015. {
  1016. "id": {
  1017. "m_id": "{1B3593F3-564F-4B5B-BA67-C823506C3960}"
  1018. },
  1019. "contracts": [
  1020. {
  1021. "$type": "SlotTypeContract"
  1022. }
  1023. ],
  1024. "slotName": "Out",
  1025. "Descriptor": {
  1026. "ConnectionType": 2,
  1027. "SlotType": 1
  1028. }
  1029. },
  1030. {
  1031. "id": {
  1032. "m_id": "{60AD8D43-CE3E-4B11-ADBB-3D49EC46D784}"
  1033. },
  1034. "DynamicTypeOverride": 2,
  1035. "contracts": [
  1036. {
  1037. "$type": "SlotTypeContract"
  1038. },
  1039. {
  1040. "$type": "OverloadContract"
  1041. }
  1042. ],
  1043. "slotName": "Container",
  1044. "DisplayDataType": {
  1045. "m_type": 4,
  1046. "m_azType": "{7541F631-BA89-54F3-A6B8-33FF75B60192}"
  1047. },
  1048. "Descriptor": {
  1049. "ConnectionType": 2,
  1050. "SlotType": 2
  1051. },
  1052. "DataType": 1
  1053. }
  1054. ],
  1055. "Datums": [
  1056. {
  1057. "isOverloadedStorage": false,
  1058. "scriptCanvasType": {
  1059. "m_type": 4,
  1060. "m_azType": "{7541F631-BA89-54F3-A6B8-33FF75B60192}"
  1061. },
  1062. "isNullPointer": false,
  1063. "$type": "AZStd::vector<AzFramework::EntitySpawnTicket, allocator>",
  1064. "label": "Container"
  1065. },
  1066. {
  1067. "isOverloadedStorage": false,
  1068. "scriptCanvasType": {
  1069. "m_type": 4,
  1070. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  1071. },
  1072. "isNullPointer": false,
  1073. "$type": "AzFramework::EntitySpawnTicket",
  1074. "label": "Value"
  1075. }
  1076. ],
  1077. "methodType": 2,
  1078. "methodName": "Add Element at End",
  1079. "className": "AZStd::vector<AzFramework::EntitySpawnTicket, allocator>",
  1080. "inputSlots": [
  1081. {
  1082. "m_id": "{726F4B20-500C-4620-9F9B-4D6AC57D4617}"
  1083. },
  1084. {
  1085. "m_id": "{3C9235A5-E299-4ADE-9499-E40AD19FFBAE}"
  1086. }
  1087. ],
  1088. "orderedInputSlotIds": [
  1089. {
  1090. "m_id": "{726F4B20-500C-4620-9F9B-4D6AC57D4617}"
  1091. },
  1092. {
  1093. "m_id": "{3C9235A5-E299-4ADE-9499-E40AD19FFBAE}"
  1094. }
  1095. ],
  1096. "outputSlotIds": [
  1097. {
  1098. "m_id": "{60AD8D43-CE3E-4B11-ADBB-3D49EC46D784}"
  1099. }
  1100. ]
  1101. }
  1102. }
  1103. },
  1104. {
  1105. "Id": {
  1106. "id": 218645553213140
  1107. },
  1108. "Name": "SC Node(GetVariable)",
  1109. "Components": {
  1110. "Component_[15094768450721552084]": {
  1111. "$type": "GetVariableNode",
  1112. "Id": 15094768450721552084,
  1113. "Slots": [
  1114. {
  1115. "id": {
  1116. "m_id": "{D523CA22-4ECF-4F7E-A78F-EA69784B77FE}"
  1117. },
  1118. "contracts": [
  1119. {
  1120. "$type": "SlotTypeContract"
  1121. }
  1122. ],
  1123. "slotName": "In",
  1124. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1125. "Descriptor": {
  1126. "ConnectionType": 1,
  1127. "SlotType": 1
  1128. }
  1129. },
  1130. {
  1131. "id": {
  1132. "m_id": "{E87E48C6-A729-4251-9CC9-7C3A245614F4}"
  1133. },
  1134. "contracts": [
  1135. {
  1136. "$type": "SlotTypeContract"
  1137. }
  1138. ],
  1139. "slotName": "Out",
  1140. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1141. "Descriptor": {
  1142. "ConnectionType": 2,
  1143. "SlotType": 1
  1144. }
  1145. },
  1146. {
  1147. "id": {
  1148. "m_id": "{2E067496-E3DD-4DD6-8666-7F7F02047C0E}"
  1149. },
  1150. "contracts": [
  1151. {
  1152. "$type": "SlotTypeContract"
  1153. }
  1154. ],
  1155. "slotName": "Array<EntitySpawnTicket>",
  1156. "DisplayDataType": {
  1157. "m_type": 4,
  1158. "m_azType": "{7541F631-BA89-54F3-A6B8-33FF75B60192}"
  1159. },
  1160. "Descriptor": {
  1161. "ConnectionType": 2,
  1162. "SlotType": 2
  1163. },
  1164. "DataType": 1
  1165. }
  1166. ],
  1167. "m_variableId": {
  1168. "m_id": "{800B6529-8E4E-4B63-BC9F-0CFB95D38D8E}"
  1169. },
  1170. "m_variableDataOutSlotId": {
  1171. "m_id": "{2E067496-E3DD-4DD6-8666-7F7F02047C0E}"
  1172. }
  1173. }
  1174. }
  1175. },
  1176. {
  1177. "Id": {
  1178. "id": 218649848180436
  1179. },
  1180. "Name": "SC-Node(Print)",
  1181. "Components": {
  1182. "Component_[16237492423421526131]": {
  1183. "$type": "Print",
  1184. "Id": 16237492423421526131,
  1185. "Slots": [
  1186. {
  1187. "id": {
  1188. "m_id": "{6A21DA70-70CD-4F68-A7E6-DA4ABC25F1BF}"
  1189. },
  1190. "contracts": [
  1191. {
  1192. "$type": "SlotTypeContract"
  1193. }
  1194. ],
  1195. "slotName": "In",
  1196. "toolTip": "Input signal",
  1197. "Descriptor": {
  1198. "ConnectionType": 1,
  1199. "SlotType": 1
  1200. }
  1201. },
  1202. {
  1203. "id": {
  1204. "m_id": "{42D6795E-FB52-438A-99CE-5EB20AE79D7B}"
  1205. },
  1206. "DynamicTypeOverride": 3,
  1207. "contracts": [
  1208. {
  1209. "$type": "SlotTypeContract"
  1210. }
  1211. ],
  1212. "slotName": "Value",
  1213. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  1214. "DisplayDataType": {
  1215. "m_type": 3
  1216. },
  1217. "DisplayGroup": {
  1218. "Value": 1015031923
  1219. },
  1220. "Descriptor": {
  1221. "ConnectionType": 1,
  1222. "SlotType": 2
  1223. },
  1224. "DataType": 1
  1225. },
  1226. {
  1227. "id": {
  1228. "m_id": "{AFA74E1C-EFD2-48DB-B151-11E59F94F194}"
  1229. },
  1230. "DynamicTypeOverride": 3,
  1231. "contracts": [
  1232. {
  1233. "$type": "SlotTypeContract"
  1234. }
  1235. ],
  1236. "slotName": "Value_1",
  1237. "toolTip": "Value which replaces instances of {Value_1} in the resulting string.",
  1238. "DisplayDataType": {
  1239. "m_type": 3
  1240. },
  1241. "DisplayGroup": {
  1242. "Value": 1015031923
  1243. },
  1244. "Descriptor": {
  1245. "ConnectionType": 1,
  1246. "SlotType": 2
  1247. },
  1248. "DataType": 1
  1249. },
  1250. {
  1251. "id": {
  1252. "m_id": "{75F205C4-AB80-47F3-9EE5-3D6FD3708DAF}"
  1253. },
  1254. "DynamicTypeOverride": 3,
  1255. "contracts": [
  1256. {
  1257. "$type": "SlotTypeContract"
  1258. }
  1259. ],
  1260. "slotName": "Value_2",
  1261. "toolTip": "Value which replaces instances of {Value_2} in the resulting string.",
  1262. "DisplayDataType": {
  1263. "m_type": 3
  1264. },
  1265. "DisplayGroup": {
  1266. "Value": 1015031923
  1267. },
  1268. "Descriptor": {
  1269. "ConnectionType": 1,
  1270. "SlotType": 2
  1271. },
  1272. "DataType": 1
  1273. },
  1274. {
  1275. "id": {
  1276. "m_id": "{023E4627-575E-40E6-A217-426C8EFB677E}"
  1277. },
  1278. "contracts": [
  1279. {
  1280. "$type": "SlotTypeContract"
  1281. }
  1282. ],
  1283. "slotName": "Out",
  1284. "Descriptor": {
  1285. "ConnectionType": 2,
  1286. "SlotType": 1
  1287. }
  1288. }
  1289. ],
  1290. "Datums": [
  1291. {
  1292. "isOverloadedStorage": false,
  1293. "scriptCanvasType": {
  1294. "m_type": 3
  1295. },
  1296. "isNullPointer": false,
  1297. "$type": "double",
  1298. "value": 0.0,
  1299. "label": "Value"
  1300. },
  1301. {
  1302. "isOverloadedStorage": false,
  1303. "scriptCanvasType": {
  1304. "m_type": 3
  1305. },
  1306. "isNullPointer": false,
  1307. "$type": "double",
  1308. "value": 0.0,
  1309. "label": "Value_1"
  1310. },
  1311. {
  1312. "isOverloadedStorage": false,
  1313. "scriptCanvasType": {
  1314. "m_type": 3
  1315. },
  1316. "isNullPointer": false,
  1317. "$type": "double",
  1318. "value": 0.0,
  1319. "label": "Value_2"
  1320. }
  1321. ],
  1322. "NodeDisabledFlag": 1,
  1323. "m_format": "Spawning at {Value},{Value_1},{Value_2}",
  1324. "m_arrayBindingMap": [
  1325. {
  1326. "Key": 1,
  1327. "Value": {
  1328. "m_id": "{42D6795E-FB52-438A-99CE-5EB20AE79D7B}"
  1329. }
  1330. },
  1331. {
  1332. "Key": 3,
  1333. "Value": {
  1334. "m_id": "{AFA74E1C-EFD2-48DB-B151-11E59F94F194}"
  1335. }
  1336. },
  1337. {
  1338. "Key": 5,
  1339. "Value": {
  1340. "m_id": "{75F205C4-AB80-47F3-9EE5-3D6FD3708DAF}"
  1341. }
  1342. }
  1343. ],
  1344. "m_unresolvedString": [
  1345. "Spawning at ",
  1346. {},
  1347. ",",
  1348. {},
  1349. ",",
  1350. {}
  1351. ],
  1352. "m_formatSlotMap": {
  1353. "Value": {
  1354. "m_id": "{42D6795E-FB52-438A-99CE-5EB20AE79D7B}"
  1355. },
  1356. "Value_1": {
  1357. "m_id": "{AFA74E1C-EFD2-48DB-B151-11E59F94F194}"
  1358. },
  1359. "Value_2": {
  1360. "m_id": "{75F205C4-AB80-47F3-9EE5-3D6FD3708DAF}"
  1361. }
  1362. }
  1363. }
  1364. }
  1365. },
  1366. {
  1367. "Id": {
  1368. "id": 218654143147732
  1369. },
  1370. "Name": "SC-Node(IfNetRoleNodeableNode)",
  1371. "Components": {
  1372. "Component_[17684051650297859599]": {
  1373. "$type": "IfNetRoleNodeableNode",
  1374. "Id": 17684051650297859599,
  1375. "Slots": [
  1376. {
  1377. "id": {
  1378. "m_id": "{FE793C6F-4B6C-4402-A770-F89C48B51083}"
  1379. },
  1380. "contracts": [
  1381. {
  1382. "$type": "SlotTypeContract"
  1383. }
  1384. ],
  1385. "slotName": "In",
  1386. "toolTip": "In",
  1387. "DisplayGroup": {
  1388. "Value": 1609338446
  1389. },
  1390. "Descriptor": {
  1391. "ConnectionType": 1,
  1392. "SlotType": 1
  1393. }
  1394. },
  1395. {
  1396. "id": {
  1397. "m_id": "{599A1DCE-69FD-4A70-AA98-E4E7B7D6ADA0}"
  1398. },
  1399. "contracts": [
  1400. {
  1401. "$type": "SlotTypeContract"
  1402. }
  1403. ],
  1404. "slotName": "Multiplayer Entity",
  1405. "toolTip": "An entity with Net Bind component",
  1406. "DisplayGroup": {
  1407. "Value": 1609338446
  1408. },
  1409. "Descriptor": {
  1410. "ConnectionType": 1,
  1411. "SlotType": 2
  1412. },
  1413. "DataType": 1
  1414. },
  1415. {
  1416. "id": {
  1417. "m_id": "{38B356C4-27F6-42D0-B4C8-E0A225183167}"
  1418. },
  1419. "contracts": [
  1420. {
  1421. "$type": "SlotTypeContract"
  1422. }
  1423. ],
  1424. "slotName": "If Client Role",
  1425. "toolTip": "An entity with a client role is not controlled by player and only exists on a client",
  1426. "DisplayGroup": {
  1427. "Value": 1609338446
  1428. },
  1429. "Descriptor": {
  1430. "ConnectionType": 2,
  1431. "SlotType": 1
  1432. }
  1433. },
  1434. {
  1435. "id": {
  1436. "m_id": "{EF09B053-6B33-4B7D-979E-4047E293BA52}"
  1437. },
  1438. "contracts": [
  1439. {
  1440. "$type": "SlotTypeContract"
  1441. }
  1442. ],
  1443. "slotName": "If Autonomous Role",
  1444. "toolTip": "An entity with an autonomous role is controlled by the local player and exists on a client",
  1445. "DisplayGroup": {
  1446. "Value": 1609338446
  1447. },
  1448. "Descriptor": {
  1449. "ConnectionType": 2,
  1450. "SlotType": 1
  1451. }
  1452. },
  1453. {
  1454. "id": {
  1455. "m_id": "{49CC9C13-A89A-42F3-83D6-2955E5AF6D88}"
  1456. },
  1457. "contracts": [
  1458. {
  1459. "$type": "SlotTypeContract"
  1460. }
  1461. ],
  1462. "slotName": "If Authority Role",
  1463. "toolTip": "An entity with an authority role is owned by a server and exists on the server",
  1464. "DisplayGroup": {
  1465. "Value": 1609338446
  1466. },
  1467. "Descriptor": {
  1468. "ConnectionType": 2,
  1469. "SlotType": 1
  1470. }
  1471. },
  1472. {
  1473. "id": {
  1474. "m_id": "{A77608B5-CC08-41D0-893E-554F788B5639}"
  1475. },
  1476. "contracts": [
  1477. {
  1478. "$type": "SlotTypeContract"
  1479. }
  1480. ],
  1481. "slotName": "If Server Role",
  1482. "toolTip": "An entity with a server role is a view of an entity that is controlled by another server",
  1483. "DisplayGroup": {
  1484. "Value": 1609338446
  1485. },
  1486. "Descriptor": {
  1487. "ConnectionType": 2,
  1488. "SlotType": 1
  1489. }
  1490. },
  1491. {
  1492. "id": {
  1493. "m_id": "{9E75FD04-6EA5-4E14-8912-2A5ECF6FB067}"
  1494. },
  1495. "contracts": [
  1496. {
  1497. "$type": "SlotTypeContract"
  1498. }
  1499. ],
  1500. "slotName": "If Invalid Role",
  1501. "toolTip": "A non-multiplayer entity, that is either missing NetBindComponent or the application is not in a multiplayer mode",
  1502. "DisplayGroup": {
  1503. "Value": 1609338446
  1504. },
  1505. "Descriptor": {
  1506. "ConnectionType": 2,
  1507. "SlotType": 1
  1508. }
  1509. }
  1510. ],
  1511. "Datums": [
  1512. {
  1513. "isOverloadedStorage": false,
  1514. "scriptCanvasType": {
  1515. "m_type": 1
  1516. },
  1517. "isNullPointer": false,
  1518. "$type": "EntityId",
  1519. "value": {
  1520. "id": 2901262558
  1521. },
  1522. "label": "Multiplayer Entity"
  1523. }
  1524. ],
  1525. "slotExecutionMap": {
  1526. "ins": [
  1527. {
  1528. "_slotId": {
  1529. "m_id": "{FE793C6F-4B6C-4402-A770-F89C48B51083}"
  1530. },
  1531. "_inputs": [
  1532. {
  1533. "_slotId": {
  1534. "m_id": "{599A1DCE-69FD-4A70-AA98-E4E7B7D6ADA0}"
  1535. }
  1536. }
  1537. ],
  1538. "_outs": [
  1539. {
  1540. "_slotId": {
  1541. "m_id": "{38B356C4-27F6-42D0-B4C8-E0A225183167}"
  1542. },
  1543. "_name": "If Client Role"
  1544. },
  1545. {
  1546. "_slotId": {
  1547. "m_id": "{EF09B053-6B33-4B7D-979E-4047E293BA52}"
  1548. },
  1549. "_name": "If Autonomous Role"
  1550. },
  1551. {
  1552. "_slotId": {
  1553. "m_id": "{49CC9C13-A89A-42F3-83D6-2955E5AF6D88}"
  1554. },
  1555. "_name": "If Authority Role"
  1556. },
  1557. {
  1558. "_slotId": {
  1559. "m_id": "{A77608B5-CC08-41D0-893E-554F788B5639}"
  1560. },
  1561. "_name": "If Server Role"
  1562. },
  1563. {
  1564. "_slotId": {
  1565. "m_id": "{9E75FD04-6EA5-4E14-8912-2A5ECF6FB067}"
  1566. },
  1567. "_name": "If Invalid Role"
  1568. }
  1569. ]
  1570. }
  1571. ]
  1572. }
  1573. }
  1574. }
  1575. },
  1576. {
  1577. "Id": {
  1578. "id": 218641258245844
  1579. },
  1580. "Name": "SC-Node(GetLocalUniformScale)",
  1581. "Components": {
  1582. "Component_[17811691807037983542]": {
  1583. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1584. "Id": 17811691807037983542,
  1585. "Slots": [
  1586. {
  1587. "id": {
  1588. "m_id": "{DB10B2A3-000E-487A-89F6-4144FB6A759E}"
  1589. },
  1590. "contracts": [
  1591. {
  1592. "$type": "SlotTypeContract"
  1593. }
  1594. ],
  1595. "slotName": "EntityId",
  1596. "Descriptor": {
  1597. "ConnectionType": 1,
  1598. "SlotType": 2
  1599. },
  1600. "DataType": 1
  1601. },
  1602. {
  1603. "id": {
  1604. "m_id": "{D48C0B8C-C708-4C8E-9952-7C4F2D3294CD}"
  1605. },
  1606. "contracts": [
  1607. {
  1608. "$type": "SlotTypeContract"
  1609. }
  1610. ],
  1611. "slotName": "In",
  1612. "Descriptor": {
  1613. "ConnectionType": 1,
  1614. "SlotType": 1
  1615. }
  1616. },
  1617. {
  1618. "id": {
  1619. "m_id": "{81A5E7E8-8E17-4D4C-A93D-6F3FBE399E11}"
  1620. },
  1621. "contracts": [
  1622. {
  1623. "$type": "SlotTypeContract"
  1624. }
  1625. ],
  1626. "slotName": "Out",
  1627. "Descriptor": {
  1628. "ConnectionType": 2,
  1629. "SlotType": 1
  1630. }
  1631. },
  1632. {
  1633. "id": {
  1634. "m_id": "{B391BCD7-11CC-47D5-BC85-A1FDD6AA1DC5}"
  1635. },
  1636. "contracts": [
  1637. {
  1638. "$type": "SlotTypeContract"
  1639. }
  1640. ],
  1641. "slotName": "Number",
  1642. "DisplayDataType": {
  1643. "m_type": 3
  1644. },
  1645. "Descriptor": {
  1646. "ConnectionType": 2,
  1647. "SlotType": 2
  1648. },
  1649. "DataType": 1
  1650. }
  1651. ],
  1652. "Datums": [
  1653. {
  1654. "isOverloadedStorage": false,
  1655. "scriptCanvasType": {
  1656. "m_type": 1
  1657. },
  1658. "isNullPointer": false,
  1659. "$type": "EntityId",
  1660. "value": {
  1661. "id": 2901262558
  1662. },
  1663. "label": "EntityId"
  1664. }
  1665. ],
  1666. "methodType": 0,
  1667. "methodName": "GetLocalUniformScale",
  1668. "className": "TransformBus",
  1669. "resultSlotIDs": [
  1670. {}
  1671. ],
  1672. "inputSlots": [
  1673. {
  1674. "m_id": "{DB10B2A3-000E-487A-89F6-4144FB6A759E}"
  1675. }
  1676. ],
  1677. "prettyClassName": "TransformBus"
  1678. }
  1679. }
  1680. },
  1681. {
  1682. "Id": {
  1683. "id": 218628373343956
  1684. },
  1685. "Name": "SC-Node(CreateSpawnTicketNodeableNode)",
  1686. "Components": {
  1687. "Component_[2226065307762210226]": {
  1688. "$type": "CreateSpawnTicketNodeableNode",
  1689. "Id": 2226065307762210226,
  1690. "Slots": [
  1691. {
  1692. "id": {
  1693. "m_id": "{8B1A9BDE-4523-42B6-A1F1-C7CD436AE1CA}"
  1694. },
  1695. "contracts": [
  1696. {
  1697. "$type": "SlotTypeContract"
  1698. }
  1699. ],
  1700. "slotName": "Create Ticket",
  1701. "DisplayGroup": {
  1702. "Value": 3070342103
  1703. },
  1704. "Descriptor": {
  1705. "ConnectionType": 1,
  1706. "SlotType": 1
  1707. }
  1708. },
  1709. {
  1710. "id": {
  1711. "m_id": "{2EE23CD3-78E3-4B4C-9C9F-C7C42FA80ACD}"
  1712. },
  1713. "contracts": [
  1714. {
  1715. "$type": "SlotTypeContract"
  1716. }
  1717. ],
  1718. "slotName": "Prefab",
  1719. "toolTip": "Prefab source asset to spawn",
  1720. "DisplayGroup": {
  1721. "Value": 3070342103
  1722. },
  1723. "Descriptor": {
  1724. "ConnectionType": 1,
  1725. "SlotType": 2
  1726. },
  1727. "DataType": 1
  1728. },
  1729. {
  1730. "id": {
  1731. "m_id": "{F99D9B5F-736F-4F2D-B69D-496A0E59D7B2}"
  1732. },
  1733. "contracts": [
  1734. {
  1735. "$type": "SlotTypeContract"
  1736. }
  1737. ],
  1738. "slotName": "Ticket Created",
  1739. "DisplayGroup": {
  1740. "Value": 3070342103
  1741. },
  1742. "Descriptor": {
  1743. "ConnectionType": 2,
  1744. "SlotType": 1
  1745. }
  1746. },
  1747. {
  1748. "id": {
  1749. "m_id": "{534519E0-574D-494E-B03E-ECC05923D7B9}"
  1750. },
  1751. "contracts": [
  1752. {
  1753. "$type": "SlotTypeContract"
  1754. }
  1755. ],
  1756. "slotName": "SpawnTicket",
  1757. "DisplayDataType": {
  1758. "m_type": 4,
  1759. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  1760. },
  1761. "DisplayGroup": {
  1762. "Value": 3070342103
  1763. },
  1764. "Descriptor": {
  1765. "ConnectionType": 2,
  1766. "SlotType": 2
  1767. },
  1768. "DataType": 1
  1769. }
  1770. ],
  1771. "Datums": [
  1772. {
  1773. "isOverloadedStorage": false,
  1774. "scriptCanvasType": {
  1775. "m_type": 4,
  1776. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  1777. },
  1778. "isNullPointer": false,
  1779. "$type": "AzFramework::Scripts::SpawnableScriptAssetRef",
  1780. "label": "Prefab"
  1781. }
  1782. ],
  1783. "slotExecutionMap": {
  1784. "ins": [
  1785. {
  1786. "_slotId": {
  1787. "m_id": "{8B1A9BDE-4523-42B6-A1F1-C7CD436AE1CA}"
  1788. },
  1789. "_inputs": [
  1790. {
  1791. "_slotId": {
  1792. "m_id": "{2EE23CD3-78E3-4B4C-9C9F-C7C42FA80ACD}"
  1793. }
  1794. }
  1795. ],
  1796. "_outs": [
  1797. {
  1798. "_slotId": {
  1799. "m_id": "{F99D9B5F-736F-4F2D-B69D-496A0E59D7B2}"
  1800. },
  1801. "_name": "Ticket Created",
  1802. "_outputs": [
  1803. {
  1804. "_slotId": {
  1805. "m_id": "{534519E0-574D-494E-B03E-ECC05923D7B9}"
  1806. }
  1807. }
  1808. ]
  1809. }
  1810. ]
  1811. }
  1812. ]
  1813. }
  1814. }
  1815. }
  1816. },
  1817. {
  1818. "Id": {
  1819. "id": 218632668311252
  1820. },
  1821. "Name": "SC Node(GetVariable)",
  1822. "Components": {
  1823. "Component_[2326380039345637181]": {
  1824. "$type": "GetVariableNode",
  1825. "Id": 2326380039345637181,
  1826. "Slots": [
  1827. {
  1828. "id": {
  1829. "m_id": "{075A8E71-E74E-4621-BBC8-27F126457021}"
  1830. },
  1831. "contracts": [
  1832. {
  1833. "$type": "SlotTypeContract"
  1834. }
  1835. ],
  1836. "slotName": "In",
  1837. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1838. "Descriptor": {
  1839. "ConnectionType": 1,
  1840. "SlotType": 1
  1841. }
  1842. },
  1843. {
  1844. "id": {
  1845. "m_id": "{45FAEDDA-BDC8-4B91-9047-79DCA8FCCCDF}"
  1846. },
  1847. "contracts": [
  1848. {
  1849. "$type": "SlotTypeContract"
  1850. }
  1851. ],
  1852. "slotName": "Out",
  1853. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1854. "Descriptor": {
  1855. "ConnectionType": 2,
  1856. "SlotType": 1
  1857. }
  1858. },
  1859. {
  1860. "id": {
  1861. "m_id": "{420F0F14-1949-49F9-AB4F-535D055AF4E9}"
  1862. },
  1863. "contracts": [
  1864. {
  1865. "$type": "SlotTypeContract"
  1866. }
  1867. ],
  1868. "slotName": "Transform",
  1869. "DisplayDataType": {
  1870. "m_type": 7
  1871. },
  1872. "Descriptor": {
  1873. "ConnectionType": 2,
  1874. "SlotType": 2
  1875. },
  1876. "DataType": 1
  1877. },
  1878. {
  1879. "id": {
  1880. "m_id": "{110FF0AF-E0A3-446F-BCF4-0AE9F91017EE}"
  1881. },
  1882. "contracts": [
  1883. {
  1884. "$type": "SlotTypeContract"
  1885. }
  1886. ],
  1887. "slotName": "X Axis",
  1888. "DisplayDataType": {
  1889. "m_type": 8
  1890. },
  1891. "Descriptor": {
  1892. "ConnectionType": 2,
  1893. "SlotType": 2
  1894. },
  1895. "DataType": 1
  1896. },
  1897. {
  1898. "id": {
  1899. "m_id": "{8A10AE55-0541-4B42-9AD6-15ED88AF019D}"
  1900. },
  1901. "contracts": [
  1902. {
  1903. "$type": "SlotTypeContract"
  1904. }
  1905. ],
  1906. "slotName": "Y Axis",
  1907. "DisplayDataType": {
  1908. "m_type": 8
  1909. },
  1910. "Descriptor": {
  1911. "ConnectionType": 2,
  1912. "SlotType": 2
  1913. },
  1914. "DataType": 1
  1915. },
  1916. {
  1917. "id": {
  1918. "m_id": "{355D55FC-D0AA-4CCE-9041-A8CEE111E0AC}"
  1919. },
  1920. "contracts": [
  1921. {
  1922. "$type": "SlotTypeContract"
  1923. }
  1924. ],
  1925. "slotName": "Z Axis",
  1926. "DisplayDataType": {
  1927. "m_type": 8
  1928. },
  1929. "Descriptor": {
  1930. "ConnectionType": 2,
  1931. "SlotType": 2
  1932. },
  1933. "DataType": 1
  1934. },
  1935. {
  1936. "id": {
  1937. "m_id": "{A1A08A0A-3009-4B90-B755-7B52AA7F5671}"
  1938. },
  1939. "contracts": [
  1940. {
  1941. "$type": "SlotTypeContract"
  1942. }
  1943. ],
  1944. "slotName": "Translation",
  1945. "DisplayDataType": {
  1946. "m_type": 8
  1947. },
  1948. "Descriptor": {
  1949. "ConnectionType": 2,
  1950. "SlotType": 2
  1951. },
  1952. "DataType": 1
  1953. }
  1954. ],
  1955. "m_variableId": {
  1956. "m_id": "{01891BBF-BC8A-4CEE-BF6A-03FC241885A8}"
  1957. },
  1958. "m_variableDataOutSlotId": {
  1959. "m_id": "{420F0F14-1949-49F9-AB4F-535D055AF4E9}"
  1960. },
  1961. "m_propertyAccounts": [
  1962. {
  1963. "m_propertySlotId": {
  1964. "m_id": "{110FF0AF-E0A3-446F-BCF4-0AE9F91017EE}"
  1965. },
  1966. "m_propertyType": {
  1967. "m_type": 8
  1968. },
  1969. "m_propertyName": "basisX"
  1970. },
  1971. {
  1972. "m_propertySlotId": {
  1973. "m_id": "{8A10AE55-0541-4B42-9AD6-15ED88AF019D}"
  1974. },
  1975. "m_propertyType": {
  1976. "m_type": 8
  1977. },
  1978. "m_propertyName": "basisY"
  1979. },
  1980. {
  1981. "m_propertySlotId": {
  1982. "m_id": "{355D55FC-D0AA-4CCE-9041-A8CEE111E0AC}"
  1983. },
  1984. "m_propertyType": {
  1985. "m_type": 8
  1986. },
  1987. "m_propertyName": "basisZ"
  1988. },
  1989. {
  1990. "m_propertySlotId": {
  1991. "m_id": "{A1A08A0A-3009-4B90-B755-7B52AA7F5671}"
  1992. },
  1993. "m_propertyType": {
  1994. "m_type": 8
  1995. },
  1996. "m_propertyName": "translation"
  1997. }
  1998. ]
  1999. }
  2000. }
  2001. },
  2002. {
  2003. "Id": {
  2004. "id": 218636963278548
  2005. },
  2006. "Name": "ReceiveScriptEvent",
  2007. "Components": {
  2008. "Component_[2753972962568602690]": {
  2009. "$type": "ReceiveScriptEvent",
  2010. "Id": 2753972962568602690,
  2011. "Slots": [
  2012. {
  2013. "id": {
  2014. "m_id": "{09F88211-B00F-4BEB-8569-31754D9AEBC8}"
  2015. },
  2016. "contracts": [
  2017. {
  2018. "$type": "SlotTypeContract"
  2019. }
  2020. ],
  2021. "slotName": "Connect",
  2022. "toolTip": "Connect this event handler to the specified entity.",
  2023. "Descriptor": {
  2024. "ConnectionType": 1,
  2025. "SlotType": 1
  2026. }
  2027. },
  2028. {
  2029. "id": {
  2030. "m_id": "{97CA6808-FA2D-4B50-9167-94192A9C643F}"
  2031. },
  2032. "contracts": [
  2033. {
  2034. "$type": "SlotTypeContract"
  2035. }
  2036. ],
  2037. "slotName": "Disconnect",
  2038. "toolTip": "Disconnect this event handler.",
  2039. "Descriptor": {
  2040. "ConnectionType": 1,
  2041. "SlotType": 1
  2042. }
  2043. },
  2044. {
  2045. "id": {
  2046. "m_id": "{7CB79BDF-04DF-469E-8135-9B3B532A55FF}"
  2047. },
  2048. "contracts": [
  2049. {
  2050. "$type": "SlotTypeContract"
  2051. }
  2052. ],
  2053. "slotName": "OnConnected",
  2054. "toolTip": "Signaled when a connection has taken place.",
  2055. "Descriptor": {
  2056. "ConnectionType": 2,
  2057. "SlotType": 1
  2058. }
  2059. },
  2060. {
  2061. "id": {
  2062. "m_id": "{B0A27103-0835-4BE5-B60B-44B297BE1039}"
  2063. },
  2064. "contracts": [
  2065. {
  2066. "$type": "SlotTypeContract"
  2067. }
  2068. ],
  2069. "slotName": "OnDisconnected",
  2070. "toolTip": "Signaled when this event handler is disconnected.",
  2071. "Descriptor": {
  2072. "ConnectionType": 2,
  2073. "SlotType": 1
  2074. }
  2075. },
  2076. {
  2077. "id": {
  2078. "m_id": "{AA6F7F49-1D42-49A4-881A-F3F865CDABB8}"
  2079. },
  2080. "contracts": [
  2081. {
  2082. "$type": "SlotTypeContract"
  2083. }
  2084. ],
  2085. "slotName": "OnFailure",
  2086. "toolTip": "Signaled when it is not possible to connect this handler.",
  2087. "Descriptor": {
  2088. "ConnectionType": 2,
  2089. "SlotType": 1
  2090. }
  2091. },
  2092. {
  2093. "id": {
  2094. "m_id": "{162F75F1-E63B-4E8B-A8E0-FDE404E414A2}"
  2095. },
  2096. "contracts": [
  2097. {
  2098. "$type": "SlotTypeContract"
  2099. }
  2100. ],
  2101. "slotName": "SpawnAt",
  2102. "DisplayDataType": {
  2103. "m_type": 7
  2104. },
  2105. "Descriptor": {
  2106. "ConnectionType": 2,
  2107. "SlotType": 2
  2108. },
  2109. "DataType": 1
  2110. },
  2111. {
  2112. "id": {
  2113. "m_id": "{D62AAD3D-D0D8-470C-A488-80002E7BFD94}"
  2114. },
  2115. "contracts": [
  2116. {
  2117. "$type": "SlotTypeContract"
  2118. }
  2119. ],
  2120. "slotName": "ExecutionSlot:SpawnProjectileAt",
  2121. "Descriptor": {
  2122. "ConnectionType": 2,
  2123. "SlotType": 1
  2124. },
  2125. "IsLatent": true
  2126. }
  2127. ],
  2128. "m_version": 1,
  2129. "m_eventMap": [
  2130. {
  2131. "Key": {
  2132. "Value": 1236404752
  2133. },
  2134. "Value": {
  2135. "m_scriptEventAssetId": {
  2136. "guid": "{FC4F5ECF-B50D-5CFD-B6EB-8E224DF8468B}"
  2137. },
  2138. "m_eventName": "SpawnProjectileAt",
  2139. "m_eventSlotId": {
  2140. "m_id": "{D62AAD3D-D0D8-470C-A488-80002E7BFD94}"
  2141. },
  2142. "m_parameterSlotIds": [
  2143. {
  2144. "m_id": "{162F75F1-E63B-4E8B-A8E0-FDE404E414A2}"
  2145. }
  2146. ],
  2147. "m_numExpectedArguments": 1
  2148. }
  2149. }
  2150. ],
  2151. "m_eventSlotMapping": {
  2152. "{607A7175-1A5F-454A-96AD-C27819E4A7C1}": {
  2153. "m_id": "{D62AAD3D-D0D8-470C-A488-80002E7BFD94}"
  2154. },
  2155. "{E0B54E7F-8019-48F3-8CF1-6B324B1EBB23}": {
  2156. "m_id": "{162F75F1-E63B-4E8B-A8E0-FDE404E414A2}"
  2157. }
  2158. },
  2159. "m_scriptEventAssetId": {
  2160. "guid": "{FC4F5ECF-B50D-5CFD-B6EB-8E224DF8468B}"
  2161. },
  2162. "m_asset": {
  2163. "assetId": {
  2164. "guid": "{FC4F5ECF-B50D-5CFD-B6EB-8E224DF8468B}"
  2165. },
  2166. "loadBehavior": "PreLoad",
  2167. "assetHint": "levels/multiplayerscriptingsample/projectile_spawner_events.scriptevents"
  2168. },
  2169. "m_autoConnectToGraphOwner": false
  2170. }
  2171. }
  2172. },
  2173. {
  2174. "Id": {
  2175. "id": 218684207918804
  2176. },
  2177. "Name": "SC-Node(ForEach)",
  2178. "Components": {
  2179. "Component_[3295002729158889866]": {
  2180. "$type": "ForEach",
  2181. "Id": 3295002729158889866,
  2182. "Slots": [
  2183. {
  2184. "id": {
  2185. "m_id": "{CDE2EF76-02A6-41C3-B67D-FA55AE41C6E2}"
  2186. },
  2187. "DynamicTypeOverride": 2,
  2188. "contracts": [
  2189. {
  2190. "$type": "SlotTypeContract"
  2191. }
  2192. ],
  2193. "slotName": "Source",
  2194. "DisplayDataType": {
  2195. "m_type": 4,
  2196. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2197. },
  2198. "Descriptor": {
  2199. "ConnectionType": 1,
  2200. "SlotType": 2
  2201. },
  2202. "DynamicGroup": {
  2203. "Value": 3089028177
  2204. },
  2205. "DataType": 1
  2206. },
  2207. {
  2208. "id": {
  2209. "m_id": "{38176EB6-CD29-48C3-9C82-BEF211791B49}"
  2210. },
  2211. "contracts": [
  2212. {
  2213. "$type": "SlotTypeContract"
  2214. }
  2215. ],
  2216. "slotName": "In",
  2217. "toolTip": "Signaled upon node entry",
  2218. "Descriptor": {
  2219. "ConnectionType": 1,
  2220. "SlotType": 1
  2221. }
  2222. },
  2223. {
  2224. "id": {
  2225. "m_id": "{3D4FA21C-CD0B-44C1-B67E-2046BA1A382E}"
  2226. },
  2227. "contracts": [
  2228. {
  2229. "$type": "SlotTypeContract"
  2230. }
  2231. ],
  2232. "slotName": "Break",
  2233. "toolTip": "Stops the iteration when signaled",
  2234. "Descriptor": {
  2235. "ConnectionType": 1,
  2236. "SlotType": 1
  2237. }
  2238. },
  2239. {
  2240. "id": {
  2241. "m_id": "{0AD7C12B-49D0-4ECC-B374-001976C3D6B9}"
  2242. },
  2243. "contracts": [
  2244. {
  2245. "$type": "SlotTypeContract"
  2246. }
  2247. ],
  2248. "slotName": "Each",
  2249. "toolTip": "Signalled after each element of the container",
  2250. "Descriptor": {
  2251. "ConnectionType": 2,
  2252. "SlotType": 1
  2253. }
  2254. },
  2255. {
  2256. "id": {
  2257. "m_id": "{6AD96C8D-AA8C-4348-AFA3-A02B259BE0B9}"
  2258. },
  2259. "contracts": [
  2260. {
  2261. "$type": "SlotTypeContract"
  2262. }
  2263. ],
  2264. "slotName": "Finished",
  2265. "toolTip": "The container has been fully iterated over",
  2266. "Descriptor": {
  2267. "ConnectionType": 2,
  2268. "SlotType": 1
  2269. }
  2270. },
  2271. {
  2272. "id": {
  2273. "m_id": "{1B84B362-566C-4C32-831B-1CE1ADEA341F}"
  2274. },
  2275. "contracts": [
  2276. {
  2277. "$type": "SlotTypeContract"
  2278. }
  2279. ],
  2280. "slotName": "EntityId",
  2281. "DisplayDataType": {
  2282. "m_type": 1
  2283. },
  2284. "Descriptor": {
  2285. "ConnectionType": 2,
  2286. "SlotType": 2
  2287. },
  2288. "DataType": 1
  2289. }
  2290. ],
  2291. "Datums": [
  2292. {
  2293. "isOverloadedStorage": false,
  2294. "scriptCanvasType": {
  2295. "m_type": 4,
  2296. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2297. },
  2298. "isNullPointer": false,
  2299. "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector<EntityId, allocator>",
  2300. "label": "Source"
  2301. }
  2302. ],
  2303. "m_sourceSlot": {
  2304. "m_id": "{CDE2EF76-02A6-41C3-B67D-FA55AE41C6E2}"
  2305. },
  2306. "m_previousTypeId": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}",
  2307. "m_propertySlots": [
  2308. {
  2309. "m_propertySlotId": {
  2310. "m_id": "{1B84B362-566C-4C32-831B-1CE1ADEA341F}"
  2311. },
  2312. "m_propertyType": {
  2313. "m_type": 1
  2314. },
  2315. "m_propertyName": "EntityId"
  2316. }
  2317. ]
  2318. }
  2319. }
  2320. },
  2321. {
  2322. "Id": {
  2323. "id": 218688502886100
  2324. },
  2325. "Name": "SC Node(SetVariable)",
  2326. "Components": {
  2327. "Component_[3514249353191322187]": {
  2328. "$type": "SetVariableNode",
  2329. "Id": 3514249353191322187,
  2330. "Slots": [
  2331. {
  2332. "id": {
  2333. "m_id": "{6B27D9B5-C7FD-4255-A52D-A61FEF56B7D9}"
  2334. },
  2335. "contracts": [
  2336. {
  2337. "$type": "SlotTypeContract"
  2338. }
  2339. ],
  2340. "slotName": "In",
  2341. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  2342. "Descriptor": {
  2343. "ConnectionType": 1,
  2344. "SlotType": 1
  2345. }
  2346. },
  2347. {
  2348. "id": {
  2349. "m_id": "{811B5693-FDA6-4DB4-9942-D8BA49D30424}"
  2350. },
  2351. "contracts": [
  2352. {
  2353. "$type": "SlotTypeContract"
  2354. }
  2355. ],
  2356. "slotName": "Out",
  2357. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  2358. "Descriptor": {
  2359. "ConnectionType": 2,
  2360. "SlotType": 1
  2361. }
  2362. },
  2363. {
  2364. "id": {
  2365. "m_id": "{79DC9D49-688C-4F07-A134-2A4FF29D1AAB}"
  2366. },
  2367. "contracts": [
  2368. {
  2369. "$type": "SlotTypeContract"
  2370. }
  2371. ],
  2372. "slotName": "Transform",
  2373. "Descriptor": {
  2374. "ConnectionType": 1,
  2375. "SlotType": 2
  2376. },
  2377. "DataType": 1
  2378. },
  2379. {
  2380. "id": {
  2381. "m_id": "{FC2B8CCC-5018-44DD-8F5B-A8072936F201}"
  2382. },
  2383. "contracts": [
  2384. {
  2385. "$type": "SlotTypeContract"
  2386. }
  2387. ],
  2388. "slotName": "Transform",
  2389. "DisplayDataType": {
  2390. "m_type": 7
  2391. },
  2392. "Descriptor": {
  2393. "ConnectionType": 2,
  2394. "SlotType": 2
  2395. },
  2396. "DataType": 1
  2397. },
  2398. {
  2399. "id": {
  2400. "m_id": "{44EB9108-BB69-4138-AAEB-BB0B8D2BF17B}"
  2401. },
  2402. "contracts": [
  2403. {
  2404. "$type": "SlotTypeContract"
  2405. }
  2406. ],
  2407. "slotName": "X Axis",
  2408. "DisplayDataType": {
  2409. "m_type": 8
  2410. },
  2411. "Descriptor": {
  2412. "ConnectionType": 2,
  2413. "SlotType": 2
  2414. },
  2415. "DataType": 1
  2416. },
  2417. {
  2418. "id": {
  2419. "m_id": "{3D0D66B6-D511-44F8-926A-DA4FAE18E3FB}"
  2420. },
  2421. "contracts": [
  2422. {
  2423. "$type": "SlotTypeContract"
  2424. }
  2425. ],
  2426. "slotName": "Y Axis",
  2427. "DisplayDataType": {
  2428. "m_type": 8
  2429. },
  2430. "Descriptor": {
  2431. "ConnectionType": 2,
  2432. "SlotType": 2
  2433. },
  2434. "DataType": 1
  2435. },
  2436. {
  2437. "id": {
  2438. "m_id": "{24155652-0EED-4ACD-9087-485ECA29CC15}"
  2439. },
  2440. "contracts": [
  2441. {
  2442. "$type": "SlotTypeContract"
  2443. }
  2444. ],
  2445. "slotName": "Z Axis",
  2446. "DisplayDataType": {
  2447. "m_type": 8
  2448. },
  2449. "Descriptor": {
  2450. "ConnectionType": 2,
  2451. "SlotType": 2
  2452. },
  2453. "DataType": 1
  2454. },
  2455. {
  2456. "id": {
  2457. "m_id": "{29B51952-665E-43DD-ABEC-3AEF76B786AE}"
  2458. },
  2459. "contracts": [
  2460. {
  2461. "$type": "SlotTypeContract"
  2462. }
  2463. ],
  2464. "slotName": "Translation",
  2465. "DisplayDataType": {
  2466. "m_type": 8
  2467. },
  2468. "Descriptor": {
  2469. "ConnectionType": 2,
  2470. "SlotType": 2
  2471. },
  2472. "DataType": 1
  2473. }
  2474. ],
  2475. "Datums": [
  2476. {
  2477. "isOverloadedStorage": false,
  2478. "scriptCanvasType": {
  2479. "m_type": 7
  2480. },
  2481. "isNullPointer": false,
  2482. "$type": "Transform",
  2483. "value": {
  2484. "Translation": [
  2485. 0.0,
  2486. 0.0,
  2487. 0.0
  2488. ],
  2489. "Rotation": [
  2490. 0.0,
  2491. 0.0,
  2492. 0.0,
  2493. 1.0
  2494. ],
  2495. "Scale": 1.0
  2496. },
  2497. "label": "Transform"
  2498. }
  2499. ],
  2500. "m_variableId": {
  2501. "m_id": "{01891BBF-BC8A-4CEE-BF6A-03FC241885A8}"
  2502. },
  2503. "m_variableDataInSlotId": {
  2504. "m_id": "{79DC9D49-688C-4F07-A134-2A4FF29D1AAB}"
  2505. },
  2506. "m_variableDataOutSlotId": {
  2507. "m_id": "{FC2B8CCC-5018-44DD-8F5B-A8072936F201}"
  2508. },
  2509. "m_propertyAccounts": [
  2510. {
  2511. "m_propertySlotId": {
  2512. "m_id": "{44EB9108-BB69-4138-AAEB-BB0B8D2BF17B}"
  2513. },
  2514. "m_propertyType": {
  2515. "m_type": 8
  2516. },
  2517. "m_propertyName": "basisX"
  2518. },
  2519. {
  2520. "m_propertySlotId": {
  2521. "m_id": "{3D0D66B6-D511-44F8-926A-DA4FAE18E3FB}"
  2522. },
  2523. "m_propertyType": {
  2524. "m_type": 8
  2525. },
  2526. "m_propertyName": "basisY"
  2527. },
  2528. {
  2529. "m_propertySlotId": {
  2530. "m_id": "{24155652-0EED-4ACD-9087-485ECA29CC15}"
  2531. },
  2532. "m_propertyType": {
  2533. "m_type": 8
  2534. },
  2535. "m_propertyName": "basisZ"
  2536. },
  2537. {
  2538. "m_propertySlotId": {
  2539. "m_id": "{29B51952-665E-43DD-ABEC-3AEF76B786AE}"
  2540. },
  2541. "m_propertyType": {
  2542. "m_type": 8
  2543. },
  2544. "m_propertyName": "translation"
  2545. }
  2546. ]
  2547. }
  2548. }
  2549. },
  2550. {
  2551. "Id": {
  2552. "id": 218611193474772
  2553. },
  2554. "Name": "SC-Node(SpawnNodeableNode)",
  2555. "Components": {
  2556. "Component_[3799371153588920356]": {
  2557. "$type": "SpawnNodeableNode",
  2558. "Id": 3799371153588920356,
  2559. "Slots": [
  2560. {
  2561. "id": {
  2562. "m_id": "{DDA6D6E4-F8BA-482E-AB7C-3F88FAA81E80}"
  2563. },
  2564. "contracts": [
  2565. {
  2566. "$type": "SlotTypeContract"
  2567. }
  2568. ],
  2569. "slotName": "Request Spawn",
  2570. "DisplayGroup": {
  2571. "Value": 929942742
  2572. },
  2573. "Descriptor": {
  2574. "ConnectionType": 1,
  2575. "SlotType": 1
  2576. }
  2577. },
  2578. {
  2579. "id": {
  2580. "m_id": "{A046BA5D-9380-47DF-B134-625BE6098995}"
  2581. },
  2582. "contracts": [
  2583. {
  2584. "$type": "SlotTypeContract"
  2585. }
  2586. ],
  2587. "slotName": "SpawnTicket",
  2588. "toolTip": "Ticket instance assosiated with spawnable asset.",
  2589. "DisplayGroup": {
  2590. "Value": 929942742
  2591. },
  2592. "Descriptor": {
  2593. "ConnectionType": 1,
  2594. "SlotType": 2
  2595. },
  2596. "DataType": 1
  2597. },
  2598. {
  2599. "id": {
  2600. "m_id": "{586AC3E2-1830-4259-A717-2AC35578588F}"
  2601. },
  2602. "contracts": [
  2603. {
  2604. "$type": "SlotTypeContract"
  2605. }
  2606. ],
  2607. "slotName": "ParentId",
  2608. "toolTip": "Optional parent to assign spawned container entity to.",
  2609. "DisplayGroup": {
  2610. "Value": 929942742
  2611. },
  2612. "Descriptor": {
  2613. "ConnectionType": 1,
  2614. "SlotType": 2
  2615. },
  2616. "DataType": 1
  2617. },
  2618. {
  2619. "id": {
  2620. "m_id": "{5527CA08-8C49-4EF7-9399-3B44788D3C0E}"
  2621. },
  2622. "contracts": [
  2623. {
  2624. "$type": "SlotTypeContract"
  2625. }
  2626. ],
  2627. "slotName": "Local Translation",
  2628. "toolTip": "Position to spawn.",
  2629. "DisplayGroup": {
  2630. "Value": 929942742
  2631. },
  2632. "Descriptor": {
  2633. "ConnectionType": 1,
  2634. "SlotType": 2
  2635. },
  2636. "DataType": 1
  2637. },
  2638. {
  2639. "id": {
  2640. "m_id": "{1C063A7B-B1B8-4607-9BF8-1EFC6EF93C0C}"
  2641. },
  2642. "contracts": [
  2643. {
  2644. "$type": "SlotTypeContract"
  2645. }
  2646. ],
  2647. "slotName": "Local Rotation",
  2648. "toolTip": "Rotation of spawn (in degrees).",
  2649. "DisplayGroup": {
  2650. "Value": 929942742
  2651. },
  2652. "Descriptor": {
  2653. "ConnectionType": 1,
  2654. "SlotType": 2
  2655. },
  2656. "DataType": 1
  2657. },
  2658. {
  2659. "id": {
  2660. "m_id": "{5AC7E1E1-BB11-422B-BD91-F386B63B60EE}"
  2661. },
  2662. "contracts": [
  2663. {
  2664. "$type": "SlotTypeContract"
  2665. }
  2666. ],
  2667. "slotName": "Local Scale",
  2668. "toolTip": "Scale of spawn.",
  2669. "DisplayGroup": {
  2670. "Value": 929942742
  2671. },
  2672. "Descriptor": {
  2673. "ConnectionType": 1,
  2674. "SlotType": 2
  2675. },
  2676. "DataType": 1
  2677. },
  2678. {
  2679. "id": {
  2680. "m_id": "{9A5728A1-07D5-4EBF-8EF5-101CF85FBD72}"
  2681. },
  2682. "contracts": [
  2683. {
  2684. "$type": "SlotTypeContract"
  2685. }
  2686. ],
  2687. "slotName": "Spawn Requested",
  2688. "DisplayGroup": {
  2689. "Value": 929942742
  2690. },
  2691. "Descriptor": {
  2692. "ConnectionType": 2,
  2693. "SlotType": 1
  2694. }
  2695. },
  2696. {
  2697. "id": {
  2698. "m_id": "{D8FDF94C-29E8-4026-B84A-2EBA9CAECBFB}"
  2699. },
  2700. "contracts": [
  2701. {
  2702. "$type": "SlotTypeContract"
  2703. }
  2704. ],
  2705. "slotName": "On Spawn Completed",
  2706. "toolTip": "Called when spawning entities is completed.",
  2707. "DisplayGroup": {
  2708. "Value": 3165055374
  2709. },
  2710. "Descriptor": {
  2711. "ConnectionType": 2,
  2712. "SlotType": 1
  2713. },
  2714. "IsLatent": true
  2715. },
  2716. {
  2717. "id": {
  2718. "m_id": "{8AB05127-519C-4D8A-9DD7-0AF6A08C3931}"
  2719. },
  2720. "contracts": [
  2721. {
  2722. "$type": "SlotTypeContract"
  2723. }
  2724. ],
  2725. "slotName": "SpawnTicketOut",
  2726. "toolTip": "Ticket instance of the spawn result.",
  2727. "DisplayDataType": {
  2728. "m_type": 4,
  2729. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  2730. },
  2731. "DisplayGroup": {
  2732. "Value": 3165055374
  2733. },
  2734. "Descriptor": {
  2735. "ConnectionType": 2,
  2736. "SlotType": 2
  2737. },
  2738. "DataType": 1
  2739. },
  2740. {
  2741. "id": {
  2742. "m_id": "{651E04F1-84BB-4B7F-A12A-BB9F1734A38E}"
  2743. },
  2744. "contracts": [
  2745. {
  2746. "$type": "SlotTypeContract"
  2747. }
  2748. ],
  2749. "slotName": "SpawnedEntitiesList",
  2750. "toolTip": "List of spawned entities sorted by hierarchy with the root being first.",
  2751. "DisplayDataType": {
  2752. "m_type": 4,
  2753. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2754. },
  2755. "DisplayGroup": {
  2756. "Value": 3165055374
  2757. },
  2758. "Descriptor": {
  2759. "ConnectionType": 2,
  2760. "SlotType": 2
  2761. },
  2762. "DataType": 1
  2763. }
  2764. ],
  2765. "Datums": [
  2766. {
  2767. "isOverloadedStorage": false,
  2768. "scriptCanvasType": {
  2769. "m_type": 4,
  2770. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  2771. },
  2772. "isNullPointer": false,
  2773. "$type": "AzFramework::EntitySpawnTicket",
  2774. "label": "SpawnTicket"
  2775. },
  2776. {
  2777. "isOverloadedStorage": false,
  2778. "scriptCanvasType": {
  2779. "m_type": 1
  2780. },
  2781. "isNullPointer": false,
  2782. "$type": "EntityId",
  2783. "value": {
  2784. "id": 4294967295
  2785. },
  2786. "label": "ParentId"
  2787. },
  2788. {
  2789. "isOverloadedStorage": false,
  2790. "scriptCanvasType": {
  2791. "m_type": 8
  2792. },
  2793. "isNullPointer": false,
  2794. "$type": "Vector3",
  2795. "value": [
  2796. 0.0,
  2797. 0.0,
  2798. 0.0
  2799. ],
  2800. "label": "Local Translation"
  2801. },
  2802. {
  2803. "isOverloadedStorage": false,
  2804. "scriptCanvasType": {
  2805. "m_type": 8
  2806. },
  2807. "isNullPointer": false,
  2808. "$type": "Vector3",
  2809. "value": [
  2810. 0.0,
  2811. 0.0,
  2812. 0.0
  2813. ],
  2814. "label": "Local Rotation"
  2815. },
  2816. {
  2817. "isOverloadedStorage": false,
  2818. "scriptCanvasType": {
  2819. "m_type": 3
  2820. },
  2821. "isNullPointer": false,
  2822. "$type": "double",
  2823. "value": 0.5,
  2824. "label": "Local Scale"
  2825. }
  2826. ],
  2827. "slotExecutionMap": {
  2828. "ins": [
  2829. {
  2830. "_slotId": {
  2831. "m_id": "{DDA6D6E4-F8BA-482E-AB7C-3F88FAA81E80}"
  2832. },
  2833. "_inputs": [
  2834. {
  2835. "_slotId": {
  2836. "m_id": "{A046BA5D-9380-47DF-B134-625BE6098995}"
  2837. }
  2838. },
  2839. {
  2840. "_slotId": {
  2841. "m_id": "{586AC3E2-1830-4259-A717-2AC35578588F}"
  2842. }
  2843. },
  2844. {
  2845. "_slotId": {
  2846. "m_id": "{5527CA08-8C49-4EF7-9399-3B44788D3C0E}"
  2847. }
  2848. },
  2849. {
  2850. "_slotId": {
  2851. "m_id": "{1C063A7B-B1B8-4607-9BF8-1EFC6EF93C0C}"
  2852. }
  2853. },
  2854. {
  2855. "_slotId": {
  2856. "m_id": "{5AC7E1E1-BB11-422B-BD91-F386B63B60EE}"
  2857. }
  2858. }
  2859. ],
  2860. "_outs": [
  2861. {
  2862. "_slotId": {
  2863. "m_id": "{9A5728A1-07D5-4EBF-8EF5-101CF85FBD72}"
  2864. },
  2865. "_name": "Spawn Requested"
  2866. }
  2867. ]
  2868. }
  2869. ],
  2870. "latents": [
  2871. {
  2872. "_slotId": {
  2873. "m_id": "{D8FDF94C-29E8-4026-B84A-2EBA9CAECBFB}"
  2874. },
  2875. "_name": "On Spawn Completed",
  2876. "_outputs": [
  2877. {
  2878. "_slotId": {
  2879. "m_id": "{8AB05127-519C-4D8A-9DD7-0AF6A08C3931}"
  2880. }
  2881. },
  2882. {
  2883. "_slotId": {
  2884. "m_id": "{651E04F1-84BB-4B7F-A12A-BB9F1734A38E}"
  2885. }
  2886. }
  2887. ]
  2888. }
  2889. ]
  2890. }
  2891. }
  2892. }
  2893. },
  2894. {
  2895. "Id": {
  2896. "id": 218692797853396
  2897. },
  2898. "Name": "SC-Node(ScriptCanvas_Vector3Functions_GetElement)",
  2899. "Components": {
  2900. "Component_[6051609591350310208]": {
  2901. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2902. "Id": 6051609591350310208,
  2903. "Slots": [
  2904. {
  2905. "id": {
  2906. "m_id": "{D864BA78-389D-450D-B360-AB7FD4F22CC6}"
  2907. },
  2908. "contracts": [
  2909. {
  2910. "$type": "SlotTypeContract"
  2911. }
  2912. ],
  2913. "slotName": "Source",
  2914. "Descriptor": {
  2915. "ConnectionType": 1,
  2916. "SlotType": 2
  2917. },
  2918. "DataType": 1
  2919. },
  2920. {
  2921. "id": {
  2922. "m_id": "{C00FE5F4-6527-43BE-B22A-C72AA85741D3}"
  2923. },
  2924. "contracts": [
  2925. {
  2926. "$type": "SlotTypeContract"
  2927. }
  2928. ],
  2929. "slotName": "Index",
  2930. "Descriptor": {
  2931. "ConnectionType": 1,
  2932. "SlotType": 2
  2933. },
  2934. "DataType": 1
  2935. },
  2936. {
  2937. "id": {
  2938. "m_id": "{93EA28CE-1AD5-4210-B770-D99C14A279F0}"
  2939. },
  2940. "contracts": [
  2941. {
  2942. "$type": "SlotTypeContract"
  2943. }
  2944. ],
  2945. "slotName": "In",
  2946. "Descriptor": {
  2947. "ConnectionType": 1,
  2948. "SlotType": 1
  2949. }
  2950. },
  2951. {
  2952. "id": {
  2953. "m_id": "{FC699BBA-9B13-474B-B6F5-F3E4C2F2D24E}"
  2954. },
  2955. "contracts": [
  2956. {
  2957. "$type": "SlotTypeContract"
  2958. }
  2959. ],
  2960. "slotName": "Out",
  2961. "Descriptor": {
  2962. "ConnectionType": 2,
  2963. "SlotType": 1
  2964. }
  2965. },
  2966. {
  2967. "id": {
  2968. "m_id": "{D343A167-828D-495A-9552-AC16560667EE}"
  2969. },
  2970. "contracts": [
  2971. {
  2972. "$type": "SlotTypeContract"
  2973. }
  2974. ],
  2975. "slotName": "Number",
  2976. "DisplayDataType": {
  2977. "m_type": 3
  2978. },
  2979. "Descriptor": {
  2980. "ConnectionType": 2,
  2981. "SlotType": 2
  2982. },
  2983. "DataType": 1
  2984. }
  2985. ],
  2986. "Datums": [
  2987. {
  2988. "isOverloadedStorage": false,
  2989. "scriptCanvasType": {
  2990. "m_type": 8
  2991. },
  2992. "isNullPointer": false,
  2993. "$type": "Vector3",
  2994. "value": [
  2995. 0.0,
  2996. 0.0,
  2997. 0.0
  2998. ],
  2999. "label": "Source"
  3000. },
  3001. {
  3002. "isOverloadedStorage": false,
  3003. "scriptCanvasType": {
  3004. "m_type": 3
  3005. },
  3006. "isNullPointer": false,
  3007. "$type": "double",
  3008. "value": 0.0,
  3009. "label": "Index"
  3010. }
  3011. ],
  3012. "NodeDisabledFlag": 1,
  3013. "methodType": 1,
  3014. "methodName": "ScriptCanvas_Vector3Functions_GetElement",
  3015. "resultSlotIDs": [
  3016. {}
  3017. ],
  3018. "inputSlots": [
  3019. {
  3020. "m_id": "{D864BA78-389D-450D-B360-AB7FD4F22CC6}"
  3021. },
  3022. {
  3023. "m_id": "{C00FE5F4-6527-43BE-B22A-C72AA85741D3}"
  3024. }
  3025. ],
  3026. "prettyClassName": "ScriptCanvas_Vector3Functions_GetElement"
  3027. }
  3028. }
  3029. },
  3030. {
  3031. "Id": {
  3032. "id": 218615488442068
  3033. },
  3034. "Name": "SC-Node(ScriptCanvas_Vector3Functions_GetElement)",
  3035. "Components": {
  3036. "Component_[6051609591350310208]": {
  3037. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3038. "Id": 6051609591350310208,
  3039. "Slots": [
  3040. {
  3041. "id": {
  3042. "m_id": "{D864BA78-389D-450D-B360-AB7FD4F22CC6}"
  3043. },
  3044. "contracts": [
  3045. {
  3046. "$type": "SlotTypeContract"
  3047. }
  3048. ],
  3049. "slotName": "Source",
  3050. "Descriptor": {
  3051. "ConnectionType": 1,
  3052. "SlotType": 2
  3053. },
  3054. "DataType": 1
  3055. },
  3056. {
  3057. "id": {
  3058. "m_id": "{C00FE5F4-6527-43BE-B22A-C72AA85741D3}"
  3059. },
  3060. "contracts": [
  3061. {
  3062. "$type": "SlotTypeContract"
  3063. }
  3064. ],
  3065. "slotName": "Index",
  3066. "Descriptor": {
  3067. "ConnectionType": 1,
  3068. "SlotType": 2
  3069. },
  3070. "DataType": 1
  3071. },
  3072. {
  3073. "id": {
  3074. "m_id": "{93EA28CE-1AD5-4210-B770-D99C14A279F0}"
  3075. },
  3076. "contracts": [
  3077. {
  3078. "$type": "SlotTypeContract"
  3079. }
  3080. ],
  3081. "slotName": "In",
  3082. "Descriptor": {
  3083. "ConnectionType": 1,
  3084. "SlotType": 1
  3085. }
  3086. },
  3087. {
  3088. "id": {
  3089. "m_id": "{FC699BBA-9B13-474B-B6F5-F3E4C2F2D24E}"
  3090. },
  3091. "contracts": [
  3092. {
  3093. "$type": "SlotTypeContract"
  3094. }
  3095. ],
  3096. "slotName": "Out",
  3097. "Descriptor": {
  3098. "ConnectionType": 2,
  3099. "SlotType": 1
  3100. }
  3101. },
  3102. {
  3103. "id": {
  3104. "m_id": "{D343A167-828D-495A-9552-AC16560667EE}"
  3105. },
  3106. "contracts": [
  3107. {
  3108. "$type": "SlotTypeContract"
  3109. }
  3110. ],
  3111. "slotName": "Number",
  3112. "DisplayDataType": {
  3113. "m_type": 3
  3114. },
  3115. "Descriptor": {
  3116. "ConnectionType": 2,
  3117. "SlotType": 2
  3118. },
  3119. "DataType": 1
  3120. }
  3121. ],
  3122. "Datums": [
  3123. {
  3124. "isOverloadedStorage": false,
  3125. "scriptCanvasType": {
  3126. "m_type": 8
  3127. },
  3128. "isNullPointer": false,
  3129. "$type": "Vector3",
  3130. "value": [
  3131. 0.0,
  3132. 0.0,
  3133. 0.0
  3134. ],
  3135. "label": "Source"
  3136. },
  3137. {
  3138. "isOverloadedStorage": false,
  3139. "scriptCanvasType": {
  3140. "m_type": 3
  3141. },
  3142. "isNullPointer": false,
  3143. "$type": "double",
  3144. "value": 1.0,
  3145. "label": "Index"
  3146. }
  3147. ],
  3148. "NodeDisabledFlag": 1,
  3149. "methodType": 1,
  3150. "methodName": "ScriptCanvas_Vector3Functions_GetElement",
  3151. "resultSlotIDs": [
  3152. {}
  3153. ],
  3154. "inputSlots": [
  3155. {
  3156. "m_id": "{D864BA78-389D-450D-B360-AB7FD4F22CC6}"
  3157. },
  3158. {
  3159. "m_id": "{C00FE5F4-6527-43BE-B22A-C72AA85741D3}"
  3160. }
  3161. ],
  3162. "prettyClassName": "ScriptCanvas_Vector3Functions_GetElement"
  3163. }
  3164. }
  3165. },
  3166. {
  3167. "Id": {
  3168. "id": 218619783409364
  3169. },
  3170. "Name": "SC-Node(ScriptCanvas_Vector3Functions_GetElement)",
  3171. "Components": {
  3172. "Component_[6051609591350310208]": {
  3173. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3174. "Id": 6051609591350310208,
  3175. "Slots": [
  3176. {
  3177. "id": {
  3178. "m_id": "{D864BA78-389D-450D-B360-AB7FD4F22CC6}"
  3179. },
  3180. "contracts": [
  3181. {
  3182. "$type": "SlotTypeContract"
  3183. }
  3184. ],
  3185. "slotName": "Source",
  3186. "Descriptor": {
  3187. "ConnectionType": 1,
  3188. "SlotType": 2
  3189. },
  3190. "DataType": 1
  3191. },
  3192. {
  3193. "id": {
  3194. "m_id": "{C00FE5F4-6527-43BE-B22A-C72AA85741D3}"
  3195. },
  3196. "contracts": [
  3197. {
  3198. "$type": "SlotTypeContract"
  3199. }
  3200. ],
  3201. "slotName": "Index",
  3202. "Descriptor": {
  3203. "ConnectionType": 1,
  3204. "SlotType": 2
  3205. },
  3206. "DataType": 1
  3207. },
  3208. {
  3209. "id": {
  3210. "m_id": "{93EA28CE-1AD5-4210-B770-D99C14A279F0}"
  3211. },
  3212. "contracts": [
  3213. {
  3214. "$type": "SlotTypeContract"
  3215. }
  3216. ],
  3217. "slotName": "In",
  3218. "Descriptor": {
  3219. "ConnectionType": 1,
  3220. "SlotType": 1
  3221. }
  3222. },
  3223. {
  3224. "id": {
  3225. "m_id": "{FC699BBA-9B13-474B-B6F5-F3E4C2F2D24E}"
  3226. },
  3227. "contracts": [
  3228. {
  3229. "$type": "SlotTypeContract"
  3230. }
  3231. ],
  3232. "slotName": "Out",
  3233. "Descriptor": {
  3234. "ConnectionType": 2,
  3235. "SlotType": 1
  3236. }
  3237. },
  3238. {
  3239. "id": {
  3240. "m_id": "{D343A167-828D-495A-9552-AC16560667EE}"
  3241. },
  3242. "contracts": [
  3243. {
  3244. "$type": "SlotTypeContract"
  3245. }
  3246. ],
  3247. "slotName": "Number",
  3248. "DisplayDataType": {
  3249. "m_type": 3
  3250. },
  3251. "Descriptor": {
  3252. "ConnectionType": 2,
  3253. "SlotType": 2
  3254. },
  3255. "DataType": 1
  3256. }
  3257. ],
  3258. "Datums": [
  3259. {
  3260. "isOverloadedStorage": false,
  3261. "scriptCanvasType": {
  3262. "m_type": 8
  3263. },
  3264. "isNullPointer": false,
  3265. "$type": "Vector3",
  3266. "value": [
  3267. 0.0,
  3268. 0.0,
  3269. 0.0
  3270. ],
  3271. "label": "Source"
  3272. },
  3273. {
  3274. "isOverloadedStorage": false,
  3275. "scriptCanvasType": {
  3276. "m_type": 3
  3277. },
  3278. "isNullPointer": false,
  3279. "$type": "double",
  3280. "value": 2.0,
  3281. "label": "Index"
  3282. }
  3283. ],
  3284. "NodeDisabledFlag": 1,
  3285. "methodType": 1,
  3286. "methodName": "ScriptCanvas_Vector3Functions_GetElement",
  3287. "resultSlotIDs": [
  3288. {}
  3289. ],
  3290. "inputSlots": [
  3291. {
  3292. "m_id": "{D864BA78-389D-450D-B360-AB7FD4F22CC6}"
  3293. },
  3294. {
  3295. "m_id": "{C00FE5F4-6527-43BE-B22A-C72AA85741D3}"
  3296. }
  3297. ],
  3298. "prettyClassName": "ScriptCanvas_Vector3Functions_GetElement"
  3299. }
  3300. }
  3301. },
  3302. {
  3303. "Id": {
  3304. "id": 218624078376660
  3305. },
  3306. "Name": "SC Node(GetVariable)",
  3307. "Components": {
  3308. "Component_[7083210924136555028]": {
  3309. "$type": "GetVariableNode",
  3310. "Id": 7083210924136555028,
  3311. "Slots": [
  3312. {
  3313. "id": {
  3314. "m_id": "{6D61655D-E8FA-473D-A3A1-96DD4359C91A}"
  3315. },
  3316. "contracts": [
  3317. {
  3318. "$type": "SlotTypeContract"
  3319. }
  3320. ],
  3321. "slotName": "In",
  3322. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  3323. "Descriptor": {
  3324. "ConnectionType": 1,
  3325. "SlotType": 1
  3326. }
  3327. },
  3328. {
  3329. "id": {
  3330. "m_id": "{D10C0457-5F68-4A52-BAA6-98BA5C466DF5}"
  3331. },
  3332. "contracts": [
  3333. {
  3334. "$type": "SlotTypeContract"
  3335. }
  3336. ],
  3337. "slotName": "Out",
  3338. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  3339. "Descriptor": {
  3340. "ConnectionType": 2,
  3341. "SlotType": 1
  3342. }
  3343. },
  3344. {
  3345. "id": {
  3346. "m_id": "{5CAEA4DC-F411-4E99-8FF7-6DA24D5344CA}"
  3347. },
  3348. "contracts": [
  3349. {
  3350. "$type": "SlotTypeContract"
  3351. }
  3352. ],
  3353. "slotName": "SpawnableScriptAssetRef",
  3354. "DisplayDataType": {
  3355. "m_type": 4,
  3356. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  3357. },
  3358. "Descriptor": {
  3359. "ConnectionType": 2,
  3360. "SlotType": 2
  3361. },
  3362. "DataType": 1
  3363. }
  3364. ],
  3365. "m_variableId": {
  3366. "m_id": "{88D42D1C-E4E6-4370-AA0C-FBCDB448535F}"
  3367. },
  3368. "m_variableDataOutSlotId": {
  3369. "m_id": "{5CAEA4DC-F411-4E99-8FF7-6DA24D5344CA}"
  3370. }
  3371. }
  3372. }
  3373. },
  3374. {
  3375. "Id": {
  3376. "id": 218658438115028
  3377. },
  3378. "Name": "SC-Node(SetLocalUniformScale)",
  3379. "Components": {
  3380. "Component_[8597450634735046906]": {
  3381. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3382. "Id": 8597450634735046906,
  3383. "Slots": [
  3384. {
  3385. "id": {
  3386. "m_id": "{E52EA358-64BD-4DFE-BC01-2C2E1E997AAA}"
  3387. },
  3388. "contracts": [
  3389. {
  3390. "$type": "SlotTypeContract"
  3391. }
  3392. ],
  3393. "slotName": "EntityId: 0",
  3394. "Descriptor": {
  3395. "ConnectionType": 1,
  3396. "SlotType": 2
  3397. },
  3398. "DataType": 1
  3399. },
  3400. {
  3401. "id": {
  3402. "m_id": "{44CCEF0F-69B9-4234-B845-D972EFDBB893}"
  3403. },
  3404. "contracts": [
  3405. {
  3406. "$type": "SlotTypeContract"
  3407. }
  3408. ],
  3409. "slotName": "Number: 1",
  3410. "Descriptor": {
  3411. "ConnectionType": 1,
  3412. "SlotType": 2
  3413. },
  3414. "DataType": 1
  3415. },
  3416. {
  3417. "id": {
  3418. "m_id": "{CAF2F609-845F-42A3-B0C1-DC15C1FDDD04}"
  3419. },
  3420. "contracts": [
  3421. {
  3422. "$type": "SlotTypeContract"
  3423. }
  3424. ],
  3425. "slotName": "In",
  3426. "Descriptor": {
  3427. "ConnectionType": 1,
  3428. "SlotType": 1
  3429. }
  3430. },
  3431. {
  3432. "id": {
  3433. "m_id": "{E92F68C3-BE6A-4BA2-A3CB-62E88B19AB5F}"
  3434. },
  3435. "contracts": [
  3436. {
  3437. "$type": "SlotTypeContract"
  3438. }
  3439. ],
  3440. "slotName": "Out",
  3441. "Descriptor": {
  3442. "ConnectionType": 2,
  3443. "SlotType": 1
  3444. }
  3445. }
  3446. ],
  3447. "Datums": [
  3448. {
  3449. "isOverloadedStorage": false,
  3450. "scriptCanvasType": {
  3451. "m_type": 1
  3452. },
  3453. "isNullPointer": false,
  3454. "$type": "EntityId",
  3455. "value": {
  3456. "id": 2901262558
  3457. },
  3458. "label": "Source"
  3459. },
  3460. {
  3461. "isOverloadedStorage": false,
  3462. "scriptCanvasType": {
  3463. "m_type": 3
  3464. },
  3465. "isNullPointer": false,
  3466. "$type": "double",
  3467. "value": 0.0,
  3468. "label": "Local Uniform Scale"
  3469. }
  3470. ],
  3471. "methodType": 0,
  3472. "methodName": "SetLocalUniformScale",
  3473. "className": "TransformBus",
  3474. "resultSlotIDs": [
  3475. {}
  3476. ],
  3477. "inputSlots": [
  3478. {
  3479. "m_id": "{E52EA358-64BD-4DFE-BC01-2C2E1E997AAA}"
  3480. },
  3481. {
  3482. "m_id": "{44CCEF0F-69B9-4234-B845-D972EFDBB893}"
  3483. }
  3484. ],
  3485. "prettyClassName": "TransformBus"
  3486. }
  3487. }
  3488. }
  3489. ],
  3490. "m_connections": [
  3491. {
  3492. "Id": {
  3493. "id": 218697092820692
  3494. },
  3495. "Name": "srcEndpoint=(Get Variable: SpawnableScriptAssetRef), destEndpoint=(CreateSpawnTicket: Prefab)",
  3496. "Components": {
  3497. "Component_[3770458529077881595]": {
  3498. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3499. "Id": 3770458529077881595,
  3500. "sourceEndpoint": {
  3501. "nodeId": {
  3502. "id": 218624078376660
  3503. },
  3504. "slotId": {
  3505. "m_id": "{5CAEA4DC-F411-4E99-8FF7-6DA24D5344CA}"
  3506. }
  3507. },
  3508. "targetEndpoint": {
  3509. "nodeId": {
  3510. "id": 218628373343956
  3511. },
  3512. "slotId": {
  3513. "m_id": "{2EE23CD3-78E3-4B4C-9C9F-C7C42FA80ACD}"
  3514. }
  3515. }
  3516. }
  3517. }
  3518. },
  3519. {
  3520. "Id": {
  3521. "id": 218701387787988
  3522. },
  3523. "Name": "srcEndpoint=(CreateSpawnTicket: SpawnTicket), destEndpoint=(Spawn: SpawnTicket)",
  3524. "Components": {
  3525. "Component_[10342745558827260613]": {
  3526. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3527. "Id": 10342745558827260613,
  3528. "sourceEndpoint": {
  3529. "nodeId": {
  3530. "id": 218628373343956
  3531. },
  3532. "slotId": {
  3533. "m_id": "{534519E0-574D-494E-B03E-ECC05923D7B9}"
  3534. }
  3535. },
  3536. "targetEndpoint": {
  3537. "nodeId": {
  3538. "id": 218611193474772
  3539. },
  3540. "slotId": {
  3541. "m_id": "{A046BA5D-9380-47DF-B134-625BE6098995}"
  3542. }
  3543. }
  3544. }
  3545. }
  3546. },
  3547. {
  3548. "Id": {
  3549. "id": 218705682755284
  3550. },
  3551. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(CreateSpawnTicket: Create Ticket)",
  3552. "Components": {
  3553. "Component_[7770503646978337830]": {
  3554. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3555. "Id": 7770503646978337830,
  3556. "sourceEndpoint": {
  3557. "nodeId": {
  3558. "id": 218624078376660
  3559. },
  3560. "slotId": {
  3561. "m_id": "{D10C0457-5F68-4A52-BAA6-98BA5C466DF5}"
  3562. }
  3563. },
  3564. "targetEndpoint": {
  3565. "nodeId": {
  3566. "id": 218628373343956
  3567. },
  3568. "slotId": {
  3569. "m_id": "{8B1A9BDE-4523-42B6-A1F1-C7CD436AE1CA}"
  3570. }
  3571. }
  3572. }
  3573. }
  3574. },
  3575. {
  3576. "Id": {
  3577. "id": 218709977722580
  3578. },
  3579. "Name": "srcEndpoint=(Spawn: On Spawn Completed), destEndpoint=(Get Variable: In)",
  3580. "Components": {
  3581. "Component_[14165924154469784517]": {
  3582. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3583. "Id": 14165924154469784517,
  3584. "sourceEndpoint": {
  3585. "nodeId": {
  3586. "id": 218611193474772
  3587. },
  3588. "slotId": {
  3589. "m_id": "{D8FDF94C-29E8-4026-B84A-2EBA9CAECBFB}"
  3590. }
  3591. },
  3592. "targetEndpoint": {
  3593. "nodeId": {
  3594. "id": 218645553213140
  3595. },
  3596. "slotId": {
  3597. "m_id": "{D523CA22-4ECF-4F7E-A78F-EA69784B77FE}"
  3598. }
  3599. }
  3600. }
  3601. }
  3602. },
  3603. {
  3604. "Id": {
  3605. "id": 218714272689876
  3606. },
  3607. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Add Element at End: In)",
  3608. "Components": {
  3609. "Component_[7730225972882820598]": {
  3610. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3611. "Id": 7730225972882820598,
  3612. "sourceEndpoint": {
  3613. "nodeId": {
  3614. "id": 218645553213140
  3615. },
  3616. "slotId": {
  3617. "m_id": "{E87E48C6-A729-4251-9CC9-7C3A245614F4}"
  3618. }
  3619. },
  3620. "targetEndpoint": {
  3621. "nodeId": {
  3622. "id": 218662733082324
  3623. },
  3624. "slotId": {
  3625. "m_id": "{C6D2C92A-985B-43E6-8B5A-C79652D0403D}"
  3626. }
  3627. }
  3628. }
  3629. }
  3630. },
  3631. {
  3632. "Id": {
  3633. "id": 218718567657172
  3634. },
  3635. "Name": "srcEndpoint=(Get Variable: Array<EntitySpawnTicket>), destEndpoint=(Add Element at End: Container)",
  3636. "Components": {
  3637. "Component_[11404726999243940786]": {
  3638. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3639. "Id": 11404726999243940786,
  3640. "sourceEndpoint": {
  3641. "nodeId": {
  3642. "id": 218645553213140
  3643. },
  3644. "slotId": {
  3645. "m_id": "{2E067496-E3DD-4DD6-8666-7F7F02047C0E}"
  3646. }
  3647. },
  3648. "targetEndpoint": {
  3649. "nodeId": {
  3650. "id": 218662733082324
  3651. },
  3652. "slotId": {
  3653. "m_id": "{726F4B20-500C-4620-9F9B-4D6AC57D4617}"
  3654. }
  3655. }
  3656. }
  3657. }
  3658. },
  3659. {
  3660. "Id": {
  3661. "id": 218722862624468
  3662. },
  3663. "Name": "srcEndpoint=(Spawn: SpawnTicketOut), destEndpoint=(Add Element at End: Value)",
  3664. "Components": {
  3665. "Component_[11745245566460909564]": {
  3666. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3667. "Id": 11745245566460909564,
  3668. "sourceEndpoint": {
  3669. "nodeId": {
  3670. "id": 218611193474772
  3671. },
  3672. "slotId": {
  3673. "m_id": "{8AB05127-519C-4D8A-9DD7-0AF6A08C3931}"
  3674. }
  3675. },
  3676. "targetEndpoint": {
  3677. "nodeId": {
  3678. "id": 218662733082324
  3679. },
  3680. "slotId": {
  3681. "m_id": "{3C9235A5-E299-4ADE-9499-E40AD19FFBAE}"
  3682. }
  3683. }
  3684. }
  3685. }
  3686. },
  3687. {
  3688. "Id": {
  3689. "id": 218727157591764
  3690. },
  3691. "Name": "srcEndpoint=(Spawn: Spawn Requested), destEndpoint=(ScriptCanvas_Vector3Functions_GetElement: In)",
  3692. "Components": {
  3693. "Component_[4716663803103259972]": {
  3694. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3695. "Id": 4716663803103259972,
  3696. "sourceEndpoint": {
  3697. "nodeId": {
  3698. "id": 218611193474772
  3699. },
  3700. "slotId": {
  3701. "m_id": "{9A5728A1-07D5-4EBF-8EF5-101CF85FBD72}"
  3702. }
  3703. },
  3704. "targetEndpoint": {
  3705. "nodeId": {
  3706. "id": 218692797853396
  3707. },
  3708. "slotId": {
  3709. "m_id": "{93EA28CE-1AD5-4210-B770-D99C14A279F0}"
  3710. }
  3711. }
  3712. }
  3713. }
  3714. },
  3715. {
  3716. "Id": {
  3717. "id": 218731452559060
  3718. },
  3719. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_GetElement: Out), destEndpoint=(ScriptCanvas_Vector3Functions_GetElement: In)",
  3720. "Components": {
  3721. "Component_[18185691484738494064]": {
  3722. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3723. "Id": 18185691484738494064,
  3724. "sourceEndpoint": {
  3725. "nodeId": {
  3726. "id": 218692797853396
  3727. },
  3728. "slotId": {
  3729. "m_id": "{FC699BBA-9B13-474B-B6F5-F3E4C2F2D24E}"
  3730. }
  3731. },
  3732. "targetEndpoint": {
  3733. "nodeId": {
  3734. "id": 218615488442068
  3735. },
  3736. "slotId": {
  3737. "m_id": "{93EA28CE-1AD5-4210-B770-D99C14A279F0}"
  3738. }
  3739. }
  3740. }
  3741. }
  3742. },
  3743. {
  3744. "Id": {
  3745. "id": 218735747526356
  3746. },
  3747. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_GetElement: Out), destEndpoint=(ScriptCanvas_Vector3Functions_GetElement: In)",
  3748. "Components": {
  3749. "Component_[12603396830737988166]": {
  3750. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3751. "Id": 12603396830737988166,
  3752. "sourceEndpoint": {
  3753. "nodeId": {
  3754. "id": 218615488442068
  3755. },
  3756. "slotId": {
  3757. "m_id": "{FC699BBA-9B13-474B-B6F5-F3E4C2F2D24E}"
  3758. }
  3759. },
  3760. "targetEndpoint": {
  3761. "nodeId": {
  3762. "id": 218619783409364
  3763. },
  3764. "slotId": {
  3765. "m_id": "{93EA28CE-1AD5-4210-B770-D99C14A279F0}"
  3766. }
  3767. }
  3768. }
  3769. }
  3770. },
  3771. {
  3772. "Id": {
  3773. "id": 218740042493652
  3774. },
  3775. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_GetElement: Out), destEndpoint=(Print: In)",
  3776. "Components": {
  3777. "Component_[7839907362039448645]": {
  3778. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3779. "Id": 7839907362039448645,
  3780. "sourceEndpoint": {
  3781. "nodeId": {
  3782. "id": 218619783409364
  3783. },
  3784. "slotId": {
  3785. "m_id": "{FC699BBA-9B13-474B-B6F5-F3E4C2F2D24E}"
  3786. }
  3787. },
  3788. "targetEndpoint": {
  3789. "nodeId": {
  3790. "id": 218649848180436
  3791. },
  3792. "slotId": {
  3793. "m_id": "{6A21DA70-70CD-4F68-A7E6-DA4ABC25F1BF}"
  3794. }
  3795. }
  3796. }
  3797. }
  3798. },
  3799. {
  3800. "Id": {
  3801. "id": 218744337460948
  3802. },
  3803. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_GetElement: Number), destEndpoint=(Print: Value)",
  3804. "Components": {
  3805. "Component_[10906148820744806029]": {
  3806. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3807. "Id": 10906148820744806029,
  3808. "sourceEndpoint": {
  3809. "nodeId": {
  3810. "id": 218692797853396
  3811. },
  3812. "slotId": {
  3813. "m_id": "{D343A167-828D-495A-9552-AC16560667EE}"
  3814. }
  3815. },
  3816. "targetEndpoint": {
  3817. "nodeId": {
  3818. "id": 218649848180436
  3819. },
  3820. "slotId": {
  3821. "m_id": "{42D6795E-FB52-438A-99CE-5EB20AE79D7B}"
  3822. }
  3823. }
  3824. }
  3825. }
  3826. },
  3827. {
  3828. "Id": {
  3829. "id": 218748632428244
  3830. },
  3831. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_GetElement: Number), destEndpoint=(Print: Value_1)",
  3832. "Components": {
  3833. "Component_[18402817966721748209]": {
  3834. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3835. "Id": 18402817966721748209,
  3836. "sourceEndpoint": {
  3837. "nodeId": {
  3838. "id": 218615488442068
  3839. },
  3840. "slotId": {
  3841. "m_id": "{D343A167-828D-495A-9552-AC16560667EE}"
  3842. }
  3843. },
  3844. "targetEndpoint": {
  3845. "nodeId": {
  3846. "id": 218649848180436
  3847. },
  3848. "slotId": {
  3849. "m_id": "{AFA74E1C-EFD2-48DB-B151-11E59F94F194}"
  3850. }
  3851. }
  3852. }
  3853. }
  3854. },
  3855. {
  3856. "Id": {
  3857. "id": 218752927395540
  3858. },
  3859. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_GetElement: Number), destEndpoint=(Print: Value_2)",
  3860. "Components": {
  3861. "Component_[16573671965464858268]": {
  3862. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3863. "Id": 16573671965464858268,
  3864. "sourceEndpoint": {
  3865. "nodeId": {
  3866. "id": 218619783409364
  3867. },
  3868. "slotId": {
  3869. "m_id": "{D343A167-828D-495A-9552-AC16560667EE}"
  3870. }
  3871. },
  3872. "targetEndpoint": {
  3873. "nodeId": {
  3874. "id": 218649848180436
  3875. },
  3876. "slotId": {
  3877. "m_id": "{75F205C4-AB80-47F3-9EE5-3D6FD3708DAF}"
  3878. }
  3879. }
  3880. }
  3881. }
  3882. },
  3883. {
  3884. "Id": {
  3885. "id": 218757222362836
  3886. },
  3887. "Name": "srcEndpoint=(Spawn: SpawnedEntitiesList), destEndpoint=(For Each: Source)",
  3888. "Components": {
  3889. "Component_[6913422368880867624]": {
  3890. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3891. "Id": 6913422368880867624,
  3892. "sourceEndpoint": {
  3893. "nodeId": {
  3894. "id": 218611193474772
  3895. },
  3896. "slotId": {
  3897. "m_id": "{651E04F1-84BB-4B7F-A12A-BB9F1734A38E}"
  3898. }
  3899. },
  3900. "targetEndpoint": {
  3901. "nodeId": {
  3902. "id": 218684207918804
  3903. },
  3904. "slotId": {
  3905. "m_id": "{CDE2EF76-02A6-41C3-B67D-FA55AE41C6E2}"
  3906. }
  3907. }
  3908. }
  3909. }
  3910. },
  3911. {
  3912. "Id": {
  3913. "id": 218761517330132
  3914. },
  3915. "Name": "srcEndpoint=(Add Element at End: Out), destEndpoint=(For Each: In)",
  3916. "Components": {
  3917. "Component_[6167789176498174580]": {
  3918. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3919. "Id": 6167789176498174580,
  3920. "sourceEndpoint": {
  3921. "nodeId": {
  3922. "id": 218662733082324
  3923. },
  3924. "slotId": {
  3925. "m_id": "{1B3593F3-564F-4B5B-BA67-C823506C3960}"
  3926. }
  3927. },
  3928. "targetEndpoint": {
  3929. "nodeId": {
  3930. "id": 218684207918804
  3931. },
  3932. "slotId": {
  3933. "m_id": "{38176EB6-CD29-48C3-9C82-BEF211791B49}"
  3934. }
  3935. }
  3936. }
  3937. }
  3938. },
  3939. {
  3940. "Id": {
  3941. "id": 218765812297428
  3942. },
  3943. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(IfEntityMultiplayerRole: In)",
  3944. "Components": {
  3945. "Component_[16369856159803265139]": {
  3946. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3947. "Id": 16369856159803265139,
  3948. "sourceEndpoint": {
  3949. "nodeId": {
  3950. "id": 218667028049620
  3951. },
  3952. "slotId": {
  3953. "m_id": "{44EEF056-C32A-4883-9B26-94EC6243E200}"
  3954. }
  3955. },
  3956. "targetEndpoint": {
  3957. "nodeId": {
  3958. "id": 218654143147732
  3959. },
  3960. "slotId": {
  3961. "m_id": "{FE793C6F-4B6C-4402-A770-F89C48B51083}"
  3962. }
  3963. }
  3964. }
  3965. }
  3966. },
  3967. {
  3968. "Id": {
  3969. "id": 218770107264724
  3970. },
  3971. "Name": "srcEndpoint=(For Each: EntityId), destEndpoint=(IncrementResetCount: EntityId)",
  3972. "Components": {
  3973. "Component_[1227241786057290104]": {
  3974. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3975. "Id": 1227241786057290104,
  3976. "sourceEndpoint": {
  3977. "nodeId": {
  3978. "id": 218684207918804
  3979. },
  3980. "slotId": {
  3981. "m_id": "{1B84B362-566C-4C32-831B-1CE1ADEA341F}"
  3982. }
  3983. },
  3984. "targetEndpoint": {
  3985. "nodeId": {
  3986. "id": 218679912951508
  3987. },
  3988. "slotId": {
  3989. "m_id": "{D248C524-97F8-41A8-BC1E-1B95BFB0CE0E}"
  3990. }
  3991. }
  3992. }
  3993. }
  3994. },
  3995. {
  3996. "Id": {
  3997. "id": 218774402232020
  3998. },
  3999. "Name": "srcEndpoint=(For Each: EntityId), destEndpoint=(IfEntityMultiplayerRole: Multiplayer Entity)",
  4000. "Components": {
  4001. "Component_[15687030444783713511]": {
  4002. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4003. "Id": 15687030444783713511,
  4004. "sourceEndpoint": {
  4005. "nodeId": {
  4006. "id": 218684207918804
  4007. },
  4008. "slotId": {
  4009. "m_id": "{1B84B362-566C-4C32-831B-1CE1ADEA341F}"
  4010. }
  4011. },
  4012. "targetEndpoint": {
  4013. "nodeId": {
  4014. "id": 218675617984212
  4015. },
  4016. "slotId": {
  4017. "m_id": "{4BF43E31-499C-400D-B83D-0DFB746A73D2}"
  4018. }
  4019. }
  4020. }
  4021. }
  4022. },
  4023. {
  4024. "Id": {
  4025. "id": 218778697199316
  4026. },
  4027. "Name": "srcEndpoint=(IfEntityMultiplayerRole: If Authority Role), destEndpoint=(IncrementResetCount: In)",
  4028. "Components": {
  4029. "Component_[9061322421998472928]": {
  4030. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4031. "Id": 9061322421998472928,
  4032. "sourceEndpoint": {
  4033. "nodeId": {
  4034. "id": 218675617984212
  4035. },
  4036. "slotId": {
  4037. "m_id": "{532D548A-B128-48A0-97C7-4B0609F8082F}"
  4038. }
  4039. },
  4040. "targetEndpoint": {
  4041. "nodeId": {
  4042. "id": 218679912951508
  4043. },
  4044. "slotId": {
  4045. "m_id": "{FA80E36C-777A-4426-9281-EB6B7FAA979F}"
  4046. }
  4047. }
  4048. }
  4049. }
  4050. },
  4051. {
  4052. "Id": {
  4053. "id": 218782992166612
  4054. },
  4055. "Name": "srcEndpoint=(CreateSpawnTicket: Ticket Created), destEndpoint=(Spawn: Request Spawn)",
  4056. "Components": {
  4057. "Component_[3406324797119579038]": {
  4058. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4059. "Id": 3406324797119579038,
  4060. "sourceEndpoint": {
  4061. "nodeId": {
  4062. "id": 218628373343956
  4063. },
  4064. "slotId": {
  4065. "m_id": "{F99D9B5F-736F-4F2D-B69D-496A0E59D7B2}"
  4066. }
  4067. },
  4068. "targetEndpoint": {
  4069. "nodeId": {
  4070. "id": 218611193474772
  4071. },
  4072. "slotId": {
  4073. "m_id": "{DDA6D6E4-F8BA-482E-AB7C-3F88FAA81E80}"
  4074. }
  4075. }
  4076. }
  4077. }
  4078. },
  4079. {
  4080. "Id": {
  4081. "id": 218787287133908
  4082. },
  4083. "Name": "srcEndpoint=(For Each: Each), destEndpoint=(Get Variable: In)",
  4084. "Components": {
  4085. "Component_[17669527067230216945]": {
  4086. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4087. "Id": 17669527067230216945,
  4088. "sourceEndpoint": {
  4089. "nodeId": {
  4090. "id": 218684207918804
  4091. },
  4092. "slotId": {
  4093. "m_id": "{0AD7C12B-49D0-4ECC-B374-001976C3D6B9}"
  4094. }
  4095. },
  4096. "targetEndpoint": {
  4097. "nodeId": {
  4098. "id": 218632668311252
  4099. },
  4100. "slotId": {
  4101. "m_id": "{075A8E71-E74E-4621-BBC8-27F126457021}"
  4102. }
  4103. }
  4104. }
  4105. }
  4106. },
  4107. {
  4108. "Id": {
  4109. "id": 218791582101204
  4110. },
  4111. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(IfEntityMultiplayerRole: In)",
  4112. "Components": {
  4113. "Component_[8039953959123292118]": {
  4114. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4115. "Id": 8039953959123292118,
  4116. "sourceEndpoint": {
  4117. "nodeId": {
  4118. "id": 218632668311252
  4119. },
  4120. "slotId": {
  4121. "m_id": "{45FAEDDA-BDC8-4B91-9047-79DCA8FCCCDF}"
  4122. }
  4123. },
  4124. "targetEndpoint": {
  4125. "nodeId": {
  4126. "id": 218675617984212
  4127. },
  4128. "slotId": {
  4129. "m_id": "{7619838D-F339-4CFE-8D7D-B1482681208A}"
  4130. }
  4131. }
  4132. }
  4133. }
  4134. },
  4135. {
  4136. "Id": {
  4137. "id": 218795877068500
  4138. },
  4139. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Get Variable: In)",
  4140. "Components": {
  4141. "Component_[2280081291147605972]": {
  4142. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4143. "Id": 2280081291147605972,
  4144. "sourceEndpoint": {
  4145. "nodeId": {
  4146. "id": 218688502886100
  4147. },
  4148. "slotId": {
  4149. "m_id": "{811B5693-FDA6-4DB4-9942-D8BA49D30424}"
  4150. }
  4151. },
  4152. "targetEndpoint": {
  4153. "nodeId": {
  4154. "id": 218624078376660
  4155. },
  4156. "slotId": {
  4157. "m_id": "{6D61655D-E8FA-473D-A3A1-96DD4359C91A}"
  4158. }
  4159. }
  4160. }
  4161. }
  4162. },
  4163. {
  4164. "Id": {
  4165. "id": 218800172035796
  4166. },
  4167. "Name": "srcEndpoint=(Set Variable: Translation), destEndpoint=(Spawn: Local Translation)",
  4168. "Components": {
  4169. "Component_[17663344658640850528]": {
  4170. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4171. "Id": 17663344658640850528,
  4172. "sourceEndpoint": {
  4173. "nodeId": {
  4174. "id": 218688502886100
  4175. },
  4176. "slotId": {
  4177. "m_id": "{29B51952-665E-43DD-ABEC-3AEF76B786AE}"
  4178. }
  4179. },
  4180. "targetEndpoint": {
  4181. "nodeId": {
  4182. "id": 218611193474772
  4183. },
  4184. "slotId": {
  4185. "m_id": "{5527CA08-8C49-4EF7-9399-3B44788D3C0E}"
  4186. }
  4187. }
  4188. }
  4189. }
  4190. },
  4191. {
  4192. "Id": {
  4193. "id": 218804467003092
  4194. },
  4195. "Name": "srcEndpoint=(Get Variable: Transform), destEndpoint=(SetWorldTM: Transform: 1)",
  4196. "Components": {
  4197. "Component_[4469043980192283799]": {
  4198. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4199. "Id": 4469043980192283799,
  4200. "sourceEndpoint": {
  4201. "nodeId": {
  4202. "id": 218632668311252
  4203. },
  4204. "slotId": {
  4205. "m_id": "{420F0F14-1949-49F9-AB4F-535D055AF4E9}"
  4206. }
  4207. },
  4208. "targetEndpoint": {
  4209. "nodeId": {
  4210. "id": 218671323016916
  4211. },
  4212. "slotId": {
  4213. "m_id": "{0EA53BBF-7660-4276-9C18-558AD588739B}"
  4214. }
  4215. }
  4216. }
  4217. }
  4218. },
  4219. {
  4220. "Id": {
  4221. "id": 218808761970388
  4222. },
  4223. "Name": "srcEndpoint=(For Each: EntityId), destEndpoint=(SetWorldTM: EntityId: 0)",
  4224. "Components": {
  4225. "Component_[11351235907959943351]": {
  4226. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4227. "Id": 11351235907959943351,
  4228. "sourceEndpoint": {
  4229. "nodeId": {
  4230. "id": 218684207918804
  4231. },
  4232. "slotId": {
  4233. "m_id": "{1B84B362-566C-4C32-831B-1CE1ADEA341F}"
  4234. }
  4235. },
  4236. "targetEndpoint": {
  4237. "nodeId": {
  4238. "id": 218671323016916
  4239. },
  4240. "slotId": {
  4241. "m_id": "{B2FE673F-A72B-4457-B2FE-E8E2F48EDA3E}"
  4242. }
  4243. }
  4244. }
  4245. }
  4246. },
  4247. {
  4248. "Id": {
  4249. "id": 218813056937684
  4250. },
  4251. "Name": "srcEndpoint=(IncrementResetCount: Out), destEndpoint=(GetLocalUniformScale: In)",
  4252. "Components": {
  4253. "Component_[11153507922308461155]": {
  4254. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4255. "Id": 11153507922308461155,
  4256. "sourceEndpoint": {
  4257. "nodeId": {
  4258. "id": 218679912951508
  4259. },
  4260. "slotId": {
  4261. "m_id": "{08314DDD-3560-48D4-B44E-F5B6B2A3ECBE}"
  4262. }
  4263. },
  4264. "targetEndpoint": {
  4265. "nodeId": {
  4266. "id": 218641258245844
  4267. },
  4268. "slotId": {
  4269. "m_id": "{D48C0B8C-C708-4C8E-9952-7C4F2D3294CD}"
  4270. }
  4271. }
  4272. }
  4273. }
  4274. },
  4275. {
  4276. "Id": {
  4277. "id": 218817351904980
  4278. },
  4279. "Name": "srcEndpoint=(GetLocalUniformScale: Out), destEndpoint=(SetWorldTM: In)",
  4280. "Components": {
  4281. "Component_[17018401360843912746]": {
  4282. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4283. "Id": 17018401360843912746,
  4284. "sourceEndpoint": {
  4285. "nodeId": {
  4286. "id": 218641258245844
  4287. },
  4288. "slotId": {
  4289. "m_id": "{81A5E7E8-8E17-4D4C-A93D-6F3FBE399E11}"
  4290. }
  4291. },
  4292. "targetEndpoint": {
  4293. "nodeId": {
  4294. "id": 218671323016916
  4295. },
  4296. "slotId": {
  4297. "m_id": "{8192BDA0-8BE2-4B7A-9798-6F30F1DC31C6}"
  4298. }
  4299. }
  4300. }
  4301. }
  4302. },
  4303. {
  4304. "Id": {
  4305. "id": 218821646872276
  4306. },
  4307. "Name": "srcEndpoint=(SetWorldTM: Out), destEndpoint=(SetLocalUniformScale: In)",
  4308. "Components": {
  4309. "Component_[9346071009992600737]": {
  4310. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4311. "Id": 9346071009992600737,
  4312. "sourceEndpoint": {
  4313. "nodeId": {
  4314. "id": 218671323016916
  4315. },
  4316. "slotId": {
  4317. "m_id": "{3B7F730E-2932-43FD-9A20-C4287DF9EDED}"
  4318. }
  4319. },
  4320. "targetEndpoint": {
  4321. "nodeId": {
  4322. "id": 218658438115028
  4323. },
  4324. "slotId": {
  4325. "m_id": "{CAF2F609-845F-42A3-B0C1-DC15C1FDDD04}"
  4326. }
  4327. }
  4328. }
  4329. }
  4330. },
  4331. {
  4332. "Id": {
  4333. "id": 218825941839572
  4334. },
  4335. "Name": "srcEndpoint=(GetLocalUniformScale: Number), destEndpoint=(SetLocalUniformScale: Number: 1)",
  4336. "Components": {
  4337. "Component_[1861337335562998619]": {
  4338. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4339. "Id": 1861337335562998619,
  4340. "sourceEndpoint": {
  4341. "nodeId": {
  4342. "id": 218641258245844
  4343. },
  4344. "slotId": {
  4345. "m_id": "{B391BCD7-11CC-47D5-BC85-A1FDD6AA1DC5}"
  4346. }
  4347. },
  4348. "targetEndpoint": {
  4349. "nodeId": {
  4350. "id": 218658438115028
  4351. },
  4352. "slotId": {
  4353. "m_id": "{44CCEF0F-69B9-4234-B845-D972EFDBB893}"
  4354. }
  4355. }
  4356. }
  4357. }
  4358. },
  4359. {
  4360. "Id": {
  4361. "id": 218830236806868
  4362. },
  4363. "Name": "srcEndpoint=(For Each: EntityId), destEndpoint=(GetLocalUniformScale: EntityId)",
  4364. "Components": {
  4365. "Component_[8068628535695478498]": {
  4366. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4367. "Id": 8068628535695478498,
  4368. "sourceEndpoint": {
  4369. "nodeId": {
  4370. "id": 218684207918804
  4371. },
  4372. "slotId": {
  4373. "m_id": "{1B84B362-566C-4C32-831B-1CE1ADEA341F}"
  4374. }
  4375. },
  4376. "targetEndpoint": {
  4377. "nodeId": {
  4378. "id": 218641258245844
  4379. },
  4380. "slotId": {
  4381. "m_id": "{DB10B2A3-000E-487A-89F6-4144FB6A759E}"
  4382. }
  4383. }
  4384. }
  4385. }
  4386. },
  4387. {
  4388. "Id": {
  4389. "id": 218834531774164
  4390. },
  4391. "Name": "srcEndpoint=(For Each: EntityId), destEndpoint=(SetLocalUniformScale: EntityId: 0)",
  4392. "Components": {
  4393. "Component_[5247066677671727703]": {
  4394. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4395. "Id": 5247066677671727703,
  4396. "sourceEndpoint": {
  4397. "nodeId": {
  4398. "id": 218684207918804
  4399. },
  4400. "slotId": {
  4401. "m_id": "{1B84B362-566C-4C32-831B-1CE1ADEA341F}"
  4402. }
  4403. },
  4404. "targetEndpoint": {
  4405. "nodeId": {
  4406. "id": 218658438115028
  4407. },
  4408. "slotId": {
  4409. "m_id": "{E52EA358-64BD-4DFE-BC01-2C2E1E997AAA}"
  4410. }
  4411. }
  4412. }
  4413. }
  4414. },
  4415. {
  4416. "Id": {
  4417. "id": 218838826741460
  4418. },
  4419. "Name": "srcEndpoint=(IfEntityMultiplayerRole: If Authority Role), destEndpoint=(Receive Script Event: Connect)",
  4420. "Components": {
  4421. "Component_[11182726195175500793]": {
  4422. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4423. "Id": 11182726195175500793,
  4424. "sourceEndpoint": {
  4425. "nodeId": {
  4426. "id": 218654143147732
  4427. },
  4428. "slotId": {
  4429. "m_id": "{49CC9C13-A89A-42F3-83D6-2955E5AF6D88}"
  4430. }
  4431. },
  4432. "targetEndpoint": {
  4433. "nodeId": {
  4434. "id": 218636963278548
  4435. },
  4436. "slotId": {
  4437. "m_id": "{09F88211-B00F-4BEB-8569-31754D9AEBC8}"
  4438. }
  4439. }
  4440. }
  4441. }
  4442. },
  4443. {
  4444. "Id": {
  4445. "id": 218843121708756
  4446. },
  4447. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:SpawnProjectileAt), destEndpoint=(Set Variable: In)",
  4448. "Components": {
  4449. "Component_[1106597462808207083]": {
  4450. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4451. "Id": 1106597462808207083,
  4452. "sourceEndpoint": {
  4453. "nodeId": {
  4454. "id": 218636963278548
  4455. },
  4456. "slotId": {
  4457. "m_id": "{D62AAD3D-D0D8-470C-A488-80002E7BFD94}"
  4458. }
  4459. },
  4460. "targetEndpoint": {
  4461. "nodeId": {
  4462. "id": 218688502886100
  4463. },
  4464. "slotId": {
  4465. "m_id": "{6B27D9B5-C7FD-4255-A52D-A61FEF56B7D9}"
  4466. }
  4467. }
  4468. }
  4469. }
  4470. },
  4471. {
  4472. "Id": {
  4473. "id": 218847416676052
  4474. },
  4475. "Name": "srcEndpoint=(Receive Script Event: SpawnAt), destEndpoint=(Set Variable: Transform)",
  4476. "Components": {
  4477. "Component_[3084654701073932938]": {
  4478. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4479. "Id": 3084654701073932938,
  4480. "sourceEndpoint": {
  4481. "nodeId": {
  4482. "id": 218636963278548
  4483. },
  4484. "slotId": {
  4485. "m_id": "{162F75F1-E63B-4E8B-A8E0-FDE404E414A2}"
  4486. }
  4487. },
  4488. "targetEndpoint": {
  4489. "nodeId": {
  4490. "id": 218688502886100
  4491. },
  4492. "slotId": {
  4493. "m_id": "{79DC9D49-688C-4F07-A134-2A4FF29D1AAB}"
  4494. }
  4495. }
  4496. }
  4497. }
  4498. },
  4499. {
  4500. "Id": {
  4501. "id": 239652238257876
  4502. },
  4503. "Name": "srcEndpoint=(IfEntityMultiplayerRole: If Client Role), destEndpoint=(DrawTextOnScreen: In)",
  4504. "Components": {
  4505. "Component_[1545712518595988345]": {
  4506. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4507. "Id": 1545712518595988345,
  4508. "sourceEndpoint": {
  4509. "nodeId": {
  4510. "id": 218654143147732
  4511. },
  4512. "slotId": {
  4513. "m_id": "{38B356C4-27F6-42D0-B4C8-E0A225183167}"
  4514. }
  4515. },
  4516. "targetEndpoint": {
  4517. "nodeId": {
  4518. "id": 238625741074132
  4519. },
  4520. "slotId": {
  4521. "m_id": "{AB8FC392-3F1A-4F53-AA6C-3DB4F2CED5AE}"
  4522. }
  4523. }
  4524. }
  4525. }
  4526. }
  4527. ],
  4528. "m_scriptEventAssets": [
  4529. [
  4530. {
  4531. "id": 218636963278548
  4532. },
  4533. {}
  4534. ]
  4535. ]
  4536. },
  4537. "versionData": {
  4538. "_grammarVersion": 1,
  4539. "_runtimeVersion": 1,
  4540. "_fileVersion": 1
  4541. },
  4542. "m_variableCounter": 5,
  4543. "GraphCanvasData": [
  4544. {
  4545. "Key": {
  4546. "id": 218606898507476
  4547. },
  4548. "Value": {
  4549. "ComponentData": {
  4550. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  4551. "$type": "SceneComponentSaveData",
  4552. "Constructs": [
  4553. {
  4554. "Type": 1,
  4555. "DataContainer": {
  4556. "ComponentData": {
  4557. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4558. "$type": "NodeSaveData"
  4559. },
  4560. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  4561. "$type": "CommentNodeTextSaveData",
  4562. "Comment": "Preserve scale on the object",
  4563. "BackgroundColor": [
  4564. 0.9800000190734863,
  4565. 0.9700000286102295,
  4566. 0.6499999761581421
  4567. ],
  4568. "FontSettings": {
  4569. "PixelSize": 16
  4570. }
  4571. },
  4572. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4573. "$type": "GeometrySaveData",
  4574. "Position": [
  4575. 1240.0,
  4576. 2340.0
  4577. ]
  4578. },
  4579. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4580. "$type": "StylingComponentSaveData"
  4581. },
  4582. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4583. "$type": "PersistentIdComponentSaveData",
  4584. "PersistentId": "{A2564A26-9DD9-4791-B2F2-C205BE0E42C9}"
  4585. }
  4586. }
  4587. }
  4588. },
  4589. {
  4590. "Type": 1,
  4591. "DataContainer": {
  4592. "ComponentData": {
  4593. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4594. "$type": "NodeSaveData"
  4595. },
  4596. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  4597. "$type": "CommentNodeTextSaveData",
  4598. "Comment": "Currently, there is a bug where the Spawn node does not correctly place multiplayer entities from a prefab. This is a workaround until that works.",
  4599. "BackgroundColor": [
  4600. 0.9800000190734863,
  4601. 0.9700000286102295,
  4602. 0.6499999761581421
  4603. ],
  4604. "FontSettings": {
  4605. "PixelSize": 16
  4606. }
  4607. },
  4608. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4609. "$type": "GeometrySaveData",
  4610. "Position": [
  4611. 1020.0,
  4612. 1040.0
  4613. ]
  4614. },
  4615. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4616. "$type": "StylingComponentSaveData"
  4617. },
  4618. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4619. "$type": "PersistentIdComponentSaveData",
  4620. "PersistentId": "{792E4FB2-6A6C-43BE-8B42-560E34DBE13A}"
  4621. }
  4622. }
  4623. }
  4624. },
  4625. {
  4626. "Type": 3,
  4627. "DataContainer": {
  4628. "ComponentData": {
  4629. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4630. "$type": "NodeSaveData"
  4631. },
  4632. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  4633. "$type": "CommentNodeTextSaveData",
  4634. "Comment": "Print Vector3",
  4635. "BackgroundColor": [
  4636. 0.9800000190734863,
  4637. 0.9700000286102295,
  4638. 0.6499999761581421
  4639. ],
  4640. "FontSettings": {
  4641. "PixelSize": 16
  4642. }
  4643. },
  4644. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  4645. "$type": "NodeGroupFrameComponentSaveData",
  4646. "DisplayHeight": 687.0,
  4647. "DisplayWidth": 1140.0,
  4648. "Collapsed": true,
  4649. "PersistentGroupedId": [
  4650. "{6874585A-008D-4899-97C5-820F80E89325}",
  4651. "{CE67EE0E-8DB2-4EBE-96F9-80654D70D7B1}",
  4652. "{77E5351C-A90D-4619-913C-CE6C0BEBABA2}",
  4653. "{FE977C78-7901-46B1-867C-1021E0239B18}"
  4654. ]
  4655. },
  4656. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4657. "$type": "GeometrySaveData",
  4658. "Position": [
  4659. 1260.0,
  4660. 900.0
  4661. ]
  4662. },
  4663. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4664. "$type": "StylingComponentSaveData"
  4665. },
  4666. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4667. "$type": "PersistentIdComponentSaveData",
  4668. "PersistentId": "{E50C025B-B795-438C-AD2A-3503AB47C8CF}"
  4669. }
  4670. }
  4671. }
  4672. }
  4673. ],
  4674. "ViewParams": {
  4675. "Scale": 1.7132193074356137,
  4676. "AnchorX": -134.83387756347656,
  4677. "AnchorY": 507.2322082519531
  4678. }
  4679. }
  4680. }
  4681. }
  4682. },
  4683. {
  4684. "Key": {
  4685. "id": 218611193474772
  4686. },
  4687. "Value": {
  4688. "ComponentData": {
  4689. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4690. "$type": "NodeSaveData"
  4691. },
  4692. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4693. "$type": "GeneralNodeTitleComponentSaveData",
  4694. "PaletteOverride": "DefaultNodeTitlePalette"
  4695. },
  4696. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4697. "$type": "GeometrySaveData",
  4698. "Position": [
  4699. 980.0,
  4700. 1200.0
  4701. ]
  4702. },
  4703. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4704. "$type": "StylingComponentSaveData"
  4705. },
  4706. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4707. "$type": "PersistentIdComponentSaveData",
  4708. "PersistentId": "{2F2D520E-364B-4BA4-8815-3FEF2DA816FF}"
  4709. }
  4710. }
  4711. }
  4712. },
  4713. {
  4714. "Key": {
  4715. "id": 218615488442068
  4716. },
  4717. "Value": {
  4718. "ComponentData": {
  4719. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4720. "$type": "NodeSaveData"
  4721. },
  4722. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4723. "$type": "GeneralNodeTitleComponentSaveData",
  4724. "PaletteOverride": "MethodNodeTitlePalette"
  4725. },
  4726. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4727. "$type": "GeometrySaveData",
  4728. "Position": [
  4729. 1280.0,
  4730. 1160.0
  4731. ]
  4732. },
  4733. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4734. "$type": "StylingComponentSaveData",
  4735. "SubStyle": ".method"
  4736. },
  4737. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4738. "$type": "PersistentIdComponentSaveData",
  4739. "PersistentId": "{77E5351C-A90D-4619-913C-CE6C0BEBABA2}"
  4740. }
  4741. }
  4742. }
  4743. },
  4744. {
  4745. "Key": {
  4746. "id": 218619783409364
  4747. },
  4748. "Value": {
  4749. "ComponentData": {
  4750. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4751. "$type": "NodeSaveData"
  4752. },
  4753. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4754. "$type": "GeneralNodeTitleComponentSaveData",
  4755. "PaletteOverride": "MethodNodeTitlePalette"
  4756. },
  4757. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4758. "$type": "GeometrySaveData",
  4759. "Position": [
  4760. 1280.0,
  4761. 1380.0
  4762. ]
  4763. },
  4764. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4765. "$type": "StylingComponentSaveData",
  4766. "SubStyle": ".method"
  4767. },
  4768. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4769. "$type": "PersistentIdComponentSaveData",
  4770. "PersistentId": "{CE67EE0E-8DB2-4EBE-96F9-80654D70D7B1}"
  4771. }
  4772. }
  4773. }
  4774. },
  4775. {
  4776. "Key": {
  4777. "id": 218624078376660
  4778. },
  4779. "Value": {
  4780. "ComponentData": {
  4781. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4782. "$type": "NodeSaveData"
  4783. },
  4784. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4785. "$type": "GeneralNodeTitleComponentSaveData",
  4786. "PaletteOverride": "GetVariableNodeTitlePalette"
  4787. },
  4788. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4789. "$type": "GeometrySaveData",
  4790. "Position": [
  4791. 180.0,
  4792. 1080.0
  4793. ]
  4794. },
  4795. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4796. "$type": "StylingComponentSaveData",
  4797. "SubStyle": ".getVariable"
  4798. },
  4799. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4800. "$type": "PersistentIdComponentSaveData",
  4801. "PersistentId": "{DF542AF1-3998-4937-8D75-6A8B76F907D7}"
  4802. }
  4803. }
  4804. }
  4805. },
  4806. {
  4807. "Key": {
  4808. "id": 218628373343956
  4809. },
  4810. "Value": {
  4811. "ComponentData": {
  4812. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4813. "$type": "NodeSaveData"
  4814. },
  4815. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4816. "$type": "GeneralNodeTitleComponentSaveData",
  4817. "PaletteOverride": "DefaultNodeTitlePalette"
  4818. },
  4819. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4820. "$type": "GeometrySaveData",
  4821. "Position": [
  4822. 560.0,
  4823. 1080.0
  4824. ]
  4825. },
  4826. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4827. "$type": "StylingComponentSaveData"
  4828. },
  4829. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4830. "$type": "PersistentIdComponentSaveData",
  4831. "PersistentId": "{58106FD1-B266-4B00-A7B0-E6305FE57B0A}"
  4832. }
  4833. }
  4834. }
  4835. },
  4836. {
  4837. "Key": {
  4838. "id": 218632668311252
  4839. },
  4840. "Value": {
  4841. "ComponentData": {
  4842. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4843. "$type": "NodeSaveData"
  4844. },
  4845. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4846. "$type": "GeneralNodeTitleComponentSaveData",
  4847. "PaletteOverride": "GetVariableNodeTitlePalette"
  4848. },
  4849. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4850. "$type": "GeometrySaveData",
  4851. "Position": [
  4852. 680.0,
  4853. 1700.0
  4854. ]
  4855. },
  4856. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4857. "$type": "StylingComponentSaveData",
  4858. "SubStyle": ".getVariable"
  4859. },
  4860. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4861. "$type": "PersistentIdComponentSaveData",
  4862. "PersistentId": "{3426900D-3E6D-4A09-8AD9-D5C68D5425FF}"
  4863. }
  4864. }
  4865. }
  4866. },
  4867. {
  4868. "Key": {
  4869. "id": 218636963278548
  4870. },
  4871. "Value": {
  4872. "ComponentData": {
  4873. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4874. "$type": "NodeSaveData"
  4875. },
  4876. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4877. "$type": "GeometrySaveData",
  4878. "Position": [
  4879. -500.0,
  4880. 940.0
  4881. ]
  4882. },
  4883. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4884. "$type": "StylingComponentSaveData"
  4885. },
  4886. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4887. "$type": "PersistentIdComponentSaveData",
  4888. "PersistentId": "{DDF30070-3166-474A-8A93-E0E8884F6AEF}"
  4889. },
  4890. "{D8BBE799-7E4D-495A-B69A-1E3940670891}": {
  4891. "$type": "ScriptEventReceiverHandlerNodeDescriptorSaveData",
  4892. "EventNames": [
  4893. [
  4894. {
  4895. "Value": 1236404752
  4896. },
  4897. "SpawnProjectileAt"
  4898. ]
  4899. ]
  4900. }
  4901. }
  4902. }
  4903. },
  4904. {
  4905. "Key": {
  4906. "id": 218641258245844
  4907. },
  4908. "Value": {
  4909. "ComponentData": {
  4910. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4911. "$type": "NodeSaveData"
  4912. },
  4913. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4914. "$type": "GeneralNodeTitleComponentSaveData",
  4915. "PaletteOverride": "MethodNodeTitlePalette"
  4916. },
  4917. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4918. "$type": "GeometrySaveData",
  4919. "Position": [
  4920. 1020.0,
  4921. 2160.0
  4922. ]
  4923. },
  4924. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4925. "$type": "StylingComponentSaveData",
  4926. "SubStyle": ".method"
  4927. },
  4928. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4929. "$type": "PersistentIdComponentSaveData",
  4930. "PersistentId": "{77CD5FE2-EAAF-476B-A9EB-932833C4026E}"
  4931. }
  4932. }
  4933. }
  4934. },
  4935. {
  4936. "Key": {
  4937. "id": 218645553213140
  4938. },
  4939. "Value": {
  4940. "ComponentData": {
  4941. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4942. "$type": "NodeSaveData"
  4943. },
  4944. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4945. "$type": "GeneralNodeTitleComponentSaveData",
  4946. "PaletteOverride": "GetVariableNodeTitlePalette"
  4947. },
  4948. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4949. "$type": "GeometrySaveData",
  4950. "Position": [
  4951. -420.0,
  4952. 1700.0
  4953. ]
  4954. },
  4955. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4956. "$type": "StylingComponentSaveData",
  4957. "SubStyle": ".getVariable"
  4958. },
  4959. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4960. "$type": "PersistentIdComponentSaveData",
  4961. "PersistentId": "{5A1D2FA3-7A93-4E6F-9EF7-3D402CEDB182}"
  4962. }
  4963. }
  4964. }
  4965. },
  4966. {
  4967. "Key": {
  4968. "id": 218649848180436
  4969. },
  4970. "Value": {
  4971. "ComponentData": {
  4972. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4973. "$type": "NodeSaveData"
  4974. },
  4975. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4976. "$type": "GeneralNodeTitleComponentSaveData",
  4977. "PaletteOverride": "StringNodeTitlePalette"
  4978. },
  4979. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4980. "$type": "GeometrySaveData",
  4981. "Position": [
  4982. 1960.0,
  4983. 1040.0
  4984. ]
  4985. },
  4986. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4987. "$type": "StylingComponentSaveData"
  4988. },
  4989. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4990. "$type": "PersistentIdComponentSaveData",
  4991. "PersistentId": "{FE977C78-7901-46B1-867C-1021E0239B18}"
  4992. }
  4993. }
  4994. }
  4995. },
  4996. {
  4997. "Key": {
  4998. "id": 218654143147732
  4999. },
  5000. "Value": {
  5001. "ComponentData": {
  5002. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5003. "$type": "NodeSaveData"
  5004. },
  5005. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5006. "$type": "GeneralNodeTitleComponentSaveData",
  5007. "PaletteOverride": "DefaultNodeTitlePalette"
  5008. },
  5009. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5010. "$type": "GeometrySaveData",
  5011. "Position": [
  5012. -600.0,
  5013. 660.0
  5014. ]
  5015. },
  5016. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5017. "$type": "StylingComponentSaveData"
  5018. },
  5019. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5020. "$type": "PersistentIdComponentSaveData",
  5021. "PersistentId": "{A6349A47-BB9A-4751-AC13-D53D621CFB1D}"
  5022. }
  5023. }
  5024. }
  5025. },
  5026. {
  5027. "Key": {
  5028. "id": 218658438115028
  5029. },
  5030. "Value": {
  5031. "ComponentData": {
  5032. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5033. "$type": "NodeSaveData"
  5034. },
  5035. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5036. "$type": "GeneralNodeTitleComponentSaveData",
  5037. "PaletteOverride": "MethodNodeTitlePalette"
  5038. },
  5039. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5040. "$type": "GeometrySaveData",
  5041. "Position": [
  5042. 1820.0,
  5043. 2160.0
  5044. ]
  5045. },
  5046. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5047. "$type": "StylingComponentSaveData",
  5048. "SubStyle": ".method"
  5049. },
  5050. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5051. "$type": "PersistentIdComponentSaveData",
  5052. "PersistentId": "{6E917415-BBFE-4E3F-8320-791ABE7F4504}"
  5053. }
  5054. }
  5055. }
  5056. },
  5057. {
  5058. "Key": {
  5059. "id": 218662733082324
  5060. },
  5061. "Value": {
  5062. "ComponentData": {
  5063. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5064. "$type": "NodeSaveData"
  5065. },
  5066. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5067. "$type": "GeneralNodeTitleComponentSaveData",
  5068. "PaletteOverride": "MethodNodeTitlePalette"
  5069. },
  5070. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5071. "$type": "GeometrySaveData",
  5072. "Position": [
  5073. -80.0,
  5074. 1700.0
  5075. ]
  5076. },
  5077. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5078. "$type": "StylingComponentSaveData",
  5079. "SubStyle": ".method"
  5080. },
  5081. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5082. "$type": "PersistentIdComponentSaveData",
  5083. "PersistentId": "{A53BDD8A-DF25-4AB8-9543-743BD8FF1E6A}"
  5084. }
  5085. }
  5086. }
  5087. },
  5088. {
  5089. "Key": {
  5090. "id": 218667028049620
  5091. },
  5092. "Value": {
  5093. "ComponentData": {
  5094. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5095. "$type": "NodeSaveData"
  5096. },
  5097. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5098. "$type": "GeometrySaveData",
  5099. "Position": [
  5100. -480.0,
  5101. 280.0
  5102. ]
  5103. },
  5104. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  5105. "$type": "EBusHandlerNodeDescriptorSaveData",
  5106. "EventIds": [
  5107. {
  5108. "Value": 245425936
  5109. }
  5110. ]
  5111. },
  5112. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5113. "$type": "StylingComponentSaveData"
  5114. },
  5115. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5116. "$type": "PersistentIdComponentSaveData",
  5117. "PersistentId": "{C1DC8517-9D7F-47BC-8775-0AB9376A2430}"
  5118. }
  5119. }
  5120. }
  5121. },
  5122. {
  5123. "Key": {
  5124. "id": 218671323016916
  5125. },
  5126. "Value": {
  5127. "ComponentData": {
  5128. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5129. "$type": "NodeSaveData"
  5130. },
  5131. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5132. "$type": "GeneralNodeTitleComponentSaveData",
  5133. "PaletteOverride": "MethodNodeTitlePalette"
  5134. },
  5135. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5136. "$type": "GeometrySaveData",
  5137. "Position": [
  5138. 1500.0,
  5139. 2160.0
  5140. ]
  5141. },
  5142. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5143. "$type": "StylingComponentSaveData",
  5144. "SubStyle": ".method"
  5145. },
  5146. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5147. "$type": "PersistentIdComponentSaveData",
  5148. "PersistentId": "{4D099D7B-82EE-4B7E-BD92-13F09FF824B0}"
  5149. }
  5150. }
  5151. }
  5152. },
  5153. {
  5154. "Key": {
  5155. "id": 218675617984212
  5156. },
  5157. "Value": {
  5158. "ComponentData": {
  5159. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5160. "$type": "NodeSaveData"
  5161. },
  5162. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5163. "$type": "GeneralNodeTitleComponentSaveData",
  5164. "PaletteOverride": "DefaultNodeTitlePalette"
  5165. },
  5166. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5167. "$type": "GeometrySaveData",
  5168. "Position": [
  5169. 1120.0,
  5170. 1700.0
  5171. ]
  5172. },
  5173. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5174. "$type": "StylingComponentSaveData"
  5175. },
  5176. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5177. "$type": "PersistentIdComponentSaveData",
  5178. "PersistentId": "{0EE26491-31A0-4DC5-9442-BE4A0B12DD86}"
  5179. }
  5180. }
  5181. }
  5182. },
  5183. {
  5184. "Key": {
  5185. "id": 218679912951508
  5186. },
  5187. "Value": {
  5188. "ComponentData": {
  5189. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5190. "$type": "NodeSaveData"
  5191. },
  5192. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5193. "$type": "GeneralNodeTitleComponentSaveData",
  5194. "PaletteOverride": "MethodNodeTitlePalette"
  5195. },
  5196. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5197. "$type": "GeometrySaveData",
  5198. "Position": [
  5199. 700.0,
  5200. 2160.0
  5201. ]
  5202. },
  5203. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5204. "$type": "StylingComponentSaveData",
  5205. "SubStyle": ".method"
  5206. },
  5207. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5208. "$type": "PersistentIdComponentSaveData",
  5209. "PersistentId": "{1D8C00F8-293A-4BC1-9059-D3AB21324AE2}"
  5210. }
  5211. }
  5212. }
  5213. },
  5214. {
  5215. "Key": {
  5216. "id": 218684207918804
  5217. },
  5218. "Value": {
  5219. "ComponentData": {
  5220. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5221. "$type": "NodeSaveData"
  5222. },
  5223. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5224. "$type": "GeneralNodeTitleComponentSaveData",
  5225. "PaletteOverride": "DefaultNodeTitlePalette"
  5226. },
  5227. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5228. "$type": "GeometrySaveData",
  5229. "Position": [
  5230. 240.0,
  5231. 1700.0
  5232. ]
  5233. },
  5234. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5235. "$type": "StylingComponentSaveData"
  5236. },
  5237. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5238. "$type": "PersistentIdComponentSaveData",
  5239. "PersistentId": "{B83E61BF-8A73-4E4E-ACB2-050B0CB5B9C0}"
  5240. }
  5241. }
  5242. }
  5243. },
  5244. {
  5245. "Key": {
  5246. "id": 218688502886100
  5247. },
  5248. "Value": {
  5249. "ComponentData": {
  5250. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5251. "$type": "NodeSaveData"
  5252. },
  5253. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5254. "$type": "GeneralNodeTitleComponentSaveData",
  5255. "PaletteOverride": "SetVariableNodeTitlePalette"
  5256. },
  5257. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5258. "$type": "GeometrySaveData",
  5259. "Position": [
  5260. -160.0,
  5261. 1040.0
  5262. ]
  5263. },
  5264. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5265. "$type": "StylingComponentSaveData",
  5266. "SubStyle": ".setVariable"
  5267. },
  5268. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5269. "$type": "PersistentIdComponentSaveData",
  5270. "PersistentId": "{290DEF37-90EE-43AA-9AAA-2FCA4E865BD7}"
  5271. }
  5272. }
  5273. }
  5274. },
  5275. {
  5276. "Key": {
  5277. "id": 218692797853396
  5278. },
  5279. "Value": {
  5280. "ComponentData": {
  5281. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5282. "$type": "NodeSaveData"
  5283. },
  5284. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5285. "$type": "GeneralNodeTitleComponentSaveData",
  5286. "PaletteOverride": "MethodNodeTitlePalette"
  5287. },
  5288. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5289. "$type": "GeometrySaveData",
  5290. "Position": [
  5291. 1280.0,
  5292. 960.0
  5293. ]
  5294. },
  5295. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5296. "$type": "StylingComponentSaveData",
  5297. "SubStyle": ".method"
  5298. },
  5299. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5300. "$type": "PersistentIdComponentSaveData",
  5301. "PersistentId": "{6874585A-008D-4899-97C5-820F80E89325}"
  5302. }
  5303. }
  5304. }
  5305. },
  5306. {
  5307. "Key": {
  5308. "id": 238625741074132
  5309. },
  5310. "Value": {
  5311. "ComponentData": {
  5312. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5313. "$type": "NodeSaveData"
  5314. },
  5315. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5316. "$type": "GeneralNodeTitleComponentSaveData",
  5317. "PaletteOverride": "MethodNodeTitlePalette"
  5318. },
  5319. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5320. "$type": "GeometrySaveData",
  5321. "Position": [
  5322. 80.0,
  5323. 660.0
  5324. ]
  5325. },
  5326. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5327. "$type": "StylingComponentSaveData",
  5328. "SubStyle": ".method"
  5329. },
  5330. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5331. "$type": "PersistentIdComponentSaveData",
  5332. "PersistentId": "{8598DE8A-7A34-41C5-8569-9F9BE1CFDB01}"
  5333. }
  5334. }
  5335. }
  5336. }
  5337. ],
  5338. "StatisticsHelper": {
  5339. "InstanceCounter": [
  5340. {
  5341. "Key": 1678857465537201416,
  5342. "Value": 1
  5343. },
  5344. {
  5345. "Key": 2439303211059358412,
  5346. "Value": 3
  5347. },
  5348. {
  5349. "Key": 2781147101807596453,
  5350. "Value": 1
  5351. },
  5352. {
  5353. "Key": 2970552779286763396,
  5354. "Value": 1
  5355. },
  5356. {
  5357. "Key": 3469309217581835516,
  5358. "Value": 1
  5359. },
  5360. {
  5361. "Key": 4408335879416781812,
  5362. "Value": 1
  5363. },
  5364. {
  5365. "Key": 5842116761103598202,
  5366. "Value": 1
  5367. },
  5368. {
  5369. "Key": 10181512461692697578,
  5370. "Value": 1
  5371. },
  5372. {
  5373. "Key": 10684225535275896474,
  5374. "Value": 1
  5375. },
  5376. {
  5377. "Key": 10959230814301810318,
  5378. "Value": 1
  5379. },
  5380. {
  5381. "Key": 13474049605028069597,
  5382. "Value": 1
  5383. },
  5384. {
  5385. "Key": 13774516227589409089,
  5386. "Value": 1
  5387. },
  5388. {
  5389. "Key": 13774516553442464588,
  5390. "Value": 1
  5391. },
  5392. {
  5393. "Key": 13774516554278555872,
  5394. "Value": 1
  5395. },
  5396. {
  5397. "Key": 13774516556865812506,
  5398. "Value": 1
  5399. },
  5400. {
  5401. "Key": 13779372229585118835,
  5402. "Value": 1
  5403. },
  5404. {
  5405. "Key": 14332540104522846321,
  5406. "Value": 2
  5407. },
  5408. {
  5409. "Key": 18147972192332697896,
  5410. "Value": 1
  5411. }
  5412. ]
  5413. }
  5414. }
  5415. }
  5416. }
  5417. }
  5418. }