3
0

LY_SC_UnitTest_ForEachIterationMap.scriptcanvas 147 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 1022113343690798
  9. },
  10. "Name": "scriptcanvas/unittests/ly_sc_unittest_foreachiterationmap.scriptcanvas",
  11. "Components": {
  12. "Component_[12506726686804637980]": {
  13. "$type": "EditorGraph",
  14. "Id": 12506726686804637980,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 1022130523559982
  20. },
  21. "Name": "SC Node(SetVariable)",
  22. "Components": {
  23. "Component_[2193442345298738339]": {
  24. "$type": "SetVariableNode",
  25. "Id": 2193442345298738339,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{9DE8610B-529C-46CB-A7F4-3351EBC58A11}"
  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": "{7A57EBBB-9D95-4F88-AA5C-83E1CD3390FA}"
  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": "{E318D3D5-133D-4EA2-9E50-2B408C7E09F5}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. },
  67. null
  68. ],
  69. "slotName": "Number",
  70. "Descriptor": {
  71. "ConnectionType": 1,
  72. "SlotType": 2
  73. },
  74. "DataType": 1
  75. },
  76. {
  77. "id": {
  78. "m_id": "{3F5FF156-9983-4C6A-BEE4-48D9FFB8227C}"
  79. },
  80. "contracts": [
  81. {
  82. "$type": "SlotTypeContract"
  83. }
  84. ],
  85. "slotName": "Number",
  86. "DisplayDataType": {
  87. "m_type": 3
  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": 3
  101. },
  102. "isNullPointer": false,
  103. "$type": "double",
  104. "value": 0.0,
  105. "label": "Number"
  106. }
  107. ],
  108. "m_variableId": {
  109. "m_id": "{890DB71A-77CF-43DB-A3D5-55E48ED86E32}"
  110. },
  111. "m_variableDataInSlotId": {
  112. "m_id": "{E318D3D5-133D-4EA2-9E50-2B408C7E09F5}"
  113. },
  114. "m_variableDataOutSlotId": {
  115. "m_id": "{3F5FF156-9983-4C6A-BEE4-48D9FFB8227C}"
  116. }
  117. }
  118. }
  119. },
  120. {
  121. "Id": {
  122. "id": 1022151998396462
  123. },
  124. "Name": "SC-Node(OperatorAdd)",
  125. "Components": {
  126. "Component_[4467408796785686510]": {
  127. "$type": "OperatorAdd",
  128. "Id": 4467408796785686510,
  129. "Slots": [
  130. {
  131. "id": {
  132. "m_id": "{4F2DCCFB-9520-45AD-BA28-7D52B9136ECC}"
  133. },
  134. "contracts": [
  135. {
  136. "$type": "SlotTypeContract"
  137. }
  138. ],
  139. "slotName": "In",
  140. "Descriptor": {
  141. "ConnectionType": 1,
  142. "SlotType": 1
  143. }
  144. },
  145. {
  146. "id": {
  147. "m_id": "{48CFBFF0-A726-4C15-A8A1-7A6E057F68FE}"
  148. },
  149. "contracts": [
  150. {
  151. "$type": "SlotTypeContract"
  152. }
  153. ],
  154. "slotName": "Out",
  155. "Descriptor": {
  156. "ConnectionType": 2,
  157. "SlotType": 1
  158. }
  159. },
  160. {
  161. "id": {
  162. "m_id": "{E13FEA51-4B29-47D9-85F9-11A0F0EC9C3A}"
  163. },
  164. "DynamicTypeOverride": 3,
  165. "contracts": [
  166. {
  167. "$type": "SlotTypeContract"
  168. },
  169. null,
  170. {
  171. "$type": "MathOperatorContract",
  172. "NativeTypes": [
  173. {
  174. "m_type": 3
  175. },
  176. {
  177. "m_type": 6
  178. },
  179. {
  180. "m_type": 8
  181. },
  182. {
  183. "m_type": 9
  184. },
  185. {
  186. "m_type": 10
  187. },
  188. {
  189. "m_type": 11
  190. },
  191. {
  192. "m_type": 12
  193. },
  194. {
  195. "m_type": 14
  196. },
  197. {
  198. "m_type": 15
  199. }
  200. ]
  201. }
  202. ],
  203. "slotName": "Number",
  204. "toolTip": "An operand to use in performing the specified Operation",
  205. "DisplayDataType": {
  206. "m_type": 3
  207. },
  208. "DisplayGroup": {
  209. "Value": 1114760223
  210. },
  211. "Descriptor": {
  212. "ConnectionType": 1,
  213. "SlotType": 2
  214. },
  215. "DynamicGroup": {
  216. "Value": 1114760223
  217. },
  218. "DataType": 1,
  219. "IsReference": true,
  220. "VariableReference": {
  221. "m_id": "{890DB71A-77CF-43DB-A3D5-55E48ED86E32}"
  222. }
  223. },
  224. {
  225. "id": {
  226. "m_id": "{F3182122-62AF-4C31-8F1C-07A0B3E1E138}"
  227. },
  228. "DynamicTypeOverride": 3,
  229. "contracts": [
  230. {
  231. "$type": "SlotTypeContract"
  232. },
  233. null,
  234. {
  235. "$type": "MathOperatorContract",
  236. "NativeTypes": [
  237. {
  238. "m_type": 3
  239. },
  240. {
  241. "m_type": 6
  242. },
  243. {
  244. "m_type": 8
  245. },
  246. {
  247. "m_type": 9
  248. },
  249. {
  250. "m_type": 10
  251. },
  252. {
  253. "m_type": 11
  254. },
  255. {
  256. "m_type": 12
  257. },
  258. {
  259. "m_type": 14
  260. },
  261. {
  262. "m_type": 15
  263. }
  264. ]
  265. }
  266. ],
  267. "slotName": "Number",
  268. "toolTip": "An operand to use in performing the specified Operation",
  269. "DisplayDataType": {
  270. "m_type": 3
  271. },
  272. "DisplayGroup": {
  273. "Value": 1114760223
  274. },
  275. "Descriptor": {
  276. "ConnectionType": 1,
  277. "SlotType": 2
  278. },
  279. "DynamicGroup": {
  280. "Value": 1114760223
  281. },
  282. "DataType": 1
  283. },
  284. {
  285. "id": {
  286. "m_id": "{EFA1C462-C5FF-4CF4-9837-28AA355DDB38}"
  287. },
  288. "DynamicTypeOverride": 3,
  289. "contracts": [
  290. {
  291. "$type": "SlotTypeContract"
  292. },
  293. {
  294. "$type": "MathOperatorContract",
  295. "NativeTypes": [
  296. {
  297. "m_type": 3
  298. },
  299. {
  300. "m_type": 6
  301. },
  302. {
  303. "m_type": 8
  304. },
  305. {
  306. "m_type": 9
  307. },
  308. {
  309. "m_type": 10
  310. },
  311. {
  312. "m_type": 11
  313. },
  314. {
  315. "m_type": 12
  316. },
  317. {
  318. "m_type": 14
  319. },
  320. {
  321. "m_type": 15
  322. }
  323. ]
  324. }
  325. ],
  326. "slotName": "Result",
  327. "toolTip": "The result of the specified operation",
  328. "DisplayDataType": {
  329. "m_type": 3
  330. },
  331. "DisplayGroup": {
  332. "Value": 1114760223
  333. },
  334. "Descriptor": {
  335. "ConnectionType": 2,
  336. "SlotType": 2
  337. },
  338. "DynamicGroup": {
  339. "Value": 1114760223
  340. },
  341. "DataType": 1
  342. }
  343. ],
  344. "Datums": [
  345. {},
  346. {
  347. "isOverloadedStorage": false,
  348. "scriptCanvasType": {
  349. "m_type": 3
  350. },
  351. "isNullPointer": false,
  352. "$type": "double",
  353. "value": 1.0,
  354. "label": "Number"
  355. }
  356. ]
  357. }
  358. }
  359. },
  360. {
  361. "Id": {
  362. "id": 1022126228592686
  363. },
  364. "Name": "SC-Node(OperatorAdd)",
  365. "Components": {
  366. "Component_[4467408796785686510]": {
  367. "$type": "OperatorAdd",
  368. "Id": 4467408796785686510,
  369. "Slots": [
  370. {
  371. "id": {
  372. "m_id": "{4F2DCCFB-9520-45AD-BA28-7D52B9136ECC}"
  373. },
  374. "contracts": [
  375. {
  376. "$type": "SlotTypeContract"
  377. }
  378. ],
  379. "slotName": "In",
  380. "Descriptor": {
  381. "ConnectionType": 1,
  382. "SlotType": 1
  383. }
  384. },
  385. {
  386. "id": {
  387. "m_id": "{48CFBFF0-A726-4C15-A8A1-7A6E057F68FE}"
  388. },
  389. "contracts": [
  390. {
  391. "$type": "SlotTypeContract"
  392. }
  393. ],
  394. "slotName": "Out",
  395. "Descriptor": {
  396. "ConnectionType": 2,
  397. "SlotType": 1
  398. }
  399. },
  400. {
  401. "id": {
  402. "m_id": "{E13FEA51-4B29-47D9-85F9-11A0F0EC9C3A}"
  403. },
  404. "DynamicTypeOverride": 3,
  405. "contracts": [
  406. {
  407. "$type": "SlotTypeContract"
  408. },
  409. null,
  410. {
  411. "$type": "MathOperatorContract",
  412. "NativeTypes": [
  413. {
  414. "m_type": 3
  415. },
  416. {
  417. "m_type": 6
  418. },
  419. {
  420. "m_type": 8
  421. },
  422. {
  423. "m_type": 9
  424. },
  425. {
  426. "m_type": 10
  427. },
  428. {
  429. "m_type": 11
  430. },
  431. {
  432. "m_type": 12
  433. },
  434. {
  435. "m_type": 14
  436. },
  437. {
  438. "m_type": 15
  439. }
  440. ]
  441. }
  442. ],
  443. "slotName": "Number",
  444. "toolTip": "An operand to use in performing the specified Operation",
  445. "DisplayDataType": {
  446. "m_type": 3
  447. },
  448. "DisplayGroup": {
  449. "Value": 1114760223
  450. },
  451. "Descriptor": {
  452. "ConnectionType": 1,
  453. "SlotType": 2
  454. },
  455. "DynamicGroup": {
  456. "Value": 1114760223
  457. },
  458. "DataType": 1,
  459. "IsReference": true,
  460. "VariableReference": {
  461. "m_id": "{E6A4B6FA-121C-4F4B-95B8-6B70C27D9ABD}"
  462. }
  463. },
  464. {
  465. "id": {
  466. "m_id": "{F3182122-62AF-4C31-8F1C-07A0B3E1E138}"
  467. },
  468. "DynamicTypeOverride": 3,
  469. "contracts": [
  470. {
  471. "$type": "SlotTypeContract"
  472. },
  473. null,
  474. {
  475. "$type": "MathOperatorContract",
  476. "NativeTypes": [
  477. {
  478. "m_type": 3
  479. },
  480. {
  481. "m_type": 6
  482. },
  483. {
  484. "m_type": 8
  485. },
  486. {
  487. "m_type": 9
  488. },
  489. {
  490. "m_type": 10
  491. },
  492. {
  493. "m_type": 11
  494. },
  495. {
  496. "m_type": 12
  497. },
  498. {
  499. "m_type": 14
  500. },
  501. {
  502. "m_type": 15
  503. }
  504. ]
  505. }
  506. ],
  507. "slotName": "Number",
  508. "toolTip": "An operand to use in performing the specified Operation",
  509. "DisplayDataType": {
  510. "m_type": 3
  511. },
  512. "DisplayGroup": {
  513. "Value": 1114760223
  514. },
  515. "Descriptor": {
  516. "ConnectionType": 1,
  517. "SlotType": 2
  518. },
  519. "DynamicGroup": {
  520. "Value": 1114760223
  521. },
  522. "DataType": 1
  523. },
  524. {
  525. "id": {
  526. "m_id": "{EFA1C462-C5FF-4CF4-9837-28AA355DDB38}"
  527. },
  528. "DynamicTypeOverride": 3,
  529. "contracts": [
  530. {
  531. "$type": "SlotTypeContract"
  532. },
  533. {
  534. "$type": "MathOperatorContract",
  535. "NativeTypes": [
  536. {
  537. "m_type": 3
  538. },
  539. {
  540. "m_type": 6
  541. },
  542. {
  543. "m_type": 8
  544. },
  545. {
  546. "m_type": 9
  547. },
  548. {
  549. "m_type": 10
  550. },
  551. {
  552. "m_type": 11
  553. },
  554. {
  555. "m_type": 12
  556. },
  557. {
  558. "m_type": 14
  559. },
  560. {
  561. "m_type": 15
  562. }
  563. ]
  564. }
  565. ],
  566. "slotName": "Result",
  567. "toolTip": "The result of the specified operation",
  568. "DisplayDataType": {
  569. "m_type": 3
  570. },
  571. "DisplayGroup": {
  572. "Value": 1114760223
  573. },
  574. "Descriptor": {
  575. "ConnectionType": 2,
  576. "SlotType": 2
  577. },
  578. "DynamicGroup": {
  579. "Value": 1114760223
  580. },
  581. "DataType": 1
  582. }
  583. ],
  584. "Datums": [
  585. {},
  586. {
  587. "isOverloadedStorage": false,
  588. "scriptCanvasType": {
  589. "m_type": 3
  590. },
  591. "isNullPointer": false,
  592. "$type": "double",
  593. "value": 1.0,
  594. "label": "Number"
  595. }
  596. ]
  597. }
  598. }
  599. },
  600. {
  601. "Id": {
  602. "id": 1022156293363758
  603. },
  604. "Name": "SC-Node(Expect Equal)",
  605. "Components": {
  606. "Component_[52581238904910886]": {
  607. "$type": "MethodOverloaded",
  608. "Id": 52581238904910886,
  609. "Slots": [
  610. {
  611. "id": {
  612. "m_id": "{1ADB47ED-3538-4F10-8B06-82E2C3E05D1C}"
  613. },
  614. "contracts": [
  615. {
  616. "$type": "SlotTypeContract"
  617. },
  618. null
  619. ],
  620. "slotName": "EntityID: 0",
  621. "DisplayDataType": {
  622. "m_type": 1
  623. },
  624. "Descriptor": {
  625. "ConnectionType": 1,
  626. "SlotType": 2
  627. },
  628. "DataType": 1
  629. },
  630. {
  631. "IsOverload": true,
  632. "id": {
  633. "m_id": "{2B7E8CFD-4CBD-4EE8-871A-95A638D91492}"
  634. },
  635. "DynamicTypeOverride": 3,
  636. "contracts": [
  637. {
  638. "$type": "SlotTypeContract"
  639. },
  640. null
  641. ],
  642. "slotName": "Candidate",
  643. "toolTip": "left of ==",
  644. "DisplayDataType": {
  645. "m_type": 3
  646. },
  647. "Descriptor": {
  648. "ConnectionType": 1,
  649. "SlotType": 2
  650. },
  651. "DataType": 1,
  652. "IsReference": true,
  653. "VariableReference": {
  654. "m_id": "{890DB71A-77CF-43DB-A3D5-55E48ED86E32}"
  655. }
  656. },
  657. {
  658. "IsOverload": true,
  659. "id": {
  660. "m_id": "{7E1A9206-BAE9-4B28-8385-89D39C4B0E11}"
  661. },
  662. "DynamicTypeOverride": 3,
  663. "contracts": [
  664. {
  665. "$type": "SlotTypeContract"
  666. },
  667. null
  668. ],
  669. "slotName": "Reference",
  670. "toolTip": "right of ==",
  671. "DisplayDataType": {
  672. "m_type": 3
  673. },
  674. "Descriptor": {
  675. "ConnectionType": 1,
  676. "SlotType": 2
  677. },
  678. "DataType": 1,
  679. "IsReference": true,
  680. "VariableReference": {
  681. "m_id": "{C9853A14-1F7A-449A-AF2E-5C72023C6AB9}"
  682. }
  683. },
  684. {
  685. "id": {
  686. "m_id": "{BB80C651-6A9B-4120-B570-A630B655EA22}"
  687. },
  688. "contracts": [
  689. {
  690. "$type": "SlotTypeContract"
  691. },
  692. null
  693. ],
  694. "slotName": "Report",
  695. "toolTip": "additional notes for the test report",
  696. "DisplayDataType": {
  697. "m_type": 5
  698. },
  699. "Descriptor": {
  700. "ConnectionType": 1,
  701. "SlotType": 2
  702. },
  703. "DataType": 1
  704. },
  705. {
  706. "id": {
  707. "m_id": "{F3DD1FAE-5AF7-4D6F-90A0-045BFA42C28E}"
  708. },
  709. "contracts": [
  710. {
  711. "$type": "SlotTypeContract"
  712. }
  713. ],
  714. "slotName": "In",
  715. "Descriptor": {
  716. "ConnectionType": 1,
  717. "SlotType": 1
  718. }
  719. },
  720. {
  721. "id": {
  722. "m_id": "{DF8DC752-C82C-410D-B0B1-E379752E5395}"
  723. },
  724. "contracts": [
  725. {
  726. "$type": "SlotTypeContract"
  727. }
  728. ],
  729. "slotName": "Out",
  730. "Descriptor": {
  731. "ConnectionType": 2,
  732. "SlotType": 1
  733. }
  734. }
  735. ],
  736. "Datums": [
  737. {
  738. "isOverloadedStorage": false,
  739. "scriptCanvasType": {
  740. "m_type": 1
  741. },
  742. "isNullPointer": false,
  743. "$type": "EntityId",
  744. "value": {
  745. "id": 4276206253
  746. },
  747. "label": "EntityID: 0"
  748. },
  749. {},
  750. {},
  751. {
  752. "isOverloadedStorage": false,
  753. "scriptCanvasType": {
  754. "m_type": 5
  755. },
  756. "isNullPointer": false,
  757. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  758. "value": "Last value check",
  759. "label": "Report"
  760. }
  761. ],
  762. "methodType": 2,
  763. "methodName": "Expect Equal",
  764. "className": "Unit Testing",
  765. "resultSlotIDs": [
  766. {}
  767. ],
  768. "prettyClassName": "Unit Testing",
  769. "orderedInputSlotIds": [
  770. {
  771. "m_id": "{1ADB47ED-3538-4F10-8B06-82E2C3E05D1C}"
  772. },
  773. {
  774. "m_id": "{2B7E8CFD-4CBD-4EE8-871A-95A638D91492}"
  775. },
  776. {
  777. "m_id": "{7E1A9206-BAE9-4B28-8385-89D39C4B0E11}"
  778. },
  779. {
  780. "m_id": "{BB80C651-6A9B-4120-B570-A630B655EA22}"
  781. }
  782. ]
  783. }
  784. }
  785. },
  786. {
  787. "Id": {
  788. "id": 1022117638658094
  789. },
  790. "Name": "SC-Node(Expect Equal)",
  791. "Components": {
  792. "Component_[52581238904910886]": {
  793. "$type": "MethodOverloaded",
  794. "Id": 52581238904910886,
  795. "Slots": [
  796. {
  797. "id": {
  798. "m_id": "{1ADB47ED-3538-4F10-8B06-82E2C3E05D1C}"
  799. },
  800. "contracts": [
  801. {
  802. "$type": "SlotTypeContract"
  803. },
  804. null
  805. ],
  806. "slotName": "EntityID: 0",
  807. "DisplayDataType": {
  808. "m_type": 1
  809. },
  810. "Descriptor": {
  811. "ConnectionType": 1,
  812. "SlotType": 2
  813. },
  814. "DataType": 1
  815. },
  816. {
  817. "IsOverload": true,
  818. "id": {
  819. "m_id": "{2B7E8CFD-4CBD-4EE8-871A-95A638D91492}"
  820. },
  821. "DynamicTypeOverride": 3,
  822. "contracts": [
  823. {
  824. "$type": "SlotTypeContract"
  825. },
  826. null
  827. ],
  828. "slotName": "Candidate",
  829. "toolTip": "left of ==",
  830. "DisplayDataType": {
  831. "m_type": 3
  832. },
  833. "Descriptor": {
  834. "ConnectionType": 1,
  835. "SlotType": 2
  836. },
  837. "DataType": 1,
  838. "IsReference": true,
  839. "VariableReference": {
  840. "m_id": "{E6A4B6FA-121C-4F4B-95B8-6B70C27D9ABD}"
  841. }
  842. },
  843. {
  844. "IsOverload": true,
  845. "id": {
  846. "m_id": "{7E1A9206-BAE9-4B28-8385-89D39C4B0E11}"
  847. },
  848. "DynamicTypeOverride": 3,
  849. "contracts": [
  850. {
  851. "$type": "SlotTypeContract"
  852. },
  853. null
  854. ],
  855. "slotName": "Reference",
  856. "toolTip": "right of ==",
  857. "DisplayDataType": {
  858. "m_type": 3
  859. },
  860. "Descriptor": {
  861. "ConnectionType": 1,
  862. "SlotType": 2
  863. },
  864. "DataType": 1,
  865. "IsReference": true,
  866. "VariableReference": {
  867. "m_id": "{C9853A14-1F7A-449A-AF2E-5C72023C6AB9}"
  868. }
  869. },
  870. {
  871. "id": {
  872. "m_id": "{BB80C651-6A9B-4120-B570-A630B655EA22}"
  873. },
  874. "contracts": [
  875. {
  876. "$type": "SlotTypeContract"
  877. },
  878. null
  879. ],
  880. "slotName": "Report",
  881. "toolTip": "additional notes for the test report",
  882. "DisplayDataType": {
  883. "m_type": 5
  884. },
  885. "Descriptor": {
  886. "ConnectionType": 1,
  887. "SlotType": 2
  888. },
  889. "DataType": 1
  890. },
  891. {
  892. "id": {
  893. "m_id": "{F3DD1FAE-5AF7-4D6F-90A0-045BFA42C28E}"
  894. },
  895. "contracts": [
  896. {
  897. "$type": "SlotTypeContract"
  898. }
  899. ],
  900. "slotName": "In",
  901. "Descriptor": {
  902. "ConnectionType": 1,
  903. "SlotType": 1
  904. }
  905. },
  906. {
  907. "id": {
  908. "m_id": "{DF8DC752-C82C-410D-B0B1-E379752E5395}"
  909. },
  910. "contracts": [
  911. {
  912. "$type": "SlotTypeContract"
  913. }
  914. ],
  915. "slotName": "Out",
  916. "Descriptor": {
  917. "ConnectionType": 2,
  918. "SlotType": 1
  919. }
  920. }
  921. ],
  922. "Datums": [
  923. {
  924. "isOverloadedStorage": false,
  925. "scriptCanvasType": {
  926. "m_type": 1
  927. },
  928. "isNullPointer": false,
  929. "$type": "EntityId",
  930. "value": {
  931. "id": 4276206253
  932. },
  933. "label": "EntityID: 0"
  934. },
  935. {},
  936. {},
  937. {
  938. "isOverloadedStorage": false,
  939. "scriptCanvasType": {
  940. "m_type": 5
  941. },
  942. "isNullPointer": false,
  943. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  944. "value": "last key check",
  945. "label": "Report"
  946. }
  947. ],
  948. "methodType": 2,
  949. "methodName": "Expect Equal",
  950. "className": "Unit Testing",
  951. "resultSlotIDs": [
  952. {}
  953. ],
  954. "prettyClassName": "Unit Testing",
  955. "orderedInputSlotIds": [
  956. {
  957. "m_id": "{1ADB47ED-3538-4F10-8B06-82E2C3E05D1C}"
  958. },
  959. {
  960. "m_id": "{2B7E8CFD-4CBD-4EE8-871A-95A638D91492}"
  961. },
  962. {
  963. "m_id": "{7E1A9206-BAE9-4B28-8385-89D39C4B0E11}"
  964. },
  965. {
  966. "m_id": "{BB80C651-6A9B-4120-B570-A630B655EA22}"
  967. }
  968. ]
  969. }
  970. }
  971. },
  972. {
  973. "Id": {
  974. "id": 1022139113494574
  975. },
  976. "Name": "SC-Node(Expect Equal)",
  977. "Components": {
  978. "Component_[52581238904910886]": {
  979. "$type": "MethodOverloaded",
  980. "Id": 52581238904910886,
  981. "Slots": [
  982. {
  983. "id": {
  984. "m_id": "{1ADB47ED-3538-4F10-8B06-82E2C3E05D1C}"
  985. },
  986. "contracts": [
  987. {
  988. "$type": "SlotTypeContract"
  989. },
  990. null
  991. ],
  992. "slotName": "EntityID: 0",
  993. "DisplayDataType": {
  994. "m_type": 1
  995. },
  996. "Descriptor": {
  997. "ConnectionType": 1,
  998. "SlotType": 2
  999. },
  1000. "DataType": 1
  1001. },
  1002. {
  1003. "IsOverload": true,
  1004. "id": {
  1005. "m_id": "{2B7E8CFD-4CBD-4EE8-871A-95A638D91492}"
  1006. },
  1007. "DynamicTypeOverride": 3,
  1008. "contracts": [
  1009. {
  1010. "$type": "SlotTypeContract"
  1011. },
  1012. null
  1013. ],
  1014. "slotName": "Candidate",
  1015. "toolTip": "left of ==",
  1016. "DisplayDataType": {
  1017. "m_type": 3
  1018. },
  1019. "Descriptor": {
  1020. "ConnectionType": 1,
  1021. "SlotType": 2
  1022. },
  1023. "DataType": 1
  1024. },
  1025. {
  1026. "IsOverload": true,
  1027. "id": {
  1028. "m_id": "{7E1A9206-BAE9-4B28-8385-89D39C4B0E11}"
  1029. },
  1030. "DynamicTypeOverride": 3,
  1031. "contracts": [
  1032. {
  1033. "$type": "SlotTypeContract"
  1034. },
  1035. null
  1036. ],
  1037. "slotName": "Reference",
  1038. "toolTip": "right of ==",
  1039. "DisplayDataType": {
  1040. "m_type": 3
  1041. },
  1042. "Descriptor": {
  1043. "ConnectionType": 1,
  1044. "SlotType": 2
  1045. },
  1046. "DataType": 1
  1047. },
  1048. {
  1049. "id": {
  1050. "m_id": "{BB80C651-6A9B-4120-B570-A630B655EA22}"
  1051. },
  1052. "contracts": [
  1053. {
  1054. "$type": "SlotTypeContract"
  1055. },
  1056. null
  1057. ],
  1058. "slotName": "Report",
  1059. "toolTip": "additional notes for the test report",
  1060. "DisplayDataType": {
  1061. "m_type": 5
  1062. },
  1063. "Descriptor": {
  1064. "ConnectionType": 1,
  1065. "SlotType": 2
  1066. },
  1067. "DataType": 1
  1068. },
  1069. {
  1070. "id": {
  1071. "m_id": "{F3DD1FAE-5AF7-4D6F-90A0-045BFA42C28E}"
  1072. },
  1073. "contracts": [
  1074. {
  1075. "$type": "SlotTypeContract"
  1076. }
  1077. ],
  1078. "slotName": "In",
  1079. "Descriptor": {
  1080. "ConnectionType": 1,
  1081. "SlotType": 1
  1082. }
  1083. },
  1084. {
  1085. "id": {
  1086. "m_id": "{DF8DC752-C82C-410D-B0B1-E379752E5395}"
  1087. },
  1088. "contracts": [
  1089. {
  1090. "$type": "SlotTypeContract"
  1091. }
  1092. ],
  1093. "slotName": "Out",
  1094. "Descriptor": {
  1095. "ConnectionType": 2,
  1096. "SlotType": 1
  1097. }
  1098. }
  1099. ],
  1100. "Datums": [
  1101. {
  1102. "isOverloadedStorage": false,
  1103. "scriptCanvasType": {
  1104. "m_type": 1
  1105. },
  1106. "isNullPointer": false,
  1107. "$type": "EntityId",
  1108. "value": {
  1109. "id": 4276206253
  1110. },
  1111. "label": "EntityID: 0"
  1112. },
  1113. {
  1114. "isOverloadedStorage": false,
  1115. "scriptCanvasType": {
  1116. "m_type": 3
  1117. },
  1118. "isNullPointer": false,
  1119. "$type": "double",
  1120. "value": 0.0,
  1121. "label": "Candidate"
  1122. },
  1123. {
  1124. "isOverloadedStorage": false,
  1125. "scriptCanvasType": {
  1126. "m_type": 3
  1127. },
  1128. "isNullPointer": false,
  1129. "$type": "double",
  1130. "value": 0.0,
  1131. "label": "Reference"
  1132. },
  1133. {
  1134. "isOverloadedStorage": false,
  1135. "scriptCanvasType": {
  1136. "m_type": 5
  1137. },
  1138. "isNullPointer": false,
  1139. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1140. "value": "Iteration check on key & value",
  1141. "label": "Report"
  1142. }
  1143. ],
  1144. "methodType": 2,
  1145. "methodName": "Expect Equal",
  1146. "className": "Unit Testing",
  1147. "resultSlotIDs": [
  1148. {}
  1149. ],
  1150. "prettyClassName": "Unit Testing",
  1151. "orderedInputSlotIds": [
  1152. {
  1153. "m_id": "{1ADB47ED-3538-4F10-8B06-82E2C3E05D1C}"
  1154. },
  1155. {
  1156. "m_id": "{2B7E8CFD-4CBD-4EE8-871A-95A638D91492}"
  1157. },
  1158. {
  1159. "m_id": "{7E1A9206-BAE9-4B28-8385-89D39C4B0E11}"
  1160. },
  1161. {
  1162. "m_id": "{BB80C651-6A9B-4120-B570-A630B655EA22}"
  1163. }
  1164. ]
  1165. }
  1166. }
  1167. },
  1168. {
  1169. "Id": {
  1170. "id": 1022134818527278
  1171. },
  1172. "Name": "SC Node(SetVariable)",
  1173. "Components": {
  1174. "Component_[6621794751586970634]": {
  1175. "$type": "SetVariableNode",
  1176. "Id": 6621794751586970634,
  1177. "Slots": [
  1178. {
  1179. "id": {
  1180. "m_id": "{5138A9C7-37DE-4779-AE04-3FD4AB277550}"
  1181. },
  1182. "contracts": [
  1183. {
  1184. "$type": "SlotTypeContract"
  1185. }
  1186. ],
  1187. "slotName": "In",
  1188. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  1189. "Descriptor": {
  1190. "ConnectionType": 1,
  1191. "SlotType": 1
  1192. }
  1193. },
  1194. {
  1195. "id": {
  1196. "m_id": "{A82AD998-F433-4A96-8A66-F2ACAE024FC5}"
  1197. },
  1198. "contracts": [
  1199. {
  1200. "$type": "SlotTypeContract"
  1201. }
  1202. ],
  1203. "slotName": "Out",
  1204. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1205. "Descriptor": {
  1206. "ConnectionType": 2,
  1207. "SlotType": 1
  1208. }
  1209. },
  1210. {
  1211. "id": {
  1212. "m_id": "{C3BD1937-FBCF-47C3-9D69-6838BB79CD5B}"
  1213. },
  1214. "contracts": [
  1215. {
  1216. "$type": "SlotTypeContract"
  1217. },
  1218. null
  1219. ],
  1220. "slotName": "Number",
  1221. "Descriptor": {
  1222. "ConnectionType": 1,
  1223. "SlotType": 2
  1224. },
  1225. "DataType": 1
  1226. },
  1227. {
  1228. "id": {
  1229. "m_id": "{6489AA38-B5B8-4E8D-83FA-FD3F4FF8B903}"
  1230. },
  1231. "contracts": [
  1232. {
  1233. "$type": "SlotTypeContract"
  1234. }
  1235. ],
  1236. "slotName": "Number",
  1237. "DisplayDataType": {
  1238. "m_type": 3
  1239. },
  1240. "Descriptor": {
  1241. "ConnectionType": 2,
  1242. "SlotType": 2
  1243. },
  1244. "DataType": 1
  1245. }
  1246. ],
  1247. "Datums": [
  1248. {
  1249. "isOverloadedStorage": false,
  1250. "scriptCanvasType": {
  1251. "m_type": 3
  1252. },
  1253. "isNullPointer": false,
  1254. "$type": "double",
  1255. "value": 0.0,
  1256. "label": "Number"
  1257. }
  1258. ],
  1259. "m_variableId": {
  1260. "m_id": "{E6A4B6FA-121C-4F4B-95B8-6B70C27D9ABD}"
  1261. },
  1262. "m_variableDataInSlotId": {
  1263. "m_id": "{C3BD1937-FBCF-47C3-9D69-6838BB79CD5B}"
  1264. },
  1265. "m_variableDataOutSlotId": {
  1266. "m_id": "{6489AA38-B5B8-4E8D-83FA-FD3F4FF8B903}"
  1267. }
  1268. }
  1269. }
  1270. },
  1271. {
  1272. "Id": {
  1273. "id": 1022121933625390
  1274. },
  1275. "Name": "SC-Node(Start)",
  1276. "Components": {
  1277. "Component_[6643647730810815922]": {
  1278. "$type": "Start",
  1279. "Id": 6643647730810815922,
  1280. "Slots": [
  1281. {
  1282. "id": {
  1283. "m_id": "{CD5AA7DA-D942-4DCB-92C4-AA1B0B5279E2}"
  1284. },
  1285. "contracts": [
  1286. {
  1287. "$type": "SlotTypeContract"
  1288. }
  1289. ],
  1290. "slotName": "Out",
  1291. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1292. "Descriptor": {
  1293. "ConnectionType": 2,
  1294. "SlotType": 1
  1295. }
  1296. }
  1297. ]
  1298. }
  1299. }
  1300. },
  1301. {
  1302. "Id": {
  1303. "id": 1022147703429166
  1304. },
  1305. "Name": "SC-Node(ForEach)",
  1306. "Components": {
  1307. "Component_[8245410371051606568]": {
  1308. "$type": "ForEach",
  1309. "Id": 8245410371051606568,
  1310. "Slots": [
  1311. {
  1312. "id": {
  1313. "m_id": "{AAB278D6-9DF6-40DE-A26E-B83B7A22A9C5}"
  1314. },
  1315. "DynamicTypeOverride": 2,
  1316. "contracts": [
  1317. {
  1318. "$type": "SlotTypeContract"
  1319. },
  1320. null
  1321. ],
  1322. "slotName": "Source",
  1323. "DisplayDataType": {
  1324. "m_type": 4,
  1325. "m_azType": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}"
  1326. },
  1327. "Descriptor": {
  1328. "ConnectionType": 1,
  1329. "SlotType": 2
  1330. },
  1331. "DynamicGroup": {
  1332. "Value": 3089028177
  1333. },
  1334. "DataType": 1,
  1335. "IsReference": true,
  1336. "VariableReference": {
  1337. "m_id": "{A1E2C4F7-CD58-47F5-87C4-ACC50A5DFE98}"
  1338. }
  1339. },
  1340. {
  1341. "id": {
  1342. "m_id": "{1780FEB2-13AF-4CF1-B823-A4B512EE39F6}"
  1343. },
  1344. "contracts": [
  1345. {
  1346. "$type": "SlotTypeContract"
  1347. }
  1348. ],
  1349. "slotName": "In",
  1350. "toolTip": "Signaled upon node entry",
  1351. "Descriptor": {
  1352. "ConnectionType": 1,
  1353. "SlotType": 1
  1354. }
  1355. },
  1356. {
  1357. "id": {
  1358. "m_id": "{2624850A-0447-4EBE-9FDB-C527FC7AB05F}"
  1359. },
  1360. "contracts": [
  1361. {
  1362. "$type": "SlotTypeContract"
  1363. }
  1364. ],
  1365. "slotName": "Break",
  1366. "toolTip": "Stops the iteration when signaled",
  1367. "Descriptor": {
  1368. "ConnectionType": 1,
  1369. "SlotType": 1
  1370. }
  1371. },
  1372. {
  1373. "id": {
  1374. "m_id": "{310E3858-EAA2-46B1-B474-C1A51BADB9A3}"
  1375. },
  1376. "contracts": [
  1377. {
  1378. "$type": "SlotTypeContract"
  1379. }
  1380. ],
  1381. "slotName": "Each",
  1382. "toolTip": "Signalled after each element of the container",
  1383. "Descriptor": {
  1384. "ConnectionType": 2,
  1385. "SlotType": 1
  1386. }
  1387. },
  1388. {
  1389. "id": {
  1390. "m_id": "{8DE5785E-B9A1-4370-B968-03DC3126D721}"
  1391. },
  1392. "contracts": [
  1393. {
  1394. "$type": "SlotTypeContract"
  1395. }
  1396. ],
  1397. "slotName": "Finished",
  1398. "toolTip": "The container has been fully iterated over",
  1399. "Descriptor": {
  1400. "ConnectionType": 2,
  1401. "SlotType": 1
  1402. }
  1403. },
  1404. {
  1405. "id": {
  1406. "m_id": "{EAFF8636-0211-40A4-A13D-39FA49550004}"
  1407. },
  1408. "contracts": [
  1409. {
  1410. "$type": "SlotTypeContract"
  1411. }
  1412. ],
  1413. "slotName": "Number",
  1414. "DisplayDataType": {
  1415. "m_type": 3
  1416. },
  1417. "Descriptor": {
  1418. "ConnectionType": 2,
  1419. "SlotType": 2
  1420. },
  1421. "DataType": 1
  1422. },
  1423. {
  1424. "id": {
  1425. "m_id": "{AB4B9A8B-546F-48DD-A036-04ED6DC54DED}"
  1426. },
  1427. "contracts": [
  1428. {
  1429. "$type": "SlotTypeContract"
  1430. }
  1431. ],
  1432. "slotName": "Number",
  1433. "DisplayDataType": {
  1434. "m_type": 3
  1435. },
  1436. "Descriptor": {
  1437. "ConnectionType": 2,
  1438. "SlotType": 2
  1439. },
  1440. "DataType": 1
  1441. }
  1442. ],
  1443. "Datums": [
  1444. {}
  1445. ],
  1446. "m_sourceSlot": {
  1447. "m_id": "{AAB278D6-9DF6-40DE-A26E-B83B7A22A9C5}"
  1448. },
  1449. "m_previousTypeId": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}",
  1450. "m_propertySlots": [
  1451. {
  1452. "m_propertySlotId": {
  1453. "m_id": "{EAFF8636-0211-40A4-A13D-39FA49550004}"
  1454. },
  1455. "m_propertyType": {
  1456. "m_type": 3
  1457. },
  1458. "m_propertyName": "Number"
  1459. },
  1460. {
  1461. "m_propertySlotId": {
  1462. "m_id": "{AB4B9A8B-546F-48DD-A036-04ED6DC54DED}"
  1463. },
  1464. "m_propertyType": {
  1465. "m_type": 3
  1466. },
  1467. "m_propertyName": "Number"
  1468. }
  1469. ]
  1470. }
  1471. }
  1472. },
  1473. {
  1474. "Id": {
  1475. "id": 1022143408461870
  1476. },
  1477. "Name": "SC-Node(Mark Complete)",
  1478. "Components": {
  1479. "Component_[8992922202322317283]": {
  1480. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1481. "Id": 8992922202322317283,
  1482. "Slots": [
  1483. {
  1484. "isVisibile": false,
  1485. "id": {
  1486. "m_id": "{8F5C56C0-7342-4FF8-A331-58FE9540893C}"
  1487. },
  1488. "contracts": [
  1489. {
  1490. "$type": "SlotTypeContract"
  1491. },
  1492. null
  1493. ],
  1494. "slotName": "EntityID: 0",
  1495. "Descriptor": {
  1496. "ConnectionType": 1,
  1497. "SlotType": 2
  1498. },
  1499. "DataType": 1
  1500. },
  1501. {
  1502. "id": {
  1503. "m_id": "{3BB77418-E3DA-4960-A1FC-FD5FB649AF2E}"
  1504. },
  1505. "contracts": [
  1506. {
  1507. "$type": "SlotTypeContract"
  1508. },
  1509. null
  1510. ],
  1511. "slotName": "Report",
  1512. "toolTip": "additional notes for the test report",
  1513. "Descriptor": {
  1514. "ConnectionType": 1,
  1515. "SlotType": 2
  1516. },
  1517. "DataType": 1
  1518. },
  1519. {
  1520. "id": {
  1521. "m_id": "{A31A93A8-A0A3-46BC-A40B-B4D181D89FBF}"
  1522. },
  1523. "contracts": [
  1524. {
  1525. "$type": "SlotTypeContract"
  1526. }
  1527. ],
  1528. "slotName": "In",
  1529. "Descriptor": {
  1530. "ConnectionType": 1,
  1531. "SlotType": 1
  1532. }
  1533. },
  1534. {
  1535. "id": {
  1536. "m_id": "{DF62308B-3D76-4B65-9CB3-B66C5D011595}"
  1537. },
  1538. "contracts": [
  1539. {
  1540. "$type": "SlotTypeContract"
  1541. }
  1542. ],
  1543. "slotName": "Out",
  1544. "Descriptor": {
  1545. "ConnectionType": 2,
  1546. "SlotType": 1
  1547. }
  1548. }
  1549. ],
  1550. "Datums": [
  1551. {
  1552. "isOverloadedStorage": false,
  1553. "scriptCanvasType": {
  1554. "m_type": 1
  1555. },
  1556. "isNullPointer": false,
  1557. "$type": "EntityId",
  1558. "value": {
  1559. "id": 4276206253
  1560. }
  1561. },
  1562. {
  1563. "isOverloadedStorage": false,
  1564. "scriptCanvasType": {
  1565. "m_type": 5
  1566. },
  1567. "isNullPointer": false,
  1568. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1569. "value": "",
  1570. "label": "Report"
  1571. }
  1572. ],
  1573. "methodType": 2,
  1574. "methodName": "Mark Complete",
  1575. "className": "Unit Testing",
  1576. "resultSlotIDs": [
  1577. {}
  1578. ],
  1579. "prettyClassName": "Unit Testing"
  1580. }
  1581. }
  1582. }
  1583. ],
  1584. "m_connections": [
  1585. {
  1586. "Id": {
  1587. "id": 1022160588331054
  1588. },
  1589. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  1590. "Components": {
  1591. "Component_[16560287996808016380]": {
  1592. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1593. "Id": 16560287996808016380,
  1594. "sourceEndpoint": {
  1595. "nodeId": {
  1596. "id": 1022117638658094
  1597. },
  1598. "slotId": {
  1599. "m_id": "{DF8DC752-C82C-410D-B0B1-E379752E5395}"
  1600. }
  1601. },
  1602. "targetEndpoint": {
  1603. "nodeId": {
  1604. "id": 1022156293363758
  1605. },
  1606. "slotId": {
  1607. "m_id": "{F3DD1FAE-5AF7-4D6F-90A0-045BFA42C28E}"
  1608. }
  1609. }
  1610. }
  1611. }
  1612. },
  1613. {
  1614. "Id": {
  1615. "id": 1022164883298350
  1616. },
  1617. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(For Each: In)",
  1618. "Components": {
  1619. "Component_[12627459874101695661]": {
  1620. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1621. "Id": 12627459874101695661,
  1622. "sourceEndpoint": {
  1623. "nodeId": {
  1624. "id": 1022121933625390
  1625. },
  1626. "slotId": {
  1627. "m_id": "{CD5AA7DA-D942-4DCB-92C4-AA1B0B5279E2}"
  1628. }
  1629. },
  1630. "targetEndpoint": {
  1631. "nodeId": {
  1632. "id": 1022147703429166
  1633. },
  1634. "slotId": {
  1635. "m_id": "{1780FEB2-13AF-4CF1-B823-A4B512EE39F6}"
  1636. }
  1637. }
  1638. }
  1639. }
  1640. },
  1641. {
  1642. "Id": {
  1643. "id": 1022169178265646
  1644. },
  1645. "Name": "srcEndpoint=(For Each: Each), destEndpoint=(Add (+): In)",
  1646. "Components": {
  1647. "Component_[5752389285822992061]": {
  1648. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1649. "Id": 5752389285822992061,
  1650. "sourceEndpoint": {
  1651. "nodeId": {
  1652. "id": 1022147703429166
  1653. },
  1654. "slotId": {
  1655. "m_id": "{310E3858-EAA2-46B1-B474-C1A51BADB9A3}"
  1656. }
  1657. },
  1658. "targetEndpoint": {
  1659. "nodeId": {
  1660. "id": 1022126228592686
  1661. },
  1662. "slotId": {
  1663. "m_id": "{4F2DCCFB-9520-45AD-BA28-7D52B9136ECC}"
  1664. }
  1665. }
  1666. }
  1667. }
  1668. },
  1669. {
  1670. "Id": {
  1671. "id": 1022173473232942
  1672. },
  1673. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Set Variable: In)",
  1674. "Components": {
  1675. "Component_[12854927249206825408]": {
  1676. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1677. "Id": 12854927249206825408,
  1678. "sourceEndpoint": {
  1679. "nodeId": {
  1680. "id": 1022126228592686
  1681. },
  1682. "slotId": {
  1683. "m_id": "{48CFBFF0-A726-4C15-A8A1-7A6E057F68FE}"
  1684. }
  1685. },
  1686. "targetEndpoint": {
  1687. "nodeId": {
  1688. "id": 1022134818527278
  1689. },
  1690. "slotId": {
  1691. "m_id": "{5138A9C7-37DE-4779-AE04-3FD4AB277550}"
  1692. }
  1693. }
  1694. }
  1695. }
  1696. },
  1697. {
  1698. "Id": {
  1699. "id": 1022177768200238
  1700. },
  1701. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Set Variable: Number)",
  1702. "Components": {
  1703. "Component_[8894749267501041251]": {
  1704. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1705. "Id": 8894749267501041251,
  1706. "sourceEndpoint": {
  1707. "nodeId": {
  1708. "id": 1022126228592686
  1709. },
  1710. "slotId": {
  1711. "m_id": "{EFA1C462-C5FF-4CF4-9837-28AA355DDB38}"
  1712. }
  1713. },
  1714. "targetEndpoint": {
  1715. "nodeId": {
  1716. "id": 1022134818527278
  1717. },
  1718. "slotId": {
  1719. "m_id": "{C3BD1937-FBCF-47C3-9D69-6838BB79CD5B}"
  1720. }
  1721. }
  1722. }
  1723. }
  1724. },
  1725. {
  1726. "Id": {
  1727. "id": 1022182063167534
  1728. },
  1729. "Name": "srcEndpoint=(For Each: Finished), destEndpoint=(Expect Equal: In)",
  1730. "Components": {
  1731. "Component_[2061371625194290446]": {
  1732. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1733. "Id": 2061371625194290446,
  1734. "sourceEndpoint": {
  1735. "nodeId": {
  1736. "id": 1022147703429166
  1737. },
  1738. "slotId": {
  1739. "m_id": "{8DE5785E-B9A1-4370-B968-03DC3126D721}"
  1740. }
  1741. },
  1742. "targetEndpoint": {
  1743. "nodeId": {
  1744. "id": 1022117638658094
  1745. },
  1746. "slotId": {
  1747. "m_id": "{F3DD1FAE-5AF7-4D6F-90A0-045BFA42C28E}"
  1748. }
  1749. }
  1750. }
  1751. }
  1752. },
  1753. {
  1754. "Id": {
  1755. "id": 1022186358134830
  1756. },
  1757. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  1758. "Components": {
  1759. "Component_[5144806946099655633]": {
  1760. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1761. "Id": 5144806946099655633,
  1762. "sourceEndpoint": {
  1763. "nodeId": {
  1764. "id": 1022156293363758
  1765. },
  1766. "slotId": {
  1767. "m_id": "{DF8DC752-C82C-410D-B0B1-E379752E5395}"
  1768. }
  1769. },
  1770. "targetEndpoint": {
  1771. "nodeId": {
  1772. "id": 1022143408461870
  1773. },
  1774. "slotId": {
  1775. "m_id": "{A31A93A8-A0A3-46BC-A40B-B4D181D89FBF}"
  1776. }
  1777. }
  1778. }
  1779. }
  1780. },
  1781. {
  1782. "Id": {
  1783. "id": 1022190653102126
  1784. },
  1785. "Name": "srcEndpoint=(For Each: Number), destEndpoint=(Add (+): Number)",
  1786. "Components": {
  1787. "Component_[664811502796523412]": {
  1788. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1789. "Id": 664811502796523412,
  1790. "sourceEndpoint": {
  1791. "nodeId": {
  1792. "id": 1022147703429166
  1793. },
  1794. "slotId": {
  1795. "m_id": "{EAFF8636-0211-40A4-A13D-39FA49550004}"
  1796. }
  1797. },
  1798. "targetEndpoint": {
  1799. "nodeId": {
  1800. "id": 1022126228592686
  1801. },
  1802. "slotId": {
  1803. "m_id": "{F3182122-62AF-4C31-8F1C-07A0B3E1E138}"
  1804. }
  1805. }
  1806. }
  1807. }
  1808. },
  1809. {
  1810. "Id": {
  1811. "id": 1022194948069422
  1812. },
  1813. "Name": "srcEndpoint=(For Each: Number), destEndpoint=(Add (+): Number)",
  1814. "Components": {
  1815. "Component_[8269827039361293249]": {
  1816. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1817. "Id": 8269827039361293249,
  1818. "sourceEndpoint": {
  1819. "nodeId": {
  1820. "id": 1022147703429166
  1821. },
  1822. "slotId": {
  1823. "m_id": "{AB4B9A8B-546F-48DD-A036-04ED6DC54DED}"
  1824. }
  1825. },
  1826. "targetEndpoint": {
  1827. "nodeId": {
  1828. "id": 1022151998396462
  1829. },
  1830. "slotId": {
  1831. "m_id": "{F3182122-62AF-4C31-8F1C-07A0B3E1E138}"
  1832. }
  1833. }
  1834. }
  1835. }
  1836. },
  1837. {
  1838. "Id": {
  1839. "id": 1022199243036718
  1840. },
  1841. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Set Variable: In)",
  1842. "Components": {
  1843. "Component_[7184208740548618662]": {
  1844. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1845. "Id": 7184208740548618662,
  1846. "sourceEndpoint": {
  1847. "nodeId": {
  1848. "id": 1022151998396462
  1849. },
  1850. "slotId": {
  1851. "m_id": "{48CFBFF0-A726-4C15-A8A1-7A6E057F68FE}"
  1852. }
  1853. },
  1854. "targetEndpoint": {
  1855. "nodeId": {
  1856. "id": 1022130523559982
  1857. },
  1858. "slotId": {
  1859. "m_id": "{9DE8610B-529C-46CB-A7F4-3351EBC58A11}"
  1860. }
  1861. }
  1862. }
  1863. }
  1864. },
  1865. {
  1866. "Id": {
  1867. "id": 1022203538004014
  1868. },
  1869. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Set Variable: Number)",
  1870. "Components": {
  1871. "Component_[8705466207227196228]": {
  1872. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1873. "Id": 8705466207227196228,
  1874. "sourceEndpoint": {
  1875. "nodeId": {
  1876. "id": 1022151998396462
  1877. },
  1878. "slotId": {
  1879. "m_id": "{EFA1C462-C5FF-4CF4-9837-28AA355DDB38}"
  1880. }
  1881. },
  1882. "targetEndpoint": {
  1883. "nodeId": {
  1884. "id": 1022130523559982
  1885. },
  1886. "slotId": {
  1887. "m_id": "{E318D3D5-133D-4EA2-9E50-2B408C7E09F5}"
  1888. }
  1889. }
  1890. }
  1891. }
  1892. },
  1893. {
  1894. "Id": {
  1895. "id": 1022207832971310
  1896. },
  1897. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Add (+): In)",
  1898. "Components": {
  1899. "Component_[1971728442702552560]": {
  1900. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1901. "Id": 1971728442702552560,
  1902. "sourceEndpoint": {
  1903. "nodeId": {
  1904. "id": 1022134818527278
  1905. },
  1906. "slotId": {
  1907. "m_id": "{A82AD998-F433-4A96-8A66-F2ACAE024FC5}"
  1908. }
  1909. },
  1910. "targetEndpoint": {
  1911. "nodeId": {
  1912. "id": 1022151998396462
  1913. },
  1914. "slotId": {
  1915. "m_id": "{4F2DCCFB-9520-45AD-BA28-7D52B9136ECC}"
  1916. }
  1917. }
  1918. }
  1919. }
  1920. },
  1921. {
  1922. "Id": {
  1923. "id": 1022212127938606
  1924. },
  1925. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Expect Equal: In)",
  1926. "Components": {
  1927. "Component_[38120280938438256]": {
  1928. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1929. "Id": 38120280938438256,
  1930. "sourceEndpoint": {
  1931. "nodeId": {
  1932. "id": 1022130523559982
  1933. },
  1934. "slotId": {
  1935. "m_id": "{7A57EBBB-9D95-4F88-AA5C-83E1CD3390FA}"
  1936. }
  1937. },
  1938. "targetEndpoint": {
  1939. "nodeId": {
  1940. "id": 1022139113494574
  1941. },
  1942. "slotId": {
  1943. "m_id": "{F3DD1FAE-5AF7-4D6F-90A0-045BFA42C28E}"
  1944. }
  1945. }
  1946. }
  1947. }
  1948. },
  1949. {
  1950. "Id": {
  1951. "id": 1022216422905902
  1952. },
  1953. "Name": "srcEndpoint=(For Each: Number), destEndpoint=(Expect Equal: Candidate :-()",
  1954. "Components": {
  1955. "Component_[12164099518001118613]": {
  1956. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1957. "Id": 12164099518001118613,
  1958. "sourceEndpoint": {
  1959. "nodeId": {
  1960. "id": 1022147703429166
  1961. },
  1962. "slotId": {
  1963. "m_id": "{EAFF8636-0211-40A4-A13D-39FA49550004}"
  1964. }
  1965. },
  1966. "targetEndpoint": {
  1967. "nodeId": {
  1968. "id": 1022139113494574
  1969. },
  1970. "slotId": {
  1971. "m_id": "{2B7E8CFD-4CBD-4EE8-871A-95A638D91492}"
  1972. }
  1973. }
  1974. }
  1975. }
  1976. },
  1977. {
  1978. "Id": {
  1979. "id": 1022220717873198
  1980. },
  1981. "Name": "srcEndpoint=(For Each: Number), destEndpoint=(Expect Equal: Reference :-()",
  1982. "Components": {
  1983. "Component_[13280347849684814568]": {
  1984. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1985. "Id": 13280347849684814568,
  1986. "sourceEndpoint": {
  1987. "nodeId": {
  1988. "id": 1022147703429166
  1989. },
  1990. "slotId": {
  1991. "m_id": "{AB4B9A8B-546F-48DD-A036-04ED6DC54DED}"
  1992. }
  1993. },
  1994. "targetEndpoint": {
  1995. "nodeId": {
  1996. "id": 1022139113494574
  1997. },
  1998. "slotId": {
  1999. "m_id": "{7E1A9206-BAE9-4B28-8385-89D39C4B0E11}"
  2000. }
  2001. }
  2002. }
  2003. }
  2004. }
  2005. ]
  2006. },
  2007. "m_assetType": "{00000000-0000-0000-0000-000000000000}",
  2008. "versionData": {
  2009. "_grammarVersion": 1,
  2010. "_runtimeVersion": 1,
  2011. "_fileVersion": 1
  2012. },
  2013. "m_variableCounter": 10,
  2014. "GraphCanvasData": [
  2015. {
  2016. "Key": {
  2017. "id": 1022113343690798
  2018. },
  2019. "Value": {
  2020. "ComponentData": {
  2021. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2022. "$type": "SceneComponentSaveData",
  2023. "ViewParams": {
  2024. "Scale": 0.6446738,
  2025. "AnchorX": 40.330474853515625,
  2026. "AnchorY": -248.18753051757813
  2027. }
  2028. }
  2029. }
  2030. }
  2031. },
  2032. {
  2033. "Key": {
  2034. "id": 1022117638658094
  2035. },
  2036. "Value": {
  2037. "ComponentData": {
  2038. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2039. "$type": "NodeSaveData"
  2040. },
  2041. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2042. "$type": "GeneralNodeTitleComponentSaveData",
  2043. "PaletteOverride": "MethodNodeTitlePalette"
  2044. },
  2045. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2046. "$type": "GeometrySaveData",
  2047. "Position": [
  2048. 620.0,
  2049. 440.0
  2050. ]
  2051. },
  2052. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2053. "$type": "StylingComponentSaveData",
  2054. "SubStyle": ".method"
  2055. },
  2056. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2057. "$type": "PersistentIdComponentSaveData",
  2058. "PersistentId": "{8467E95C-D932-4381-9AD3-9117569593E5}"
  2059. }
  2060. }
  2061. }
  2062. },
  2063. {
  2064. "Key": {
  2065. "id": 1022121933625390
  2066. },
  2067. "Value": {
  2068. "ComponentData": {
  2069. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2070. "$type": "NodeSaveData"
  2071. },
  2072. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2073. "$type": "GeneralNodeTitleComponentSaveData",
  2074. "PaletteOverride": "TimeNodeTitlePalette"
  2075. },
  2076. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2077. "$type": "GeometrySaveData",
  2078. "Position": [
  2079. 100.0,
  2080. 140.0
  2081. ]
  2082. },
  2083. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2084. "$type": "StylingComponentSaveData",
  2085. "SubStyle": ".time"
  2086. },
  2087. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2088. "$type": "PersistentIdComponentSaveData",
  2089. "PersistentId": "{3377B0D8-D260-4625-8822-472EC44A7474}"
  2090. }
  2091. }
  2092. }
  2093. },
  2094. {
  2095. "Key": {
  2096. "id": 1022126228592686
  2097. },
  2098. "Value": {
  2099. "ComponentData": {
  2100. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2101. "$type": "NodeSaveData"
  2102. },
  2103. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2104. "$type": "GeneralNodeTitleComponentSaveData",
  2105. "PaletteOverride": "MathNodeTitlePalette"
  2106. },
  2107. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2108. "$type": "GeometrySaveData",
  2109. "Position": [
  2110. 820.0,
  2111. -220.0
  2112. ]
  2113. },
  2114. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2115. "$type": "StylingComponentSaveData",
  2116. "SubStyle": ".math"
  2117. },
  2118. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2119. "$type": "PersistentIdComponentSaveData",
  2120. "PersistentId": "{98964836-FC5F-48DF-B921-E5800BDF10A7}"
  2121. }
  2122. }
  2123. }
  2124. },
  2125. {
  2126. "Key": {
  2127. "id": 1022130523559982
  2128. },
  2129. "Value": {
  2130. "ComponentData": {
  2131. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2132. "$type": "NodeSaveData"
  2133. },
  2134. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2135. "$type": "GeneralNodeTitleComponentSaveData",
  2136. "PaletteOverride": "SetVariableNodeTitlePalette"
  2137. },
  2138. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2139. "$type": "GeometrySaveData",
  2140. "Position": [
  2141. 1140.0,
  2142. 60.0
  2143. ]
  2144. },
  2145. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2146. "$type": "StylingComponentSaveData",
  2147. "SubStyle": ".setVariable"
  2148. },
  2149. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2150. "$type": "PersistentIdComponentSaveData",
  2151. "PersistentId": "{F6B6FF06-8B6F-4EC1-8EE9-E37438AB3823}"
  2152. }
  2153. }
  2154. }
  2155. },
  2156. {
  2157. "Key": {
  2158. "id": 1022134818527278
  2159. },
  2160. "Value": {
  2161. "ComponentData": {
  2162. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2163. "$type": "NodeSaveData"
  2164. },
  2165. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2166. "$type": "GeneralNodeTitleComponentSaveData",
  2167. "PaletteOverride": "SetVariableNodeTitlePalette"
  2168. },
  2169. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2170. "$type": "GeometrySaveData",
  2171. "Position": [
  2172. 1140.0,
  2173. -220.0
  2174. ]
  2175. },
  2176. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2177. "$type": "StylingComponentSaveData",
  2178. "SubStyle": ".setVariable"
  2179. },
  2180. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2181. "$type": "PersistentIdComponentSaveData",
  2182. "PersistentId": "{39789880-73F8-4185-A3AA-48BFB3B70F18}"
  2183. }
  2184. }
  2185. }
  2186. },
  2187. {
  2188. "Key": {
  2189. "id": 1022139113494574
  2190. },
  2191. "Value": {
  2192. "ComponentData": {
  2193. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2194. "$type": "NodeSaveData"
  2195. },
  2196. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2197. "$type": "GeneralNodeTitleComponentSaveData",
  2198. "PaletteOverride": "MethodNodeTitlePalette"
  2199. },
  2200. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2201. "$type": "GeometrySaveData",
  2202. "Position": [
  2203. 1520.0,
  2204. 60.0
  2205. ]
  2206. },
  2207. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2208. "$type": "StylingComponentSaveData",
  2209. "SubStyle": ".method"
  2210. },
  2211. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2212. "$type": "PersistentIdComponentSaveData",
  2213. "PersistentId": "{0B351136-1E88-4311-8186-00858E511A6E}"
  2214. }
  2215. }
  2216. }
  2217. },
  2218. {
  2219. "Key": {
  2220. "id": 1022143408461870
  2221. },
  2222. "Value": {
  2223. "ComponentData": {
  2224. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2225. "$type": "NodeSaveData"
  2226. },
  2227. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2228. "$type": "GeneralNodeTitleComponentSaveData",
  2229. "PaletteOverride": "MethodNodeTitlePalette"
  2230. },
  2231. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2232. "$type": "GeometrySaveData",
  2233. "Position": [
  2234. 1240.0,
  2235. 440.0
  2236. ]
  2237. },
  2238. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2239. "$type": "StylingComponentSaveData",
  2240. "SubStyle": ".method"
  2241. },
  2242. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2243. "$type": "PersistentIdComponentSaveData",
  2244. "PersistentId": "{18691B88-550B-4D02-9E79-27AB381D955F}"
  2245. }
  2246. }
  2247. }
  2248. },
  2249. {
  2250. "Key": {
  2251. "id": 1022147703429166
  2252. },
  2253. "Value": {
  2254. "ComponentData": {
  2255. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2256. "$type": "NodeSaveData"
  2257. },
  2258. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2259. "$type": "GeneralNodeTitleComponentSaveData",
  2260. "PaletteOverride": "DefaultNodeTitlePalette"
  2261. },
  2262. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2263. "$type": "GeometrySaveData",
  2264. "Position": [
  2265. 300.0,
  2266. 140.0
  2267. ]
  2268. },
  2269. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2270. "$type": "StylingComponentSaveData"
  2271. },
  2272. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2273. "$type": "PersistentIdComponentSaveData",
  2274. "PersistentId": "{88B06D14-38D0-4AD5-BF86-966C446E9D27}"
  2275. }
  2276. }
  2277. }
  2278. },
  2279. {
  2280. "Key": {
  2281. "id": 1022151998396462
  2282. },
  2283. "Value": {
  2284. "ComponentData": {
  2285. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2286. "$type": "NodeSaveData"
  2287. },
  2288. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2289. "$type": "GeneralNodeTitleComponentSaveData",
  2290. "PaletteOverride": "MathNodeTitlePalette"
  2291. },
  2292. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2293. "$type": "GeometrySaveData",
  2294. "Position": [
  2295. 800.0,
  2296. 60.0
  2297. ]
  2298. },
  2299. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2300. "$type": "StylingComponentSaveData",
  2301. "SubStyle": ".math"
  2302. },
  2303. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2304. "$type": "PersistentIdComponentSaveData",
  2305. "PersistentId": "{633BED0B-076F-41C8-B5BE-C62E7704FBF6}"
  2306. }
  2307. }
  2308. }
  2309. },
  2310. {
  2311. "Key": {
  2312. "id": 1022156293363758
  2313. },
  2314. "Value": {
  2315. "ComponentData": {
  2316. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2317. "$type": "NodeSaveData"
  2318. },
  2319. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2320. "$type": "GeneralNodeTitleComponentSaveData",
  2321. "PaletteOverride": "MethodNodeTitlePalette"
  2322. },
  2323. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2324. "$type": "GeometrySaveData",
  2325. "Position": [
  2326. 920.0,
  2327. 440.0
  2328. ]
  2329. },
  2330. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2331. "$type": "StylingComponentSaveData",
  2332. "SubStyle": ".method"
  2333. },
  2334. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2335. "$type": "PersistentIdComponentSaveData",
  2336. "PersistentId": "{9D4CE70E-79F1-4FF7-BCBB-6525431E3FD0}"
  2337. }
  2338. }
  2339. }
  2340. }
  2341. ],
  2342. "StatisticsHelper": {
  2343. "InstanceCounter": [
  2344. {
  2345. "Key": 524494764786010043,
  2346. "Value": 3
  2347. },
  2348. {
  2349. "Key": 1244476766431948410,
  2350. "Value": 2
  2351. },
  2352. {
  2353. "Key": 2224778045347411251,
  2354. "Value": 1
  2355. },
  2356. {
  2357. "Key": 4199610336680704683,
  2358. "Value": 1
  2359. },
  2360. {
  2361. "Key": 6840657073857873079,
  2362. "Value": 1
  2363. },
  2364. {
  2365. "Key": 10181512461692697578,
  2366. "Value": 1
  2367. },
  2368. {
  2369. "Key": 10291640441120349648,
  2370. "Value": 1
  2371. }
  2372. ]
  2373. }
  2374. },
  2375. "Component_[16589629786541142974]": {
  2376. "$type": "EditorGraphVariableManagerComponent",
  2377. "Id": 16589629786541142974,
  2378. "m_variableData": {
  2379. "m_nameVariableMap": [
  2380. {
  2381. "Key": {
  2382. "m_id": "{890DB71A-77CF-43DB-A3D5-55E48ED86E32}"
  2383. },
  2384. "Value": {
  2385. "Datum": {
  2386. "isOverloadedStorage": false,
  2387. "scriptCanvasType": {
  2388. "m_type": 3
  2389. },
  2390. "isNullPointer": false,
  2391. "$type": "double",
  2392. "value": 0.0,
  2393. "label": "Number"
  2394. },
  2395. "VariableId": {
  2396. "m_id": "{890DB71A-77CF-43DB-A3D5-55E48ED86E32}"
  2397. },
  2398. "VariableName": "Iterated Value"
  2399. }
  2400. },
  2401. {
  2402. "Key": {
  2403. "m_id": "{8BB42C88-2660-4BBC-A48B-7F688FC64D0D}"
  2404. },
  2405. "Value": {
  2406. "Datum": {
  2407. "isOverloadedStorage": false,
  2408. "scriptCanvasType": {
  2409. "m_type": 3
  2410. },
  2411. "isNullPointer": false,
  2412. "$type": "double",
  2413. "value": 1.0,
  2414. "label": "One"
  2415. },
  2416. "VariableId": {
  2417. "m_id": "{8BB42C88-2660-4BBC-A48B-7F688FC64D0D}"
  2418. },
  2419. "VariableName": "One"
  2420. }
  2421. },
  2422. {
  2423. "Key": {
  2424. "m_id": "{9324B3F6-91BA-4AA2-90E2-B1829F561DC9}"
  2425. },
  2426. "Value": {
  2427. "Datum": {
  2428. "isOverloadedStorage": false,
  2429. "scriptCanvasType": {
  2430. "m_type": 3
  2431. },
  2432. "isNullPointer": false,
  2433. "$type": "double",
  2434. "value": 3.0,
  2435. "label": "Three"
  2436. },
  2437. "VariableId": {
  2438. "m_id": "{9324B3F6-91BA-4AA2-90E2-B1829F561DC9}"
  2439. },
  2440. "VariableName": "Three"
  2441. }
  2442. },
  2443. {
  2444. "Key": {
  2445. "m_id": "{A1E2C4F7-CD58-47F5-87C4-ACC50A5DFE98}"
  2446. },
  2447. "Value": {
  2448. "Datum": {
  2449. "isOverloadedStorage": false,
  2450. "scriptCanvasType": {
  2451. "m_type": 4,
  2452. "m_azType": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB}"
  2453. },
  2454. "isNullPointer": false,
  2455. "$type": "{9D83FE2E-68F4-5FDC-92AE-52C395FB5BFB} AZStd::unordered_map",
  2456. "value": [
  2457. {
  2458. "Key": 1.0,
  2459. "Value": 1.0
  2460. },
  2461. {
  2462. "Key": 2.0,
  2463. "Value": 2.0
  2464. },
  2465. {
  2466. "Key": 3.0,
  2467. "Value": 3.0
  2468. }
  2469. ],
  2470. "label": "Map<Number, Number>"
  2471. },
  2472. "VariableId": {
  2473. "m_id": "{A1E2C4F7-CD58-47F5-87C4-ACC50A5DFE98}"
  2474. },
  2475. "VariableName": "Numbers By Numbers"
  2476. }
  2477. },
  2478. {
  2479. "Key": {
  2480. "m_id": "{C9853A14-1F7A-449A-AF2E-5C72023C6AB9}"
  2481. },
  2482. "Value": {
  2483. "Datum": {
  2484. "isOverloadedStorage": false,
  2485. "scriptCanvasType": {
  2486. "m_type": 3
  2487. },
  2488. "isNullPointer": false,
  2489. "$type": "double",
  2490. "value": 6.0,
  2491. "label": "Six"
  2492. },
  2493. "VariableId": {
  2494. "m_id": "{C9853A14-1F7A-449A-AF2E-5C72023C6AB9}"
  2495. },
  2496. "VariableName": "Six"
  2497. }
  2498. },
  2499. {
  2500. "Key": {
  2501. "m_id": "{E6A4B6FA-121C-4F4B-95B8-6B70C27D9ABD}"
  2502. },
  2503. "Value": {
  2504. "Datum": {
  2505. "isOverloadedStorage": false,
  2506. "scriptCanvasType": {
  2507. "m_type": 3
  2508. },
  2509. "isNullPointer": false,
  2510. "$type": "double",
  2511. "value": 0.0,
  2512. "label": "Iterated Key"
  2513. },
  2514. "VariableId": {
  2515. "m_id": "{E6A4B6FA-121C-4F4B-95B8-6B70C27D9ABD}"
  2516. },
  2517. "VariableName": "Iterated Key"
  2518. }
  2519. }
  2520. ]
  2521. }
  2522. }
  2523. }
  2524. }
  2525. }
  2526. }