QuitOnSuccessfulSpawn.scriptcanvas 221 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 812713144531
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[15295178567016916035]": {
  13. "$type": "EditorGraph",
  14. "Id": 15295178567016916035,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 872842686675
  20. },
  21. "Name": "SC-Node(GetChildren)",
  22. "Components": {
  23. "Component_[10236234494637571935]": {
  24. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  25. "Id": 10236234494637571935,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{12467C31-BD47-48D9-88BA-88DE66C22262}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "EntityId",
  37. "Descriptor": {
  38. "ConnectionType": 1,
  39. "SlotType": 2
  40. },
  41. "DataType": 1,
  42. "IsReference": true,
  43. "VariableReference": {
  44. "m_id": "{31B78CCD-1FC7-48C0-A91F-D8D5B6F00163}"
  45. }
  46. },
  47. {
  48. "id": {
  49. "m_id": "{B5464203-43A4-42D5-96E7-D01DC534F399}"
  50. },
  51. "contracts": [
  52. {
  53. "$type": "SlotTypeContract"
  54. }
  55. ],
  56. "slotName": "In",
  57. "Descriptor": {
  58. "ConnectionType": 1,
  59. "SlotType": 1
  60. }
  61. },
  62. {
  63. "id": {
  64. "m_id": "{4972897F-796E-4BCF-9D17-429460D3C201}"
  65. },
  66. "contracts": [
  67. {
  68. "$type": "SlotTypeContract"
  69. }
  70. ],
  71. "slotName": "Out",
  72. "Descriptor": {
  73. "ConnectionType": 2,
  74. "SlotType": 1
  75. }
  76. },
  77. {
  78. "id": {
  79. "m_id": "{5C51C3C2-F694-4AA4-911D-E70E3EB44E6A}"
  80. },
  81. "contracts": [
  82. {
  83. "$type": "SlotTypeContract"
  84. }
  85. ],
  86. "slotName": "Array<EntityId>",
  87. "DisplayDataType": {
  88. "m_type": 4,
  89. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  90. },
  91. "Descriptor": {
  92. "ConnectionType": 2,
  93. "SlotType": 2
  94. },
  95. "DataType": 1
  96. }
  97. ],
  98. "Datums": [
  99. {
  100. "scriptCanvasType": {
  101. "m_type": 1
  102. },
  103. "isNullPointer": false,
  104. "$type": "EntityId",
  105. "value": {
  106. "id": 2901262558
  107. },
  108. "label": "EntityId"
  109. }
  110. ],
  111. "methodType": 0,
  112. "methodName": "GetChildren",
  113. "className": "TransformBus",
  114. "resultSlotIDs": [
  115. {}
  116. ],
  117. "inputSlots": [
  118. {
  119. "m_id": "{12467C31-BD47-48D9-88BA-88DE66C22262}"
  120. }
  121. ],
  122. "prettyClassName": "TransformBus"
  123. }
  124. }
  125. },
  126. {
  127. "Id": {
  128. "id": 859957784787
  129. },
  130. "Name": "SC-Node(EqualTo)",
  131. "Components": {
  132. "Component_[11653809569458867396]": {
  133. "$type": "EqualTo",
  134. "Id": 11653809569458867396,
  135. "Slots": [
  136. {
  137. "id": {
  138. "m_id": "{2F38B836-8B35-49B7-BD1B-B11CAEE21999}"
  139. },
  140. "contracts": [
  141. {
  142. "$type": "SlotTypeContract"
  143. }
  144. ],
  145. "slotName": "Result",
  146. "DisplayDataType": {
  147. "m_type": 0
  148. },
  149. "Descriptor": {
  150. "ConnectionType": 2,
  151. "SlotType": 2
  152. },
  153. "DataType": 1
  154. },
  155. {
  156. "id": {
  157. "m_id": "{E6CC8D99-AA80-4E6F-8199-673222006434}"
  158. },
  159. "contracts": [
  160. {
  161. "$type": "SlotTypeContract"
  162. }
  163. ],
  164. "slotName": "In",
  165. "toolTip": "Signal to perform the evaluation when desired.",
  166. "Descriptor": {
  167. "ConnectionType": 1,
  168. "SlotType": 1
  169. }
  170. },
  171. {
  172. "id": {
  173. "m_id": "{6445267C-B65F-4014-B9E2-9ECAAEEF2A5F}"
  174. },
  175. "contracts": [
  176. {
  177. "$type": "SlotTypeContract"
  178. }
  179. ],
  180. "slotName": "True",
  181. "toolTip": "Signaled if the result of the operation is true.",
  182. "Descriptor": {
  183. "ConnectionType": 2,
  184. "SlotType": 1
  185. }
  186. },
  187. {
  188. "id": {
  189. "m_id": "{F0728E44-C333-4504-9C06-A6C16E7FB455}"
  190. },
  191. "contracts": [
  192. {
  193. "$type": "SlotTypeContract"
  194. }
  195. ],
  196. "slotName": "False",
  197. "toolTip": "Signaled if the result of the operation is false.",
  198. "Descriptor": {
  199. "ConnectionType": 2,
  200. "SlotType": 1
  201. }
  202. },
  203. {
  204. "id": {
  205. "m_id": "{19A86062-881F-4B81-99FD-75CAFAB4E25C}"
  206. },
  207. "DynamicTypeOverride": 3,
  208. "contracts": [
  209. {
  210. "$type": "SlotTypeContract"
  211. }
  212. ],
  213. "slotName": "Value A",
  214. "DisplayDataType": {
  215. "m_type": 3
  216. },
  217. "Descriptor": {
  218. "ConnectionType": 1,
  219. "SlotType": 2
  220. },
  221. "DynamicGroup": {
  222. "Value": 3545012108
  223. },
  224. "DataType": 1,
  225. "IsReference": true,
  226. "VariableReference": {
  227. "m_id": "{A0E88790-169A-4E16-A5AF-EF8DD249798D}"
  228. }
  229. },
  230. {
  231. "id": {
  232. "m_id": "{344B222F-C25B-4AAD-ACE3-D1F247022CE1}"
  233. },
  234. "DynamicTypeOverride": 3,
  235. "contracts": [
  236. {
  237. "$type": "SlotTypeContract"
  238. }
  239. ],
  240. "slotName": "Value B",
  241. "DisplayDataType": {
  242. "m_type": 3
  243. },
  244. "Descriptor": {
  245. "ConnectionType": 1,
  246. "SlotType": 2
  247. },
  248. "DynamicGroup": {
  249. "Value": 3545012108
  250. },
  251. "DataType": 1
  252. }
  253. ],
  254. "Datums": [
  255. {
  256. "scriptCanvasType": {
  257. "m_type": 3
  258. },
  259. "isNullPointer": false,
  260. "$type": "double",
  261. "value": 0.0,
  262. "label": "Value A"
  263. },
  264. {
  265. "scriptCanvasType": {
  266. "m_type": 3
  267. },
  268. "isNullPointer": false,
  269. "$type": "double",
  270. "value": 1.0,
  271. "label": "Value B"
  272. }
  273. ]
  274. }
  275. }
  276. },
  277. {
  278. "Id": {
  279. "id": 851367850195
  280. },
  281. "Name": "SC-Node(Print)",
  282. "Components": {
  283. "Component_[13722085593631037728]": {
  284. "$type": "Print",
  285. "Id": 13722085593631037728,
  286. "Slots": [
  287. {
  288. "id": {
  289. "m_id": "{B638D936-06F4-4A37-B1ED-744B29788E63}"
  290. },
  291. "contracts": [
  292. {
  293. "$type": "SlotTypeContract"
  294. }
  295. ],
  296. "slotName": "In",
  297. "toolTip": "Input signal",
  298. "Descriptor": {
  299. "ConnectionType": 1,
  300. "SlotType": 1
  301. }
  302. },
  303. {
  304. "id": {
  305. "m_id": "{1B1152EA-FF58-4897-B0C9-A98978F741F9}"
  306. },
  307. "DynamicTypeOverride": 3,
  308. "contracts": [
  309. {
  310. "$type": "SlotTypeContract"
  311. }
  312. ],
  313. "slotName": "Value_1",
  314. "toolTip": "Value which replaces instances of {Value_1} in the resulting string.",
  315. "DisplayDataType": {
  316. "m_type": 5
  317. },
  318. "DisplayGroup": {
  319. "Value": 1015031923
  320. },
  321. "Descriptor": {
  322. "ConnectionType": 1,
  323. "SlotType": 2
  324. },
  325. "DataType": 1,
  326. "IsReference": true,
  327. "VariableReference": {
  328. "m_id": "{C2622DC6-AAE4-482F-B818-BE5C97101A6D}"
  329. }
  330. },
  331. {
  332. "id": {
  333. "m_id": "{5878564B-48FD-46D7-BE7F-E85E802EB4ED}"
  334. },
  335. "DynamicTypeOverride": 3,
  336. "contracts": [
  337. {
  338. "$type": "SlotTypeContract"
  339. }
  340. ],
  341. "slotName": "Value",
  342. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  343. "DisplayDataType": {
  344. "m_type": 0
  345. },
  346. "DisplayGroup": {
  347. "Value": 1015031923
  348. },
  349. "Descriptor": {
  350. "ConnectionType": 1,
  351. "SlotType": 2
  352. },
  353. "DataType": 1
  354. },
  355. {
  356. "id": {
  357. "m_id": "{C7ADDC33-0B5B-46D7-98AA-12D7E61EF7B4}"
  358. },
  359. "contracts": [
  360. {
  361. "$type": "SlotTypeContract"
  362. }
  363. ],
  364. "slotName": "Out",
  365. "Descriptor": {
  366. "ConnectionType": 2,
  367. "SlotType": 1
  368. }
  369. }
  370. ],
  371. "Datums": [
  372. {
  373. "scriptCanvasType": {
  374. "m_type": 5
  375. },
  376. "isNullPointer": false,
  377. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  378. "value": "",
  379. "label": "Value_1"
  380. },
  381. {
  382. "scriptCanvasType": {
  383. "m_type": 0
  384. },
  385. "isNullPointer": false,
  386. "$type": "bool",
  387. "value": false,
  388. "label": "Value"
  389. }
  390. ],
  391. "m_format": "TEST FAILURE: Expected name of container entity: {Value_1}. Found: {Value}.",
  392. "m_arrayBindingMap": [
  393. {
  394. "Key": 1,
  395. "Value": {
  396. "m_id": "{1B1152EA-FF58-4897-B0C9-A98978F741F9}"
  397. }
  398. },
  399. {
  400. "Key": 3,
  401. "Value": {
  402. "m_id": "{5878564B-48FD-46D7-BE7F-E85E802EB4ED}"
  403. }
  404. }
  405. ],
  406. "m_unresolvedString": [
  407. "TEST FAILURE: Expected name of container entity: ",
  408. {},
  409. ". Found: ",
  410. {},
  411. "."
  412. ],
  413. "m_formatSlotMap": {
  414. "Value": {
  415. "m_id": "{5878564B-48FD-46D7-BE7F-E85E802EB4ED}"
  416. },
  417. "Value_1": {
  418. "m_id": "{1B1152EA-FF58-4897-B0C9-A98978F741F9}"
  419. }
  420. }
  421. }
  422. }
  423. },
  424. {
  425. "Id": {
  426. "id": 842777915603
  427. },
  428. "Name": "SC-Node(Print)",
  429. "Components": {
  430. "Component_[13722085593631037728]": {
  431. "$type": "Print",
  432. "Id": 13722085593631037728,
  433. "Slots": [
  434. {
  435. "id": {
  436. "m_id": "{B638D936-06F4-4A37-B1ED-744B29788E63}"
  437. },
  438. "contracts": [
  439. {
  440. "$type": "SlotTypeContract"
  441. }
  442. ],
  443. "slotName": "In",
  444. "toolTip": "Input signal",
  445. "Descriptor": {
  446. "ConnectionType": 1,
  447. "SlotType": 1
  448. }
  449. },
  450. {
  451. "id": {
  452. "m_id": "{1B1152EA-FF58-4897-B0C9-A98978F741F9}"
  453. },
  454. "DynamicTypeOverride": 3,
  455. "contracts": [
  456. {
  457. "$type": "SlotTypeContract"
  458. }
  459. ],
  460. "slotName": "Value_1",
  461. "toolTip": "Value which replaces instances of {Value_1} in the resulting string.",
  462. "DisplayDataType": {
  463. "m_type": 5
  464. },
  465. "DisplayGroup": {
  466. "Value": 1015031923
  467. },
  468. "Descriptor": {
  469. "ConnectionType": 1,
  470. "SlotType": 2
  471. },
  472. "DataType": 1,
  473. "IsReference": true,
  474. "VariableReference": {
  475. "m_id": "{C2622DC6-AAE4-482F-B818-BE5C97101A6D}"
  476. }
  477. },
  478. {
  479. "id": {
  480. "m_id": "{5878564B-48FD-46D7-BE7F-E85E802EB4ED}"
  481. },
  482. "DynamicTypeOverride": 3,
  483. "contracts": [
  484. {
  485. "$type": "SlotTypeContract"
  486. }
  487. ],
  488. "slotName": "Value",
  489. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  490. "DisplayDataType": {
  491. "m_type": 0
  492. },
  493. "DisplayGroup": {
  494. "Value": 1015031923
  495. },
  496. "Descriptor": {
  497. "ConnectionType": 1,
  498. "SlotType": 2
  499. },
  500. "DataType": 1
  501. },
  502. {
  503. "id": {
  504. "m_id": "{C7ADDC33-0B5B-46D7-98AA-12D7E61EF7B4}"
  505. },
  506. "contracts": [
  507. {
  508. "$type": "SlotTypeContract"
  509. }
  510. ],
  511. "slotName": "Out",
  512. "Descriptor": {
  513. "ConnectionType": 2,
  514. "SlotType": 1
  515. }
  516. }
  517. ],
  518. "Datums": [
  519. {
  520. "scriptCanvasType": {
  521. "m_type": 5
  522. },
  523. "isNullPointer": false,
  524. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  525. "value": "",
  526. "label": "Value_1"
  527. },
  528. {
  529. "scriptCanvasType": {
  530. "m_type": 0
  531. },
  532. "isNullPointer": false,
  533. "$type": "bool",
  534. "value": false,
  535. "label": "Value"
  536. }
  537. ],
  538. "m_format": "TEST FAILURE: Expected name of container's child entity: {Value_1}. Found: {Value}.",
  539. "m_arrayBindingMap": [
  540. {
  541. "Key": 1,
  542. "Value": {
  543. "m_id": "{1B1152EA-FF58-4897-B0C9-A98978F741F9}"
  544. }
  545. },
  546. {
  547. "Key": 3,
  548. "Value": {
  549. "m_id": "{5878564B-48FD-46D7-BE7F-E85E802EB4ED}"
  550. }
  551. }
  552. ],
  553. "m_unresolvedString": [
  554. "TEST FAILURE: Expected name of container's child entity: ",
  555. {},
  556. ". Found: ",
  557. {},
  558. "."
  559. ],
  560. "m_formatSlotMap": {
  561. "Value": {
  562. "m_id": "{5878564B-48FD-46D7-BE7F-E85E802EB4ED}"
  563. },
  564. "Value_1": {
  565. "m_id": "{1B1152EA-FF58-4897-B0C9-A98978F741F9}"
  566. }
  567. }
  568. }
  569. }
  570. },
  571. {
  572. "Id": {
  573. "id": 834187981011
  574. },
  575. "Name": "SC-Node(EqualTo)",
  576. "Components": {
  577. "Component_[16070162099410237859]": {
  578. "$type": "EqualTo",
  579. "Id": 16070162099410237859,
  580. "Slots": [
  581. {
  582. "id": {
  583. "m_id": "{FBF00C4E-8372-4382-AAFB-0E249AB1471A}"
  584. },
  585. "contracts": [
  586. {
  587. "$type": "SlotTypeContract"
  588. }
  589. ],
  590. "slotName": "Result",
  591. "DisplayDataType": {
  592. "m_type": 0
  593. },
  594. "Descriptor": {
  595. "ConnectionType": 2,
  596. "SlotType": 2
  597. },
  598. "DataType": 1
  599. },
  600. {
  601. "id": {
  602. "m_id": "{1DB67EC8-2E7D-4477-A3E4-7DC85456E561}"
  603. },
  604. "contracts": [
  605. {
  606. "$type": "SlotTypeContract"
  607. }
  608. ],
  609. "slotName": "In",
  610. "toolTip": "Signal to perform the evaluation when desired.",
  611. "Descriptor": {
  612. "ConnectionType": 1,
  613. "SlotType": 1
  614. }
  615. },
  616. {
  617. "id": {
  618. "m_id": "{554DBCA1-0CC2-4838-857B-C2226165A8C8}"
  619. },
  620. "contracts": [
  621. {
  622. "$type": "SlotTypeContract"
  623. }
  624. ],
  625. "slotName": "True",
  626. "toolTip": "Signaled if the result of the operation is true.",
  627. "Descriptor": {
  628. "ConnectionType": 2,
  629. "SlotType": 1
  630. }
  631. },
  632. {
  633. "id": {
  634. "m_id": "{7A72B125-B84E-4FEE-A5E3-9C8D50C92F90}"
  635. },
  636. "contracts": [
  637. {
  638. "$type": "SlotTypeContract"
  639. }
  640. ],
  641. "slotName": "False",
  642. "toolTip": "Signaled if the result of the operation is false.",
  643. "Descriptor": {
  644. "ConnectionType": 2,
  645. "SlotType": 1
  646. }
  647. },
  648. {
  649. "id": {
  650. "m_id": "{E265E60A-61F9-41A4-A37B-924A8496C779}"
  651. },
  652. "DynamicTypeOverride": 3,
  653. "contracts": [
  654. {
  655. "$type": "SlotTypeContract"
  656. }
  657. ],
  658. "slotName": "Value A",
  659. "DisplayDataType": {
  660. "m_type": 5
  661. },
  662. "Descriptor": {
  663. "ConnectionType": 1,
  664. "SlotType": 2
  665. },
  666. "DynamicGroup": {
  667. "Value": 3545012108
  668. },
  669. "DataType": 1
  670. },
  671. {
  672. "id": {
  673. "m_id": "{A756E8E7-9CE4-4D62-B247-6203D6430EA5}"
  674. },
  675. "DynamicTypeOverride": 3,
  676. "contracts": [
  677. {
  678. "$type": "SlotTypeContract"
  679. }
  680. ],
  681. "slotName": "Value B",
  682. "DisplayDataType": {
  683. "m_type": 5
  684. },
  685. "Descriptor": {
  686. "ConnectionType": 1,
  687. "SlotType": 2
  688. },
  689. "DynamicGroup": {
  690. "Value": 3545012108
  691. },
  692. "DataType": 1,
  693. "IsReference": true,
  694. "VariableReference": {
  695. "m_id": "{C2622DC6-AAE4-482F-B818-BE5C97101A6D}"
  696. }
  697. }
  698. ],
  699. "Datums": [
  700. {
  701. "scriptCanvasType": {
  702. "m_type": 5
  703. },
  704. "isNullPointer": false,
  705. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  706. "value": "",
  707. "label": "Value A"
  708. },
  709. {
  710. "scriptCanvasType": {
  711. "m_type": 5
  712. },
  713. "isNullPointer": false,
  714. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  715. "value": "PinkFlower",
  716. "label": "Value B"
  717. }
  718. ]
  719. }
  720. }
  721. },
  722. {
  723. "Id": {
  724. "id": 825598046419
  725. },
  726. "Name": "SC-Node(SpawnNodeableNode)",
  727. "Components": {
  728. "Component_[17033892793189653192]": {
  729. "$type": "SpawnNodeableNode",
  730. "Id": 17033892793189653192,
  731. "Slots": [
  732. {
  733. "id": {
  734. "m_id": "{68D1767D-D2C4-4346-958E-C1AC139DA39A}"
  735. },
  736. "contracts": [
  737. {
  738. "$type": "SlotTypeContract"
  739. }
  740. ],
  741. "slotName": "Request Spawn",
  742. "DisplayGroup": {
  743. "Value": 929942742
  744. },
  745. "Descriptor": {
  746. "ConnectionType": 1,
  747. "SlotType": 1
  748. }
  749. },
  750. {
  751. "id": {
  752. "m_id": "{712819C7-662D-4842-8795-2CDBDB03B338}"
  753. },
  754. "contracts": [
  755. {
  756. "$type": "SlotTypeContract"
  757. }
  758. ],
  759. "slotName": "SpawnTicket",
  760. "toolTip": "Ticket instance assosiated with spawnable asset.",
  761. "DisplayGroup": {
  762. "Value": 929942742
  763. },
  764. "Descriptor": {
  765. "ConnectionType": 1,
  766. "SlotType": 2
  767. },
  768. "DataType": 1,
  769. "IsReference": true,
  770. "VariableReference": {
  771. "m_id": "{C241E2D6-48A7-4B50-A673-160B28B9253F}"
  772. }
  773. },
  774. {
  775. "id": {
  776. "m_id": "{29EDB093-678A-42B9-A1A7-284C0C899499}"
  777. },
  778. "contracts": [
  779. {
  780. "$type": "SlotTypeContract"
  781. }
  782. ],
  783. "slotName": "ParentId",
  784. "toolTip": "Optional parent to assign spawned container entity to.",
  785. "DisplayGroup": {
  786. "Value": 929942742
  787. },
  788. "Descriptor": {
  789. "ConnectionType": 1,
  790. "SlotType": 2
  791. },
  792. "DataType": 1
  793. },
  794. {
  795. "id": {
  796. "m_id": "{6AC0F129-D4BF-43EA-BC50-FD4EAFB7415B}"
  797. },
  798. "contracts": [
  799. {
  800. "$type": "SlotTypeContract"
  801. }
  802. ],
  803. "slotName": "Local Translation",
  804. "toolTip": "Position to spawn.",
  805. "DisplayGroup": {
  806. "Value": 929942742
  807. },
  808. "Descriptor": {
  809. "ConnectionType": 1,
  810. "SlotType": 2
  811. },
  812. "DataType": 1
  813. },
  814. {
  815. "id": {
  816. "m_id": "{345E5F35-42B0-4C66-BDD5-00EC38E8B8D5}"
  817. },
  818. "contracts": [
  819. {
  820. "$type": "SlotTypeContract"
  821. }
  822. ],
  823. "slotName": "Local Rotation",
  824. "toolTip": "Rotation of spawn (in degrees).",
  825. "DisplayGroup": {
  826. "Value": 929942742
  827. },
  828. "Descriptor": {
  829. "ConnectionType": 1,
  830. "SlotType": 2
  831. },
  832. "DataType": 1
  833. },
  834. {
  835. "id": {
  836. "m_id": "{45705954-D77A-4008-8CC8-360EB32130A4}"
  837. },
  838. "contracts": [
  839. {
  840. "$type": "SlotTypeContract"
  841. }
  842. ],
  843. "slotName": "Local Scale",
  844. "toolTip": "Scale of spawn.",
  845. "DisplayGroup": {
  846. "Value": 929942742
  847. },
  848. "Descriptor": {
  849. "ConnectionType": 1,
  850. "SlotType": 2
  851. },
  852. "DataType": 1
  853. },
  854. {
  855. "id": {
  856. "m_id": "{DEDD337C-79DB-4D00-B8DC-245A4291767C}"
  857. },
  858. "contracts": [
  859. {
  860. "$type": "SlotTypeContract"
  861. }
  862. ],
  863. "slotName": "Spawn Requested",
  864. "DisplayGroup": {
  865. "Value": 929942742
  866. },
  867. "Descriptor": {
  868. "ConnectionType": 2,
  869. "SlotType": 1
  870. }
  871. },
  872. {
  873. "id": {
  874. "m_id": "{A1FC3E76-F6CA-45CB-8718-85B341025D7B}"
  875. },
  876. "contracts": [
  877. {
  878. "$type": "SlotTypeContract"
  879. }
  880. ],
  881. "slotName": "On Spawn Completed",
  882. "toolTip": "Called when spawning entities is completed.",
  883. "DisplayGroup": {
  884. "Value": 3165055374
  885. },
  886. "Descriptor": {
  887. "ConnectionType": 2,
  888. "SlotType": 1
  889. },
  890. "IsLatent": true
  891. },
  892. {
  893. "id": {
  894. "m_id": "{F08B61B9-BF2F-46EB-99D7-0764E01AC53B}"
  895. },
  896. "contracts": [
  897. {
  898. "$type": "SlotTypeContract"
  899. }
  900. ],
  901. "slotName": "SpawnTicketOut",
  902. "toolTip": "Ticket instance of the spawn result.",
  903. "DisplayDataType": {
  904. "m_type": 4,
  905. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  906. },
  907. "DisplayGroup": {
  908. "Value": 3165055374
  909. },
  910. "Descriptor": {
  911. "ConnectionType": 2,
  912. "SlotType": 2
  913. },
  914. "DataType": 1
  915. },
  916. {
  917. "id": {
  918. "m_id": "{D93BC6EE-96EA-4E9F-9D8E-D8F6EF1E546A}"
  919. },
  920. "contracts": [
  921. {
  922. "$type": "SlotTypeContract"
  923. }
  924. ],
  925. "slotName": "SpawnedEntitiesList",
  926. "toolTip": "List of spawned entities sorted by hierarchy with the root being first.",
  927. "DisplayDataType": {
  928. "m_type": 4,
  929. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  930. },
  931. "DisplayGroup": {
  932. "Value": 3165055374
  933. },
  934. "Descriptor": {
  935. "ConnectionType": 2,
  936. "SlotType": 2
  937. },
  938. "DataType": 1
  939. }
  940. ],
  941. "Datums": [
  942. {
  943. "scriptCanvasType": {
  944. "m_type": 4,
  945. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  946. },
  947. "isNullPointer": false,
  948. "$type": "AzFramework::EntitySpawnTicket",
  949. "label": "SpawnTicket"
  950. },
  951. {
  952. "scriptCanvasType": {
  953. "m_type": 1
  954. },
  955. "isNullPointer": false,
  956. "$type": "EntityId",
  957. "value": {
  958. "id": 2901262558
  959. },
  960. "label": "ParentId"
  961. },
  962. {
  963. "scriptCanvasType": {
  964. "m_type": 8
  965. },
  966. "isNullPointer": false,
  967. "$type": "Vector3",
  968. "value": [
  969. 0.0,
  970. 0.0,
  971. 0.0
  972. ],
  973. "label": "Local Translation"
  974. },
  975. {
  976. "scriptCanvasType": {
  977. "m_type": 8
  978. },
  979. "isNullPointer": false,
  980. "$type": "Vector3",
  981. "value": [
  982. 0.0,
  983. 0.0,
  984. 0.0
  985. ],
  986. "label": "Local Rotation"
  987. },
  988. {
  989. "scriptCanvasType": {
  990. "m_type": 3
  991. },
  992. "isNullPointer": false,
  993. "$type": "double",
  994. "value": 1.0,
  995. "label": "Local Scale"
  996. }
  997. ],
  998. "slotExecutionMap": {
  999. "ins": [
  1000. {
  1001. "_slotId": {
  1002. "m_id": "{68D1767D-D2C4-4346-958E-C1AC139DA39A}"
  1003. },
  1004. "_inputs": [
  1005. {
  1006. "_slotId": {
  1007. "m_id": "{712819C7-662D-4842-8795-2CDBDB03B338}"
  1008. }
  1009. },
  1010. {
  1011. "_slotId": {
  1012. "m_id": "{29EDB093-678A-42B9-A1A7-284C0C899499}"
  1013. }
  1014. },
  1015. {
  1016. "_slotId": {
  1017. "m_id": "{6AC0F129-D4BF-43EA-BC50-FD4EAFB7415B}"
  1018. }
  1019. },
  1020. {
  1021. "_slotId": {
  1022. "m_id": "{345E5F35-42B0-4C66-BDD5-00EC38E8B8D5}"
  1023. }
  1024. },
  1025. {
  1026. "_slotId": {
  1027. "m_id": "{45705954-D77A-4008-8CC8-360EB32130A4}"
  1028. }
  1029. }
  1030. ],
  1031. "_outs": [
  1032. {
  1033. "_slotId": {
  1034. "m_id": "{DEDD337C-79DB-4D00-B8DC-245A4291767C}"
  1035. },
  1036. "_name": "Spawn Requested",
  1037. "_interfaceSourceId": "{90000000-0000-0000-E00D-B46CD2010000}"
  1038. }
  1039. ],
  1040. "_interfaceSourceId": "{4055A2BD-D201-0000-8B7C-55DBFA7F0000}"
  1041. }
  1042. ],
  1043. "latents": [
  1044. {
  1045. "_slotId": {
  1046. "m_id": "{A1FC3E76-F6CA-45CB-8718-85B341025D7B}"
  1047. },
  1048. "_name": "On Spawn Completed",
  1049. "_outputs": [
  1050. {
  1051. "_slotId": {
  1052. "m_id": "{F08B61B9-BF2F-46EB-99D7-0764E01AC53B}"
  1053. }
  1054. },
  1055. {
  1056. "_slotId": {
  1057. "m_id": "{D93BC6EE-96EA-4E9F-9D8E-D8F6EF1E546A}"
  1058. }
  1059. }
  1060. ],
  1061. "_interfaceSourceId": "{4055A2BD-D201-0000-8B7C-55DBFA7F0000}"
  1062. }
  1063. ]
  1064. }
  1065. }
  1066. }
  1067. },
  1068. {
  1069. "Id": {
  1070. "id": 817008111827
  1071. },
  1072. "Name": "SC-Node(Get First Element)",
  1073. "Components": {
  1074. "Component_[2200801696247878991]": {
  1075. "$type": "MethodOverloaded",
  1076. "Id": 2200801696247878991,
  1077. "Slots": [
  1078. {
  1079. "id": {
  1080. "m_id": "{A31D3FA1-3B3E-46F5-BB0E-4A3E834F868D}"
  1081. },
  1082. "DynamicTypeOverride": 2,
  1083. "contracts": [
  1084. {
  1085. "$type": "SlotTypeContract"
  1086. },
  1087. {
  1088. "$type": "OverloadContract"
  1089. }
  1090. ],
  1091. "slotName": "Container",
  1092. "toolTip": "The container to get the first element from",
  1093. "DisplayDataType": {
  1094. "m_type": 4,
  1095. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  1096. },
  1097. "Descriptor": {
  1098. "ConnectionType": 1,
  1099. "SlotType": 2
  1100. },
  1101. "DataType": 1
  1102. },
  1103. {
  1104. "id": {
  1105. "m_id": "{100EF49D-20D4-48B5-8A04-ED58676CDDE7}"
  1106. },
  1107. "contracts": [
  1108. {
  1109. "$type": "SlotTypeContract"
  1110. }
  1111. ],
  1112. "slotName": "In",
  1113. "Descriptor": {
  1114. "ConnectionType": 1,
  1115. "SlotType": 1
  1116. }
  1117. },
  1118. {
  1119. "id": {
  1120. "m_id": "{911CC676-DFD2-427C-8C11-6EB39D065240}"
  1121. },
  1122. "contracts": [
  1123. {
  1124. "$type": "SlotTypeContract"
  1125. }
  1126. ],
  1127. "slotName": "Out",
  1128. "Descriptor": {
  1129. "ConnectionType": 2,
  1130. "SlotType": 1
  1131. }
  1132. },
  1133. {
  1134. "id": {
  1135. "m_id": "{61846CE2-6E31-4B30-BADD-073AE0A53642}"
  1136. },
  1137. "contracts": [
  1138. {
  1139. "$type": "SlotTypeContract"
  1140. }
  1141. ],
  1142. "slotName": "Empty",
  1143. "Descriptor": {
  1144. "ConnectionType": 2,
  1145. "SlotType": 1
  1146. }
  1147. },
  1148. {
  1149. "id": {
  1150. "m_id": "{D228EC51-8DC7-42FF-BF8F-F99F6DBA3833}"
  1151. },
  1152. "DynamicTypeOverride": 1,
  1153. "contracts": [
  1154. {
  1155. "$type": "SlotTypeContract"
  1156. },
  1157. {
  1158. "$type": "OverloadContract"
  1159. }
  1160. ],
  1161. "slotName": "Value",
  1162. "DisplayDataType": {
  1163. "m_type": 1
  1164. },
  1165. "Descriptor": {
  1166. "ConnectionType": 2,
  1167. "SlotType": 2
  1168. },
  1169. "DataType": 1
  1170. }
  1171. ],
  1172. "Datums": [
  1173. {
  1174. "scriptCanvasType": {
  1175. "m_type": 4,
  1176. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  1177. },
  1178. "isNullPointer": false,
  1179. "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector<EntityId, allocator>",
  1180. "label": "Container"
  1181. }
  1182. ],
  1183. "methodType": 2,
  1184. "methodName": "Get First Element",
  1185. "className": "AZStd::vector<EntityId, allocator>",
  1186. "inputSlots": [
  1187. {
  1188. "m_id": "{A31D3FA1-3B3E-46F5-BB0E-4A3E834F868D}"
  1189. }
  1190. ],
  1191. "orderedInputSlotIds": [
  1192. {
  1193. "m_id": "{A31D3FA1-3B3E-46F5-BB0E-4A3E834F868D}"
  1194. }
  1195. ],
  1196. "outputSlotIds": [
  1197. {
  1198. "m_id": "{D228EC51-8DC7-42FF-BF8F-F99F6DBA3833}"
  1199. }
  1200. ]
  1201. }
  1202. }
  1203. },
  1204. {
  1205. "Id": {
  1206. "id": 877137653971
  1207. },
  1208. "Name": "SC-Node(ExecuteConsoleCommand)",
  1209. "Components": {
  1210. "Component_[2520147819935763822]": {
  1211. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1212. "Id": 2520147819935763822,
  1213. "Slots": [
  1214. {
  1215. "id": {
  1216. "m_id": "{6714FFA6-E7B8-46BA-B75B-3A0A0A9281BF}"
  1217. },
  1218. "contracts": [
  1219. {
  1220. "$type": "SlotTypeContract"
  1221. }
  1222. ],
  1223. "slotName": "String",
  1224. "Descriptor": {
  1225. "ConnectionType": 1,
  1226. "SlotType": 2
  1227. },
  1228. "DataType": 1
  1229. },
  1230. {
  1231. "id": {
  1232. "m_id": "{AAE609AF-34C7-43E3-A39F-D18B0B4F1522}"
  1233. },
  1234. "contracts": [
  1235. {
  1236. "$type": "SlotTypeContract"
  1237. }
  1238. ],
  1239. "slotName": "In",
  1240. "Descriptor": {
  1241. "ConnectionType": 1,
  1242. "SlotType": 1
  1243. }
  1244. },
  1245. {
  1246. "id": {
  1247. "m_id": "{55C18AE2-99C8-46AA-94D0-2F1AD0E35384}"
  1248. },
  1249. "contracts": [
  1250. {
  1251. "$type": "SlotTypeContract"
  1252. }
  1253. ],
  1254. "slotName": "Out",
  1255. "Descriptor": {
  1256. "ConnectionType": 2,
  1257. "SlotType": 1
  1258. }
  1259. }
  1260. ],
  1261. "Datums": [
  1262. {
  1263. "scriptCanvasType": {
  1264. "m_type": 5
  1265. },
  1266. "isNullPointer": false,
  1267. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1268. "value": "quit",
  1269. "label": "Command"
  1270. }
  1271. ],
  1272. "methodType": 0,
  1273. "methodName": "ExecuteConsoleCommand",
  1274. "className": "ConsoleRequestBus",
  1275. "resultSlotIDs": [
  1276. {}
  1277. ],
  1278. "inputSlots": [
  1279. {
  1280. "m_id": "{6714FFA6-E7B8-46BA-B75B-3A0A0A9281BF}"
  1281. }
  1282. ],
  1283. "prettyClassName": "ConsoleRequestBus"
  1284. }
  1285. }
  1286. },
  1287. {
  1288. "Id": {
  1289. "id": 864252752083
  1290. },
  1291. "Name": "SC-Node(CreateSpawnTicketNodeableNode)",
  1292. "Components": {
  1293. "Component_[2590109833714132695]": {
  1294. "$type": "CreateSpawnTicketNodeableNode",
  1295. "Id": 2590109833714132695,
  1296. "Slots": [
  1297. {
  1298. "id": {
  1299. "m_id": "{7441BD2C-F72D-45F0-A1F4-952520DC07C0}"
  1300. },
  1301. "contracts": [
  1302. {
  1303. "$type": "SlotTypeContract"
  1304. }
  1305. ],
  1306. "slotName": "Create Ticket",
  1307. "DisplayGroup": {
  1308. "Value": 3070342103
  1309. },
  1310. "Descriptor": {
  1311. "ConnectionType": 1,
  1312. "SlotType": 1
  1313. }
  1314. },
  1315. {
  1316. "id": {
  1317. "m_id": "{ED00FCC3-8414-4212-B6B7-81E1FCBD691A}"
  1318. },
  1319. "contracts": [
  1320. {
  1321. "$type": "SlotTypeContract"
  1322. }
  1323. ],
  1324. "slotName": "Prefab",
  1325. "toolTip": "Prefab source asset to spawn",
  1326. "DisplayGroup": {
  1327. "Value": 3070342103
  1328. },
  1329. "Descriptor": {
  1330. "ConnectionType": 1,
  1331. "SlotType": 2
  1332. },
  1333. "DataType": 1,
  1334. "IsReference": true,
  1335. "VariableReference": {
  1336. "m_id": "{02FA4EC5-AC3C-4E8E-B455-FD13156EFD37}"
  1337. }
  1338. },
  1339. {
  1340. "id": {
  1341. "m_id": "{261B78CE-4587-447B-A50B-FD1903517874}"
  1342. },
  1343. "contracts": [
  1344. {
  1345. "$type": "SlotTypeContract"
  1346. }
  1347. ],
  1348. "slotName": "Ticket Created",
  1349. "DisplayGroup": {
  1350. "Value": 3070342103
  1351. },
  1352. "Descriptor": {
  1353. "ConnectionType": 2,
  1354. "SlotType": 1
  1355. }
  1356. },
  1357. {
  1358. "id": {
  1359. "m_id": "{97C2AB7E-DBA5-4FD6-98EE-47BE2DFDE512}"
  1360. },
  1361. "contracts": [
  1362. {
  1363. "$type": "SlotTypeContract"
  1364. }
  1365. ],
  1366. "slotName": "SpawnTicket",
  1367. "DisplayDataType": {
  1368. "m_type": 4,
  1369. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  1370. },
  1371. "DisplayGroup": {
  1372. "Value": 3070342103
  1373. },
  1374. "Descriptor": {
  1375. "ConnectionType": 2,
  1376. "SlotType": 2
  1377. },
  1378. "DataType": 1,
  1379. "IsReference": true,
  1380. "VariableReference": {
  1381. "m_id": "{C241E2D6-48A7-4B50-A673-160B28B9253F}"
  1382. }
  1383. }
  1384. ],
  1385. "Datums": [
  1386. {
  1387. "scriptCanvasType": {
  1388. "m_type": 4,
  1389. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  1390. },
  1391. "isNullPointer": false,
  1392. "$type": "AzFramework::Scripts::SpawnableScriptAssetRef",
  1393. "label": "Prefab"
  1394. }
  1395. ],
  1396. "slotExecutionMap": {
  1397. "ins": [
  1398. {
  1399. "_slotId": {
  1400. "m_id": "{7441BD2C-F72D-45F0-A1F4-952520DC07C0}"
  1401. },
  1402. "_inputs": [
  1403. {
  1404. "_slotId": {
  1405. "m_id": "{ED00FCC3-8414-4212-B6B7-81E1FCBD691A}"
  1406. }
  1407. }
  1408. ],
  1409. "_outs": [
  1410. {
  1411. "_slotId": {
  1412. "m_id": "{261B78CE-4587-447B-A50B-FD1903517874}"
  1413. },
  1414. "_name": "Ticket Created",
  1415. "_outputs": [
  1416. {
  1417. "_slotId": {
  1418. "m_id": "{97C2AB7E-DBA5-4FD6-98EE-47BE2DFDE512}"
  1419. }
  1420. }
  1421. ],
  1422. "_interfaceSourceId": "{D0787176-D201-0000-9089-EF0574000000}"
  1423. }
  1424. ],
  1425. "_interfaceSourceId": "{20000EAF-D201-0000-4055-A2BDD2010000}"
  1426. }
  1427. ]
  1428. }
  1429. }
  1430. }
  1431. },
  1432. {
  1433. "Id": {
  1434. "id": 855662817491
  1435. },
  1436. "Name": "EBusEventHandler",
  1437. "Components": {
  1438. "Component_[5517647583758668860]": {
  1439. "$type": "EBusEventHandler",
  1440. "Id": 5517647583758668860,
  1441. "Slots": [
  1442. {
  1443. "id": {
  1444. "m_id": "{E90AF18C-2BC2-48B8-8172-B5194574C692}"
  1445. },
  1446. "contracts": [
  1447. {
  1448. "$type": "SlotTypeContract"
  1449. }
  1450. ],
  1451. "slotName": "Connect",
  1452. "toolTip": "Connect this event handler to the specified entity.",
  1453. "Descriptor": {
  1454. "ConnectionType": 1,
  1455. "SlotType": 1
  1456. }
  1457. },
  1458. {
  1459. "id": {
  1460. "m_id": "{DEBDB2DC-3610-4FBD-858B-76121E5A77F9}"
  1461. },
  1462. "contracts": [
  1463. {
  1464. "$type": "SlotTypeContract"
  1465. }
  1466. ],
  1467. "slotName": "Disconnect",
  1468. "toolTip": "Disconnect this event handler.",
  1469. "Descriptor": {
  1470. "ConnectionType": 1,
  1471. "SlotType": 1
  1472. }
  1473. },
  1474. {
  1475. "id": {
  1476. "m_id": "{D4C939F5-0EF8-46A8-94FC-408E568504F5}"
  1477. },
  1478. "contracts": [
  1479. {
  1480. "$type": "SlotTypeContract"
  1481. }
  1482. ],
  1483. "slotName": "OnConnected",
  1484. "toolTip": "Signaled when a connection has taken place.",
  1485. "Descriptor": {
  1486. "ConnectionType": 2,
  1487. "SlotType": 1
  1488. }
  1489. },
  1490. {
  1491. "id": {
  1492. "m_id": "{6F30A5F5-D4AA-4C82-89E5-D1A49ECC4FFE}"
  1493. },
  1494. "contracts": [
  1495. {
  1496. "$type": "SlotTypeContract"
  1497. }
  1498. ],
  1499. "slotName": "OnDisconnected",
  1500. "toolTip": "Signaled when this event handler is disconnected.",
  1501. "Descriptor": {
  1502. "ConnectionType": 2,
  1503. "SlotType": 1
  1504. }
  1505. },
  1506. {
  1507. "id": {
  1508. "m_id": "{2A4A4131-CAE3-4863-A0C5-B4C5BDD60692}"
  1509. },
  1510. "contracts": [
  1511. {
  1512. "$type": "SlotTypeContract"
  1513. }
  1514. ],
  1515. "slotName": "OnFailure",
  1516. "toolTip": "Signaled when it is not possible to connect this handler.",
  1517. "Descriptor": {
  1518. "ConnectionType": 2,
  1519. "SlotType": 1
  1520. }
  1521. },
  1522. {
  1523. "id": {
  1524. "m_id": "{55999B7B-820A-4309-9242-1B0C225765AB}"
  1525. },
  1526. "contracts": [
  1527. {
  1528. "$type": "SlotTypeContract"
  1529. }
  1530. ],
  1531. "slotName": "Source",
  1532. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  1533. "Descriptor": {
  1534. "ConnectionType": 1,
  1535. "SlotType": 2
  1536. },
  1537. "DataType": 1
  1538. },
  1539. {
  1540. "id": {
  1541. "m_id": "{8D8AEE89-53DA-4369-B2DA-680482F897AD}"
  1542. },
  1543. "contracts": [
  1544. {
  1545. "$type": "SlotTypeContract"
  1546. }
  1547. ],
  1548. "slotName": "EntityId",
  1549. "DisplayDataType": {
  1550. "m_type": 1
  1551. },
  1552. "Descriptor": {
  1553. "ConnectionType": 2,
  1554. "SlotType": 2
  1555. },
  1556. "DataType": 1
  1557. },
  1558. {
  1559. "id": {
  1560. "m_id": "{82A17F97-430B-494C-A3A6-B563F6734E24}"
  1561. },
  1562. "contracts": [
  1563. {
  1564. "$type": "SlotTypeContract"
  1565. }
  1566. ],
  1567. "slotName": "ExecutionSlot:OnEntityActivated",
  1568. "Descriptor": {
  1569. "ConnectionType": 2,
  1570. "SlotType": 1
  1571. },
  1572. "IsLatent": true
  1573. },
  1574. {
  1575. "id": {
  1576. "m_id": "{F23ACA0C-AA69-4952-89F3-82BE038779EC}"
  1577. },
  1578. "contracts": [
  1579. {
  1580. "$type": "SlotTypeContract"
  1581. }
  1582. ],
  1583. "slotName": "EntityId",
  1584. "DisplayDataType": {
  1585. "m_type": 1
  1586. },
  1587. "Descriptor": {
  1588. "ConnectionType": 2,
  1589. "SlotType": 2
  1590. },
  1591. "DataType": 1
  1592. },
  1593. {
  1594. "id": {
  1595. "m_id": "{77E34ABD-0940-4450-B7D1-21DD5A4EB499}"
  1596. },
  1597. "contracts": [
  1598. {
  1599. "$type": "SlotTypeContract"
  1600. }
  1601. ],
  1602. "slotName": "ExecutionSlot:OnEntityDeactivated",
  1603. "Descriptor": {
  1604. "ConnectionType": 2,
  1605. "SlotType": 1
  1606. },
  1607. "IsLatent": true
  1608. }
  1609. ],
  1610. "Datums": [
  1611. {
  1612. "scriptCanvasType": {
  1613. "m_type": 1
  1614. },
  1615. "isNullPointer": false,
  1616. "$type": "EntityId",
  1617. "value": {
  1618. "id": 2901262558
  1619. },
  1620. "label": "Source"
  1621. }
  1622. ],
  1623. "m_eventMap": [
  1624. {
  1625. "Key": {
  1626. "Value": 245425936
  1627. },
  1628. "Value": {
  1629. "m_eventName": "OnEntityActivated",
  1630. "m_eventId": {
  1631. "Value": 245425936
  1632. },
  1633. "m_eventSlotId": {
  1634. "m_id": "{82A17F97-430B-494C-A3A6-B563F6734E24}"
  1635. },
  1636. "m_parameterSlotIds": [
  1637. {
  1638. "m_id": "{8D8AEE89-53DA-4369-B2DA-680482F897AD}"
  1639. }
  1640. ],
  1641. "m_numExpectedArguments": 1
  1642. }
  1643. },
  1644. {
  1645. "Key": {
  1646. "Value": 4273369222
  1647. },
  1648. "Value": {
  1649. "m_eventName": "OnEntityDeactivated",
  1650. "m_eventId": {
  1651. "Value": 4273369222
  1652. },
  1653. "m_eventSlotId": {
  1654. "m_id": "{77E34ABD-0940-4450-B7D1-21DD5A4EB499}"
  1655. },
  1656. "m_parameterSlotIds": [
  1657. {
  1658. "m_id": "{F23ACA0C-AA69-4952-89F3-82BE038779EC}"
  1659. }
  1660. ],
  1661. "m_numExpectedArguments": 1
  1662. }
  1663. }
  1664. ],
  1665. "m_ebusName": "EntityBus",
  1666. "m_busId": {
  1667. "Value": 3358774020
  1668. }
  1669. }
  1670. }
  1671. },
  1672. {
  1673. "Id": {
  1674. "id": 847072882899
  1675. },
  1676. "Name": "SC-Node(EqualTo)",
  1677. "Components": {
  1678. "Component_[6417402350494856249]": {
  1679. "$type": "EqualTo",
  1680. "Id": 6417402350494856249,
  1681. "Slots": [
  1682. {
  1683. "id": {
  1684. "m_id": "{AFCD2166-2A73-4BE7-ACFD-BBA822ED038D}"
  1685. },
  1686. "contracts": [
  1687. {
  1688. "$type": "SlotTypeContract"
  1689. }
  1690. ],
  1691. "slotName": "Result",
  1692. "DisplayDataType": {
  1693. "m_type": 0
  1694. },
  1695. "Descriptor": {
  1696. "ConnectionType": 2,
  1697. "SlotType": 2
  1698. },
  1699. "DataType": 1
  1700. },
  1701. {
  1702. "id": {
  1703. "m_id": "{D223D0FE-B31D-4B2A-9A02-88EE8F7CBD24}"
  1704. },
  1705. "contracts": [
  1706. {
  1707. "$type": "SlotTypeContract"
  1708. }
  1709. ],
  1710. "slotName": "In",
  1711. "toolTip": "Signal to perform the evaluation when desired.",
  1712. "Descriptor": {
  1713. "ConnectionType": 1,
  1714. "SlotType": 1
  1715. }
  1716. },
  1717. {
  1718. "id": {
  1719. "m_id": "{21C881DD-5EBD-4441-AC93-F3A07F4D7189}"
  1720. },
  1721. "contracts": [
  1722. {
  1723. "$type": "SlotTypeContract"
  1724. }
  1725. ],
  1726. "slotName": "True",
  1727. "toolTip": "Signaled if the result of the operation is true.",
  1728. "Descriptor": {
  1729. "ConnectionType": 2,
  1730. "SlotType": 1
  1731. }
  1732. },
  1733. {
  1734. "id": {
  1735. "m_id": "{92345ED8-1332-434D-80F7-0B4CC73E8B80}"
  1736. },
  1737. "contracts": [
  1738. {
  1739. "$type": "SlotTypeContract"
  1740. }
  1741. ],
  1742. "slotName": "False",
  1743. "toolTip": "Signaled if the result of the operation is false.",
  1744. "Descriptor": {
  1745. "ConnectionType": 2,
  1746. "SlotType": 1
  1747. }
  1748. },
  1749. {
  1750. "id": {
  1751. "m_id": "{D7E9B057-6DE3-49C5-B09D-C44D0F067750}"
  1752. },
  1753. "DynamicTypeOverride": 3,
  1754. "contracts": [
  1755. {
  1756. "$type": "SlotTypeContract"
  1757. }
  1758. ],
  1759. "slotName": "Value A",
  1760. "DisplayDataType": {
  1761. "m_type": 5
  1762. },
  1763. "Descriptor": {
  1764. "ConnectionType": 1,
  1765. "SlotType": 2
  1766. },
  1767. "DynamicGroup": {
  1768. "Value": 3545012108
  1769. },
  1770. "DataType": 1
  1771. },
  1772. {
  1773. "id": {
  1774. "m_id": "{37FA17B1-E0BA-4533-8CF7-1F85F20507AE}"
  1775. },
  1776. "DynamicTypeOverride": 3,
  1777. "contracts": [
  1778. {
  1779. "$type": "SlotTypeContract"
  1780. }
  1781. ],
  1782. "slotName": "Value B",
  1783. "DisplayDataType": {
  1784. "m_type": 5
  1785. },
  1786. "Descriptor": {
  1787. "ConnectionType": 1,
  1788. "SlotType": 2
  1789. },
  1790. "DynamicGroup": {
  1791. "Value": 3545012108
  1792. },
  1793. "DataType": 1,
  1794. "IsReference": true,
  1795. "VariableReference": {
  1796. "m_id": "{C2622DC6-AAE4-482F-B818-BE5C97101A6D}"
  1797. }
  1798. }
  1799. ],
  1800. "Datums": [
  1801. {
  1802. "scriptCanvasType": {
  1803. "m_type": 5
  1804. },
  1805. "isNullPointer": false,
  1806. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1807. "value": "",
  1808. "label": "Value A"
  1809. },
  1810. {
  1811. "scriptCanvasType": {
  1812. "m_type": 5
  1813. },
  1814. "isNullPointer": false,
  1815. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1816. "value": "PinkFlower",
  1817. "label": "Value B"
  1818. }
  1819. ]
  1820. }
  1821. }
  1822. },
  1823. {
  1824. "Id": {
  1825. "id": 838482948307
  1826. },
  1827. "Name": "SC-Node(Get First Element)",
  1828. "Components": {
  1829. "Component_[6434009756529778312]": {
  1830. "$type": "MethodOverloaded",
  1831. "Id": 6434009756529778312,
  1832. "Slots": [
  1833. {
  1834. "id": {
  1835. "m_id": "{71699F23-2FB3-4672-B7C0-980BAFB277F6}"
  1836. },
  1837. "DynamicTypeOverride": 2,
  1838. "contracts": [
  1839. {
  1840. "$type": "SlotTypeContract"
  1841. },
  1842. {
  1843. "$type": "OverloadContract"
  1844. }
  1845. ],
  1846. "slotName": "Container",
  1847. "toolTip": "The container to get the first element from",
  1848. "DisplayDataType": {
  1849. "m_type": 4,
  1850. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  1851. },
  1852. "Descriptor": {
  1853. "ConnectionType": 1,
  1854. "SlotType": 2
  1855. },
  1856. "DataType": 1
  1857. },
  1858. {
  1859. "id": {
  1860. "m_id": "{35A7778F-8756-46B9-B990-0C71081D835F}"
  1861. },
  1862. "contracts": [
  1863. {
  1864. "$type": "SlotTypeContract"
  1865. }
  1866. ],
  1867. "slotName": "In",
  1868. "Descriptor": {
  1869. "ConnectionType": 1,
  1870. "SlotType": 1
  1871. }
  1872. },
  1873. {
  1874. "id": {
  1875. "m_id": "{1DE2E263-83BB-4DF8-8DFA-DBAB3EC64339}"
  1876. },
  1877. "contracts": [
  1878. {
  1879. "$type": "SlotTypeContract"
  1880. }
  1881. ],
  1882. "slotName": "Out",
  1883. "Descriptor": {
  1884. "ConnectionType": 2,
  1885. "SlotType": 1
  1886. }
  1887. },
  1888. {
  1889. "id": {
  1890. "m_id": "{9A101B14-5A51-4892-9698-EB429321FB64}"
  1891. },
  1892. "contracts": [
  1893. {
  1894. "$type": "SlotTypeContract"
  1895. }
  1896. ],
  1897. "slotName": "Empty",
  1898. "Descriptor": {
  1899. "ConnectionType": 2,
  1900. "SlotType": 1
  1901. }
  1902. },
  1903. {
  1904. "id": {
  1905. "m_id": "{D0976C97-CAE2-490A-B386-2188AD0C6C42}"
  1906. },
  1907. "DynamicTypeOverride": 1,
  1908. "contracts": [
  1909. {
  1910. "$type": "SlotTypeContract"
  1911. },
  1912. {
  1913. "$type": "OverloadContract"
  1914. }
  1915. ],
  1916. "slotName": "Value",
  1917. "DisplayDataType": {
  1918. "m_type": 1
  1919. },
  1920. "Descriptor": {
  1921. "ConnectionType": 2,
  1922. "SlotType": 2
  1923. },
  1924. "DataType": 1
  1925. }
  1926. ],
  1927. "Datums": [
  1928. {
  1929. "scriptCanvasType": {
  1930. "m_type": 4,
  1931. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  1932. },
  1933. "isNullPointer": false,
  1934. "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector<EntityId, allocator>",
  1935. "label": "Container"
  1936. }
  1937. ],
  1938. "methodType": 2,
  1939. "methodName": "Get First Element",
  1940. "className": "AZStd::vector<EntityId, allocator>",
  1941. "inputSlots": [
  1942. {
  1943. "m_id": "{71699F23-2FB3-4672-B7C0-980BAFB277F6}"
  1944. }
  1945. ],
  1946. "orderedInputSlotIds": [
  1947. {
  1948. "m_id": "{71699F23-2FB3-4672-B7C0-980BAFB277F6}"
  1949. }
  1950. ],
  1951. "outputSlotIds": [
  1952. {
  1953. "m_id": "{D0976C97-CAE2-490A-B386-2188AD0C6C42}"
  1954. }
  1955. ]
  1956. }
  1957. }
  1958. },
  1959. {
  1960. "Id": {
  1961. "id": 829893013715
  1962. },
  1963. "Name": "SC-Node(TimeDelayNodeableNode)",
  1964. "Components": {
  1965. "Component_[7023975595939266156]": {
  1966. "$type": "TimeDelayNodeableNode",
  1967. "Id": 7023975595939266156,
  1968. "Slots": [
  1969. {
  1970. "id": {
  1971. "m_id": "{E439EBB8-366C-4BF5-A520-90D69149A627}"
  1972. },
  1973. "contracts": [
  1974. {
  1975. "$type": "SlotTypeContract"
  1976. }
  1977. ],
  1978. "slotName": "Start",
  1979. "DisplayGroup": {
  1980. "Value": 2675529103
  1981. },
  1982. "Descriptor": {
  1983. "ConnectionType": 1,
  1984. "SlotType": 1
  1985. }
  1986. },
  1987. {
  1988. "id": {
  1989. "m_id": "{3B93E2F8-E34F-4CBA-9752-61D41E287A70}"
  1990. },
  1991. "contracts": [
  1992. {
  1993. "$type": "SlotTypeContract"
  1994. }
  1995. ],
  1996. "slotName": "Delay",
  1997. "toolTip": "The amount of time to delay before the Done is signalled.",
  1998. "DisplayGroup": {
  1999. "Value": 2675529103
  2000. },
  2001. "Descriptor": {
  2002. "ConnectionType": 1,
  2003. "SlotType": 2
  2004. },
  2005. "DataType": 1
  2006. },
  2007. {
  2008. "id": {
  2009. "m_id": "{99CF5CC0-F240-4BC2-9FE4-72B1C1F52040}"
  2010. },
  2011. "contracts": [
  2012. {
  2013. "$type": "SlotTypeContract"
  2014. }
  2015. ],
  2016. "slotName": "On Start",
  2017. "DisplayGroup": {
  2018. "Value": 2675529103
  2019. },
  2020. "Descriptor": {
  2021. "ConnectionType": 2,
  2022. "SlotType": 1
  2023. }
  2024. },
  2025. {
  2026. "id": {
  2027. "m_id": "{11A6DF8E-DC8D-4F85-B914-5F73A1191B46}"
  2028. },
  2029. "contracts": [
  2030. {
  2031. "$type": "SlotTypeContract"
  2032. }
  2033. ],
  2034. "slotName": "Done",
  2035. "toolTip": "Signaled after waiting for the specified amount of times.",
  2036. "DisplayGroup": {
  2037. "Value": 271442091
  2038. },
  2039. "Descriptor": {
  2040. "ConnectionType": 2,
  2041. "SlotType": 1
  2042. },
  2043. "IsLatent": true
  2044. }
  2045. ],
  2046. "Datums": [
  2047. {
  2048. "scriptCanvasType": {
  2049. "m_type": 3
  2050. },
  2051. "isNullPointer": false,
  2052. "$type": "double",
  2053. "value": 3.0,
  2054. "label": "Delay"
  2055. }
  2056. ],
  2057. "nodeable": {
  2058. "m_timeUnits": 2
  2059. },
  2060. "slotExecutionMap": {
  2061. "ins": [
  2062. {
  2063. "_slotId": {
  2064. "m_id": "{E439EBB8-366C-4BF5-A520-90D69149A627}"
  2065. },
  2066. "_inputs": [
  2067. {
  2068. "_slotId": {
  2069. "m_id": "{3B93E2F8-E34F-4CBA-9752-61D41E287A70}"
  2070. }
  2071. }
  2072. ],
  2073. "_outs": [
  2074. {
  2075. "_slotId": {
  2076. "m_id": "{99CF5CC0-F240-4BC2-9FE4-72B1C1F52040}"
  2077. },
  2078. "_name": "On Start",
  2079. "_interfaceSourceId": "{08894F32-A700-0000-0E00-000007000000}"
  2080. }
  2081. ],
  2082. "_interfaceSourceId": "{C8874F32-A700-0000-0000-000000000000}"
  2083. }
  2084. ],
  2085. "latents": [
  2086. {
  2087. "_slotId": {
  2088. "m_id": "{11A6DF8E-DC8D-4F85-B914-5F73A1191B46}"
  2089. },
  2090. "_name": "Done",
  2091. "_interfaceSourceId": "{C8874F32-A700-0000-0000-000000000000}"
  2092. }
  2093. ]
  2094. }
  2095. }
  2096. }
  2097. },
  2098. {
  2099. "Id": {
  2100. "id": 821303079123
  2101. },
  2102. "Name": "SC-Node(GetEntityName)",
  2103. "Components": {
  2104. "Component_[9364809958671277316]": {
  2105. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2106. "Id": 9364809958671277316,
  2107. "Slots": [
  2108. {
  2109. "id": {
  2110. "m_id": "{399230D8-D9BF-4459-B78C-19F2AA0A0B55}"
  2111. },
  2112. "contracts": [
  2113. {
  2114. "$type": "SlotTypeContract"
  2115. }
  2116. ],
  2117. "slotName": "EntityId",
  2118. "Descriptor": {
  2119. "ConnectionType": 1,
  2120. "SlotType": 2
  2121. },
  2122. "DataType": 1
  2123. },
  2124. {
  2125. "id": {
  2126. "m_id": "{F9427BCD-E560-4DC4-AEB8-2E73162EB2FE}"
  2127. },
  2128. "contracts": [
  2129. {
  2130. "$type": "SlotTypeContract"
  2131. }
  2132. ],
  2133. "slotName": "In",
  2134. "Descriptor": {
  2135. "ConnectionType": 1,
  2136. "SlotType": 1
  2137. }
  2138. },
  2139. {
  2140. "id": {
  2141. "m_id": "{3A570387-E80C-463D-B0C2-7E94781B401A}"
  2142. },
  2143. "contracts": [
  2144. {
  2145. "$type": "SlotTypeContract"
  2146. }
  2147. ],
  2148. "slotName": "Out",
  2149. "Descriptor": {
  2150. "ConnectionType": 2,
  2151. "SlotType": 1
  2152. }
  2153. },
  2154. {
  2155. "id": {
  2156. "m_id": "{64F8A2EB-E2C9-466D-90D6-C6DBAE8836BE}"
  2157. },
  2158. "contracts": [
  2159. {
  2160. "$type": "SlotTypeContract"
  2161. }
  2162. ],
  2163. "slotName": "String",
  2164. "DisplayDataType": {
  2165. "m_type": 5
  2166. },
  2167. "Descriptor": {
  2168. "ConnectionType": 2,
  2169. "SlotType": 2
  2170. },
  2171. "DataType": 1
  2172. }
  2173. ],
  2174. "Datums": [
  2175. {
  2176. "scriptCanvasType": {
  2177. "m_type": 1
  2178. },
  2179. "isNullPointer": false,
  2180. "$type": "EntityId",
  2181. "value": {
  2182. "id": 2901262558
  2183. },
  2184. "label": "Entity Id"
  2185. }
  2186. ],
  2187. "methodType": 0,
  2188. "methodName": "GetEntityName",
  2189. "className": "GameEntityContextRequestBus",
  2190. "resultSlotIDs": [
  2191. {}
  2192. ],
  2193. "inputSlots": [
  2194. {
  2195. "m_id": "{399230D8-D9BF-4459-B78C-19F2AA0A0B55}"
  2196. }
  2197. ],
  2198. "prettyClassName": "GameEntityContextRequestBus"
  2199. }
  2200. }
  2201. },
  2202. {
  2203. "Id": {
  2204. "id": 881432621267
  2205. },
  2206. "Name": "SC-Node(GetEntityName)",
  2207. "Components": {
  2208. "Component_[9364809958671277316]": {
  2209. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2210. "Id": 9364809958671277316,
  2211. "Slots": [
  2212. {
  2213. "id": {
  2214. "m_id": "{399230D8-D9BF-4459-B78C-19F2AA0A0B55}"
  2215. },
  2216. "contracts": [
  2217. {
  2218. "$type": "SlotTypeContract"
  2219. }
  2220. ],
  2221. "slotName": "EntityId",
  2222. "Descriptor": {
  2223. "ConnectionType": 1,
  2224. "SlotType": 2
  2225. },
  2226. "DataType": 1
  2227. },
  2228. {
  2229. "id": {
  2230. "m_id": "{F9427BCD-E560-4DC4-AEB8-2E73162EB2FE}"
  2231. },
  2232. "contracts": [
  2233. {
  2234. "$type": "SlotTypeContract"
  2235. }
  2236. ],
  2237. "slotName": "In",
  2238. "Descriptor": {
  2239. "ConnectionType": 1,
  2240. "SlotType": 1
  2241. }
  2242. },
  2243. {
  2244. "id": {
  2245. "m_id": "{3A570387-E80C-463D-B0C2-7E94781B401A}"
  2246. },
  2247. "contracts": [
  2248. {
  2249. "$type": "SlotTypeContract"
  2250. }
  2251. ],
  2252. "slotName": "Out",
  2253. "Descriptor": {
  2254. "ConnectionType": 2,
  2255. "SlotType": 1
  2256. }
  2257. },
  2258. {
  2259. "id": {
  2260. "m_id": "{64F8A2EB-E2C9-466D-90D6-C6DBAE8836BE}"
  2261. },
  2262. "contracts": [
  2263. {
  2264. "$type": "SlotTypeContract"
  2265. }
  2266. ],
  2267. "slotName": "String",
  2268. "DisplayDataType": {
  2269. "m_type": 5
  2270. },
  2271. "Descriptor": {
  2272. "ConnectionType": 2,
  2273. "SlotType": 2
  2274. },
  2275. "DataType": 1
  2276. }
  2277. ],
  2278. "Datums": [
  2279. {
  2280. "scriptCanvasType": {
  2281. "m_type": 1
  2282. },
  2283. "isNullPointer": false,
  2284. "$type": "EntityId",
  2285. "value": {
  2286. "id": 2901262558
  2287. },
  2288. "label": "Entity Id"
  2289. }
  2290. ],
  2291. "methodType": 0,
  2292. "methodName": "GetEntityName",
  2293. "className": "GameEntityContextRequestBus",
  2294. "resultSlotIDs": [
  2295. {}
  2296. ],
  2297. "inputSlots": [
  2298. {
  2299. "m_id": "{399230D8-D9BF-4459-B78C-19F2AA0A0B55}"
  2300. }
  2301. ],
  2302. "prettyClassName": "GameEntityContextRequestBus"
  2303. }
  2304. }
  2305. },
  2306. {
  2307. "Id": {
  2308. "id": 868547719379
  2309. },
  2310. "Name": "SC-Node(Get Size)",
  2311. "Components": {
  2312. "Component_[9719862972839798138]": {
  2313. "$type": "MethodOverloaded",
  2314. "Id": 9719862972839798138,
  2315. "Slots": [
  2316. {
  2317. "id": {
  2318. "m_id": "{246D0E40-2021-45FB-8E16-BE07CFAD503C}"
  2319. },
  2320. "DynamicTypeOverride": 2,
  2321. "contracts": [
  2322. {
  2323. "$type": "SlotTypeContract"
  2324. },
  2325. {
  2326. "$type": "OverloadContract"
  2327. }
  2328. ],
  2329. "slotName": "Container",
  2330. "toolTip": "The container to get the size of",
  2331. "DisplayDataType": {
  2332. "m_type": 4,
  2333. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2334. },
  2335. "Descriptor": {
  2336. "ConnectionType": 1,
  2337. "SlotType": 2
  2338. },
  2339. "DataType": 1
  2340. },
  2341. {
  2342. "id": {
  2343. "m_id": "{CC1B608F-49ED-44F6-A416-FE5E0C00C8A7}"
  2344. },
  2345. "contracts": [
  2346. {
  2347. "$type": "SlotTypeContract"
  2348. }
  2349. ],
  2350. "slotName": "In",
  2351. "Descriptor": {
  2352. "ConnectionType": 1,
  2353. "SlotType": 1
  2354. }
  2355. },
  2356. {
  2357. "id": {
  2358. "m_id": "{78C3014C-171A-4923-9A38-1F707985B686}"
  2359. },
  2360. "contracts": [
  2361. {
  2362. "$type": "SlotTypeContract"
  2363. }
  2364. ],
  2365. "slotName": "Out",
  2366. "Descriptor": {
  2367. "ConnectionType": 2,
  2368. "SlotType": 1
  2369. }
  2370. },
  2371. {
  2372. "id": {
  2373. "m_id": "{E1BD4F2D-D8C3-487F-BD55-E8CF1829BD20}"
  2374. },
  2375. "contracts": [
  2376. {
  2377. "$type": "SlotTypeContract"
  2378. }
  2379. ],
  2380. "slotName": "Number",
  2381. "DisplayDataType": {
  2382. "m_type": 3
  2383. },
  2384. "Descriptor": {
  2385. "ConnectionType": 2,
  2386. "SlotType": 2
  2387. },
  2388. "DataType": 1,
  2389. "IsReference": true,
  2390. "VariableReference": {
  2391. "m_id": "{A0E88790-169A-4E16-A5AF-EF8DD249798D}"
  2392. }
  2393. }
  2394. ],
  2395. "Datums": [
  2396. {
  2397. "scriptCanvasType": {
  2398. "m_type": 4,
  2399. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2400. },
  2401. "isNullPointer": false,
  2402. "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector<EntityId, allocator>",
  2403. "label": "Container"
  2404. }
  2405. ],
  2406. "methodType": 2,
  2407. "methodName": "Get Size",
  2408. "className": "AZStd::vector<EntityId, allocator>",
  2409. "inputSlots": [
  2410. {
  2411. "m_id": "{246D0E40-2021-45FB-8E16-BE07CFAD503C}"
  2412. }
  2413. ],
  2414. "orderedInputSlotIds": [
  2415. {
  2416. "m_id": "{246D0E40-2021-45FB-8E16-BE07CFAD503C}"
  2417. }
  2418. ],
  2419. "outputSlotIds": [
  2420. {
  2421. "m_id": "{E1BD4F2D-D8C3-487F-BD55-E8CF1829BD20}"
  2422. }
  2423. ]
  2424. }
  2425. }
  2426. }
  2427. ],
  2428. "m_connections": [
  2429. {
  2430. "Id": {
  2431. "id": 885727588563
  2432. },
  2433. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(CreateSpawnTicket: Create Ticket)",
  2434. "Components": {
  2435. "Component_[7784005581259524754]": {
  2436. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2437. "Id": 7784005581259524754,
  2438. "sourceEndpoint": {
  2439. "nodeId": {
  2440. "id": 855662817491
  2441. },
  2442. "slotId": {
  2443. "m_id": "{82A17F97-430B-494C-A3A6-B563F6734E24}"
  2444. }
  2445. },
  2446. "targetEndpoint": {
  2447. "nodeId": {
  2448. "id": 864252752083
  2449. },
  2450. "slotId": {
  2451. "m_id": "{7441BD2C-F72D-45F0-A1F4-952520DC07C0}"
  2452. }
  2453. }
  2454. }
  2455. }
  2456. },
  2457. {
  2458. "Id": {
  2459. "id": 890022555859
  2460. },
  2461. "Name": "srcEndpoint=(CreateSpawnTicket: Ticket Created), destEndpoint=(Spawn: Request Spawn)",
  2462. "Components": {
  2463. "Component_[14607847629907400818]": {
  2464. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2465. "Id": 14607847629907400818,
  2466. "sourceEndpoint": {
  2467. "nodeId": {
  2468. "id": 864252752083
  2469. },
  2470. "slotId": {
  2471. "m_id": "{261B78CE-4587-447B-A50B-FD1903517874}"
  2472. }
  2473. },
  2474. "targetEndpoint": {
  2475. "nodeId": {
  2476. "id": 825598046419
  2477. },
  2478. "slotId": {
  2479. "m_id": "{68D1767D-D2C4-4346-958E-C1AC139DA39A}"
  2480. }
  2481. }
  2482. }
  2483. }
  2484. },
  2485. {
  2486. "Id": {
  2487. "id": 894317523155
  2488. },
  2489. "Name": "srcEndpoint=(Spawn: On Spawn Completed), destEndpoint=(Get First Element: In)",
  2490. "Components": {
  2491. "Component_[6754296153738688263]": {
  2492. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2493. "Id": 6754296153738688263,
  2494. "sourceEndpoint": {
  2495. "nodeId": {
  2496. "id": 825598046419
  2497. },
  2498. "slotId": {
  2499. "m_id": "{A1FC3E76-F6CA-45CB-8718-85B341025D7B}"
  2500. }
  2501. },
  2502. "targetEndpoint": {
  2503. "nodeId": {
  2504. "id": 838482948307
  2505. },
  2506. "slotId": {
  2507. "m_id": "{35A7778F-8756-46B9-B990-0C71081D835F}"
  2508. }
  2509. }
  2510. }
  2511. }
  2512. },
  2513. {
  2514. "Id": {
  2515. "id": 898612490451
  2516. },
  2517. "Name": "srcEndpoint=(Spawn: SpawnedEntitiesList), destEndpoint=(Get First Element: Container)",
  2518. "Components": {
  2519. "Component_[1144160646843458345]": {
  2520. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2521. "Id": 1144160646843458345,
  2522. "sourceEndpoint": {
  2523. "nodeId": {
  2524. "id": 825598046419
  2525. },
  2526. "slotId": {
  2527. "m_id": "{D93BC6EE-96EA-4E9F-9D8E-D8F6EF1E546A}"
  2528. }
  2529. },
  2530. "targetEndpoint": {
  2531. "nodeId": {
  2532. "id": 838482948307
  2533. },
  2534. "slotId": {
  2535. "m_id": "{71699F23-2FB3-4672-B7C0-980BAFB277F6}"
  2536. }
  2537. }
  2538. }
  2539. }
  2540. },
  2541. {
  2542. "Id": {
  2543. "id": 902907457747
  2544. },
  2545. "Name": "srcEndpoint=(Get First Element: Out), destEndpoint=(GetEntityName: In)",
  2546. "Components": {
  2547. "Component_[17778447957624199727]": {
  2548. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2549. "Id": 17778447957624199727,
  2550. "sourceEndpoint": {
  2551. "nodeId": {
  2552. "id": 838482948307
  2553. },
  2554. "slotId": {
  2555. "m_id": "{1DE2E263-83BB-4DF8-8DFA-DBAB3EC64339}"
  2556. }
  2557. },
  2558. "targetEndpoint": {
  2559. "nodeId": {
  2560. "id": 821303079123
  2561. },
  2562. "slotId": {
  2563. "m_id": "{F9427BCD-E560-4DC4-AEB8-2E73162EB2FE}"
  2564. }
  2565. }
  2566. }
  2567. }
  2568. },
  2569. {
  2570. "Id": {
  2571. "id": 907202425043
  2572. },
  2573. "Name": "srcEndpoint=(GetEntityName: String), destEndpoint=(Equal To (==): Value A)",
  2574. "Components": {
  2575. "Component_[4385943441842266488]": {
  2576. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2577. "Id": 4385943441842266488,
  2578. "sourceEndpoint": {
  2579. "nodeId": {
  2580. "id": 821303079123
  2581. },
  2582. "slotId": {
  2583. "m_id": "{64F8A2EB-E2C9-466D-90D6-C6DBAE8836BE}"
  2584. }
  2585. },
  2586. "targetEndpoint": {
  2587. "nodeId": {
  2588. "id": 847072882899
  2589. },
  2590. "slotId": {
  2591. "m_id": "{D7E9B057-6DE3-49C5-B09D-C44D0F067750}"
  2592. }
  2593. }
  2594. }
  2595. }
  2596. },
  2597. {
  2598. "Id": {
  2599. "id": 911497392339
  2600. },
  2601. "Name": "srcEndpoint=(GetEntityName: Out), destEndpoint=(Equal To (==): In)",
  2602. "Components": {
  2603. "Component_[9297548698540346141]": {
  2604. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2605. "Id": 9297548698540346141,
  2606. "sourceEndpoint": {
  2607. "nodeId": {
  2608. "id": 821303079123
  2609. },
  2610. "slotId": {
  2611. "m_id": "{3A570387-E80C-463D-B0C2-7E94781B401A}"
  2612. }
  2613. },
  2614. "targetEndpoint": {
  2615. "nodeId": {
  2616. "id": 847072882899
  2617. },
  2618. "slotId": {
  2619. "m_id": "{D223D0FE-B31D-4B2A-9A02-88EE8F7CBD24}"
  2620. }
  2621. }
  2622. }
  2623. }
  2624. },
  2625. {
  2626. "Id": {
  2627. "id": 915792359635
  2628. },
  2629. "Name": "srcEndpoint=(Equal To (==): True), destEndpoint=(GetChildren: In)",
  2630. "Components": {
  2631. "Component_[1767263492989913721]": {
  2632. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2633. "Id": 1767263492989913721,
  2634. "sourceEndpoint": {
  2635. "nodeId": {
  2636. "id": 847072882899
  2637. },
  2638. "slotId": {
  2639. "m_id": "{21C881DD-5EBD-4441-AC93-F3A07F4D7189}"
  2640. }
  2641. },
  2642. "targetEndpoint": {
  2643. "nodeId": {
  2644. "id": 872842686675
  2645. },
  2646. "slotId": {
  2647. "m_id": "{B5464203-43A4-42D5-96E7-D01DC534F399}"
  2648. }
  2649. }
  2650. }
  2651. }
  2652. },
  2653. {
  2654. "Id": {
  2655. "id": 920087326931
  2656. },
  2657. "Name": "srcEndpoint=(Get First Element: Value), destEndpoint=(GetEntityName: EntityId)",
  2658. "Components": {
  2659. "Component_[17661321960897252026]": {
  2660. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2661. "Id": 17661321960897252026,
  2662. "sourceEndpoint": {
  2663. "nodeId": {
  2664. "id": 838482948307
  2665. },
  2666. "slotId": {
  2667. "m_id": "{D0976C97-CAE2-490A-B386-2188AD0C6C42}"
  2668. }
  2669. },
  2670. "targetEndpoint": {
  2671. "nodeId": {
  2672. "id": 821303079123
  2673. },
  2674. "slotId": {
  2675. "m_id": "{399230D8-D9BF-4459-B78C-19F2AA0A0B55}"
  2676. }
  2677. }
  2678. }
  2679. }
  2680. },
  2681. {
  2682. "Id": {
  2683. "id": 924382294227
  2684. },
  2685. "Name": "srcEndpoint=(GetChildren: Array<EntityId>), destEndpoint=(Get Size: Container)",
  2686. "Components": {
  2687. "Component_[15253420703646829802]": {
  2688. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2689. "Id": 15253420703646829802,
  2690. "sourceEndpoint": {
  2691. "nodeId": {
  2692. "id": 872842686675
  2693. },
  2694. "slotId": {
  2695. "m_id": "{5C51C3C2-F694-4AA4-911D-E70E3EB44E6A}"
  2696. }
  2697. },
  2698. "targetEndpoint": {
  2699. "nodeId": {
  2700. "id": 868547719379
  2701. },
  2702. "slotId": {
  2703. "m_id": "{246D0E40-2021-45FB-8E16-BE07CFAD503C}"
  2704. }
  2705. }
  2706. }
  2707. }
  2708. },
  2709. {
  2710. "Id": {
  2711. "id": 928677261523
  2712. },
  2713. "Name": "srcEndpoint=(GetChildren: Out), destEndpoint=(Get Size: In)",
  2714. "Components": {
  2715. "Component_[17988643955877672187]": {
  2716. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2717. "Id": 17988643955877672187,
  2718. "sourceEndpoint": {
  2719. "nodeId": {
  2720. "id": 872842686675
  2721. },
  2722. "slotId": {
  2723. "m_id": "{4972897F-796E-4BCF-9D17-429460D3C201}"
  2724. }
  2725. },
  2726. "targetEndpoint": {
  2727. "nodeId": {
  2728. "id": 868547719379
  2729. },
  2730. "slotId": {
  2731. "m_id": "{CC1B608F-49ED-44F6-A416-FE5E0C00C8A7}"
  2732. }
  2733. }
  2734. }
  2735. }
  2736. },
  2737. {
  2738. "Id": {
  2739. "id": 932972228819
  2740. },
  2741. "Name": "srcEndpoint=(GetChildren: Out), destEndpoint=(Get First Element: In)",
  2742. "Components": {
  2743. "Component_[8123442661046729736]": {
  2744. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2745. "Id": 8123442661046729736,
  2746. "sourceEndpoint": {
  2747. "nodeId": {
  2748. "id": 872842686675
  2749. },
  2750. "slotId": {
  2751. "m_id": "{4972897F-796E-4BCF-9D17-429460D3C201}"
  2752. }
  2753. },
  2754. "targetEndpoint": {
  2755. "nodeId": {
  2756. "id": 817008111827
  2757. },
  2758. "slotId": {
  2759. "m_id": "{100EF49D-20D4-48B5-8A04-ED58676CDDE7}"
  2760. }
  2761. }
  2762. }
  2763. }
  2764. },
  2765. {
  2766. "Id": {
  2767. "id": 937267196115
  2768. },
  2769. "Name": "srcEndpoint=(GetChildren: Array<EntityId>), destEndpoint=(Get First Element: Container)",
  2770. "Components": {
  2771. "Component_[7816740592445092304]": {
  2772. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2773. "Id": 7816740592445092304,
  2774. "sourceEndpoint": {
  2775. "nodeId": {
  2776. "id": 872842686675
  2777. },
  2778. "slotId": {
  2779. "m_id": "{5C51C3C2-F694-4AA4-911D-E70E3EB44E6A}"
  2780. }
  2781. },
  2782. "targetEndpoint": {
  2783. "nodeId": {
  2784. "id": 817008111827
  2785. },
  2786. "slotId": {
  2787. "m_id": "{A31D3FA1-3B3E-46F5-BB0E-4A3E834F868D}"
  2788. }
  2789. }
  2790. }
  2791. }
  2792. },
  2793. {
  2794. "Id": {
  2795. "id": 941562163411
  2796. },
  2797. "Name": "srcEndpoint=(Get First Element: Out), destEndpoint=(GetEntityName: In)",
  2798. "Components": {
  2799. "Component_[7471941959253812840]": {
  2800. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2801. "Id": 7471941959253812840,
  2802. "sourceEndpoint": {
  2803. "nodeId": {
  2804. "id": 817008111827
  2805. },
  2806. "slotId": {
  2807. "m_id": "{911CC676-DFD2-427C-8C11-6EB39D065240}"
  2808. }
  2809. },
  2810. "targetEndpoint": {
  2811. "nodeId": {
  2812. "id": 881432621267
  2813. },
  2814. "slotId": {
  2815. "m_id": "{F9427BCD-E560-4DC4-AEB8-2E73162EB2FE}"
  2816. }
  2817. }
  2818. }
  2819. }
  2820. },
  2821. {
  2822. "Id": {
  2823. "id": 945857130707
  2824. },
  2825. "Name": "srcEndpoint=(Get First Element: Value), destEndpoint=(GetEntityName: EntityId)",
  2826. "Components": {
  2827. "Component_[15838860117007892362]": {
  2828. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2829. "Id": 15838860117007892362,
  2830. "sourceEndpoint": {
  2831. "nodeId": {
  2832. "id": 817008111827
  2833. },
  2834. "slotId": {
  2835. "m_id": "{D228EC51-8DC7-42FF-BF8F-F99F6DBA3833}"
  2836. }
  2837. },
  2838. "targetEndpoint": {
  2839. "nodeId": {
  2840. "id": 881432621267
  2841. },
  2842. "slotId": {
  2843. "m_id": "{399230D8-D9BF-4459-B78C-19F2AA0A0B55}"
  2844. }
  2845. }
  2846. }
  2847. }
  2848. },
  2849. {
  2850. "Id": {
  2851. "id": 950152098003
  2852. },
  2853. "Name": "srcEndpoint=(GetEntityName: Out), destEndpoint=(Equal To (==): In)",
  2854. "Components": {
  2855. "Component_[4925792800638032251]": {
  2856. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2857. "Id": 4925792800638032251,
  2858. "sourceEndpoint": {
  2859. "nodeId": {
  2860. "id": 881432621267
  2861. },
  2862. "slotId": {
  2863. "m_id": "{3A570387-E80C-463D-B0C2-7E94781B401A}"
  2864. }
  2865. },
  2866. "targetEndpoint": {
  2867. "nodeId": {
  2868. "id": 834187981011
  2869. },
  2870. "slotId": {
  2871. "m_id": "{1DB67EC8-2E7D-4477-A3E4-7DC85456E561}"
  2872. }
  2873. }
  2874. }
  2875. }
  2876. },
  2877. {
  2878. "Id": {
  2879. "id": 954447065299
  2880. },
  2881. "Name": "srcEndpoint=(GetEntityName: String), destEndpoint=(Equal To (==): Value A)",
  2882. "Components": {
  2883. "Component_[6986082114716638776]": {
  2884. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2885. "Id": 6986082114716638776,
  2886. "sourceEndpoint": {
  2887. "nodeId": {
  2888. "id": 881432621267
  2889. },
  2890. "slotId": {
  2891. "m_id": "{64F8A2EB-E2C9-466D-90D6-C6DBAE8836BE}"
  2892. }
  2893. },
  2894. "targetEndpoint": {
  2895. "nodeId": {
  2896. "id": 834187981011
  2897. },
  2898. "slotId": {
  2899. "m_id": "{E265E60A-61F9-41A4-A37B-924A8496C779}"
  2900. }
  2901. }
  2902. }
  2903. }
  2904. },
  2905. {
  2906. "Id": {
  2907. "id": 958742032595
  2908. },
  2909. "Name": "srcEndpoint=(Equal To (==): True), destEndpoint=(Equal To (==): In)",
  2910. "Components": {
  2911. "Component_[15851734050641924833]": {
  2912. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2913. "Id": 15851734050641924833,
  2914. "sourceEndpoint": {
  2915. "nodeId": {
  2916. "id": 834187981011
  2917. },
  2918. "slotId": {
  2919. "m_id": "{554DBCA1-0CC2-4838-857B-C2226165A8C8}"
  2920. }
  2921. },
  2922. "targetEndpoint": {
  2923. "nodeId": {
  2924. "id": 859957784787
  2925. },
  2926. "slotId": {
  2927. "m_id": "{E6CC8D99-AA80-4E6F-8199-673222006434}"
  2928. }
  2929. }
  2930. }
  2931. }
  2932. },
  2933. {
  2934. "Id": {
  2935. "id": 963036999891
  2936. },
  2937. "Name": "srcEndpoint=(Equal To (==): True), destEndpoint=(TimeDelay: Start)",
  2938. "Components": {
  2939. "Component_[10417198523686654034]": {
  2940. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2941. "Id": 10417198523686654034,
  2942. "sourceEndpoint": {
  2943. "nodeId": {
  2944. "id": 859957784787
  2945. },
  2946. "slotId": {
  2947. "m_id": "{6445267C-B65F-4014-B9E2-9ECAAEEF2A5F}"
  2948. }
  2949. },
  2950. "targetEndpoint": {
  2951. "nodeId": {
  2952. "id": 829893013715
  2953. },
  2954. "slotId": {
  2955. "m_id": "{E439EBB8-366C-4BF5-A520-90D69149A627}"
  2956. }
  2957. }
  2958. }
  2959. }
  2960. },
  2961. {
  2962. "Id": {
  2963. "id": 967331967187
  2964. },
  2965. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(ExecuteConsoleCommand: In)",
  2966. "Components": {
  2967. "Component_[6314773052843996100]": {
  2968. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2969. "Id": 6314773052843996100,
  2970. "sourceEndpoint": {
  2971. "nodeId": {
  2972. "id": 829893013715
  2973. },
  2974. "slotId": {
  2975. "m_id": "{11A6DF8E-DC8D-4F85-B914-5F73A1191B46}"
  2976. }
  2977. },
  2978. "targetEndpoint": {
  2979. "nodeId": {
  2980. "id": 877137653971
  2981. },
  2982. "slotId": {
  2983. "m_id": "{AAE609AF-34C7-43E3-A39F-D18B0B4F1522}"
  2984. }
  2985. }
  2986. }
  2987. }
  2988. },
  2989. {
  2990. "Id": {
  2991. "id": 971626934483
  2992. },
  2993. "Name": "srcEndpoint=(Equal To (==): Result), destEndpoint=(Print: Value)",
  2994. "Components": {
  2995. "Component_[11393323248479045030]": {
  2996. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2997. "Id": 11393323248479045030,
  2998. "sourceEndpoint": {
  2999. "nodeId": {
  3000. "id": 834187981011
  3001. },
  3002. "slotId": {
  3003. "m_id": "{FBF00C4E-8372-4382-AAFB-0E249AB1471A}"
  3004. }
  3005. },
  3006. "targetEndpoint": {
  3007. "nodeId": {
  3008. "id": 842777915603
  3009. },
  3010. "slotId": {
  3011. "m_id": "{5878564B-48FD-46D7-BE7F-E85E802EB4ED}"
  3012. }
  3013. }
  3014. }
  3015. }
  3016. },
  3017. {
  3018. "Id": {
  3019. "id": 975921901779
  3020. },
  3021. "Name": "srcEndpoint=(Equal To (==): False), destEndpoint=(Print: In)",
  3022. "Components": {
  3023. "Component_[17759307255564501639]": {
  3024. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3025. "Id": 17759307255564501639,
  3026. "sourceEndpoint": {
  3027. "nodeId": {
  3028. "id": 834187981011
  3029. },
  3030. "slotId": {
  3031. "m_id": "{7A72B125-B84E-4FEE-A5E3-9C8D50C92F90}"
  3032. }
  3033. },
  3034. "targetEndpoint": {
  3035. "nodeId": {
  3036. "id": 842777915603
  3037. },
  3038. "slotId": {
  3039. "m_id": "{B638D936-06F4-4A37-B1ED-744B29788E63}"
  3040. }
  3041. }
  3042. }
  3043. }
  3044. },
  3045. {
  3046. "Id": {
  3047. "id": 980216869075
  3048. },
  3049. "Name": "srcEndpoint=(Equal To (==): False), destEndpoint=(Print: In)",
  3050. "Components": {
  3051. "Component_[2245473295701090000]": {
  3052. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3053. "Id": 2245473295701090000,
  3054. "sourceEndpoint": {
  3055. "nodeId": {
  3056. "id": 847072882899
  3057. },
  3058. "slotId": {
  3059. "m_id": "{92345ED8-1332-434D-80F7-0B4CC73E8B80}"
  3060. }
  3061. },
  3062. "targetEndpoint": {
  3063. "nodeId": {
  3064. "id": 851367850195
  3065. },
  3066. "slotId": {
  3067. "m_id": "{B638D936-06F4-4A37-B1ED-744B29788E63}"
  3068. }
  3069. }
  3070. }
  3071. }
  3072. },
  3073. {
  3074. "Id": {
  3075. "id": 984511836371
  3076. },
  3077. "Name": "srcEndpoint=(Equal To (==): Result), destEndpoint=(Print: Value)",
  3078. "Components": {
  3079. "Component_[10214085416632627843]": {
  3080. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3081. "Id": 10214085416632627843,
  3082. "sourceEndpoint": {
  3083. "nodeId": {
  3084. "id": 847072882899
  3085. },
  3086. "slotId": {
  3087. "m_id": "{AFCD2166-2A73-4BE7-ACFD-BBA822ED038D}"
  3088. }
  3089. },
  3090. "targetEndpoint": {
  3091. "nodeId": {
  3092. "id": 851367850195
  3093. },
  3094. "slotId": {
  3095. "m_id": "{5878564B-48FD-46D7-BE7F-E85E802EB4ED}"
  3096. }
  3097. }
  3098. }
  3099. }
  3100. }
  3101. ]
  3102. },
  3103. "m_assetType": "{0D000000-0000-0000-0D00-000000000000}",
  3104. "versionData": {
  3105. "_grammarVersion": 1,
  3106. "_runtimeVersion": 1,
  3107. "_fileVersion": 1
  3108. },
  3109. "m_variableCounter": 5,
  3110. "GraphCanvasData": [
  3111. {
  3112. "Key": {
  3113. "id": 812713144531
  3114. },
  3115. "Value": {
  3116. "ComponentData": {
  3117. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  3118. "$type": "SceneComponentSaveData",
  3119. "ViewParams": {
  3120. "Scale": 0.48121380453563545,
  3121. "AnchorX": 4756.72119140625,
  3122. "AnchorY": 93.5135269165039
  3123. }
  3124. }
  3125. }
  3126. }
  3127. },
  3128. {
  3129. "Key": {
  3130. "id": 817008111827
  3131. },
  3132. "Value": {
  3133. "ComponentData": {
  3134. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3135. "$type": "NodeSaveData"
  3136. },
  3137. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3138. "$type": "GeneralNodeTitleComponentSaveData",
  3139. "PaletteOverride": "MethodNodeTitlePalette"
  3140. },
  3141. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3142. "$type": "GeometrySaveData",
  3143. "Position": [
  3144. 3380.0,
  3145. 600.0
  3146. ]
  3147. },
  3148. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3149. "$type": "StylingComponentSaveData",
  3150. "SubStyle": ".method"
  3151. },
  3152. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3153. "$type": "PersistentIdComponentSaveData",
  3154. "PersistentId": "{A5D0E43B-6DA3-4CB8-A269-3EE02F9FF5F9}"
  3155. }
  3156. }
  3157. }
  3158. },
  3159. {
  3160. "Key": {
  3161. "id": 821303079123
  3162. },
  3163. "Value": {
  3164. "ComponentData": {
  3165. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3166. "$type": "NodeSaveData"
  3167. },
  3168. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3169. "$type": "GeneralNodeTitleComponentSaveData",
  3170. "PaletteOverride": "MethodNodeTitlePalette"
  3171. },
  3172. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3173. "$type": "GeometrySaveData",
  3174. "Position": [
  3175. 1980.0,
  3176. 380.0
  3177. ]
  3178. },
  3179. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3180. "$type": "StylingComponentSaveData",
  3181. "SubStyle": ".method"
  3182. },
  3183. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3184. "$type": "PersistentIdComponentSaveData",
  3185. "PersistentId": "{1914D3C7-C613-4238-BB7E-2A467950D2E1}"
  3186. }
  3187. }
  3188. }
  3189. },
  3190. {
  3191. "Key": {
  3192. "id": 825598046419
  3193. },
  3194. "Value": {
  3195. "ComponentData": {
  3196. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3197. "$type": "NodeSaveData"
  3198. },
  3199. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3200. "$type": "GeneralNodeTitleComponentSaveData",
  3201. "PaletteOverride": "DefaultNodeTitlePalette"
  3202. },
  3203. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3204. "$type": "GeometrySaveData",
  3205. "Position": [
  3206. 1080.0,
  3207. 160.0
  3208. ]
  3209. },
  3210. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3211. "$type": "StylingComponentSaveData"
  3212. },
  3213. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3214. "$type": "PersistentIdComponentSaveData",
  3215. "PersistentId": "{22509518-2EFB-4AF4-A923-941D9D56ACD2}"
  3216. }
  3217. }
  3218. }
  3219. },
  3220. {
  3221. "Key": {
  3222. "id": 829893013715
  3223. },
  3224. "Value": {
  3225. "ComponentData": {
  3226. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3227. "$type": "NodeSaveData"
  3228. },
  3229. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3230. "$type": "GeneralNodeTitleComponentSaveData",
  3231. "PaletteOverride": "TimeNodeTitlePalette"
  3232. },
  3233. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3234. "$type": "GeometrySaveData",
  3235. "Position": [
  3236. 5260.0,
  3237. 620.0
  3238. ]
  3239. },
  3240. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3241. "$type": "StylingComponentSaveData"
  3242. },
  3243. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3244. "$type": "PersistentIdComponentSaveData",
  3245. "PersistentId": "{4E20F5AA-3F69-487E-A547-661B7010D138}"
  3246. }
  3247. }
  3248. }
  3249. },
  3250. {
  3251. "Key": {
  3252. "id": 834187981011
  3253. },
  3254. "Value": {
  3255. "ComponentData": {
  3256. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3257. "$type": "NodeSaveData"
  3258. },
  3259. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3260. "$type": "GeneralNodeTitleComponentSaveData",
  3261. "PaletteOverride": "MathNodeTitlePalette"
  3262. },
  3263. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3264. "$type": "GeometrySaveData",
  3265. "Position": [
  3266. 4180.0,
  3267. 640.0
  3268. ]
  3269. },
  3270. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3271. "$type": "StylingComponentSaveData"
  3272. },
  3273. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3274. "$type": "PersistentIdComponentSaveData",
  3275. "PersistentId": "{762F3EE9-28A7-4DED-B98D-EA137BC32BB7}"
  3276. }
  3277. }
  3278. }
  3279. },
  3280. {
  3281. "Key": {
  3282. "id": 838482948307
  3283. },
  3284. "Value": {
  3285. "ComponentData": {
  3286. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3287. "$type": "NodeSaveData"
  3288. },
  3289. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3290. "$type": "GeneralNodeTitleComponentSaveData",
  3291. "PaletteOverride": "MethodNodeTitlePalette"
  3292. },
  3293. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3294. "$type": "GeometrySaveData",
  3295. "Position": [
  3296. 1660.0,
  3297. 340.0
  3298. ]
  3299. },
  3300. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3301. "$type": "StylingComponentSaveData",
  3302. "SubStyle": ".method"
  3303. },
  3304. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3305. "$type": "PersistentIdComponentSaveData",
  3306. "PersistentId": "{20E67319-AEF8-4A7B-A4AC-6079763B5C39}"
  3307. }
  3308. }
  3309. }
  3310. },
  3311. {
  3312. "Key": {
  3313. "id": 842777915603
  3314. },
  3315. "Value": {
  3316. "ComponentData": {
  3317. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3318. "$type": "NodeSaveData"
  3319. },
  3320. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3321. "$type": "GeneralNodeTitleComponentSaveData",
  3322. "PaletteOverride": "StringNodeTitlePalette"
  3323. },
  3324. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3325. "$type": "GeometrySaveData",
  3326. "Position": [
  3327. 4620.0,
  3328. 920.0
  3329. ]
  3330. },
  3331. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3332. "$type": "StylingComponentSaveData"
  3333. },
  3334. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3335. "$type": "PersistentIdComponentSaveData",
  3336. "PersistentId": "{EBD41DEE-9883-4B80-8C1E-658E58D1DC24}"
  3337. }
  3338. }
  3339. }
  3340. },
  3341. {
  3342. "Key": {
  3343. "id": 847072882899
  3344. },
  3345. "Value": {
  3346. "ComponentData": {
  3347. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3348. "$type": "NodeSaveData"
  3349. },
  3350. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3351. "$type": "GeneralNodeTitleComponentSaveData",
  3352. "PaletteOverride": "MathNodeTitlePalette"
  3353. },
  3354. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3355. "$type": "GeometrySaveData",
  3356. "Position": [
  3357. 2460.0,
  3358. 380.0
  3359. ]
  3360. },
  3361. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3362. "$type": "StylingComponentSaveData"
  3363. },
  3364. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3365. "$type": "PersistentIdComponentSaveData",
  3366. "PersistentId": "{9983A359-B03E-4359-8F63-493D0F151CAA}"
  3367. }
  3368. }
  3369. }
  3370. },
  3371. {
  3372. "Key": {
  3373. "id": 851367850195
  3374. },
  3375. "Value": {
  3376. "ComponentData": {
  3377. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3378. "$type": "NodeSaveData"
  3379. },
  3380. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3381. "$type": "GeneralNodeTitleComponentSaveData",
  3382. "PaletteOverride": "StringNodeTitlePalette"
  3383. },
  3384. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3385. "$type": "GeometrySaveData",
  3386. "Position": [
  3387. 2920.0,
  3388. 720.0
  3389. ]
  3390. },
  3391. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3392. "$type": "StylingComponentSaveData"
  3393. },
  3394. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3395. "$type": "PersistentIdComponentSaveData",
  3396. "PersistentId": "{191F1CFB-865E-4EE4-96D5-B5968712A346}"
  3397. }
  3398. }
  3399. }
  3400. },
  3401. {
  3402. "Key": {
  3403. "id": 855662817491
  3404. },
  3405. "Value": {
  3406. "ComponentData": {
  3407. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3408. "$type": "NodeSaveData"
  3409. },
  3410. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3411. "$type": "GeometrySaveData",
  3412. "Position": [
  3413. 100.0,
  3414. 140.0
  3415. ]
  3416. },
  3417. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3418. "$type": "EBusHandlerNodeDescriptorSaveData",
  3419. "EventIds": [
  3420. {
  3421. "Value": 245425936
  3422. }
  3423. ]
  3424. },
  3425. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3426. "$type": "StylingComponentSaveData"
  3427. },
  3428. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3429. "$type": "PersistentIdComponentSaveData",
  3430. "PersistentId": "{2FC205B7-C343-4060-ADE0-57F32A450D7D}"
  3431. }
  3432. }
  3433. }
  3434. },
  3435. {
  3436. "Key": {
  3437. "id": 859957784787
  3438. },
  3439. "Value": {
  3440. "ComponentData": {
  3441. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3442. "$type": "NodeSaveData"
  3443. },
  3444. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3445. "$type": "GeneralNodeTitleComponentSaveData",
  3446. "PaletteOverride": "MathNodeTitlePalette"
  3447. },
  3448. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3449. "$type": "GeometrySaveData",
  3450. "Position": [
  3451. 4660.0,
  3452. 640.0
  3453. ]
  3454. },
  3455. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3456. "$type": "StylingComponentSaveData"
  3457. },
  3458. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3459. "$type": "PersistentIdComponentSaveData",
  3460. "PersistentId": "{445AACCB-7356-41B3-8E70-EE5E0D94FB73}"
  3461. }
  3462. }
  3463. }
  3464. },
  3465. {
  3466. "Key": {
  3467. "id": 864252752083
  3468. },
  3469. "Value": {
  3470. "ComponentData": {
  3471. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3472. "$type": "NodeSaveData"
  3473. },
  3474. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3475. "$type": "GeneralNodeTitleComponentSaveData",
  3476. "PaletteOverride": "DefaultNodeTitlePalette"
  3477. },
  3478. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3479. "$type": "GeometrySaveData",
  3480. "Position": [
  3481. 440.0,
  3482. 140.0
  3483. ]
  3484. },
  3485. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3486. "$type": "StylingComponentSaveData"
  3487. },
  3488. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3489. "$type": "PersistentIdComponentSaveData",
  3490. "PersistentId": "{FFB05C21-E9D5-495A-B05C-6E26D21C1788}"
  3491. }
  3492. }
  3493. }
  3494. },
  3495. {
  3496. "Key": {
  3497. "id": 868547719379
  3498. },
  3499. "Value": {
  3500. "ComponentData": {
  3501. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3502. "$type": "NodeSaveData"
  3503. },
  3504. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3505. "$type": "GeneralNodeTitleComponentSaveData",
  3506. "PaletteOverride": "MethodNodeTitlePalette"
  3507. },
  3508. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3509. "$type": "GeometrySaveData",
  3510. "Position": [
  3511. 3380.0,
  3512. 440.0
  3513. ]
  3514. },
  3515. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3516. "$type": "StylingComponentSaveData",
  3517. "SubStyle": ".method"
  3518. },
  3519. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3520. "$type": "PersistentIdComponentSaveData",
  3521. "PersistentId": "{35B2931C-07E4-4DF2-9A49-5119CAB403AD}"
  3522. }
  3523. }
  3524. }
  3525. },
  3526. {
  3527. "Key": {
  3528. "id": 872842686675
  3529. },
  3530. "Value": {
  3531. "ComponentData": {
  3532. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3533. "$type": "NodeSaveData"
  3534. },
  3535. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3536. "$type": "GeneralNodeTitleComponentSaveData",
  3537. "PaletteOverride": "MethodNodeTitlePalette"
  3538. },
  3539. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3540. "$type": "GeometrySaveData",
  3541. "Position": [
  3542. 2920.0,
  3543. 440.0
  3544. ]
  3545. },
  3546. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3547. "$type": "StylingComponentSaveData",
  3548. "SubStyle": ".method"
  3549. },
  3550. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3551. "$type": "PersistentIdComponentSaveData",
  3552. "PersistentId": "{05A0BC18-9FE1-4CF7-9E39-0A5C472B6378}"
  3553. }
  3554. }
  3555. }
  3556. },
  3557. {
  3558. "Key": {
  3559. "id": 877137653971
  3560. },
  3561. "Value": {
  3562. "ComponentData": {
  3563. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3564. "$type": "NodeSaveData"
  3565. },
  3566. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3567. "$type": "GeneralNodeTitleComponentSaveData",
  3568. "PaletteOverride": "MethodNodeTitlePalette"
  3569. },
  3570. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3571. "$type": "GeometrySaveData",
  3572. "Position": [
  3573. 5720.0,
  3574. 600.0
  3575. ]
  3576. },
  3577. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3578. "$type": "StylingComponentSaveData",
  3579. "SubStyle": ".method"
  3580. },
  3581. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3582. "$type": "PersistentIdComponentSaveData",
  3583. "PersistentId": "{05AC4557-03CF-4629-8332-27706F58F0F5}"
  3584. }
  3585. }
  3586. }
  3587. },
  3588. {
  3589. "Key": {
  3590. "id": 881432621267
  3591. },
  3592. "Value": {
  3593. "ComponentData": {
  3594. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3595. "$type": "NodeSaveData"
  3596. },
  3597. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3598. "$type": "GeneralNodeTitleComponentSaveData",
  3599. "PaletteOverride": "MethodNodeTitlePalette"
  3600. },
  3601. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3602. "$type": "GeometrySaveData",
  3603. "Position": [
  3604. 3700.0,
  3605. 640.0
  3606. ]
  3607. },
  3608. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3609. "$type": "StylingComponentSaveData",
  3610. "SubStyle": ".method"
  3611. },
  3612. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3613. "$type": "PersistentIdComponentSaveData",
  3614. "PersistentId": "{CC842CF9-07A6-438F-9788-E82D5B9E2760}"
  3615. }
  3616. }
  3617. }
  3618. }
  3619. ],
  3620. "StatisticsHelper": {
  3621. "InstanceCounter": [
  3622. {
  3623. "Key": 2970552779286763396,
  3624. "Value": 1
  3625. },
  3626. {
  3627. "Key": 3117476785392655547,
  3628. "Value": 3
  3629. },
  3630. {
  3631. "Key": 5842116761103598202,
  3632. "Value": 1
  3633. },
  3634. {
  3635. "Key": 6085082255528869526,
  3636. "Value": 2
  3637. },
  3638. {
  3639. "Key": 6462358712820489356,
  3640. "Value": 1
  3641. },
  3642. {
  3643. "Key": 8509774054286391993,
  3644. "Value": 1
  3645. },
  3646. {
  3647. "Key": 10684225535275896474,
  3648. "Value": 2
  3649. },
  3650. {
  3651. "Key": 13474049605028069597,
  3652. "Value": 1
  3653. },
  3654. {
  3655. "Key": 13774516196858047560,
  3656. "Value": 2
  3657. },
  3658. {
  3659. "Key": 13774516393157610292,
  3660. "Value": 1
  3661. },
  3662. {
  3663. "Key": 13774516554865231594,
  3664. "Value": 1
  3665. }
  3666. ]
  3667. }
  3668. },
  3669. "Component_[18391322516811070933]": {
  3670. "$type": "EditorGraphVariableManagerComponent",
  3671. "Id": 18391322516811070933,
  3672. "m_variableData": {
  3673. "m_nameVariableMap": [
  3674. {
  3675. "Key": {
  3676. "m_id": "{02FA4EC5-AC3C-4E8E-B455-FD13156EFD37}"
  3677. },
  3678. "Value": {
  3679. "Datum": {
  3680. "scriptCanvasType": {
  3681. "m_type": 4,
  3682. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  3683. },
  3684. "isNullPointer": false,
  3685. "$type": "AzFramework::Scripts::SpawnableScriptAssetRef",
  3686. "value": {
  3687. "asset": {
  3688. "assetId": {
  3689. "guid": "{80C0CF4E-9A5E-544B-B89E-BC980175A259}",
  3690. "subId": 3875079122
  3691. },
  3692. "assetHint": "assets/prefabs/pinkflower.spawnable"
  3693. }
  3694. }
  3695. },
  3696. "VariableId": {
  3697. "m_id": "{02FA4EC5-AC3C-4E8E-B455-FD13156EFD37}"
  3698. },
  3699. "VariableName": "PrefabToSpawn"
  3700. }
  3701. },
  3702. {
  3703. "Key": {
  3704. "m_id": "{31B78CCD-1FC7-48C0-A91F-D8D5B6F00163}"
  3705. },
  3706. "Value": {
  3707. "Datum": {
  3708. "scriptCanvasType": {
  3709. "m_type": 1
  3710. },
  3711. "isNullPointer": false,
  3712. "$type": "EntityId",
  3713. "value": {
  3714. "id": 2901262558
  3715. }
  3716. },
  3717. "VariableId": {
  3718. "m_id": "{31B78CCD-1FC7-48C0-A91F-D8D5B6F00163}"
  3719. },
  3720. "VariableName": "ContainerEntityId"
  3721. }
  3722. },
  3723. {
  3724. "Key": {
  3725. "m_id": "{A0E88790-169A-4E16-A5AF-EF8DD249798D}"
  3726. },
  3727. "Value": {
  3728. "Datum": {
  3729. "scriptCanvasType": {
  3730. "m_type": 3
  3731. },
  3732. "isNullPointer": false,
  3733. "$type": "double",
  3734. "value": 0.0
  3735. },
  3736. "VariableId": {
  3737. "m_id": "{A0E88790-169A-4E16-A5AF-EF8DD249798D}"
  3738. },
  3739. "VariableName": "ContainerSize"
  3740. }
  3741. },
  3742. {
  3743. "Key": {
  3744. "m_id": "{C241E2D6-48A7-4B50-A673-160B28B9253F}"
  3745. },
  3746. "Value": {
  3747. "Datum": {
  3748. "scriptCanvasType": {
  3749. "m_type": 4,
  3750. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  3751. },
  3752. "isNullPointer": false,
  3753. "$type": "AzFramework::EntitySpawnTicket"
  3754. },
  3755. "VariableId": {
  3756. "m_id": "{C241E2D6-48A7-4B50-A673-160B28B9253F}"
  3757. },
  3758. "VariableName": "SpawnTicket"
  3759. }
  3760. },
  3761. {
  3762. "Key": {
  3763. "m_id": "{C2622DC6-AAE4-482F-B818-BE5C97101A6D}"
  3764. },
  3765. "Value": {
  3766. "Datum": {
  3767. "scriptCanvasType": {
  3768. "m_type": 5
  3769. },
  3770. "isNullPointer": false,
  3771. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  3772. "value": "PinkFlower"
  3773. },
  3774. "VariableId": {
  3775. "m_id": "{C2622DC6-AAE4-482F-B818-BE5C97101A6D}"
  3776. },
  3777. "VariableName": "ExpectedEntityName"
  3778. }
  3779. }
  3780. ]
  3781. }
  3782. }
  3783. }
  3784. }
  3785. }
  3786. }