LY_SC_UnitTest_ForEachIterationArrayUseValueAsInputAfterBreakNested.scriptcanvas 154 KB

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