LY_SC_UnitTest_Once.scriptcanvas 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 404935133190190
  9. },
  10. "Name": "LY_SC_UnitTest_Once",
  11. "Components": {
  12. "Component_[10060318864555189057]": {
  13. "$type": "EditorGraph",
  14. "Id": 10060318864555189057,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 404965197961262
  20. },
  21. "Name": "SC-Node(Once)",
  22. "Components": {
  23. "Component_[10789100691483662357]": {
  24. "$type": "Once",
  25. "Id": 10789100691483662357,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{02A5130F-9B7E-43CF-A7BF-A1D9B9654D23}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "In",
  37. "toolTip": "Input signal",
  38. "Descriptor": {
  39. "ConnectionType": 1,
  40. "SlotType": 1
  41. }
  42. },
  43. {
  44. "id": {
  45. "m_id": "{138281F2-F623-4570-9F57-48AA6B9FCC17}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "Reset",
  53. "toolTip": "Reset signal",
  54. "Descriptor": {
  55. "ConnectionType": 1,
  56. "SlotType": 1
  57. }
  58. },
  59. {
  60. "id": {
  61. "m_id": "{CFCF9D85-7957-48B7-A4D0-D5314FFE2AD2}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. }
  67. ],
  68. "slotName": "Out",
  69. "toolTip": "Output signal",
  70. "Descriptor": {
  71. "ConnectionType": 2,
  72. "SlotType": 1
  73. }
  74. },
  75. {
  76. "id": {
  77. "m_id": "{260EF8B1-67A0-435C-BEFB-0C2236736112}"
  78. },
  79. "contracts": [
  80. {
  81. "$type": "SlotTypeContract"
  82. }
  83. ],
  84. "slotName": "On Reset",
  85. "toolTip": "Triggered when Reset",
  86. "Descriptor": {
  87. "ConnectionType": 2,
  88. "SlotType": 1
  89. }
  90. }
  91. ]
  92. }
  93. }
  94. },
  95. {
  96. "Id": {
  97. "id": 404952313059374
  98. },
  99. "Name": "SC-Node(OperatorAdd)",
  100. "Components": {
  101. "Component_[13380205106307709320]": {
  102. "$type": "OperatorAdd",
  103. "Id": 13380205106307709320,
  104. "Slots": [
  105. {
  106. "id": {
  107. "m_id": "{FEF3FE17-0AF2-4D9E-8544-91C9B53012F7}"
  108. },
  109. "contracts": [
  110. {
  111. "$type": "SlotTypeContract"
  112. }
  113. ],
  114. "slotName": "In",
  115. "Descriptor": {
  116. "ConnectionType": 1,
  117. "SlotType": 1
  118. }
  119. },
  120. {
  121. "id": {
  122. "m_id": "{CE44C60D-C58B-408A-A06E-6491AF53906D}"
  123. },
  124. "contracts": [
  125. {
  126. "$type": "SlotTypeContract"
  127. }
  128. ],
  129. "slotName": "Out",
  130. "Descriptor": {
  131. "ConnectionType": 2,
  132. "SlotType": 1
  133. }
  134. },
  135. {
  136. "id": {
  137. "m_id": "{6654C416-8829-4EA8-974D-BB0E370E6729}"
  138. },
  139. "DynamicTypeOverride": 3,
  140. "contracts": [
  141. {
  142. "$type": "SlotTypeContract"
  143. },
  144. null,
  145. {
  146. "$type": "MathOperatorContract",
  147. "NativeTypes": [
  148. {
  149. "m_type": 3
  150. },
  151. {
  152. "m_type": 6
  153. },
  154. {
  155. "m_type": 8
  156. },
  157. {
  158. "m_type": 9
  159. },
  160. {
  161. "m_type": 10
  162. },
  163. {
  164. "m_type": 11
  165. },
  166. {
  167. "m_type": 12
  168. },
  169. {
  170. "m_type": 14
  171. },
  172. {
  173. "m_type": 15
  174. }
  175. ]
  176. }
  177. ],
  178. "slotName": "Number",
  179. "toolTip": "An operand to use in performing the specified Operation",
  180. "DisplayDataType": {
  181. "m_type": 3
  182. },
  183. "DisplayGroup": {
  184. "Value": 1114760223
  185. },
  186. "Descriptor": {
  187. "ConnectionType": 1,
  188. "SlotType": 2
  189. },
  190. "DynamicGroup": {
  191. "Value": 1114760223
  192. },
  193. "DataType": 1,
  194. "IsReference": true,
  195. "VariableReference": {
  196. "m_id": "{E8DAF07E-92C1-4E00-A2A7-690570CF8D49}"
  197. }
  198. },
  199. {
  200. "id": {
  201. "m_id": "{F7CB3274-50AA-42D5-B789-9A5F02A362A4}"
  202. },
  203. "DynamicTypeOverride": 3,
  204. "contracts": [
  205. {
  206. "$type": "SlotTypeContract"
  207. },
  208. null,
  209. {
  210. "$type": "MathOperatorContract",
  211. "NativeTypes": [
  212. {
  213. "m_type": 3
  214. },
  215. {
  216. "m_type": 6
  217. },
  218. {
  219. "m_type": 8
  220. },
  221. {
  222. "m_type": 9
  223. },
  224. {
  225. "m_type": 10
  226. },
  227. {
  228. "m_type": 11
  229. },
  230. {
  231. "m_type": 12
  232. },
  233. {
  234. "m_type": 14
  235. },
  236. {
  237. "m_type": 15
  238. }
  239. ]
  240. }
  241. ],
  242. "slotName": "Number",
  243. "toolTip": "An operand to use in performing the specified Operation",
  244. "DisplayDataType": {
  245. "m_type": 3
  246. },
  247. "DisplayGroup": {
  248. "Value": 1114760223
  249. },
  250. "Descriptor": {
  251. "ConnectionType": 1,
  252. "SlotType": 2
  253. },
  254. "DynamicGroup": {
  255. "Value": 1114760223
  256. },
  257. "DataType": 1
  258. },
  259. {
  260. "id": {
  261. "m_id": "{718518B5-974F-4129-AEB7-B78D61A6CED3}"
  262. },
  263. "DynamicTypeOverride": 3,
  264. "contracts": [
  265. {
  266. "$type": "SlotTypeContract"
  267. },
  268. {
  269. "$type": "MathOperatorContract",
  270. "NativeTypes": [
  271. {
  272. "m_type": 3
  273. },
  274. {
  275. "m_type": 6
  276. },
  277. {
  278. "m_type": 8
  279. },
  280. {
  281. "m_type": 9
  282. },
  283. {
  284. "m_type": 10
  285. },
  286. {
  287. "m_type": 11
  288. },
  289. {
  290. "m_type": 12
  291. },
  292. {
  293. "m_type": 14
  294. },
  295. {
  296. "m_type": 15
  297. }
  298. ]
  299. }
  300. ],
  301. "slotName": "Result",
  302. "toolTip": "The result of the specified operation",
  303. "DisplayDataType": {
  304. "m_type": 3
  305. },
  306. "DisplayGroup": {
  307. "Value": 1114760223
  308. },
  309. "Descriptor": {
  310. "ConnectionType": 2,
  311. "SlotType": 2
  312. },
  313. "DynamicGroup": {
  314. "Value": 1114760223
  315. },
  316. "DataType": 1,
  317. "IsReference": true,
  318. "VariableReference": {
  319. "m_id": "{E8DAF07E-92C1-4E00-A2A7-690570CF8D49}"
  320. }
  321. }
  322. ],
  323. "Datums": [
  324. {
  325. "isOverloadedStorage": false,
  326. "scriptCanvasType": {
  327. "m_type": 3
  328. },
  329. "isNullPointer": false,
  330. "$type": "double",
  331. "value": 0.0,
  332. "label": "Number"
  333. },
  334. {
  335. "isOverloadedStorage": false,
  336. "scriptCanvasType": {
  337. "m_type": 3
  338. },
  339. "isNullPointer": false,
  340. "$type": "double",
  341. "value": 1.0,
  342. "label": "Number"
  343. }
  344. ]
  345. }
  346. }
  347. },
  348. {
  349. "Id": {
  350. "id": 404982377830446
  351. },
  352. "Name": "SC-Node(OperatorAdd)",
  353. "Components": {
  354. "Component_[13380205106307709320]": {
  355. "$type": "OperatorAdd",
  356. "Id": 13380205106307709320,
  357. "Slots": [
  358. {
  359. "id": {
  360. "m_id": "{FEF3FE17-0AF2-4D9E-8544-91C9B53012F7}"
  361. },
  362. "contracts": [
  363. {
  364. "$type": "SlotTypeContract"
  365. }
  366. ],
  367. "slotName": "In",
  368. "Descriptor": {
  369. "ConnectionType": 1,
  370. "SlotType": 1
  371. }
  372. },
  373. {
  374. "id": {
  375. "m_id": "{CE44C60D-C58B-408A-A06E-6491AF53906D}"
  376. },
  377. "contracts": [
  378. {
  379. "$type": "SlotTypeContract"
  380. }
  381. ],
  382. "slotName": "Out",
  383. "Descriptor": {
  384. "ConnectionType": 2,
  385. "SlotType": 1
  386. }
  387. },
  388. {
  389. "id": {
  390. "m_id": "{6654C416-8829-4EA8-974D-BB0E370E6729}"
  391. },
  392. "DynamicTypeOverride": 3,
  393. "contracts": [
  394. {
  395. "$type": "SlotTypeContract"
  396. },
  397. null,
  398. {
  399. "$type": "MathOperatorContract",
  400. "NativeTypes": [
  401. {
  402. "m_type": 3
  403. },
  404. {
  405. "m_type": 6
  406. },
  407. {
  408. "m_type": 8
  409. },
  410. {
  411. "m_type": 9
  412. },
  413. {
  414. "m_type": 10
  415. },
  416. {
  417. "m_type": 11
  418. },
  419. {
  420. "m_type": 12
  421. },
  422. {
  423. "m_type": 14
  424. },
  425. {
  426. "m_type": 15
  427. }
  428. ]
  429. }
  430. ],
  431. "slotName": "Number",
  432. "toolTip": "An operand to use in performing the specified Operation",
  433. "DisplayDataType": {
  434. "m_type": 3
  435. },
  436. "DisplayGroup": {
  437. "Value": 1114760223
  438. },
  439. "Descriptor": {
  440. "ConnectionType": 1,
  441. "SlotType": 2
  442. },
  443. "DynamicGroup": {
  444. "Value": 1114760223
  445. },
  446. "DataType": 1,
  447. "IsReference": true,
  448. "VariableReference": {
  449. "m_id": "{ECA866F6-8E2B-437A-A216-27AD50B05B14}"
  450. }
  451. },
  452. {
  453. "id": {
  454. "m_id": "{F7CB3274-50AA-42D5-B789-9A5F02A362A4}"
  455. },
  456. "DynamicTypeOverride": 3,
  457. "contracts": [
  458. {
  459. "$type": "SlotTypeContract"
  460. },
  461. null,
  462. {
  463. "$type": "MathOperatorContract",
  464. "NativeTypes": [
  465. {
  466. "m_type": 3
  467. },
  468. {
  469. "m_type": 6
  470. },
  471. {
  472. "m_type": 8
  473. },
  474. {
  475. "m_type": 9
  476. },
  477. {
  478. "m_type": 10
  479. },
  480. {
  481. "m_type": 11
  482. },
  483. {
  484. "m_type": 12
  485. },
  486. {
  487. "m_type": 14
  488. },
  489. {
  490. "m_type": 15
  491. }
  492. ]
  493. }
  494. ],
  495. "slotName": "Number",
  496. "toolTip": "An operand to use in performing the specified Operation",
  497. "DisplayDataType": {
  498. "m_type": 3
  499. },
  500. "DisplayGroup": {
  501. "Value": 1114760223
  502. },
  503. "Descriptor": {
  504. "ConnectionType": 1,
  505. "SlotType": 2
  506. },
  507. "DynamicGroup": {
  508. "Value": 1114760223
  509. },
  510. "DataType": 1
  511. },
  512. {
  513. "id": {
  514. "m_id": "{718518B5-974F-4129-AEB7-B78D61A6CED3}"
  515. },
  516. "DynamicTypeOverride": 3,
  517. "contracts": [
  518. {
  519. "$type": "SlotTypeContract"
  520. },
  521. {
  522. "$type": "MathOperatorContract",
  523. "NativeTypes": [
  524. {
  525. "m_type": 3
  526. },
  527. {
  528. "m_type": 6
  529. },
  530. {
  531. "m_type": 8
  532. },
  533. {
  534. "m_type": 9
  535. },
  536. {
  537. "m_type": 10
  538. },
  539. {
  540. "m_type": 11
  541. },
  542. {
  543. "m_type": 12
  544. },
  545. {
  546. "m_type": 14
  547. },
  548. {
  549. "m_type": 15
  550. }
  551. ]
  552. }
  553. ],
  554. "slotName": "Result",
  555. "toolTip": "The result of the specified operation",
  556. "DisplayDataType": {
  557. "m_type": 3
  558. },
  559. "DisplayGroup": {
  560. "Value": 1114760223
  561. },
  562. "Descriptor": {
  563. "ConnectionType": 2,
  564. "SlotType": 2
  565. },
  566. "DynamicGroup": {
  567. "Value": 1114760223
  568. },
  569. "DataType": 1,
  570. "IsReference": true,
  571. "VariableReference": {
  572. "m_id": "{ECA866F6-8E2B-437A-A216-27AD50B05B14}"
  573. }
  574. }
  575. ],
  576. "Datums": [
  577. {
  578. "isOverloadedStorage": false,
  579. "scriptCanvasType": {
  580. "m_type": 3
  581. },
  582. "isNullPointer": false,
  583. "$type": "double",
  584. "value": 0.0,
  585. "label": "Number"
  586. },
  587. {
  588. "isOverloadedStorage": false,
  589. "scriptCanvasType": {
  590. "m_type": 3
  591. },
  592. "isNullPointer": false,
  593. "$type": "double",
  594. "value": 1.0,
  595. "label": "Number"
  596. }
  597. ]
  598. }
  599. }
  600. },
  601. {
  602. "Id": {
  603. "id": 404978082863150
  604. },
  605. "Name": "SC-Node(Break)",
  606. "Components": {
  607. "Component_[13813478842789850444]": {
  608. "$type": "Break",
  609. "Id": 13813478842789850444,
  610. "Slots": [
  611. {
  612. "id": {
  613. "m_id": "{B346D9AB-EC1F-455D-9428-F2936D8B13BF}"
  614. },
  615. "contracts": [
  616. {
  617. "$type": "SlotTypeContract"
  618. }
  619. ],
  620. "slotName": "In",
  621. "Descriptor": {
  622. "ConnectionType": 1,
  623. "SlotType": 1
  624. }
  625. }
  626. ]
  627. }
  628. }
  629. },
  630. {
  631. "Id": {
  632. "id": 404973787895854
  633. },
  634. "Name": "SC-Node(While)",
  635. "Components": {
  636. "Component_[280237476051167850]": {
  637. "$type": "While",
  638. "Id": 280237476051167850,
  639. "Slots": [
  640. {
  641. "id": {
  642. "m_id": "{BB14B087-8772-4412-9082-2E9216A983B6}"
  643. },
  644. "contracts": [
  645. {
  646. "$type": "SlotTypeContract"
  647. }
  648. ],
  649. "slotName": "In",
  650. "Descriptor": {
  651. "ConnectionType": 1,
  652. "SlotType": 1
  653. }
  654. },
  655. {
  656. "id": {
  657. "m_id": "{AD6843E8-279B-4941-B692-6318CE51CD6A}"
  658. },
  659. "contracts": [
  660. {
  661. "$type": "SlotTypeContract"
  662. },
  663. null
  664. ],
  665. "slotName": "Condition",
  666. "toolTip": "While this condition is true, Loop will signal, otherwise, Out will",
  667. "Descriptor": {
  668. "ConnectionType": 1,
  669. "SlotType": 2
  670. },
  671. "DataType": 1
  672. },
  673. {
  674. "id": {
  675. "m_id": "{B15C0BCC-4699-42FB-B1C7-341093FBAC89}"
  676. },
  677. "contracts": [
  678. {
  679. "$type": "SlotTypeContract"
  680. }
  681. ],
  682. "slotName": "Out",
  683. "toolTip": "Signalled if the condition is false, or if the loop calls the break node",
  684. "Descriptor": {
  685. "ConnectionType": 2,
  686. "SlotType": 1
  687. }
  688. },
  689. {
  690. "id": {
  691. "m_id": "{599D6A22-CE2B-405F-886D-5EE7FDB971DF}"
  692. },
  693. "contracts": [
  694. {
  695. "$type": "SlotTypeContract"
  696. }
  697. ],
  698. "slotName": "Loop",
  699. "toolTip": "Signalled if the condition is true, and every time the last node of 'Loop' finishes",
  700. "Descriptor": {
  701. "ConnectionType": 2,
  702. "SlotType": 1
  703. }
  704. }
  705. ],
  706. "Datums": [
  707. {
  708. "isOverloadedStorage": false,
  709. "scriptCanvasType": {
  710. "m_type": 0
  711. },
  712. "isNullPointer": false,
  713. "$type": "bool",
  714. "value": true,
  715. "label": "Condition"
  716. }
  717. ]
  718. }
  719. }
  720. },
  721. {
  722. "Id": {
  723. "id": 404948018092078
  724. },
  725. "Name": "SC-Node(OrderedSequencer)",
  726. "Components": {
  727. "Component_[3420614052686954117]": {
  728. "$type": "OrderedSequencer",
  729. "Id": 3420614052686954117,
  730. "Slots": [
  731. {
  732. "id": {
  733. "m_id": "{95E33806-F0DA-4770-A918-7516AC391839}"
  734. },
  735. "contracts": [
  736. {
  737. "$type": "SlotTypeContract"
  738. }
  739. ],
  740. "slotName": "In",
  741. "Descriptor": {
  742. "ConnectionType": 1,
  743. "SlotType": 1
  744. }
  745. },
  746. {
  747. "id": {
  748. "m_id": "{98832731-CED4-4483-8386-2CE5DCDB694B}"
  749. },
  750. "contracts": [
  751. {
  752. "$type": "SlotTypeContract"
  753. }
  754. ],
  755. "slotName": "Out 0",
  756. "toolTip": "Output 0",
  757. "DisplayGroup": {
  758. "Value": 1020632324
  759. },
  760. "Descriptor": {
  761. "ConnectionType": 2,
  762. "SlotType": 1
  763. }
  764. },
  765. {
  766. "id": {
  767. "m_id": "{3C5D6237-5CD1-475A-9AF4-BBE816FFD92A}"
  768. },
  769. "contracts": [
  770. {
  771. "$type": "SlotTypeContract"
  772. }
  773. ],
  774. "slotName": "Out 1",
  775. "DisplayGroup": {
  776. "Value": 1020632324
  777. },
  778. "Descriptor": {
  779. "ConnectionType": 2,
  780. "SlotType": 1
  781. }
  782. }
  783. ]
  784. }
  785. }
  786. },
  787. {
  788. "Id": {
  789. "id": 404969492928558
  790. },
  791. "Name": "SC-Node(Start)",
  792. "Components": {
  793. "Component_[3494351615432338528]": {
  794. "$type": "Start",
  795. "Id": 3494351615432338528,
  796. "Slots": [
  797. {
  798. "id": {
  799. "m_id": "{C6786362-9799-4F0A-8B87-7D29E8F5E7DF}"
  800. },
  801. "contracts": [
  802. {
  803. "$type": "SlotTypeContract"
  804. }
  805. ],
  806. "slotName": "Out",
  807. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  808. "Descriptor": {
  809. "ConnectionType": 2,
  810. "SlotType": 1
  811. }
  812. }
  813. ]
  814. }
  815. }
  816. },
  817. {
  818. "Id": {
  819. "id": 404943723124782
  820. },
  821. "Name": "SC-Node(EqualTo)",
  822. "Components": {
  823. "Component_[7685084891802525314]": {
  824. "$type": "EqualTo",
  825. "Id": 7685084891802525314,
  826. "Slots": [
  827. {
  828. "id": {
  829. "m_id": "{877E9AE7-6FE7-4C59-83EC-C04049CAB436}"
  830. },
  831. "contracts": [
  832. {
  833. "$type": "SlotTypeContract"
  834. }
  835. ],
  836. "slotName": "Result",
  837. "DisplayDataType": {
  838. "m_type": 0
  839. },
  840. "Descriptor": {
  841. "ConnectionType": 2,
  842. "SlotType": 2
  843. },
  844. "DataType": 1
  845. },
  846. {
  847. "id": {
  848. "m_id": "{7E628F6D-F59C-4891-9069-37620EA33249}"
  849. },
  850. "contracts": [
  851. {
  852. "$type": "SlotTypeContract"
  853. }
  854. ],
  855. "slotName": "In",
  856. "toolTip": "Signal to perform the evaluation when desired.",
  857. "Descriptor": {
  858. "ConnectionType": 1,
  859. "SlotType": 1
  860. }
  861. },
  862. {
  863. "id": {
  864. "m_id": "{83FF9B4F-A63E-49FB-86EE-D9B6E1B0AB3D}"
  865. },
  866. "contracts": [
  867. {
  868. "$type": "SlotTypeContract"
  869. }
  870. ],
  871. "slotName": "True",
  872. "toolTip": "Signaled if the result of the operation is true.",
  873. "Descriptor": {
  874. "ConnectionType": 2,
  875. "SlotType": 1
  876. }
  877. },
  878. {
  879. "id": {
  880. "m_id": "{0E9CC487-0211-4197-9C38-CA3B9B39146A}"
  881. },
  882. "contracts": [
  883. {
  884. "$type": "SlotTypeContract"
  885. }
  886. ],
  887. "slotName": "False",
  888. "toolTip": "Signaled if the result of the operation is false.",
  889. "Descriptor": {
  890. "ConnectionType": 2,
  891. "SlotType": 1
  892. }
  893. },
  894. {
  895. "id": {
  896. "m_id": "{B66969DF-407D-4BA7-933A-6C005A61CE34}"
  897. },
  898. "DynamicTypeOverride": 3,
  899. "contracts": [
  900. {
  901. "$type": "SlotTypeContract"
  902. },
  903. null
  904. ],
  905. "slotName": "Value A",
  906. "DisplayDataType": {
  907. "m_type": 3
  908. },
  909. "Descriptor": {
  910. "ConnectionType": 1,
  911. "SlotType": 2
  912. },
  913. "DynamicGroup": {
  914. "Value": 3545012108
  915. },
  916. "DataType": 1,
  917. "IsReference": true,
  918. "VariableReference": {
  919. "m_id": "{ECA866F6-8E2B-437A-A216-27AD50B05B14}"
  920. }
  921. },
  922. {
  923. "id": {
  924. "m_id": "{A48CABEA-066D-410A-B34A-C9446C9591DD}"
  925. },
  926. "DynamicTypeOverride": 3,
  927. "contracts": [
  928. {
  929. "$type": "SlotTypeContract"
  930. },
  931. null
  932. ],
  933. "slotName": "Value B",
  934. "DisplayDataType": {
  935. "m_type": 3
  936. },
  937. "Descriptor": {
  938. "ConnectionType": 1,
  939. "SlotType": 2
  940. },
  941. "DynamicGroup": {
  942. "Value": 3545012108
  943. },
  944. "DataType": 1,
  945. "IsReference": true,
  946. "VariableReference": {
  947. "m_id": "{4FE1501C-0AAA-4505-80DA-89CE71A89072}"
  948. }
  949. }
  950. ],
  951. "Datums": [
  952. {
  953. "isOverloadedStorage": false,
  954. "scriptCanvasType": {
  955. "m_type": 3
  956. },
  957. "isNullPointer": false,
  958. "$type": "double",
  959. "value": 0.0,
  960. "label": "Value A"
  961. },
  962. {
  963. "isOverloadedStorage": false,
  964. "scriptCanvasType": {
  965. "m_type": 3
  966. },
  967. "isNullPointer": false,
  968. "$type": "double",
  969. "value": 0.0,
  970. "label": "Value B"
  971. }
  972. ]
  973. }
  974. }
  975. },
  976. {
  977. "Id": {
  978. "id": 404956608026670
  979. },
  980. "Name": "SC-Node(Mark Complete)",
  981. "Components": {
  982. "Component_[8020368585124730589]": {
  983. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  984. "Id": 8020368585124730589,
  985. "Slots": [
  986. {
  987. "isVisibile": false,
  988. "id": {
  989. "m_id": "{6882FC83-2488-4E72-9C35-E7AC514576F3}"
  990. },
  991. "contracts": [
  992. {
  993. "$type": "SlotTypeContract"
  994. },
  995. null
  996. ],
  997. "slotName": "EntityID: 0",
  998. "Descriptor": {
  999. "ConnectionType": 1,
  1000. "SlotType": 2
  1001. },
  1002. "DataType": 1
  1003. },
  1004. {
  1005. "id": {
  1006. "m_id": "{C93B954A-91E0-4F78-9FD9-88E80D2E48A0}"
  1007. },
  1008. "contracts": [
  1009. {
  1010. "$type": "SlotTypeContract"
  1011. },
  1012. null
  1013. ],
  1014. "slotName": "Report",
  1015. "toolTip": "additional notes for the test report",
  1016. "Descriptor": {
  1017. "ConnectionType": 1,
  1018. "SlotType": 2
  1019. },
  1020. "DataType": 1
  1021. },
  1022. {
  1023. "id": {
  1024. "m_id": "{3BACA73A-3EFA-4A95-81FB-C0A017B7126B}"
  1025. },
  1026. "contracts": [
  1027. {
  1028. "$type": "SlotTypeContract"
  1029. }
  1030. ],
  1031. "slotName": "In",
  1032. "Descriptor": {
  1033. "ConnectionType": 1,
  1034. "SlotType": 1
  1035. }
  1036. },
  1037. {
  1038. "id": {
  1039. "m_id": "{6AD34586-32AA-4470-8639-C2138FC61D51}"
  1040. },
  1041. "contracts": [
  1042. {
  1043. "$type": "SlotTypeContract"
  1044. }
  1045. ],
  1046. "slotName": "Out",
  1047. "Descriptor": {
  1048. "ConnectionType": 2,
  1049. "SlotType": 1
  1050. }
  1051. }
  1052. ],
  1053. "Datums": [
  1054. {
  1055. "isOverloadedStorage": false,
  1056. "scriptCanvasType": {
  1057. "m_type": 1
  1058. },
  1059. "isNullPointer": false,
  1060. "$type": "EntityId",
  1061. "value": {
  1062. "id": 4276206253
  1063. }
  1064. },
  1065. {
  1066. "isOverloadedStorage": false,
  1067. "scriptCanvasType": {
  1068. "m_type": 5
  1069. },
  1070. "isNullPointer": false,
  1071. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1072. "value": "",
  1073. "label": "Report"
  1074. }
  1075. ],
  1076. "methodType": 2,
  1077. "methodName": "Mark Complete",
  1078. "className": "Unit Testing",
  1079. "resultSlotIDs": [
  1080. {}
  1081. ],
  1082. "prettyClassName": "Unit Testing"
  1083. }
  1084. }
  1085. },
  1086. {
  1087. "Id": {
  1088. "id": 404960902993966
  1089. },
  1090. "Name": "SC-Node(Expect Equal)",
  1091. "Components": {
  1092. "Component_[849685346326714195]": {
  1093. "$type": "MethodOverloaded",
  1094. "Id": 849685346326714195,
  1095. "Slots": [
  1096. {
  1097. "id": {
  1098. "m_id": "{E133CB75-F398-4FC9-A4D1-E014F5436C5D}"
  1099. },
  1100. "contracts": [
  1101. {
  1102. "$type": "SlotTypeContract"
  1103. },
  1104. null
  1105. ],
  1106. "slotName": "EntityID: 0",
  1107. "DisplayDataType": {
  1108. "m_type": 1
  1109. },
  1110. "Descriptor": {
  1111. "ConnectionType": 1,
  1112. "SlotType": 2
  1113. },
  1114. "DataType": 1
  1115. },
  1116. {
  1117. "IsOverload": true,
  1118. "id": {
  1119. "m_id": "{A9AF6A98-2D3A-4F28-9BDD-8BD35963ACB2}"
  1120. },
  1121. "DynamicTypeOverride": 3,
  1122. "contracts": [
  1123. {
  1124. "$type": "SlotTypeContract"
  1125. },
  1126. null
  1127. ],
  1128. "slotName": "Candidate",
  1129. "toolTip": "left of ==",
  1130. "DisplayDataType": {
  1131. "m_type": 3
  1132. },
  1133. "Descriptor": {
  1134. "ConnectionType": 1,
  1135. "SlotType": 2
  1136. },
  1137. "DataType": 1,
  1138. "IsReference": true,
  1139. "VariableReference": {
  1140. "m_id": "{E8DAF07E-92C1-4E00-A2A7-690570CF8D49}"
  1141. }
  1142. },
  1143. {
  1144. "IsOverload": true,
  1145. "id": {
  1146. "m_id": "{7AF153E0-1A76-48AC-8AF9-9A416E1C8DA4}"
  1147. },
  1148. "DynamicTypeOverride": 3,
  1149. "contracts": [
  1150. {
  1151. "$type": "SlotTypeContract"
  1152. },
  1153. null
  1154. ],
  1155. "slotName": "Reference",
  1156. "toolTip": "right of ==",
  1157. "DisplayDataType": {
  1158. "m_type": 3
  1159. },
  1160. "Descriptor": {
  1161. "ConnectionType": 1,
  1162. "SlotType": 2
  1163. },
  1164. "DataType": 1,
  1165. "IsReference": true,
  1166. "VariableReference": {
  1167. "m_id": "{81EABF08-13EC-4E61-8949-59DF4F3CFB52}"
  1168. }
  1169. },
  1170. {
  1171. "id": {
  1172. "m_id": "{BECD9940-3AA6-45F0-B452-EE6E2E45D954}"
  1173. },
  1174. "contracts": [
  1175. {
  1176. "$type": "SlotTypeContract"
  1177. },
  1178. null
  1179. ],
  1180. "slotName": "Report",
  1181. "toolTip": "additional notes for the test report",
  1182. "DisplayDataType": {
  1183. "m_type": 5
  1184. },
  1185. "Descriptor": {
  1186. "ConnectionType": 1,
  1187. "SlotType": 2
  1188. },
  1189. "DataType": 1
  1190. },
  1191. {
  1192. "id": {
  1193. "m_id": "{55DBCB68-12DF-4412-AC3D-60EFEF89B5A3}"
  1194. },
  1195. "contracts": [
  1196. {
  1197. "$type": "SlotTypeContract"
  1198. }
  1199. ],
  1200. "slotName": "In",
  1201. "Descriptor": {
  1202. "ConnectionType": 1,
  1203. "SlotType": 1
  1204. }
  1205. },
  1206. {
  1207. "id": {
  1208. "m_id": "{BE7B9831-3840-43EC-92F6-E0B9699120A3}"
  1209. },
  1210. "contracts": [
  1211. {
  1212. "$type": "SlotTypeContract"
  1213. }
  1214. ],
  1215. "slotName": "Out",
  1216. "Descriptor": {
  1217. "ConnectionType": 2,
  1218. "SlotType": 1
  1219. }
  1220. }
  1221. ],
  1222. "Datums": [
  1223. {
  1224. "isOverloadedStorage": false,
  1225. "scriptCanvasType": {
  1226. "m_type": 1
  1227. },
  1228. "isNullPointer": false,
  1229. "$type": "EntityId",
  1230. "value": {
  1231. "id": 4276206253
  1232. },
  1233. "label": "EntityID: 0"
  1234. },
  1235. {
  1236. "isOverloadedStorage": false,
  1237. "scriptCanvasType": {
  1238. "m_type": 3
  1239. },
  1240. "isNullPointer": false,
  1241. "$type": "double",
  1242. "value": 0.0,
  1243. "label": "Candidate"
  1244. },
  1245. {
  1246. "isOverloadedStorage": false,
  1247. "scriptCanvasType": {
  1248. "m_type": 3
  1249. },
  1250. "isNullPointer": false,
  1251. "$type": "double",
  1252. "value": 0.0,
  1253. "label": "Reference"
  1254. },
  1255. {
  1256. "isOverloadedStorage": false,
  1257. "scriptCanvasType": {
  1258. "m_type": 5
  1259. },
  1260. "isNullPointer": false,
  1261. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1262. "value": "",
  1263. "label": "Report"
  1264. }
  1265. ],
  1266. "methodType": 2,
  1267. "methodName": "Expect Equal",
  1268. "className": "Unit Testing",
  1269. "resultSlotIDs": [
  1270. {}
  1271. ],
  1272. "prettyClassName": "Unit Testing",
  1273. "orderedInputSlotIds": [
  1274. {
  1275. "m_id": "{E133CB75-F398-4FC9-A4D1-E014F5436C5D}"
  1276. },
  1277. {
  1278. "m_id": "{A9AF6A98-2D3A-4F28-9BDD-8BD35963ACB2}"
  1279. },
  1280. {
  1281. "m_id": "{7AF153E0-1A76-48AC-8AF9-9A416E1C8DA4}"
  1282. },
  1283. {
  1284. "m_id": "{BECD9940-3AA6-45F0-B452-EE6E2E45D954}"
  1285. }
  1286. ]
  1287. }
  1288. }
  1289. },
  1290. {
  1291. "Id": {
  1292. "id": 404939428157486
  1293. },
  1294. "Name": "SC-Node(Expect Equal)",
  1295. "Components": {
  1296. "Component_[849685346326714195]": {
  1297. "$type": "MethodOverloaded",
  1298. "Id": 849685346326714195,
  1299. "Slots": [
  1300. {
  1301. "id": {
  1302. "m_id": "{E133CB75-F398-4FC9-A4D1-E014F5436C5D}"
  1303. },
  1304. "contracts": [
  1305. {
  1306. "$type": "SlotTypeContract"
  1307. },
  1308. null
  1309. ],
  1310. "slotName": "EntityID: 0",
  1311. "DisplayDataType": {
  1312. "m_type": 1
  1313. },
  1314. "Descriptor": {
  1315. "ConnectionType": 1,
  1316. "SlotType": 2
  1317. },
  1318. "DataType": 1
  1319. },
  1320. {
  1321. "IsOverload": true,
  1322. "id": {
  1323. "m_id": "{A9AF6A98-2D3A-4F28-9BDD-8BD35963ACB2}"
  1324. },
  1325. "DynamicTypeOverride": 3,
  1326. "contracts": [
  1327. {
  1328. "$type": "SlotTypeContract"
  1329. },
  1330. null
  1331. ],
  1332. "slotName": "Candidate",
  1333. "toolTip": "left of ==",
  1334. "DisplayDataType": {
  1335. "m_type": 3
  1336. },
  1337. "Descriptor": {
  1338. "ConnectionType": 1,
  1339. "SlotType": 2
  1340. },
  1341. "DataType": 1,
  1342. "IsReference": true,
  1343. "VariableReference": {
  1344. "m_id": "{E8DAF07E-92C1-4E00-A2A7-690570CF8D49}"
  1345. }
  1346. },
  1347. {
  1348. "IsOverload": true,
  1349. "id": {
  1350. "m_id": "{7AF153E0-1A76-48AC-8AF9-9A416E1C8DA4}"
  1351. },
  1352. "DynamicTypeOverride": 3,
  1353. "contracts": [
  1354. {
  1355. "$type": "SlotTypeContract"
  1356. },
  1357. null
  1358. ],
  1359. "slotName": "Reference",
  1360. "toolTip": "right of ==",
  1361. "DisplayDataType": {
  1362. "m_type": 3
  1363. },
  1364. "Descriptor": {
  1365. "ConnectionType": 1,
  1366. "SlotType": 2
  1367. },
  1368. "DataType": 1,
  1369. "IsReference": true,
  1370. "VariableReference": {
  1371. "m_id": "{AB5F3D70-78A9-43A4-AE0B-35B2FAFEFA1B}"
  1372. }
  1373. },
  1374. {
  1375. "id": {
  1376. "m_id": "{BECD9940-3AA6-45F0-B452-EE6E2E45D954}"
  1377. },
  1378. "contracts": [
  1379. {
  1380. "$type": "SlotTypeContract"
  1381. },
  1382. null
  1383. ],
  1384. "slotName": "Report",
  1385. "toolTip": "additional notes for the test report",
  1386. "DisplayDataType": {
  1387. "m_type": 5
  1388. },
  1389. "Descriptor": {
  1390. "ConnectionType": 1,
  1391. "SlotType": 2
  1392. },
  1393. "DataType": 1
  1394. },
  1395. {
  1396. "id": {
  1397. "m_id": "{55DBCB68-12DF-4412-AC3D-60EFEF89B5A3}"
  1398. },
  1399. "contracts": [
  1400. {
  1401. "$type": "SlotTypeContract"
  1402. }
  1403. ],
  1404. "slotName": "In",
  1405. "Descriptor": {
  1406. "ConnectionType": 1,
  1407. "SlotType": 1
  1408. }
  1409. },
  1410. {
  1411. "id": {
  1412. "m_id": "{BE7B9831-3840-43EC-92F6-E0B9699120A3}"
  1413. },
  1414. "contracts": [
  1415. {
  1416. "$type": "SlotTypeContract"
  1417. }
  1418. ],
  1419. "slotName": "Out",
  1420. "Descriptor": {
  1421. "ConnectionType": 2,
  1422. "SlotType": 1
  1423. }
  1424. }
  1425. ],
  1426. "Datums": [
  1427. {
  1428. "isOverloadedStorage": false,
  1429. "scriptCanvasType": {
  1430. "m_type": 1
  1431. },
  1432. "isNullPointer": false,
  1433. "$type": "EntityId",
  1434. "value": {
  1435. "id": 4276206253
  1436. },
  1437. "label": "EntityID: 0"
  1438. },
  1439. {
  1440. "isOverloadedStorage": false,
  1441. "scriptCanvasType": {
  1442. "m_type": 3
  1443. },
  1444. "isNullPointer": false,
  1445. "$type": "double",
  1446. "value": 0.0,
  1447. "label": "Candidate"
  1448. },
  1449. {
  1450. "isOverloadedStorage": false,
  1451. "scriptCanvasType": {
  1452. "m_type": 3
  1453. },
  1454. "isNullPointer": false,
  1455. "$type": "double",
  1456. "value": 0.0,
  1457. "label": "Reference"
  1458. },
  1459. {
  1460. "isOverloadedStorage": false,
  1461. "scriptCanvasType": {
  1462. "m_type": 5
  1463. },
  1464. "isNullPointer": false,
  1465. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1466. "value": "",
  1467. "label": "Report"
  1468. }
  1469. ],
  1470. "methodType": 2,
  1471. "methodName": "Expect Equal",
  1472. "className": "Unit Testing",
  1473. "resultSlotIDs": [
  1474. {}
  1475. ],
  1476. "prettyClassName": "Unit Testing",
  1477. "orderedInputSlotIds": [
  1478. {
  1479. "m_id": "{E133CB75-F398-4FC9-A4D1-E014F5436C5D}"
  1480. },
  1481. {
  1482. "m_id": "{A9AF6A98-2D3A-4F28-9BDD-8BD35963ACB2}"
  1483. },
  1484. {
  1485. "m_id": "{7AF153E0-1A76-48AC-8AF9-9A416E1C8DA4}"
  1486. },
  1487. {
  1488. "m_id": "{BECD9940-3AA6-45F0-B452-EE6E2E45D954}"
  1489. }
  1490. ]
  1491. }
  1492. }
  1493. }
  1494. ],
  1495. "m_connections": [
  1496. {
  1497. "Id": {
  1498. "id": 404986672797742
  1499. },
  1500. "Name": "srcEndpoint=(While: Loop), destEndpoint=(Add (+): In)",
  1501. "Components": {
  1502. "Component_[7103911399713895882]": {
  1503. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1504. "Id": 7103911399713895882,
  1505. "sourceEndpoint": {
  1506. "nodeId": {
  1507. "id": 404973787895854
  1508. },
  1509. "slotId": {
  1510. "m_id": "{599D6A22-CE2B-405F-886D-5EE7FDB971DF}"
  1511. }
  1512. },
  1513. "targetEndpoint": {
  1514. "nodeId": {
  1515. "id": 404982377830446
  1516. },
  1517. "slotId": {
  1518. "m_id": "{FEF3FE17-0AF2-4D9E-8544-91C9B53012F7}"
  1519. }
  1520. }
  1521. }
  1522. }
  1523. },
  1524. {
  1525. "Id": {
  1526. "id": 404990967765038
  1527. },
  1528. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Equal To (==): In)",
  1529. "Components": {
  1530. "Component_[8437716656053207382]": {
  1531. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1532. "Id": 8437716656053207382,
  1533. "sourceEndpoint": {
  1534. "nodeId": {
  1535. "id": 404982377830446
  1536. },
  1537. "slotId": {
  1538. "m_id": "{CE44C60D-C58B-408A-A06E-6491AF53906D}"
  1539. }
  1540. },
  1541. "targetEndpoint": {
  1542. "nodeId": {
  1543. "id": 404943723124782
  1544. },
  1545. "slotId": {
  1546. "m_id": "{7E628F6D-F59C-4891-9069-37620EA33249}"
  1547. }
  1548. }
  1549. }
  1550. }
  1551. },
  1552. {
  1553. "Id": {
  1554. "id": 404995262732334
  1555. },
  1556. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(While: In)",
  1557. "Components": {
  1558. "Component_[18040551441815372837]": {
  1559. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1560. "Id": 18040551441815372837,
  1561. "sourceEndpoint": {
  1562. "nodeId": {
  1563. "id": 404969492928558
  1564. },
  1565. "slotId": {
  1566. "m_id": "{C6786362-9799-4F0A-8B87-7D29E8F5E7DF}"
  1567. }
  1568. },
  1569. "targetEndpoint": {
  1570. "nodeId": {
  1571. "id": 404973787895854
  1572. },
  1573. "slotId": {
  1574. "m_id": "{BB14B087-8772-4412-9082-2E9216A983B6}"
  1575. }
  1576. }
  1577. }
  1578. }
  1579. },
  1580. {
  1581. "Id": {
  1582. "id": 404999557699630
  1583. },
  1584. "Name": "srcEndpoint=(Equal To (==): False), destEndpoint=(Once: In)",
  1585. "Components": {
  1586. "Component_[12571081948811950008]": {
  1587. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1588. "Id": 12571081948811950008,
  1589. "sourceEndpoint": {
  1590. "nodeId": {
  1591. "id": 404943723124782
  1592. },
  1593. "slotId": {
  1594. "m_id": "{0E9CC487-0211-4197-9C38-CA3B9B39146A}"
  1595. }
  1596. },
  1597. "targetEndpoint": {
  1598. "nodeId": {
  1599. "id": 404965197961262
  1600. },
  1601. "slotId": {
  1602. "m_id": "{02A5130F-9B7E-43CF-A7BF-A1D9B9654D23}"
  1603. }
  1604. }
  1605. }
  1606. }
  1607. },
  1608. {
  1609. "Id": {
  1610. "id": 405003852666926
  1611. },
  1612. "Name": "srcEndpoint=(Equal To (==): True), destEndpoint=(Break: In)",
  1613. "Components": {
  1614. "Component_[15337091969692146815]": {
  1615. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1616. "Id": 15337091969692146815,
  1617. "sourceEndpoint": {
  1618. "nodeId": {
  1619. "id": 404943723124782
  1620. },
  1621. "slotId": {
  1622. "m_id": "{83FF9B4F-A63E-49FB-86EE-D9B6E1B0AB3D}"
  1623. }
  1624. },
  1625. "targetEndpoint": {
  1626. "nodeId": {
  1627. "id": 404978082863150
  1628. },
  1629. "slotId": {
  1630. "m_id": "{B346D9AB-EC1F-455D-9428-F2936D8B13BF}"
  1631. }
  1632. }
  1633. }
  1634. }
  1635. },
  1636. {
  1637. "Id": {
  1638. "id": 405008147634222
  1639. },
  1640. "Name": "srcEndpoint=(Once: Out), destEndpoint=(Add (+): In)",
  1641. "Components": {
  1642. "Component_[10374546764076692974]": {
  1643. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1644. "Id": 10374546764076692974,
  1645. "sourceEndpoint": {
  1646. "nodeId": {
  1647. "id": 404965197961262
  1648. },
  1649. "slotId": {
  1650. "m_id": "{CFCF9D85-7957-48B7-A4D0-D5314FFE2AD2}"
  1651. }
  1652. },
  1653. "targetEndpoint": {
  1654. "nodeId": {
  1655. "id": 404952313059374
  1656. },
  1657. "slotId": {
  1658. "m_id": "{FEF3FE17-0AF2-4D9E-8544-91C9B53012F7}"
  1659. }
  1660. }
  1661. }
  1662. }
  1663. },
  1664. {
  1665. "Id": {
  1666. "id": 405012442601518
  1667. },
  1668. "Name": "srcEndpoint=(While: Out), destEndpoint=(Expect Equal: In)",
  1669. "Components": {
  1670. "Component_[141370290206731027]": {
  1671. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1672. "Id": 141370290206731027,
  1673. "sourceEndpoint": {
  1674. "nodeId": {
  1675. "id": 404973787895854
  1676. },
  1677. "slotId": {
  1678. "m_id": "{B15C0BCC-4699-42FB-B1C7-341093FBAC89}"
  1679. }
  1680. },
  1681. "targetEndpoint": {
  1682. "nodeId": {
  1683. "id": 404960902993966
  1684. },
  1685. "slotId": {
  1686. "m_id": "{55DBCB68-12DF-4412-AC3D-60EFEF89B5A3}"
  1687. }
  1688. }
  1689. }
  1690. }
  1691. },
  1692. {
  1693. "Id": {
  1694. "id": 405016737568814
  1695. },
  1696. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Ordered Sequencer: In)",
  1697. "Components": {
  1698. "Component_[12559466105665810983]": {
  1699. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1700. "Id": 12559466105665810983,
  1701. "sourceEndpoint": {
  1702. "nodeId": {
  1703. "id": 404960902993966
  1704. },
  1705. "slotId": {
  1706. "m_id": "{BE7B9831-3840-43EC-92F6-E0B9699120A3}"
  1707. }
  1708. },
  1709. "targetEndpoint": {
  1710. "nodeId": {
  1711. "id": 404948018092078
  1712. },
  1713. "slotId": {
  1714. "m_id": "{95E33806-F0DA-4770-A918-7516AC391839}"
  1715. }
  1716. }
  1717. }
  1718. }
  1719. },
  1720. {
  1721. "Id": {
  1722. "id": 405021032536110
  1723. },
  1724. "Name": "srcEndpoint=(Ordered Sequencer: Out 0), destEndpoint=(Once: Reset)",
  1725. "Components": {
  1726. "Component_[9825418278318276603]": {
  1727. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1728. "Id": 9825418278318276603,
  1729. "sourceEndpoint": {
  1730. "nodeId": {
  1731. "id": 404948018092078
  1732. },
  1733. "slotId": {
  1734. "m_id": "{98832731-CED4-4483-8386-2CE5DCDB694B}"
  1735. }
  1736. },
  1737. "targetEndpoint": {
  1738. "nodeId": {
  1739. "id": 404965197961262
  1740. },
  1741. "slotId": {
  1742. "m_id": "{138281F2-F623-4570-9F57-48AA6B9FCC17}"
  1743. }
  1744. }
  1745. }
  1746. }
  1747. },
  1748. {
  1749. "Id": {
  1750. "id": 405025327503406
  1751. },
  1752. "Name": "srcEndpoint=(Once: On Reset), destEndpoint=(Add (+): In)",
  1753. "Components": {
  1754. "Component_[2307211446701615521]": {
  1755. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1756. "Id": 2307211446701615521,
  1757. "sourceEndpoint": {
  1758. "nodeId": {
  1759. "id": 404965197961262
  1760. },
  1761. "slotId": {
  1762. "m_id": "{260EF8B1-67A0-435C-BEFB-0C2236736112}"
  1763. }
  1764. },
  1765. "targetEndpoint": {
  1766. "nodeId": {
  1767. "id": 404952313059374
  1768. },
  1769. "slotId": {
  1770. "m_id": "{FEF3FE17-0AF2-4D9E-8544-91C9B53012F7}"
  1771. }
  1772. }
  1773. }
  1774. }
  1775. },
  1776. {
  1777. "Id": {
  1778. "id": 405029622470702
  1779. },
  1780. "Name": "srcEndpoint=(Ordered Sequencer: Out 1), destEndpoint=(Expect Equal: In)",
  1781. "Components": {
  1782. "Component_[5517796173582596616]": {
  1783. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1784. "Id": 5517796173582596616,
  1785. "sourceEndpoint": {
  1786. "nodeId": {
  1787. "id": 404948018092078
  1788. },
  1789. "slotId": {
  1790. "m_id": "{3C5D6237-5CD1-475A-9AF4-BBE816FFD92A}"
  1791. }
  1792. },
  1793. "targetEndpoint": {
  1794. "nodeId": {
  1795. "id": 404939428157486
  1796. },
  1797. "slotId": {
  1798. "m_id": "{55DBCB68-12DF-4412-AC3D-60EFEF89B5A3}"
  1799. }
  1800. }
  1801. }
  1802. }
  1803. },
  1804. {
  1805. "Id": {
  1806. "id": 405033917437998
  1807. },
  1808. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  1809. "Components": {
  1810. "Component_[3790896612711237177]": {
  1811. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1812. "Id": 3790896612711237177,
  1813. "sourceEndpoint": {
  1814. "nodeId": {
  1815. "id": 404939428157486
  1816. },
  1817. "slotId": {
  1818. "m_id": "{BE7B9831-3840-43EC-92F6-E0B9699120A3}"
  1819. }
  1820. },
  1821. "targetEndpoint": {
  1822. "nodeId": {
  1823. "id": 404956608026670
  1824. },
  1825. "slotId": {
  1826. "m_id": "{3BACA73A-3EFA-4A95-81FB-C0A017B7126B}"
  1827. }
  1828. }
  1829. }
  1830. }
  1831. }
  1832. ]
  1833. },
  1834. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  1835. "versionData": {
  1836. "_grammarVersion": 1,
  1837. "_runtimeVersion": 1,
  1838. "_fileVersion": 1
  1839. },
  1840. "m_variableCounter": 2,
  1841. "GraphCanvasData": [
  1842. {
  1843. "Key": {
  1844. "id": 404935133190190
  1845. },
  1846. "Value": {
  1847. "ComponentData": {
  1848. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  1849. "$type": "SceneComponentSaveData",
  1850. "ViewParams": {
  1851. "Scale": 0.3603687,
  1852. "AnchorX": -252.51913452148438,
  1853. "AnchorY": -804.7313232421875
  1854. }
  1855. }
  1856. }
  1857. }
  1858. },
  1859. {
  1860. "Key": {
  1861. "id": 404939428157486
  1862. },
  1863. "Value": {
  1864. "ComponentData": {
  1865. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1866. "$type": "NodeSaveData"
  1867. },
  1868. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1869. "$type": "GeneralNodeTitleComponentSaveData",
  1870. "PaletteOverride": "MethodNodeTitlePalette"
  1871. },
  1872. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1873. "$type": "GeometrySaveData",
  1874. "Position": [
  1875. 980.0,
  1876. 40.0
  1877. ]
  1878. },
  1879. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1880. "$type": "StylingComponentSaveData",
  1881. "SubStyle": ".method"
  1882. },
  1883. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1884. "$type": "PersistentIdComponentSaveData",
  1885. "PersistentId": "{B608065D-0473-433E-B6FA-2A7E2EBDDF63}"
  1886. }
  1887. }
  1888. }
  1889. },
  1890. {
  1891. "Key": {
  1892. "id": 404943723124782
  1893. },
  1894. "Value": {
  1895. "ComponentData": {
  1896. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1897. "$type": "NodeSaveData"
  1898. },
  1899. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1900. "$type": "GeneralNodeTitleComponentSaveData",
  1901. "PaletteOverride": "MathNodeTitlePalette"
  1902. },
  1903. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1904. "$type": "GeometrySaveData",
  1905. "Position": [
  1906. 900.0,
  1907. 380.0
  1908. ]
  1909. },
  1910. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1911. "$type": "StylingComponentSaveData"
  1912. },
  1913. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1914. "$type": "PersistentIdComponentSaveData",
  1915. "PersistentId": "{225E34B6-6A7B-4939-9777-12EFBC1DCD1B}"
  1916. }
  1917. }
  1918. }
  1919. },
  1920. {
  1921. "Key": {
  1922. "id": 404948018092078
  1923. },
  1924. "Value": {
  1925. "ComponentData": {
  1926. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1927. "$type": "NodeSaveData"
  1928. },
  1929. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1930. "$type": "GeneralNodeTitleComponentSaveData",
  1931. "PaletteOverride": "LogicNodeTitlePalette"
  1932. },
  1933. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1934. "$type": "GeometrySaveData",
  1935. "Position": [
  1936. 640.0,
  1937. 60.0
  1938. ]
  1939. },
  1940. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1941. "$type": "StylingComponentSaveData"
  1942. },
  1943. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1944. "$type": "PersistentIdComponentSaveData",
  1945. "PersistentId": "{46AE92EA-EF94-4207-B05C-C6485F8C5417}"
  1946. }
  1947. }
  1948. }
  1949. },
  1950. {
  1951. "Key": {
  1952. "id": 404952313059374
  1953. },
  1954. "Value": {
  1955. "ComponentData": {
  1956. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1957. "$type": "NodeSaveData"
  1958. },
  1959. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1960. "$type": "GeneralNodeTitleComponentSaveData",
  1961. "PaletteOverride": "MathNodeTitlePalette"
  1962. },
  1963. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1964. "$type": "GeometrySaveData",
  1965. "Position": [
  1966. 1680.0,
  1967. 340.0
  1968. ]
  1969. },
  1970. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  1971. "$type": "StylingComponentSaveData"
  1972. },
  1973. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  1974. "$type": "PersistentIdComponentSaveData",
  1975. "PersistentId": "{5D426323-C1B2-40DC-9765-AD0CB2CA3637}"
  1976. }
  1977. }
  1978. }
  1979. },
  1980. {
  1981. "Key": {
  1982. "id": 404956608026670
  1983. },
  1984. "Value": {
  1985. "ComponentData": {
  1986. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1987. "$type": "NodeSaveData"
  1988. },
  1989. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  1990. "$type": "GeneralNodeTitleComponentSaveData",
  1991. "PaletteOverride": "MethodNodeTitlePalette"
  1992. },
  1993. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  1994. "$type": "GeometrySaveData",
  1995. "Position": [
  1996. 1340.0,
  1997. 40.0
  1998. ]
  1999. },
  2000. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2001. "$type": "StylingComponentSaveData",
  2002. "SubStyle": ".method"
  2003. },
  2004. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2005. "$type": "PersistentIdComponentSaveData",
  2006. "PersistentId": "{AF15195A-50C8-4518-B593-1540CEDCB623}"
  2007. }
  2008. }
  2009. }
  2010. },
  2011. {
  2012. "Key": {
  2013. "id": 404960902993966
  2014. },
  2015. "Value": {
  2016. "ComponentData": {
  2017. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2018. "$type": "NodeSaveData"
  2019. },
  2020. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2021. "$type": "GeneralNodeTitleComponentSaveData",
  2022. "PaletteOverride": "MethodNodeTitlePalette"
  2023. },
  2024. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2025. "$type": "GeometrySaveData",
  2026. "Position": [
  2027. 340.0,
  2028. 60.0
  2029. ]
  2030. },
  2031. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2032. "$type": "StylingComponentSaveData",
  2033. "SubStyle": ".method"
  2034. },
  2035. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2036. "$type": "PersistentIdComponentSaveData",
  2037. "PersistentId": "{D19189D5-8CF9-4D9F-8775-5453E844DD38}"
  2038. }
  2039. }
  2040. }
  2041. },
  2042. {
  2043. "Key": {
  2044. "id": 404965197961262
  2045. },
  2046. "Value": {
  2047. "ComponentData": {
  2048. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2049. "$type": "NodeSaveData"
  2050. },
  2051. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2052. "$type": "GeneralNodeTitleComponentSaveData",
  2053. "PaletteOverride": "LogicNodeTitlePalette"
  2054. },
  2055. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2056. "$type": "GeometrySaveData",
  2057. "Position": [
  2058. 1360.0,
  2059. 440.0
  2060. ]
  2061. },
  2062. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2063. "$type": "StylingComponentSaveData"
  2064. },
  2065. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2066. "$type": "PersistentIdComponentSaveData",
  2067. "PersistentId": "{BB6B7767-8350-4DFC-9C85-F2F269ECD3B5}"
  2068. }
  2069. }
  2070. }
  2071. },
  2072. {
  2073. "Key": {
  2074. "id": 404969492928558
  2075. },
  2076. "Value": {
  2077. "ComponentData": {
  2078. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2079. "$type": "NodeSaveData"
  2080. },
  2081. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2082. "$type": "GeneralNodeTitleComponentSaveData",
  2083. "PaletteOverride": "TimeNodeTitlePalette"
  2084. },
  2085. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2086. "$type": "GeometrySaveData",
  2087. "Position": [
  2088. -40.0,
  2089. 180.0
  2090. ]
  2091. },
  2092. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2093. "$type": "StylingComponentSaveData"
  2094. },
  2095. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2096. "$type": "PersistentIdComponentSaveData",
  2097. "PersistentId": "{A474C2AD-92A0-40A3-83A9-61A8019CD243}"
  2098. }
  2099. }
  2100. }
  2101. },
  2102. {
  2103. "Key": {
  2104. "id": 404973787895854
  2105. },
  2106. "Value": {
  2107. "ComponentData": {
  2108. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2109. "$type": "NodeSaveData"
  2110. },
  2111. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2112. "$type": "GeneralNodeTitleComponentSaveData",
  2113. "PaletteOverride": "LogicNodeTitlePalette"
  2114. },
  2115. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2116. "$type": "GeometrySaveData",
  2117. "Position": [
  2118. 160.0,
  2119. 180.0
  2120. ]
  2121. },
  2122. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2123. "$type": "StylingComponentSaveData"
  2124. },
  2125. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2126. "$type": "PersistentIdComponentSaveData",
  2127. "PersistentId": "{AB2D134A-2A86-4EB1-98FA-032F09E3E7B7}"
  2128. }
  2129. }
  2130. }
  2131. },
  2132. {
  2133. "Key": {
  2134. "id": 404978082863150
  2135. },
  2136. "Value": {
  2137. "ComponentData": {
  2138. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2139. "$type": "NodeSaveData"
  2140. },
  2141. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2142. "$type": "GeneralNodeTitleComponentSaveData",
  2143. "PaletteOverride": "LogicNodeTitlePalette"
  2144. },
  2145. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2146. "$type": "GeometrySaveData",
  2147. "Position": [
  2148. 1360.0,
  2149. 320.0
  2150. ]
  2151. },
  2152. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2153. "$type": "StylingComponentSaveData"
  2154. },
  2155. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2156. "$type": "PersistentIdComponentSaveData",
  2157. "PersistentId": "{32FA26DA-C3BD-418A-B6C5-22BBDC459BDE}"
  2158. }
  2159. }
  2160. }
  2161. },
  2162. {
  2163. "Key": {
  2164. "id": 404982377830446
  2165. },
  2166. "Value": {
  2167. "ComponentData": {
  2168. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2169. "$type": "NodeSaveData"
  2170. },
  2171. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2172. "$type": "GeneralNodeTitleComponentSaveData",
  2173. "PaletteOverride": "MathNodeTitlePalette"
  2174. },
  2175. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2176. "$type": "GeometrySaveData",
  2177. "Position": [
  2178. 320.0,
  2179. 360.0
  2180. ]
  2181. },
  2182. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2183. "$type": "StylingComponentSaveData"
  2184. },
  2185. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2186. "$type": "PersistentIdComponentSaveData",
  2187. "PersistentId": "{6A5C852E-35CC-402F-A489-57628C94787D}"
  2188. }
  2189. }
  2190. }
  2191. }
  2192. ],
  2193. "StatisticsHelper": {
  2194. "InstanceCounter": [
  2195. {
  2196. "Key": 1244476766431948410,
  2197. "Value": 2
  2198. },
  2199. {
  2200. "Key": 2902967532902889342,
  2201. "Value": 1
  2202. },
  2203. {
  2204. "Key": 3117476785392655547,
  2205. "Value": 1
  2206. },
  2207. {
  2208. "Key": 4053150093067829293,
  2209. "Value": 2
  2210. },
  2211. {
  2212. "Key": 4199610336680704683,
  2213. "Value": 1
  2214. },
  2215. {
  2216. "Key": 4271004856738215795,
  2217. "Value": 1
  2218. },
  2219. {
  2220. "Key": 6840657073857873079,
  2221. "Value": 1
  2222. },
  2223. {
  2224. "Key": 7441743364271812807,
  2225. "Value": 1
  2226. },
  2227. {
  2228. "Key": 12052949699370390604,
  2229. "Value": 1
  2230. }
  2231. ]
  2232. }
  2233. },
  2234. "Component_[2868963514083736645]": {
  2235. "$type": "EditorGraphVariableManagerComponent",
  2236. "Id": 2868963514083736645,
  2237. "m_variableData": {
  2238. "m_nameVariableMap": [
  2239. {
  2240. "Key": {
  2241. "m_id": "{4FE1501C-0AAA-4505-80DA-89CE71A89072}"
  2242. },
  2243. "Value": {
  2244. "Datum": {
  2245. "isOverloadedStorage": false,
  2246. "scriptCanvasType": {
  2247. "m_type": 3
  2248. },
  2249. "isNullPointer": false,
  2250. "$type": "double",
  2251. "value": 10.0,
  2252. "label": "Number"
  2253. },
  2254. "VariableId": {
  2255. "m_id": "{4FE1501C-0AAA-4505-80DA-89CE71A89072}"
  2256. },
  2257. "VariableName": "ten"
  2258. }
  2259. },
  2260. {
  2261. "Key": {
  2262. "m_id": "{81EABF08-13EC-4E61-8949-59DF4F3CFB52}"
  2263. },
  2264. "Value": {
  2265. "Datum": {
  2266. "isOverloadedStorage": false,
  2267. "scriptCanvasType": {
  2268. "m_type": 3
  2269. },
  2270. "isNullPointer": false,
  2271. "$type": "double",
  2272. "value": 1.0,
  2273. "label": "Number"
  2274. },
  2275. "VariableId": {
  2276. "m_id": "{81EABF08-13EC-4E61-8949-59DF4F3CFB52}"
  2277. },
  2278. "VariableName": "One"
  2279. }
  2280. },
  2281. {
  2282. "Key": {
  2283. "m_id": "{AB5F3D70-78A9-43A4-AE0B-35B2FAFEFA1B}"
  2284. },
  2285. "Value": {
  2286. "Datum": {
  2287. "isOverloadedStorage": false,
  2288. "scriptCanvasType": {
  2289. "m_type": 3
  2290. },
  2291. "isNullPointer": false,
  2292. "$type": "double",
  2293. "value": 2.0,
  2294. "label": "two"
  2295. },
  2296. "VariableId": {
  2297. "m_id": "{AB5F3D70-78A9-43A4-AE0B-35B2FAFEFA1B}"
  2298. },
  2299. "VariableName": "two"
  2300. }
  2301. },
  2302. {
  2303. "Key": {
  2304. "m_id": "{E8DAF07E-92C1-4E00-A2A7-690570CF8D49}"
  2305. },
  2306. "Value": {
  2307. "Datum": {
  2308. "isOverloadedStorage": false,
  2309. "scriptCanvasType": {
  2310. "m_type": 3
  2311. },
  2312. "isNullPointer": false,
  2313. "$type": "double",
  2314. "value": 0.0,
  2315. "label": "Just one"
  2316. },
  2317. "VariableId": {
  2318. "m_id": "{E8DAF07E-92C1-4E00-A2A7-690570CF8D49}"
  2319. },
  2320. "VariableName": "Just one"
  2321. }
  2322. },
  2323. {
  2324. "Key": {
  2325. "m_id": "{ECA866F6-8E2B-437A-A216-27AD50B05B14}"
  2326. },
  2327. "Value": {
  2328. "Datum": {
  2329. "isOverloadedStorage": false,
  2330. "scriptCanvasType": {
  2331. "m_type": 3
  2332. },
  2333. "isNullPointer": false,
  2334. "$type": "double",
  2335. "value": 0.0,
  2336. "label": "Number"
  2337. },
  2338. "VariableId": {
  2339. "m_id": "{ECA866F6-8E2B-437A-A216-27AD50B05B14}"
  2340. },
  2341. "VariableName": "counter"
  2342. }
  2343. }
  2344. ]
  2345. },
  2346. "CopiedVariableRemapping": [
  2347. {
  2348. "Key": {
  2349. "m_id": "{2ACB3F3A-6D87-4EBC-AD66-F8702F8F62DD}"
  2350. },
  2351. "Value": {
  2352. "m_id": "{4FE1501C-0AAA-4505-80DA-89CE71A89072}"
  2353. }
  2354. },
  2355. {
  2356. "Key": {
  2357. "m_id": "{69CFFC85-A02B-4538-8704-D5EB9D768BFA}"
  2358. },
  2359. "Value": {
  2360. "m_id": "{ECA866F6-8E2B-437A-A216-27AD50B05B14}"
  2361. }
  2362. },
  2363. {
  2364. "Key": {
  2365. "m_id": "{C3E15BC8-987B-4589-BC4C-C2A8F61A49F5}"
  2366. },
  2367. "Value": {
  2368. "m_id": "{E8DAF07E-92C1-4E00-A2A7-690570CF8D49}"
  2369. }
  2370. }
  2371. ]
  2372. }
  2373. }
  2374. }
  2375. }
  2376. }