LY_SC_UnitTest_Any.scriptcanvas 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 615079293048878
  9. },
  10. "Name": "LY_SC_UnitTest_Any",
  11. "Components": {
  12. "Component_[7500935121600993720]": {
  13. "$type": "EditorGraph",
  14. "Id": 7500935121600993720,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 615105062852654
  20. },
  21. "Name": "SC-Node(OperatorAdd)",
  22. "Components": {
  23. "Component_[11492205501675668297]": {
  24. "$type": "OperatorAdd",
  25. "Id": 11492205501675668297,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{C944D89F-2726-4BBD-98A1-21C8F0615AA3}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "In",
  37. "Descriptor": {
  38. "ConnectionType": 1,
  39. "SlotType": 1
  40. }
  41. },
  42. {
  43. "id": {
  44. "m_id": "{42C572DA-02A3-4620-AF2F-C9A6E8460B6C}"
  45. },
  46. "contracts": [
  47. {
  48. "$type": "SlotTypeContract"
  49. }
  50. ],
  51. "slotName": "Out",
  52. "Descriptor": {
  53. "ConnectionType": 2,
  54. "SlotType": 1
  55. }
  56. },
  57. {
  58. "id": {
  59. "m_id": "{A8B74FDB-1642-4E0C-9FBE-3CA9CCB0E2F4}"
  60. },
  61. "DynamicTypeOverride": 3,
  62. "contracts": [
  63. {
  64. "$type": "SlotTypeContract"
  65. },
  66. null,
  67. {
  68. "$type": "MathOperatorContract",
  69. "NativeTypes": [
  70. {
  71. "m_type": 3
  72. },
  73. {
  74. "m_type": 6
  75. },
  76. {
  77. "m_type": 8
  78. },
  79. {
  80. "m_type": 9
  81. },
  82. {
  83. "m_type": 10
  84. },
  85. {
  86. "m_type": 11
  87. },
  88. {
  89. "m_type": 12
  90. },
  91. {
  92. "m_type": 14
  93. },
  94. {
  95. "m_type": 15
  96. }
  97. ]
  98. }
  99. ],
  100. "slotName": "Number",
  101. "toolTip": "An operand to use in performing the specified Operation",
  102. "DisplayDataType": {
  103. "m_type": 3
  104. },
  105. "DisplayGroup": {
  106. "Value": 1114760223
  107. },
  108. "Descriptor": {
  109. "ConnectionType": 1,
  110. "SlotType": 2
  111. },
  112. "DynamicGroup": {
  113. "Value": 1114760223
  114. },
  115. "DataType": 1,
  116. "IsReference": true,
  117. "VariableReference": {
  118. "m_id": "{4F026E5B-61E1-4A95-BDE9-CDFBB08D0D8F}"
  119. }
  120. },
  121. {
  122. "id": {
  123. "m_id": "{F05D8BB2-D9B4-4B08-8ED0-9BA0D25DD921}"
  124. },
  125. "DynamicTypeOverride": 3,
  126. "contracts": [
  127. {
  128. "$type": "SlotTypeContract"
  129. },
  130. null,
  131. {
  132. "$type": "MathOperatorContract",
  133. "NativeTypes": [
  134. {
  135. "m_type": 3
  136. },
  137. {
  138. "m_type": 6
  139. },
  140. {
  141. "m_type": 8
  142. },
  143. {
  144. "m_type": 9
  145. },
  146. {
  147. "m_type": 10
  148. },
  149. {
  150. "m_type": 11
  151. },
  152. {
  153. "m_type": 12
  154. },
  155. {
  156. "m_type": 14
  157. },
  158. {
  159. "m_type": 15
  160. }
  161. ]
  162. }
  163. ],
  164. "slotName": "Number",
  165. "toolTip": "An operand to use in performing the specified Operation",
  166. "DisplayDataType": {
  167. "m_type": 3
  168. },
  169. "DisplayGroup": {
  170. "Value": 1114760223
  171. },
  172. "Descriptor": {
  173. "ConnectionType": 1,
  174. "SlotType": 2
  175. },
  176. "DynamicGroup": {
  177. "Value": 1114760223
  178. },
  179. "DataType": 1
  180. },
  181. {
  182. "id": {
  183. "m_id": "{3F415477-864F-4CC8-BA83-572A10FFD089}"
  184. },
  185. "DynamicTypeOverride": 3,
  186. "contracts": [
  187. {
  188. "$type": "SlotTypeContract"
  189. },
  190. {
  191. "$type": "MathOperatorContract",
  192. "NativeTypes": [
  193. {
  194. "m_type": 3
  195. },
  196. {
  197. "m_type": 6
  198. },
  199. {
  200. "m_type": 8
  201. },
  202. {
  203. "m_type": 9
  204. },
  205. {
  206. "m_type": 10
  207. },
  208. {
  209. "m_type": 11
  210. },
  211. {
  212. "m_type": 12
  213. },
  214. {
  215. "m_type": 14
  216. },
  217. {
  218. "m_type": 15
  219. }
  220. ]
  221. }
  222. ],
  223. "slotName": "Result",
  224. "toolTip": "The result of the specified operation",
  225. "DisplayDataType": {
  226. "m_type": 3
  227. },
  228. "DisplayGroup": {
  229. "Value": 1114760223
  230. },
  231. "Descriptor": {
  232. "ConnectionType": 2,
  233. "SlotType": 2
  234. },
  235. "DynamicGroup": {
  236. "Value": 1114760223
  237. },
  238. "DataType": 1,
  239. "IsReference": true,
  240. "VariableReference": {
  241. "m_id": "{4F026E5B-61E1-4A95-BDE9-CDFBB08D0D8F}"
  242. }
  243. }
  244. ],
  245. "Datums": [
  246. {
  247. "isOverloadedStorage": false,
  248. "scriptCanvasType": {
  249. "m_type": 3
  250. },
  251. "isNullPointer": false,
  252. "$type": "double",
  253. "value": 0.0,
  254. "label": "Number"
  255. },
  256. {
  257. "isOverloadedStorage": false,
  258. "scriptCanvasType": {
  259. "m_type": 3
  260. },
  261. "isNullPointer": false,
  262. "$type": "double",
  263. "value": 1.0,
  264. "label": "Number"
  265. }
  266. ]
  267. }
  268. }
  269. },
  270. {
  271. "Id": {
  272. "id": 615113652787246
  273. },
  274. "Name": "SC-Node(TargetedSequencer)",
  275. "Components": {
  276. "Component_[13927075391064408651]": {
  277. "$type": "TargetedSequencer",
  278. "Id": 13927075391064408651,
  279. "Slots": [
  280. {
  281. "id": {
  282. "m_id": "{AEA391D5-DEC8-4380-974E-A7FF115C71E2}"
  283. },
  284. "contracts": [
  285. {
  286. "$type": "SlotTypeContract"
  287. }
  288. ],
  289. "slotName": "In",
  290. "Descriptor": {
  291. "ConnectionType": 1,
  292. "SlotType": 1
  293. }
  294. },
  295. {
  296. "id": {
  297. "m_id": "{0AA01407-8B23-4853-8FCE-28A800B2B9F0}"
  298. },
  299. "contracts": [
  300. {
  301. "$type": "SlotTypeContract"
  302. }
  303. ],
  304. "slotName": "Out 0",
  305. "toolTip": "Output 0",
  306. "DisplayGroup": {
  307. "Value": 1020632324
  308. },
  309. "Descriptor": {
  310. "ConnectionType": 2,
  311. "SlotType": 1
  312. }
  313. },
  314. {
  315. "id": {
  316. "m_id": "{AEE9BFA9-E4C7-4A08-99FC-D8CF51930E7E}"
  317. },
  318. "contracts": [
  319. {
  320. "$type": "SlotTypeContract"
  321. },
  322. null
  323. ],
  324. "slotName": "Index",
  325. "toolTip": "Select which [Out#] to trigger.",
  326. "DisplayGroup": {
  327. "Value": 1020632324
  328. },
  329. "Descriptor": {
  330. "ConnectionType": 1,
  331. "SlotType": 2
  332. },
  333. "DataType": 1
  334. },
  335. {
  336. "id": {
  337. "m_id": "{1352157C-B31D-44EE-A6DD-9BB14CE94D71}"
  338. },
  339. "contracts": [
  340. {
  341. "$type": "SlotTypeContract"
  342. }
  343. ],
  344. "slotName": "Out 1",
  345. "DisplayGroup": {
  346. "Value": 1020632324
  347. },
  348. "Descriptor": {
  349. "ConnectionType": 2,
  350. "SlotType": 1
  351. }
  352. },
  353. {
  354. "id": {
  355. "m_id": "{77DFD11C-45BF-4E95-ADAB-251FE9AEE635}"
  356. },
  357. "contracts": [
  358. {
  359. "$type": "SlotTypeContract"
  360. }
  361. ],
  362. "slotName": "Out 2",
  363. "DisplayGroup": {
  364. "Value": 1020632324
  365. },
  366. "Descriptor": {
  367. "ConnectionType": 2,
  368. "SlotType": 1
  369. }
  370. },
  371. {
  372. "id": {
  373. "m_id": "{F5FEA9F9-9634-4E72-BC79-7FEA90A7FD7A}"
  374. },
  375. "contracts": [
  376. {
  377. "$type": "SlotTypeContract"
  378. }
  379. ],
  380. "slotName": "Out 3",
  381. "DisplayGroup": {
  382. "Value": 1020632324
  383. },
  384. "Descriptor": {
  385. "ConnectionType": 2,
  386. "SlotType": 1
  387. }
  388. },
  389. {
  390. "id": {
  391. "m_id": "{C236E6B2-3E2B-4025-86CC-4E205121E8A1}"
  392. },
  393. "contracts": [
  394. {
  395. "$type": "SlotTypeContract"
  396. }
  397. ],
  398. "slotName": "Out 4",
  399. "DisplayGroup": {
  400. "Value": 1020632324
  401. },
  402. "Descriptor": {
  403. "ConnectionType": 2,
  404. "SlotType": 1
  405. }
  406. }
  407. ],
  408. "Datums": [
  409. {
  410. "isOverloadedStorage": false,
  411. "scriptCanvasType": {
  412. "m_type": 3
  413. },
  414. "isNullPointer": false,
  415. "$type": "double",
  416. "value": 0.0,
  417. "label": "Index"
  418. }
  419. ]
  420. }
  421. }
  422. },
  423. {
  424. "Id": {
  425. "id": 615087882983470
  426. },
  427. "Name": "SC-Node(Less)",
  428. "Components": {
  429. "Component_[14635486037214609241]": {
  430. "$type": "Less",
  431. "Id": 14635486037214609241,
  432. "Slots": [
  433. {
  434. "id": {
  435. "m_id": "{C61BE8B8-03E8-48AA-8FCE-A4398D172AF7}"
  436. },
  437. "contracts": [
  438. {
  439. "$type": "SlotTypeContract"
  440. }
  441. ],
  442. "slotName": "Result",
  443. "DisplayDataType": {
  444. "m_type": 0
  445. },
  446. "Descriptor": {
  447. "ConnectionType": 2,
  448. "SlotType": 2
  449. },
  450. "DataType": 1,
  451. "IsReference": true,
  452. "VariableReference": {
  453. "m_id": "{7B53A0DA-69F3-4468-835E-D7FEAC7DF047}"
  454. }
  455. },
  456. {
  457. "id": {
  458. "m_id": "{FD241FD4-73F8-414C-810D-09E6853F10E6}"
  459. },
  460. "contracts": [
  461. {
  462. "$type": "SlotTypeContract"
  463. }
  464. ],
  465. "slotName": "In",
  466. "toolTip": "Signal to perform the evaluation when desired.",
  467. "Descriptor": {
  468. "ConnectionType": 1,
  469. "SlotType": 1
  470. }
  471. },
  472. {
  473. "id": {
  474. "m_id": "{1B6268E8-DCD4-4C1B-8902-4A5FAFCEB25A}"
  475. },
  476. "contracts": [
  477. {
  478. "$type": "SlotTypeContract"
  479. }
  480. ],
  481. "slotName": "True",
  482. "toolTip": "Signaled if the result of the operation is true.",
  483. "Descriptor": {
  484. "ConnectionType": 2,
  485. "SlotType": 1
  486. }
  487. },
  488. {
  489. "id": {
  490. "m_id": "{417F5F04-F669-48A8-A4B7-5694A647C10B}"
  491. },
  492. "contracts": [
  493. {
  494. "$type": "SlotTypeContract"
  495. }
  496. ],
  497. "slotName": "False",
  498. "toolTip": "Signaled if the result of the operation is false.",
  499. "Descriptor": {
  500. "ConnectionType": 2,
  501. "SlotType": 1
  502. }
  503. },
  504. {
  505. "id": {
  506. "m_id": "{6AB5A5A0-C7B3-40AE-88F0-7D33F6EEA093}"
  507. },
  508. "DynamicTypeOverride": 3,
  509. "contracts": [
  510. {
  511. "$type": "SlotTypeContract"
  512. },
  513. null
  514. ],
  515. "slotName": "Value A",
  516. "DisplayDataType": {
  517. "m_type": 3
  518. },
  519. "Descriptor": {
  520. "ConnectionType": 1,
  521. "SlotType": 2
  522. },
  523. "DynamicGroup": {
  524. "Value": 3545012108
  525. },
  526. "DataType": 1
  527. },
  528. {
  529. "id": {
  530. "m_id": "{6140A56B-869B-47B1-B381-525389B46B4B}"
  531. },
  532. "DynamicTypeOverride": 3,
  533. "contracts": [
  534. {
  535. "$type": "SlotTypeContract"
  536. },
  537. null
  538. ],
  539. "slotName": "Value B",
  540. "DisplayDataType": {
  541. "m_type": 3
  542. },
  543. "Descriptor": {
  544. "ConnectionType": 1,
  545. "SlotType": 2
  546. },
  547. "DynamicGroup": {
  548. "Value": 3545012108
  549. },
  550. "DataType": 1
  551. }
  552. ],
  553. "Datums": [
  554. {
  555. "isOverloadedStorage": false,
  556. "scriptCanvasType": {
  557. "m_type": 3
  558. },
  559. "isNullPointer": false,
  560. "$type": "double",
  561. "value": 0.0,
  562. "label": "Value A"
  563. },
  564. {
  565. "isOverloadedStorage": false,
  566. "scriptCanvasType": {
  567. "m_type": 3
  568. },
  569. "isNullPointer": false,
  570. "$type": "double",
  571. "value": 0.0,
  572. "label": "Value B"
  573. }
  574. ]
  575. }
  576. }
  577. },
  578. {
  579. "Id": {
  580. "id": 615096472918062
  581. },
  582. "Name": "SC-Node(While)",
  583. "Components": {
  584. "Component_[16358100814948275899]": {
  585. "$type": "While",
  586. "Id": 16358100814948275899,
  587. "Slots": [
  588. {
  589. "id": {
  590. "m_id": "{A416DECD-8B15-4B9F-9A15-F2353FA38C08}"
  591. },
  592. "contracts": [
  593. {
  594. "$type": "SlotTypeContract"
  595. }
  596. ],
  597. "slotName": "In",
  598. "Descriptor": {
  599. "ConnectionType": 1,
  600. "SlotType": 1
  601. }
  602. },
  603. {
  604. "id": {
  605. "m_id": "{B3B8663A-31A2-44B7-BF1F-CC2597E152B4}"
  606. },
  607. "contracts": [
  608. {
  609. "$type": "SlotTypeContract"
  610. },
  611. null
  612. ],
  613. "slotName": "Condition",
  614. "toolTip": "While this condition is true, Loop will signal, otherwise, Out will",
  615. "Descriptor": {
  616. "ConnectionType": 1,
  617. "SlotType": 2
  618. },
  619. "DataType": 1,
  620. "IsReference": true,
  621. "VariableReference": {
  622. "m_id": "{7B53A0DA-69F3-4468-835E-D7FEAC7DF047}"
  623. }
  624. },
  625. {
  626. "id": {
  627. "m_id": "{05619227-B7CD-4C69-8B2D-54841FDFD33A}"
  628. },
  629. "contracts": [
  630. {
  631. "$type": "SlotTypeContract"
  632. }
  633. ],
  634. "slotName": "Out",
  635. "toolTip": "Signalled if the condition is false, or if the loop calls the break node",
  636. "Descriptor": {
  637. "ConnectionType": 2,
  638. "SlotType": 1
  639. }
  640. },
  641. {
  642. "id": {
  643. "m_id": "{8008AB84-CC75-4293-BCB7-250BF84CEB0C}"
  644. },
  645. "contracts": [
  646. {
  647. "$type": "SlotTypeContract"
  648. }
  649. ],
  650. "slotName": "Loop",
  651. "toolTip": "Signalled if the condition is true, and every time the last node of 'Loop' finishes",
  652. "Descriptor": {
  653. "ConnectionType": 2,
  654. "SlotType": 1
  655. }
  656. }
  657. ],
  658. "Datums": [
  659. {
  660. "isOverloadedStorage": false,
  661. "scriptCanvasType": {
  662. "m_type": 0
  663. },
  664. "isNullPointer": false,
  665. "$type": "bool",
  666. "value": false,
  667. "label": "Condition"
  668. }
  669. ]
  670. }
  671. }
  672. },
  673. {
  674. "Id": {
  675. "id": 615083588016174
  676. },
  677. "Name": "SC-Node(Start)",
  678. "Components": {
  679. "Component_[2349980854849348802]": {
  680. "$type": "Start",
  681. "Id": 2349980854849348802,
  682. "Slots": [
  683. {
  684. "id": {
  685. "m_id": "{6E87565D-50CE-465D-A170-05C874F8115C}"
  686. },
  687. "contracts": [
  688. {
  689. "$type": "SlotTypeContract"
  690. }
  691. ],
  692. "slotName": "Out",
  693. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  694. "Descriptor": {
  695. "ConnectionType": 2,
  696. "SlotType": 1
  697. }
  698. }
  699. ]
  700. }
  701. }
  702. },
  703. {
  704. "Id": {
  705. "id": 615100767885358
  706. },
  707. "Name": "SC-Node(Mark Complete)",
  708. "Components": {
  709. "Component_[4066066194263213138]": {
  710. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  711. "Id": 4066066194263213138,
  712. "Slots": [
  713. {
  714. "isVisibile": false,
  715. "id": {
  716. "m_id": "{B6414D49-9775-4585-87C5-159F08094D5C}"
  717. },
  718. "contracts": [
  719. {
  720. "$type": "SlotTypeContract"
  721. },
  722. null
  723. ],
  724. "slotName": "EntityID: 0",
  725. "Descriptor": {
  726. "ConnectionType": 1,
  727. "SlotType": 2
  728. },
  729. "DataType": 1
  730. },
  731. {
  732. "id": {
  733. "m_id": "{85A80272-ECA1-4F38-A40B-910E708B47D1}"
  734. },
  735. "contracts": [
  736. {
  737. "$type": "SlotTypeContract"
  738. },
  739. null
  740. ],
  741. "slotName": "Report",
  742. "toolTip": "additional notes for the test report",
  743. "Descriptor": {
  744. "ConnectionType": 1,
  745. "SlotType": 2
  746. },
  747. "DataType": 1
  748. },
  749. {
  750. "id": {
  751. "m_id": "{B2F0C60D-7AA9-4A97-A7CF-7EF3A05772FE}"
  752. },
  753. "contracts": [
  754. {
  755. "$type": "SlotTypeContract"
  756. }
  757. ],
  758. "slotName": "In",
  759. "Descriptor": {
  760. "ConnectionType": 1,
  761. "SlotType": 1
  762. }
  763. },
  764. {
  765. "id": {
  766. "m_id": "{7A2E6047-9D82-4222-9AE3-794FD9293EF5}"
  767. },
  768. "contracts": [
  769. {
  770. "$type": "SlotTypeContract"
  771. }
  772. ],
  773. "slotName": "Out",
  774. "Descriptor": {
  775. "ConnectionType": 2,
  776. "SlotType": 1
  777. }
  778. }
  779. ],
  780. "Datums": [
  781. {
  782. "isOverloadedStorage": false,
  783. "scriptCanvasType": {
  784. "m_type": 1
  785. },
  786. "isNullPointer": false,
  787. "$type": "EntityId",
  788. "value": {
  789. "id": 4276206253
  790. }
  791. },
  792. {
  793. "isOverloadedStorage": false,
  794. "scriptCanvasType": {
  795. "m_type": 5
  796. },
  797. "isNullPointer": false,
  798. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  799. "value": "",
  800. "label": "Report"
  801. }
  802. ],
  803. "methodType": 2,
  804. "methodName": "Mark Complete",
  805. "className": "Unit Testing",
  806. "resultSlotIDs": [
  807. {}
  808. ],
  809. "prettyClassName": "Unit Testing"
  810. }
  811. }
  812. },
  813. {
  814. "Id": {
  815. "id": 615109357819950
  816. },
  817. "Name": "SC Node(GetVariable)",
  818. "Components": {
  819. "Component_[5236299758414105917]": {
  820. "$type": "GetVariableNode",
  821. "Id": 5236299758414105917,
  822. "Slots": [
  823. {
  824. "id": {
  825. "m_id": "{30910C8F-C6A8-4849-81F0-944AE6103995}"
  826. },
  827. "contracts": [
  828. {
  829. "$type": "SlotTypeContract"
  830. }
  831. ],
  832. "slotName": "In",
  833. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  834. "Descriptor": {
  835. "ConnectionType": 1,
  836. "SlotType": 1
  837. }
  838. },
  839. {
  840. "id": {
  841. "m_id": "{46128E6D-61F4-4E36-AA00-A41B84134452}"
  842. },
  843. "contracts": [
  844. {
  845. "$type": "SlotTypeContract"
  846. }
  847. ],
  848. "slotName": "Out",
  849. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  850. "Descriptor": {
  851. "ConnectionType": 2,
  852. "SlotType": 1
  853. }
  854. },
  855. {
  856. "id": {
  857. "m_id": "{4E1E66F7-8BED-40D8-AAA8-81D4F8C098F0}"
  858. },
  859. "contracts": [
  860. {
  861. "$type": "SlotTypeContract"
  862. }
  863. ],
  864. "slotName": "Number",
  865. "DisplayDataType": {
  866. "m_type": 3
  867. },
  868. "Descriptor": {
  869. "ConnectionType": 2,
  870. "SlotType": 2
  871. },
  872. "DataType": 1
  873. }
  874. ],
  875. "m_variableId": {
  876. "m_id": "{4F026E5B-61E1-4A95-BDE9-CDFBB08D0D8F}"
  877. },
  878. "m_variableDataOutSlotId": {
  879. "m_id": "{4E1E66F7-8BED-40D8-AAA8-81D4F8C098F0}"
  880. }
  881. }
  882. }
  883. },
  884. {
  885. "Id": {
  886. "id": 615092177950766
  887. },
  888. "Name": "SC Node(GetVariable)",
  889. "Components": {
  890. "Component_[5935655886630651270]": {
  891. "$type": "GetVariableNode",
  892. "Id": 5935655886630651270,
  893. "Slots": [
  894. {
  895. "id": {
  896. "m_id": "{CB266C23-24BE-4309-93BA-D89067CA3BB5}"
  897. },
  898. "contracts": [
  899. {
  900. "$type": "SlotTypeContract"
  901. }
  902. ],
  903. "slotName": "In",
  904. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  905. "Descriptor": {
  906. "ConnectionType": 1,
  907. "SlotType": 1
  908. }
  909. },
  910. {
  911. "id": {
  912. "m_id": "{6956CF12-9661-46C3-8A9B-66CBABDFD6D2}"
  913. },
  914. "contracts": [
  915. {
  916. "$type": "SlotTypeContract"
  917. }
  918. ],
  919. "slotName": "Out",
  920. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  921. "Descriptor": {
  922. "ConnectionType": 2,
  923. "SlotType": 1
  924. }
  925. },
  926. {
  927. "id": {
  928. "m_id": "{C9470552-C012-47C8-8225-8EA48CF0338D}"
  929. },
  930. "contracts": [
  931. {
  932. "$type": "SlotTypeContract"
  933. }
  934. ],
  935. "slotName": "Number",
  936. "DisplayDataType": {
  937. "m_type": 3
  938. },
  939. "Descriptor": {
  940. "ConnectionType": 2,
  941. "SlotType": 2
  942. },
  943. "DataType": 1
  944. }
  945. ],
  946. "m_variableId": {
  947. "m_id": "{C9DD3CD4-1D45-42D3-8CA6-FB03E49E08C6}"
  948. },
  949. "m_variableDataOutSlotId": {
  950. "m_id": "{C9470552-C012-47C8-8225-8EA48CF0338D}"
  951. }
  952. }
  953. }
  954. },
  955. {
  956. "Id": {
  957. "id": 615117947754542
  958. },
  959. "Name": "SC-Node(Any)",
  960. "Components": {
  961. "Component_[9606500829741498744]": {
  962. "$type": "{6359C34F-3C34-4784-9FFD-18F1C8E3482D} Any",
  963. "Id": 9606500829741498744,
  964. "Slots": [
  965. {
  966. "id": {
  967. "m_id": "{DF5BFCBB-9911-44AD-8019-A4ED878E2987}"
  968. },
  969. "contracts": [
  970. {
  971. "$type": "SlotTypeContract"
  972. }
  973. ],
  974. "slotName": "Input 0",
  975. "Descriptor": {
  976. "ConnectionType": 1,
  977. "SlotType": 1
  978. }
  979. },
  980. {
  981. "id": {
  982. "m_id": "{4F9FC890-37EE-47F1-88C1-4FE9B66E1D9C}"
  983. },
  984. "contracts": [
  985. {
  986. "$type": "SlotTypeContract"
  987. }
  988. ],
  989. "slotName": "Out",
  990. "toolTip": "Signaled when the node receives a signal from the selected index",
  991. "Descriptor": {
  992. "ConnectionType": 2,
  993. "SlotType": 1
  994. }
  995. },
  996. {
  997. "id": {
  998. "m_id": "{D9C22E4C-B956-4B81-B5C2-43C9CF8DC6C2}"
  999. },
  1000. "contracts": [
  1001. {
  1002. "$type": "SlotTypeContract"
  1003. }
  1004. ],
  1005. "slotName": "Input 1",
  1006. "Descriptor": {
  1007. "ConnectionType": 1,
  1008. "SlotType": 1
  1009. }
  1010. },
  1011. {
  1012. "id": {
  1013. "m_id": "{FCBFC6A7-80E2-4627-A04E-8C60385D0F79}"
  1014. },
  1015. "contracts": [
  1016. {
  1017. "$type": "SlotTypeContract"
  1018. }
  1019. ],
  1020. "slotName": "Input 2",
  1021. "Descriptor": {
  1022. "ConnectionType": 1,
  1023. "SlotType": 1
  1024. }
  1025. },
  1026. {
  1027. "id": {
  1028. "m_id": "{67EF5E4F-64F4-4F59-93BC-CA4A13173DC9}"
  1029. },
  1030. "contracts": [
  1031. {
  1032. "$type": "SlotTypeContract"
  1033. }
  1034. ],
  1035. "slotName": "Input 3",
  1036. "Descriptor": {
  1037. "ConnectionType": 1,
  1038. "SlotType": 1
  1039. }
  1040. },
  1041. {
  1042. "id": {
  1043. "m_id": "{4DC7718E-45E4-47C1-88D8-7C698E1D7CC1}"
  1044. },
  1045. "contracts": [
  1046. {
  1047. "$type": "SlotTypeContract"
  1048. }
  1049. ],
  1050. "slotName": "Input 4",
  1051. "Descriptor": {
  1052. "ConnectionType": 1,
  1053. "SlotType": 1
  1054. }
  1055. }
  1056. ]
  1057. }
  1058. }
  1059. }
  1060. ],
  1061. "m_connections": [
  1062. {
  1063. "Id": {
  1064. "id": 615122242721838
  1065. },
  1066. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Get Variable: In)",
  1067. "Components": {
  1068. "Component_[1645396070753044253]": {
  1069. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1070. "Id": 1645396070753044253,
  1071. "sourceEndpoint": {
  1072. "nodeId": {
  1073. "id": 615109357819950
  1074. },
  1075. "slotId": {
  1076. "m_id": "{46128E6D-61F4-4E36-AA00-A41B84134452}"
  1077. }
  1078. },
  1079. "targetEndpoint": {
  1080. "nodeId": {
  1081. "id": 615092177950766
  1082. },
  1083. "slotId": {
  1084. "m_id": "{CB266C23-24BE-4309-93BA-D89067CA3BB5}"
  1085. }
  1086. }
  1087. }
  1088. }
  1089. },
  1090. {
  1091. "Id": {
  1092. "id": 615126537689134
  1093. },
  1094. "Name": "srcEndpoint=(While: Loop), destEndpoint=(Get Variable: In)",
  1095. "Components": {
  1096. "Component_[1896753856845187825]": {
  1097. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1098. "Id": 1896753856845187825,
  1099. "sourceEndpoint": {
  1100. "nodeId": {
  1101. "id": 615096472918062
  1102. },
  1103. "slotId": {
  1104. "m_id": "{8008AB84-CC75-4293-BCB7-250BF84CEB0C}"
  1105. }
  1106. },
  1107. "targetEndpoint": {
  1108. "nodeId": {
  1109. "id": 615109357819950
  1110. },
  1111. "slotId": {
  1112. "m_id": "{30910C8F-C6A8-4849-81F0-944AE6103995}"
  1113. }
  1114. }
  1115. }
  1116. }
  1117. },
  1118. {
  1119. "Id": {
  1120. "id": 615130832656430
  1121. },
  1122. "Name": "srcEndpoint=(While: Out), destEndpoint=(Mark Complete: In)",
  1123. "Components": {
  1124. "Component_[11597966629739584538]": {
  1125. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1126. "Id": 11597966629739584538,
  1127. "sourceEndpoint": {
  1128. "nodeId": {
  1129. "id": 615096472918062
  1130. },
  1131. "slotId": {
  1132. "m_id": "{05619227-B7CD-4C69-8B2D-54841FDFD33A}"
  1133. }
  1134. },
  1135. "targetEndpoint": {
  1136. "nodeId": {
  1137. "id": 615100767885358
  1138. },
  1139. "slotId": {
  1140. "m_id": "{B2F0C60D-7AA9-4A97-A7CF-7EF3A05772FE}"
  1141. }
  1142. }
  1143. }
  1144. }
  1145. },
  1146. {
  1147. "Id": {
  1148. "id": 615135127623726
  1149. },
  1150. "Name": "srcEndpoint=(Switch: Out 0), destEndpoint=(Any: Input 0)",
  1151. "Components": {
  1152. "Component_[10646484688386404232]": {
  1153. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1154. "Id": 10646484688386404232,
  1155. "sourceEndpoint": {
  1156. "nodeId": {
  1157. "id": 615113652787246
  1158. },
  1159. "slotId": {
  1160. "m_id": "{0AA01407-8B23-4853-8FCE-28A800B2B9F0}"
  1161. }
  1162. },
  1163. "targetEndpoint": {
  1164. "nodeId": {
  1165. "id": 615117947754542
  1166. },
  1167. "slotId": {
  1168. "m_id": "{DF5BFCBB-9911-44AD-8019-A4ED878E2987}"
  1169. }
  1170. }
  1171. }
  1172. }
  1173. },
  1174. {
  1175. "Id": {
  1176. "id": 615139422591022
  1177. },
  1178. "Name": "srcEndpoint=(Switch: Out 1), destEndpoint=(Any: Input 1)",
  1179. "Components": {
  1180. "Component_[5120735002131489216]": {
  1181. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1182. "Id": 5120735002131489216,
  1183. "sourceEndpoint": {
  1184. "nodeId": {
  1185. "id": 615113652787246
  1186. },
  1187. "slotId": {
  1188. "m_id": "{1352157C-B31D-44EE-A6DD-9BB14CE94D71}"
  1189. }
  1190. },
  1191. "targetEndpoint": {
  1192. "nodeId": {
  1193. "id": 615117947754542
  1194. },
  1195. "slotId": {
  1196. "m_id": "{D9C22E4C-B956-4B81-B5C2-43C9CF8DC6C2}"
  1197. }
  1198. }
  1199. }
  1200. }
  1201. },
  1202. {
  1203. "Id": {
  1204. "id": 615143717558318
  1205. },
  1206. "Name": "srcEndpoint=(Switch: Out 2), destEndpoint=(Any: Input 2)",
  1207. "Components": {
  1208. "Component_[14821214663592236063]": {
  1209. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1210. "Id": 14821214663592236063,
  1211. "sourceEndpoint": {
  1212. "nodeId": {
  1213. "id": 615113652787246
  1214. },
  1215. "slotId": {
  1216. "m_id": "{77DFD11C-45BF-4E95-ADAB-251FE9AEE635}"
  1217. }
  1218. },
  1219. "targetEndpoint": {
  1220. "nodeId": {
  1221. "id": 615117947754542
  1222. },
  1223. "slotId": {
  1224. "m_id": "{FCBFC6A7-80E2-4627-A04E-8C60385D0F79}"
  1225. }
  1226. }
  1227. }
  1228. }
  1229. },
  1230. {
  1231. "Id": {
  1232. "id": 615148012525614
  1233. },
  1234. "Name": "srcEndpoint=(Switch: Out 3), destEndpoint=(Any: Input 3)",
  1235. "Components": {
  1236. "Component_[4067351116445183600]": {
  1237. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1238. "Id": 4067351116445183600,
  1239. "sourceEndpoint": {
  1240. "nodeId": {
  1241. "id": 615113652787246
  1242. },
  1243. "slotId": {
  1244. "m_id": "{F5FEA9F9-9634-4E72-BC79-7FEA90A7FD7A}"
  1245. }
  1246. },
  1247. "targetEndpoint": {
  1248. "nodeId": {
  1249. "id": 615117947754542
  1250. },
  1251. "slotId": {
  1252. "m_id": "{67EF5E4F-64F4-4F59-93BC-CA4A13173DC9}"
  1253. }
  1254. }
  1255. }
  1256. }
  1257. },
  1258. {
  1259. "Id": {
  1260. "id": 615152307492910
  1261. },
  1262. "Name": "srcEndpoint=(Switch: Out 4), destEndpoint=(Any: Input 4)",
  1263. "Components": {
  1264. "Component_[13604399103092838318]": {
  1265. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1266. "Id": 13604399103092838318,
  1267. "sourceEndpoint": {
  1268. "nodeId": {
  1269. "id": 615113652787246
  1270. },
  1271. "slotId": {
  1272. "m_id": "{C236E6B2-3E2B-4025-86CC-4E205121E8A1}"
  1273. }
  1274. },
  1275. "targetEndpoint": {
  1276. "nodeId": {
  1277. "id": 615117947754542
  1278. },
  1279. "slotId": {
  1280. "m_id": "{4DC7718E-45E4-47C1-88D8-7C698E1D7CC1}"
  1281. }
  1282. }
  1283. }
  1284. }
  1285. },
  1286. {
  1287. "Id": {
  1288. "id": 615156602460206
  1289. },
  1290. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Switch: Index)",
  1291. "Components": {
  1292. "Component_[726477652122109048]": {
  1293. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1294. "Id": 726477652122109048,
  1295. "sourceEndpoint": {
  1296. "nodeId": {
  1297. "id": 615109357819950
  1298. },
  1299. "slotId": {
  1300. "m_id": "{4E1E66F7-8BED-40D8-AAA8-81D4F8C098F0}"
  1301. }
  1302. },
  1303. "targetEndpoint": {
  1304. "nodeId": {
  1305. "id": 615113652787246
  1306. },
  1307. "slotId": {
  1308. "m_id": "{AEE9BFA9-E4C7-4A08-99FC-D8CF51930E7E}"
  1309. }
  1310. }
  1311. }
  1312. }
  1313. },
  1314. {
  1315. "Id": {
  1316. "id": 615160897427502
  1317. },
  1318. "Name": "srcEndpoint=(Any: Out), destEndpoint=(Add (+): In)",
  1319. "Components": {
  1320. "Component_[5235639489339423048]": {
  1321. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1322. "Id": 5235639489339423048,
  1323. "sourceEndpoint": {
  1324. "nodeId": {
  1325. "id": 615117947754542
  1326. },
  1327. "slotId": {
  1328. "m_id": "{4F9FC890-37EE-47F1-88C1-4FE9B66E1D9C}"
  1329. }
  1330. },
  1331. "targetEndpoint": {
  1332. "nodeId": {
  1333. "id": 615105062852654
  1334. },
  1335. "slotId": {
  1336. "m_id": "{C944D89F-2726-4BBD-98A1-21C8F0615AA3}"
  1337. }
  1338. }
  1339. }
  1340. }
  1341. },
  1342. {
  1343. "Id": {
  1344. "id": 615165192394798
  1345. },
  1346. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(While: In)",
  1347. "Components": {
  1348. "Component_[12940210627389183705]": {
  1349. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1350. "Id": 12940210627389183705,
  1351. "sourceEndpoint": {
  1352. "nodeId": {
  1353. "id": 615083588016174
  1354. },
  1355. "slotId": {
  1356. "m_id": "{6E87565D-50CE-465D-A170-05C874F8115C}"
  1357. }
  1358. },
  1359. "targetEndpoint": {
  1360. "nodeId": {
  1361. "id": 615096472918062
  1362. },
  1363. "slotId": {
  1364. "m_id": "{A416DECD-8B15-4B9F-9A15-F2353FA38C08}"
  1365. }
  1366. }
  1367. }
  1368. }
  1369. },
  1370. {
  1371. "Id": {
  1372. "id": 615169487362094
  1373. },
  1374. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Less Than (<): Value A)",
  1375. "Components": {
  1376. "Component_[13914104471249977314]": {
  1377. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1378. "Id": 13914104471249977314,
  1379. "sourceEndpoint": {
  1380. "nodeId": {
  1381. "id": 615109357819950
  1382. },
  1383. "slotId": {
  1384. "m_id": "{4E1E66F7-8BED-40D8-AAA8-81D4F8C098F0}"
  1385. }
  1386. },
  1387. "targetEndpoint": {
  1388. "nodeId": {
  1389. "id": 615087882983470
  1390. },
  1391. "slotId": {
  1392. "m_id": "{6AB5A5A0-C7B3-40AE-88F0-7D33F6EEA093}"
  1393. }
  1394. }
  1395. }
  1396. }
  1397. },
  1398. {
  1399. "Id": {
  1400. "id": 615173782329390
  1401. },
  1402. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Less Than (<): In)",
  1403. "Components": {
  1404. "Component_[7226874655161312239]": {
  1405. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1406. "Id": 7226874655161312239,
  1407. "sourceEndpoint": {
  1408. "nodeId": {
  1409. "id": 615092177950766
  1410. },
  1411. "slotId": {
  1412. "m_id": "{6956CF12-9661-46C3-8A9B-66CBABDFD6D2}"
  1413. }
  1414. },
  1415. "targetEndpoint": {
  1416. "nodeId": {
  1417. "id": 615087882983470
  1418. },
  1419. "slotId": {
  1420. "m_id": "{FD241FD4-73F8-414C-810D-09E6853F10E6}"
  1421. }
  1422. }
  1423. }
  1424. }
  1425. },
  1426. {
  1427. "Id": {
  1428. "id": 615178077296686
  1429. },
  1430. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Less Than (<): Value B)",
  1431. "Components": {
  1432. "Component_[1163627751764246798]": {
  1433. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1434. "Id": 1163627751764246798,
  1435. "sourceEndpoint": {
  1436. "nodeId": {
  1437. "id": 615092177950766
  1438. },
  1439. "slotId": {
  1440. "m_id": "{C9470552-C012-47C8-8225-8EA48CF0338D}"
  1441. }
  1442. },
  1443. "targetEndpoint": {
  1444. "nodeId": {
  1445. "id": 615087882983470
  1446. },
  1447. "slotId": {
  1448. "m_id": "{6140A56B-869B-47B1-B381-525389B46B4B}"
  1449. }
  1450. }
  1451. }
  1452. }
  1453. },
  1454. {
  1455. "Id": {
  1456. "id": 615182372263982
  1457. },
  1458. "Name": "srcEndpoint=(Less Than (<): True), destEndpoint=(Switch: In)",
  1459. "Components": {
  1460. "Component_[14103829669768030810]": {
  1461. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1462. "Id": 14103829669768030810,
  1463. "sourceEndpoint": {
  1464. "nodeId": {
  1465. "id": 615087882983470
  1466. },
  1467. "slotId": {
  1468. "m_id": "{1B6268E8-DCD4-4C1B-8902-4A5FAFCEB25A}"
  1469. }
  1470. },
  1471. "targetEndpoint": {
  1472. "nodeId": {
  1473. "id": 615113652787246
  1474. },
  1475. "slotId": {
  1476. "m_id": "{AEA391D5-DEC8-4380-974E-A7FF115C71E2}"
  1477. }
  1478. }
  1479. }
  1480. }
  1481. },
  1482. {
  1483. "Id": {
  1484. "id": 615186667231278
  1485. },
  1486. "Name": "srcEndpoint=(Less Than (<): False), destEndpoint=(Switch: In)",
  1487. "Components": {
  1488. "Component_[6123664021451749250]": {
  1489. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1490. "Id": 6123664021451749250,
  1491. "sourceEndpoint": {
  1492. "nodeId": {
  1493. "id": 615087882983470
  1494. },
  1495. "slotId": {
  1496. "m_id": "{417F5F04-F669-48A8-A4B7-5694A647C10B}"
  1497. }
  1498. },
  1499. "targetEndpoint": {
  1500. "nodeId": {
  1501. "id": 615113652787246
  1502. },
  1503. "slotId": {
  1504. "m_id": "{AEA391D5-DEC8-4380-974E-A7FF115C71E2}"
  1505. }
  1506. }
  1507. }
  1508. }
  1509. }
  1510. ]
  1511. },
  1512. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  1513. "versionData": {
  1514. "_grammarVersion": 1,
  1515. "_runtimeVersion": 1,
  1516. "_fileVersion": 1
  1517. },
  1518. "m_variableCounter": 3,
  1519. "GraphCanvasData": [
  1520. {
  1521. "Key": {
  1522. "id": 615079293048878
  1523. },
  1524. "Value": {
  1525. "ComponentData": {
  1526. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  1527. "$type": "SceneComponentSaveData",
  1528. "ViewParams": {
  1529. "Scale": 0.6893247,
  1530. "AnchorX": 603.4891967773438,
  1531. "AnchorY": -398.941162109375
  1532. }
  1533. }
  1534. }
  1535. }
  1536. },
  1537. {
  1538. "Key": {
  1539. "id": 615083588016174
  1540. },
  1541. "Value": {
  1542. "ComponentData": {
  1543. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1544. "$type": "NodeSaveData"
  1545. },
  1546. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1547. "$type": "GeneralNodeTitleComponentSaveData",
  1548. "PaletteOverride": "TimeNodeTitlePalette"
  1549. },
  1550. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1551. "$type": "GeometrySaveData",
  1552. "Position": [
  1553. 400.0,
  1554. -340.0
  1555. ]
  1556. },
  1557. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1558. "$type": "StylingComponentSaveData"
  1559. },
  1560. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1561. "$type": "PersistentIdComponentSaveData",
  1562. "PersistentId": "{3A618E28-2574-41BC-B943-5582951FB15D}"
  1563. }
  1564. }
  1565. }
  1566. },
  1567. {
  1568. "Key": {
  1569. "id": 615087882983470
  1570. },
  1571. "Value": {
  1572. "ComponentData": {
  1573. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1574. "$type": "NodeSaveData"
  1575. },
  1576. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1577. "$type": "GeneralNodeTitleComponentSaveData",
  1578. "PaletteOverride": "MathNodeTitlePalette"
  1579. },
  1580. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1581. "$type": "GeometrySaveData",
  1582. "Position": [
  1583. 1000.0,
  1584. -100.0
  1585. ]
  1586. },
  1587. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1588. "$type": "StylingComponentSaveData"
  1589. },
  1590. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1591. "$type": "PersistentIdComponentSaveData",
  1592. "PersistentId": "{160D4916-0BEA-4E8F-896F-EC09BFA6BFAA}"
  1593. }
  1594. }
  1595. }
  1596. },
  1597. {
  1598. "Key": {
  1599. "id": 615092177950766
  1600. },
  1601. "Value": {
  1602. "ComponentData": {
  1603. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1604. "$type": "NodeSaveData"
  1605. },
  1606. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1607. "$type": "GeneralNodeTitleComponentSaveData",
  1608. "PaletteOverride": "GetVariableNodeTitlePalette"
  1609. },
  1610. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1611. "$type": "GeometrySaveData",
  1612. "Position": [
  1613. 820.0,
  1614. -80.0
  1615. ]
  1616. },
  1617. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1618. "$type": "StylingComponentSaveData",
  1619. "SubStyle": ".getVariable"
  1620. },
  1621. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1622. "$type": "PersistentIdComponentSaveData",
  1623. "PersistentId": "{D206D847-F804-4DF4-AF1B-852F479D617C}"
  1624. }
  1625. }
  1626. }
  1627. },
  1628. {
  1629. "Key": {
  1630. "id": 615096472918062
  1631. },
  1632. "Value": {
  1633. "ComponentData": {
  1634. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1635. "$type": "NodeSaveData"
  1636. },
  1637. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1638. "$type": "GeneralNodeTitleComponentSaveData",
  1639. "PaletteOverride": "LogicNodeTitlePalette"
  1640. },
  1641. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1642. "$type": "GeometrySaveData",
  1643. "Position": [
  1644. 660.0,
  1645. -360.0
  1646. ]
  1647. },
  1648. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1649. "$type": "StylingComponentSaveData"
  1650. },
  1651. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1652. "$type": "PersistentIdComponentSaveData",
  1653. "PersistentId": "{99097525-C442-4385-9F98-D20F7D0146FF}"
  1654. }
  1655. }
  1656. }
  1657. },
  1658. {
  1659. "Key": {
  1660. "id": 615100767885358
  1661. },
  1662. "Value": {
  1663. "ComponentData": {
  1664. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1665. "$type": "NodeSaveData"
  1666. },
  1667. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1668. "$type": "GeneralNodeTitleComponentSaveData",
  1669. "PaletteOverride": "MethodNodeTitlePalette"
  1670. },
  1671. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1672. "$type": "GeometrySaveData",
  1673. "Position": [
  1674. 1080.0,
  1675. -340.0
  1676. ]
  1677. },
  1678. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1679. "$type": "StylingComponentSaveData",
  1680. "SubStyle": ".method"
  1681. },
  1682. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1683. "$type": "PersistentIdComponentSaveData",
  1684. "PersistentId": "{67AB7F54-8240-4A16-8240-71EB7949B50F}"
  1685. }
  1686. }
  1687. }
  1688. },
  1689. {
  1690. "Key": {
  1691. "id": 615105062852654
  1692. },
  1693. "Value": {
  1694. "ComponentData": {
  1695. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1696. "$type": "NodeSaveData"
  1697. },
  1698. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1699. "$type": "GeneralNodeTitleComponentSaveData",
  1700. "PaletteOverride": "MathNodeTitlePalette"
  1701. },
  1702. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1703. "$type": "GeometrySaveData",
  1704. "Position": [
  1705. 1680.0,
  1706. 100.0
  1707. ]
  1708. },
  1709. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1710. "$type": "StylingComponentSaveData"
  1711. },
  1712. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1713. "$type": "PersistentIdComponentSaveData",
  1714. "PersistentId": "{678593D9-6D44-47B8-8ED3-D23CC83B6134}"
  1715. }
  1716. }
  1717. }
  1718. },
  1719. {
  1720. "Key": {
  1721. "id": 615109357819950
  1722. },
  1723. "Value": {
  1724. "ComponentData": {
  1725. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1726. "$type": "NodeSaveData"
  1727. },
  1728. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1729. "$type": "GeneralNodeTitleComponentSaveData",
  1730. "PaletteOverride": "GetVariableNodeTitlePalette"
  1731. },
  1732. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1733. "$type": "GeometrySaveData",
  1734. "Position": [
  1735. 640.0,
  1736. -80.0
  1737. ]
  1738. },
  1739. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1740. "$type": "StylingComponentSaveData",
  1741. "SubStyle": ".getVariable"
  1742. },
  1743. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1744. "$type": "PersistentIdComponentSaveData",
  1745. "PersistentId": "{81422954-93DF-455E-BA74-7A978BE4A764}"
  1746. }
  1747. }
  1748. }
  1749. },
  1750. {
  1751. "Key": {
  1752. "id": 615113652787246
  1753. },
  1754. "Value": {
  1755. "ComponentData": {
  1756. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1757. "$type": "NodeSaveData"
  1758. },
  1759. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1760. "$type": "GeneralNodeTitleComponentSaveData",
  1761. "PaletteOverride": "LogicNodeTitlePalette"
  1762. },
  1763. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1764. "$type": "GeometrySaveData",
  1765. "Position": [
  1766. 1020.0,
  1767. 160.0
  1768. ]
  1769. },
  1770. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1771. "$type": "StylingComponentSaveData"
  1772. },
  1773. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1774. "$type": "PersistentIdComponentSaveData",
  1775. "PersistentId": "{E003F0A3-E4B6-4A9C-A9C0-C245E14D217E}"
  1776. }
  1777. }
  1778. }
  1779. },
  1780. {
  1781. "Key": {
  1782. "id": 615117947754542
  1783. },
  1784. "Value": {
  1785. "ComponentData": {
  1786. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1787. "$type": "NodeSaveData"
  1788. },
  1789. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1790. "$type": "GeneralNodeTitleComponentSaveData",
  1791. "PaletteOverride": "LogicNodeTitlePalette"
  1792. },
  1793. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1794. "$type": "GeometrySaveData",
  1795. "Position": [
  1796. 1360.0,
  1797. 120.0
  1798. ]
  1799. },
  1800. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1801. "$type": "StylingComponentSaveData"
  1802. },
  1803. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1804. "$type": "PersistentIdComponentSaveData",
  1805. "PersistentId": "{C2F8BF28-FE98-47A0-B6E3-FF4BFD25FF01}"
  1806. }
  1807. }
  1808. }
  1809. }
  1810. ],
  1811. "StatisticsHelper": {
  1812. "InstanceCounter": [
  1813. {
  1814. "Key": 442620118136991149,
  1815. "Value": 1
  1816. },
  1817. {
  1818. "Key": 1244476766431948410,
  1819. "Value": 1
  1820. },
  1821. {
  1822. "Key": 2902967532902889342,
  1823. "Value": 1
  1824. },
  1825. {
  1826. "Key": 3765469619007655124,
  1827. "Value": 1
  1828. },
  1829. {
  1830. "Key": 4199610336680704683,
  1831. "Value": 1
  1832. },
  1833. {
  1834. "Key": 4624190671680180523,
  1835. "Value": 1
  1836. },
  1837. {
  1838. "Key": 6840657073857873079,
  1839. "Value": 1
  1840. },
  1841. {
  1842. "Key": 9531644572648264476,
  1843. "Value": 1
  1844. },
  1845. {
  1846. "Key": 14502416192304263066,
  1847. "Value": 1
  1848. }
  1849. ]
  1850. }
  1851. },
  1852. "Component_[9584000332763341285]": {
  1853. "$type": "EditorGraphVariableManagerComponent",
  1854. "Id": 9584000332763341285,
  1855. "m_variableData": {
  1856. "m_nameVariableMap": [
  1857. {
  1858. "Key": {
  1859. "m_id": "{4F026E5B-61E1-4A95-BDE9-CDFBB08D0D8F}"
  1860. },
  1861. "Value": {
  1862. "Datum": {
  1863. "isOverloadedStorage": false,
  1864. "scriptCanvasType": {
  1865. "m_type": 3
  1866. },
  1867. "isNullPointer": false,
  1868. "$type": "double",
  1869. "value": 0.0,
  1870. "label": "AnyTest"
  1871. },
  1872. "VariableId": {
  1873. "m_id": "{4F026E5B-61E1-4A95-BDE9-CDFBB08D0D8F}"
  1874. },
  1875. "VariableName": "AnyTest"
  1876. }
  1877. },
  1878. {
  1879. "Key": {
  1880. "m_id": "{7B53A0DA-69F3-4468-835E-D7FEAC7DF047}"
  1881. },
  1882. "Value": {
  1883. "Datum": {
  1884. "isOverloadedStorage": false,
  1885. "scriptCanvasType": {
  1886. "m_type": 0
  1887. },
  1888. "isNullPointer": false,
  1889. "$type": "bool",
  1890. "value": true,
  1891. "label": "continue"
  1892. },
  1893. "VariableId": {
  1894. "m_id": "{7B53A0DA-69F3-4468-835E-D7FEAC7DF047}"
  1895. },
  1896. "VariableName": "continue"
  1897. }
  1898. },
  1899. {
  1900. "Key": {
  1901. "m_id": "{C9DD3CD4-1D45-42D3-8CA6-FB03E49E08C6}"
  1902. },
  1903. "Value": {
  1904. "Datum": {
  1905. "isOverloadedStorage": false,
  1906. "scriptCanvasType": {
  1907. "m_type": 3
  1908. },
  1909. "isNullPointer": false,
  1910. "$type": "double",
  1911. "value": 3.0,
  1912. "label": "Number"
  1913. },
  1914. "VariableId": {
  1915. "m_id": "{C9DD3CD4-1D45-42D3-8CA6-FB03E49E08C6}"
  1916. },
  1917. "VariableName": "Three"
  1918. }
  1919. }
  1920. ]
  1921. }
  1922. }
  1923. }
  1924. }
  1925. }
  1926. }