3
0

LY_SC_UnitTest_ClearAllElements_Map.scriptcanvas 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 427917503191086
  9. },
  10. "Name": "LY_SC_UnitTest_ClearAllElements_Map",
  11. "Components": {
  12. "Component_[7975828565361945173]": {
  13. "$type": "EditorGraph",
  14. "Id": 7975828565361945173,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 427938978027566
  20. },
  21. "Name": "SC-Node(OperatorInsert)",
  22. "Components": {
  23. "Component_[10936160930235983392]": {
  24. "$type": "MethodOverloaded",
  25. "Id": 10936160930235983392,
  26. "Slots": [
  27. {
  28. "IsOverload": true,
  29. "id": {
  30. "m_id": "{986816C4-CB0F-4890-96C0-99A2A6EC33DB}"
  31. },
  32. "DynamicTypeOverride": 3,
  33. "contracts": [
  34. {
  35. "$type": "SlotTypeContract"
  36. },
  37. null
  38. ],
  39. "slotName": "Map<String, Number>: 0",
  40. "DisplayDataType": {
  41. "m_type": 4,
  42. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  43. },
  44. "Descriptor": {
  45. "ConnectionType": 1,
  46. "SlotType": 2
  47. },
  48. "DataType": 1
  49. },
  50. {
  51. "IsOverload": true,
  52. "id": {
  53. "m_id": "{4FAEA235-88EE-4FFD-B1AC-172AFC7E7A22}"
  54. },
  55. "DynamicTypeOverride": 3,
  56. "contracts": [
  57. {
  58. "$type": "SlotTypeContract"
  59. },
  60. null
  61. ],
  62. "slotName": "Index",
  63. "toolTip": "The index at which to insert the value",
  64. "DisplayDataType": {
  65. "m_type": 5
  66. },
  67. "Descriptor": {
  68. "ConnectionType": 1,
  69. "SlotType": 2
  70. },
  71. "DataType": 1
  72. },
  73. {
  74. "IsOverload": true,
  75. "id": {
  76. "m_id": "{2D9AE0B7-4838-499C-BB41-47367F10F5FB}"
  77. },
  78. "DynamicTypeOverride": 3,
  79. "contracts": [
  80. {
  81. "$type": "SlotTypeContract"
  82. },
  83. null
  84. ],
  85. "slotName": "Number: 2",
  86. "DisplayDataType": {
  87. "m_type": 3
  88. },
  89. "Descriptor": {
  90. "ConnectionType": 1,
  91. "SlotType": 2
  92. },
  93. "DataType": 1
  94. },
  95. {
  96. "id": {
  97. "m_id": "{2AB98D4F-F002-400D-9921-4FE40E9553F2}"
  98. },
  99. "contracts": [
  100. {
  101. "$type": "SlotTypeContract"
  102. }
  103. ],
  104. "slotName": "In",
  105. "Descriptor": {
  106. "ConnectionType": 1,
  107. "SlotType": 1
  108. }
  109. },
  110. {
  111. "id": {
  112. "m_id": "{3EAADE35-D0D5-4B7D-A72E-1C2958896843}"
  113. },
  114. "contracts": [
  115. {
  116. "$type": "SlotTypeContract"
  117. }
  118. ],
  119. "slotName": "Out",
  120. "Descriptor": {
  121. "ConnectionType": 2,
  122. "SlotType": 1
  123. }
  124. },
  125. {
  126. "IsOverload": true,
  127. "id": {
  128. "m_id": "{512FCE67-FBBC-45B8-906E-1080A0FC344F}"
  129. },
  130. "DynamicTypeOverride": 3,
  131. "contracts": [
  132. {
  133. "$type": "SlotTypeContract"
  134. }
  135. ],
  136. "slotName": "Map<String, Number>",
  137. "DisplayDataType": {
  138. "m_type": 4,
  139. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  140. },
  141. "Descriptor": {
  142. "ConnectionType": 2,
  143. "SlotType": 2
  144. },
  145. "DataType": 1
  146. }
  147. ],
  148. "Datums": [
  149. {
  150. "isOverloadedStorage": false,
  151. "scriptCanvasType": {
  152. "m_type": 4,
  153. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  154. },
  155. "isNullPointer": true,
  156. "label": "Map<String, Number>: 0"
  157. },
  158. {
  159. "isOverloadedStorage": false,
  160. "scriptCanvasType": {
  161. "m_type": 5
  162. },
  163. "isNullPointer": false,
  164. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  165. "value": "b",
  166. "label": "Index"
  167. },
  168. {
  169. "isOverloadedStorage": false,
  170. "scriptCanvasType": {
  171. "m_type": 3
  172. },
  173. "isNullPointer": false,
  174. "$type": "double",
  175. "value": 2.0,
  176. "label": "Number: 2"
  177. }
  178. ],
  179. "methodType": 2,
  180. "methodName": "Insert",
  181. "className": "AZStd::unordered_map<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, double, AZStd::hash<AZStd::basic_string<ch",
  182. "resultSlotIDs": [
  183. {}
  184. ],
  185. "prettyClassName": "AZStd::unordered_map<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, double, AZStd::hash<AZStd::basic_string<ch",
  186. "orderedInputSlotIds": [
  187. {
  188. "m_id": "{986816C4-CB0F-4890-96C0-99A2A6EC33DB}"
  189. },
  190. {
  191. "m_id": "{4FAEA235-88EE-4FFD-B1AC-172AFC7E7A22}"
  192. },
  193. {
  194. "m_id": "{2D9AE0B7-4838-499C-BB41-47367F10F5FB}"
  195. }
  196. ],
  197. "outputSlotIds": [
  198. {
  199. "m_id": "{512FCE67-FBBC-45B8-906E-1080A0FC344F}"
  200. }
  201. ]
  202. }
  203. }
  204. },
  205. {
  206. "Id": {
  207. "id": 427947567962158
  208. },
  209. "Name": "SC-Node(OperatorEmpty)",
  210. "Components": {
  211. "Component_[12409932196272747377]": {
  212. "$type": "MethodOverloaded",
  213. "Id": 12409932196272747377,
  214. "Slots": [
  215. {
  216. "IsOverload": true,
  217. "id": {
  218. "m_id": "{39A8B5C2-000F-46BF-B480-F6985FAED26F}"
  219. },
  220. "DynamicTypeOverride": 3,
  221. "contracts": [
  222. {
  223. "$type": "SlotTypeContract"
  224. },
  225. null
  226. ],
  227. "slotName": "Map<String, Number>: 0",
  228. "DisplayDataType": {
  229. "m_type": 4,
  230. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  231. },
  232. "Descriptor": {
  233. "ConnectionType": 1,
  234. "SlotType": 2
  235. },
  236. "DataType": 1
  237. },
  238. {
  239. "id": {
  240. "m_id": "{17B17503-1FB9-4513-908A-0AA83440097C}"
  241. },
  242. "contracts": [
  243. {
  244. "$type": "SlotTypeContract"
  245. }
  246. ],
  247. "slotName": "In",
  248. "Descriptor": {
  249. "ConnectionType": 1,
  250. "SlotType": 1
  251. }
  252. },
  253. {
  254. "id": {
  255. "m_id": "{FD84A6A9-69AB-4B43-84ED-65E64410B77C}"
  256. },
  257. "contracts": [
  258. {
  259. "$type": "SlotTypeContract"
  260. }
  261. ],
  262. "slotName": "True",
  263. "Descriptor": {
  264. "ConnectionType": 2,
  265. "SlotType": 1
  266. }
  267. },
  268. {
  269. "id": {
  270. "m_id": "{BFE0481B-0A11-4216-9A02-1929464284EB}"
  271. },
  272. "contracts": [
  273. {
  274. "$type": "SlotTypeContract"
  275. }
  276. ],
  277. "slotName": "False",
  278. "Descriptor": {
  279. "ConnectionType": 2,
  280. "SlotType": 1
  281. }
  282. },
  283. {
  284. "id": {
  285. "m_id": "{7608B440-2C58-4FFD-9E51-673A9F26922B}"
  286. },
  287. "contracts": [
  288. {
  289. "$type": "SlotTypeContract"
  290. }
  291. ],
  292. "slotName": "Result: Boolean",
  293. "DisplayDataType": {
  294. "m_type": 0
  295. },
  296. "Descriptor": {
  297. "ConnectionType": 2,
  298. "SlotType": 2
  299. },
  300. "DataType": 1
  301. }
  302. ],
  303. "Datums": [
  304. {
  305. "isOverloadedStorage": false,
  306. "scriptCanvasType": {
  307. "m_type": 4,
  308. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  309. },
  310. "isNullPointer": true,
  311. "label": "Map<String, Number>: 0"
  312. }
  313. ],
  314. "methodType": 2,
  315. "methodName": "Is Empty",
  316. "className": "AZStd::unordered_map<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, double, AZStd::hash<AZStd::basic_string<ch",
  317. "resultSlotIDs": [
  318. {}
  319. ],
  320. "prettyClassName": "AZStd::unordered_map<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, double, AZStd::hash<AZStd::basic_string<ch",
  321. "orderedInputSlotIds": [
  322. {
  323. "m_id": "{39A8B5C2-000F-46BF-B480-F6985FAED26F}"
  324. }
  325. ],
  326. "outputSlotIds": [
  327. {
  328. "m_id": "{7608B440-2C58-4FFD-9E51-673A9F26922B}"
  329. }
  330. ]
  331. }
  332. }
  333. },
  334. {
  335. "Id": {
  336. "id": 427951862929454
  337. },
  338. "Name": "SC Node(GetVariable)",
  339. "Components": {
  340. "Component_[13350561268807049763]": {
  341. "$type": "GetVariableNode",
  342. "Id": 13350561268807049763,
  343. "Slots": [
  344. {
  345. "id": {
  346. "m_id": "{5B69FE85-2890-4A03-A2C4-85A8D090F97C}"
  347. },
  348. "contracts": [
  349. {
  350. "$type": "SlotTypeContract"
  351. }
  352. ],
  353. "slotName": "In",
  354. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  355. "Descriptor": {
  356. "ConnectionType": 1,
  357. "SlotType": 1
  358. }
  359. },
  360. {
  361. "id": {
  362. "m_id": "{48527018-A5FE-4829-838F-0BD09467E019}"
  363. },
  364. "contracts": [
  365. {
  366. "$type": "SlotTypeContract"
  367. }
  368. ],
  369. "slotName": "Out",
  370. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  371. "Descriptor": {
  372. "ConnectionType": 2,
  373. "SlotType": 1
  374. }
  375. },
  376. {
  377. "id": {
  378. "m_id": "{B7D475C4-F9B4-4853-866C-80B162174FFB}"
  379. },
  380. "contracts": [
  381. {
  382. "$type": "SlotTypeContract"
  383. }
  384. ],
  385. "slotName": "Map<String, Number>",
  386. "DisplayDataType": {
  387. "m_type": 4,
  388. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  389. },
  390. "Descriptor": {
  391. "ConnectionType": 2,
  392. "SlotType": 2
  393. },
  394. "DataType": 1
  395. }
  396. ],
  397. "m_variableId": {
  398. "m_id": "{1DC0E2AC-6DD4-4825-850D-CAE85D9E1322}"
  399. },
  400. "m_variableDataOutSlotId": {
  401. "m_id": "{B7D475C4-F9B4-4853-866C-80B162174FFB}"
  402. }
  403. }
  404. }
  405. },
  406. {
  407. "Id": {
  408. "id": 427921798158382
  409. },
  410. "Name": "SC-Node(OperatorInsert)",
  411. "Components": {
  412. "Component_[15852731536682511015]": {
  413. "$type": "MethodOverloaded",
  414. "Id": 15852731536682511015,
  415. "Slots": [
  416. {
  417. "IsOverload": true,
  418. "id": {
  419. "m_id": "{62BA331E-12E1-4DA9-8DC4-88C1659D57A5}"
  420. },
  421. "DynamicTypeOverride": 3,
  422. "contracts": [
  423. {
  424. "$type": "SlotTypeContract"
  425. },
  426. null
  427. ],
  428. "slotName": "Map<String, Number>: 0",
  429. "DisplayDataType": {
  430. "m_type": 4,
  431. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  432. },
  433. "Descriptor": {
  434. "ConnectionType": 1,
  435. "SlotType": 2
  436. },
  437. "DataType": 1
  438. },
  439. {
  440. "IsOverload": true,
  441. "id": {
  442. "m_id": "{800B563A-1D94-4ABC-AE39-5E77C86DD734}"
  443. },
  444. "DynamicTypeOverride": 3,
  445. "contracts": [
  446. {
  447. "$type": "SlotTypeContract"
  448. },
  449. null
  450. ],
  451. "slotName": "Index",
  452. "toolTip": "The index at which to insert the value",
  453. "DisplayDataType": {
  454. "m_type": 5
  455. },
  456. "Descriptor": {
  457. "ConnectionType": 1,
  458. "SlotType": 2
  459. },
  460. "DataType": 1
  461. },
  462. {
  463. "IsOverload": true,
  464. "id": {
  465. "m_id": "{33DF9B7C-07D0-4C54-B339-4FE6B732FBC3}"
  466. },
  467. "DynamicTypeOverride": 3,
  468. "contracts": [
  469. {
  470. "$type": "SlotTypeContract"
  471. },
  472. null
  473. ],
  474. "slotName": "Number: 2",
  475. "DisplayDataType": {
  476. "m_type": 3
  477. },
  478. "Descriptor": {
  479. "ConnectionType": 1,
  480. "SlotType": 2
  481. },
  482. "DataType": 1
  483. },
  484. {
  485. "id": {
  486. "m_id": "{ECC8DD18-BF48-4275-A54E-94C376E58235}"
  487. },
  488. "contracts": [
  489. {
  490. "$type": "SlotTypeContract"
  491. }
  492. ],
  493. "slotName": "In",
  494. "Descriptor": {
  495. "ConnectionType": 1,
  496. "SlotType": 1
  497. }
  498. },
  499. {
  500. "id": {
  501. "m_id": "{0D9279BF-CE2A-4943-974C-59CFE3EBBFB5}"
  502. },
  503. "contracts": [
  504. {
  505. "$type": "SlotTypeContract"
  506. }
  507. ],
  508. "slotName": "Out",
  509. "Descriptor": {
  510. "ConnectionType": 2,
  511. "SlotType": 1
  512. }
  513. },
  514. {
  515. "IsOverload": true,
  516. "id": {
  517. "m_id": "{CDBED1D8-BA72-4263-A5EE-35BB1CEB4B1C}"
  518. },
  519. "DynamicTypeOverride": 3,
  520. "contracts": [
  521. {
  522. "$type": "SlotTypeContract"
  523. }
  524. ],
  525. "slotName": "Map<String, Number>",
  526. "DisplayDataType": {
  527. "m_type": 4,
  528. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  529. },
  530. "Descriptor": {
  531. "ConnectionType": 2,
  532. "SlotType": 2
  533. },
  534. "DataType": 1
  535. }
  536. ],
  537. "Datums": [
  538. {
  539. "isOverloadedStorage": false,
  540. "scriptCanvasType": {
  541. "m_type": 4,
  542. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  543. },
  544. "isNullPointer": true,
  545. "label": "Map<String, Number>: 0"
  546. },
  547. {
  548. "isOverloadedStorage": false,
  549. "scriptCanvasType": {
  550. "m_type": 5
  551. },
  552. "isNullPointer": false,
  553. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  554. "value": "c",
  555. "label": "Index"
  556. },
  557. {
  558. "isOverloadedStorage": false,
  559. "scriptCanvasType": {
  560. "m_type": 3
  561. },
  562. "isNullPointer": false,
  563. "$type": "double",
  564. "value": 3.0,
  565. "label": "Number: 2"
  566. }
  567. ],
  568. "methodType": 2,
  569. "methodName": "Insert",
  570. "className": "AZStd::unordered_map<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, double, AZStd::hash<AZStd::basic_string<ch",
  571. "resultSlotIDs": [
  572. {}
  573. ],
  574. "prettyClassName": "AZStd::unordered_map<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, double, AZStd::hash<AZStd::basic_string<ch",
  575. "orderedInputSlotIds": [
  576. {
  577. "m_id": "{62BA331E-12E1-4DA9-8DC4-88C1659D57A5}"
  578. },
  579. {
  580. "m_id": "{800B563A-1D94-4ABC-AE39-5E77C86DD734}"
  581. },
  582. {
  583. "m_id": "{33DF9B7C-07D0-4C54-B339-4FE6B732FBC3}"
  584. }
  585. ],
  586. "outputSlotIds": [
  587. {
  588. "m_id": "{CDBED1D8-BA72-4263-A5EE-35BB1CEB4B1C}"
  589. }
  590. ]
  591. }
  592. }
  593. },
  594. {
  595. "Id": {
  596. "id": 427934683060270
  597. },
  598. "Name": "SC-Node(OperatorInsert)",
  599. "Components": {
  600. "Component_[1602229583331846426]": {
  601. "$type": "MethodOverloaded",
  602. "Id": 1602229583331846426,
  603. "Slots": [
  604. {
  605. "IsOverload": true,
  606. "id": {
  607. "m_id": "{93B05C9E-9356-4254-A50A-6BFB37128F7C}"
  608. },
  609. "DynamicTypeOverride": 3,
  610. "contracts": [
  611. {
  612. "$type": "SlotTypeContract"
  613. },
  614. null
  615. ],
  616. "slotName": "Map<String, Number>: 0",
  617. "DisplayDataType": {
  618. "m_type": 4,
  619. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  620. },
  621. "Descriptor": {
  622. "ConnectionType": 1,
  623. "SlotType": 2
  624. },
  625. "DataType": 1
  626. },
  627. {
  628. "IsOverload": true,
  629. "id": {
  630. "m_id": "{FF84709D-331A-4E48-B5E4-CE68E9E3C802}"
  631. },
  632. "DynamicTypeOverride": 3,
  633. "contracts": [
  634. {
  635. "$type": "SlotTypeContract"
  636. },
  637. null
  638. ],
  639. "slotName": "Index",
  640. "toolTip": "The index at which to insert the value",
  641. "DisplayDataType": {
  642. "m_type": 5
  643. },
  644. "Descriptor": {
  645. "ConnectionType": 1,
  646. "SlotType": 2
  647. },
  648. "DataType": 1
  649. },
  650. {
  651. "IsOverload": true,
  652. "id": {
  653. "m_id": "{E8DAE603-7755-4962-855F-ED47CD64E701}"
  654. },
  655. "DynamicTypeOverride": 3,
  656. "contracts": [
  657. {
  658. "$type": "SlotTypeContract"
  659. },
  660. null
  661. ],
  662. "slotName": "Number: 2",
  663. "DisplayDataType": {
  664. "m_type": 3
  665. },
  666. "Descriptor": {
  667. "ConnectionType": 1,
  668. "SlotType": 2
  669. },
  670. "DataType": 1
  671. },
  672. {
  673. "id": {
  674. "m_id": "{D3B5AD83-DDC3-4477-8C80-B942A816D177}"
  675. },
  676. "contracts": [
  677. {
  678. "$type": "SlotTypeContract"
  679. }
  680. ],
  681. "slotName": "In",
  682. "Descriptor": {
  683. "ConnectionType": 1,
  684. "SlotType": 1
  685. }
  686. },
  687. {
  688. "id": {
  689. "m_id": "{178C4903-DF5F-4E87-96C5-8FF4FD3FD4F8}"
  690. },
  691. "contracts": [
  692. {
  693. "$type": "SlotTypeContract"
  694. }
  695. ],
  696. "slotName": "Out",
  697. "Descriptor": {
  698. "ConnectionType": 2,
  699. "SlotType": 1
  700. }
  701. },
  702. {
  703. "IsOverload": true,
  704. "id": {
  705. "m_id": "{F094A704-4974-4EF8-B757-66D07961B56D}"
  706. },
  707. "DynamicTypeOverride": 3,
  708. "contracts": [
  709. {
  710. "$type": "SlotTypeContract"
  711. }
  712. ],
  713. "slotName": "Map<String, Number>",
  714. "DisplayDataType": {
  715. "m_type": 4,
  716. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  717. },
  718. "Descriptor": {
  719. "ConnectionType": 2,
  720. "SlotType": 2
  721. },
  722. "DataType": 1
  723. }
  724. ],
  725. "Datums": [
  726. {
  727. "isOverloadedStorage": false,
  728. "scriptCanvasType": {
  729. "m_type": 4,
  730. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  731. },
  732. "isNullPointer": true,
  733. "label": "Map<String, Number>: 0"
  734. },
  735. {
  736. "isOverloadedStorage": false,
  737. "scriptCanvasType": {
  738. "m_type": 5
  739. },
  740. "isNullPointer": false,
  741. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  742. "value": "a",
  743. "label": "Index"
  744. },
  745. {
  746. "isOverloadedStorage": false,
  747. "scriptCanvasType": {
  748. "m_type": 3
  749. },
  750. "isNullPointer": false,
  751. "$type": "double",
  752. "value": 1.0,
  753. "label": "Number: 2"
  754. }
  755. ],
  756. "methodType": 2,
  757. "methodName": "Insert",
  758. "className": "AZStd::unordered_map<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, double, AZStd::hash<AZStd::basic_string<ch",
  759. "resultSlotIDs": [
  760. {}
  761. ],
  762. "prettyClassName": "AZStd::unordered_map<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, double, AZStd::hash<AZStd::basic_string<ch",
  763. "orderedInputSlotIds": [
  764. {
  765. "m_id": "{93B05C9E-9356-4254-A50A-6BFB37128F7C}"
  766. },
  767. {
  768. "m_id": "{FF84709D-331A-4E48-B5E4-CE68E9E3C802}"
  769. },
  770. {
  771. "m_id": "{E8DAE603-7755-4962-855F-ED47CD64E701}"
  772. }
  773. ],
  774. "outputSlotIds": [
  775. {
  776. "m_id": "{F094A704-4974-4EF8-B757-66D07961B56D}"
  777. }
  778. ]
  779. }
  780. }
  781. },
  782. {
  783. "Id": {
  784. "id": 427930388092974
  785. },
  786. "Name": "SC-Node(ExpectTrue)",
  787. "Components": {
  788. "Component_[16231791868849964501]": {
  789. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  790. "Id": 16231791868849964501,
  791. "Slots": [
  792. {
  793. "isVisibile": false,
  794. "id": {
  795. "m_id": "{AA4C7830-8959-4579-87DF-FFD20C64B274}"
  796. },
  797. "contracts": [
  798. {
  799. "$type": "SlotTypeContract"
  800. },
  801. null
  802. ],
  803. "slotName": "EntityID: 0",
  804. "Descriptor": {
  805. "ConnectionType": 1,
  806. "SlotType": 2
  807. },
  808. "DataType": 1
  809. },
  810. {
  811. "id": {
  812. "m_id": "{BBC80268-2874-4759-A058-EDD2B1CAB796}"
  813. },
  814. "contracts": [
  815. {
  816. "$type": "SlotTypeContract"
  817. },
  818. null
  819. ],
  820. "slotName": "Candidate",
  821. "toolTip": "a value that must be true",
  822. "DisplayDataType": {
  823. "m_type": 0
  824. },
  825. "Descriptor": {
  826. "ConnectionType": 1,
  827. "SlotType": 2
  828. },
  829. "DataType": 1
  830. },
  831. {
  832. "id": {
  833. "m_id": "{96252C06-569D-4203-B625-3C86ADA8D00E}"
  834. },
  835. "contracts": [
  836. {
  837. "$type": "SlotTypeContract"
  838. },
  839. null
  840. ],
  841. "slotName": "Report",
  842. "toolTip": "additional notes for the test report",
  843. "DisplayDataType": {
  844. "m_type": 5
  845. },
  846. "Descriptor": {
  847. "ConnectionType": 1,
  848. "SlotType": 2
  849. },
  850. "DataType": 1
  851. },
  852. {
  853. "id": {
  854. "m_id": "{5A6F7C19-C07F-4A04-B2D1-CC386B3D0736}"
  855. },
  856. "contracts": [
  857. {
  858. "$type": "SlotTypeContract"
  859. }
  860. ],
  861. "slotName": "In",
  862. "Descriptor": {
  863. "ConnectionType": 1,
  864. "SlotType": 1
  865. }
  866. },
  867. {
  868. "id": {
  869. "m_id": "{7AA81D5D-EB3E-47E7-B87E-3DB9A7648ABF}"
  870. },
  871. "contracts": [
  872. {
  873. "$type": "SlotTypeContract"
  874. }
  875. ],
  876. "slotName": "Out",
  877. "Descriptor": {
  878. "ConnectionType": 2,
  879. "SlotType": 1
  880. }
  881. }
  882. ],
  883. "Datums": [
  884. {
  885. "isOverloadedStorage": false,
  886. "scriptCanvasType": {
  887. "m_type": 1
  888. },
  889. "isNullPointer": false,
  890. "$type": "EntityId",
  891. "value": {
  892. "id": 4276206253
  893. }
  894. },
  895. {
  896. "isOverloadedStorage": false,
  897. "scriptCanvasType": {
  898. "m_type": 0
  899. },
  900. "isNullPointer": false,
  901. "$type": "bool",
  902. "value": false,
  903. "label": "Candidate"
  904. },
  905. {
  906. "isOverloadedStorage": false,
  907. "scriptCanvasType": {
  908. "m_type": 5
  909. },
  910. "isNullPointer": false,
  911. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  912. "value": "Map is empty",
  913. "label": "Report"
  914. }
  915. ],
  916. "methodType": 2,
  917. "methodName": "Expect True",
  918. "className": "Unit Testing",
  919. "resultSlotIDs": [
  920. {}
  921. ],
  922. "prettyClassName": "Unit Testing"
  923. }
  924. }
  925. },
  926. {
  927. "Id": {
  928. "id": 427956157896750
  929. },
  930. "Name": "SC-Node(MarkComplete)",
  931. "Components": {
  932. "Component_[6956182611199677733]": {
  933. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  934. "Id": 6956182611199677733,
  935. "Slots": [
  936. {
  937. "isVisibile": false,
  938. "id": {
  939. "m_id": "{FE69FF3B-C3AB-4EA2-B061-E71EC30E63E7}"
  940. },
  941. "contracts": [
  942. {
  943. "$type": "SlotTypeContract"
  944. },
  945. null
  946. ],
  947. "slotName": "EntityID: 0",
  948. "Descriptor": {
  949. "ConnectionType": 1,
  950. "SlotType": 2
  951. },
  952. "DataType": 1
  953. },
  954. {
  955. "id": {
  956. "m_id": "{5EE2177B-AF58-4A0B-A072-E3FEC5439059}"
  957. },
  958. "contracts": [
  959. {
  960. "$type": "SlotTypeContract"
  961. },
  962. null
  963. ],
  964. "slotName": "Report",
  965. "toolTip": "additional notes for the test report",
  966. "DisplayDataType": {
  967. "m_type": 5
  968. },
  969. "Descriptor": {
  970. "ConnectionType": 1,
  971. "SlotType": 2
  972. },
  973. "DataType": 1
  974. },
  975. {
  976. "id": {
  977. "m_id": "{4DD2C43C-06AA-4395-8AE2-CB02A04E79A4}"
  978. },
  979. "contracts": [
  980. {
  981. "$type": "SlotTypeContract"
  982. }
  983. ],
  984. "slotName": "In",
  985. "Descriptor": {
  986. "ConnectionType": 1,
  987. "SlotType": 1
  988. }
  989. },
  990. {
  991. "id": {
  992. "m_id": "{26A2FB70-F551-4569-BB04-46636AFFCE5F}"
  993. },
  994. "contracts": [
  995. {
  996. "$type": "SlotTypeContract"
  997. }
  998. ],
  999. "slotName": "Out",
  1000. "Descriptor": {
  1001. "ConnectionType": 2,
  1002. "SlotType": 1
  1003. }
  1004. }
  1005. ],
  1006. "Datums": [
  1007. {
  1008. "isOverloadedStorage": false,
  1009. "scriptCanvasType": {
  1010. "m_type": 1
  1011. },
  1012. "isNullPointer": false,
  1013. "$type": "EntityId",
  1014. "value": {
  1015. "id": 4276206253
  1016. }
  1017. },
  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": "Report"
  1027. }
  1028. ],
  1029. "methodType": 2,
  1030. "methodName": "Mark Complete",
  1031. "className": "Unit Testing",
  1032. "resultSlotIDs": [
  1033. {}
  1034. ],
  1035. "prettyClassName": "Unit Testing"
  1036. }
  1037. }
  1038. },
  1039. {
  1040. "Id": {
  1041. "id": 427926093125678
  1042. },
  1043. "Name": "SC-Node(Start)",
  1044. "Components": {
  1045. "Component_[7361518463583764809]": {
  1046. "$type": "Start",
  1047. "Id": 7361518463583764809,
  1048. "Slots": [
  1049. {
  1050. "id": {
  1051. "m_id": "{4F6E337C-D608-420E-88D7-BC7EC14B7853}"
  1052. },
  1053. "contracts": [
  1054. {
  1055. "$type": "SlotTypeContract"
  1056. }
  1057. ],
  1058. "slotName": "Out",
  1059. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1060. "Descriptor": {
  1061. "ConnectionType": 2,
  1062. "SlotType": 1
  1063. }
  1064. }
  1065. ]
  1066. }
  1067. }
  1068. },
  1069. {
  1070. "Id": {
  1071. "id": 427943272994862
  1072. },
  1073. "Name": "SC-Node(OperatorClear)",
  1074. "Components": {
  1075. "Component_[9325589576794787028]": {
  1076. "$type": "MethodOverloaded",
  1077. "Id": 9325589576794787028,
  1078. "Slots": [
  1079. {
  1080. "IsOverload": true,
  1081. "id": {
  1082. "m_id": "{3511F098-83F3-40F1-85DC-A4A7100FB8F3}"
  1083. },
  1084. "DynamicTypeOverride": 3,
  1085. "contracts": [
  1086. {
  1087. "$type": "SlotTypeContract"
  1088. },
  1089. null
  1090. ],
  1091. "slotName": "Map<String, Number>: 0",
  1092. "DisplayDataType": {
  1093. "m_type": 4,
  1094. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  1095. },
  1096. "Descriptor": {
  1097. "ConnectionType": 1,
  1098. "SlotType": 2
  1099. },
  1100. "DataType": 1
  1101. },
  1102. {
  1103. "id": {
  1104. "m_id": "{B5EE9665-4032-4AC4-A52E-0F979C35B549}"
  1105. },
  1106. "contracts": [
  1107. {
  1108. "$type": "SlotTypeContract"
  1109. }
  1110. ],
  1111. "slotName": "In",
  1112. "Descriptor": {
  1113. "ConnectionType": 1,
  1114. "SlotType": 1
  1115. }
  1116. },
  1117. {
  1118. "id": {
  1119. "m_id": "{8A11E3EE-BCE0-4B6D-9DD1-183605011EC4}"
  1120. },
  1121. "contracts": [
  1122. {
  1123. "$type": "SlotTypeContract"
  1124. }
  1125. ],
  1126. "slotName": "Out",
  1127. "Descriptor": {
  1128. "ConnectionType": 2,
  1129. "SlotType": 1
  1130. }
  1131. },
  1132. {
  1133. "IsOverload": true,
  1134. "id": {
  1135. "m_id": "{CBF902ED-E38E-4D89-B639-920437E2EBAA}"
  1136. },
  1137. "DynamicTypeOverride": 3,
  1138. "contracts": [
  1139. {
  1140. "$type": "SlotTypeContract"
  1141. }
  1142. ],
  1143. "slotName": "Map<String, Number>",
  1144. "DisplayDataType": {
  1145. "m_type": 4,
  1146. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  1147. },
  1148. "Descriptor": {
  1149. "ConnectionType": 2,
  1150. "SlotType": 2
  1151. },
  1152. "DataType": 1
  1153. }
  1154. ],
  1155. "Datums": [
  1156. {
  1157. "isOverloadedStorage": false,
  1158. "scriptCanvasType": {
  1159. "m_type": 4,
  1160. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  1161. },
  1162. "isNullPointer": true,
  1163. "label": "Map<String, Number>: 0"
  1164. }
  1165. ],
  1166. "methodType": 2,
  1167. "methodName": "Clear All Elements",
  1168. "className": "AZStd::unordered_map<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, double, AZStd::hash<AZStd::basic_string<ch",
  1169. "resultSlotIDs": [
  1170. {}
  1171. ],
  1172. "prettyClassName": "AZStd::unordered_map<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, double, AZStd::hash<AZStd::basic_string<ch",
  1173. "orderedInputSlotIds": [
  1174. {
  1175. "m_id": "{3511F098-83F3-40F1-85DC-A4A7100FB8F3}"
  1176. }
  1177. ],
  1178. "outputSlotIds": [
  1179. {
  1180. "m_id": "{CBF902ED-E38E-4D89-B639-920437E2EBAA}"
  1181. }
  1182. ]
  1183. }
  1184. }
  1185. }
  1186. ],
  1187. "m_connections": [
  1188. {
  1189. "Id": {
  1190. "id": 427960452864046
  1191. },
  1192. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
  1193. "Components": {
  1194. "Component_[634066235497037351]": {
  1195. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1196. "Id": 634066235497037351,
  1197. "sourceEndpoint": {
  1198. "nodeId": {
  1199. "id": 427926093125678
  1200. },
  1201. "slotId": {
  1202. "m_id": "{4F6E337C-D608-420E-88D7-BC7EC14B7853}"
  1203. }
  1204. },
  1205. "targetEndpoint": {
  1206. "nodeId": {
  1207. "id": 427951862929454
  1208. },
  1209. "slotId": {
  1210. "m_id": "{5B69FE85-2890-4A03-A2C4-85A8D090F97C}"
  1211. }
  1212. }
  1213. }
  1214. }
  1215. },
  1216. {
  1217. "Id": {
  1218. "id": 427964747831342
  1219. },
  1220. "Name": "srcEndpoint=(Insert: Map<String, Number>), destEndpoint=(Clear All Elements: Map<String, Number>: 0)",
  1221. "Components": {
  1222. "Component_[1970460774990078159]": {
  1223. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1224. "Id": 1970460774990078159,
  1225. "sourceEndpoint": {
  1226. "nodeId": {
  1227. "id": 427921798158382
  1228. },
  1229. "slotId": {
  1230. "m_id": "{CDBED1D8-BA72-4263-A5EE-35BB1CEB4B1C}"
  1231. }
  1232. },
  1233. "targetEndpoint": {
  1234. "nodeId": {
  1235. "id": 427943272994862
  1236. },
  1237. "slotId": {
  1238. "m_id": "{3511F098-83F3-40F1-85DC-A4A7100FB8F3}"
  1239. }
  1240. }
  1241. }
  1242. }
  1243. },
  1244. {
  1245. "Id": {
  1246. "id": 427969042798638
  1247. },
  1248. "Name": "srcEndpoint=(Insert: Out), destEndpoint=(Insert: In)",
  1249. "Components": {
  1250. "Component_[5275038746922303866]": {
  1251. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1252. "Id": 5275038746922303866,
  1253. "sourceEndpoint": {
  1254. "nodeId": {
  1255. "id": 427934683060270
  1256. },
  1257. "slotId": {
  1258. "m_id": "{178C4903-DF5F-4E87-96C5-8FF4FD3FD4F8}"
  1259. }
  1260. },
  1261. "targetEndpoint": {
  1262. "nodeId": {
  1263. "id": 427938978027566
  1264. },
  1265. "slotId": {
  1266. "m_id": "{2AB98D4F-F002-400D-9921-4FE40E9553F2}"
  1267. }
  1268. }
  1269. }
  1270. }
  1271. },
  1272. {
  1273. "Id": {
  1274. "id": 427973337765934
  1275. },
  1276. "Name": "srcEndpoint=(Clear All Elements: Map<String, Number>), destEndpoint=(Is Empty: Map<String, Number>: 0)",
  1277. "Components": {
  1278. "Component_[7876854952526714616]": {
  1279. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1280. "Id": 7876854952526714616,
  1281. "sourceEndpoint": {
  1282. "nodeId": {
  1283. "id": 427943272994862
  1284. },
  1285. "slotId": {
  1286. "m_id": "{CBF902ED-E38E-4D89-B639-920437E2EBAA}"
  1287. }
  1288. },
  1289. "targetEndpoint": {
  1290. "nodeId": {
  1291. "id": 427947567962158
  1292. },
  1293. "slotId": {
  1294. "m_id": "{39A8B5C2-000F-46BF-B480-F6985FAED26F}"
  1295. }
  1296. }
  1297. }
  1298. }
  1299. },
  1300. {
  1301. "Id": {
  1302. "id": 427977632733230
  1303. },
  1304. "Name": "srcEndpoint=(Get Variable: Map<String, Number>), destEndpoint=(Insert: Map<String, Number>: 0)",
  1305. "Components": {
  1306. "Component_[18045165221841531100]": {
  1307. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1308. "Id": 18045165221841531100,
  1309. "sourceEndpoint": {
  1310. "nodeId": {
  1311. "id": 427951862929454
  1312. },
  1313. "slotId": {
  1314. "m_id": "{B7D475C4-F9B4-4853-866C-80B162174FFB}"
  1315. }
  1316. },
  1317. "targetEndpoint": {
  1318. "nodeId": {
  1319. "id": 427934683060270
  1320. },
  1321. "slotId": {
  1322. "m_id": "{93B05C9E-9356-4254-A50A-6BFB37128F7C}"
  1323. }
  1324. }
  1325. }
  1326. }
  1327. },
  1328. {
  1329. "Id": {
  1330. "id": 427981927700526
  1331. },
  1332. "Name": "srcEndpoint=(Insert: Out), destEndpoint=(Clear All Elements: In)",
  1333. "Components": {
  1334. "Component_[8085406936768282711]": {
  1335. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1336. "Id": 8085406936768282711,
  1337. "sourceEndpoint": {
  1338. "nodeId": {
  1339. "id": 427921798158382
  1340. },
  1341. "slotId": {
  1342. "m_id": "{0D9279BF-CE2A-4943-974C-59CFE3EBBFB5}"
  1343. }
  1344. },
  1345. "targetEndpoint": {
  1346. "nodeId": {
  1347. "id": 427943272994862
  1348. },
  1349. "slotId": {
  1350. "m_id": "{B5EE9665-4032-4AC4-A52E-0F979C35B549}"
  1351. }
  1352. }
  1353. }
  1354. }
  1355. },
  1356. {
  1357. "Id": {
  1358. "id": 427986222667822
  1359. },
  1360. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Insert: In)",
  1361. "Components": {
  1362. "Component_[7609995247469833844]": {
  1363. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1364. "Id": 7609995247469833844,
  1365. "sourceEndpoint": {
  1366. "nodeId": {
  1367. "id": 427951862929454
  1368. },
  1369. "slotId": {
  1370. "m_id": "{48527018-A5FE-4829-838F-0BD09467E019}"
  1371. }
  1372. },
  1373. "targetEndpoint": {
  1374. "nodeId": {
  1375. "id": 427934683060270
  1376. },
  1377. "slotId": {
  1378. "m_id": "{D3B5AD83-DDC3-4477-8C80-B942A816D177}"
  1379. }
  1380. }
  1381. }
  1382. }
  1383. },
  1384. {
  1385. "Id": {
  1386. "id": 427990517635118
  1387. },
  1388. "Name": "srcEndpoint=(Clear All Elements: Out), destEndpoint=(Is Empty: In)",
  1389. "Components": {
  1390. "Component_[643953158876912775]": {
  1391. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1392. "Id": 643953158876912775,
  1393. "sourceEndpoint": {
  1394. "nodeId": {
  1395. "id": 427943272994862
  1396. },
  1397. "slotId": {
  1398. "m_id": "{8A11E3EE-BCE0-4B6D-9DD1-183605011EC4}"
  1399. }
  1400. },
  1401. "targetEndpoint": {
  1402. "nodeId": {
  1403. "id": 427947567962158
  1404. },
  1405. "slotId": {
  1406. "m_id": "{17B17503-1FB9-4513-908A-0AA83440097C}"
  1407. }
  1408. }
  1409. }
  1410. }
  1411. },
  1412. {
  1413. "Id": {
  1414. "id": 427994812602414
  1415. },
  1416. "Name": "srcEndpoint=(Is Empty: Result: Boolean), destEndpoint=(Expect True: Candidate)",
  1417. "Components": {
  1418. "Component_[15588564776966387745]": {
  1419. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1420. "Id": 15588564776966387745,
  1421. "sourceEndpoint": {
  1422. "nodeId": {
  1423. "id": 427947567962158
  1424. },
  1425. "slotId": {
  1426. "m_id": "{7608B440-2C58-4FFD-9E51-673A9F26922B}"
  1427. }
  1428. },
  1429. "targetEndpoint": {
  1430. "nodeId": {
  1431. "id": 427930388092974
  1432. },
  1433. "slotId": {
  1434. "m_id": "{BBC80268-2874-4759-A058-EDD2B1CAB796}"
  1435. }
  1436. }
  1437. }
  1438. }
  1439. },
  1440. {
  1441. "Id": {
  1442. "id": 427999107569710
  1443. },
  1444. "Name": "srcEndpoint=(Insert: Map<String, Number>), destEndpoint=(Insert: Map<String, Number>: 0)",
  1445. "Components": {
  1446. "Component_[12253338021871776660]": {
  1447. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1448. "Id": 12253338021871776660,
  1449. "sourceEndpoint": {
  1450. "nodeId": {
  1451. "id": 427934683060270
  1452. },
  1453. "slotId": {
  1454. "m_id": "{F094A704-4974-4EF8-B757-66D07961B56D}"
  1455. }
  1456. },
  1457. "targetEndpoint": {
  1458. "nodeId": {
  1459. "id": 427938978027566
  1460. },
  1461. "slotId": {
  1462. "m_id": "{986816C4-CB0F-4890-96C0-99A2A6EC33DB}"
  1463. }
  1464. }
  1465. }
  1466. }
  1467. },
  1468. {
  1469. "Id": {
  1470. "id": 428003402537006
  1471. },
  1472. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Mark Complete: In)",
  1473. "Components": {
  1474. "Component_[18225316957379620133]": {
  1475. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1476. "Id": 18225316957379620133,
  1477. "sourceEndpoint": {
  1478. "nodeId": {
  1479. "id": 427930388092974
  1480. },
  1481. "slotId": {
  1482. "m_id": "{7AA81D5D-EB3E-47E7-B87E-3DB9A7648ABF}"
  1483. }
  1484. },
  1485. "targetEndpoint": {
  1486. "nodeId": {
  1487. "id": 427956157896750
  1488. },
  1489. "slotId": {
  1490. "m_id": "{4DD2C43C-06AA-4395-8AE2-CB02A04E79A4}"
  1491. }
  1492. }
  1493. }
  1494. }
  1495. },
  1496. {
  1497. "Id": {
  1498. "id": 428007697504302
  1499. },
  1500. "Name": "srcEndpoint=(Insert: Map<String, Number>), destEndpoint=(Insert: Map<String, Number>: 0)",
  1501. "Components": {
  1502. "Component_[3253245666011834463]": {
  1503. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1504. "Id": 3253245666011834463,
  1505. "sourceEndpoint": {
  1506. "nodeId": {
  1507. "id": 427938978027566
  1508. },
  1509. "slotId": {
  1510. "m_id": "{512FCE67-FBBC-45B8-906E-1080A0FC344F}"
  1511. }
  1512. },
  1513. "targetEndpoint": {
  1514. "nodeId": {
  1515. "id": 427921798158382
  1516. },
  1517. "slotId": {
  1518. "m_id": "{62BA331E-12E1-4DA9-8DC4-88C1659D57A5}"
  1519. }
  1520. }
  1521. }
  1522. }
  1523. },
  1524. {
  1525. "Id": {
  1526. "id": 428011992471598
  1527. },
  1528. "Name": "srcEndpoint=(Is Empty: True), destEndpoint=(Expect True: In)",
  1529. "Components": {
  1530. "Component_[2988959936670241303]": {
  1531. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1532. "Id": 2988959936670241303,
  1533. "sourceEndpoint": {
  1534. "nodeId": {
  1535. "id": 427947567962158
  1536. },
  1537. "slotId": {
  1538. "m_id": "{FD84A6A9-69AB-4B43-84ED-65E64410B77C}"
  1539. }
  1540. },
  1541. "targetEndpoint": {
  1542. "nodeId": {
  1543. "id": 427930388092974
  1544. },
  1545. "slotId": {
  1546. "m_id": "{5A6F7C19-C07F-4A04-B2D1-CC386B3D0736}"
  1547. }
  1548. }
  1549. }
  1550. }
  1551. },
  1552. {
  1553. "Id": {
  1554. "id": 428016287438894
  1555. },
  1556. "Name": "srcEndpoint=(Insert: Out), destEndpoint=(Insert: In)",
  1557. "Components": {
  1558. "Component_[8619158667783319513]": {
  1559. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1560. "Id": 8619158667783319513,
  1561. "sourceEndpoint": {
  1562. "nodeId": {
  1563. "id": 427938978027566
  1564. },
  1565. "slotId": {
  1566. "m_id": "{3EAADE35-D0D5-4B7D-A72E-1C2958896843}"
  1567. }
  1568. },
  1569. "targetEndpoint": {
  1570. "nodeId": {
  1571. "id": 427921798158382
  1572. },
  1573. "slotId": {
  1574. "m_id": "{ECC8DD18-BF48-4275-A54E-94C376E58235}"
  1575. }
  1576. }
  1577. }
  1578. }
  1579. }
  1580. ]
  1581. },
  1582. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  1583. "versionData": {
  1584. "_grammarVersion": 1,
  1585. "_runtimeVersion": 1,
  1586. "_fileVersion": 1
  1587. },
  1588. "m_variableCounter": 1,
  1589. "GraphCanvasData": [
  1590. {
  1591. "Key": {
  1592. "id": 427917503191086
  1593. },
  1594. "Value": {
  1595. "ComponentData": {
  1596. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  1597. "$type": "SceneComponentSaveData",
  1598. "ViewParams": {
  1599. "Scale": 0.5949627,
  1600. "AnchorX": 415.1520690917969,
  1601. "AnchorY": -329.43243408203125
  1602. }
  1603. }
  1604. }
  1605. }
  1606. },
  1607. {
  1608. "Key": {
  1609. "id": 427921798158382
  1610. },
  1611. "Value": {
  1612. "ComponentData": {
  1613. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1614. "$type": "GeneralNodeTitleComponentSaveData",
  1615. "PaletteOverride": "DefaultNodeTitlePalette"
  1616. },
  1617. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1618. "$type": "GeometrySaveData",
  1619. "Position": [
  1620. 1180.0,
  1621. 100.0
  1622. ]
  1623. },
  1624. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1625. "$type": "StylingComponentSaveData"
  1626. },
  1627. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1628. "$type": "PersistentIdComponentSaveData",
  1629. "PersistentId": "{8EA1E8FB-4CF0-4687-B623-6F3B56C3C22D}"
  1630. }
  1631. }
  1632. }
  1633. },
  1634. {
  1635. "Key": {
  1636. "id": 427926093125678
  1637. },
  1638. "Value": {
  1639. "ComponentData": {
  1640. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1641. "$type": "GeneralNodeTitleComponentSaveData",
  1642. "PaletteOverride": "TimeNodeTitlePalette"
  1643. },
  1644. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1645. "$type": "GeometrySaveData",
  1646. "Position": [
  1647. 100.0,
  1648. 100.0
  1649. ]
  1650. },
  1651. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1652. "$type": "StylingComponentSaveData",
  1653. "SubStyle": ".time"
  1654. },
  1655. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1656. "$type": "PersistentIdComponentSaveData",
  1657. "PersistentId": "{DB0CFF81-F515-4DD9-AF64-79BD48BEB6B9}"
  1658. }
  1659. }
  1660. }
  1661. },
  1662. {
  1663. "Key": {
  1664. "id": 427930388092974
  1665. },
  1666. "Value": {
  1667. "ComponentData": {
  1668. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1669. "$type": "GeneralNodeTitleComponentSaveData",
  1670. "PaletteOverride": "TestingNodeTitlePalette"
  1671. },
  1672. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1673. "$type": "GeometrySaveData",
  1674. "Position": [
  1675. 1940.0,
  1676. 100.0
  1677. ]
  1678. },
  1679. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1680. "$type": "StylingComponentSaveData",
  1681. "SubStyle": ".method"
  1682. },
  1683. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1684. "$type": "PersistentIdComponentSaveData",
  1685. "PersistentId": "{24BA71F7-5888-47A3-894E-30C87109018B}"
  1686. }
  1687. }
  1688. }
  1689. },
  1690. {
  1691. "Key": {
  1692. "id": 427934683060270
  1693. },
  1694. "Value": {
  1695. "ComponentData": {
  1696. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1697. "$type": "GeneralNodeTitleComponentSaveData",
  1698. "PaletteOverride": "DefaultNodeTitlePalette"
  1699. },
  1700. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1701. "$type": "GeometrySaveData",
  1702. "Position": [
  1703. 420.0,
  1704. 100.0
  1705. ]
  1706. },
  1707. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1708. "$type": "StylingComponentSaveData"
  1709. },
  1710. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1711. "$type": "PersistentIdComponentSaveData",
  1712. "PersistentId": "{EE061421-A74D-43F4-BADA-38F203C1095A}"
  1713. }
  1714. }
  1715. }
  1716. },
  1717. {
  1718. "Key": {
  1719. "id": 427938978027566
  1720. },
  1721. "Value": {
  1722. "ComponentData": {
  1723. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1724. "$type": "GeneralNodeTitleComponentSaveData",
  1725. "PaletteOverride": "DefaultNodeTitlePalette"
  1726. },
  1727. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1728. "$type": "GeometrySaveData",
  1729. "Position": [
  1730. 800.0,
  1731. 100.0
  1732. ]
  1733. },
  1734. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1735. "$type": "StylingComponentSaveData"
  1736. },
  1737. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1738. "$type": "PersistentIdComponentSaveData",
  1739. "PersistentId": "{A6F62941-2269-451D-A7B8-C9D1AAB430D0}"
  1740. }
  1741. }
  1742. }
  1743. },
  1744. {
  1745. "Key": {
  1746. "id": 427943272994862
  1747. },
  1748. "Value": {
  1749. "ComponentData": {
  1750. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1751. "$type": "GeneralNodeTitleComponentSaveData",
  1752. "PaletteOverride": "DefaultNodeTitlePalette"
  1753. },
  1754. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1755. "$type": "GeometrySaveData",
  1756. "Position": [
  1757. 1560.0,
  1758. 100.0
  1759. ]
  1760. },
  1761. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1762. "$type": "StylingComponentSaveData"
  1763. },
  1764. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1765. "$type": "PersistentIdComponentSaveData",
  1766. "PersistentId": "{2882C140-29BE-47AE-8F43-9F45EA057EB9}"
  1767. }
  1768. }
  1769. }
  1770. },
  1771. {
  1772. "Key": {
  1773. "id": 427947567962158
  1774. },
  1775. "Value": {
  1776. "ComponentData": {
  1777. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1778. "$type": "GeneralNodeTitleComponentSaveData",
  1779. "PaletteOverride": "DefaultNodeTitlePalette"
  1780. },
  1781. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1782. "$type": "GeometrySaveData",
  1783. "Position": [
  1784. 1740.0,
  1785. 100.0
  1786. ]
  1787. },
  1788. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1789. "$type": "StylingComponentSaveData"
  1790. },
  1791. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1792. "$type": "PersistentIdComponentSaveData",
  1793. "PersistentId": "{59C00E32-9C23-480A-B865-B9D5BD27640F}"
  1794. }
  1795. }
  1796. }
  1797. },
  1798. {
  1799. "Key": {
  1800. "id": 427951862929454
  1801. },
  1802. "Value": {
  1803. "ComponentData": {
  1804. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1805. "$type": "GeneralNodeTitleComponentSaveData",
  1806. "PaletteOverride": "GetVariableNodeTitlePalette"
  1807. },
  1808. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1809. "$type": "GeometrySaveData",
  1810. "Position": [
  1811. 240.0,
  1812. 100.0
  1813. ]
  1814. },
  1815. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1816. "$type": "StylingComponentSaveData",
  1817. "SubStyle": ".getVariable"
  1818. },
  1819. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1820. "$type": "PersistentIdComponentSaveData",
  1821. "PersistentId": "{F35E033D-5DAC-4B85-9211-7078730CAE15}"
  1822. }
  1823. }
  1824. }
  1825. },
  1826. {
  1827. "Key": {
  1828. "id": 427956157896750
  1829. },
  1830. "Value": {
  1831. "ComponentData": {
  1832. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1833. "$type": "GeneralNodeTitleComponentSaveData",
  1834. "PaletteOverride": "TestingNodeTitlePalette"
  1835. },
  1836. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1837. "$type": "GeometrySaveData",
  1838. "Position": [
  1839. 2180.0,
  1840. 100.0
  1841. ]
  1842. },
  1843. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1844. "$type": "StylingComponentSaveData",
  1845. "SubStyle": ".method"
  1846. },
  1847. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1848. "$type": "PersistentIdComponentSaveData",
  1849. "PersistentId": "{119D1EF0-E6EE-40EC-9756-AF88D64E28B1}"
  1850. }
  1851. }
  1852. }
  1853. }
  1854. ],
  1855. "StatisticsHelper": {
  1856. "InstanceCounter": [
  1857. {
  1858. "Key": 1050222979521486012,
  1859. "Value": 1
  1860. },
  1861. {
  1862. "Key": 4199610336680704683,
  1863. "Value": 1
  1864. },
  1865. {
  1866. "Key": 6840657073857873079,
  1867. "Value": 1
  1868. },
  1869. {
  1870. "Key": 8463643458259328560,
  1871. "Value": 1
  1872. },
  1873. {
  1874. "Key": 9249208456430500084,
  1875. "Value": 3
  1876. },
  1877. {
  1878. "Key": 9270580407029586662,
  1879. "Value": 1
  1880. },
  1881. {
  1882. "Key": 17737143160679362399,
  1883. "Value": 1
  1884. }
  1885. ]
  1886. }
  1887. },
  1888. "Component_[8205854910135249125]": {
  1889. "$type": "EditorGraphVariableManagerComponent",
  1890. "Id": 8205854910135249125,
  1891. "m_variableData": {
  1892. "m_nameVariableMap": [
  1893. {
  1894. "Key": {
  1895. "m_id": "{1DC0E2AC-6DD4-4825-850D-CAE85D9E1322}"
  1896. },
  1897. "Value": {
  1898. "Datum": {
  1899. "isOverloadedStorage": false,
  1900. "scriptCanvasType": {
  1901. "m_type": 4,
  1902. "m_azType": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD}"
  1903. },
  1904. "isNullPointer": false,
  1905. "$type": "{D0A15826-BEFB-5FBD-BEB4-609E7F2B67AD} AZStd::unordered_map",
  1906. "label": "Variable 1"
  1907. },
  1908. "VariableId": {
  1909. "m_id": "{1DC0E2AC-6DD4-4825-850D-CAE85D9E1322}"
  1910. },
  1911. "VariableName": "Variable 1"
  1912. }
  1913. }
  1914. ]
  1915. }
  1916. }
  1917. }
  1918. }
  1919. }
  1920. }