3
0

LY_SC_UnitTest_ScriptEventLocalAddressByConnection.scriptcanvas 159 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 2619873004287433
  9. },
  10. "Name": "Untitled-2",
  11. "Components": {
  12. "Component_[10113445010848304216]": {
  13. "$type": "EditorGraph",
  14. "Id": 10113445010848304216,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 2619928838862281
  20. },
  21. "Name": "SC Node(SetVariable)",
  22. "Components": {
  23. "Component_[10864410292004048823]": {
  24. "$type": "SetVariableNode",
  25. "Id": 10864410292004048823,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{5C6B3A88-7E68-443C-8E2B-0D0D63C7AAE5}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "In",
  37. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  38. "Descriptor": {
  39. "ConnectionType": 1,
  40. "SlotType": 1
  41. }
  42. },
  43. {
  44. "id": {
  45. "m_id": "{B3F0EBFB-D103-4342-9940-12B55ACE1CE2}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "Out",
  53. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  54. "Descriptor": {
  55. "ConnectionType": 2,
  56. "SlotType": 1
  57. }
  58. },
  59. {
  60. "id": {
  61. "m_id": "{20386626-A91D-46D7-9858-1514202D08A2}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. },
  67. null
  68. ],
  69. "slotName": "Boolean",
  70. "Descriptor": {
  71. "ConnectionType": 1,
  72. "SlotType": 2
  73. },
  74. "DataType": 1
  75. },
  76. {
  77. "id": {
  78. "m_id": "{69A3D303-DD2D-4CAF-9FE4-EC4B046A4D86}"
  79. },
  80. "contracts": [
  81. {
  82. "$type": "SlotTypeContract"
  83. }
  84. ],
  85. "slotName": "Boolean",
  86. "DisplayDataType": {
  87. "m_type": 0
  88. },
  89. "Descriptor": {
  90. "ConnectionType": 2,
  91. "SlotType": 2
  92. },
  93. "DataType": 1
  94. }
  95. ],
  96. "Datums": [
  97. {
  98. "isOverloadedStorage": false,
  99. "scriptCanvasType": {
  100. "m_type": 0
  101. },
  102. "isNullPointer": false,
  103. "$type": "bool",
  104. "value": false,
  105. "label": "Boolean"
  106. }
  107. ],
  108. "m_variableId": {
  109. "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
  110. },
  111. "m_variableDataInSlotId": {
  112. "m_id": "{20386626-A91D-46D7-9858-1514202D08A2}"
  113. },
  114. "m_variableDataOutSlotId": {
  115. "m_id": "{69A3D303-DD2D-4CAF-9FE4-EC4B046A4D86}"
  116. }
  117. }
  118. }
  119. },
  120. {
  121. "Id": {
  122. "id": 2619920248927689
  123. },
  124. "Name": "SC-Node(Mark Complete)",
  125. "Components": {
  126. "Component_[11621355488443680495]": {
  127. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  128. "Id": 11621355488443680495,
  129. "Slots": [
  130. {
  131. "isVisibile": false,
  132. "id": {
  133. "m_id": "{24039303-259A-4700-AA7D-AEC5F8FB0158}"
  134. },
  135. "contracts": [
  136. {
  137. "$type": "SlotTypeContract"
  138. },
  139. null
  140. ],
  141. "slotName": "EntityID: 0",
  142. "Descriptor": {
  143. "ConnectionType": 1,
  144. "SlotType": 2
  145. },
  146. "DataType": 1
  147. },
  148. {
  149. "id": {
  150. "m_id": "{2D65953D-EDF5-4FE5-AA9B-E025055FF7F4}"
  151. },
  152. "contracts": [
  153. {
  154. "$type": "SlotTypeContract"
  155. },
  156. null
  157. ],
  158. "slotName": "Report",
  159. "toolTip": "additional notes for the test report",
  160. "Descriptor": {
  161. "ConnectionType": 1,
  162. "SlotType": 2
  163. },
  164. "DataType": 1
  165. },
  166. {
  167. "id": {
  168. "m_id": "{57BD6785-3DD2-41F7-8534-1B347B33D5FE}"
  169. },
  170. "contracts": [
  171. {
  172. "$type": "SlotTypeContract"
  173. }
  174. ],
  175. "slotName": "In",
  176. "Descriptor": {
  177. "ConnectionType": 1,
  178. "SlotType": 1
  179. }
  180. },
  181. {
  182. "id": {
  183. "m_id": "{CA049B57-DF58-498C-A4DD-FE53BF3F8C7A}"
  184. },
  185. "contracts": [
  186. {
  187. "$type": "SlotTypeContract"
  188. }
  189. ],
  190. "slotName": "Out",
  191. "Descriptor": {
  192. "ConnectionType": 2,
  193. "SlotType": 1
  194. }
  195. }
  196. ],
  197. "Datums": [
  198. {
  199. "isOverloadedStorage": false,
  200. "scriptCanvasType": {
  201. "m_type": 1
  202. },
  203. "isNullPointer": false,
  204. "$type": "EntityId",
  205. "value": {
  206. "id": 4276206253
  207. }
  208. },
  209. {
  210. "isOverloadedStorage": false,
  211. "scriptCanvasType": {
  212. "m_type": 5
  213. },
  214. "isNullPointer": false,
  215. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  216. "value": "",
  217. "label": "Report"
  218. }
  219. ],
  220. "methodType": 2,
  221. "methodName": "Mark Complete",
  222. "className": "Unit Testing",
  223. "resultSlotIDs": [
  224. {}
  225. ],
  226. "prettyClassName": "Unit Testing"
  227. }
  228. }
  229. },
  230. {
  231. "Id": {
  232. "id": 2619911658993097
  233. },
  234. "Name": "SC-Node(Start)",
  235. "Components": {
  236. "Component_[13343996263980682762]": {
  237. "$type": "Start",
  238. "Id": 13343996263980682762,
  239. "Slots": [
  240. {
  241. "id": {
  242. "m_id": "{44FA5998-4DBF-492B-9B0C-283B1DBC396B}"
  243. },
  244. "contracts": [
  245. {
  246. "$type": "SlotTypeContract"
  247. }
  248. ],
  249. "slotName": "Out",
  250. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  251. "Descriptor": {
  252. "ConnectionType": 2,
  253. "SlotType": 1
  254. }
  255. }
  256. ]
  257. }
  258. }
  259. },
  260. {
  261. "Id": {
  262. "id": 2619903069058505
  263. },
  264. "Name": "SC-Node(Expect True)",
  265. "Components": {
  266. "Component_[1453490736622823623]": {
  267. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  268. "Id": 1453490736622823623,
  269. "Slots": [
  270. {
  271. "isVisibile": false,
  272. "id": {
  273. "m_id": "{B8B8785B-0042-4711-BBD6-3A6D784DF234}"
  274. },
  275. "contracts": [
  276. {
  277. "$type": "SlotTypeContract"
  278. },
  279. null
  280. ],
  281. "slotName": "EntityID: 0",
  282. "Descriptor": {
  283. "ConnectionType": 1,
  284. "SlotType": 2
  285. },
  286. "DataType": 1
  287. },
  288. {
  289. "id": {
  290. "m_id": "{5C0E5223-D35A-4095-8AC9-362ECF38A8D9}"
  291. },
  292. "contracts": [
  293. {
  294. "$type": "SlotTypeContract"
  295. },
  296. null
  297. ],
  298. "slotName": "Candidate",
  299. "toolTip": "a value that must be true",
  300. "Descriptor": {
  301. "ConnectionType": 1,
  302. "SlotType": 2
  303. },
  304. "DataType": 1
  305. },
  306. {
  307. "id": {
  308. "m_id": "{83199A21-F7E1-464F-AB83-A066077DA9D3}"
  309. },
  310. "contracts": [
  311. {
  312. "$type": "SlotTypeContract"
  313. },
  314. null
  315. ],
  316. "slotName": "Report",
  317. "toolTip": "additional notes for the test report",
  318. "Descriptor": {
  319. "ConnectionType": 1,
  320. "SlotType": 2
  321. },
  322. "DataType": 1
  323. },
  324. {
  325. "id": {
  326. "m_id": "{0A6E4BCD-BD20-439B-B0D2-595EAD358220}"
  327. },
  328. "contracts": [
  329. {
  330. "$type": "SlotTypeContract"
  331. }
  332. ],
  333. "slotName": "In",
  334. "Descriptor": {
  335. "ConnectionType": 1,
  336. "SlotType": 1
  337. }
  338. },
  339. {
  340. "id": {
  341. "m_id": "{7C8CFDE7-896F-4B9F-92C3-0EDCA74A8B00}"
  342. },
  343. "contracts": [
  344. {
  345. "$type": "SlotTypeContract"
  346. }
  347. ],
  348. "slotName": "Out",
  349. "Descriptor": {
  350. "ConnectionType": 2,
  351. "SlotType": 1
  352. }
  353. }
  354. ],
  355. "Datums": [
  356. {
  357. "isOverloadedStorage": false,
  358. "scriptCanvasType": {
  359. "m_type": 1
  360. },
  361. "isNullPointer": false,
  362. "$type": "EntityId",
  363. "value": {
  364. "id": 4276206253
  365. }
  366. },
  367. {
  368. "isOverloadedStorage": false,
  369. "scriptCanvasType": {
  370. "m_type": 0
  371. },
  372. "isNullPointer": false,
  373. "$type": "bool",
  374. "value": false,
  375. "label": "Candidate"
  376. },
  377. {
  378. "isOverloadedStorage": false,
  379. "scriptCanvasType": {
  380. "m_type": 5
  381. },
  382. "isNullPointer": false,
  383. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  384. "value": "second call",
  385. "label": "Report"
  386. }
  387. ],
  388. "methodType": 2,
  389. "methodName": "Expect True",
  390. "className": "Unit Testing",
  391. "resultSlotIDs": [
  392. {}
  393. ],
  394. "prettyClassName": "Unit Testing"
  395. }
  396. }
  397. },
  398. {
  399. "Id": {
  400. "id": 2619894479123913
  401. },
  402. "Name": "SC Node(SetVariable)",
  403. "Components": {
  404. "Component_[16476265958809865284]": {
  405. "$type": "SetVariableNode",
  406. "Id": 16476265958809865284,
  407. "Slots": [
  408. {
  409. "id": {
  410. "m_id": "{A99765FD-773E-45DB-80EA-5BA3B29D001C}"
  411. },
  412. "contracts": [
  413. {
  414. "$type": "SlotTypeContract"
  415. }
  416. ],
  417. "slotName": "In",
  418. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  419. "Descriptor": {
  420. "ConnectionType": 1,
  421. "SlotType": 1
  422. }
  423. },
  424. {
  425. "id": {
  426. "m_id": "{422BDC99-2681-4DD9-BA62-C9FD045410C2}"
  427. },
  428. "contracts": [
  429. {
  430. "$type": "SlotTypeContract"
  431. }
  432. ],
  433. "slotName": "Out",
  434. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  435. "Descriptor": {
  436. "ConnectionType": 2,
  437. "SlotType": 1
  438. }
  439. },
  440. {
  441. "id": {
  442. "m_id": "{C0915858-A7AA-4852-A55B-55317A5745DA}"
  443. },
  444. "contracts": [
  445. {
  446. "$type": "SlotTypeContract"
  447. },
  448. null
  449. ],
  450. "slotName": "Boolean",
  451. "Descriptor": {
  452. "ConnectionType": 1,
  453. "SlotType": 2
  454. }
  455. },
  456. {
  457. "id": {
  458. "m_id": "{83E71698-3F1C-4CCC-A86B-C6E96F8354BF}"
  459. },
  460. "contracts": [
  461. {
  462. "$type": "SlotTypeContract"
  463. }
  464. ],
  465. "slotName": "Boolean",
  466. "DisplayDataType": {
  467. "m_type": 0
  468. },
  469. "Descriptor": {
  470. "ConnectionType": 2,
  471. "SlotType": 2
  472. }
  473. }
  474. ],
  475. "Datums": [
  476. {
  477. "isOverloadedStorage": false,
  478. "scriptCanvasType": {
  479. "m_type": 0
  480. },
  481. "isNullPointer": false,
  482. "$type": "bool",
  483. "value": true,
  484. "label": "Boolean"
  485. }
  486. ],
  487. "m_variableId": {
  488. "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
  489. },
  490. "m_variableDataInSlotId": {
  491. "m_id": "{C0915858-A7AA-4852-A55B-55317A5745DA}"
  492. },
  493. "m_variableDataOutSlotId": {
  494. "m_id": "{83E71698-3F1C-4CCC-A86B-C6E96F8354BF}"
  495. }
  496. }
  497. }
  498. },
  499. {
  500. "Id": {
  501. "id": 2619885889189321
  502. },
  503. "Name": "SendScriptEvent",
  504. "Components": {
  505. "Component_[16575037515778823179]": {
  506. "$type": "SendScriptEvent",
  507. "Id": 16575037515778823179,
  508. "Slots": [
  509. {
  510. "id": {
  511. "m_id": "{23BC6DD4-2194-44DE-8CAE-3B6B06681198}"
  512. },
  513. "contracts": [
  514. {
  515. "$type": "SlotTypeContract"
  516. }
  517. ],
  518. "slotName": "In",
  519. "toolTip": "Fires the specified ScriptEvent when signaled",
  520. "Descriptor": {
  521. "ConnectionType": 1,
  522. "SlotType": 1
  523. }
  524. },
  525. {
  526. "id": {
  527. "m_id": "{7AF83111-7FCB-4725-940F-44289E62CA27}"
  528. },
  529. "contracts": [
  530. {
  531. "$type": "SlotTypeContract"
  532. }
  533. ],
  534. "slotName": "Out",
  535. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  536. "Descriptor": {
  537. "ConnectionType": 2,
  538. "SlotType": 1
  539. }
  540. },
  541. {
  542. "id": {
  543. "m_id": "{46BA64E5-9EA5-4CA7-8051-99F4CEE5E239}"
  544. },
  545. "contracts": [
  546. {
  547. "$type": "SlotTypeContract"
  548. },
  549. null
  550. ],
  551. "slotName": "Source",
  552. "toolTip": "String",
  553. "Descriptor": {
  554. "ConnectionType": 1,
  555. "SlotType": 2
  556. },
  557. "DataType": 1,
  558. "IsReference": true,
  559. "VariableReference": {
  560. "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
  561. }
  562. }
  563. ],
  564. "Datums": [
  565. {
  566. "isOverloadedStorage": false,
  567. "scriptCanvasType": {
  568. "m_type": 5
  569. },
  570. "isNullPointer": false,
  571. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  572. "value": "",
  573. "label": "Source"
  574. }
  575. ],
  576. "m_version": 1,
  577. "m_eventSlotMapping": {
  578. "{301C4D5B-B9B1-4E72-BB4D-A1FA1ECD39DC}": {
  579. "m_id": "{46BA64E5-9EA5-4CA7-8051-99F4CEE5E239}"
  580. }
  581. },
  582. "m_scriptEventAssetId": {
  583. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  584. },
  585. "m_asset": {
  586. "assetId": {
  587. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  588. },
  589. "loadBehavior": "PreLoad",
  590. "assetHint": "scriptcanvas/unittests/localscriptevents.scriptevents"
  591. },
  592. "m_busId": {
  593. "Value": 1754610029
  594. },
  595. "m_eventId": {
  596. "Value": 2309008672
  597. }
  598. }
  599. }
  600. },
  601. {
  602. "Id": {
  603. "id": 2619877299254729
  604. },
  605. "Name": "SC Node(GetVariable)",
  606. "Components": {
  607. "Component_[2129347161883400702]": {
  608. "$type": "GetVariableNode",
  609. "Id": 2129347161883400702,
  610. "Slots": [
  611. {
  612. "id": {
  613. "m_id": "{FED4EC08-523D-41AC-8D3B-F52B667F8DB7}"
  614. },
  615. "contracts": [
  616. {
  617. "$type": "SlotTypeContract"
  618. }
  619. ],
  620. "slotName": "In",
  621. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  622. "Descriptor": {
  623. "ConnectionType": 1,
  624. "SlotType": 1
  625. }
  626. },
  627. {
  628. "id": {
  629. "m_id": "{13904D07-33F8-4F8B-BB53-1B2541320077}"
  630. },
  631. "contracts": [
  632. {
  633. "$type": "SlotTypeContract"
  634. }
  635. ],
  636. "slotName": "Out",
  637. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  638. "Descriptor": {
  639. "ConnectionType": 2,
  640. "SlotType": 1
  641. }
  642. },
  643. {
  644. "id": {
  645. "m_id": "{56DC047D-CF42-4CB6-A5E7-B01DA48A894C}"
  646. },
  647. "contracts": [
  648. {
  649. "$type": "SlotTypeContract"
  650. }
  651. ],
  652. "slotName": "String",
  653. "DisplayDataType": {
  654. "m_type": 5
  655. },
  656. "Descriptor": {
  657. "ConnectionType": 2,
  658. "SlotType": 2
  659. },
  660. "DataType": 1
  661. }
  662. ],
  663. "m_variableId": {
  664. "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
  665. },
  666. "m_variableDataOutSlotId": {
  667. "m_id": "{56DC047D-CF42-4CB6-A5E7-B01DA48A894C}"
  668. }
  669. }
  670. }
  671. },
  672. {
  673. "Id": {
  674. "id": 2619933133829577
  675. },
  676. "Name": "SC-Node(Expect False)",
  677. "Components": {
  678. "Component_[6320890833657802991]": {
  679. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  680. "Id": 6320890833657802991,
  681. "Slots": [
  682. {
  683. "isVisibile": false,
  684. "id": {
  685. "m_id": "{020595B9-8454-4006-960F-BCB035C2A7E8}"
  686. },
  687. "contracts": [
  688. {
  689. "$type": "SlotTypeContract"
  690. },
  691. null
  692. ],
  693. "slotName": "EntityID: 0",
  694. "Descriptor": {
  695. "ConnectionType": 1,
  696. "SlotType": 2
  697. },
  698. "DataType": 1
  699. },
  700. {
  701. "id": {
  702. "m_id": "{523171D0-86C7-4B95-942B-5F2BF1D7824C}"
  703. },
  704. "contracts": [
  705. {
  706. "$type": "SlotTypeContract"
  707. },
  708. null
  709. ],
  710. "slotName": "Candidate",
  711. "toolTip": "a value that must be false",
  712. "Descriptor": {
  713. "ConnectionType": 1,
  714. "SlotType": 2
  715. },
  716. "DataType": 1
  717. },
  718. {
  719. "id": {
  720. "m_id": "{82F35341-1AB0-4F1A-A6EC-B90AD3AA81A6}"
  721. },
  722. "contracts": [
  723. {
  724. "$type": "SlotTypeContract"
  725. },
  726. null
  727. ],
  728. "slotName": "Report",
  729. "toolTip": "additional notes for the test report",
  730. "Descriptor": {
  731. "ConnectionType": 1,
  732. "SlotType": 2
  733. },
  734. "DataType": 1
  735. },
  736. {
  737. "id": {
  738. "m_id": "{99164137-773F-4AF2-B5D8-02A1301F4857}"
  739. },
  740. "contracts": [
  741. {
  742. "$type": "SlotTypeContract"
  743. }
  744. ],
  745. "slotName": "In",
  746. "Descriptor": {
  747. "ConnectionType": 1,
  748. "SlotType": 1
  749. }
  750. },
  751. {
  752. "id": {
  753. "m_id": "{31DA89C4-A25F-47A2-BC9F-BFB4648F248A}"
  754. },
  755. "contracts": [
  756. {
  757. "$type": "SlotTypeContract"
  758. }
  759. ],
  760. "slotName": "Out",
  761. "Descriptor": {
  762. "ConnectionType": 2,
  763. "SlotType": 1
  764. }
  765. }
  766. ],
  767. "Datums": [
  768. {
  769. "isOverloadedStorage": false,
  770. "scriptCanvasType": {
  771. "m_type": 1
  772. },
  773. "isNullPointer": false,
  774. "$type": "EntityId",
  775. "value": {
  776. "id": 4276206253
  777. }
  778. },
  779. {
  780. "isOverloadedStorage": false,
  781. "scriptCanvasType": {
  782. "m_type": 0
  783. },
  784. "isNullPointer": false,
  785. "$type": "bool",
  786. "value": false,
  787. "label": "Candidate"
  788. },
  789. {
  790. "isOverloadedStorage": false,
  791. "scriptCanvasType": {
  792. "m_type": 5
  793. },
  794. "isNullPointer": false,
  795. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  796. "value": "first call",
  797. "label": "Report"
  798. }
  799. ],
  800. "methodType": 2,
  801. "methodName": "Expect False",
  802. "className": "Unit Testing",
  803. "resultSlotIDs": [
  804. {}
  805. ],
  806. "prettyClassName": "Unit Testing"
  807. }
  808. }
  809. },
  810. {
  811. "Id": {
  812. "id": 2619924543894985
  813. },
  814. "Name": "SC-Node(Expect False)",
  815. "Components": {
  816. "Component_[6358084500963540744]": {
  817. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  818. "Id": 6358084500963540744,
  819. "Slots": [
  820. {
  821. "isVisibile": false,
  822. "id": {
  823. "m_id": "{55190239-3C7C-4A22-A976-CC6C2D5F0785}"
  824. },
  825. "contracts": [
  826. {
  827. "$type": "SlotTypeContract"
  828. },
  829. null
  830. ],
  831. "slotName": "EntityID: 0",
  832. "Descriptor": {
  833. "ConnectionType": 1,
  834. "SlotType": 2
  835. },
  836. "DataType": 1
  837. },
  838. {
  839. "id": {
  840. "m_id": "{55FD3A6A-693A-47D1-A55F-E5012FA42ECD}"
  841. },
  842. "contracts": [
  843. {
  844. "$type": "SlotTypeContract"
  845. },
  846. null
  847. ],
  848. "slotName": "Candidate",
  849. "toolTip": "a value that must be false",
  850. "Descriptor": {
  851. "ConnectionType": 1,
  852. "SlotType": 2
  853. },
  854. "DataType": 1,
  855. "IsReference": true,
  856. "VariableReference": {
  857. "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
  858. }
  859. },
  860. {
  861. "id": {
  862. "m_id": "{7A89B538-BD17-430B-BE85-77C9A2FA0CD4}"
  863. },
  864. "contracts": [
  865. {
  866. "$type": "SlotTypeContract"
  867. },
  868. null
  869. ],
  870. "slotName": "Report",
  871. "toolTip": "additional notes for the test report",
  872. "Descriptor": {
  873. "ConnectionType": 1,
  874. "SlotType": 2
  875. },
  876. "DataType": 1
  877. },
  878. {
  879. "id": {
  880. "m_id": "{79CA35A2-A390-4FD8-9D36-D2FF841E98A4}"
  881. },
  882. "contracts": [
  883. {
  884. "$type": "SlotTypeContract"
  885. }
  886. ],
  887. "slotName": "In",
  888. "Descriptor": {
  889. "ConnectionType": 1,
  890. "SlotType": 1
  891. }
  892. },
  893. {
  894. "id": {
  895. "m_id": "{20AA28AF-856D-4497-B9E8-2A42BFF6A614}"
  896. },
  897. "contracts": [
  898. {
  899. "$type": "SlotTypeContract"
  900. }
  901. ],
  902. "slotName": "Out",
  903. "Descriptor": {
  904. "ConnectionType": 2,
  905. "SlotType": 1
  906. }
  907. }
  908. ],
  909. "Datums": [
  910. {
  911. "isOverloadedStorage": false,
  912. "scriptCanvasType": {
  913. "m_type": 1
  914. },
  915. "isNullPointer": false,
  916. "$type": "EntityId",
  917. "value": {
  918. "id": 4276206253
  919. }
  920. },
  921. {
  922. "isOverloadedStorage": false,
  923. "scriptCanvasType": {
  924. "m_type": 0
  925. },
  926. "isNullPointer": false,
  927. "$type": "bool",
  928. "value": false,
  929. "label": "Candidate"
  930. },
  931. {
  932. "isOverloadedStorage": false,
  933. "scriptCanvasType": {
  934. "m_type": 5
  935. },
  936. "isNullPointer": false,
  937. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  938. "value": "third call",
  939. "label": "Report"
  940. }
  941. ],
  942. "methodType": 2,
  943. "methodName": "Expect False",
  944. "className": "Unit Testing",
  945. "resultSlotIDs": [
  946. {}
  947. ],
  948. "prettyClassName": "Unit Testing"
  949. }
  950. }
  951. },
  952. {
  953. "Id": {
  954. "id": 2619915953960393
  955. },
  956. "Name": "SendScriptEvent",
  957. "Components": {
  958. "Component_[7392118671502002810]": {
  959. "$type": "SendScriptEvent",
  960. "Id": 7392118671502002810,
  961. "Slots": [
  962. {
  963. "id": {
  964. "m_id": "{95550F81-0B65-45BA-98AE-0F03254DBB71}"
  965. },
  966. "contracts": [
  967. {
  968. "$type": "SlotTypeContract"
  969. }
  970. ],
  971. "slotName": "In",
  972. "toolTip": "Fires the specified ScriptEvent when signaled",
  973. "Descriptor": {
  974. "ConnectionType": 1,
  975. "SlotType": 1
  976. }
  977. },
  978. {
  979. "id": {
  980. "m_id": "{303FBD03-0CE5-4A88-888C-9148340DD887}"
  981. },
  982. "contracts": [
  983. {
  984. "$type": "SlotTypeContract"
  985. }
  986. ],
  987. "slotName": "Out",
  988. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  989. "Descriptor": {
  990. "ConnectionType": 2,
  991. "SlotType": 1
  992. }
  993. },
  994. {
  995. "id": {
  996. "m_id": "{852A23C2-9F4F-4BF1-A47B-E11CA507CD1F}"
  997. },
  998. "contracts": [
  999. {
  1000. "$type": "SlotTypeContract"
  1001. },
  1002. null
  1003. ],
  1004. "slotName": "Source",
  1005. "toolTip": "String",
  1006. "Descriptor": {
  1007. "ConnectionType": 1,
  1008. "SlotType": 2
  1009. },
  1010. "DataType": 1,
  1011. "IsReference": true,
  1012. "VariableReference": {
  1013. "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
  1014. }
  1015. }
  1016. ],
  1017. "Datums": [
  1018. {
  1019. "isOverloadedStorage": false,
  1020. "scriptCanvasType": {
  1021. "m_type": 5
  1022. },
  1023. "isNullPointer": false,
  1024. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1025. "value": "",
  1026. "label": "Source"
  1027. }
  1028. ],
  1029. "m_version": 1,
  1030. "m_eventSlotMapping": {
  1031. "{301C4D5B-B9B1-4E72-BB4D-A1FA1ECD39DC}": {
  1032. "m_id": "{852A23C2-9F4F-4BF1-A47B-E11CA507CD1F}"
  1033. }
  1034. },
  1035. "m_scriptEventAssetId": {
  1036. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  1037. },
  1038. "m_asset": {
  1039. "assetId": {
  1040. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  1041. },
  1042. "loadBehavior": "PreLoad",
  1043. "assetHint": "scriptcanvas/unittests/localscriptevents.scriptevents"
  1044. },
  1045. "m_busId": {
  1046. "Value": 1754610029
  1047. },
  1048. "m_eventId": {
  1049. "Value": 2309008672
  1050. }
  1051. }
  1052. }
  1053. },
  1054. {
  1055. "Id": {
  1056. "id": 2619898774091209
  1057. },
  1058. "Name": "SC Node(GetVariable)",
  1059. "Components": {
  1060. "Component_[7595527124831669398]": {
  1061. "$type": "GetVariableNode",
  1062. "Id": 7595527124831669398,
  1063. "Slots": [
  1064. {
  1065. "id": {
  1066. "m_id": "{8773749A-72C8-4C86-A2AD-17EC42969E83}"
  1067. },
  1068. "contracts": [
  1069. {
  1070. "$type": "SlotTypeContract"
  1071. }
  1072. ],
  1073. "slotName": "In",
  1074. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1075. "Descriptor": {
  1076. "ConnectionType": 1,
  1077. "SlotType": 1
  1078. }
  1079. },
  1080. {
  1081. "id": {
  1082. "m_id": "{BA0A01EC-C141-4DCB-B463-CC03F05356F1}"
  1083. },
  1084. "contracts": [
  1085. {
  1086. "$type": "SlotTypeContract"
  1087. }
  1088. ],
  1089. "slotName": "Out",
  1090. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1091. "Descriptor": {
  1092. "ConnectionType": 2,
  1093. "SlotType": 1
  1094. }
  1095. },
  1096. {
  1097. "id": {
  1098. "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
  1099. },
  1100. "contracts": [
  1101. {
  1102. "$type": "SlotTypeContract"
  1103. }
  1104. ],
  1105. "slotName": "Boolean",
  1106. "DisplayDataType": {
  1107. "m_type": 0
  1108. },
  1109. "Descriptor": {
  1110. "ConnectionType": 2,
  1111. "SlotType": 2
  1112. }
  1113. }
  1114. ],
  1115. "m_variableId": {
  1116. "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
  1117. },
  1118. "m_variableDataOutSlotId": {
  1119. "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
  1120. }
  1121. }
  1122. }
  1123. },
  1124. {
  1125. "Id": {
  1126. "id": 2619907364025801
  1127. },
  1128. "Name": "SC Node(GetVariable)",
  1129. "Components": {
  1130. "Component_[7595527124831669398]": {
  1131. "$type": "GetVariableNode",
  1132. "Id": 7595527124831669398,
  1133. "Slots": [
  1134. {
  1135. "id": {
  1136. "m_id": "{8773749A-72C8-4C86-A2AD-17EC42969E83}"
  1137. },
  1138. "contracts": [
  1139. {
  1140. "$type": "SlotTypeContract"
  1141. }
  1142. ],
  1143. "slotName": "In",
  1144. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1145. "Descriptor": {
  1146. "ConnectionType": 1,
  1147. "SlotType": 1
  1148. }
  1149. },
  1150. {
  1151. "id": {
  1152. "m_id": "{BA0A01EC-C141-4DCB-B463-CC03F05356F1}"
  1153. },
  1154. "contracts": [
  1155. {
  1156. "$type": "SlotTypeContract"
  1157. }
  1158. ],
  1159. "slotName": "Out",
  1160. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1161. "Descriptor": {
  1162. "ConnectionType": 2,
  1163. "SlotType": 1
  1164. }
  1165. },
  1166. {
  1167. "id": {
  1168. "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
  1169. },
  1170. "contracts": [
  1171. {
  1172. "$type": "SlotTypeContract"
  1173. }
  1174. ],
  1175. "slotName": "Boolean",
  1176. "DisplayDataType": {
  1177. "m_type": 0
  1178. },
  1179. "Descriptor": {
  1180. "ConnectionType": 2,
  1181. "SlotType": 2
  1182. }
  1183. }
  1184. ],
  1185. "m_variableId": {
  1186. "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
  1187. },
  1188. "m_variableDataOutSlotId": {
  1189. "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
  1190. }
  1191. }
  1192. }
  1193. },
  1194. {
  1195. "Id": {
  1196. "id": 2619890184156617
  1197. },
  1198. "Name": "SendScriptEvent",
  1199. "Components": {
  1200. "Component_[774511950174411370]": {
  1201. "$type": "SendScriptEvent",
  1202. "Id": 774511950174411370,
  1203. "Slots": [
  1204. {
  1205. "id": {
  1206. "m_id": "{575AA295-8957-4930-B11A-7BF29B82BF22}"
  1207. },
  1208. "contracts": [
  1209. {
  1210. "$type": "SlotTypeContract"
  1211. }
  1212. ],
  1213. "slotName": "In",
  1214. "toolTip": "Fires the specified ScriptEvent when signaled",
  1215. "Descriptor": {
  1216. "ConnectionType": 1,
  1217. "SlotType": 1
  1218. }
  1219. },
  1220. {
  1221. "id": {
  1222. "m_id": "{D7BFF899-DB01-4700-9A5E-3B16ADDB65E8}"
  1223. },
  1224. "contracts": [
  1225. {
  1226. "$type": "SlotTypeContract"
  1227. }
  1228. ],
  1229. "slotName": "Out",
  1230. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  1231. "Descriptor": {
  1232. "ConnectionType": 2,
  1233. "SlotType": 1
  1234. }
  1235. },
  1236. {
  1237. "id": {
  1238. "m_id": "{415ABE9F-6DFC-4F27-BB42-CB452C193F86}"
  1239. },
  1240. "contracts": [
  1241. {
  1242. "$type": "SlotTypeContract"
  1243. },
  1244. null
  1245. ],
  1246. "slotName": "Source",
  1247. "toolTip": "String",
  1248. "Descriptor": {
  1249. "ConnectionType": 1,
  1250. "SlotType": 2
  1251. },
  1252. "DataType": 1,
  1253. "IsReference": true,
  1254. "VariableReference": {
  1255. "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
  1256. }
  1257. }
  1258. ],
  1259. "Datums": [
  1260. {
  1261. "isOverloadedStorage": false,
  1262. "scriptCanvasType": {
  1263. "m_type": 5
  1264. },
  1265. "isNullPointer": false,
  1266. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1267. "value": "",
  1268. "label": "Source"
  1269. }
  1270. ],
  1271. "m_version": 1,
  1272. "m_eventSlotMapping": {
  1273. "{301C4D5B-B9B1-4E72-BB4D-A1FA1ECD39DC}": {
  1274. "m_id": "{415ABE9F-6DFC-4F27-BB42-CB452C193F86}"
  1275. }
  1276. },
  1277. "m_scriptEventAssetId": {
  1278. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  1279. },
  1280. "m_asset": {
  1281. "assetId": {
  1282. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  1283. },
  1284. "loadBehavior": "PreLoad",
  1285. "assetHint": "scriptcanvas/unittests/localscriptevents.scriptevents"
  1286. },
  1287. "m_busId": {
  1288. "Value": 1754610029
  1289. },
  1290. "m_eventId": {
  1291. "Value": 2309008672
  1292. }
  1293. }
  1294. }
  1295. },
  1296. {
  1297. "Id": {
  1298. "id": 2619881594222025
  1299. },
  1300. "Name": "ReceiveScriptEvent",
  1301. "Components": {
  1302. "Component_[8671313328334627505]": {
  1303. "$type": "ReceiveScriptEvent",
  1304. "Id": 8671313328334627505,
  1305. "Slots": [
  1306. {
  1307. "id": {
  1308. "m_id": "{61C217E5-A3C8-4574-8DEE-42F6C45A01A0}"
  1309. },
  1310. "contracts": [
  1311. {
  1312. "$type": "SlotTypeContract"
  1313. }
  1314. ],
  1315. "slotName": "Connect",
  1316. "toolTip": "Connect this event handler to the specified entity.",
  1317. "Descriptor": {
  1318. "ConnectionType": 1,
  1319. "SlotType": 1
  1320. }
  1321. },
  1322. {
  1323. "id": {
  1324. "m_id": "{AACA3922-9E4F-4F21-99EE-C3A772EE1219}"
  1325. },
  1326. "contracts": [
  1327. {
  1328. "$type": "SlotTypeContract"
  1329. }
  1330. ],
  1331. "slotName": "Disconnect",
  1332. "toolTip": "Disconnect this event handler.",
  1333. "Descriptor": {
  1334. "ConnectionType": 1,
  1335. "SlotType": 1
  1336. }
  1337. },
  1338. {
  1339. "id": {
  1340. "m_id": "{63A20BDF-3BC9-42D7-8324-1AE10D3AD9B6}"
  1341. },
  1342. "contracts": [
  1343. {
  1344. "$type": "SlotTypeContract"
  1345. }
  1346. ],
  1347. "slotName": "OnConnected",
  1348. "toolTip": "Signaled when a connection has taken place.",
  1349. "Descriptor": {
  1350. "ConnectionType": 2,
  1351. "SlotType": 1
  1352. }
  1353. },
  1354. {
  1355. "id": {
  1356. "m_id": "{2E21D717-A970-4739-ABE9-48C35B82E02E}"
  1357. },
  1358. "contracts": [
  1359. {
  1360. "$type": "SlotTypeContract"
  1361. }
  1362. ],
  1363. "slotName": "OnDisconnected",
  1364. "toolTip": "Signaled when this event handler is disconnected.",
  1365. "Descriptor": {
  1366. "ConnectionType": 2,
  1367. "SlotType": 1
  1368. }
  1369. },
  1370. {
  1371. "id": {
  1372. "m_id": "{DB89FB82-696E-42C7-81F1-DAC747816B41}"
  1373. },
  1374. "contracts": [
  1375. {
  1376. "$type": "SlotTypeContract"
  1377. }
  1378. ],
  1379. "slotName": "OnFailure",
  1380. "toolTip": "Signaled when it is not possible to connect this handler.",
  1381. "Descriptor": {
  1382. "ConnectionType": 2,
  1383. "SlotType": 1
  1384. }
  1385. },
  1386. {
  1387. "id": {
  1388. "m_id": "{78AA9C52-B376-4FE5-8B77-6105002DAB25}"
  1389. },
  1390. "contracts": [
  1391. {
  1392. "$type": "SlotTypeContract"
  1393. },
  1394. null,
  1395. {
  1396. "$type": "RestrictedTypeContract",
  1397. "types": [
  1398. {
  1399. "m_type": 5
  1400. }
  1401. ]
  1402. }
  1403. ],
  1404. "slotName": "Source",
  1405. "toolTip": "ID used to connect on a specific Event address (Type: String)",
  1406. "Descriptor": {
  1407. "ConnectionType": 1,
  1408. "SlotType": 2
  1409. },
  1410. "DataType": 1
  1411. },
  1412. {
  1413. "id": {
  1414. "m_id": "{F566A78E-74BA-4101-8A5E-27CB9D08A0A9}"
  1415. },
  1416. "contracts": [
  1417. {
  1418. "$type": "SlotTypeContract"
  1419. }
  1420. ],
  1421. "slotName": "ExecutionSlot:Void",
  1422. "Descriptor": {
  1423. "ConnectionType": 2,
  1424. "SlotType": 1
  1425. },
  1426. "IsLatent": true
  1427. },
  1428. {
  1429. "id": {
  1430. "m_id": "{3D5AED4D-178A-4087-B54F-B3B70E24FF09}"
  1431. },
  1432. "contracts": [
  1433. {
  1434. "$type": "SlotTypeContract"
  1435. },
  1436. null
  1437. ],
  1438. "slotName": "Result: Boolean",
  1439. "Descriptor": {
  1440. "ConnectionType": 1,
  1441. "SlotType": 2
  1442. },
  1443. "DataType": 1
  1444. },
  1445. {
  1446. "id": {
  1447. "m_id": "{93FA7B18-AA16-47ED-A131-1285D5226840}"
  1448. },
  1449. "contracts": [
  1450. {
  1451. "$type": "SlotTypeContract"
  1452. }
  1453. ],
  1454. "slotName": "Boolean",
  1455. "DisplayDataType": {
  1456. "m_type": 0
  1457. },
  1458. "Descriptor": {
  1459. "ConnectionType": 2,
  1460. "SlotType": 2
  1461. },
  1462. "DataType": 1
  1463. },
  1464. {
  1465. "id": {
  1466. "m_id": "{428BE79E-1298-4518-8843-ED7F90F0D134}"
  1467. },
  1468. "contracts": [
  1469. {
  1470. "$type": "SlotTypeContract"
  1471. }
  1472. ],
  1473. "slotName": "ExecutionSlot:Not",
  1474. "Descriptor": {
  1475. "ConnectionType": 2,
  1476. "SlotType": 1
  1477. },
  1478. "IsLatent": true
  1479. },
  1480. {
  1481. "id": {
  1482. "m_id": "{01106A79-E5DD-40DC-A6D6-B5CB0CF953F0}"
  1483. },
  1484. "contracts": [
  1485. {
  1486. "$type": "SlotTypeContract"
  1487. },
  1488. null
  1489. ],
  1490. "slotName": "Result: Number",
  1491. "Descriptor": {
  1492. "ConnectionType": 1,
  1493. "SlotType": 2
  1494. },
  1495. "DataType": 1
  1496. },
  1497. {
  1498. "id": {
  1499. "m_id": "{65D94438-83C6-41E0-88DF-C7B5B72FA9A8}"
  1500. },
  1501. "contracts": [
  1502. {
  1503. "$type": "SlotTypeContract"
  1504. }
  1505. ],
  1506. "slotName": "Number",
  1507. "DisplayDataType": {
  1508. "m_type": 3
  1509. },
  1510. "Descriptor": {
  1511. "ConnectionType": 2,
  1512. "SlotType": 2
  1513. },
  1514. "DataType": 1
  1515. },
  1516. {
  1517. "id": {
  1518. "m_id": "{EFB56010-31D8-4969-8823-84F9D2CE4B83}"
  1519. },
  1520. "contracts": [
  1521. {
  1522. "$type": "SlotTypeContract"
  1523. }
  1524. ],
  1525. "slotName": "ExecutionSlot:Increment",
  1526. "Descriptor": {
  1527. "ConnectionType": 2,
  1528. "SlotType": 1
  1529. },
  1530. "IsLatent": true
  1531. }
  1532. ],
  1533. "Datums": [
  1534. {
  1535. "isOverloadedStorage": false,
  1536. "scriptCanvasType": {
  1537. "m_type": 5
  1538. },
  1539. "isNullPointer": false,
  1540. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1541. "value": "",
  1542. "label": "Source"
  1543. },
  1544. {
  1545. "isOverloadedStorage": false,
  1546. "scriptCanvasType": {
  1547. "m_type": 0
  1548. },
  1549. "isNullPointer": false,
  1550. "$type": "bool",
  1551. "value": false,
  1552. "label": "Result: Boolean"
  1553. },
  1554. {
  1555. "isOverloadedStorage": false,
  1556. "scriptCanvasType": {
  1557. "m_type": 3
  1558. },
  1559. "isNullPointer": false,
  1560. "$type": "double",
  1561. "value": 0.0,
  1562. "label": "Result: Number"
  1563. }
  1564. ],
  1565. "m_version": 1,
  1566. "m_eventMap": [
  1567. {
  1568. "Key": {
  1569. "Value": 912046516
  1570. },
  1571. "Value": {
  1572. "m_scriptEventAssetId": {
  1573. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  1574. },
  1575. "m_eventName": "Not",
  1576. "m_eventSlotId": {
  1577. "m_id": "{428BE79E-1298-4518-8843-ED7F90F0D134}"
  1578. },
  1579. "m_resultSlotId": {
  1580. "m_id": "{3D5AED4D-178A-4087-B54F-B3B70E24FF09}"
  1581. },
  1582. "m_parameterSlotIds": [
  1583. {
  1584. "m_id": "{93FA7B18-AA16-47ED-A131-1285D5226840}"
  1585. }
  1586. ],
  1587. "m_numExpectedArguments": 1
  1588. }
  1589. },
  1590. {
  1591. "Key": {
  1592. "Value": 1787612057
  1593. },
  1594. "Value": {
  1595. "m_scriptEventAssetId": {
  1596. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  1597. },
  1598. "m_eventName": "Increment",
  1599. "m_eventSlotId": {
  1600. "m_id": "{EFB56010-31D8-4969-8823-84F9D2CE4B83}"
  1601. },
  1602. "m_resultSlotId": {
  1603. "m_id": "{01106A79-E5DD-40DC-A6D6-B5CB0CF953F0}"
  1604. },
  1605. "m_parameterSlotIds": [
  1606. {
  1607. "m_id": "{65D94438-83C6-41E0-88DF-C7B5B72FA9A8}"
  1608. }
  1609. ],
  1610. "m_numExpectedArguments": 1
  1611. }
  1612. },
  1613. {
  1614. "Key": {
  1615. "Value": 2309008672
  1616. },
  1617. "Value": {
  1618. "m_scriptEventAssetId": {
  1619. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  1620. },
  1621. "m_eventName": "Void",
  1622. "m_eventSlotId": {
  1623. "m_id": "{F566A78E-74BA-4101-8A5E-27CB9D08A0A9}"
  1624. }
  1625. }
  1626. }
  1627. ],
  1628. "m_eventSlotMapping": {
  1629. "{1F1A33C2-DD58-4C6A-B95B-5A67F6969642}": {
  1630. "m_id": "{93FA7B18-AA16-47ED-A131-1285D5226840}"
  1631. },
  1632. "{23C32F9C-F467-431A-8691-D83F763BD2C6}": {
  1633. "m_id": "{65D94438-83C6-41E0-88DF-C7B5B72FA9A8}"
  1634. },
  1635. "{2459F7AA-172D-4187-85E1-397E6A7D0F3D}": {
  1636. "m_id": "{EFB56010-31D8-4969-8823-84F9D2CE4B83}"
  1637. },
  1638. "{301C4D5B-B9B1-4E72-BB4D-A1FA1ECD39DC}": {
  1639. "m_id": "{78AA9C52-B376-4FE5-8B77-6105002DAB25}"
  1640. },
  1641. "{76318ED7-45D5-4C09-9C94-80C0AF8053A9}": {
  1642. "m_id": "{428BE79E-1298-4518-8843-ED7F90F0D134}"
  1643. },
  1644. "{90254C81-3253-4D71-8D47-A3DC13D6B518}": {
  1645. "m_id": "{3D5AED4D-178A-4087-B54F-B3B70E24FF09}"
  1646. },
  1647. "{A64111EE-AC03-4037-8B30-55EFD5B8D025}": {
  1648. "m_id": "{01106A79-E5DD-40DC-A6D6-B5CB0CF953F0}"
  1649. },
  1650. "{C4C89DB1-4DD2-418B-92C4-3B060CADE0E0}": {
  1651. "m_id": "{F566A78E-74BA-4101-8A5E-27CB9D08A0A9}"
  1652. }
  1653. },
  1654. "m_scriptEventAssetId": {
  1655. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  1656. },
  1657. "m_asset": {
  1658. "assetId": {
  1659. "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
  1660. },
  1661. "loadBehavior": "PreLoad",
  1662. "assetHint": "scriptcanvas/unittests/localscriptevents.scriptevents"
  1663. },
  1664. "m_autoConnectToGraphOwner": false
  1665. }
  1666. }
  1667. }
  1668. ],
  1669. "m_connections": [
  1670. {
  1671. "Id": {
  1672. "id": 2619937428796873
  1673. },
  1674. "Name": "srcEndpoint=(Get Variable: Boolean), destEndpoint=(Expect False: Candidate)",
  1675. "Components": {
  1676. "Component_[10069082654731522398]": {
  1677. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1678. "Id": 10069082654731522398,
  1679. "sourceEndpoint": {
  1680. "nodeId": {
  1681. "id": 2619898774091209
  1682. },
  1683. "slotId": {
  1684. "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
  1685. }
  1686. },
  1687. "targetEndpoint": {
  1688. "nodeId": {
  1689. "id": 2619933133829577
  1690. },
  1691. "slotId": {
  1692. "m_id": "{523171D0-86C7-4B95-942B-5F2BF1D7824C}"
  1693. }
  1694. }
  1695. }
  1696. }
  1697. },
  1698. {
  1699. "Id": {
  1700. "id": 2619941723764169
  1701. },
  1702. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect False: In)",
  1703. "Components": {
  1704. "Component_[1960770782971282999]": {
  1705. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1706. "Id": 1960770782971282999,
  1707. "sourceEndpoint": {
  1708. "nodeId": {
  1709. "id": 2619898774091209
  1710. },
  1711. "slotId": {
  1712. "m_id": "{BA0A01EC-C141-4DCB-B463-CC03F05356F1}"
  1713. }
  1714. },
  1715. "targetEndpoint": {
  1716. "nodeId": {
  1717. "id": 2619933133829577
  1718. },
  1719. "slotId": {
  1720. "m_id": "{99164137-773F-4AF2-B5D8-02A1301F4857}"
  1721. }
  1722. }
  1723. }
  1724. }
  1725. },
  1726. {
  1727. "Id": {
  1728. "id": 2619946018731465
  1729. },
  1730. "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(Get Variable: In)",
  1731. "Components": {
  1732. "Component_[16403266542524929886]": {
  1733. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1734. "Id": 16403266542524929886,
  1735. "sourceEndpoint": {
  1736. "nodeId": {
  1737. "id": 2619933133829577
  1738. },
  1739. "slotId": {
  1740. "m_id": "{31DA89C4-A25F-47A2-BC9F-BFB4648F248A}"
  1741. }
  1742. },
  1743. "targetEndpoint": {
  1744. "nodeId": {
  1745. "id": 2619877299254729
  1746. },
  1747. "slotId": {
  1748. "m_id": "{FED4EC08-523D-41AC-8D3B-F52B667F8DB7}"
  1749. }
  1750. }
  1751. }
  1752. }
  1753. },
  1754. {
  1755. "Id": {
  1756. "id": 2619950313698761
  1757. },
  1758. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Receive Script Event: Connect)",
  1759. "Components": {
  1760. "Component_[14669392074717020319]": {
  1761. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1762. "Id": 14669392074717020319,
  1763. "sourceEndpoint": {
  1764. "nodeId": {
  1765. "id": 2619877299254729
  1766. },
  1767. "slotId": {
  1768. "m_id": "{13904D07-33F8-4F8B-BB53-1B2541320077}"
  1769. }
  1770. },
  1771. "targetEndpoint": {
  1772. "nodeId": {
  1773. "id": 2619881594222025
  1774. },
  1775. "slotId": {
  1776. "m_id": "{61C217E5-A3C8-4574-8DEE-42F6C45A01A0}"
  1777. }
  1778. }
  1779. }
  1780. }
  1781. },
  1782. {
  1783. "Id": {
  1784. "id": 2619954608666057
  1785. },
  1786. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Receive Script Event: Source)",
  1787. "Components": {
  1788. "Component_[10134964374600601965]": {
  1789. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1790. "Id": 10134964374600601965,
  1791. "sourceEndpoint": {
  1792. "nodeId": {
  1793. "id": 2619877299254729
  1794. },
  1795. "slotId": {
  1796. "m_id": "{56DC047D-CF42-4CB6-A5E7-B01DA48A894C}"
  1797. }
  1798. },
  1799. "targetEndpoint": {
  1800. "nodeId": {
  1801. "id": 2619881594222025
  1802. },
  1803. "slotId": {
  1804. "m_id": "{78AA9C52-B376-4FE5-8B77-6105002DAB25}"
  1805. }
  1806. }
  1807. }
  1808. }
  1809. },
  1810. {
  1811. "Id": {
  1812. "id": 2619958903633353
  1813. },
  1814. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Send Script Event: In)",
  1815. "Components": {
  1816. "Component_[11855265208458196677]": {
  1817. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1818. "Id": 11855265208458196677,
  1819. "sourceEndpoint": {
  1820. "nodeId": {
  1821. "id": 2619911658993097
  1822. },
  1823. "slotId": {
  1824. "m_id": "{44FA5998-4DBF-492B-9B0C-283B1DBC396B}"
  1825. }
  1826. },
  1827. "targetEndpoint": {
  1828. "nodeId": {
  1829. "id": 2619890184156617
  1830. },
  1831. "slotId": {
  1832. "m_id": "{575AA295-8957-4930-B11A-7BF29B82BF22}"
  1833. }
  1834. }
  1835. }
  1836. }
  1837. },
  1838. {
  1839. "Id": {
  1840. "id": 2619963198600649
  1841. },
  1842. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Get Variable: In)",
  1843. "Components": {
  1844. "Component_[10874238375288839059]": {
  1845. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1846. "Id": 10874238375288839059,
  1847. "sourceEndpoint": {
  1848. "nodeId": {
  1849. "id": 2619890184156617
  1850. },
  1851. "slotId": {
  1852. "m_id": "{D7BFF899-DB01-4700-9A5E-3B16ADDB65E8}"
  1853. }
  1854. },
  1855. "targetEndpoint": {
  1856. "nodeId": {
  1857. "id": 2619898774091209
  1858. },
  1859. "slotId": {
  1860. "m_id": "{8773749A-72C8-4C86-A2AD-17EC42969E83}"
  1861. }
  1862. }
  1863. }
  1864. }
  1865. },
  1866. {
  1867. "Id": {
  1868. "id": 2619967493567945
  1869. },
  1870. "Name": "srcEndpoint=(Receive Script Event: OnConnected), destEndpoint=(Send Script Event: In)",
  1871. "Components": {
  1872. "Component_[7807064088427961554]": {
  1873. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1874. "Id": 7807064088427961554,
  1875. "sourceEndpoint": {
  1876. "nodeId": {
  1877. "id": 2619881594222025
  1878. },
  1879. "slotId": {
  1880. "m_id": "{63A20BDF-3BC9-42D7-8324-1AE10D3AD9B6}"
  1881. }
  1882. },
  1883. "targetEndpoint": {
  1884. "nodeId": {
  1885. "id": 2619915953960393
  1886. },
  1887. "slotId": {
  1888. "m_id": "{95550F81-0B65-45BA-98AE-0F03254DBB71}"
  1889. }
  1890. }
  1891. }
  1892. }
  1893. },
  1894. {
  1895. "Id": {
  1896. "id": 2619971788535241
  1897. },
  1898. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Get Variable: In)",
  1899. "Components": {
  1900. "Component_[17998133473411973696]": {
  1901. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1902. "Id": 17998133473411973696,
  1903. "sourceEndpoint": {
  1904. "nodeId": {
  1905. "id": 2619915953960393
  1906. },
  1907. "slotId": {
  1908. "m_id": "{303FBD03-0CE5-4A88-888C-9148340DD887}"
  1909. }
  1910. },
  1911. "targetEndpoint": {
  1912. "nodeId": {
  1913. "id": 2619907364025801
  1914. },
  1915. "slotId": {
  1916. "m_id": "{8773749A-72C8-4C86-A2AD-17EC42969E83}"
  1917. }
  1918. }
  1919. }
  1920. }
  1921. },
  1922. {
  1923. "Id": {
  1924. "id": 2619976083502537
  1925. },
  1926. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect True: In)",
  1927. "Components": {
  1928. "Component_[9747212749788233501]": {
  1929. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1930. "Id": 9747212749788233501,
  1931. "sourceEndpoint": {
  1932. "nodeId": {
  1933. "id": 2619907364025801
  1934. },
  1935. "slotId": {
  1936. "m_id": "{BA0A01EC-C141-4DCB-B463-CC03F05356F1}"
  1937. }
  1938. },
  1939. "targetEndpoint": {
  1940. "nodeId": {
  1941. "id": 2619903069058505
  1942. },
  1943. "slotId": {
  1944. "m_id": "{0A6E4BCD-BD20-439B-B0D2-595EAD358220}"
  1945. }
  1946. }
  1947. }
  1948. }
  1949. },
  1950. {
  1951. "Id": {
  1952. "id": 2619980378469833
  1953. },
  1954. "Name": "srcEndpoint=(Get Variable: Boolean), destEndpoint=(Expect True: Candidate)",
  1955. "Components": {
  1956. "Component_[15104176635510658534]": {
  1957. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1958. "Id": 15104176635510658534,
  1959. "sourceEndpoint": {
  1960. "nodeId": {
  1961. "id": 2619907364025801
  1962. },
  1963. "slotId": {
  1964. "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
  1965. }
  1966. },
  1967. "targetEndpoint": {
  1968. "nodeId": {
  1969. "id": 2619903069058505
  1970. },
  1971. "slotId": {
  1972. "m_id": "{5C0E5223-D35A-4095-8AC9-362ECF38A8D9}"
  1973. }
  1974. }
  1975. }
  1976. }
  1977. },
  1978. {
  1979. "Id": {
  1980. "id": 2619984673437129
  1981. },
  1982. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Receive Script Event: Disconnect)",
  1983. "Components": {
  1984. "Component_[7614447246491634847]": {
  1985. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1986. "Id": 7614447246491634847,
  1987. "sourceEndpoint": {
  1988. "nodeId": {
  1989. "id": 2619903069058505
  1990. },
  1991. "slotId": {
  1992. "m_id": "{7C8CFDE7-896F-4B9F-92C3-0EDCA74A8B00}"
  1993. }
  1994. },
  1995. "targetEndpoint": {
  1996. "nodeId": {
  1997. "id": 2619881594222025
  1998. },
  1999. "slotId": {
  2000. "m_id": "{AACA3922-9E4F-4F21-99EE-C3A772EE1219}"
  2001. }
  2002. }
  2003. }
  2004. }
  2005. },
  2006. {
  2007. "Id": {
  2008. "id": 2619988968404425
  2009. },
  2010. "Name": "srcEndpoint=(Receive Script Event: OnDisconnected), destEndpoint=(Set Variable: In)",
  2011. "Components": {
  2012. "Component_[17033721373711621977]": {
  2013. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2014. "Id": 17033721373711621977,
  2015. "sourceEndpoint": {
  2016. "nodeId": {
  2017. "id": 2619881594222025
  2018. },
  2019. "slotId": {
  2020. "m_id": "{2E21D717-A970-4739-ABE9-48C35B82E02E}"
  2021. }
  2022. },
  2023. "targetEndpoint": {
  2024. "nodeId": {
  2025. "id": 2619928838862281
  2026. },
  2027. "slotId": {
  2028. "m_id": "{5C6B3A88-7E68-443C-8E2B-0D0D63C7AAE5}"
  2029. }
  2030. }
  2031. }
  2032. }
  2033. },
  2034. {
  2035. "Id": {
  2036. "id": 2619993263371721
  2037. },
  2038. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Void), destEndpoint=(Set Variable: In)",
  2039. "Components": {
  2040. "Component_[16855973751185847399]": {
  2041. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2042. "Id": 16855973751185847399,
  2043. "sourceEndpoint": {
  2044. "nodeId": {
  2045. "id": 2619881594222025
  2046. },
  2047. "slotId": {
  2048. "m_id": "{F566A78E-74BA-4101-8A5E-27CB9D08A0A9}"
  2049. }
  2050. },
  2051. "targetEndpoint": {
  2052. "nodeId": {
  2053. "id": 2619894479123913
  2054. },
  2055. "slotId": {
  2056. "m_id": "{A99765FD-773E-45DB-80EA-5BA3B29D001C}"
  2057. }
  2058. }
  2059. }
  2060. }
  2061. },
  2062. {
  2063. "Id": {
  2064. "id": 2619997558339017
  2065. },
  2066. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Send Script Event: In)",
  2067. "Components": {
  2068. "Component_[15512707442938676314]": {
  2069. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2070. "Id": 15512707442938676314,
  2071. "sourceEndpoint": {
  2072. "nodeId": {
  2073. "id": 2619928838862281
  2074. },
  2075. "slotId": {
  2076. "m_id": "{B3F0EBFB-D103-4342-9940-12B55ACE1CE2}"
  2077. }
  2078. },
  2079. "targetEndpoint": {
  2080. "nodeId": {
  2081. "id": 2619885889189321
  2082. },
  2083. "slotId": {
  2084. "m_id": "{23BC6DD4-2194-44DE-8CAE-3B6B06681198}"
  2085. }
  2086. }
  2087. }
  2088. }
  2089. },
  2090. {
  2091. "Id": {
  2092. "id": 2620001853306313
  2093. },
  2094. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Expect False: In)",
  2095. "Components": {
  2096. "Component_[6531576496108258889]": {
  2097. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2098. "Id": 6531576496108258889,
  2099. "sourceEndpoint": {
  2100. "nodeId": {
  2101. "id": 2619885889189321
  2102. },
  2103. "slotId": {
  2104. "m_id": "{7AF83111-7FCB-4725-940F-44289E62CA27}"
  2105. }
  2106. },
  2107. "targetEndpoint": {
  2108. "nodeId": {
  2109. "id": 2619924543894985
  2110. },
  2111. "slotId": {
  2112. "m_id": "{79CA35A2-A390-4FD8-9D36-D2FF841E98A4}"
  2113. }
  2114. }
  2115. }
  2116. }
  2117. },
  2118. {
  2119. "Id": {
  2120. "id": 2620006148273609
  2121. },
  2122. "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(Mark Complete: In)",
  2123. "Components": {
  2124. "Component_[14675412595529317136]": {
  2125. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2126. "Id": 14675412595529317136,
  2127. "sourceEndpoint": {
  2128. "nodeId": {
  2129. "id": 2619924543894985
  2130. },
  2131. "slotId": {
  2132. "m_id": "{20AA28AF-856D-4497-B9E8-2A42BFF6A614}"
  2133. }
  2134. },
  2135. "targetEndpoint": {
  2136. "nodeId": {
  2137. "id": 2619920248927689
  2138. },
  2139. "slotId": {
  2140. "m_id": "{57BD6785-3DD2-41F7-8534-1B347B33D5FE}"
  2141. }
  2142. }
  2143. }
  2144. }
  2145. }
  2146. ],
  2147. "m_scriptEventAssets": [
  2148. [
  2149. {
  2150. "id": 2619890184156617
  2151. },
  2152. {}
  2153. ],
  2154. [
  2155. {
  2156. "id": 2619881594222025
  2157. },
  2158. {}
  2159. ],
  2160. [
  2161. {
  2162. "id": 2619915953960393
  2163. },
  2164. {}
  2165. ],
  2166. [
  2167. {
  2168. "id": 2619885889189321
  2169. },
  2170. {}
  2171. ]
  2172. ]
  2173. },
  2174. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  2175. "versionData": {
  2176. "_grammarVersion": 1,
  2177. "_runtimeVersion": 1,
  2178. "_fileVersion": 1
  2179. },
  2180. "m_variableCounter": 1,
  2181. "GraphCanvasData": [
  2182. {
  2183. "Key": {
  2184. "id": 2619873004287433
  2185. },
  2186. "Value": {
  2187. "ComponentData": {
  2188. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2189. "$type": "SceneComponentSaveData",
  2190. "ViewParams": {
  2191. "Scale": 0.8701891,
  2192. "AnchorX": 783.7376708984375,
  2193. "AnchorY": -63.20465087890625
  2194. }
  2195. }
  2196. }
  2197. }
  2198. },
  2199. {
  2200. "Key": {
  2201. "id": 2619877299254729
  2202. },
  2203. "Value": {
  2204. "ComponentData": {
  2205. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2206. "$type": "NodeSaveData"
  2207. },
  2208. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2209. "$type": "GeneralNodeTitleComponentSaveData",
  2210. "PaletteOverride": "GetVariableNodeTitlePalette"
  2211. },
  2212. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2213. "$type": "GeometrySaveData",
  2214. "Position": [
  2215. 340.0,
  2216. 120.0
  2217. ]
  2218. },
  2219. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2220. "$type": "StylingComponentSaveData",
  2221. "SubStyle": ".getVariable"
  2222. },
  2223. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2224. "$type": "PersistentIdComponentSaveData",
  2225. "PersistentId": "{018874DD-3E6B-4A5C-AD49-B26400E3E890}"
  2226. }
  2227. }
  2228. }
  2229. },
  2230. {
  2231. "Key": {
  2232. "id": 2619881594222025
  2233. },
  2234. "Value": {
  2235. "ComponentData": {
  2236. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2237. "$type": "NodeSaveData"
  2238. },
  2239. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2240. "$type": "GeometrySaveData",
  2241. "Position": [
  2242. 520.0,
  2243. 140.0
  2244. ]
  2245. },
  2246. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2247. "$type": "StylingComponentSaveData"
  2248. },
  2249. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2250. "$type": "PersistentIdComponentSaveData",
  2251. "PersistentId": "{3F705FDE-3D38-48F6-840D-6495950B73C5}"
  2252. },
  2253. "{D8BBE799-7E4D-495A-B69A-1E3940670891}": {
  2254. "$type": "ScriptEventReceiverHandlerNodeDescriptorSaveData",
  2255. "DisplayConnections": true,
  2256. "EventNames": [
  2257. [
  2258. {
  2259. "Value": 2309008672
  2260. },
  2261. "Void"
  2262. ]
  2263. ]
  2264. }
  2265. }
  2266. }
  2267. },
  2268. {
  2269. "Key": {
  2270. "id": 2619885889189321
  2271. },
  2272. "Value": {
  2273. "ComponentData": {
  2274. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2275. "$type": "NodeSaveData"
  2276. },
  2277. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2278. "$type": "GeneralNodeTitleComponentSaveData",
  2279. "PaletteOverride": "MethodNodeTitlePalette"
  2280. },
  2281. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2282. "$type": "GeometrySaveData",
  2283. "Position": [
  2284. 1200.0,
  2285. 160.0
  2286. ]
  2287. },
  2288. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2289. "$type": "StylingComponentSaveData",
  2290. "SubStyle": ".method"
  2291. },
  2292. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2293. "$type": "PersistentIdComponentSaveData",
  2294. "PersistentId": "{7AB23AAD-95BF-4937-9E50-AE86B7857E54}"
  2295. }
  2296. }
  2297. }
  2298. },
  2299. {
  2300. "Key": {
  2301. "id": 2619890184156617
  2302. },
  2303. "Value": {
  2304. "ComponentData": {
  2305. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2306. "$type": "NodeSaveData"
  2307. },
  2308. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2309. "$type": "GeneralNodeTitleComponentSaveData",
  2310. "PaletteOverride": "MethodNodeTitlePalette"
  2311. },
  2312. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2313. "$type": "GeometrySaveData",
  2314. "Position": [
  2315. -620.0,
  2316. 80.0
  2317. ]
  2318. },
  2319. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2320. "$type": "StylingComponentSaveData",
  2321. "SubStyle": ".method"
  2322. },
  2323. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2324. "$type": "PersistentIdComponentSaveData",
  2325. "PersistentId": "{BD7C1F1B-8DD0-42F4-B9B1-69E522BCCE5C}"
  2326. }
  2327. }
  2328. }
  2329. },
  2330. {
  2331. "Key": {
  2332. "id": 2619894479123913
  2333. },
  2334. "Value": {
  2335. "ComponentData": {
  2336. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2337. "$type": "NodeSaveData"
  2338. },
  2339. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2340. "$type": "GeneralNodeTitleComponentSaveData",
  2341. "PaletteOverride": "SetVariableNodeTitlePalette"
  2342. },
  2343. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2344. "$type": "GeometrySaveData",
  2345. "Position": [
  2346. 860.0,
  2347. 320.0
  2348. ]
  2349. },
  2350. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2351. "$type": "StylingComponentSaveData",
  2352. "SubStyle": ".setVariable"
  2353. },
  2354. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2355. "$type": "PersistentIdComponentSaveData",
  2356. "PersistentId": "{D83C40B5-CF7E-40A2-9E17-C788BF03E05C}"
  2357. }
  2358. }
  2359. }
  2360. },
  2361. {
  2362. "Key": {
  2363. "id": 2619898774091209
  2364. },
  2365. "Value": {
  2366. "ComponentData": {
  2367. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2368. "$type": "NodeSaveData"
  2369. },
  2370. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2371. "$type": "GeneralNodeTitleComponentSaveData",
  2372. "PaletteOverride": "GetVariableNodeTitlePalette"
  2373. },
  2374. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2375. "$type": "GeometrySaveData",
  2376. "Position": [
  2377. -320.0,
  2378. 120.0
  2379. ]
  2380. },
  2381. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2382. "$type": "StylingComponentSaveData",
  2383. "SubStyle": ".getVariable"
  2384. },
  2385. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2386. "$type": "PersistentIdComponentSaveData",
  2387. "PersistentId": "{C6E03D47-0369-4A93-8A97-5B01C5566A37}"
  2388. }
  2389. }
  2390. }
  2391. },
  2392. {
  2393. "Key": {
  2394. "id": 2619903069058505
  2395. },
  2396. "Value": {
  2397. "ComponentData": {
  2398. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2399. "$type": "NodeSaveData"
  2400. },
  2401. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2402. "$type": "GeneralNodeTitleComponentSaveData",
  2403. "PaletteOverride": "MethodNodeTitlePalette"
  2404. },
  2405. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2406. "$type": "GeometrySaveData",
  2407. "Position": [
  2408. -100.0,
  2409. 480.0
  2410. ]
  2411. },
  2412. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2413. "$type": "StylingComponentSaveData",
  2414. "SubStyle": ".method"
  2415. },
  2416. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2417. "$type": "PersistentIdComponentSaveData",
  2418. "PersistentId": "{8746C676-E677-4BE8-91D5-499B4E62FA6F}"
  2419. }
  2420. }
  2421. }
  2422. },
  2423. {
  2424. "Key": {
  2425. "id": 2619907364025801
  2426. },
  2427. "Value": {
  2428. "ComponentData": {
  2429. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2430. "$type": "NodeSaveData"
  2431. },
  2432. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2433. "$type": "GeneralNodeTitleComponentSaveData",
  2434. "PaletteOverride": "GetVariableNodeTitlePalette"
  2435. },
  2436. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2437. "$type": "GeometrySaveData",
  2438. "Position": [
  2439. -420.0,
  2440. 480.0
  2441. ]
  2442. },
  2443. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2444. "$type": "StylingComponentSaveData",
  2445. "SubStyle": ".getVariable"
  2446. },
  2447. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2448. "$type": "PersistentIdComponentSaveData",
  2449. "PersistentId": "{79CB5F1F-DC65-4BCB-90BD-1EE14B8CCBBF}"
  2450. }
  2451. }
  2452. }
  2453. },
  2454. {
  2455. "Key": {
  2456. "id": 2619911658993097
  2457. },
  2458. "Value": {
  2459. "ComponentData": {
  2460. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2461. "$type": "NodeSaveData"
  2462. },
  2463. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2464. "$type": "GeneralNodeTitleComponentSaveData",
  2465. "PaletteOverride": "TimeNodeTitlePalette"
  2466. },
  2467. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2468. "$type": "GeometrySaveData",
  2469. "Position": [
  2470. -800.0,
  2471. 120.0
  2472. ]
  2473. },
  2474. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2475. "$type": "StylingComponentSaveData",
  2476. "SubStyle": ".time"
  2477. },
  2478. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2479. "$type": "PersistentIdComponentSaveData",
  2480. "PersistentId": "{D0C4045D-A74E-4203-A77B-0425739D0883}"
  2481. }
  2482. }
  2483. }
  2484. },
  2485. {
  2486. "Key": {
  2487. "id": 2619915953960393
  2488. },
  2489. "Value": {
  2490. "ComponentData": {
  2491. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2492. "$type": "NodeSaveData"
  2493. },
  2494. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2495. "$type": "GeneralNodeTitleComponentSaveData",
  2496. "PaletteOverride": "MethodNodeTitlePalette"
  2497. },
  2498. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2499. "$type": "GeometrySaveData",
  2500. "Position": [
  2501. -740.0,
  2502. 480.0
  2503. ]
  2504. },
  2505. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2506. "$type": "StylingComponentSaveData",
  2507. "SubStyle": ".method"
  2508. },
  2509. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2510. "$type": "PersistentIdComponentSaveData",
  2511. "PersistentId": "{A64F923D-EF1D-40CF-9582-3BC61ABBAEFB}"
  2512. }
  2513. }
  2514. }
  2515. },
  2516. {
  2517. "Key": {
  2518. "id": 2619920248927689
  2519. },
  2520. "Value": {
  2521. "ComponentData": {
  2522. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2523. "$type": "NodeSaveData"
  2524. },
  2525. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2526. "$type": "GeneralNodeTitleComponentSaveData",
  2527. "PaletteOverride": "MethodNodeTitlePalette"
  2528. },
  2529. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2530. "$type": "GeometrySaveData",
  2531. "Position": [
  2532. 1840.0,
  2533. 160.0
  2534. ]
  2535. },
  2536. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2537. "$type": "StylingComponentSaveData",
  2538. "SubStyle": ".method"
  2539. },
  2540. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2541. "$type": "PersistentIdComponentSaveData",
  2542. "PersistentId": "{A302CBD4-5C57-4CA7-BF80-2ECBEEDAECD8}"
  2543. }
  2544. }
  2545. }
  2546. },
  2547. {
  2548. "Key": {
  2549. "id": 2619924543894985
  2550. },
  2551. "Value": {
  2552. "ComponentData": {
  2553. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2554. "$type": "NodeSaveData"
  2555. },
  2556. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2557. "$type": "GeneralNodeTitleComponentSaveData",
  2558. "PaletteOverride": "MethodNodeTitlePalette"
  2559. },
  2560. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2561. "$type": "GeometrySaveData",
  2562. "Position": [
  2563. 1520.0,
  2564. 160.0
  2565. ]
  2566. },
  2567. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2568. "$type": "StylingComponentSaveData",
  2569. "SubStyle": ".method"
  2570. },
  2571. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2572. "$type": "PersistentIdComponentSaveData",
  2573. "PersistentId": "{2A152EB4-8C25-42C9-929E-D0742252F10A}"
  2574. }
  2575. }
  2576. }
  2577. },
  2578. {
  2579. "Key": {
  2580. "id": 2619928838862281
  2581. },
  2582. "Value": {
  2583. "ComponentData": {
  2584. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2585. "$type": "NodeSaveData"
  2586. },
  2587. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2588. "$type": "GeneralNodeTitleComponentSaveData",
  2589. "PaletteOverride": "SetVariableNodeTitlePalette"
  2590. },
  2591. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2592. "$type": "GeometrySaveData",
  2593. "Position": [
  2594. 860.0,
  2595. 160.0
  2596. ]
  2597. },
  2598. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2599. "$type": "StylingComponentSaveData",
  2600. "SubStyle": ".setVariable"
  2601. },
  2602. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2603. "$type": "PersistentIdComponentSaveData",
  2604. "PersistentId": "{15F10FD5-0BF4-4F24-8780-2B51B1E7E02D}"
  2605. }
  2606. }
  2607. }
  2608. },
  2609. {
  2610. "Key": {
  2611. "id": 2619933133829577
  2612. },
  2613. "Value": {
  2614. "ComponentData": {
  2615. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2616. "$type": "NodeSaveData"
  2617. },
  2618. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2619. "$type": "GeneralNodeTitleComponentSaveData",
  2620. "PaletteOverride": "MethodNodeTitlePalette"
  2621. },
  2622. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2623. "$type": "GeometrySaveData",
  2624. "Position": [
  2625. 0.0,
  2626. 100.0
  2627. ]
  2628. },
  2629. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2630. "$type": "StylingComponentSaveData",
  2631. "SubStyle": ".method"
  2632. },
  2633. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2634. "$type": "PersistentIdComponentSaveData",
  2635. "PersistentId": "{E7641522-C8C4-41DA-9310-DB9F554F43B3}"
  2636. }
  2637. }
  2638. }
  2639. }
  2640. ],
  2641. "StatisticsHelper": {
  2642. "InstanceCounter": [
  2643. {
  2644. "Key": 1678857396448701566,
  2645. "Value": 1
  2646. },
  2647. {
  2648. "Key": 4199610336680704683,
  2649. "Value": 1
  2650. },
  2651. {
  2652. "Key": 7864098278275301307,
  2653. "Value": 1
  2654. },
  2655. {
  2656. "Key": 9521377693455992203,
  2657. "Value": 2
  2658. },
  2659. {
  2660. "Key": 9815218044492189981,
  2661. "Value": 2
  2662. },
  2663. {
  2664. "Key": 10204019744198319120,
  2665. "Value": 1
  2666. },
  2667. {
  2668. "Key": 12033332465728181077,
  2669. "Value": 1
  2670. },
  2671. {
  2672. "Key": 12248402947725818581,
  2673. "Value": 3
  2674. },
  2675. {
  2676. "Key": 14039404593459245232,
  2677. "Value": 2
  2678. }
  2679. ]
  2680. }
  2681. },
  2682. "Component_[2621569509282684873]": {
  2683. "$type": "EditorGraphVariableManagerComponent",
  2684. "Id": 2621569509282684873,
  2685. "m_variableData": {
  2686. "m_nameVariableMap": [
  2687. {
  2688. "Key": {
  2689. "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
  2690. },
  2691. "Value": {
  2692. "Datum": {
  2693. "isOverloadedStorage": false,
  2694. "scriptCanvasType": {
  2695. "m_type": 5
  2696. },
  2697. "isNullPointer": false,
  2698. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2699. "value": "One",
  2700. "label": "String"
  2701. },
  2702. "VariableId": {
  2703. "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
  2704. },
  2705. "VariableName": "Address"
  2706. }
  2707. },
  2708. {
  2709. "Key": {
  2710. "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
  2711. },
  2712. "Value": {
  2713. "Datum": {
  2714. "isOverloadedStorage": false,
  2715. "scriptCanvasType": {
  2716. "m_type": 0
  2717. },
  2718. "isNullPointer": false,
  2719. "$type": "bool",
  2720. "value": false,
  2721. "label": "Boolean"
  2722. },
  2723. "VariableId": {
  2724. "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
  2725. },
  2726. "VariableName": "Void Executed"
  2727. }
  2728. }
  2729. ]
  2730. },
  2731. "CopiedVariableRemapping": [
  2732. {
  2733. "Key": {
  2734. "m_id": "{6916B568-1181-45BD-9DDF-A947B3B3CE9D}"
  2735. },
  2736. "Value": {
  2737. "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
  2738. }
  2739. }
  2740. ]
  2741. }
  2742. }
  2743. }
  2744. }
  2745. }