3
0

Test_EBusStringResultCStyle2String.scriptcanvas 140 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 517289195832487
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[17306256707454114737]": {
  13. "$type": "EditorGraph",
  14. "Id": 17306256707454114737,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 517327850538151
  20. },
  21. "Name": "1592806085095",
  22. "Components": {
  23. "Component_[12998171046766344572]": {
  24. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  25. "Id": 12998171046766344572,
  26. "Slots": [
  27. {
  28. "isVisibile": false,
  29. "id": {
  30. "m_id": "{34D9D95E-641E-41C7-925C-FF89656D2E17}"
  31. },
  32. "contracts": [
  33. {
  34. "$type": "SlotTypeContract"
  35. },
  36. null
  37. ],
  38. "slotName": "EntityID: 0",
  39. "Descriptor": {
  40. "ConnectionType": 1,
  41. "SlotType": 2
  42. },
  43. "DataType": 1
  44. },
  45. {
  46. "id": {
  47. "m_id": "{F1681D27-9FE3-41C0-B679-6AEE05C71F4C}"
  48. },
  49. "contracts": [
  50. {
  51. "$type": "SlotTypeContract"
  52. },
  53. null
  54. ],
  55. "slotName": "Report",
  56. "toolTip": "additional notes for the test report",
  57. "DisplayDataType": {
  58. "m_type": 5
  59. },
  60. "Descriptor": {
  61. "ConnectionType": 1,
  62. "SlotType": 2
  63. },
  64. "DataType": 1
  65. },
  66. {
  67. "id": {
  68. "m_id": "{F7B7DDF3-5DA7-4778-B99E-C07414710E7F}"
  69. },
  70. "contracts": [
  71. {
  72. "$type": "SlotTypeContract"
  73. }
  74. ],
  75. "slotName": "In",
  76. "Descriptor": {
  77. "ConnectionType": 1,
  78. "SlotType": 1
  79. }
  80. },
  81. {
  82. "id": {
  83. "m_id": "{37437A38-91B3-47A6-9670-5E8428716523}"
  84. },
  85. "contracts": [
  86. {
  87. "$type": "SlotTypeContract"
  88. }
  89. ],
  90. "slotName": "Out",
  91. "Descriptor": {
  92. "ConnectionType": 2,
  93. "SlotType": 1
  94. }
  95. }
  96. ],
  97. "Datums": [
  98. {
  99. "isOverloadedStorage": false,
  100. "scriptCanvasType": {
  101. "m_type": 1
  102. },
  103. "isNullPointer": false,
  104. "$type": "EntityId",
  105. "value": {
  106. "id": 4276206253
  107. }
  108. },
  109. {
  110. "isOverloadedStorage": false,
  111. "scriptCanvasType": {
  112. "m_type": 5
  113. },
  114. "isNullPointer": false,
  115. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  116. "value": "",
  117. "label": "Report"
  118. }
  119. ],
  120. "methodType": 2,
  121. "methodName": "Mark Complete",
  122. "className": "Unit Testing",
  123. "resultSlotIDs": [
  124. {}
  125. ],
  126. "prettyClassName": "Unit Testing"
  127. }
  128. }
  129. },
  130. {
  131. "Id": {
  132. "id": 517323555570855
  133. },
  134. "Name": "SC Node(GetVariable)",
  135. "Components": {
  136. "Component_[13389693943843674634]": {
  137. "$type": "GetVariableNode",
  138. "Id": 13389693943843674634,
  139. "Slots": [
  140. {
  141. "id": {
  142. "m_id": "{32DA661D-CE7B-4BE2-8AFD-957F97D133F9}"
  143. },
  144. "contracts": [
  145. {
  146. "$type": "SlotTypeContract"
  147. }
  148. ],
  149. "slotName": "In",
  150. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  151. "Descriptor": {
  152. "ConnectionType": 1,
  153. "SlotType": 1
  154. }
  155. },
  156. {
  157. "id": {
  158. "m_id": "{AFB3D72F-B3D3-4D94-8B8E-7D9CDCBAC7F2}"
  159. },
  160. "contracts": [
  161. {
  162. "$type": "SlotTypeContract"
  163. }
  164. ],
  165. "slotName": "Out",
  166. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  167. "Descriptor": {
  168. "ConnectionType": 2,
  169. "SlotType": 1
  170. }
  171. },
  172. {
  173. "id": {
  174. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  175. },
  176. "contracts": [
  177. {
  178. "$type": "SlotTypeContract"
  179. }
  180. ],
  181. "slotName": "String",
  182. "DisplayDataType": {
  183. "m_type": 5
  184. },
  185. "Descriptor": {
  186. "ConnectionType": 2,
  187. "SlotType": 2
  188. },
  189. "DataType": 1
  190. }
  191. ],
  192. "m_variableId": {
  193. "m_id": "{800D8836-B677-48B6-9CA5-BD1B78C0B30E}"
  194. },
  195. "m_variableDataOutSlotId": {
  196. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  197. }
  198. }
  199. }
  200. },
  201. {
  202. "Id": {
  203. "id": 517332145505447
  204. },
  205. "Name": "SC Node(GetVariable)",
  206. "Components": {
  207. "Component_[13389693943843674634]": {
  208. "$type": "GetVariableNode",
  209. "Id": 13389693943843674634,
  210. "Slots": [
  211. {
  212. "id": {
  213. "m_id": "{32DA661D-CE7B-4BE2-8AFD-957F97D133F9}"
  214. },
  215. "contracts": [
  216. {
  217. "$type": "SlotTypeContract"
  218. }
  219. ],
  220. "slotName": "In",
  221. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  222. "Descriptor": {
  223. "ConnectionType": 1,
  224. "SlotType": 1
  225. }
  226. },
  227. {
  228. "id": {
  229. "m_id": "{AFB3D72F-B3D3-4D94-8B8E-7D9CDCBAC7F2}"
  230. },
  231. "contracts": [
  232. {
  233. "$type": "SlotTypeContract"
  234. }
  235. ],
  236. "slotName": "Out",
  237. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  238. "Descriptor": {
  239. "ConnectionType": 2,
  240. "SlotType": 1
  241. }
  242. },
  243. {
  244. "id": {
  245. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  246. },
  247. "contracts": [
  248. {
  249. "$type": "SlotTypeContract"
  250. }
  251. ],
  252. "slotName": "String",
  253. "DisplayDataType": {
  254. "m_type": 5
  255. },
  256. "Descriptor": {
  257. "ConnectionType": 2,
  258. "SlotType": 2
  259. },
  260. "DataType": 1
  261. }
  262. ],
  263. "m_variableId": {
  264. "m_id": "{800D8836-B677-48B6-9CA5-BD1B78C0B30E}"
  265. },
  266. "m_variableDataOutSlotId": {
  267. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  268. }
  269. }
  270. }
  271. },
  272. {
  273. "Id": {
  274. "id": 517314965636263
  275. },
  276. "Name": "18595648880340",
  277. "Components": {
  278. "Component_[13557257422873249694]": {
  279. "$type": "MethodOverloaded",
  280. "Id": 13557257422873249694,
  281. "Slots": [
  282. {
  283. "isVisibile": false,
  284. "id": {
  285. "m_id": "{EC86A40A-CB6E-4A6E-B087-43A0B85E0592}"
  286. },
  287. "contracts": [
  288. {
  289. "$type": "SlotTypeContract"
  290. },
  291. null
  292. ],
  293. "slotName": "EntityID: 0",
  294. "DisplayDataType": {
  295. "m_type": 1
  296. },
  297. "Descriptor": {
  298. "ConnectionType": 1,
  299. "SlotType": 2
  300. },
  301. "DataType": 1
  302. },
  303. {
  304. "id": {
  305. "m_id": "{33D8EC8D-CBFA-405D-8AFC-F9FD59A1B281}"
  306. },
  307. "DynamicTypeOverride": 1,
  308. "contracts": [
  309. {
  310. "$type": "SlotTypeContract"
  311. },
  312. null,
  313. {
  314. "$type": "OverloadContract"
  315. }
  316. ],
  317. "slotName": "Candidate",
  318. "toolTip": "left of ==",
  319. "DisplayDataType": {
  320. "m_type": 5
  321. },
  322. "Descriptor": {
  323. "ConnectionType": 1,
  324. "SlotType": 2
  325. },
  326. "DataType": 1
  327. },
  328. {
  329. "id": {
  330. "m_id": "{467BC294-C78D-4647-B68A-DDC4726F403C}"
  331. },
  332. "DynamicTypeOverride": 1,
  333. "contracts": [
  334. {
  335. "$type": "SlotTypeContract"
  336. },
  337. null,
  338. {
  339. "$type": "OverloadContract"
  340. }
  341. ],
  342. "slotName": "Reference",
  343. "toolTip": "right of ==",
  344. "DisplayDataType": {
  345. "m_type": 5
  346. },
  347. "Descriptor": {
  348. "ConnectionType": 1,
  349. "SlotType": 2
  350. },
  351. "DataType": 1
  352. },
  353. {
  354. "id": {
  355. "m_id": "{A37465DA-CF47-43F6-8FAC-43822CC47AD6}"
  356. },
  357. "contracts": [
  358. {
  359. "$type": "SlotTypeContract"
  360. },
  361. null
  362. ],
  363. "slotName": "Report",
  364. "toolTip": "additional notes for the test report",
  365. "DisplayDataType": {
  366. "m_type": 5
  367. },
  368. "Descriptor": {
  369. "ConnectionType": 1,
  370. "SlotType": 2
  371. },
  372. "DataType": 1
  373. },
  374. {
  375. "id": {
  376. "m_id": "{D7D9FD45-B23A-4921-9ADD-2BB0BC2B6506}"
  377. },
  378. "contracts": [
  379. {
  380. "$type": "SlotTypeContract"
  381. }
  382. ],
  383. "slotName": "In",
  384. "Descriptor": {
  385. "ConnectionType": 1,
  386. "SlotType": 1
  387. }
  388. },
  389. {
  390. "id": {
  391. "m_id": "{263FD4A0-15CE-441E-AF99-11AB771D623F}"
  392. },
  393. "contracts": [
  394. {
  395. "$type": "SlotTypeContract"
  396. }
  397. ],
  398. "slotName": "Out",
  399. "Descriptor": {
  400. "ConnectionType": 2,
  401. "SlotType": 1
  402. }
  403. }
  404. ],
  405. "Datums": [
  406. {
  407. "isOverloadedStorage": false,
  408. "scriptCanvasType": {
  409. "m_type": 1
  410. },
  411. "isNullPointer": false,
  412. "$type": "EntityId",
  413. "value": {
  414. "id": 4276206253
  415. }
  416. },
  417. {
  418. "isOverloadedStorage": false,
  419. "scriptCanvasType": {
  420. "m_type": 5
  421. },
  422. "isNullPointer": false,
  423. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  424. "value": "",
  425. "label": "Candidate"
  426. },
  427. {
  428. "isOverloadedStorage": false,
  429. "scriptCanvasType": {
  430. "m_type": 5
  431. },
  432. "isNullPointer": false,
  433. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  434. "value": "",
  435. "label": "Reference"
  436. },
  437. {
  438. "isOverloadedStorage": false,
  439. "scriptCanvasType": {
  440. "m_type": 5
  441. },
  442. "isNullPointer": false,
  443. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  444. "value": "event result",
  445. "label": "Report"
  446. }
  447. ],
  448. "methodType": 2,
  449. "methodName": "Expect Equal",
  450. "className": "Unit Testing",
  451. "prettyClassName": "Unit Testing",
  452. "orderedInputSlotIds": [
  453. {
  454. "m_id": "{EC86A40A-CB6E-4A6E-B087-43A0B85E0592}"
  455. },
  456. {
  457. "m_id": "{33D8EC8D-CBFA-405D-8AFC-F9FD59A1B281}"
  458. },
  459. {
  460. "m_id": "{467BC294-C78D-4647-B68A-DDC4726F403C}"
  461. },
  462. {
  463. "m_id": "{A37465DA-CF47-43F6-8FAC-43822CC47AD6}"
  464. }
  465. ],
  466. "outputSlotIds": [
  467. {}
  468. ]
  469. }
  470. }
  471. },
  472. {
  473. "Id": {
  474. "id": 517306375701671
  475. },
  476. "Name": "SC-Node(EBus)",
  477. "Components": {
  478. "Component_[15323223402200523943]": {
  479. "$type": "EBusEventHandler",
  480. "Id": 15323223402200523943,
  481. "Slots": [
  482. {
  483. "id": {
  484. "m_id": "{AC8A30E0-8698-4BBB-AAA2-749C5345795C}"
  485. },
  486. "contracts": [
  487. {
  488. "$type": "SlotTypeContract"
  489. }
  490. ],
  491. "slotName": "Connect",
  492. "toolTip": "Connect this event handler to the specified entity.",
  493. "Descriptor": {
  494. "ConnectionType": 1,
  495. "SlotType": 1
  496. }
  497. },
  498. {
  499. "id": {
  500. "m_id": "{C77F44E4-A605-4C3A-A16B-23C8A73CE7A0}"
  501. },
  502. "contracts": [
  503. {
  504. "$type": "SlotTypeContract"
  505. }
  506. ],
  507. "slotName": "Disconnect",
  508. "toolTip": "Disconnect this event handler.",
  509. "Descriptor": {
  510. "ConnectionType": 1,
  511. "SlotType": 1
  512. }
  513. },
  514. {
  515. "id": {
  516. "m_id": "{A986EBB7-9561-472B-832F-AAC21FC22B8F}"
  517. },
  518. "contracts": [
  519. {
  520. "$type": "SlotTypeContract"
  521. }
  522. ],
  523. "slotName": "OnConnected",
  524. "toolTip": "Signaled when a connection has taken place.",
  525. "Descriptor": {
  526. "ConnectionType": 2,
  527. "SlotType": 1
  528. }
  529. },
  530. {
  531. "id": {
  532. "m_id": "{FC95257A-5C0B-4A99-B359-9E70F69C086D}"
  533. },
  534. "contracts": [
  535. {
  536. "$type": "SlotTypeContract"
  537. }
  538. ],
  539. "slotName": "OnDisconnected",
  540. "toolTip": "Signaled when this event handler is disconnected.",
  541. "Descriptor": {
  542. "ConnectionType": 2,
  543. "SlotType": 1
  544. }
  545. },
  546. {
  547. "id": {
  548. "m_id": "{E4DE429F-E5A3-40C1-A4BE-71B1AC6FE70B}"
  549. },
  550. "contracts": [
  551. {
  552. "$type": "SlotTypeContract"
  553. }
  554. ],
  555. "slotName": "OnFailure",
  556. "toolTip": "Signaled when it is not possible to connect this handler.",
  557. "Descriptor": {
  558. "ConnectionType": 2,
  559. "SlotType": 1
  560. }
  561. },
  562. {
  563. "id": {
  564. "m_id": "{7EBCFB38-1255-448D-8BBF-DDFF8DF673EE}"
  565. },
  566. "contracts": [
  567. {
  568. "$type": "SlotTypeContract"
  569. },
  570. {
  571. "$type": "RestrictedTypeContract"
  572. },
  573. null
  574. ],
  575. "slotName": "Result: String",
  576. "Descriptor": {
  577. "ConnectionType": 1,
  578. "SlotType": 2
  579. },
  580. "DataType": 1
  581. },
  582. {
  583. "id": {
  584. "m_id": "{58147922-7159-464D-88F6-E3544CFD7342}"
  585. },
  586. "contracts": [
  587. {
  588. "$type": "SlotTypeContract"
  589. }
  590. ],
  591. "slotName": "String",
  592. "DisplayDataType": {
  593. "m_type": 5
  594. },
  595. "Descriptor": {
  596. "ConnectionType": 2,
  597. "SlotType": 2
  598. },
  599. "DataType": 1
  600. },
  601. {
  602. "id": {
  603. "m_id": "{BAAFFBDD-941D-4A78-890D-3AC0CEF2F76D}"
  604. },
  605. "contracts": [
  606. {
  607. "$type": "SlotTypeContract"
  608. }
  609. ],
  610. "slotName": "ExecutionSlot:CStyleToCStyle",
  611. "Descriptor": {
  612. "ConnectionType": 2,
  613. "SlotType": 1
  614. },
  615. "IsLatent": true
  616. },
  617. {
  618. "id": {
  619. "m_id": "{6FD69390-2225-4B83-BA93-F1D3ADBA41CA}"
  620. },
  621. "contracts": [
  622. {
  623. "$type": "SlotTypeContract"
  624. },
  625. {
  626. "$type": "RestrictedTypeContract"
  627. },
  628. null
  629. ],
  630. "slotName": "Result: String",
  631. "Descriptor": {
  632. "ConnectionType": 1,
  633. "SlotType": 2
  634. },
  635. "DataType": 1
  636. },
  637. {
  638. "id": {
  639. "m_id": "{02ABA368-0223-4FAA-B281-1B15E401E862}"
  640. },
  641. "contracts": [
  642. {
  643. "$type": "SlotTypeContract"
  644. }
  645. ],
  646. "slotName": "String",
  647. "DisplayDataType": {
  648. "m_type": 5
  649. },
  650. "Descriptor": {
  651. "ConnectionType": 2,
  652. "SlotType": 2
  653. },
  654. "DataType": 1
  655. },
  656. {
  657. "id": {
  658. "m_id": "{E1F19BB3-8CC4-4BE8-B6E4-58BA0A5B3BE6}"
  659. },
  660. "contracts": [
  661. {
  662. "$type": "SlotTypeContract"
  663. }
  664. ],
  665. "slotName": "ExecutionSlot:CStyleToStringView",
  666. "Descriptor": {
  667. "ConnectionType": 2,
  668. "SlotType": 1
  669. },
  670. "IsLatent": true
  671. },
  672. {
  673. "id": {
  674. "m_id": "{D9FD8708-02C3-472B-A1E4-1A6A2C340A97}"
  675. },
  676. "contracts": [
  677. {
  678. "$type": "SlotTypeContract"
  679. },
  680. {
  681. "$type": "RestrictedTypeContract"
  682. },
  683. null
  684. ],
  685. "slotName": "Result: String",
  686. "Descriptor": {
  687. "ConnectionType": 1,
  688. "SlotType": 2
  689. },
  690. "DataType": 1
  691. },
  692. {
  693. "id": {
  694. "m_id": "{CF88E045-BA11-4CC8-A428-5F672AEECC6B}"
  695. },
  696. "contracts": [
  697. {
  698. "$type": "SlotTypeContract"
  699. }
  700. ],
  701. "slotName": "String",
  702. "DisplayDataType": {
  703. "m_type": 5
  704. },
  705. "Descriptor": {
  706. "ConnectionType": 2,
  707. "SlotType": 2
  708. },
  709. "DataType": 1
  710. },
  711. {
  712. "id": {
  713. "m_id": "{60D14BBC-6FBC-467E-A07C-59F4CC4BB135}"
  714. },
  715. "contracts": [
  716. {
  717. "$type": "SlotTypeContract"
  718. }
  719. ],
  720. "slotName": "ExecutionSlot:CStyleToString",
  721. "Descriptor": {
  722. "ConnectionType": 2,
  723. "SlotType": 1
  724. },
  725. "IsLatent": true
  726. },
  727. {
  728. "id": {
  729. "m_id": "{93A73323-5A7F-442B-BA65-2BBF1FDC658B}"
  730. },
  731. "contracts": [
  732. {
  733. "$type": "SlotTypeContract"
  734. },
  735. null
  736. ],
  737. "slotName": "Result: Number",
  738. "Descriptor": {
  739. "ConnectionType": 1,
  740. "SlotType": 2
  741. },
  742. "DataType": 1
  743. },
  744. {
  745. "id": {
  746. "m_id": "{AF824105-D66C-486F-8E8E-684D06BD50D1}"
  747. },
  748. "contracts": [
  749. {
  750. "$type": "SlotTypeContract"
  751. }
  752. ],
  753. "slotName": "Number",
  754. "DisplayDataType": {
  755. "m_type": 3
  756. },
  757. "Descriptor": {
  758. "ConnectionType": 2,
  759. "SlotType": 2
  760. },
  761. "DataType": 1
  762. },
  763. {
  764. "id": {
  765. "m_id": "{67BD802E-0F00-47E1-9C8D-250F7C9AACD9}"
  766. },
  767. "contracts": [
  768. {
  769. "$type": "SlotTypeContract"
  770. }
  771. ],
  772. "slotName": "ExecutionSlot:IntOne",
  773. "Descriptor": {
  774. "ConnectionType": 2,
  775. "SlotType": 1
  776. },
  777. "IsLatent": true
  778. },
  779. {
  780. "id": {
  781. "m_id": "{93829906-1F1F-4E57-9B6D-91500A1886A1}"
  782. },
  783. "contracts": [
  784. {
  785. "$type": "SlotTypeContract"
  786. },
  787. null
  788. ],
  789. "slotName": "Result: Number",
  790. "Descriptor": {
  791. "ConnectionType": 1,
  792. "SlotType": 2
  793. },
  794. "DataType": 1
  795. },
  796. {
  797. "id": {
  798. "m_id": "{6F1C15F2-1C28-464B-B23C-C1377FC4F605}"
  799. },
  800. "contracts": [
  801. {
  802. "$type": "SlotTypeContract"
  803. }
  804. ],
  805. "slotName": "Number",
  806. "DisplayDataType": {
  807. "m_type": 3
  808. },
  809. "Descriptor": {
  810. "ConnectionType": 2,
  811. "SlotType": 2
  812. },
  813. "DataType": 1
  814. },
  815. {
  816. "id": {
  817. "m_id": "{EECE893F-03AB-482C-A4DF-C03CB061DEB7}"
  818. },
  819. "contracts": [
  820. {
  821. "$type": "SlotTypeContract"
  822. }
  823. ],
  824. "slotName": "ExecutionSlot:IntTwo",
  825. "Descriptor": {
  826. "ConnectionType": 2,
  827. "SlotType": 1
  828. },
  829. "IsLatent": true
  830. },
  831. {
  832. "id": {
  833. "m_id": "{71CA1642-57B2-44F1-87F9-444A91870CDE}"
  834. },
  835. "contracts": [
  836. {
  837. "$type": "SlotTypeContract"
  838. },
  839. null
  840. ],
  841. "slotName": "Result: Number",
  842. "Descriptor": {
  843. "ConnectionType": 1,
  844. "SlotType": 2
  845. },
  846. "DataType": 1
  847. },
  848. {
  849. "id": {
  850. "m_id": "{EB832D3E-43E2-49E6-B7B0-725A10474503}"
  851. },
  852. "contracts": [
  853. {
  854. "$type": "SlotTypeContract"
  855. }
  856. ],
  857. "slotName": "Number",
  858. "DisplayDataType": {
  859. "m_type": 3
  860. },
  861. "Descriptor": {
  862. "ConnectionType": 2,
  863. "SlotType": 2
  864. },
  865. "DataType": 1
  866. },
  867. {
  868. "id": {
  869. "m_id": "{E2860C96-CDD2-47AB-AC88-16488F16FAC8}"
  870. },
  871. "contracts": [
  872. {
  873. "$type": "SlotTypeContract"
  874. }
  875. ],
  876. "slotName": "ExecutionSlot:IntThree",
  877. "Descriptor": {
  878. "ConnectionType": 2,
  879. "SlotType": 1
  880. },
  881. "IsLatent": true
  882. }
  883. ],
  884. "Datums": [
  885. {
  886. "isOverloadedStorage": false,
  887. "scriptCanvasType": {
  888. "m_type": 5
  889. },
  890. "isNullPointer": false,
  891. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  892. "value": "",
  893. "label": "Result: String"
  894. },
  895. {
  896. "isOverloadedStorage": false,
  897. "scriptCanvasType": {
  898. "m_type": 5
  899. },
  900. "isNullPointer": false,
  901. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  902. "value": "",
  903. "label": "Result: String"
  904. },
  905. {
  906. "isOverloadedStorage": false,
  907. "scriptCanvasType": {
  908. "m_type": 5
  909. },
  910. "isNullPointer": false,
  911. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  912. "value": "",
  913. "label": "Result: String"
  914. },
  915. {
  916. "isOverloadedStorage": false,
  917. "scriptCanvasType": {
  918. "m_type": 3
  919. },
  920. "isNullPointer": false,
  921. "$type": "double",
  922. "value": 0.0,
  923. "label": "Result: Number"
  924. },
  925. {
  926. "isOverloadedStorage": false,
  927. "scriptCanvasType": {
  928. "m_type": 3
  929. },
  930. "isNullPointer": false,
  931. "$type": "double",
  932. "value": 0.0,
  933. "label": "Result: Number"
  934. },
  935. {
  936. "isOverloadedStorage": false,
  937. "scriptCanvasType": {
  938. "m_type": 3
  939. },
  940. "isNullPointer": false,
  941. "$type": "double",
  942. "value": 0.0,
  943. "label": "Result: Number"
  944. }
  945. ],
  946. "m_eventMap": [
  947. {
  948. "Key": {
  949. "Value": 598574587
  950. },
  951. "Value": {
  952. "m_eventName": "CStyleToString",
  953. "m_eventId": {
  954. "Value": 598574587
  955. },
  956. "m_eventSlotId": {
  957. "m_id": "{60D14BBC-6FBC-467E-A07C-59F4CC4BB135}"
  958. },
  959. "m_resultSlotId": {
  960. "m_id": "{D9FD8708-02C3-472B-A1E4-1A6A2C340A97}"
  961. },
  962. "m_parameterSlotIds": [
  963. {
  964. "m_id": "{CF88E045-BA11-4CC8-A428-5F672AEECC6B}"
  965. }
  966. ],
  967. "m_numExpectedArguments": 1
  968. }
  969. },
  970. {
  971. "Key": {
  972. "Value": 1633366910
  973. },
  974. "Value": {
  975. "m_eventName": "IntThree",
  976. "m_eventId": {
  977. "Value": 1633366910
  978. },
  979. "m_eventSlotId": {
  980. "m_id": "{E2860C96-CDD2-47AB-AC88-16488F16FAC8}"
  981. },
  982. "m_resultSlotId": {
  983. "m_id": "{71CA1642-57B2-44F1-87F9-444A91870CDE}"
  984. },
  985. "m_parameterSlotIds": [
  986. {
  987. "m_id": "{EB832D3E-43E2-49E6-B7B0-725A10474503}"
  988. }
  989. ],
  990. "m_numExpectedArguments": 1
  991. }
  992. },
  993. {
  994. "Key": {
  995. "Value": 1999545458
  996. },
  997. "Value": {
  998. "m_eventName": "CStyleToCStyle",
  999. "m_eventId": {
  1000. "Value": 1999545458
  1001. },
  1002. "m_eventSlotId": {
  1003. "m_id": "{BAAFFBDD-941D-4A78-890D-3AC0CEF2F76D}"
  1004. },
  1005. "m_resultSlotId": {
  1006. "m_id": "{7EBCFB38-1255-448D-8BBF-DDFF8DF673EE}"
  1007. },
  1008. "m_parameterSlotIds": [
  1009. {
  1010. "m_id": "{58147922-7159-464D-88F6-E3544CFD7342}"
  1011. }
  1012. ],
  1013. "m_numExpectedArguments": 1
  1014. }
  1015. },
  1016. {
  1017. "Key": {
  1018. "Value": 3001897634
  1019. },
  1020. "Value": {
  1021. "m_eventName": "IntTwo",
  1022. "m_eventId": {
  1023. "Value": 3001897634
  1024. },
  1025. "m_eventSlotId": {
  1026. "m_id": "{EECE893F-03AB-482C-A4DF-C03CB061DEB7}"
  1027. },
  1028. "m_resultSlotId": {
  1029. "m_id": "{93829906-1F1F-4E57-9B6D-91500A1886A1}"
  1030. },
  1031. "m_parameterSlotIds": [
  1032. {
  1033. "m_id": "{6F1C15F2-1C28-464B-B23C-C1377FC4F605}"
  1034. }
  1035. ],
  1036. "m_numExpectedArguments": 1
  1037. }
  1038. },
  1039. {
  1040. "Key": {
  1041. "Value": 3645595189
  1042. },
  1043. "Value": {
  1044. "m_eventName": "IntOne",
  1045. "m_eventId": {
  1046. "Value": 3645595189
  1047. },
  1048. "m_eventSlotId": {
  1049. "m_id": "{67BD802E-0F00-47E1-9C8D-250F7C9AACD9}"
  1050. },
  1051. "m_resultSlotId": {
  1052. "m_id": "{93A73323-5A7F-442B-BA65-2BBF1FDC658B}"
  1053. },
  1054. "m_parameterSlotIds": [
  1055. {
  1056. "m_id": "{AF824105-D66C-486F-8E8E-684D06BD50D1}"
  1057. }
  1058. ],
  1059. "m_numExpectedArguments": 1
  1060. }
  1061. },
  1062. {
  1063. "Key": {
  1064. "Value": 4054470805
  1065. },
  1066. "Value": {
  1067. "m_eventName": "CStyleToStringView",
  1068. "m_eventId": {
  1069. "Value": 4054470805
  1070. },
  1071. "m_eventSlotId": {
  1072. "m_id": "{E1F19BB3-8CC4-4BE8-B6E4-58BA0A5B3BE6}"
  1073. },
  1074. "m_resultSlotId": {
  1075. "m_id": "{6FD69390-2225-4B83-BA93-F1D3ADBA41CA}"
  1076. },
  1077. "m_parameterSlotIds": [
  1078. {
  1079. "m_id": "{02ABA368-0223-4FAA-B281-1B15E401E862}"
  1080. }
  1081. ],
  1082. "m_numExpectedArguments": 1
  1083. }
  1084. }
  1085. ],
  1086. "m_ebusName": "EBus",
  1087. "m_busId": {
  1088. "Value": 4255869526
  1089. }
  1090. }
  1091. }
  1092. },
  1093. {
  1094. "Id": {
  1095. "id": 517302080734375
  1096. },
  1097. "Name": "18595648880340",
  1098. "Components": {
  1099. "Component_[2568496560974922585]": {
  1100. "$type": "MethodOverloaded",
  1101. "Id": 2568496560974922585,
  1102. "Slots": [
  1103. {
  1104. "isVisibile": false,
  1105. "id": {
  1106. "m_id": "{7D940CDD-8FFF-42F1-95F2-D9377F2811A7}"
  1107. },
  1108. "contracts": [
  1109. {
  1110. "$type": "SlotTypeContract"
  1111. },
  1112. null
  1113. ],
  1114. "slotName": "EntityID: 0",
  1115. "DisplayDataType": {
  1116. "m_type": 1
  1117. },
  1118. "Descriptor": {
  1119. "ConnectionType": 1,
  1120. "SlotType": 2
  1121. },
  1122. "DataType": 1
  1123. },
  1124. {
  1125. "id": {
  1126. "m_id": "{88385644-1A85-455C-B1CC-5F671DD6775C}"
  1127. },
  1128. "DynamicTypeOverride": 1,
  1129. "contracts": [
  1130. {
  1131. "$type": "SlotTypeContract"
  1132. },
  1133. null,
  1134. {
  1135. "$type": "OverloadContract"
  1136. }
  1137. ],
  1138. "slotName": "Candidate",
  1139. "toolTip": "left of ==",
  1140. "DisplayDataType": {
  1141. "m_type": 5
  1142. },
  1143. "Descriptor": {
  1144. "ConnectionType": 1,
  1145. "SlotType": 2
  1146. },
  1147. "DataType": 1
  1148. },
  1149. {
  1150. "id": {
  1151. "m_id": "{96B774A5-95B9-40BB-A703-A2E39F908736}"
  1152. },
  1153. "DynamicTypeOverride": 1,
  1154. "contracts": [
  1155. {
  1156. "$type": "SlotTypeContract"
  1157. },
  1158. null,
  1159. {
  1160. "$type": "OverloadContract"
  1161. }
  1162. ],
  1163. "slotName": "Reference",
  1164. "toolTip": "right of ==",
  1165. "DisplayDataType": {
  1166. "m_type": 5
  1167. },
  1168. "Descriptor": {
  1169. "ConnectionType": 1,
  1170. "SlotType": 2
  1171. },
  1172. "DataType": 1
  1173. },
  1174. {
  1175. "id": {
  1176. "m_id": "{ACED90A4-6BAD-4D98-A4CE-696F48B720F2}"
  1177. },
  1178. "contracts": [
  1179. {
  1180. "$type": "SlotTypeContract"
  1181. },
  1182. null
  1183. ],
  1184. "slotName": "Report",
  1185. "toolTip": "additional notes for the test report",
  1186. "DisplayDataType": {
  1187. "m_type": 5
  1188. },
  1189. "Descriptor": {
  1190. "ConnectionType": 1,
  1191. "SlotType": 2
  1192. },
  1193. "DataType": 1
  1194. },
  1195. {
  1196. "id": {
  1197. "m_id": "{B7BBDE0F-6905-43C7-80BD-73E3BE0CFB61}"
  1198. },
  1199. "contracts": [
  1200. {
  1201. "$type": "SlotTypeContract"
  1202. }
  1203. ],
  1204. "slotName": "In",
  1205. "Descriptor": {
  1206. "ConnectionType": 1,
  1207. "SlotType": 1
  1208. }
  1209. },
  1210. {
  1211. "id": {
  1212. "m_id": "{B3DCE05B-104D-4893-A8F5-F6E978EE7C89}"
  1213. },
  1214. "contracts": [
  1215. {
  1216. "$type": "SlotTypeContract"
  1217. }
  1218. ],
  1219. "slotName": "Out",
  1220. "Descriptor": {
  1221. "ConnectionType": 2,
  1222. "SlotType": 1
  1223. }
  1224. }
  1225. ],
  1226. "Datums": [
  1227. {
  1228. "isOverloadedStorage": false,
  1229. "scriptCanvasType": {
  1230. "m_type": 1
  1231. },
  1232. "isNullPointer": false,
  1233. "$type": "EntityId",
  1234. "value": {
  1235. "id": 4276206253
  1236. }
  1237. },
  1238. {
  1239. "isOverloadedStorage": false,
  1240. "scriptCanvasType": {
  1241. "m_type": 5
  1242. },
  1243. "isNullPointer": false,
  1244. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1245. "value": "",
  1246. "label": "Candidate"
  1247. },
  1248. {
  1249. "isOverloadedStorage": false,
  1250. "scriptCanvasType": {
  1251. "m_type": 5
  1252. },
  1253. "isNullPointer": false,
  1254. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1255. "value": "",
  1256. "label": "Reference"
  1257. },
  1258. {
  1259. "isOverloadedStorage": false,
  1260. "scriptCanvasType": {
  1261. "m_type": 5
  1262. },
  1263. "isNullPointer": false,
  1264. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1265. "value": "event argument",
  1266. "label": "Report"
  1267. }
  1268. ],
  1269. "methodType": 2,
  1270. "methodName": "Expect Equal",
  1271. "className": "Unit Testing",
  1272. "prettyClassName": "Unit Testing",
  1273. "orderedInputSlotIds": [
  1274. {
  1275. "m_id": "{7D940CDD-8FFF-42F1-95F2-D9377F2811A7}"
  1276. },
  1277. {
  1278. "m_id": "{88385644-1A85-455C-B1CC-5F671DD6775C}"
  1279. },
  1280. {
  1281. "m_id": "{96B774A5-95B9-40BB-A703-A2E39F908736}"
  1282. },
  1283. {
  1284. "m_id": "{ACED90A4-6BAD-4D98-A4CE-696F48B720F2}"
  1285. }
  1286. ],
  1287. "outputSlotIds": [
  1288. {}
  1289. ]
  1290. }
  1291. }
  1292. },
  1293. {
  1294. "Id": {
  1295. "id": 517293490799783
  1296. },
  1297. "Name": "SC Node(GetVariable)",
  1298. "Components": {
  1299. "Component_[3402028962700214620]": {
  1300. "$type": "GetVariableNode",
  1301. "Id": 3402028962700214620,
  1302. "Slots": [
  1303. {
  1304. "id": {
  1305. "m_id": "{2610A513-01B6-4CB1-9AC0-E14EC7DC33EA}"
  1306. },
  1307. "contracts": [
  1308. {
  1309. "$type": "SlotTypeContract"
  1310. }
  1311. ],
  1312. "slotName": "In",
  1313. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1314. "Descriptor": {
  1315. "ConnectionType": 1,
  1316. "SlotType": 1
  1317. }
  1318. },
  1319. {
  1320. "id": {
  1321. "m_id": "{803833F9-A3D1-43FA-8607-DD2AFE0F8BB5}"
  1322. },
  1323. "contracts": [
  1324. {
  1325. "$type": "SlotTypeContract"
  1326. }
  1327. ],
  1328. "slotName": "Out",
  1329. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1330. "Descriptor": {
  1331. "ConnectionType": 2,
  1332. "SlotType": 1
  1333. }
  1334. },
  1335. {
  1336. "id": {
  1337. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  1338. },
  1339. "contracts": [
  1340. {
  1341. "$type": "SlotTypeContract"
  1342. }
  1343. ],
  1344. "slotName": "String",
  1345. "DisplayDataType": {
  1346. "m_type": 5
  1347. },
  1348. "Descriptor": {
  1349. "ConnectionType": 2,
  1350. "SlotType": 2
  1351. },
  1352. "DataType": 1
  1353. }
  1354. ],
  1355. "m_variableId": {
  1356. "m_id": "{43D9E1A0-6DEA-445B-A942-11FE41A5B9C7}"
  1357. },
  1358. "m_variableDataOutSlotId": {
  1359. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  1360. }
  1361. }
  1362. }
  1363. },
  1364. {
  1365. "Id": {
  1366. "id": 517297785767079
  1367. },
  1368. "Name": "SC Node(GetVariable)",
  1369. "Components": {
  1370. "Component_[3402028962700214620]": {
  1371. "$type": "GetVariableNode",
  1372. "Id": 3402028962700214620,
  1373. "Slots": [
  1374. {
  1375. "id": {
  1376. "m_id": "{2610A513-01B6-4CB1-9AC0-E14EC7DC33EA}"
  1377. },
  1378. "contracts": [
  1379. {
  1380. "$type": "SlotTypeContract"
  1381. }
  1382. ],
  1383. "slotName": "In",
  1384. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1385. "Descriptor": {
  1386. "ConnectionType": 1,
  1387. "SlotType": 1
  1388. }
  1389. },
  1390. {
  1391. "id": {
  1392. "m_id": "{803833F9-A3D1-43FA-8607-DD2AFE0F8BB5}"
  1393. },
  1394. "contracts": [
  1395. {
  1396. "$type": "SlotTypeContract"
  1397. }
  1398. ],
  1399. "slotName": "Out",
  1400. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1401. "Descriptor": {
  1402. "ConnectionType": 2,
  1403. "SlotType": 1
  1404. }
  1405. },
  1406. {
  1407. "id": {
  1408. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  1409. },
  1410. "contracts": [
  1411. {
  1412. "$type": "SlotTypeContract"
  1413. }
  1414. ],
  1415. "slotName": "String",
  1416. "DisplayDataType": {
  1417. "m_type": 5
  1418. },
  1419. "Descriptor": {
  1420. "ConnectionType": 2,
  1421. "SlotType": 2
  1422. },
  1423. "DataType": 1
  1424. }
  1425. ],
  1426. "m_variableId": {
  1427. "m_id": "{43D9E1A0-6DEA-445B-A942-11FE41A5B9C7}"
  1428. },
  1429. "m_variableDataOutSlotId": {
  1430. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  1431. }
  1432. }
  1433. }
  1434. },
  1435. {
  1436. "Id": {
  1437. "id": 517319260603559
  1438. },
  1439. "Name": "SC-Node(CStyleToString)",
  1440. "Components": {
  1441. "Component_[4310292778986658526]": {
  1442. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1443. "Id": 4310292778986658526,
  1444. "Slots": [
  1445. {
  1446. "id": {
  1447. "m_id": "{93995CF4-E40B-4ED3-8920-6488838C402B}"
  1448. },
  1449. "contracts": [
  1450. {
  1451. "$type": "SlotTypeContract"
  1452. }
  1453. ],
  1454. "slotName": "Result: String",
  1455. "DisplayDataType": {
  1456. "m_type": 5
  1457. },
  1458. "Descriptor": {
  1459. "ConnectionType": 2,
  1460. "SlotType": 2
  1461. },
  1462. "DataType": 1
  1463. },
  1464. {
  1465. "id": {
  1466. "m_id": "{CEE89967-6EFB-4712-90B6-FFD61A35FC49}"
  1467. },
  1468. "contracts": [
  1469. {
  1470. "$type": "SlotTypeContract"
  1471. },
  1472. {
  1473. "$type": "RestrictedTypeContract"
  1474. },
  1475. null
  1476. ],
  1477. "slotName": "String: 0",
  1478. "Descriptor": {
  1479. "ConnectionType": 1,
  1480. "SlotType": 2
  1481. },
  1482. "DataType": 1
  1483. },
  1484. {
  1485. "id": {
  1486. "m_id": "{E9EA0414-3A62-4D8F-85C4-A6EC6AEE4BF6}"
  1487. },
  1488. "contracts": [
  1489. {
  1490. "$type": "SlotTypeContract"
  1491. }
  1492. ],
  1493. "slotName": "In",
  1494. "Descriptor": {
  1495. "ConnectionType": 1,
  1496. "SlotType": 1
  1497. }
  1498. },
  1499. {
  1500. "id": {
  1501. "m_id": "{13E0C819-C40F-4BB4-8490-D51608510815}"
  1502. },
  1503. "contracts": [
  1504. {
  1505. "$type": "SlotTypeContract"
  1506. }
  1507. ],
  1508. "slotName": "Out",
  1509. "Descriptor": {
  1510. "ConnectionType": 2,
  1511. "SlotType": 1
  1512. }
  1513. }
  1514. ],
  1515. "Datums": [
  1516. {
  1517. "isOverloadedStorage": false,
  1518. "scriptCanvasType": {
  1519. "m_type": 5
  1520. },
  1521. "isNullPointer": false,
  1522. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1523. "value": "",
  1524. "label": "String: 0"
  1525. }
  1526. ],
  1527. "methodType": 0,
  1528. "methodName": "CStyleToString",
  1529. "className": "EBus",
  1530. "resultSlotIDs": [
  1531. {
  1532. "m_id": "{93995CF4-E40B-4ED3-8920-6488838C402B}"
  1533. }
  1534. ],
  1535. "prettyClassName": "EBus"
  1536. }
  1537. }
  1538. },
  1539. {
  1540. "Id": {
  1541. "id": 517310670668967
  1542. },
  1543. "Name": "948560990695",
  1544. "Components": {
  1545. "Component_[4976643160137254202]": {
  1546. "$type": "Start",
  1547. "Id": 4976643160137254202,
  1548. "Slots": [
  1549. {
  1550. "id": {
  1551. "m_id": "{82281162-E993-4CC5-BF15-11B4F14B08DD}"
  1552. },
  1553. "contracts": [
  1554. {
  1555. "$type": "SlotTypeContract"
  1556. }
  1557. ],
  1558. "slotName": "Out",
  1559. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1560. "Descriptor": {
  1561. "ConnectionType": 2,
  1562. "SlotType": 1
  1563. }
  1564. }
  1565. ]
  1566. }
  1567. }
  1568. }
  1569. ],
  1570. "m_connections": [
  1571. {
  1572. "Id": {
  1573. "id": 517336440472743
  1574. },
  1575. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
  1576. "Components": {
  1577. "Component_[8407969151006905974]": {
  1578. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1579. "Id": 8407969151006905974,
  1580. "sourceEndpoint": {
  1581. "nodeId": {
  1582. "id": 517310670668967
  1583. },
  1584. "slotId": {
  1585. "m_id": "{82281162-E993-4CC5-BF15-11B4F14B08DD}"
  1586. }
  1587. },
  1588. "targetEndpoint": {
  1589. "nodeId": {
  1590. "id": 517332145505447
  1591. },
  1592. "slotId": {
  1593. "m_id": "{32DA661D-CE7B-4BE2-8AFD-957F97D133F9}"
  1594. }
  1595. }
  1596. }
  1597. }
  1598. },
  1599. {
  1600. "Id": {
  1601. "id": 517340735440039
  1602. },
  1603. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Method: In)",
  1604. "Components": {
  1605. "Component_[13512058191331707509]": {
  1606. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1607. "Id": 13512058191331707509,
  1608. "sourceEndpoint": {
  1609. "nodeId": {
  1610. "id": 517332145505447
  1611. },
  1612. "slotId": {
  1613. "m_id": "{AFB3D72F-B3D3-4D94-8B8E-7D9CDCBAC7F2}"
  1614. }
  1615. },
  1616. "targetEndpoint": {
  1617. "nodeId": {
  1618. "id": 517319260603559
  1619. },
  1620. "slotId": {
  1621. "m_id": "{E9EA0414-3A62-4D8F-85C4-A6EC6AEE4BF6}"
  1622. }
  1623. }
  1624. }
  1625. }
  1626. },
  1627. {
  1628. "Id": {
  1629. "id": 517345030407335
  1630. },
  1631. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Method: String: 0)",
  1632. "Components": {
  1633. "Component_[14541957883473761826]": {
  1634. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1635. "Id": 14541957883473761826,
  1636. "sourceEndpoint": {
  1637. "nodeId": {
  1638. "id": 517332145505447
  1639. },
  1640. "slotId": {
  1641. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  1642. }
  1643. },
  1644. "targetEndpoint": {
  1645. "nodeId": {
  1646. "id": 517319260603559
  1647. },
  1648. "slotId": {
  1649. "m_id": "{CEE89967-6EFB-4712-90B6-FFD61A35FC49}"
  1650. }
  1651. }
  1652. }
  1653. }
  1654. },
  1655. {
  1656. "Id": {
  1657. "id": 517349325374631
  1658. },
  1659. "Name": "srcEndpoint=(Method: Out), destEndpoint=(Get Variable: In)",
  1660. "Components": {
  1661. "Component_[17398086621469850051]": {
  1662. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1663. "Id": 17398086621469850051,
  1664. "sourceEndpoint": {
  1665. "nodeId": {
  1666. "id": 517319260603559
  1667. },
  1668. "slotId": {
  1669. "m_id": "{13E0C819-C40F-4BB4-8490-D51608510815}"
  1670. }
  1671. },
  1672. "targetEndpoint": {
  1673. "nodeId": {
  1674. "id": 517297785767079
  1675. },
  1676. "slotId": {
  1677. "m_id": "{2610A513-01B6-4CB1-9AC0-E14EC7DC33EA}"
  1678. }
  1679. }
  1680. }
  1681. }
  1682. },
  1683. {
  1684. "Id": {
  1685. "id": 517353620341927
  1686. },
  1687. "Name": "srcEndpoint=(Event Handler: ExecutionSlot:CStyleToString), destEndpoint=(Get Variable: In)",
  1688. "Components": {
  1689. "Component_[10579941062843424852]": {
  1690. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1691. "Id": 10579941062843424852,
  1692. "sourceEndpoint": {
  1693. "nodeId": {
  1694. "id": 517306375701671
  1695. },
  1696. "slotId": {
  1697. "m_id": "{60D14BBC-6FBC-467E-A07C-59F4CC4BB135}"
  1698. }
  1699. },
  1700. "targetEndpoint": {
  1701. "nodeId": {
  1702. "id": 517323555570855
  1703. },
  1704. "slotId": {
  1705. "m_id": "{32DA661D-CE7B-4BE2-8AFD-957F97D133F9}"
  1706. }
  1707. }
  1708. }
  1709. }
  1710. },
  1711. {
  1712. "Id": {
  1713. "id": 517357915309223
  1714. },
  1715. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Event Handler: Result: String)",
  1716. "Components": {
  1717. "Component_[10646073289717524901]": {
  1718. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1719. "Id": 10646073289717524901,
  1720. "sourceEndpoint": {
  1721. "nodeId": {
  1722. "id": 517293490799783
  1723. },
  1724. "slotId": {
  1725. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  1726. }
  1727. },
  1728. "targetEndpoint": {
  1729. "nodeId": {
  1730. "id": 517306375701671
  1731. },
  1732. "slotId": {
  1733. "m_id": "{D9FD8708-02C3-472B-A1E4-1A6A2C340A97}"
  1734. }
  1735. }
  1736. }
  1737. }
  1738. },
  1739. {
  1740. "Id": {
  1741. "id": 517362210276519
  1742. },
  1743. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  1744. "Components": {
  1745. "Component_[8702862524085506943]": {
  1746. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1747. "Id": 8702862524085506943,
  1748. "sourceEndpoint": {
  1749. "nodeId": {
  1750. "id": 517323555570855
  1751. },
  1752. "slotId": {
  1753. "m_id": "{AFB3D72F-B3D3-4D94-8B8E-7D9CDCBAC7F2}"
  1754. }
  1755. },
  1756. "targetEndpoint": {
  1757. "nodeId": {
  1758. "id": 517302080734375
  1759. },
  1760. "slotId": {
  1761. "m_id": "{B7BBDE0F-6905-43C7-80BD-73E3BE0CFB61}"
  1762. }
  1763. }
  1764. }
  1765. }
  1766. },
  1767. {
  1768. "Id": {
  1769. "id": 517366505243815
  1770. },
  1771. "Name": "srcEndpoint=(EBus Handler: String), destEndpoint=(Expect Equal: Candidate)",
  1772. "Components": {
  1773. "Component_[4820070594481755561]": {
  1774. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1775. "Id": 4820070594481755561,
  1776. "sourceEndpoint": {
  1777. "nodeId": {
  1778. "id": 517306375701671
  1779. },
  1780. "slotId": {
  1781. "m_id": "{CF88E045-BA11-4CC8-A428-5F672AEECC6B}"
  1782. }
  1783. },
  1784. "targetEndpoint": {
  1785. "nodeId": {
  1786. "id": 517302080734375
  1787. },
  1788. "slotId": {
  1789. "m_id": "{88385644-1A85-455C-B1CC-5F671DD6775C}"
  1790. }
  1791. }
  1792. }
  1793. }
  1794. },
  1795. {
  1796. "Id": {
  1797. "id": 517370800211111
  1798. },
  1799. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Variable: In)",
  1800. "Components": {
  1801. "Component_[17635580996745270578]": {
  1802. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1803. "Id": 17635580996745270578,
  1804. "sourceEndpoint": {
  1805. "nodeId": {
  1806. "id": 517302080734375
  1807. },
  1808. "slotId": {
  1809. "m_id": "{B3DCE05B-104D-4893-A8F5-F6E978EE7C89}"
  1810. }
  1811. },
  1812. "targetEndpoint": {
  1813. "nodeId": {
  1814. "id": 517293490799783
  1815. },
  1816. "slotId": {
  1817. "m_id": "{2610A513-01B6-4CB1-9AC0-E14EC7DC33EA}"
  1818. }
  1819. }
  1820. }
  1821. }
  1822. },
  1823. {
  1824. "Id": {
  1825. "id": 517375095178407
  1826. },
  1827. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Expect Equal: Reference)",
  1828. "Components": {
  1829. "Component_[16278343100248026365]": {
  1830. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1831. "Id": 16278343100248026365,
  1832. "sourceEndpoint": {
  1833. "nodeId": {
  1834. "id": 517323555570855
  1835. },
  1836. "slotId": {
  1837. "m_id": "{9829A9D7-C0D5-4E74-91DF-96AA8D443E8A}"
  1838. }
  1839. },
  1840. "targetEndpoint": {
  1841. "nodeId": {
  1842. "id": 517302080734375
  1843. },
  1844. "slotId": {
  1845. "m_id": "{96B774A5-95B9-40BB-A703-A2E39F908736}"
  1846. }
  1847. }
  1848. }
  1849. }
  1850. },
  1851. {
  1852. "Id": {
  1853. "id": 517379390145703
  1854. },
  1855. "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Expect Equal: Reference)",
  1856. "Components": {
  1857. "Component_[10071549979731987369]": {
  1858. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1859. "Id": 10071549979731987369,
  1860. "sourceEndpoint": {
  1861. "nodeId": {
  1862. "id": 517297785767079
  1863. },
  1864. "slotId": {
  1865. "m_id": "{E351E238-28F4-414F-B504-53466C516E86}"
  1866. }
  1867. },
  1868. "targetEndpoint": {
  1869. "nodeId": {
  1870. "id": 517314965636263
  1871. },
  1872. "slotId": {
  1873. "m_id": "{467BC294-C78D-4647-B68A-DDC4726F403C}"
  1874. }
  1875. }
  1876. }
  1877. }
  1878. },
  1879. {
  1880. "Id": {
  1881. "id": 517383685112999
  1882. },
  1883. "Name": "srcEndpoint=(CStyleToString: Result: String), destEndpoint=(Expect Equal: Candidate)",
  1884. "Components": {
  1885. "Component_[10365823266809951338]": {
  1886. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1887. "Id": 10365823266809951338,
  1888. "sourceEndpoint": {
  1889. "nodeId": {
  1890. "id": 517319260603559
  1891. },
  1892. "slotId": {
  1893. "m_id": "{93995CF4-E40B-4ED3-8920-6488838C402B}"
  1894. }
  1895. },
  1896. "targetEndpoint": {
  1897. "nodeId": {
  1898. "id": 517314965636263
  1899. },
  1900. "slotId": {
  1901. "m_id": "{33D8EC8D-CBFA-405D-8AFC-F9FD59A1B281}"
  1902. }
  1903. }
  1904. }
  1905. }
  1906. },
  1907. {
  1908. "Id": {
  1909. "id": 517387980080295
  1910. },
  1911. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  1912. "Components": {
  1913. "Component_[1282610307007854799]": {
  1914. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1915. "Id": 1282610307007854799,
  1916. "sourceEndpoint": {
  1917. "nodeId": {
  1918. "id": 517297785767079
  1919. },
  1920. "slotId": {
  1921. "m_id": "{803833F9-A3D1-43FA-8607-DD2AFE0F8BB5}"
  1922. }
  1923. },
  1924. "targetEndpoint": {
  1925. "nodeId": {
  1926. "id": 517314965636263
  1927. },
  1928. "slotId": {
  1929. "m_id": "{D7D9FD45-B23A-4921-9ADD-2BB0BC2B6506}"
  1930. }
  1931. }
  1932. }
  1933. }
  1934. },
  1935. {
  1936. "Id": {
  1937. "id": 517392275047591
  1938. },
  1939. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  1940. "Components": {
  1941. "Component_[11977434011100653641]": {
  1942. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1943. "Id": 11977434011100653641,
  1944. "sourceEndpoint": {
  1945. "nodeId": {
  1946. "id": 517314965636263
  1947. },
  1948. "slotId": {
  1949. "m_id": "{263FD4A0-15CE-441E-AF99-11AB771D623F}"
  1950. }
  1951. },
  1952. "targetEndpoint": {
  1953. "nodeId": {
  1954. "id": 517327850538151
  1955. },
  1956. "slotId": {
  1957. "m_id": "{F7B7DDF3-5DA7-4778-B99E-C07414710E7F}"
  1958. }
  1959. }
  1960. }
  1961. }
  1962. }
  1963. ]
  1964. },
  1965. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  1966. "versionData": {
  1967. "_grammarVersion": 1,
  1968. "_runtimeVersion": 1,
  1969. "_fileVersion": 1
  1970. },
  1971. "m_variableCounter": 3,
  1972. "GraphCanvasData": [
  1973. {
  1974. "Key": {
  1975. "id": 517289195832487
  1976. },
  1977. "Value": {
  1978. "ComponentData": {
  1979. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  1980. "$type": "SceneComponentSaveData",
  1981. "ViewParams": {
  1982. "Scale": 0.85,
  1983. "AnchorX": -81.17646789550781,
  1984. "AnchorY": 54.117645263671875
  1985. }
  1986. }
  1987. }
  1988. }
  1989. },
  1990. {
  1991. "Key": {
  1992. "id": 517293490799783
  1993. },
  1994. "Value": {
  1995. "ComponentData": {
  1996. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  1997. "$type": "NodeSaveData"
  1998. },
  1999. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2000. "$type": "GeneralNodeTitleComponentSaveData",
  2001. "PaletteOverride": "GetVariableNodeTitlePalette"
  2002. },
  2003. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2004. "$type": "GeometrySaveData",
  2005. "Position": [
  2006. 40.0,
  2007. 800.0
  2008. ]
  2009. },
  2010. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2011. "$type": "StylingComponentSaveData",
  2012. "SubStyle": ".getVariable"
  2013. },
  2014. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2015. "$type": "PersistentIdComponentSaveData",
  2016. "PersistentId": "{D454636F-C377-4A4A-B7C5-60C14F137340}"
  2017. }
  2018. }
  2019. }
  2020. },
  2021. {
  2022. "Key": {
  2023. "id": 517297785767079
  2024. },
  2025. "Value": {
  2026. "ComponentData": {
  2027. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2028. "$type": "NodeSaveData"
  2029. },
  2030. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2031. "$type": "GeneralNodeTitleComponentSaveData",
  2032. "PaletteOverride": "GetVariableNodeTitlePalette"
  2033. },
  2034. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2035. "$type": "GeometrySaveData",
  2036. "Position": [
  2037. 680.0,
  2038. 220.0
  2039. ]
  2040. },
  2041. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2042. "$type": "StylingComponentSaveData",
  2043. "SubStyle": ".getVariable"
  2044. },
  2045. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2046. "$type": "PersistentIdComponentSaveData",
  2047. "PersistentId": "{2966ECE5-960C-4D78-B622-B4A32D7C65D5}"
  2048. }
  2049. }
  2050. }
  2051. },
  2052. {
  2053. "Key": {
  2054. "id": 517302080734375
  2055. },
  2056. "Value": {
  2057. "ComponentData": {
  2058. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2059. "$type": "NodeSaveData"
  2060. },
  2061. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2062. "$type": "GeneralNodeTitleComponentSaveData",
  2063. "PaletteOverride": "TestingNodeTitlePalette"
  2064. },
  2065. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2066. "$type": "GeometrySaveData",
  2067. "Position": [
  2068. 820.0,
  2069. 520.0
  2070. ]
  2071. },
  2072. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2073. "$type": "StylingComponentSaveData"
  2074. },
  2075. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2076. "$type": "PersistentIdComponentSaveData",
  2077. "PersistentId": "{5B467E19-CD3E-4694-912F-971F3CAF0FA4}"
  2078. }
  2079. }
  2080. }
  2081. },
  2082. {
  2083. "Key": {
  2084. "id": 517306375701671
  2085. },
  2086. "Value": {
  2087. "ComponentData": {
  2088. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2089. "$type": "NodeSaveData"
  2090. },
  2091. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2092. "$type": "GeometrySaveData",
  2093. "Position": [
  2094. 200.0,
  2095. 500.0
  2096. ]
  2097. },
  2098. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  2099. "$type": "EBusHandlerNodeDescriptorSaveData",
  2100. "EventIds": [
  2101. {
  2102. "Value": 598574587
  2103. }
  2104. ]
  2105. },
  2106. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2107. "$type": "StylingComponentSaveData"
  2108. },
  2109. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2110. "$type": "PersistentIdComponentSaveData",
  2111. "PersistentId": "{0A01761A-698E-44E3-B3B7-D856378237F7}"
  2112. }
  2113. }
  2114. }
  2115. },
  2116. {
  2117. "Key": {
  2118. "id": 517310670668967
  2119. },
  2120. "Value": {
  2121. "ComponentData": {
  2122. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2123. "$type": "NodeSaveData"
  2124. },
  2125. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2126. "$type": "GeneralNodeTitleComponentSaveData",
  2127. "PaletteOverride": "DefaultNodeTitlePalette"
  2128. },
  2129. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2130. "$type": "GeometrySaveData",
  2131. "Position": [
  2132. -20.0,
  2133. 180.0
  2134. ]
  2135. },
  2136. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2137. "$type": "StylingComponentSaveData"
  2138. },
  2139. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2140. "$type": "PersistentIdComponentSaveData",
  2141. "PersistentId": "{BB591465-2DE5-4947-99F2-CA02E66DA120}"
  2142. }
  2143. }
  2144. }
  2145. },
  2146. {
  2147. "Key": {
  2148. "id": 517314965636263
  2149. },
  2150. "Value": {
  2151. "ComponentData": {
  2152. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2153. "$type": "NodeSaveData"
  2154. },
  2155. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2156. "$type": "GeneralNodeTitleComponentSaveData",
  2157. "PaletteOverride": "TestingNodeTitlePalette"
  2158. },
  2159. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2160. "$type": "GeometrySaveData",
  2161. "Position": [
  2162. 840.0,
  2163. 200.0
  2164. ]
  2165. },
  2166. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2167. "$type": "StylingComponentSaveData"
  2168. },
  2169. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2170. "$type": "PersistentIdComponentSaveData",
  2171. "PersistentId": "{6742EAC6-85A9-45B7-81F7-FA2A9AA86C77}"
  2172. }
  2173. }
  2174. }
  2175. },
  2176. {
  2177. "Key": {
  2178. "id": 517319260603559
  2179. },
  2180. "Value": {
  2181. "ComponentData": {
  2182. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2183. "$type": "NodeSaveData"
  2184. },
  2185. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2186. "$type": "GeneralNodeTitleComponentSaveData",
  2187. "PaletteOverride": "MethodNodeTitlePalette"
  2188. },
  2189. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2190. "$type": "GeometrySaveData",
  2191. "Position": [
  2192. 320.0,
  2193. 220.0
  2194. ]
  2195. },
  2196. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2197. "$type": "StylingComponentSaveData",
  2198. "SubStyle": ".method"
  2199. },
  2200. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2201. "$type": "PersistentIdComponentSaveData",
  2202. "PersistentId": "{5C573FE0-550B-4ED9-AD8D-CA2F4C4D2E59}"
  2203. }
  2204. }
  2205. }
  2206. },
  2207. {
  2208. "Key": {
  2209. "id": 517323555570855
  2210. },
  2211. "Value": {
  2212. "ComponentData": {
  2213. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2214. "$type": "NodeSaveData"
  2215. },
  2216. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2217. "$type": "GeneralNodeTitleComponentSaveData",
  2218. "PaletteOverride": "GetVariableNodeTitlePalette"
  2219. },
  2220. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2221. "$type": "GeometrySaveData",
  2222. "Position": [
  2223. 600.0,
  2224. 520.0
  2225. ]
  2226. },
  2227. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2228. "$type": "StylingComponentSaveData",
  2229. "SubStyle": ".getVariable"
  2230. },
  2231. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2232. "$type": "PersistentIdComponentSaveData",
  2233. "PersistentId": "{82E13CFD-683B-4727-931C-AF6BF73FA8B5}"
  2234. }
  2235. }
  2236. }
  2237. },
  2238. {
  2239. "Key": {
  2240. "id": 517327850538151
  2241. },
  2242. "Value": {
  2243. "ComponentData": {
  2244. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2245. "$type": "NodeSaveData"
  2246. },
  2247. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2248. "$type": "GeneralNodeTitleComponentSaveData",
  2249. "PaletteOverride": "TestingNodeTitlePalette"
  2250. },
  2251. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2252. "$type": "GeometrySaveData",
  2253. "Position": [
  2254. 1080.0,
  2255. 200.0
  2256. ]
  2257. },
  2258. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2259. "$type": "StylingComponentSaveData"
  2260. },
  2261. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2262. "$type": "PersistentIdComponentSaveData",
  2263. "PersistentId": "{97174B29-191A-411E-A11E-75F5CF9B5782}"
  2264. }
  2265. }
  2266. }
  2267. },
  2268. {
  2269. "Key": {
  2270. "id": 517332145505447
  2271. },
  2272. "Value": {
  2273. "ComponentData": {
  2274. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2275. "$type": "NodeSaveData"
  2276. },
  2277. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2278. "$type": "GeneralNodeTitleComponentSaveData",
  2279. "PaletteOverride": "GetVariableNodeTitlePalette"
  2280. },
  2281. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2282. "$type": "GeometrySaveData",
  2283. "Position": [
  2284. 140.0,
  2285. 180.0
  2286. ]
  2287. },
  2288. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2289. "$type": "StylingComponentSaveData",
  2290. "SubStyle": ".getVariable"
  2291. },
  2292. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2293. "$type": "PersistentIdComponentSaveData",
  2294. "PersistentId": "{2420A302-F7FF-425C-AF00-F6E663AA91FB}"
  2295. }
  2296. }
  2297. }
  2298. }
  2299. ],
  2300. "StatisticsHelper": {
  2301. "InstanceCounter": [
  2302. {
  2303. "Key": 4053150093067829293,
  2304. "Value": 2
  2305. },
  2306. {
  2307. "Key": 4199610336680704683,
  2308. "Value": 1
  2309. },
  2310. {
  2311. "Key": 5842117333255740379,
  2312. "Value": 1
  2313. },
  2314. {
  2315. "Key": 7432656220303991548,
  2316. "Value": 2
  2317. },
  2318. {
  2319. "Key": 10204019744198319120,
  2320. "Value": 1
  2321. },
  2322. {
  2323. "Key": 13774516572866121637,
  2324. "Value": 1
  2325. },
  2326. {
  2327. "Key": 14421242590500951729,
  2328. "Value": 2
  2329. }
  2330. ]
  2331. }
  2332. },
  2333. "Component_[9842933625018580480]": {
  2334. "$type": "EditorGraphVariableManagerComponent",
  2335. "Id": 9842933625018580480,
  2336. "m_variableData": {
  2337. "m_nameVariableMap": [
  2338. {
  2339. "Key": {
  2340. "m_id": "{43D9E1A0-6DEA-445B-A942-11FE41A5B9C7}"
  2341. },
  2342. "Value": {
  2343. "Datum": {
  2344. "isOverloadedStorage": false,
  2345. "scriptCanvasType": {
  2346. "m_type": 5
  2347. },
  2348. "isNullPointer": false,
  2349. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2350. "value": "receive c style",
  2351. "label": "reference 2"
  2352. },
  2353. "VariableId": {
  2354. "m_id": "{43D9E1A0-6DEA-445B-A942-11FE41A5B9C7}"
  2355. },
  2356. "VariableName": "reference 2"
  2357. }
  2358. },
  2359. {
  2360. "Key": {
  2361. "m_id": "{800D8836-B677-48B6-9CA5-BD1B78C0B30E}"
  2362. },
  2363. "Value": {
  2364. "Datum": {
  2365. "isOverloadedStorage": false,
  2366. "scriptCanvasType": {
  2367. "m_type": 5
  2368. },
  2369. "isNullPointer": false,
  2370. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2371. "value": "sending c style",
  2372. "label": "reference 1"
  2373. },
  2374. "VariableId": {
  2375. "m_id": "{800D8836-B677-48B6-9CA5-BD1B78C0B30E}"
  2376. },
  2377. "VariableName": "reference 1"
  2378. }
  2379. },
  2380. {
  2381. "Key": {
  2382. "m_id": "{99D6BCEB-F6AF-422B-AAA8-DF3D6CD3BD48}"
  2383. },
  2384. "Value": {
  2385. "Datum": {
  2386. "isOverloadedStorage": false,
  2387. "scriptCanvasType": {
  2388. "m_type": 13
  2389. },
  2390. "isNullPointer": false,
  2391. "$type": "Crc32",
  2392. "label": "Variable 3"
  2393. },
  2394. "VariableId": {
  2395. "m_id": "{99D6BCEB-F6AF-422B-AAA8-DF3D6CD3BD48}"
  2396. },
  2397. "VariableName": "Variable 3"
  2398. }
  2399. }
  2400. ]
  2401. }
  2402. }
  2403. }
  2404. }
  2405. }
  2406. }