LY_SC_UnitTest_PropertiesRecursion.scriptcanvas 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 664497186756654
  9. },
  10. "Name": "scriptcanvas/unittests/ly_sc_unittest_properties.scriptcanvas",
  11. "Components": {
  12. "Component_[1122593144619573805]": {
  13. "$type": "EditorGraph",
  14. "Id": 1122593144619573805,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 664505776691246
  20. },
  21. "Name": "SC Node(SetVariable)",
  22. "Components": {
  23. "Component_[10000549293454605999]": {
  24. "$type": "SetVariableNode",
  25. "Id": 10000549293454605999,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{E10BE8B8-E290-4DA6-B01F-048BAB2BCF03}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "In",
  37. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  38. "Descriptor": {
  39. "ConnectionType": 1,
  40. "SlotType": 1
  41. }
  42. },
  43. {
  44. "id": {
  45. "m_id": "{787291F0-04D6-489A-801E-D3B635FE5D9A}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "Out",
  53. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  54. "Descriptor": {
  55. "ConnectionType": 2,
  56. "SlotType": 1
  57. }
  58. },
  59. {
  60. "id": {
  61. "m_id": "{7B8FA901-3B59-4B3A-8DB2-1F39197E8FD7}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. },
  67. null
  68. ],
  69. "slotName": "Vector3",
  70. "Descriptor": {
  71. "ConnectionType": 1,
  72. "SlotType": 2
  73. }
  74. },
  75. {
  76. "id": {
  77. "m_id": "{0F0CEDD9-25E9-4A27-8E66-E0435233F4E2}"
  78. },
  79. "contracts": [
  80. {
  81. "$type": "SlotTypeContract"
  82. }
  83. ],
  84. "slotName": "Vector3",
  85. "DisplayDataType": {
  86. "m_type": 8
  87. },
  88. "Descriptor": {
  89. "ConnectionType": 2,
  90. "SlotType": 2
  91. }
  92. },
  93. {
  94. "id": {
  95. "m_id": "{E2B8FC65-2B91-4D2D-8736-A0B13A66F7C8}"
  96. },
  97. "contracts": [
  98. {
  99. "$type": "SlotTypeContract"
  100. }
  101. ],
  102. "slotName": "x: Number",
  103. "DisplayDataType": {
  104. "m_type": 3
  105. },
  106. "Descriptor": {
  107. "ConnectionType": 2,
  108. "SlotType": 2
  109. }
  110. },
  111. {
  112. "id": {
  113. "m_id": "{B76E8819-5C78-41FA-846C-83DA0E9DCB51}"
  114. },
  115. "contracts": [
  116. {
  117. "$type": "SlotTypeContract"
  118. }
  119. ],
  120. "slotName": "y: Number",
  121. "DisplayDataType": {
  122. "m_type": 3
  123. },
  124. "Descriptor": {
  125. "ConnectionType": 2,
  126. "SlotType": 2
  127. }
  128. },
  129. {
  130. "id": {
  131. "m_id": "{FC8C8551-60A4-44F9-8C37-C5B00A09CF01}"
  132. },
  133. "contracts": [
  134. {
  135. "$type": "SlotTypeContract"
  136. }
  137. ],
  138. "slotName": "z: Number",
  139. "DisplayDataType": {
  140. "m_type": 3
  141. },
  142. "Descriptor": {
  143. "ConnectionType": 2,
  144. "SlotType": 2
  145. }
  146. }
  147. ],
  148. "Datums": [
  149. {
  150. "isOverloadedStorage": false,
  151. "scriptCanvasType": {
  152. "m_type": 8
  153. },
  154. "isNullPointer": false,
  155. "$type": "Vector3",
  156. "value": [
  157. 9.0,
  158. 7.0,
  159. 8.0
  160. ],
  161. "label": "Vector3"
  162. }
  163. ],
  164. "m_variableId": {
  165. "m_id": "{EBF9C56B-A6B5-4987-A9FB-56B962E9B3C8}"
  166. },
  167. "m_variableDataInSlotId": {
  168. "m_id": "{7B8FA901-3B59-4B3A-8DB2-1F39197E8FD7}"
  169. },
  170. "m_variableDataOutSlotId": {
  171. "m_id": "{0F0CEDD9-25E9-4A27-8E66-E0435233F4E2}"
  172. },
  173. "m_propertyAccounts": [
  174. {
  175. "m_propertySlotId": {
  176. "m_id": "{E2B8FC65-2B91-4D2D-8736-A0B13A66F7C8}"
  177. },
  178. "m_propertyType": {
  179. "m_type": 3
  180. },
  181. "m_propertyName": "x"
  182. },
  183. {
  184. "m_propertySlotId": {
  185. "m_id": "{B76E8819-5C78-41FA-846C-83DA0E9DCB51}"
  186. },
  187. "m_propertyType": {
  188. "m_type": 3
  189. },
  190. "m_propertyName": "y"
  191. },
  192. {
  193. "m_propertySlotId": {
  194. "m_id": "{FC8C8551-60A4-44F9-8C37-C5B00A09CF01}"
  195. },
  196. "m_propertyType": {
  197. "m_type": 3
  198. },
  199. "m_propertyName": "z"
  200. }
  201. ]
  202. }
  203. }
  204. },
  205. {
  206. "Id": {
  207. "id": 664510071658542
  208. },
  209. "Name": "SC Node(SetVariable)",
  210. "Components": {
  211. "Component_[10000549293454605999]": {
  212. "$type": "SetVariableNode",
  213. "Id": 10000549293454605999,
  214. "Slots": [
  215. {
  216. "id": {
  217. "m_id": "{E10BE8B8-E290-4DA6-B01F-048BAB2BCF03}"
  218. },
  219. "contracts": [
  220. {
  221. "$type": "SlotTypeContract"
  222. }
  223. ],
  224. "slotName": "In",
  225. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  226. "Descriptor": {
  227. "ConnectionType": 1,
  228. "SlotType": 1
  229. }
  230. },
  231. {
  232. "id": {
  233. "m_id": "{787291F0-04D6-489A-801E-D3B635FE5D9A}"
  234. },
  235. "contracts": [
  236. {
  237. "$type": "SlotTypeContract"
  238. }
  239. ],
  240. "slotName": "Out",
  241. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  242. "Descriptor": {
  243. "ConnectionType": 2,
  244. "SlotType": 1
  245. }
  246. },
  247. {
  248. "id": {
  249. "m_id": "{7B8FA901-3B59-4B3A-8DB2-1F39197E8FD7}"
  250. },
  251. "contracts": [
  252. {
  253. "$type": "SlotTypeContract"
  254. },
  255. null
  256. ],
  257. "slotName": "Vector3",
  258. "Descriptor": {
  259. "ConnectionType": 1,
  260. "SlotType": 2
  261. }
  262. },
  263. {
  264. "id": {
  265. "m_id": "{0F0CEDD9-25E9-4A27-8E66-E0435233F4E2}"
  266. },
  267. "contracts": [
  268. {
  269. "$type": "SlotTypeContract"
  270. }
  271. ],
  272. "slotName": "Vector3",
  273. "DisplayDataType": {
  274. "m_type": 8
  275. },
  276. "Descriptor": {
  277. "ConnectionType": 2,
  278. "SlotType": 2
  279. }
  280. },
  281. {
  282. "id": {
  283. "m_id": "{E2B8FC65-2B91-4D2D-8736-A0B13A66F7C8}"
  284. },
  285. "contracts": [
  286. {
  287. "$type": "SlotTypeContract"
  288. }
  289. ],
  290. "slotName": "x: Number",
  291. "DisplayDataType": {
  292. "m_type": 3
  293. },
  294. "Descriptor": {
  295. "ConnectionType": 2,
  296. "SlotType": 2
  297. }
  298. },
  299. {
  300. "id": {
  301. "m_id": "{B76E8819-5C78-41FA-846C-83DA0E9DCB51}"
  302. },
  303. "contracts": [
  304. {
  305. "$type": "SlotTypeContract"
  306. }
  307. ],
  308. "slotName": "y: Number",
  309. "DisplayDataType": {
  310. "m_type": 3
  311. },
  312. "Descriptor": {
  313. "ConnectionType": 2,
  314. "SlotType": 2
  315. }
  316. },
  317. {
  318. "id": {
  319. "m_id": "{FC8C8551-60A4-44F9-8C37-C5B00A09CF01}"
  320. },
  321. "contracts": [
  322. {
  323. "$type": "SlotTypeContract"
  324. }
  325. ],
  326. "slotName": "z: Number",
  327. "DisplayDataType": {
  328. "m_type": 3
  329. },
  330. "Descriptor": {
  331. "ConnectionType": 2,
  332. "SlotType": 2
  333. }
  334. }
  335. ],
  336. "Datums": [
  337. {
  338. "isOverloadedStorage": false,
  339. "scriptCanvasType": {
  340. "m_type": 8
  341. },
  342. "isNullPointer": false,
  343. "$type": "Vector3",
  344. "value": [
  345. 9.0,
  346. 7.0,
  347. 8.0
  348. ],
  349. "label": "Vector3"
  350. }
  351. ],
  352. "m_variableId": {
  353. "m_id": "{EBF9C56B-A6B5-4987-A9FB-56B962E9B3C8}"
  354. },
  355. "m_variableDataInSlotId": {
  356. "m_id": "{7B8FA901-3B59-4B3A-8DB2-1F39197E8FD7}"
  357. },
  358. "m_variableDataOutSlotId": {
  359. "m_id": "{0F0CEDD9-25E9-4A27-8E66-E0435233F4E2}"
  360. },
  361. "m_propertyAccounts": [
  362. {
  363. "m_propertySlotId": {
  364. "m_id": "{E2B8FC65-2B91-4D2D-8736-A0B13A66F7C8}"
  365. },
  366. "m_propertyType": {
  367. "m_type": 3
  368. },
  369. "m_propertyName": "x"
  370. },
  371. {
  372. "m_propertySlotId": {
  373. "m_id": "{B76E8819-5C78-41FA-846C-83DA0E9DCB51}"
  374. },
  375. "m_propertyType": {
  376. "m_type": 3
  377. },
  378. "m_propertyName": "y"
  379. },
  380. {
  381. "m_propertySlotId": {
  382. "m_id": "{FC8C8551-60A4-44F9-8C37-C5B00A09CF01}"
  383. },
  384. "m_propertyType": {
  385. "m_type": 3
  386. },
  387. "m_propertyName": "z"
  388. }
  389. ]
  390. }
  391. }
  392. },
  393. {
  394. "Id": {
  395. "id": 664518661593134
  396. },
  397. "Name": "SC Node(SetVariable)",
  398. "Components": {
  399. "Component_[10000549293454605999]": {
  400. "$type": "SetVariableNode",
  401. "Id": 10000549293454605999,
  402. "Slots": [
  403. {
  404. "id": {
  405. "m_id": "{E10BE8B8-E290-4DA6-B01F-048BAB2BCF03}"
  406. },
  407. "contracts": [
  408. {
  409. "$type": "SlotTypeContract"
  410. }
  411. ],
  412. "slotName": "In",
  413. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  414. "Descriptor": {
  415. "ConnectionType": 1,
  416. "SlotType": 1
  417. }
  418. },
  419. {
  420. "id": {
  421. "m_id": "{787291F0-04D6-489A-801E-D3B635FE5D9A}"
  422. },
  423. "contracts": [
  424. {
  425. "$type": "SlotTypeContract"
  426. }
  427. ],
  428. "slotName": "Out",
  429. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  430. "Descriptor": {
  431. "ConnectionType": 2,
  432. "SlotType": 1
  433. }
  434. },
  435. {
  436. "id": {
  437. "m_id": "{7B8FA901-3B59-4B3A-8DB2-1F39197E8FD7}"
  438. },
  439. "contracts": [
  440. {
  441. "$type": "SlotTypeContract"
  442. },
  443. null
  444. ],
  445. "slotName": "Vector3",
  446. "Descriptor": {
  447. "ConnectionType": 1,
  448. "SlotType": 2
  449. }
  450. },
  451. {
  452. "id": {
  453. "m_id": "{0F0CEDD9-25E9-4A27-8E66-E0435233F4E2}"
  454. },
  455. "contracts": [
  456. {
  457. "$type": "SlotTypeContract"
  458. }
  459. ],
  460. "slotName": "Vector3",
  461. "DisplayDataType": {
  462. "m_type": 8
  463. },
  464. "Descriptor": {
  465. "ConnectionType": 2,
  466. "SlotType": 2
  467. }
  468. },
  469. {
  470. "id": {
  471. "m_id": "{E2B8FC65-2B91-4D2D-8736-A0B13A66F7C8}"
  472. },
  473. "contracts": [
  474. {
  475. "$type": "SlotTypeContract"
  476. }
  477. ],
  478. "slotName": "x: Number",
  479. "DisplayDataType": {
  480. "m_type": 3
  481. },
  482. "Descriptor": {
  483. "ConnectionType": 2,
  484. "SlotType": 2
  485. }
  486. },
  487. {
  488. "id": {
  489. "m_id": "{B76E8819-5C78-41FA-846C-83DA0E9DCB51}"
  490. },
  491. "contracts": [
  492. {
  493. "$type": "SlotTypeContract"
  494. }
  495. ],
  496. "slotName": "y: Number",
  497. "DisplayDataType": {
  498. "m_type": 3
  499. },
  500. "Descriptor": {
  501. "ConnectionType": 2,
  502. "SlotType": 2
  503. }
  504. },
  505. {
  506. "id": {
  507. "m_id": "{FC8C8551-60A4-44F9-8C37-C5B00A09CF01}"
  508. },
  509. "contracts": [
  510. {
  511. "$type": "SlotTypeContract"
  512. }
  513. ],
  514. "slotName": "z: Number",
  515. "DisplayDataType": {
  516. "m_type": 3
  517. },
  518. "Descriptor": {
  519. "ConnectionType": 2,
  520. "SlotType": 2
  521. }
  522. }
  523. ],
  524. "Datums": [
  525. {
  526. "isOverloadedStorage": false,
  527. "scriptCanvasType": {
  528. "m_type": 8
  529. },
  530. "isNullPointer": false,
  531. "$type": "Vector3",
  532. "value": [
  533. 9.0,
  534. 7.0,
  535. 8.0
  536. ],
  537. "label": "Vector3"
  538. }
  539. ],
  540. "m_variableId": {
  541. "m_id": "{EBF9C56B-A6B5-4987-A9FB-56B962E9B3C8}"
  542. },
  543. "m_variableDataInSlotId": {
  544. "m_id": "{7B8FA901-3B59-4B3A-8DB2-1F39197E8FD7}"
  545. },
  546. "m_variableDataOutSlotId": {
  547. "m_id": "{0F0CEDD9-25E9-4A27-8E66-E0435233F4E2}"
  548. },
  549. "m_propertyAccounts": [
  550. {
  551. "m_propertySlotId": {
  552. "m_id": "{E2B8FC65-2B91-4D2D-8736-A0B13A66F7C8}"
  553. },
  554. "m_propertyType": {
  555. "m_type": 3
  556. },
  557. "m_propertyName": "x"
  558. },
  559. {
  560. "m_propertySlotId": {
  561. "m_id": "{B76E8819-5C78-41FA-846C-83DA0E9DCB51}"
  562. },
  563. "m_propertyType": {
  564. "m_type": 3
  565. },
  566. "m_propertyName": "y"
  567. },
  568. {
  569. "m_propertySlotId": {
  570. "m_id": "{FC8C8551-60A4-44F9-8C37-C5B00A09CF01}"
  571. },
  572. "m_propertyType": {
  573. "m_type": 3
  574. },
  575. "m_propertyName": "z"
  576. }
  577. ]
  578. }
  579. }
  580. },
  581. {
  582. "Id": {
  583. "id": 664535841462318
  584. },
  585. "Name": "SC Node(SetVariable)",
  586. "Components": {
  587. "Component_[10000549293454605999]": {
  588. "$type": "SetVariableNode",
  589. "Id": 10000549293454605999,
  590. "Slots": [
  591. {
  592. "id": {
  593. "m_id": "{E10BE8B8-E290-4DA6-B01F-048BAB2BCF03}"
  594. },
  595. "contracts": [
  596. {
  597. "$type": "SlotTypeContract"
  598. }
  599. ],
  600. "slotName": "In",
  601. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  602. "Descriptor": {
  603. "ConnectionType": 1,
  604. "SlotType": 1
  605. }
  606. },
  607. {
  608. "id": {
  609. "m_id": "{787291F0-04D6-489A-801E-D3B635FE5D9A}"
  610. },
  611. "contracts": [
  612. {
  613. "$type": "SlotTypeContract"
  614. }
  615. ],
  616. "slotName": "Out",
  617. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  618. "Descriptor": {
  619. "ConnectionType": 2,
  620. "SlotType": 1
  621. }
  622. },
  623. {
  624. "id": {
  625. "m_id": "{7B8FA901-3B59-4B3A-8DB2-1F39197E8FD7}"
  626. },
  627. "contracts": [
  628. {
  629. "$type": "SlotTypeContract"
  630. },
  631. null
  632. ],
  633. "slotName": "Vector3",
  634. "Descriptor": {
  635. "ConnectionType": 1,
  636. "SlotType": 2
  637. }
  638. },
  639. {
  640. "id": {
  641. "m_id": "{0F0CEDD9-25E9-4A27-8E66-E0435233F4E2}"
  642. },
  643. "contracts": [
  644. {
  645. "$type": "SlotTypeContract"
  646. }
  647. ],
  648. "slotName": "Vector3",
  649. "DisplayDataType": {
  650. "m_type": 8
  651. },
  652. "Descriptor": {
  653. "ConnectionType": 2,
  654. "SlotType": 2
  655. }
  656. },
  657. {
  658. "id": {
  659. "m_id": "{E2B8FC65-2B91-4D2D-8736-A0B13A66F7C8}"
  660. },
  661. "contracts": [
  662. {
  663. "$type": "SlotTypeContract"
  664. }
  665. ],
  666. "slotName": "x: Number",
  667. "DisplayDataType": {
  668. "m_type": 3
  669. },
  670. "Descriptor": {
  671. "ConnectionType": 2,
  672. "SlotType": 2
  673. }
  674. },
  675. {
  676. "id": {
  677. "m_id": "{B76E8819-5C78-41FA-846C-83DA0E9DCB51}"
  678. },
  679. "contracts": [
  680. {
  681. "$type": "SlotTypeContract"
  682. }
  683. ],
  684. "slotName": "y: Number",
  685. "DisplayDataType": {
  686. "m_type": 3
  687. },
  688. "Descriptor": {
  689. "ConnectionType": 2,
  690. "SlotType": 2
  691. }
  692. },
  693. {
  694. "id": {
  695. "m_id": "{FC8C8551-60A4-44F9-8C37-C5B00A09CF01}"
  696. },
  697. "contracts": [
  698. {
  699. "$type": "SlotTypeContract"
  700. }
  701. ],
  702. "slotName": "z: Number",
  703. "DisplayDataType": {
  704. "m_type": 3
  705. },
  706. "Descriptor": {
  707. "ConnectionType": 2,
  708. "SlotType": 2
  709. }
  710. }
  711. ],
  712. "Datums": [
  713. {
  714. "isOverloadedStorage": false,
  715. "scriptCanvasType": {
  716. "m_type": 8
  717. },
  718. "isNullPointer": false,
  719. "$type": "Vector3",
  720. "value": [
  721. 9.0,
  722. 7.0,
  723. 8.0
  724. ],
  725. "label": "Vector3"
  726. }
  727. ],
  728. "m_variableId": {
  729. "m_id": "{EBF9C56B-A6B5-4987-A9FB-56B962E9B3C8}"
  730. },
  731. "m_variableDataInSlotId": {
  732. "m_id": "{7B8FA901-3B59-4B3A-8DB2-1F39197E8FD7}"
  733. },
  734. "m_variableDataOutSlotId": {
  735. "m_id": "{0F0CEDD9-25E9-4A27-8E66-E0435233F4E2}"
  736. },
  737. "m_propertyAccounts": [
  738. {
  739. "m_propertySlotId": {
  740. "m_id": "{E2B8FC65-2B91-4D2D-8736-A0B13A66F7C8}"
  741. },
  742. "m_propertyType": {
  743. "m_type": 3
  744. },
  745. "m_propertyName": "x"
  746. },
  747. {
  748. "m_propertySlotId": {
  749. "m_id": "{B76E8819-5C78-41FA-846C-83DA0E9DCB51}"
  750. },
  751. "m_propertyType": {
  752. "m_type": 3
  753. },
  754. "m_propertyName": "y"
  755. },
  756. {
  757. "m_propertySlotId": {
  758. "m_id": "{FC8C8551-60A4-44F9-8C37-C5B00A09CF01}"
  759. },
  760. "m_propertyType": {
  761. "m_type": 3
  762. },
  763. "m_propertyName": "z"
  764. }
  765. ]
  766. }
  767. }
  768. },
  769. {
  770. "Id": {
  771. "id": 664501481723950
  772. },
  773. "Name": "SC-Node(Expect Equal)",
  774. "Components": {
  775. "Component_[11002410643134416385]": {
  776. "$type": "MethodOverloaded",
  777. "Id": 11002410643134416385,
  778. "Slots": [
  779. {
  780. "id": {
  781. "m_id": "{E5424481-6D3F-40B0-A412-716FBE3936BC}"
  782. },
  783. "contracts": [
  784. {
  785. "$type": "SlotTypeContract"
  786. },
  787. null
  788. ],
  789. "slotName": "EntityID: 0",
  790. "DisplayDataType": {
  791. "m_type": 1
  792. },
  793. "Descriptor": {
  794. "ConnectionType": 1,
  795. "SlotType": 2
  796. }
  797. },
  798. {
  799. "IsOverload": true,
  800. "id": {
  801. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  802. },
  803. "DynamicTypeOverride": 3,
  804. "contracts": [
  805. {
  806. "$type": "SlotTypeContract"
  807. },
  808. null
  809. ],
  810. "slotName": "Candidate",
  811. "toolTip": "left of ==",
  812. "DisplayDataType": {
  813. "m_type": 3
  814. },
  815. "Descriptor": {
  816. "ConnectionType": 1,
  817. "SlotType": 2
  818. }
  819. },
  820. {
  821. "IsOverload": true,
  822. "id": {
  823. "m_id": "{E0F4816A-B4E3-4553-9928-FDB567C47E1B}"
  824. },
  825. "DynamicTypeOverride": 3,
  826. "contracts": [
  827. {
  828. "$type": "SlotTypeContract"
  829. },
  830. null
  831. ],
  832. "slotName": "Reference",
  833. "toolTip": "right of ==",
  834. "DisplayDataType": {
  835. "m_type": 3
  836. },
  837. "Descriptor": {
  838. "ConnectionType": 1,
  839. "SlotType": 2
  840. },
  841. "IsReference": true,
  842. "VariableReference": {
  843. "m_id": "{26DA6155-390D-4DF1-B5F3-04C31788BA8B}"
  844. }
  845. },
  846. {
  847. "id": {
  848. "m_id": "{A54335C9-0809-4272-A4C3-41540222778B}"
  849. },
  850. "contracts": [
  851. {
  852. "$type": "SlotTypeContract"
  853. },
  854. null
  855. ],
  856. "slotName": "Report",
  857. "toolTip": "additional notes for the test report",
  858. "DisplayDataType": {
  859. "m_type": 5
  860. },
  861. "Descriptor": {
  862. "ConnectionType": 1,
  863. "SlotType": 2
  864. }
  865. },
  866. {
  867. "id": {
  868. "m_id": "{5AAE4294-12C6-4DB6-B090-4BFB42CE1E02}"
  869. },
  870. "contracts": [
  871. {
  872. "$type": "SlotTypeContract"
  873. }
  874. ],
  875. "slotName": "In",
  876. "Descriptor": {
  877. "ConnectionType": 1,
  878. "SlotType": 1
  879. }
  880. },
  881. {
  882. "id": {
  883. "m_id": "{69953C12-6F69-45F3-8D42-08E0F2C63244}"
  884. },
  885. "contracts": [
  886. {
  887. "$type": "SlotTypeContract"
  888. }
  889. ],
  890. "slotName": "Out",
  891. "Descriptor": {
  892. "ConnectionType": 2,
  893. "SlotType": 1
  894. }
  895. }
  896. ],
  897. "Datums": [
  898. {
  899. "isOverloadedStorage": false,
  900. "scriptCanvasType": {
  901. "m_type": 1
  902. },
  903. "isNullPointer": false,
  904. "$type": "EntityId",
  905. "value": {
  906. "id": 4276206253
  907. },
  908. "label": "EntityID: 0"
  909. },
  910. {
  911. "isOverloadedStorage": false,
  912. "scriptCanvasType": {
  913. "m_type": 3
  914. },
  915. "isNullPointer": false,
  916. "$type": "double",
  917. "value": 0.0,
  918. "label": "Candidate"
  919. },
  920. {},
  921. {
  922. "isOverloadedStorage": false,
  923. "scriptCanvasType": {
  924. "m_type": 5
  925. },
  926. "isNullPointer": false,
  927. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  928. "value": "",
  929. "label": "Report"
  930. }
  931. ],
  932. "methodType": 2,
  933. "methodName": "Expect Equal",
  934. "className": "Unit Testing",
  935. "resultSlotIDs": [
  936. {}
  937. ],
  938. "prettyClassName": "Unit Testing",
  939. "orderedInputSlotIds": [
  940. {
  941. "m_id": "{E5424481-6D3F-40B0-A412-716FBE3936BC}"
  942. },
  943. {
  944. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  945. },
  946. {
  947. "m_id": "{E0F4816A-B4E3-4553-9928-FDB567C47E1B}"
  948. },
  949. {
  950. "m_id": "{A54335C9-0809-4272-A4C3-41540222778B}"
  951. }
  952. ]
  953. }
  954. }
  955. },
  956. {
  957. "Id": {
  958. "id": 664514366625838
  959. },
  960. "Name": "SC-Node(Expect Equal)",
  961. "Components": {
  962. "Component_[11002410643134416385]": {
  963. "$type": "MethodOverloaded",
  964. "Id": 11002410643134416385,
  965. "Slots": [
  966. {
  967. "id": {
  968. "m_id": "{E5424481-6D3F-40B0-A412-716FBE3936BC}"
  969. },
  970. "contracts": [
  971. {
  972. "$type": "SlotTypeContract"
  973. },
  974. null
  975. ],
  976. "slotName": "EntityID: 0",
  977. "DisplayDataType": {
  978. "m_type": 1
  979. },
  980. "Descriptor": {
  981. "ConnectionType": 1,
  982. "SlotType": 2
  983. }
  984. },
  985. {
  986. "IsOverload": true,
  987. "id": {
  988. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  989. },
  990. "DynamicTypeOverride": 3,
  991. "contracts": [
  992. {
  993. "$type": "SlotTypeContract"
  994. },
  995. null
  996. ],
  997. "slotName": "Candidate",
  998. "toolTip": "left of ==",
  999. "DisplayDataType": {
  1000. "m_type": 3
  1001. },
  1002. "Descriptor": {
  1003. "ConnectionType": 1,
  1004. "SlotType": 2
  1005. }
  1006. },
  1007. {
  1008. "IsOverload": true,
  1009. "id": {
  1010. "m_id": "{E0F4816A-B4E3-4553-9928-FDB567C47E1B}"
  1011. },
  1012. "DynamicTypeOverride": 3,
  1013. "contracts": [
  1014. {
  1015. "$type": "SlotTypeContract"
  1016. },
  1017. null
  1018. ],
  1019. "slotName": "Reference",
  1020. "toolTip": "right of ==",
  1021. "DisplayDataType": {
  1022. "m_type": 3
  1023. },
  1024. "Descriptor": {
  1025. "ConnectionType": 1,
  1026. "SlotType": 2
  1027. },
  1028. "IsReference": true,
  1029. "VariableReference": {
  1030. "m_id": "{A14E7EE2-F0DC-4E15-BEE9-9B252EE42BD7}"
  1031. }
  1032. },
  1033. {
  1034. "id": {
  1035. "m_id": "{A54335C9-0809-4272-A4C3-41540222778B}"
  1036. },
  1037. "contracts": [
  1038. {
  1039. "$type": "SlotTypeContract"
  1040. },
  1041. null
  1042. ],
  1043. "slotName": "Report",
  1044. "toolTip": "additional notes for the test report",
  1045. "DisplayDataType": {
  1046. "m_type": 5
  1047. },
  1048. "Descriptor": {
  1049. "ConnectionType": 1,
  1050. "SlotType": 2
  1051. }
  1052. },
  1053. {
  1054. "id": {
  1055. "m_id": "{5AAE4294-12C6-4DB6-B090-4BFB42CE1E02}"
  1056. },
  1057. "contracts": [
  1058. {
  1059. "$type": "SlotTypeContract"
  1060. }
  1061. ],
  1062. "slotName": "In",
  1063. "Descriptor": {
  1064. "ConnectionType": 1,
  1065. "SlotType": 1
  1066. }
  1067. },
  1068. {
  1069. "id": {
  1070. "m_id": "{69953C12-6F69-45F3-8D42-08E0F2C63244}"
  1071. },
  1072. "contracts": [
  1073. {
  1074. "$type": "SlotTypeContract"
  1075. }
  1076. ],
  1077. "slotName": "Out",
  1078. "Descriptor": {
  1079. "ConnectionType": 2,
  1080. "SlotType": 1
  1081. }
  1082. }
  1083. ],
  1084. "Datums": [
  1085. {
  1086. "isOverloadedStorage": false,
  1087. "scriptCanvasType": {
  1088. "m_type": 1
  1089. },
  1090. "isNullPointer": false,
  1091. "$type": "EntityId",
  1092. "value": {
  1093. "id": 4276206253
  1094. },
  1095. "label": "EntityID: 0"
  1096. },
  1097. {
  1098. "isOverloadedStorage": false,
  1099. "scriptCanvasType": {
  1100. "m_type": 3
  1101. },
  1102. "isNullPointer": false,
  1103. "$type": "double",
  1104. "value": 0.0,
  1105. "label": "Candidate"
  1106. },
  1107. {},
  1108. {
  1109. "isOverloadedStorage": false,
  1110. "scriptCanvasType": {
  1111. "m_type": 5
  1112. },
  1113. "isNullPointer": false,
  1114. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1115. "value": "",
  1116. "label": "Report"
  1117. }
  1118. ],
  1119. "methodType": 2,
  1120. "methodName": "Expect Equal",
  1121. "className": "Unit Testing",
  1122. "resultSlotIDs": [
  1123. {}
  1124. ],
  1125. "prettyClassName": "Unit Testing",
  1126. "orderedInputSlotIds": [
  1127. {
  1128. "m_id": "{E5424481-6D3F-40B0-A412-716FBE3936BC}"
  1129. },
  1130. {
  1131. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  1132. },
  1133. {
  1134. "m_id": "{E0F4816A-B4E3-4553-9928-FDB567C47E1B}"
  1135. },
  1136. {
  1137. "m_id": "{A54335C9-0809-4272-A4C3-41540222778B}"
  1138. }
  1139. ]
  1140. }
  1141. }
  1142. },
  1143. {
  1144. "Id": {
  1145. "id": 664527251527726
  1146. },
  1147. "Name": "SC-Node(Expect Equal)",
  1148. "Components": {
  1149. "Component_[11002410643134416385]": {
  1150. "$type": "MethodOverloaded",
  1151. "Id": 11002410643134416385,
  1152. "Slots": [
  1153. {
  1154. "id": {
  1155. "m_id": "{E5424481-6D3F-40B0-A412-716FBE3936BC}"
  1156. },
  1157. "contracts": [
  1158. {
  1159. "$type": "SlotTypeContract"
  1160. },
  1161. null
  1162. ],
  1163. "slotName": "EntityID: 0",
  1164. "DisplayDataType": {
  1165. "m_type": 1
  1166. },
  1167. "Descriptor": {
  1168. "ConnectionType": 1,
  1169. "SlotType": 2
  1170. }
  1171. },
  1172. {
  1173. "IsOverload": true,
  1174. "id": {
  1175. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  1176. },
  1177. "DynamicTypeOverride": 3,
  1178. "contracts": [
  1179. {
  1180. "$type": "SlotTypeContract"
  1181. },
  1182. null
  1183. ],
  1184. "slotName": "Candidate",
  1185. "toolTip": "left of ==",
  1186. "DisplayDataType": {
  1187. "m_type": 3
  1188. },
  1189. "Descriptor": {
  1190. "ConnectionType": 1,
  1191. "SlotType": 2
  1192. }
  1193. },
  1194. {
  1195. "IsOverload": true,
  1196. "id": {
  1197. "m_id": "{E0F4816A-B4E3-4553-9928-FDB567C47E1B}"
  1198. },
  1199. "DynamicTypeOverride": 3,
  1200. "contracts": [
  1201. {
  1202. "$type": "SlotTypeContract"
  1203. },
  1204. null
  1205. ],
  1206. "slotName": "Reference",
  1207. "toolTip": "right of ==",
  1208. "DisplayDataType": {
  1209. "m_type": 3
  1210. },
  1211. "Descriptor": {
  1212. "ConnectionType": 1,
  1213. "SlotType": 2
  1214. },
  1215. "IsReference": true,
  1216. "VariableReference": {
  1217. "m_id": "{A14E7EE2-F0DC-4E15-BEE9-9B252EE42BD7}"
  1218. }
  1219. },
  1220. {
  1221. "id": {
  1222. "m_id": "{A54335C9-0809-4272-A4C3-41540222778B}"
  1223. },
  1224. "contracts": [
  1225. {
  1226. "$type": "SlotTypeContract"
  1227. },
  1228. null
  1229. ],
  1230. "slotName": "Report",
  1231. "toolTip": "additional notes for the test report",
  1232. "DisplayDataType": {
  1233. "m_type": 5
  1234. },
  1235. "Descriptor": {
  1236. "ConnectionType": 1,
  1237. "SlotType": 2
  1238. }
  1239. },
  1240. {
  1241. "id": {
  1242. "m_id": "{5AAE4294-12C6-4DB6-B090-4BFB42CE1E02}"
  1243. },
  1244. "contracts": [
  1245. {
  1246. "$type": "SlotTypeContract"
  1247. }
  1248. ],
  1249. "slotName": "In",
  1250. "Descriptor": {
  1251. "ConnectionType": 1,
  1252. "SlotType": 1
  1253. }
  1254. },
  1255. {
  1256. "id": {
  1257. "m_id": "{69953C12-6F69-45F3-8D42-08E0F2C63244}"
  1258. },
  1259. "contracts": [
  1260. {
  1261. "$type": "SlotTypeContract"
  1262. }
  1263. ],
  1264. "slotName": "Out",
  1265. "Descriptor": {
  1266. "ConnectionType": 2,
  1267. "SlotType": 1
  1268. }
  1269. }
  1270. ],
  1271. "Datums": [
  1272. {
  1273. "isOverloadedStorage": false,
  1274. "scriptCanvasType": {
  1275. "m_type": 1
  1276. },
  1277. "isNullPointer": false,
  1278. "$type": "EntityId",
  1279. "value": {
  1280. "id": 4276206253
  1281. },
  1282. "label": "EntityID: 0"
  1283. },
  1284. {
  1285. "isOverloadedStorage": false,
  1286. "scriptCanvasType": {
  1287. "m_type": 3
  1288. },
  1289. "isNullPointer": false,
  1290. "$type": "double",
  1291. "value": 0.0,
  1292. "label": "Candidate"
  1293. },
  1294. {},
  1295. {
  1296. "isOverloadedStorage": false,
  1297. "scriptCanvasType": {
  1298. "m_type": 5
  1299. },
  1300. "isNullPointer": false,
  1301. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1302. "value": "",
  1303. "label": "Report"
  1304. }
  1305. ],
  1306. "methodType": 2,
  1307. "methodName": "Expect Equal",
  1308. "className": "Unit Testing",
  1309. "resultSlotIDs": [
  1310. {}
  1311. ],
  1312. "prettyClassName": "Unit Testing",
  1313. "orderedInputSlotIds": [
  1314. {
  1315. "m_id": "{E5424481-6D3F-40B0-A412-716FBE3936BC}"
  1316. },
  1317. {
  1318. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  1319. },
  1320. {
  1321. "m_id": "{E0F4816A-B4E3-4553-9928-FDB567C47E1B}"
  1322. },
  1323. {
  1324. "m_id": "{A54335C9-0809-4272-A4C3-41540222778B}"
  1325. }
  1326. ]
  1327. }
  1328. }
  1329. },
  1330. {
  1331. "Id": {
  1332. "id": 664531546495022
  1333. },
  1334. "Name": "SC-Node(Expect Equal)",
  1335. "Components": {
  1336. "Component_[11002410643134416385]": {
  1337. "$type": "MethodOverloaded",
  1338. "Id": 11002410643134416385,
  1339. "Slots": [
  1340. {
  1341. "id": {
  1342. "m_id": "{E5424481-6D3F-40B0-A412-716FBE3936BC}"
  1343. },
  1344. "contracts": [
  1345. {
  1346. "$type": "SlotTypeContract"
  1347. },
  1348. null
  1349. ],
  1350. "slotName": "EntityID: 0",
  1351. "DisplayDataType": {
  1352. "m_type": 1
  1353. },
  1354. "Descriptor": {
  1355. "ConnectionType": 1,
  1356. "SlotType": 2
  1357. }
  1358. },
  1359. {
  1360. "IsOverload": true,
  1361. "id": {
  1362. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  1363. },
  1364. "DynamicTypeOverride": 3,
  1365. "contracts": [
  1366. {
  1367. "$type": "SlotTypeContract"
  1368. },
  1369. null
  1370. ],
  1371. "slotName": "Candidate",
  1372. "toolTip": "left of ==",
  1373. "DisplayDataType": {
  1374. "m_type": 3
  1375. },
  1376. "Descriptor": {
  1377. "ConnectionType": 1,
  1378. "SlotType": 2
  1379. }
  1380. },
  1381. {
  1382. "IsOverload": true,
  1383. "id": {
  1384. "m_id": "{E0F4816A-B4E3-4553-9928-FDB567C47E1B}"
  1385. },
  1386. "DynamicTypeOverride": 3,
  1387. "contracts": [
  1388. {
  1389. "$type": "SlotTypeContract"
  1390. },
  1391. null
  1392. ],
  1393. "slotName": "Reference",
  1394. "toolTip": "right of ==",
  1395. "DisplayDataType": {
  1396. "m_type": 3
  1397. },
  1398. "Descriptor": {
  1399. "ConnectionType": 1,
  1400. "SlotType": 2
  1401. },
  1402. "IsReference": true,
  1403. "VariableReference": {
  1404. "m_id": "{D89BE525-0606-41CD-90B1-6EA9F40CDBF3}"
  1405. }
  1406. },
  1407. {
  1408. "id": {
  1409. "m_id": "{A54335C9-0809-4272-A4C3-41540222778B}"
  1410. },
  1411. "contracts": [
  1412. {
  1413. "$type": "SlotTypeContract"
  1414. },
  1415. null
  1416. ],
  1417. "slotName": "Report",
  1418. "toolTip": "additional notes for the test report",
  1419. "DisplayDataType": {
  1420. "m_type": 5
  1421. },
  1422. "Descriptor": {
  1423. "ConnectionType": 1,
  1424. "SlotType": 2
  1425. }
  1426. },
  1427. {
  1428. "id": {
  1429. "m_id": "{5AAE4294-12C6-4DB6-B090-4BFB42CE1E02}"
  1430. },
  1431. "contracts": [
  1432. {
  1433. "$type": "SlotTypeContract"
  1434. }
  1435. ],
  1436. "slotName": "In",
  1437. "Descriptor": {
  1438. "ConnectionType": 1,
  1439. "SlotType": 1
  1440. }
  1441. },
  1442. {
  1443. "id": {
  1444. "m_id": "{69953C12-6F69-45F3-8D42-08E0F2C63244}"
  1445. },
  1446. "contracts": [
  1447. {
  1448. "$type": "SlotTypeContract"
  1449. }
  1450. ],
  1451. "slotName": "Out",
  1452. "Descriptor": {
  1453. "ConnectionType": 2,
  1454. "SlotType": 1
  1455. }
  1456. }
  1457. ],
  1458. "Datums": [
  1459. {
  1460. "isOverloadedStorage": false,
  1461. "scriptCanvasType": {
  1462. "m_type": 1
  1463. },
  1464. "isNullPointer": false,
  1465. "$type": "EntityId",
  1466. "value": {
  1467. "id": 4276206253
  1468. },
  1469. "label": "EntityID: 0"
  1470. },
  1471. {
  1472. "isOverloadedStorage": false,
  1473. "scriptCanvasType": {
  1474. "m_type": 3
  1475. },
  1476. "isNullPointer": false,
  1477. "$type": "double",
  1478. "value": 0.0,
  1479. "label": "Candidate"
  1480. },
  1481. {},
  1482. {
  1483. "isOverloadedStorage": false,
  1484. "scriptCanvasType": {
  1485. "m_type": 5
  1486. },
  1487. "isNullPointer": false,
  1488. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1489. "value": "",
  1490. "label": "Report"
  1491. }
  1492. ],
  1493. "methodType": 2,
  1494. "methodName": "Expect Equal",
  1495. "className": "Unit Testing",
  1496. "resultSlotIDs": [
  1497. {}
  1498. ],
  1499. "prettyClassName": "Unit Testing",
  1500. "orderedInputSlotIds": [
  1501. {
  1502. "m_id": "{E5424481-6D3F-40B0-A412-716FBE3936BC}"
  1503. },
  1504. {
  1505. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  1506. },
  1507. {
  1508. "m_id": "{E0F4816A-B4E3-4553-9928-FDB567C47E1B}"
  1509. },
  1510. {
  1511. "m_id": "{A54335C9-0809-4272-A4C3-41540222778B}"
  1512. }
  1513. ]
  1514. }
  1515. }
  1516. },
  1517. {
  1518. "Id": {
  1519. "id": 664540136429614
  1520. },
  1521. "Name": "SC-Node(Start)",
  1522. "Components": {
  1523. "Component_[13343996263980682762]": {
  1524. "$type": "Start",
  1525. "Id": 13343996263980682762,
  1526. "Slots": [
  1527. {
  1528. "id": {
  1529. "m_id": "{44FA5998-4DBF-492B-9B0C-283B1DBC396B}"
  1530. },
  1531. "contracts": [
  1532. {
  1533. "$type": "SlotTypeContract"
  1534. }
  1535. ],
  1536. "slotName": "Out",
  1537. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1538. "Descriptor": {
  1539. "ConnectionType": 2,
  1540. "SlotType": 1
  1541. }
  1542. }
  1543. ]
  1544. }
  1545. }
  1546. },
  1547. {
  1548. "Id": {
  1549. "id": 664522956560430
  1550. },
  1551. "Name": "SC-Node(Mark Complete)",
  1552. "Components": {
  1553. "Component_[17413478449275831761]": {
  1554. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1555. "Id": 17413478449275831761,
  1556. "Slots": [
  1557. {
  1558. "id": {
  1559. "m_id": "{97EFE86A-23C6-4D88-B9A0-615900A8FFC0}"
  1560. },
  1561. "contracts": [
  1562. {
  1563. "$type": "SlotTypeContract"
  1564. },
  1565. null
  1566. ],
  1567. "slotName": "EntityID: 0",
  1568. "Descriptor": {
  1569. "ConnectionType": 1,
  1570. "SlotType": 2
  1571. }
  1572. },
  1573. {
  1574. "id": {
  1575. "m_id": "{F077C200-67BB-4110-9BAF-D1B2D7049E90}"
  1576. },
  1577. "contracts": [
  1578. {
  1579. "$type": "SlotTypeContract"
  1580. },
  1581. null
  1582. ],
  1583. "slotName": "Report",
  1584. "toolTip": "additional notes for the test report",
  1585. "Descriptor": {
  1586. "ConnectionType": 1,
  1587. "SlotType": 2
  1588. }
  1589. },
  1590. {
  1591. "id": {
  1592. "m_id": "{A9D72E23-43C4-494E-8572-271C5026AA41}"
  1593. },
  1594. "contracts": [
  1595. {
  1596. "$type": "SlotTypeContract"
  1597. }
  1598. ],
  1599. "slotName": "In",
  1600. "Descriptor": {
  1601. "ConnectionType": 1,
  1602. "SlotType": 1
  1603. }
  1604. },
  1605. {
  1606. "id": {
  1607. "m_id": "{B62914F6-B192-4DE5-9D42-58E99BFB9C31}"
  1608. },
  1609. "contracts": [
  1610. {
  1611. "$type": "SlotTypeContract"
  1612. }
  1613. ],
  1614. "slotName": "Out",
  1615. "Descriptor": {
  1616. "ConnectionType": 2,
  1617. "SlotType": 1
  1618. }
  1619. }
  1620. ],
  1621. "Datums": [
  1622. {
  1623. "isOverloadedStorage": false,
  1624. "scriptCanvasType": {
  1625. "m_type": 1
  1626. },
  1627. "isNullPointer": false,
  1628. "$type": "EntityId",
  1629. "value": {
  1630. "id": 4276206253
  1631. },
  1632. "label": "EntityID: 0"
  1633. },
  1634. {
  1635. "isOverloadedStorage": false,
  1636. "scriptCanvasType": {
  1637. "m_type": 5
  1638. },
  1639. "isNullPointer": false,
  1640. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1641. "value": "",
  1642. "label": "Report"
  1643. }
  1644. ],
  1645. "methodType": 2,
  1646. "methodName": "Mark Complete",
  1647. "className": "Unit Testing",
  1648. "resultSlotIDs": [
  1649. {}
  1650. ],
  1651. "prettyClassName": "Unit Testing"
  1652. }
  1653. }
  1654. }
  1655. ],
  1656. "m_connections": [
  1657. {
  1658. "Id": {
  1659. "id": 664544431396910
  1660. },
  1661. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Set Variable: In)",
  1662. "Components": {
  1663. "Component_[1130321028679161948]": {
  1664. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1665. "Id": 1130321028679161948,
  1666. "sourceEndpoint": {
  1667. "nodeId": {
  1668. "id": 664505776691246
  1669. },
  1670. "slotId": {
  1671. "m_id": "{787291F0-04D6-489A-801E-D3B635FE5D9A}"
  1672. }
  1673. },
  1674. "targetEndpoint": {
  1675. "nodeId": {
  1676. "id": 664518661593134
  1677. },
  1678. "slotId": {
  1679. "m_id": "{E10BE8B8-E290-4DA6-B01F-048BAB2BCF03}"
  1680. }
  1681. }
  1682. }
  1683. }
  1684. },
  1685. {
  1686. "Id": {
  1687. "id": 664548726364206
  1688. },
  1689. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Set Variable: In)",
  1690. "Components": {
  1691. "Component_[1153302094872540178]": {
  1692. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1693. "Id": 1153302094872540178,
  1694. "sourceEndpoint": {
  1695. "nodeId": {
  1696. "id": 664518661593134
  1697. },
  1698. "slotId": {
  1699. "m_id": "{787291F0-04D6-489A-801E-D3B635FE5D9A}"
  1700. }
  1701. },
  1702. "targetEndpoint": {
  1703. "nodeId": {
  1704. "id": 664535841462318
  1705. },
  1706. "slotId": {
  1707. "m_id": "{E10BE8B8-E290-4DA6-B01F-048BAB2BCF03}"
  1708. }
  1709. }
  1710. }
  1711. }
  1712. },
  1713. {
  1714. "Id": {
  1715. "id": 664553021331502
  1716. },
  1717. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Set Variable: In)",
  1718. "Components": {
  1719. "Component_[10177278233750811959]": {
  1720. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1721. "Id": 10177278233750811959,
  1722. "sourceEndpoint": {
  1723. "nodeId": {
  1724. "id": 664535841462318
  1725. },
  1726. "slotId": {
  1727. "m_id": "{787291F0-04D6-489A-801E-D3B635FE5D9A}"
  1728. }
  1729. },
  1730. "targetEndpoint": {
  1731. "nodeId": {
  1732. "id": 664510071658542
  1733. },
  1734. "slotId": {
  1735. "m_id": "{E10BE8B8-E290-4DA6-B01F-048BAB2BCF03}"
  1736. }
  1737. }
  1738. }
  1739. }
  1740. },
  1741. {
  1742. "Id": {
  1743. "id": 664557316298798
  1744. },
  1745. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  1746. "Components": {
  1747. "Component_[7480860848048212658]": {
  1748. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1749. "Id": 7480860848048212658,
  1750. "sourceEndpoint": {
  1751. "nodeId": {
  1752. "id": 664531546495022
  1753. },
  1754. "slotId": {
  1755. "m_id": "{69953C12-6F69-45F3-8D42-08E0F2C63244}"
  1756. }
  1757. },
  1758. "targetEndpoint": {
  1759. "nodeId": {
  1760. "id": 664501481723950
  1761. },
  1762. "slotId": {
  1763. "m_id": "{5AAE4294-12C6-4DB6-B090-4BFB42CE1E02}"
  1764. }
  1765. }
  1766. }
  1767. }
  1768. },
  1769. {
  1770. "Id": {
  1771. "id": 664561611266094
  1772. },
  1773. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  1774. "Components": {
  1775. "Component_[6799646422583075250]": {
  1776. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1777. "Id": 6799646422583075250,
  1778. "sourceEndpoint": {
  1779. "nodeId": {
  1780. "id": 664527251527726
  1781. },
  1782. "slotId": {
  1783. "m_id": "{69953C12-6F69-45F3-8D42-08E0F2C63244}"
  1784. }
  1785. },
  1786. "targetEndpoint": {
  1787. "nodeId": {
  1788. "id": 664531546495022
  1789. },
  1790. "slotId": {
  1791. "m_id": "{5AAE4294-12C6-4DB6-B090-4BFB42CE1E02}"
  1792. }
  1793. }
  1794. }
  1795. }
  1796. },
  1797. {
  1798. "Id": {
  1799. "id": 664565906233390
  1800. },
  1801. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
  1802. "Components": {
  1803. "Component_[8893375745483122526]": {
  1804. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1805. "Id": 8893375745483122526,
  1806. "sourceEndpoint": {
  1807. "nodeId": {
  1808. "id": 664514366625838
  1809. },
  1810. "slotId": {
  1811. "m_id": "{69953C12-6F69-45F3-8D42-08E0F2C63244}"
  1812. }
  1813. },
  1814. "targetEndpoint": {
  1815. "nodeId": {
  1816. "id": 664527251527726
  1817. },
  1818. "slotId": {
  1819. "m_id": "{5AAE4294-12C6-4DB6-B090-4BFB42CE1E02}"
  1820. }
  1821. }
  1822. }
  1823. }
  1824. },
  1825. {
  1826. "Id": {
  1827. "id": 664570201200686
  1828. },
  1829. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Expect Equal: In)",
  1830. "Components": {
  1831. "Component_[16132781828451362960]": {
  1832. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1833. "Id": 16132781828451362960,
  1834. "sourceEndpoint": {
  1835. "nodeId": {
  1836. "id": 664510071658542
  1837. },
  1838. "slotId": {
  1839. "m_id": "{787291F0-04D6-489A-801E-D3B635FE5D9A}"
  1840. }
  1841. },
  1842. "targetEndpoint": {
  1843. "nodeId": {
  1844. "id": 664514366625838
  1845. },
  1846. "slotId": {
  1847. "m_id": "{5AAE4294-12C6-4DB6-B090-4BFB42CE1E02}"
  1848. }
  1849. }
  1850. }
  1851. }
  1852. },
  1853. {
  1854. "Id": {
  1855. "id": 664574496167982
  1856. },
  1857. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  1858. "Components": {
  1859. "Component_[15817290881611666834]": {
  1860. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1861. "Id": 15817290881611666834,
  1862. "sourceEndpoint": {
  1863. "nodeId": {
  1864. "id": 664501481723950
  1865. },
  1866. "slotId": {
  1867. "m_id": "{69953C12-6F69-45F3-8D42-08E0F2C63244}"
  1868. }
  1869. },
  1870. "targetEndpoint": {
  1871. "nodeId": {
  1872. "id": 664522956560430
  1873. },
  1874. "slotId": {
  1875. "m_id": "{A9D72E23-43C4-494E-8572-271C5026AA41}"
  1876. }
  1877. }
  1878. }
  1879. }
  1880. },
  1881. {
  1882. "Id": {
  1883. "id": 664578791135278
  1884. },
  1885. "Name": "srcEndpoint=(Set Variable: Vector3), destEndpoint=(Set Variable: Vector3)",
  1886. "Components": {
  1887. "Component_[4471126998193782967]": {
  1888. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1889. "Id": 4471126998193782967,
  1890. "sourceEndpoint": {
  1891. "nodeId": {
  1892. "id": 664505776691246
  1893. },
  1894. "slotId": {
  1895. "m_id": "{0F0CEDD9-25E9-4A27-8E66-E0435233F4E2}"
  1896. }
  1897. },
  1898. "targetEndpoint": {
  1899. "nodeId": {
  1900. "id": 664518661593134
  1901. },
  1902. "slotId": {
  1903. "m_id": "{7B8FA901-3B59-4B3A-8DB2-1F39197E8FD7}"
  1904. }
  1905. }
  1906. }
  1907. }
  1908. },
  1909. {
  1910. "Id": {
  1911. "id": 664583086102574
  1912. },
  1913. "Name": "srcEndpoint=(Set Variable: y: Number), destEndpoint=(Expect Equal: Candidate :-()",
  1914. "Components": {
  1915. "Component_[10712265453616597289]": {
  1916. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1917. "Id": 10712265453616597289,
  1918. "sourceEndpoint": {
  1919. "nodeId": {
  1920. "id": 664505776691246
  1921. },
  1922. "slotId": {
  1923. "m_id": "{B76E8819-5C78-41FA-846C-83DA0E9DCB51}"
  1924. }
  1925. },
  1926. "targetEndpoint": {
  1927. "nodeId": {
  1928. "id": 664514366625838
  1929. },
  1930. "slotId": {
  1931. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  1932. }
  1933. }
  1934. }
  1935. }
  1936. },
  1937. {
  1938. "Id": {
  1939. "id": 664587381069870
  1940. },
  1941. "Name": "srcEndpoint=(Set Variable: y: Number), destEndpoint=(Expect Equal: Candidate :-()",
  1942. "Components": {
  1943. "Component_[9760828606450825427]": {
  1944. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1945. "Id": 9760828606450825427,
  1946. "sourceEndpoint": {
  1947. "nodeId": {
  1948. "id": 664518661593134
  1949. },
  1950. "slotId": {
  1951. "m_id": "{B76E8819-5C78-41FA-846C-83DA0E9DCB51}"
  1952. }
  1953. },
  1954. "targetEndpoint": {
  1955. "nodeId": {
  1956. "id": 664527251527726
  1957. },
  1958. "slotId": {
  1959. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  1960. }
  1961. }
  1962. }
  1963. }
  1964. },
  1965. {
  1966. "Id": {
  1967. "id": 664591676037166
  1968. },
  1969. "Name": "srcEndpoint=(Set Variable: z: Number), destEndpoint=(Expect Equal: Candidate :-()",
  1970. "Components": {
  1971. "Component_[14071261267696978940]": {
  1972. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1973. "Id": 14071261267696978940,
  1974. "sourceEndpoint": {
  1975. "nodeId": {
  1976. "id": 664535841462318
  1977. },
  1978. "slotId": {
  1979. "m_id": "{FC8C8551-60A4-44F9-8C37-C5B00A09CF01}"
  1980. }
  1981. },
  1982. "targetEndpoint": {
  1983. "nodeId": {
  1984. "id": 664531546495022
  1985. },
  1986. "slotId": {
  1987. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  1988. }
  1989. }
  1990. }
  1991. }
  1992. },
  1993. {
  1994. "Id": {
  1995. "id": 664595971004462
  1996. },
  1997. "Name": "srcEndpoint=(Set Variable: x: Number), destEndpoint=(Expect Equal: Candidate :-()",
  1998. "Components": {
  1999. "Component_[3852669773508579173]": {
  2000. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2001. "Id": 3852669773508579173,
  2002. "sourceEndpoint": {
  2003. "nodeId": {
  2004. "id": 664510071658542
  2005. },
  2006. "slotId": {
  2007. "m_id": "{E2B8FC65-2B91-4D2D-8736-A0B13A66F7C8}"
  2008. }
  2009. },
  2010. "targetEndpoint": {
  2011. "nodeId": {
  2012. "id": 664501481723950
  2013. },
  2014. "slotId": {
  2015. "m_id": "{410029E9-50C2-4454-A862-9FAC5492B862}"
  2016. }
  2017. }
  2018. }
  2019. }
  2020. },
  2021. {
  2022. "Id": {
  2023. "id": 664600265971758
  2024. },
  2025. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Set Variable: In)",
  2026. "Components": {
  2027. "Component_[14660922807679162472]": {
  2028. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2029. "Id": 14660922807679162472,
  2030. "sourceEndpoint": {
  2031. "nodeId": {
  2032. "id": 664540136429614
  2033. },
  2034. "slotId": {
  2035. "m_id": "{44FA5998-4DBF-492B-9B0C-283B1DBC396B}"
  2036. }
  2037. },
  2038. "targetEndpoint": {
  2039. "nodeId": {
  2040. "id": 664505776691246
  2041. },
  2042. "slotId": {
  2043. "m_id": "{E10BE8B8-E290-4DA6-B01F-048BAB2BCF03}"
  2044. }
  2045. }
  2046. }
  2047. }
  2048. }
  2049. ]
  2050. },
  2051. "m_assetType": "{887E9D72-FD7F-0000-0000-000000000000}",
  2052. "versionData": {
  2053. "_grammarVersion": 1,
  2054. "_runtimeVersion": 1,
  2055. "_fileVersion": 1
  2056. },
  2057. "m_variableCounter": 15,
  2058. "GraphCanvasData": [
  2059. {
  2060. "Key": {
  2061. "id": 664497186756654
  2062. },
  2063. "Value": {
  2064. "ComponentData": {
  2065. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2066. "$type": "SceneComponentSaveData",
  2067. "ViewParams": {
  2068. "Scale": 0.6245702,
  2069. "AnchorX": -1000.6881713867188,
  2070. "AnchorY": -545.9754638671875
  2071. }
  2072. }
  2073. }
  2074. }
  2075. },
  2076. {
  2077. "Key": {
  2078. "id": 664501481723950
  2079. },
  2080. "Value": {
  2081. "ComponentData": {
  2082. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2083. "$type": "GeneralNodeTitleComponentSaveData",
  2084. "PaletteOverride": "MethodNodeTitlePalette"
  2085. },
  2086. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2087. "$type": "GeometrySaveData",
  2088. "Position": [
  2089. 280.0,
  2090. 140.0
  2091. ]
  2092. },
  2093. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2094. "$type": "StylingComponentSaveData",
  2095. "SubStyle": ".method"
  2096. },
  2097. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2098. "$type": "PersistentIdComponentSaveData",
  2099. "PersistentId": "{C665A7B0-F596-4D0F-B556-CDE2CF1D5C75}"
  2100. }
  2101. }
  2102. }
  2103. },
  2104. {
  2105. "Key": {
  2106. "id": 664505776691246
  2107. },
  2108. "Value": {
  2109. "ComponentData": {
  2110. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2111. "$type": "GeneralNodeTitleComponentSaveData",
  2112. "PaletteOverride": "SetVariableNodeTitlePalette"
  2113. },
  2114. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2115. "$type": "GeometrySaveData",
  2116. "Position": [
  2117. -720.0,
  2118. -240.0
  2119. ]
  2120. },
  2121. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2122. "$type": "StylingComponentSaveData",
  2123. "SubStyle": ".setVariable"
  2124. },
  2125. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2126. "$type": "PersistentIdComponentSaveData",
  2127. "PersistentId": "{31483079-745E-4BA0-ABB1-BE58B12CE337}"
  2128. }
  2129. }
  2130. }
  2131. },
  2132. {
  2133. "Key": {
  2134. "id": 664510071658542
  2135. },
  2136. "Value": {
  2137. "ComponentData": {
  2138. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2139. "$type": "GeneralNodeTitleComponentSaveData",
  2140. "PaletteOverride": "SetVariableNodeTitlePalette"
  2141. },
  2142. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2143. "$type": "GeometrySaveData",
  2144. "Position": [
  2145. 560.0,
  2146. -240.0
  2147. ]
  2148. },
  2149. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2150. "$type": "StylingComponentSaveData",
  2151. "SubStyle": ".setVariable"
  2152. },
  2153. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2154. "$type": "PersistentIdComponentSaveData",
  2155. "PersistentId": "{FD86F379-D653-47CD-9B08-C9097F4D1CF0}"
  2156. }
  2157. }
  2158. }
  2159. },
  2160. {
  2161. "Key": {
  2162. "id": 664514366625838
  2163. },
  2164. "Value": {
  2165. "ComponentData": {
  2166. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2167. "$type": "GeneralNodeTitleComponentSaveData",
  2168. "PaletteOverride": "MethodNodeTitlePalette"
  2169. },
  2170. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2171. "$type": "GeometrySaveData",
  2172. "Position": [
  2173. -700.0,
  2174. 140.0
  2175. ]
  2176. },
  2177. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2178. "$type": "StylingComponentSaveData",
  2179. "SubStyle": ".method"
  2180. },
  2181. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2182. "$type": "PersistentIdComponentSaveData",
  2183. "PersistentId": "{E5128BC0-D716-4323-BC96-6E5DABE0B1A7}"
  2184. }
  2185. }
  2186. }
  2187. },
  2188. {
  2189. "Key": {
  2190. "id": 664518661593134
  2191. },
  2192. "Value": {
  2193. "ComponentData": {
  2194. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2195. "$type": "GeneralNodeTitleComponentSaveData",
  2196. "PaletteOverride": "SetVariableNodeTitlePalette"
  2197. },
  2198. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2199. "$type": "GeometrySaveData",
  2200. "Position": [
  2201. -280.0,
  2202. -240.0
  2203. ]
  2204. },
  2205. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2206. "$type": "StylingComponentSaveData",
  2207. "SubStyle": ".setVariable"
  2208. },
  2209. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2210. "$type": "PersistentIdComponentSaveData",
  2211. "PersistentId": "{E5421E71-EBD3-4273-ABC8-E50376A90942}"
  2212. }
  2213. }
  2214. }
  2215. },
  2216. {
  2217. "Key": {
  2218. "id": 664522956560430
  2219. },
  2220. "Value": {
  2221. "ComponentData": {
  2222. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2223. "$type": "GeneralNodeTitleComponentSaveData",
  2224. "PaletteOverride": "MethodNodeTitlePalette"
  2225. },
  2226. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2227. "$type": "GeometrySaveData",
  2228. "Position": [
  2229. 620.0,
  2230. 140.0
  2231. ]
  2232. },
  2233. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2234. "$type": "StylingComponentSaveData",
  2235. "SubStyle": ".method"
  2236. },
  2237. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2238. "$type": "PersistentIdComponentSaveData",
  2239. "PersistentId": "{F16AB389-D3A6-40E7-9709-9107CBBA3239}"
  2240. }
  2241. }
  2242. }
  2243. },
  2244. {
  2245. "Key": {
  2246. "id": 664527251527726
  2247. },
  2248. "Value": {
  2249. "ComponentData": {
  2250. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2251. "$type": "GeneralNodeTitleComponentSaveData",
  2252. "PaletteOverride": "MethodNodeTitlePalette"
  2253. },
  2254. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2255. "$type": "GeometrySaveData",
  2256. "Position": [
  2257. -400.0,
  2258. 140.0
  2259. ]
  2260. },
  2261. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2262. "$type": "StylingComponentSaveData",
  2263. "SubStyle": ".method"
  2264. },
  2265. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2266. "$type": "PersistentIdComponentSaveData",
  2267. "PersistentId": "{96913C8D-EFA5-44EB-B75B-8526349248B7}"
  2268. }
  2269. }
  2270. }
  2271. },
  2272. {
  2273. "Key": {
  2274. "id": 664531546495022
  2275. },
  2276. "Value": {
  2277. "ComponentData": {
  2278. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2279. "$type": "GeneralNodeTitleComponentSaveData",
  2280. "PaletteOverride": "MethodNodeTitlePalette"
  2281. },
  2282. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2283. "$type": "GeometrySaveData",
  2284. "Position": [
  2285. -80.0,
  2286. 140.0
  2287. ]
  2288. },
  2289. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2290. "$type": "StylingComponentSaveData",
  2291. "SubStyle": ".method"
  2292. },
  2293. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2294. "$type": "PersistentIdComponentSaveData",
  2295. "PersistentId": "{4FB49611-67FF-46EB-ADFC-066FF988A8ED}"
  2296. }
  2297. }
  2298. }
  2299. },
  2300. {
  2301. "Key": {
  2302. "id": 664535841462318
  2303. },
  2304. "Value": {
  2305. "ComponentData": {
  2306. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2307. "$type": "GeneralNodeTitleComponentSaveData",
  2308. "PaletteOverride": "SetVariableNodeTitlePalette"
  2309. },
  2310. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2311. "$type": "GeometrySaveData",
  2312. "Position": [
  2313. 140.0,
  2314. -240.0
  2315. ]
  2316. },
  2317. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2318. "$type": "StylingComponentSaveData",
  2319. "SubStyle": ".setVariable"
  2320. },
  2321. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2322. "$type": "PersistentIdComponentSaveData",
  2323. "PersistentId": "{839509C5-36FE-4E88-8BD5-65C2D85B2F4F}"
  2324. }
  2325. }
  2326. }
  2327. },
  2328. {
  2329. "Key": {
  2330. "id": 664540136429614
  2331. },
  2332. "Value": {
  2333. "ComponentData": {
  2334. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2335. "$type": "GeneralNodeTitleComponentSaveData",
  2336. "PaletteOverride": "TimeNodeTitlePalette"
  2337. },
  2338. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2339. "$type": "GeometrySaveData",
  2340. "Position": [
  2341. -920.0,
  2342. -240.0
  2343. ]
  2344. },
  2345. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2346. "$type": "StylingComponentSaveData",
  2347. "SubStyle": ".time"
  2348. },
  2349. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2350. "$type": "PersistentIdComponentSaveData",
  2351. "PersistentId": "{A625DB75-9564-40E2-B8A8-322AFC065F74}"
  2352. }
  2353. }
  2354. }
  2355. }
  2356. ],
  2357. "StatisticsHelper": {
  2358. "InstanceCounter": [
  2359. {
  2360. "Key": 524494764786010043,
  2361. "Value": 4
  2362. },
  2363. {
  2364. "Key": 4199610336680704683,
  2365. "Value": 1
  2366. },
  2367. {
  2368. "Key": 5969901346161352766,
  2369. "Value": 4
  2370. },
  2371. {
  2372. "Key": 6840657073857873079,
  2373. "Value": 1
  2374. }
  2375. ]
  2376. }
  2377. },
  2378. "Component_[2058679695354651877]": {
  2379. "$type": "EditorGraphVariableManagerComponent",
  2380. "Id": 2058679695354651877,
  2381. "m_variableData": {
  2382. "m_nameVariableMap": [
  2383. {
  2384. "Key": {
  2385. "m_id": "{26DA6155-390D-4DF1-B5F3-04C31788BA8B}"
  2386. },
  2387. "Value": {
  2388. "Datum": {
  2389. "scriptCanvasType": {
  2390. "m_type": 3
  2391. },
  2392. "isNullPointer": false,
  2393. "$type": "double",
  2394. "value": 9.0,
  2395. "label": "Number"
  2396. },
  2397. "VariableId": {
  2398. "m_id": "{26DA6155-390D-4DF1-B5F3-04C31788BA8B}"
  2399. },
  2400. "VariableName": "9"
  2401. }
  2402. },
  2403. {
  2404. "Key": {
  2405. "m_id": "{A14E7EE2-F0DC-4E15-BEE9-9B252EE42BD7}"
  2406. },
  2407. "Value": {
  2408. "Datum": {
  2409. "isOverloadedStorage": false,
  2410. "scriptCanvasType": {
  2411. "m_type": 3
  2412. },
  2413. "isNullPointer": false,
  2414. "$type": "double",
  2415. "value": 7.0,
  2416. "label": "Number"
  2417. },
  2418. "VariableId": {
  2419. "m_id": "{A14E7EE2-F0DC-4E15-BEE9-9B252EE42BD7}"
  2420. },
  2421. "VariableName": "7"
  2422. }
  2423. },
  2424. {
  2425. "Key": {
  2426. "m_id": "{D89BE525-0606-41CD-90B1-6EA9F40CDBF3}"
  2427. },
  2428. "Value": {
  2429. "Datum": {
  2430. "scriptCanvasType": {
  2431. "m_type": 3
  2432. },
  2433. "isNullPointer": false,
  2434. "$type": "double",
  2435. "value": 8.0,
  2436. "label": "8"
  2437. },
  2438. "VariableId": {
  2439. "m_id": "{D89BE525-0606-41CD-90B1-6EA9F40CDBF3}"
  2440. },
  2441. "VariableName": "8"
  2442. }
  2443. },
  2444. {
  2445. "Key": {
  2446. "m_id": "{EBF9C56B-A6B5-4987-A9FB-56B962E9B3C8}"
  2447. },
  2448. "Value": {
  2449. "Datum": {
  2450. "isOverloadedStorage": false,
  2451. "scriptCanvasType": {
  2452. "m_type": 8
  2453. },
  2454. "isNullPointer": false,
  2455. "$type": "Vector3",
  2456. "value": [
  2457. 7.0,
  2458. 8.0,
  2459. 9.0
  2460. ],
  2461. "label": "Vector3"
  2462. },
  2463. "VariableId": {
  2464. "m_id": "{EBF9C56B-A6B5-4987-A9FB-56B962E9B3C8}"
  2465. },
  2466. "VariableName": "v3_789"
  2467. }
  2468. }
  2469. ]
  2470. }
  2471. }
  2472. }
  2473. }
  2474. }
  2475. }