Test_EBusStringResultCStyle2CStyle.scriptcanvas 141 KB

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