3
0

LY_SC_UnitTest_EventHandlingAddressUpdateReference.scriptcanvas 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 558523163695150
  9. },
  10. "Name": "LY_SC_UnitTest_EventHandlingAddressUpdateLite",
  11. "Components": {
  12. "Component_[16938950299749457314]": {
  13. "$type": "EditorGraph",
  14. "Id": 16938950299749457314,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 558548933498926
  20. },
  21. "Name": "SC Node(SetVariable)",
  22. "Components": {
  23. "Component_[10892041736919565056]": {
  24. "$type": "SetVariableNode",
  25. "Id": 10892041736919565056,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{DE2597CA-C84E-42A9-8F29-97F1B0ACEF29}"
  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": "{09E93231-8354-4BD6-9F8C-C51620952434}"
  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": "{8BA4778E-430D-4D70-8413-056AE38554E7}"
  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": "{C2D91B35-06B4-4150-A23F-92BB5D9F70E6}"
  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": true,
  105. "label": "Boolean"
  106. }
  107. ],
  108. "m_variableId": {
  109. "m_id": "{DF7FF779-9D05-4575-B3B3-2164ADC2348D}"
  110. },
  111. "m_variableDataInSlotId": {
  112. "m_id": "{8BA4778E-430D-4D70-8413-056AE38554E7}"
  113. },
  114. "m_variableDataOutSlotId": {
  115. "m_id": "{C2D91B35-06B4-4150-A23F-92BB5D9F70E6}"
  116. }
  117. }
  118. }
  119. },
  120. {
  121. "Id": {
  122. "id": 558527458662446
  123. },
  124. "Name": "SC-Node(AppendSweet)",
  125. "Components": {
  126. "Component_[11490509577730783594]": {
  127. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  128. "Id": 11490509577730783594,
  129. "Slots": [
  130. {
  131. "id": {
  132. "m_id": "{A434DB69-5BC7-47E0-A52A-9D3A7CDEE966}"
  133. },
  134. "contracts": [
  135. {
  136. "$type": "SlotTypeContract"
  137. },
  138. null
  139. ],
  140. "slotName": "Number: 0",
  141. "Descriptor": {
  142. "ConnectionType": 1,
  143. "SlotType": 2
  144. },
  145. "DataType": 1
  146. },
  147. {
  148. "id": {
  149. "m_id": "{AFE1A35F-7403-4BC8-B55A-695D085ACED0}"
  150. },
  151. "contracts": [
  152. {
  153. "$type": "SlotTypeContract"
  154. },
  155. null
  156. ],
  157. "slotName": "String: 1",
  158. "Descriptor": {
  159. "ConnectionType": 1,
  160. "SlotType": 2
  161. },
  162. "DataType": 1
  163. },
  164. {
  165. "id": {
  166. "m_id": "{07825A55-03AB-4AB2-B1AB-99813E1F76B2}"
  167. },
  168. "contracts": [
  169. {
  170. "$type": "SlotTypeContract"
  171. }
  172. ],
  173. "slotName": "In",
  174. "Descriptor": {
  175. "ConnectionType": 1,
  176. "SlotType": 1
  177. }
  178. },
  179. {
  180. "id": {
  181. "m_id": "{FF699506-26E0-45D3-A548-33BFBD6D40B5}"
  182. },
  183. "contracts": [
  184. {
  185. "$type": "SlotTypeContract"
  186. }
  187. ],
  188. "slotName": "Result: String",
  189. "DisplayDataType": {
  190. "m_type": 5
  191. },
  192. "Descriptor": {
  193. "ConnectionType": 2,
  194. "SlotType": 2
  195. },
  196. "DataType": 1
  197. },
  198. {
  199. "id": {
  200. "m_id": "{6CE5FEE5-FFF0-484B-B175-DD63D58DFA32}"
  201. },
  202. "contracts": [
  203. {
  204. "$type": "SlotTypeContract"
  205. }
  206. ],
  207. "slotName": "Out",
  208. "Descriptor": {
  209. "ConnectionType": 2,
  210. "SlotType": 1
  211. }
  212. }
  213. ],
  214. "Datums": [
  215. {
  216. "isOverloadedStorage": false,
  217. "scriptCanvasType": {
  218. "m_type": 3
  219. },
  220. "isNullPointer": false,
  221. "$type": "double",
  222. "value": 0.0,
  223. "label": "Source"
  224. },
  225. {
  226. "isOverloadedStorage": false,
  227. "scriptCanvasType": {
  228. "m_type": 5
  229. },
  230. "isNullPointer": false,
  231. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  232. "value": "",
  233. "label": "String: 1"
  234. }
  235. ],
  236. "methodType": 0,
  237. "methodName": "AppendSweet",
  238. "className": "LocalEBus",
  239. "resultSlotIDs": [
  240. {}
  241. ],
  242. "prettyClassName": "LocalEBus"
  243. }
  244. }
  245. },
  246. {
  247. "Id": {
  248. "id": 558540343564334
  249. },
  250. "Name": "SC-Node(Mark Complete)",
  251. "Components": {
  252. "Component_[12953505590610160548]": {
  253. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  254. "Id": 12953505590610160548,
  255. "Slots": [
  256. {
  257. "isVisibile": false,
  258. "id": {
  259. "m_id": "{DCB4236E-5310-4BA3-BA4D-C88CFC8C4808}"
  260. },
  261. "contracts": [
  262. {
  263. "$type": "SlotTypeContract"
  264. },
  265. null
  266. ],
  267. "slotName": "EntityID: 0",
  268. "Descriptor": {
  269. "ConnectionType": 1,
  270. "SlotType": 2
  271. },
  272. "DataType": 1
  273. },
  274. {
  275. "id": {
  276. "m_id": "{488FE653-89BB-4C4F-978C-8E133D53A611}"
  277. },
  278. "contracts": [
  279. {
  280. "$type": "SlotTypeContract"
  281. },
  282. null
  283. ],
  284. "slotName": "Report",
  285. "toolTip": "additional notes for the test report",
  286. "Descriptor": {
  287. "ConnectionType": 1,
  288. "SlotType": 2
  289. },
  290. "DataType": 1
  291. },
  292. {
  293. "id": {
  294. "m_id": "{FF9C66AA-D139-485D-82FA-CBA38D64DD22}"
  295. },
  296. "contracts": [
  297. {
  298. "$type": "SlotTypeContract"
  299. }
  300. ],
  301. "slotName": "In",
  302. "Descriptor": {
  303. "ConnectionType": 1,
  304. "SlotType": 1
  305. }
  306. },
  307. {
  308. "id": {
  309. "m_id": "{FE6C754B-036E-486C-B012-B076425990B7}"
  310. },
  311. "contracts": [
  312. {
  313. "$type": "SlotTypeContract"
  314. }
  315. ],
  316. "slotName": "Out",
  317. "Descriptor": {
  318. "ConnectionType": 2,
  319. "SlotType": 1
  320. }
  321. }
  322. ],
  323. "Datums": [
  324. {
  325. "isOverloadedStorage": false,
  326. "scriptCanvasType": {
  327. "m_type": 1
  328. },
  329. "isNullPointer": false,
  330. "$type": "EntityId",
  331. "value": {
  332. "id": 4276206253
  333. }
  334. },
  335. {
  336. "isOverloadedStorage": false,
  337. "scriptCanvasType": {
  338. "m_type": 5
  339. },
  340. "isNullPointer": false,
  341. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  342. "value": "",
  343. "label": "Report"
  344. }
  345. ],
  346. "methodType": 2,
  347. "methodName": "Mark Complete",
  348. "className": "Unit Testing",
  349. "resultSlotIDs": [
  350. {}
  351. ],
  352. "prettyClassName": "Unit Testing"
  353. }
  354. }
  355. },
  356. {
  357. "Id": {
  358. "id": 558536048597038
  359. },
  360. "Name": "SC-Node(Start)",
  361. "Components": {
  362. "Component_[15843044724009388527]": {
  363. "$type": "Start",
  364. "Id": 15843044724009388527,
  365. "Slots": [
  366. {
  367. "id": {
  368. "m_id": "{6C90DD1F-92CD-477D-9150-1B3CEDC09675}"
  369. },
  370. "contracts": [
  371. {
  372. "$type": "SlotTypeContract"
  373. }
  374. ],
  375. "slotName": "Out",
  376. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  377. "Descriptor": {
  378. "ConnectionType": 2,
  379. "SlotType": 1
  380. }
  381. }
  382. ]
  383. }
  384. }
  385. },
  386. {
  387. "Id": {
  388. "id": 558566113368110
  389. },
  390. "Name": "SC-Node(Expect True)",
  391. "Components": {
  392. "Component_[1857564658939246709]": {
  393. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  394. "Id": 1857564658939246709,
  395. "Slots": [
  396. {
  397. "isVisibile": false,
  398. "id": {
  399. "m_id": "{79DD51EF-C078-46C2-A8F9-6BC2E889FA1E}"
  400. },
  401. "contracts": [
  402. {
  403. "$type": "SlotTypeContract"
  404. },
  405. null
  406. ],
  407. "slotName": "EntityID: 0",
  408. "Descriptor": {
  409. "ConnectionType": 1,
  410. "SlotType": 2
  411. },
  412. "DataType": 1
  413. },
  414. {
  415. "id": {
  416. "m_id": "{2BC68C37-5F34-43FC-BE2E-ABFF063DBD79}"
  417. },
  418. "contracts": [
  419. {
  420. "$type": "SlotTypeContract"
  421. },
  422. null
  423. ],
  424. "slotName": "Candidate",
  425. "toolTip": "a value that must be true",
  426. "Descriptor": {
  427. "ConnectionType": 1,
  428. "SlotType": 2
  429. },
  430. "DataType": 1,
  431. "IsReference": true,
  432. "VariableReference": {
  433. "m_id": "{7C0119C3-19D9-4DA2-9120-973F1B64279F}"
  434. }
  435. },
  436. {
  437. "id": {
  438. "m_id": "{42CC913C-C5F0-491B-8BA4-1F010BEFB784}"
  439. },
  440. "contracts": [
  441. {
  442. "$type": "SlotTypeContract"
  443. },
  444. null
  445. ],
  446. "slotName": "Report",
  447. "toolTip": "additional notes for the test report",
  448. "Descriptor": {
  449. "ConnectionType": 1,
  450. "SlotType": 2
  451. },
  452. "DataType": 1
  453. },
  454. {
  455. "id": {
  456. "m_id": "{E47DD318-E65A-4B42-A208-E97F33405158}"
  457. },
  458. "contracts": [
  459. {
  460. "$type": "SlotTypeContract"
  461. }
  462. ],
  463. "slotName": "In",
  464. "Descriptor": {
  465. "ConnectionType": 1,
  466. "SlotType": 1
  467. }
  468. },
  469. {
  470. "id": {
  471. "m_id": "{5F7AA942-0057-45C2-81C0-699F9A60933A}"
  472. },
  473. "contracts": [
  474. {
  475. "$type": "SlotTypeContract"
  476. }
  477. ],
  478. "slotName": "Out",
  479. "Descriptor": {
  480. "ConnectionType": 2,
  481. "SlotType": 1
  482. }
  483. }
  484. ],
  485. "Datums": [
  486. {
  487. "isOverloadedStorage": false,
  488. "scriptCanvasType": {
  489. "m_type": 1
  490. },
  491. "isNullPointer": false,
  492. "$type": "EntityId",
  493. "value": {
  494. "id": 4276206253
  495. }
  496. },
  497. {
  498. "isOverloadedStorage": false,
  499. "scriptCanvasType": {
  500. "m_type": 0
  501. },
  502. "isNullPointer": false,
  503. "$type": "bool",
  504. "value": false,
  505. "label": "Candidate"
  506. },
  507. {
  508. "isOverloadedStorage": false,
  509. "scriptCanvasType": {
  510. "m_type": 5
  511. },
  512. "isNullPointer": false,
  513. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  514. "value": "",
  515. "label": "Report"
  516. }
  517. ],
  518. "methodType": 2,
  519. "methodName": "Expect True",
  520. "className": "Unit Testing",
  521. "resultSlotIDs": [
  522. {}
  523. ],
  524. "prettyClassName": "Unit Testing"
  525. }
  526. }
  527. },
  528. {
  529. "Id": {
  530. "id": 558531753629742
  531. },
  532. "Name": "SC-Node(Expect True)",
  533. "Components": {
  534. "Component_[1857564658939246709]": {
  535. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  536. "Id": 1857564658939246709,
  537. "Slots": [
  538. {
  539. "isVisibile": false,
  540. "id": {
  541. "m_id": "{79DD51EF-C078-46C2-A8F9-6BC2E889FA1E}"
  542. },
  543. "contracts": [
  544. {
  545. "$type": "SlotTypeContract"
  546. },
  547. null
  548. ],
  549. "slotName": "EntityID: 0",
  550. "Descriptor": {
  551. "ConnectionType": 1,
  552. "SlotType": 2
  553. },
  554. "DataType": 1
  555. },
  556. {
  557. "id": {
  558. "m_id": "{2BC68C37-5F34-43FC-BE2E-ABFF063DBD79}"
  559. },
  560. "contracts": [
  561. {
  562. "$type": "SlotTypeContract"
  563. },
  564. null
  565. ],
  566. "slotName": "Candidate",
  567. "toolTip": "a value that must be true",
  568. "Descriptor": {
  569. "ConnectionType": 1,
  570. "SlotType": 2
  571. },
  572. "DataType": 1,
  573. "IsReference": true,
  574. "VariableReference": {
  575. "m_id": "{DF7FF779-9D05-4575-B3B3-2164ADC2348D}"
  576. }
  577. },
  578. {
  579. "id": {
  580. "m_id": "{42CC913C-C5F0-491B-8BA4-1F010BEFB784}"
  581. },
  582. "contracts": [
  583. {
  584. "$type": "SlotTypeContract"
  585. },
  586. null
  587. ],
  588. "slotName": "Report",
  589. "toolTip": "additional notes for the test report",
  590. "Descriptor": {
  591. "ConnectionType": 1,
  592. "SlotType": 2
  593. },
  594. "DataType": 1
  595. },
  596. {
  597. "id": {
  598. "m_id": "{E47DD318-E65A-4B42-A208-E97F33405158}"
  599. },
  600. "contracts": [
  601. {
  602. "$type": "SlotTypeContract"
  603. }
  604. ],
  605. "slotName": "In",
  606. "Descriptor": {
  607. "ConnectionType": 1,
  608. "SlotType": 1
  609. }
  610. },
  611. {
  612. "id": {
  613. "m_id": "{5F7AA942-0057-45C2-81C0-699F9A60933A}"
  614. },
  615. "contracts": [
  616. {
  617. "$type": "SlotTypeContract"
  618. }
  619. ],
  620. "slotName": "Out",
  621. "Descriptor": {
  622. "ConnectionType": 2,
  623. "SlotType": 1
  624. }
  625. }
  626. ],
  627. "Datums": [
  628. {
  629. "isOverloadedStorage": false,
  630. "scriptCanvasType": {
  631. "m_type": 1
  632. },
  633. "isNullPointer": false,
  634. "$type": "EntityId",
  635. "value": {
  636. "id": 4276206253
  637. }
  638. },
  639. {
  640. "isOverloadedStorage": false,
  641. "scriptCanvasType": {
  642. "m_type": 0
  643. },
  644. "isNullPointer": false,
  645. "$type": "bool",
  646. "value": false,
  647. "label": "Candidate"
  648. },
  649. {
  650. "isOverloadedStorage": false,
  651. "scriptCanvasType": {
  652. "m_type": 5
  653. },
  654. "isNullPointer": false,
  655. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  656. "value": "",
  657. "label": "Report"
  658. }
  659. ],
  660. "methodType": 2,
  661. "methodName": "Expect True",
  662. "className": "Unit Testing",
  663. "resultSlotIDs": [
  664. {}
  665. ],
  666. "prettyClassName": "Unit Testing"
  667. }
  668. }
  669. },
  670. {
  671. "Id": {
  672. "id": 558544638531630
  673. },
  674. "Name": "SC Node(SetVariable)",
  675. "Components": {
  676. "Component_[3634875821037415999]": {
  677. "$type": "SetVariableNode",
  678. "Id": 3634875821037415999,
  679. "Slots": [
  680. {
  681. "id": {
  682. "m_id": "{FBCEB7AF-6F87-48A0-AC34-72713FB4B49D}"
  683. },
  684. "contracts": [
  685. {
  686. "$type": "SlotTypeContract"
  687. }
  688. ],
  689. "slotName": "In",
  690. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  691. "Descriptor": {
  692. "ConnectionType": 1,
  693. "SlotType": 1
  694. }
  695. },
  696. {
  697. "id": {
  698. "m_id": "{5D1ACCBE-E38B-45E6-8684-07BB85133524}"
  699. },
  700. "contracts": [
  701. {
  702. "$type": "SlotTypeContract"
  703. }
  704. ],
  705. "slotName": "Out",
  706. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  707. "Descriptor": {
  708. "ConnectionType": 2,
  709. "SlotType": 1
  710. }
  711. },
  712. {
  713. "id": {
  714. "m_id": "{A545775C-5D41-4260-898E-867414EF2E0C}"
  715. },
  716. "contracts": [
  717. {
  718. "$type": "SlotTypeContract"
  719. },
  720. null
  721. ],
  722. "slotName": "Number",
  723. "Descriptor": {
  724. "ConnectionType": 1,
  725. "SlotType": 2
  726. },
  727. "DataType": 1
  728. },
  729. {
  730. "id": {
  731. "m_id": "{2CC48B8A-EC39-474E-B332-D5DBCBD8F1A4}"
  732. },
  733. "contracts": [
  734. {
  735. "$type": "SlotTypeContract"
  736. }
  737. ],
  738. "slotName": "Number",
  739. "DisplayDataType": {
  740. "m_type": 3
  741. },
  742. "Descriptor": {
  743. "ConnectionType": 2,
  744. "SlotType": 2
  745. },
  746. "DataType": 1
  747. }
  748. ],
  749. "Datums": [
  750. {
  751. "isOverloadedStorage": false,
  752. "scriptCanvasType": {
  753. "m_type": 3
  754. },
  755. "isNullPointer": false,
  756. "$type": "double",
  757. "value": 0.0,
  758. "label": "Number"
  759. }
  760. ],
  761. "m_variableId": {
  762. "m_id": "{94E2AD9F-CA1A-4ED8-AFD7-4D3040E112B1}"
  763. },
  764. "m_variableDataInSlotId": {
  765. "m_id": "{A545775C-5D41-4260-898E-867414EF2E0C}"
  766. },
  767. "m_variableDataOutSlotId": {
  768. "m_id": "{2CC48B8A-EC39-474E-B332-D5DBCBD8F1A4}"
  769. }
  770. }
  771. }
  772. },
  773. {
  774. "Id": {
  775. "id": 558570408335406
  776. },
  777. "Name": "SC Node(SetVariable)",
  778. "Components": {
  779. "Component_[3634875821037415999]": {
  780. "$type": "SetVariableNode",
  781. "Id": 3634875821037415999,
  782. "Slots": [
  783. {
  784. "id": {
  785. "m_id": "{FBCEB7AF-6F87-48A0-AC34-72713FB4B49D}"
  786. },
  787. "contracts": [
  788. {
  789. "$type": "SlotTypeContract"
  790. }
  791. ],
  792. "slotName": "In",
  793. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  794. "Descriptor": {
  795. "ConnectionType": 1,
  796. "SlotType": 1
  797. }
  798. },
  799. {
  800. "id": {
  801. "m_id": "{5D1ACCBE-E38B-45E6-8684-07BB85133524}"
  802. },
  803. "contracts": [
  804. {
  805. "$type": "SlotTypeContract"
  806. }
  807. ],
  808. "slotName": "Out",
  809. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  810. "Descriptor": {
  811. "ConnectionType": 2,
  812. "SlotType": 1
  813. }
  814. },
  815. {
  816. "id": {
  817. "m_id": "{A545775C-5D41-4260-898E-867414EF2E0C}"
  818. },
  819. "contracts": [
  820. {
  821. "$type": "SlotTypeContract"
  822. },
  823. null
  824. ],
  825. "slotName": "Number",
  826. "Descriptor": {
  827. "ConnectionType": 1,
  828. "SlotType": 2
  829. },
  830. "DataType": 1
  831. },
  832. {
  833. "id": {
  834. "m_id": "{2CC48B8A-EC39-474E-B332-D5DBCBD8F1A4}"
  835. },
  836. "contracts": [
  837. {
  838. "$type": "SlotTypeContract"
  839. }
  840. ],
  841. "slotName": "Number",
  842. "DisplayDataType": {
  843. "m_type": 3
  844. },
  845. "Descriptor": {
  846. "ConnectionType": 2,
  847. "SlotType": 2
  848. },
  849. "DataType": 1
  850. }
  851. ],
  852. "Datums": [
  853. {
  854. "isOverloadedStorage": false,
  855. "scriptCanvasType": {
  856. "m_type": 3
  857. },
  858. "isNullPointer": false,
  859. "$type": "double",
  860. "value": 1.0,
  861. "label": "Number"
  862. }
  863. ],
  864. "m_variableId": {
  865. "m_id": "{94E2AD9F-CA1A-4ED8-AFD7-4D3040E112B1}"
  866. },
  867. "m_variableDataInSlotId": {
  868. "m_id": "{A545775C-5D41-4260-898E-867414EF2E0C}"
  869. },
  870. "m_variableDataOutSlotId": {
  871. "m_id": "{2CC48B8A-EC39-474E-B332-D5DBCBD8F1A4}"
  872. }
  873. }
  874. }
  875. },
  876. {
  877. "Id": {
  878. "id": 558557523433518
  879. },
  880. "Name": "EBusEventHandler",
  881. "Components": {
  882. "Component_[4254185373435195715]": {
  883. "$type": "EBusEventHandler",
  884. "Id": 4254185373435195715,
  885. "Slots": [
  886. {
  887. "id": {
  888. "m_id": "{71F7C977-3D5B-48EA-BFD9-2B4159B483CA}"
  889. },
  890. "contracts": [
  891. {
  892. "$type": "SlotTypeContract"
  893. }
  894. ],
  895. "slotName": "Connect",
  896. "toolTip": "Connect this event handler to the specified entity.",
  897. "Descriptor": {
  898. "ConnectionType": 1,
  899. "SlotType": 1
  900. }
  901. },
  902. {
  903. "id": {
  904. "m_id": "{323BC178-58D0-42CA-87BA-EE3206615025}"
  905. },
  906. "contracts": [
  907. {
  908. "$type": "SlotTypeContract"
  909. }
  910. ],
  911. "slotName": "Disconnect",
  912. "toolTip": "Disconnect this event handler.",
  913. "Descriptor": {
  914. "ConnectionType": 1,
  915. "SlotType": 1
  916. }
  917. },
  918. {
  919. "id": {
  920. "m_id": "{F3BD47A5-5B5C-4D9A-9695-1817E895A6C0}"
  921. },
  922. "contracts": [
  923. {
  924. "$type": "SlotTypeContract"
  925. }
  926. ],
  927. "slotName": "OnConnected",
  928. "toolTip": "Signaled when a connection has taken place.",
  929. "Descriptor": {
  930. "ConnectionType": 2,
  931. "SlotType": 1
  932. }
  933. },
  934. {
  935. "id": {
  936. "m_id": "{F75CE08B-38C1-46ED-BF3C-F1628EEA715C}"
  937. },
  938. "contracts": [
  939. {
  940. "$type": "SlotTypeContract"
  941. }
  942. ],
  943. "slotName": "OnDisconnected",
  944. "toolTip": "Signaled when this event handler is disconnected.",
  945. "Descriptor": {
  946. "ConnectionType": 2,
  947. "SlotType": 1
  948. }
  949. },
  950. {
  951. "id": {
  952. "m_id": "{432D0337-8263-41D7-893A-7AF453C62B28}"
  953. },
  954. "contracts": [
  955. {
  956. "$type": "SlotTypeContract"
  957. }
  958. ],
  959. "slotName": "OnFailure",
  960. "toolTip": "Signaled when it is not possible to connect this handler.",
  961. "Descriptor": {
  962. "ConnectionType": 2,
  963. "SlotType": 1
  964. }
  965. },
  966. {
  967. "id": {
  968. "m_id": "{B666D228-55D2-431E-8282-C30BCF24F5F9}"
  969. },
  970. "contracts": [
  971. {
  972. "$type": "SlotTypeContract"
  973. },
  974. null
  975. ],
  976. "slotName": "Source",
  977. "toolTip": "ID used to connect on a specific Event address (Type: double)",
  978. "Descriptor": {
  979. "ConnectionType": 1,
  980. "SlotType": 2
  981. },
  982. "DataType": 1,
  983. "IsReference": true,
  984. "VariableReference": {
  985. "m_id": "{94E2AD9F-CA1A-4ED8-AFD7-4D3040E112B1}"
  986. }
  987. },
  988. {
  989. "id": {
  990. "m_id": "{55582F0B-296B-45A8-844F-EA58EC0C4252}"
  991. },
  992. "contracts": [
  993. {
  994. "$type": "SlotTypeContract"
  995. },
  996. null
  997. ],
  998. "slotName": "Result: String",
  999. "Descriptor": {
  1000. "ConnectionType": 1,
  1001. "SlotType": 2
  1002. },
  1003. "DataType": 1
  1004. },
  1005. {
  1006. "id": {
  1007. "m_id": "{C9B1EDEB-5986-4E3F-8F1F-F0F12A625892}"
  1008. },
  1009. "contracts": [
  1010. {
  1011. "$type": "SlotTypeContract"
  1012. }
  1013. ],
  1014. "slotName": "String",
  1015. "DisplayDataType": {
  1016. "m_type": 5
  1017. },
  1018. "Descriptor": {
  1019. "ConnectionType": 2,
  1020. "SlotType": 2
  1021. },
  1022. "DataType": 1
  1023. },
  1024. {
  1025. "id": {
  1026. "m_id": "{E882022A-4280-4254-8025-627EC2B58264}"
  1027. },
  1028. "contracts": [
  1029. {
  1030. "$type": "SlotTypeContract"
  1031. }
  1032. ],
  1033. "slotName": "ExecutionSlot:AppendSweet",
  1034. "Descriptor": {
  1035. "ConnectionType": 2,
  1036. "SlotType": 1
  1037. },
  1038. "IsLatent": true
  1039. },
  1040. {
  1041. "id": {
  1042. "m_id": "{22B11AFE-EFB9-4221-BC9F-D5EFEA892032}"
  1043. },
  1044. "contracts": [
  1045. {
  1046. "$type": "SlotTypeContract"
  1047. },
  1048. null
  1049. ],
  1050. "slotName": "Result: Number",
  1051. "Descriptor": {
  1052. "ConnectionType": 1,
  1053. "SlotType": 2
  1054. },
  1055. "DataType": 1
  1056. },
  1057. {
  1058. "id": {
  1059. "m_id": "{F2197BCF-9A4E-48D3-965A-8593ADF23EAB}"
  1060. },
  1061. "contracts": [
  1062. {
  1063. "$type": "SlotTypeContract"
  1064. }
  1065. ],
  1066. "slotName": "Number",
  1067. "DisplayDataType": {
  1068. "m_type": 3
  1069. },
  1070. "Descriptor": {
  1071. "ConnectionType": 2,
  1072. "SlotType": 2
  1073. },
  1074. "DataType": 1
  1075. },
  1076. {
  1077. "id": {
  1078. "m_id": "{5816FDA0-BF80-49EE-84C1-5BA79EE5ED25}"
  1079. },
  1080. "contracts": [
  1081. {
  1082. "$type": "SlotTypeContract"
  1083. }
  1084. ],
  1085. "slotName": "ExecutionSlot:Increment",
  1086. "Descriptor": {
  1087. "ConnectionType": 2,
  1088. "SlotType": 1
  1089. },
  1090. "IsLatent": true
  1091. },
  1092. {
  1093. "id": {
  1094. "m_id": "{4F88C006-249B-4D3B-887C-F94838208D6F}"
  1095. },
  1096. "contracts": [
  1097. {
  1098. "$type": "SlotTypeContract"
  1099. },
  1100. null
  1101. ],
  1102. "slotName": "Result: Boolean",
  1103. "Descriptor": {
  1104. "ConnectionType": 1,
  1105. "SlotType": 2
  1106. },
  1107. "DataType": 1
  1108. },
  1109. {
  1110. "id": {
  1111. "m_id": "{BC6D96E2-70DD-4709-9E1E-3262BDCCB97E}"
  1112. },
  1113. "contracts": [
  1114. {
  1115. "$type": "SlotTypeContract"
  1116. }
  1117. ],
  1118. "slotName": "Boolean",
  1119. "DisplayDataType": {
  1120. "m_type": 0
  1121. },
  1122. "Descriptor": {
  1123. "ConnectionType": 2,
  1124. "SlotType": 2
  1125. },
  1126. "DataType": 1
  1127. },
  1128. {
  1129. "id": {
  1130. "m_id": "{BD1D5DBF-C453-4DFB-967E-FBA9FD100D2C}"
  1131. },
  1132. "contracts": [
  1133. {
  1134. "$type": "SlotTypeContract"
  1135. }
  1136. ],
  1137. "slotName": "ExecutionSlot:Not",
  1138. "Descriptor": {
  1139. "ConnectionType": 2,
  1140. "SlotType": 1
  1141. },
  1142. "IsLatent": true
  1143. },
  1144. {
  1145. "id": {
  1146. "m_id": "{4AA7510D-D9C8-4C76-AEB9-5859A9E5EB7F}"
  1147. },
  1148. "contracts": [
  1149. {
  1150. "$type": "SlotTypeContract"
  1151. }
  1152. ],
  1153. "slotName": "String",
  1154. "DisplayDataType": {
  1155. "m_type": 5
  1156. },
  1157. "Descriptor": {
  1158. "ConnectionType": 2,
  1159. "SlotType": 2
  1160. },
  1161. "DataType": 1
  1162. },
  1163. {
  1164. "id": {
  1165. "m_id": "{5E265109-79B0-48D7-8B7B-FC0C0B393F12}"
  1166. },
  1167. "contracts": [
  1168. {
  1169. "$type": "SlotTypeContract"
  1170. }
  1171. ],
  1172. "slotName": "ExecutionSlot:Void",
  1173. "Descriptor": {
  1174. "ConnectionType": 2,
  1175. "SlotType": 1
  1176. },
  1177. "IsLatent": true
  1178. }
  1179. ],
  1180. "Datums": [
  1181. {
  1182. "isOverloadedStorage": false,
  1183. "scriptCanvasType": {
  1184. "m_type": 3
  1185. },
  1186. "isNullPointer": false,
  1187. "$type": "double",
  1188. "value": 0.0,
  1189. "label": "Source"
  1190. },
  1191. {
  1192. "isOverloadedStorage": false,
  1193. "scriptCanvasType": {
  1194. "m_type": 5
  1195. },
  1196. "isNullPointer": false,
  1197. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1198. "value": "",
  1199. "label": "Result: String"
  1200. },
  1201. {
  1202. "isOverloadedStorage": false,
  1203. "scriptCanvasType": {
  1204. "m_type": 3
  1205. },
  1206. "isNullPointer": false,
  1207. "$type": "double",
  1208. "value": 0.0,
  1209. "label": "Result: Number"
  1210. },
  1211. {
  1212. "isOverloadedStorage": false,
  1213. "scriptCanvasType": {
  1214. "m_type": 0
  1215. },
  1216. "isNullPointer": false,
  1217. "$type": "bool",
  1218. "value": false,
  1219. "label": "Result: Boolean"
  1220. }
  1221. ],
  1222. "m_eventMap": [
  1223. {
  1224. "Key": {
  1225. "Value": 134610293
  1226. },
  1227. "Value": {
  1228. "m_eventName": "Not",
  1229. "m_eventId": {
  1230. "Value": 134610293
  1231. },
  1232. "m_eventSlotId": {
  1233. "m_id": "{BD1D5DBF-C453-4DFB-967E-FBA9FD100D2C}"
  1234. },
  1235. "m_resultSlotId": {
  1236. "m_id": "{4F88C006-249B-4D3B-887C-F94838208D6F}"
  1237. },
  1238. "m_parameterSlotIds": [
  1239. {
  1240. "m_id": "{BC6D96E2-70DD-4709-9E1E-3262BDCCB97E}"
  1241. }
  1242. ],
  1243. "m_numExpectedArguments": 1
  1244. }
  1245. },
  1246. {
  1247. "Key": {
  1248. "Value": 1434994254
  1249. },
  1250. "Value": {
  1251. "m_eventName": "Increment",
  1252. "m_eventId": {
  1253. "Value": 1434994254
  1254. },
  1255. "m_eventSlotId": {
  1256. "m_id": "{5816FDA0-BF80-49EE-84C1-5BA79EE5ED25}"
  1257. },
  1258. "m_resultSlotId": {
  1259. "m_id": "{22B11AFE-EFB9-4221-BC9F-D5EFEA892032}"
  1260. },
  1261. "m_parameterSlotIds": [
  1262. {
  1263. "m_id": "{F2197BCF-9A4E-48D3-965A-8593ADF23EAB}"
  1264. }
  1265. ],
  1266. "m_numExpectedArguments": 1
  1267. }
  1268. },
  1269. {
  1270. "Key": {
  1271. "Value": 1706314564
  1272. },
  1273. "Value": {
  1274. "m_eventName": "AppendSweet",
  1275. "m_eventId": {
  1276. "Value": 1706314564
  1277. },
  1278. "m_eventSlotId": {
  1279. "m_id": "{E882022A-4280-4254-8025-627EC2B58264}"
  1280. },
  1281. "m_resultSlotId": {
  1282. "m_id": "{55582F0B-296B-45A8-844F-EA58EC0C4252}"
  1283. },
  1284. "m_parameterSlotIds": [
  1285. {
  1286. "m_id": "{C9B1EDEB-5986-4E3F-8F1F-F0F12A625892}"
  1287. }
  1288. ],
  1289. "m_numExpectedArguments": 1
  1290. }
  1291. },
  1292. {
  1293. "Key": {
  1294. "Value": 3531332078
  1295. },
  1296. "Value": {
  1297. "m_eventName": "Void",
  1298. "m_eventId": {
  1299. "Value": 3531332078
  1300. },
  1301. "m_eventSlotId": {
  1302. "m_id": "{5E265109-79B0-48D7-8B7B-FC0C0B393F12}"
  1303. },
  1304. "m_parameterSlotIds": [
  1305. {
  1306. "m_id": "{4AA7510D-D9C8-4C76-AEB9-5859A9E5EB7F}"
  1307. }
  1308. ],
  1309. "m_numExpectedArguments": 1
  1310. }
  1311. }
  1312. ],
  1313. "m_ebusName": "LocalEBus",
  1314. "m_busId": {
  1315. "Value": 2890822024
  1316. }
  1317. }
  1318. }
  1319. },
  1320. {
  1321. "Id": {
  1322. "id": 558561818400814
  1323. },
  1324. "Name": "SC-Node(Void)",
  1325. "Components": {
  1326. "Component_[5540533389009212687]": {
  1327. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1328. "Id": 5540533389009212687,
  1329. "Slots": [
  1330. {
  1331. "id": {
  1332. "m_id": "{C7D6991C-9EBF-4085-A1E3-4EF5236C43C0}"
  1333. },
  1334. "contracts": [
  1335. {
  1336. "$type": "SlotTypeContract"
  1337. },
  1338. null
  1339. ],
  1340. "slotName": "Number: 0",
  1341. "Descriptor": {
  1342. "ConnectionType": 1,
  1343. "SlotType": 2
  1344. },
  1345. "DataType": 1
  1346. },
  1347. {
  1348. "id": {
  1349. "m_id": "{CE3684CC-730A-4C29-8375-3ED744E76801}"
  1350. },
  1351. "contracts": [
  1352. {
  1353. "$type": "SlotTypeContract"
  1354. },
  1355. null
  1356. ],
  1357. "slotName": "String: 1",
  1358. "Descriptor": {
  1359. "ConnectionType": 1,
  1360. "SlotType": 2
  1361. },
  1362. "DataType": 1
  1363. },
  1364. {
  1365. "id": {
  1366. "m_id": "{C01B6FB5-164E-4B42-8DF4-672FFF4CB844}"
  1367. },
  1368. "contracts": [
  1369. {
  1370. "$type": "SlotTypeContract"
  1371. }
  1372. ],
  1373. "slotName": "In",
  1374. "Descriptor": {
  1375. "ConnectionType": 1,
  1376. "SlotType": 1
  1377. }
  1378. },
  1379. {
  1380. "id": {
  1381. "m_id": "{01B0C653-C495-496E-A514-C200F78ECB27}"
  1382. },
  1383. "contracts": [
  1384. {
  1385. "$type": "SlotTypeContract"
  1386. }
  1387. ],
  1388. "slotName": "Out",
  1389. "Descriptor": {
  1390. "ConnectionType": 2,
  1391. "SlotType": 1
  1392. }
  1393. }
  1394. ],
  1395. "Datums": [
  1396. {
  1397. "isOverloadedStorage": false,
  1398. "scriptCanvasType": {
  1399. "m_type": 3
  1400. },
  1401. "isNullPointer": false,
  1402. "$type": "double",
  1403. "value": 1.0,
  1404. "label": "Source"
  1405. },
  1406. {
  1407. "isOverloadedStorage": false,
  1408. "scriptCanvasType": {
  1409. "m_type": 5
  1410. },
  1411. "isNullPointer": false,
  1412. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1413. "value": "",
  1414. "label": "String: 1"
  1415. }
  1416. ],
  1417. "methodType": 0,
  1418. "methodName": "Void",
  1419. "className": "LocalEBus",
  1420. "resultSlotIDs": [
  1421. {}
  1422. ],
  1423. "prettyClassName": "LocalEBus"
  1424. }
  1425. }
  1426. },
  1427. {
  1428. "Id": {
  1429. "id": 558553228466222
  1430. },
  1431. "Name": "SC Node(SetVariable)",
  1432. "Components": {
  1433. "Component_[8093272126910696454]": {
  1434. "$type": "SetVariableNode",
  1435. "Id": 8093272126910696454,
  1436. "Slots": [
  1437. {
  1438. "id": {
  1439. "m_id": "{8B7F5C4A-4C2B-4775-B7DE-A00089114D20}"
  1440. },
  1441. "contracts": [
  1442. {
  1443. "$type": "SlotTypeContract"
  1444. }
  1445. ],
  1446. "slotName": "In",
  1447. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  1448. "Descriptor": {
  1449. "ConnectionType": 1,
  1450. "SlotType": 1
  1451. }
  1452. },
  1453. {
  1454. "id": {
  1455. "m_id": "{B4B1DAF1-782C-4BDC-B088-9DBCBCE7D800}"
  1456. },
  1457. "contracts": [
  1458. {
  1459. "$type": "SlotTypeContract"
  1460. }
  1461. ],
  1462. "slotName": "Out",
  1463. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1464. "Descriptor": {
  1465. "ConnectionType": 2,
  1466. "SlotType": 1
  1467. }
  1468. },
  1469. {
  1470. "id": {
  1471. "m_id": "{0EEEE2FF-9041-4FB5-BDE5-B4D9322EC8BA}"
  1472. },
  1473. "contracts": [
  1474. {
  1475. "$type": "SlotTypeContract"
  1476. },
  1477. null
  1478. ],
  1479. "slotName": "Boolean",
  1480. "Descriptor": {
  1481. "ConnectionType": 1,
  1482. "SlotType": 2
  1483. },
  1484. "DataType": 1
  1485. },
  1486. {
  1487. "id": {
  1488. "m_id": "{67265518-D4FA-4105-AF24-3ABA40C60404}"
  1489. },
  1490. "contracts": [
  1491. {
  1492. "$type": "SlotTypeContract"
  1493. }
  1494. ],
  1495. "slotName": "Boolean",
  1496. "DisplayDataType": {
  1497. "m_type": 0
  1498. },
  1499. "Descriptor": {
  1500. "ConnectionType": 2,
  1501. "SlotType": 2
  1502. },
  1503. "DataType": 1
  1504. }
  1505. ],
  1506. "Datums": [
  1507. {
  1508. "isOverloadedStorage": false,
  1509. "scriptCanvasType": {
  1510. "m_type": 0
  1511. },
  1512. "isNullPointer": false,
  1513. "$type": "bool",
  1514. "value": true,
  1515. "label": "Boolean"
  1516. }
  1517. ],
  1518. "m_variableId": {
  1519. "m_id": "{7C0119C3-19D9-4DA2-9120-973F1B64279F}"
  1520. },
  1521. "m_variableDataInSlotId": {
  1522. "m_id": "{0EEEE2FF-9041-4FB5-BDE5-B4D9322EC8BA}"
  1523. },
  1524. "m_variableDataOutSlotId": {
  1525. "m_id": "{67265518-D4FA-4105-AF24-3ABA40C60404}"
  1526. }
  1527. }
  1528. }
  1529. }
  1530. ],
  1531. "m_connections": [
  1532. {
  1533. "Id": {
  1534. "id": 558574703302702
  1535. },
  1536. "Name": "srcEndpoint=(LocalEBus Handler: ExecutionSlot:AppendSweet), destEndpoint=(Set Variable: In)",
  1537. "Components": {
  1538. "Component_[3637492433601679129]": {
  1539. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1540. "Id": 3637492433601679129,
  1541. "sourceEndpoint": {
  1542. "nodeId": {
  1543. "id": 558557523433518
  1544. },
  1545. "slotId": {
  1546. "m_id": "{E882022A-4280-4254-8025-627EC2B58264}"
  1547. }
  1548. },
  1549. "targetEndpoint": {
  1550. "nodeId": {
  1551. "id": 558553228466222
  1552. },
  1553. "slotId": {
  1554. "m_id": "{8B7F5C4A-4C2B-4775-B7DE-A00089114D20}"
  1555. }
  1556. }
  1557. }
  1558. }
  1559. },
  1560. {
  1561. "Id": {
  1562. "id": 558578998269998
  1563. },
  1564. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Set Variable: In)",
  1565. "Components": {
  1566. "Component_[6671050025531889615]": {
  1567. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1568. "Id": 6671050025531889615,
  1569. "sourceEndpoint": {
  1570. "nodeId": {
  1571. "id": 558536048597038
  1572. },
  1573. "slotId": {
  1574. "m_id": "{6C90DD1F-92CD-477D-9150-1B3CEDC09675}"
  1575. }
  1576. },
  1577. "targetEndpoint": {
  1578. "nodeId": {
  1579. "id": 558544638531630
  1580. },
  1581. "slotId": {
  1582. "m_id": "{FBCEB7AF-6F87-48A0-AC34-72713FB4B49D}"
  1583. }
  1584. }
  1585. }
  1586. }
  1587. },
  1588. {
  1589. "Id": {
  1590. "id": 558583293237294
  1591. },
  1592. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(AppendSweet: In)",
  1593. "Components": {
  1594. "Component_[8887521401617507029]": {
  1595. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1596. "Id": 8887521401617507029,
  1597. "sourceEndpoint": {
  1598. "nodeId": {
  1599. "id": 558544638531630
  1600. },
  1601. "slotId": {
  1602. "m_id": "{5D1ACCBE-E38B-45E6-8684-07BB85133524}"
  1603. }
  1604. },
  1605. "targetEndpoint": {
  1606. "nodeId": {
  1607. "id": 558527458662446
  1608. },
  1609. "slotId": {
  1610. "m_id": "{07825A55-03AB-4AB2-B1AB-99813E1F76B2}"
  1611. }
  1612. }
  1613. }
  1614. }
  1615. },
  1616. {
  1617. "Id": {
  1618. "id": 558587588204590
  1619. },
  1620. "Name": "srcEndpoint=(AppendSweet: Out), destEndpoint=(Set Variable: In)",
  1621. "Components": {
  1622. "Component_[17482693935203511954]": {
  1623. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1624. "Id": 17482693935203511954,
  1625. "sourceEndpoint": {
  1626. "nodeId": {
  1627. "id": 558527458662446
  1628. },
  1629. "slotId": {
  1630. "m_id": "{6CE5FEE5-FFF0-484B-B175-DD63D58DFA32}"
  1631. }
  1632. },
  1633. "targetEndpoint": {
  1634. "nodeId": {
  1635. "id": 558570408335406
  1636. },
  1637. "slotId": {
  1638. "m_id": "{FBCEB7AF-6F87-48A0-AC34-72713FB4B49D}"
  1639. }
  1640. }
  1641. }
  1642. }
  1643. },
  1644. {
  1645. "Id": {
  1646. "id": 558591883171886
  1647. },
  1648. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Void: In)",
  1649. "Components": {
  1650. "Component_[11924118325902211810]": {
  1651. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1652. "Id": 11924118325902211810,
  1653. "sourceEndpoint": {
  1654. "nodeId": {
  1655. "id": 558570408335406
  1656. },
  1657. "slotId": {
  1658. "m_id": "{5D1ACCBE-E38B-45E6-8684-07BB85133524}"
  1659. }
  1660. },
  1661. "targetEndpoint": {
  1662. "nodeId": {
  1663. "id": 558561818400814
  1664. },
  1665. "slotId": {
  1666. "m_id": "{C01B6FB5-164E-4B42-8DF4-672FFF4CB844}"
  1667. }
  1668. }
  1669. }
  1670. }
  1671. },
  1672. {
  1673. "Id": {
  1674. "id": 558596178139182
  1675. },
  1676. "Name": "srcEndpoint=(LocalEBus Handler: ExecutionSlot:Void), destEndpoint=(Set Variable: In)",
  1677. "Components": {
  1678. "Component_[17928512406792880392]": {
  1679. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1680. "Id": 17928512406792880392,
  1681. "sourceEndpoint": {
  1682. "nodeId": {
  1683. "id": 558557523433518
  1684. },
  1685. "slotId": {
  1686. "m_id": "{5E265109-79B0-48D7-8B7B-FC0C0B393F12}"
  1687. }
  1688. },
  1689. "targetEndpoint": {
  1690. "nodeId": {
  1691. "id": 558548933498926
  1692. },
  1693. "slotId": {
  1694. "m_id": "{DE2597CA-C84E-42A9-8F29-97F1B0ACEF29}"
  1695. }
  1696. }
  1697. }
  1698. }
  1699. },
  1700. {
  1701. "Id": {
  1702. "id": 558600473106478
  1703. },
  1704. "Name": "srcEndpoint=(Void: Out), destEndpoint=(Expect True: In)",
  1705. "Components": {
  1706. "Component_[17173950620206423997]": {
  1707. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1708. "Id": 17173950620206423997,
  1709. "sourceEndpoint": {
  1710. "nodeId": {
  1711. "id": 558561818400814
  1712. },
  1713. "slotId": {
  1714. "m_id": "{01B0C653-C495-496E-A514-C200F78ECB27}"
  1715. }
  1716. },
  1717. "targetEndpoint": {
  1718. "nodeId": {
  1719. "id": 558566113368110
  1720. },
  1721. "slotId": {
  1722. "m_id": "{E47DD318-E65A-4B42-A208-E97F33405158}"
  1723. }
  1724. }
  1725. }
  1726. }
  1727. },
  1728. {
  1729. "Id": {
  1730. "id": 558604768073774
  1731. },
  1732. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Expect True: In)",
  1733. "Components": {
  1734. "Component_[2082944527084070861]": {
  1735. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1736. "Id": 2082944527084070861,
  1737. "sourceEndpoint": {
  1738. "nodeId": {
  1739. "id": 558566113368110
  1740. },
  1741. "slotId": {
  1742. "m_id": "{5F7AA942-0057-45C2-81C0-699F9A60933A}"
  1743. }
  1744. },
  1745. "targetEndpoint": {
  1746. "nodeId": {
  1747. "id": 558531753629742
  1748. },
  1749. "slotId": {
  1750. "m_id": "{E47DD318-E65A-4B42-A208-E97F33405158}"
  1751. }
  1752. }
  1753. }
  1754. }
  1755. },
  1756. {
  1757. "Id": {
  1758. "id": 558609063041070
  1759. },
  1760. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Mark Complete: In)",
  1761. "Components": {
  1762. "Component_[12274990715029839269]": {
  1763. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1764. "Id": 12274990715029839269,
  1765. "sourceEndpoint": {
  1766. "nodeId": {
  1767. "id": 558531753629742
  1768. },
  1769. "slotId": {
  1770. "m_id": "{5F7AA942-0057-45C2-81C0-699F9A60933A}"
  1771. }
  1772. },
  1773. "targetEndpoint": {
  1774. "nodeId": {
  1775. "id": 558540343564334
  1776. },
  1777. "slotId": {
  1778. "m_id": "{FF9C66AA-D139-485D-82FA-CBA38D64DD22}"
  1779. }
  1780. }
  1781. }
  1782. }
  1783. }
  1784. ]
  1785. },
  1786. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  1787. "versionData": {
  1788. "_grammarVersion": 1,
  1789. "_runtimeVersion": 1,
  1790. "_fileVersion": 1
  1791. },
  1792. "m_variableCounter": 10,
  1793. "GraphCanvasData": [
  1794. {
  1795. "Key": {
  1796. "id": 558523163695150
  1797. },
  1798. "Value": {
  1799. "ComponentData": {
  1800. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  1801. "$type": "SceneComponentSaveData",
  1802. "ViewParams": {
  1803. "Scale": 0.5476876,
  1804. "AnchorX": -814.3328247070313,
  1805. "AnchorY": -816.1586303710938
  1806. }
  1807. }
  1808. }
  1809. }
  1810. },
  1811. {
  1812. "Key": {
  1813. "id": 558527458662446
  1814. },
  1815. "Value": {
  1816. "ComponentData": {
  1817. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1818. "$type": "NodeSaveData"
  1819. },
  1820. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1821. "$type": "GeneralNodeTitleComponentSaveData",
  1822. "PaletteOverride": "MethodNodeTitlePalette"
  1823. },
  1824. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1825. "$type": "GeometrySaveData",
  1826. "Position": [
  1827. -300.0,
  1828. 160.0
  1829. ]
  1830. },
  1831. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1832. "$type": "StylingComponentSaveData",
  1833. "SubStyle": ".method"
  1834. },
  1835. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1836. "$type": "PersistentIdComponentSaveData",
  1837. "PersistentId": "{DF632859-E6C7-427C-997B-46B86F2ABA15}"
  1838. }
  1839. }
  1840. }
  1841. },
  1842. {
  1843. "Key": {
  1844. "id": 558531753629742
  1845. },
  1846. "Value": {
  1847. "ComponentData": {
  1848. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1849. "$type": "NodeSaveData"
  1850. },
  1851. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1852. "$type": "GeneralNodeTitleComponentSaveData",
  1853. "PaletteOverride": "MethodNodeTitlePalette"
  1854. },
  1855. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1856. "$type": "GeometrySaveData",
  1857. "Position": [
  1858. 880.0,
  1859. -260.0
  1860. ]
  1861. },
  1862. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1863. "$type": "StylingComponentSaveData",
  1864. "SubStyle": ".method"
  1865. },
  1866. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1867. "$type": "PersistentIdComponentSaveData",
  1868. "PersistentId": "{C7A651DB-3D67-443B-ACD4-49C897697FB3}"
  1869. }
  1870. }
  1871. }
  1872. },
  1873. {
  1874. "Key": {
  1875. "id": 558536048597038
  1876. },
  1877. "Value": {
  1878. "ComponentData": {
  1879. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1880. "$type": "NodeSaveData"
  1881. },
  1882. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1883. "$type": "GeneralNodeTitleComponentSaveData",
  1884. "PaletteOverride": "TimeNodeTitlePalette"
  1885. },
  1886. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1887. "$type": "GeometrySaveData",
  1888. "Position": [
  1889. -780.0,
  1890. 180.0
  1891. ]
  1892. },
  1893. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1894. "$type": "StylingComponentSaveData",
  1895. "SubStyle": ".time"
  1896. },
  1897. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1898. "$type": "PersistentIdComponentSaveData",
  1899. "PersistentId": "{10268231-9300-4DB3-84ED-8340D358E6D5}"
  1900. }
  1901. }
  1902. }
  1903. },
  1904. {
  1905. "Key": {
  1906. "id": 558540343564334
  1907. },
  1908. "Value": {
  1909. "ComponentData": {
  1910. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1911. "$type": "NodeSaveData"
  1912. },
  1913. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1914. "$type": "GeneralNodeTitleComponentSaveData",
  1915. "PaletteOverride": "MethodNodeTitlePalette"
  1916. },
  1917. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1918. "$type": "GeometrySaveData",
  1919. "Position": [
  1920. 940.0,
  1921. -20.0
  1922. ]
  1923. },
  1924. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1925. "$type": "StylingComponentSaveData",
  1926. "SubStyle": ".method"
  1927. },
  1928. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1929. "$type": "PersistentIdComponentSaveData",
  1930. "PersistentId": "{2EC13B75-7313-4800-A72A-3A56CD0493BC}"
  1931. }
  1932. }
  1933. }
  1934. },
  1935. {
  1936. "Key": {
  1937. "id": 558544638531630
  1938. },
  1939. "Value": {
  1940. "ComponentData": {
  1941. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1942. "$type": "NodeSaveData"
  1943. },
  1944. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1945. "$type": "GeneralNodeTitleComponentSaveData",
  1946. "PaletteOverride": "SetVariableNodeTitlePalette"
  1947. },
  1948. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1949. "$type": "GeometrySaveData",
  1950. "Position": [
  1951. -620.0,
  1952. 160.0
  1953. ]
  1954. },
  1955. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1956. "$type": "StylingComponentSaveData",
  1957. "SubStyle": ".setVariable"
  1958. },
  1959. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1960. "$type": "PersistentIdComponentSaveData",
  1961. "PersistentId": "{6ECA4643-2505-42CB-945D-1B8F4F9EE2E1}"
  1962. }
  1963. }
  1964. }
  1965. },
  1966. {
  1967. "Key": {
  1968. "id": 558548933498926
  1969. },
  1970. "Value": {
  1971. "ComponentData": {
  1972. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1973. "$type": "NodeSaveData"
  1974. },
  1975. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1976. "$type": "GeneralNodeTitleComponentSaveData",
  1977. "PaletteOverride": "SetVariableNodeTitlePalette"
  1978. },
  1979. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1980. "$type": "GeometrySaveData",
  1981. "Position": [
  1982. 140.0,
  1983. -240.0
  1984. ]
  1985. },
  1986. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1987. "$type": "StylingComponentSaveData",
  1988. "SubStyle": ".setVariable"
  1989. },
  1990. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1991. "$type": "PersistentIdComponentSaveData",
  1992. "PersistentId": "{EF9DD6C6-FE01-499E-BE94-5A0959D14D02}"
  1993. }
  1994. }
  1995. }
  1996. },
  1997. {
  1998. "Key": {
  1999. "id": 558553228466222
  2000. },
  2001. "Value": {
  2002. "ComponentData": {
  2003. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2004. "$type": "NodeSaveData"
  2005. },
  2006. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2007. "$type": "GeneralNodeTitleComponentSaveData",
  2008. "PaletteOverride": "SetVariableNodeTitlePalette"
  2009. },
  2010. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2011. "$type": "GeometrySaveData",
  2012. "Position": [
  2013. 200.0,
  2014. -480.0
  2015. ]
  2016. },
  2017. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2018. "$type": "StylingComponentSaveData",
  2019. "SubStyle": ".setVariable"
  2020. },
  2021. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2022. "$type": "PersistentIdComponentSaveData",
  2023. "PersistentId": "{318648B7-3476-46C6-B5BD-561505B72CA6}"
  2024. }
  2025. }
  2026. }
  2027. },
  2028. {
  2029. "Key": {
  2030. "id": 558557523433518
  2031. },
  2032. "Value": {
  2033. "ComponentData": {
  2034. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2035. "$type": "NodeSaveData"
  2036. },
  2037. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2038. "$type": "GeometrySaveData",
  2039. "Position": [
  2040. -380.0,
  2041. -620.0
  2042. ]
  2043. },
  2044. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  2045. "$type": "EBusHandlerNodeDescriptorSaveData",
  2046. "EventIds": [
  2047. {
  2048. "Value": 134610293
  2049. },
  2050. {
  2051. "Value": 3531332078
  2052. },
  2053. {
  2054. "Value": 1434994254
  2055. },
  2056. {
  2057. "Value": 1706314564
  2058. }
  2059. ]
  2060. },
  2061. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2062. "$type": "StylingComponentSaveData"
  2063. },
  2064. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2065. "$type": "PersistentIdComponentSaveData",
  2066. "PersistentId": "{78BB96FA-AA48-4504-B6F3-211B78C10A82}"
  2067. }
  2068. }
  2069. }
  2070. },
  2071. {
  2072. "Key": {
  2073. "id": 558561818400814
  2074. },
  2075. "Value": {
  2076. "ComponentData": {
  2077. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2078. "$type": "NodeSaveData"
  2079. },
  2080. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2081. "$type": "GeneralNodeTitleComponentSaveData",
  2082. "PaletteOverride": "MethodNodeTitlePalette"
  2083. },
  2084. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2085. "$type": "GeometrySaveData",
  2086. "Position": [
  2087. 500.0,
  2088. 160.0
  2089. ]
  2090. },
  2091. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2092. "$type": "StylingComponentSaveData",
  2093. "SubStyle": ".method"
  2094. },
  2095. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2096. "$type": "PersistentIdComponentSaveData",
  2097. "PersistentId": "{07B35C0B-76D1-43FE-A04F-E3FE5BDDEB67}"
  2098. }
  2099. }
  2100. }
  2101. },
  2102. {
  2103. "Key": {
  2104. "id": 558566113368110
  2105. },
  2106. "Value": {
  2107. "ComponentData": {
  2108. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2109. "$type": "NodeSaveData"
  2110. },
  2111. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2112. "$type": "GeneralNodeTitleComponentSaveData",
  2113. "PaletteOverride": "MethodNodeTitlePalette"
  2114. },
  2115. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2116. "$type": "GeometrySaveData",
  2117. "Position": [
  2118. 760.0,
  2119. -480.0
  2120. ]
  2121. },
  2122. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2123. "$type": "StylingComponentSaveData",
  2124. "SubStyle": ".method"
  2125. },
  2126. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2127. "$type": "PersistentIdComponentSaveData",
  2128. "PersistentId": "{E6FF91F8-617B-432F-B518-B624D250C59F}"
  2129. }
  2130. }
  2131. }
  2132. },
  2133. {
  2134. "Key": {
  2135. "id": 558570408335406
  2136. },
  2137. "Value": {
  2138. "ComponentData": {
  2139. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2140. "$type": "NodeSaveData"
  2141. },
  2142. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2143. "$type": "GeneralNodeTitleComponentSaveData",
  2144. "PaletteOverride": "SetVariableNodeTitlePalette"
  2145. },
  2146. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2147. "$type": "GeometrySaveData",
  2148. "Position": [
  2149. 160.0,
  2150. 160.0
  2151. ]
  2152. },
  2153. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2154. "$type": "StylingComponentSaveData",
  2155. "SubStyle": ".setVariable"
  2156. },
  2157. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2158. "$type": "PersistentIdComponentSaveData",
  2159. "PersistentId": "{2184291D-806A-42EE-9DCA-4732ACC57261}"
  2160. }
  2161. }
  2162. }
  2163. }
  2164. ],
  2165. "StatisticsHelper": {
  2166. "InstanceCounter": [
  2167. {
  2168. "Key": 1050222979521486012,
  2169. "Value": 2
  2170. },
  2171. {
  2172. "Key": 4199610336680704683,
  2173. "Value": 1
  2174. },
  2175. {
  2176. "Key": 5842117337878041745,
  2177. "Value": 1
  2178. },
  2179. {
  2180. "Key": 5842117338149358491,
  2181. "Value": 1
  2182. },
  2183. {
  2184. "Key": 5842117341664101026,
  2185. "Value": 1
  2186. },
  2187. {
  2188. "Key": 5842117353265424187,
  2189. "Value": 1
  2190. },
  2191. {
  2192. "Key": 6840657073857873079,
  2193. "Value": 1
  2194. },
  2195. {
  2196. "Key": 7264879790904338954,
  2197. "Value": 1
  2198. },
  2199. {
  2200. "Key": 9357631755378100421,
  2201. "Value": 2
  2202. },
  2203. {
  2204. "Key": 13248810350560143789,
  2205. "Value": 1
  2206. },
  2207. {
  2208. "Key": 13774516389663530721,
  2209. "Value": 1
  2210. },
  2211. {
  2212. "Key": 13774516392537170207,
  2213. "Value": 1
  2214. }
  2215. ]
  2216. }
  2217. },
  2218. "Component_[9435064044103188435]": {
  2219. "$type": "EditorGraphVariableManagerComponent",
  2220. "Id": 9435064044103188435,
  2221. "m_variableData": {
  2222. "m_nameVariableMap": [
  2223. {
  2224. "Key": {
  2225. "m_id": "{7C0119C3-19D9-4DA2-9120-973F1B64279F}"
  2226. },
  2227. "Value": {
  2228. "Datum": {
  2229. "isOverloadedStorage": false,
  2230. "scriptCanvasType": {
  2231. "m_type": 0
  2232. },
  2233. "isNullPointer": false,
  2234. "$type": "bool",
  2235. "value": false,
  2236. "label": "Append Called"
  2237. },
  2238. "VariableId": {
  2239. "m_id": "{7C0119C3-19D9-4DA2-9120-973F1B64279F}"
  2240. },
  2241. "VariableName": "Append Called"
  2242. }
  2243. },
  2244. {
  2245. "Key": {
  2246. "m_id": "{94E2AD9F-CA1A-4ED8-AFD7-4D3040E112B1}"
  2247. },
  2248. "Value": {
  2249. "Datum": {
  2250. "isOverloadedStorage": false,
  2251. "scriptCanvasType": {
  2252. "m_type": 3
  2253. },
  2254. "isNullPointer": false,
  2255. "$type": "double",
  2256. "value": 1.0,
  2257. "label": "Number"
  2258. },
  2259. "VariableId": {
  2260. "m_id": "{94E2AD9F-CA1A-4ED8-AFD7-4D3040E112B1}"
  2261. },
  2262. "VariableName": "Address"
  2263. }
  2264. },
  2265. {
  2266. "Key": {
  2267. "m_id": "{DF7FF779-9D05-4575-B3B3-2164ADC2348D}"
  2268. },
  2269. "Value": {
  2270. "Datum": {
  2271. "isOverloadedStorage": false,
  2272. "scriptCanvasType": {
  2273. "m_type": 0
  2274. },
  2275. "isNullPointer": false,
  2276. "$type": "bool",
  2277. "value": false,
  2278. "label": "Boolean"
  2279. },
  2280. "VariableId": {
  2281. "m_id": "{DF7FF779-9D05-4575-B3B3-2164ADC2348D}"
  2282. },
  2283. "VariableName": "Void Called"
  2284. }
  2285. }
  2286. ]
  2287. }
  2288. }
  2289. }
  2290. }
  2291. }
  2292. }