3
0

LY_SC_UnitTest_GlobalScriptEvent.scriptcanvas 162 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 589618726918190
  9. },
  10. "Name": "LY_SC_UnitTest_GlobalScriptEvent",
  11. "Components": {
  12. "Component_[12506768003619652665]": {
  13. "$type": "EditorGraph",
  14. "Id": 12506768003619652665,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 589661676591150
  20. },
  21. "Name": "SC Node(SetVariable)",
  22. "Components": {
  23. "Component_[10676770722866964199]": {
  24. "$type": "SetVariableNode",
  25. "Id": 10676770722866964199,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{ECD4EC8C-1759-4FAE-B31A-29D99A7216BE}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "In",
  37. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  38. "Descriptor": {
  39. "ConnectionType": 1,
  40. "SlotType": 1
  41. }
  42. },
  43. {
  44. "id": {
  45. "m_id": "{C6D8CEED-F9F3-45AB-851E-BA9D8D8A13D4}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "Out",
  53. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  54. "Descriptor": {
  55. "ConnectionType": 2,
  56. "SlotType": 1
  57. }
  58. },
  59. {
  60. "id": {
  61. "m_id": "{624D3D97-E6B3-4251-8637-773E9B07C49E}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. },
  67. null
  68. ],
  69. "slotName": "Boolean",
  70. "Descriptor": {
  71. "ConnectionType": 1,
  72. "SlotType": 2
  73. },
  74. "DataType": 1
  75. },
  76. {
  77. "id": {
  78. "m_id": "{C77D4C88-A9FB-48F8-97B2-D4799ED466E2}"
  79. },
  80. "contracts": [
  81. {
  82. "$type": "SlotTypeContract"
  83. }
  84. ],
  85. "slotName": "Boolean",
  86. "DisplayDataType": {
  87. "m_type": 0
  88. },
  89. "Descriptor": {
  90. "ConnectionType": 2,
  91. "SlotType": 2
  92. },
  93. "DataType": 1
  94. }
  95. ],
  96. "Datums": [
  97. {
  98. "isOverloadedStorage": false,
  99. "scriptCanvasType": {
  100. "m_type": 0
  101. },
  102. "isNullPointer": false,
  103. "$type": "bool",
  104. "value": true,
  105. "label": "Boolean"
  106. }
  107. ],
  108. "m_variableId": {
  109. "m_id": "{7EAB01FE-E67C-4018-ADF9-66CF43BAD875}"
  110. },
  111. "m_variableDataInSlotId": {
  112. "m_id": "{624D3D97-E6B3-4251-8637-773E9B07C49E}"
  113. },
  114. "m_variableDataOutSlotId": {
  115. "m_id": "{C77D4C88-A9FB-48F8-97B2-D4799ED466E2}"
  116. }
  117. }
  118. }
  119. },
  120. {
  121. "Id": {
  122. "id": 589631611820078
  123. },
  124. "Name": "SC-Node(Not)",
  125. "Components": {
  126. "Component_[10911293858588821455]": {
  127. "$type": "Not",
  128. "Id": 10911293858588821455,
  129. "Slots": [
  130. {
  131. "id": {
  132. "m_id": "{FFACE0B4-481E-4DAD-99D0-0B05A1892623}"
  133. },
  134. "contracts": [
  135. {
  136. "$type": "SlotTypeContract"
  137. },
  138. null
  139. ],
  140. "slotName": "Value",
  141. "Descriptor": {
  142. "ConnectionType": 1,
  143. "SlotType": 2
  144. },
  145. "DataType": 1
  146. },
  147. {
  148. "id": {
  149. "m_id": "{F18EE183-EEF8-4B96-8720-9C3BBC36AD8C}"
  150. },
  151. "contracts": [
  152. {
  153. "$type": "SlotTypeContract"
  154. }
  155. ],
  156. "slotName": "Result",
  157. "DisplayDataType": {
  158. "m_type": 0
  159. },
  160. "Descriptor": {
  161. "ConnectionType": 2,
  162. "SlotType": 2
  163. },
  164. "DataType": 1
  165. },
  166. {
  167. "id": {
  168. "m_id": "{B81FB4F3-7A39-4FCF-9B74-A5F508683416}"
  169. },
  170. "contracts": [
  171. {
  172. "$type": "SlotTypeContract"
  173. }
  174. ],
  175. "slotName": "In",
  176. "toolTip": "Signal to perform the evaluation when desired.",
  177. "Descriptor": {
  178. "ConnectionType": 1,
  179. "SlotType": 1
  180. }
  181. },
  182. {
  183. "id": {
  184. "m_id": "{63096EB8-3FEB-4B02-98F6-9E87AD2EC7ED}"
  185. },
  186. "contracts": [
  187. {
  188. "$type": "SlotTypeContract"
  189. }
  190. ],
  191. "slotName": "True",
  192. "toolTip": "Signaled if the result of the operation is true.",
  193. "Descriptor": {
  194. "ConnectionType": 2,
  195. "SlotType": 1
  196. }
  197. },
  198. {
  199. "id": {
  200. "m_id": "{B172D049-9486-4282-A860-F272FAB756FF}"
  201. },
  202. "contracts": [
  203. {
  204. "$type": "SlotTypeContract"
  205. }
  206. ],
  207. "slotName": "False",
  208. "toolTip": "Signaled if the result of the operation is false.",
  209. "Descriptor": {
  210. "ConnectionType": 2,
  211. "SlotType": 1
  212. }
  213. }
  214. ],
  215. "Datums": [
  216. {
  217. "isOverloadedStorage": false,
  218. "scriptCanvasType": {
  219. "m_type": 0
  220. },
  221. "isNullPointer": false,
  222. "$type": "bool",
  223. "value": false,
  224. "label": "Value"
  225. }
  226. ]
  227. }
  228. }
  229. },
  230. {
  231. "Id": {
  232. "id": 589627316852782
  233. },
  234. "Name": "SC-Node(OperatorAdd)",
  235. "Components": {
  236. "Component_[11937575424113908189]": {
  237. "$type": "OperatorAdd",
  238. "Id": 11937575424113908189,
  239. "Slots": [
  240. {
  241. "id": {
  242. "m_id": "{C63EDD6C-2CFE-4A2C-BD3D-7884E332C6E4}"
  243. },
  244. "contracts": [
  245. {
  246. "$type": "SlotTypeContract"
  247. }
  248. ],
  249. "slotName": "In",
  250. "Descriptor": {
  251. "ConnectionType": 1,
  252. "SlotType": 1
  253. }
  254. },
  255. {
  256. "id": {
  257. "m_id": "{CD8A2E44-B140-49AA-9C21-EF88A702262B}"
  258. },
  259. "contracts": [
  260. {
  261. "$type": "SlotTypeContract"
  262. }
  263. ],
  264. "slotName": "Out",
  265. "Descriptor": {
  266. "ConnectionType": 2,
  267. "SlotType": 1
  268. }
  269. },
  270. {
  271. "id": {
  272. "m_id": "{AD0EE0F8-1F78-41D3-A0DB-121DC008A33B}"
  273. },
  274. "DynamicTypeOverride": 3,
  275. "contracts": [
  276. {
  277. "$type": "SlotTypeContract"
  278. },
  279. null,
  280. {
  281. "$type": "MathOperatorContract",
  282. "NativeTypes": [
  283. {
  284. "m_type": 3
  285. },
  286. {
  287. "m_type": 6
  288. },
  289. {
  290. "m_type": 8
  291. },
  292. {
  293. "m_type": 9
  294. },
  295. {
  296. "m_type": 10
  297. },
  298. {
  299. "m_type": 11
  300. },
  301. {
  302. "m_type": 12
  303. },
  304. {
  305. "m_type": 14
  306. },
  307. {
  308. "m_type": 15
  309. }
  310. ]
  311. }
  312. ],
  313. "slotName": "Number",
  314. "toolTip": "An operand to use in performing the specified Operation",
  315. "DisplayDataType": {
  316. "m_type": 3
  317. },
  318. "DisplayGroup": {
  319. "Value": 1114760223
  320. },
  321. "Descriptor": {
  322. "ConnectionType": 1,
  323. "SlotType": 2
  324. },
  325. "DynamicGroup": {
  326. "Value": 1114760223
  327. },
  328. "DataType": 1
  329. },
  330. {
  331. "id": {
  332. "m_id": "{C74CCEF8-DBCF-4A70-B0F3-84395CA85F8A}"
  333. },
  334. "DynamicTypeOverride": 3,
  335. "contracts": [
  336. {
  337. "$type": "SlotTypeContract"
  338. },
  339. null,
  340. {
  341. "$type": "MathOperatorContract",
  342. "NativeTypes": [
  343. {
  344. "m_type": 3
  345. },
  346. {
  347. "m_type": 6
  348. },
  349. {
  350. "m_type": 8
  351. },
  352. {
  353. "m_type": 9
  354. },
  355. {
  356. "m_type": 10
  357. },
  358. {
  359. "m_type": 11
  360. },
  361. {
  362. "m_type": 12
  363. },
  364. {
  365. "m_type": 14
  366. },
  367. {
  368. "m_type": 15
  369. }
  370. ]
  371. }
  372. ],
  373. "slotName": "Number",
  374. "toolTip": "An operand to use in performing the specified Operation",
  375. "DisplayDataType": {
  376. "m_type": 3
  377. },
  378. "DisplayGroup": {
  379. "Value": 1114760223
  380. },
  381. "Descriptor": {
  382. "ConnectionType": 1,
  383. "SlotType": 2
  384. },
  385. "DynamicGroup": {
  386. "Value": 1114760223
  387. },
  388. "DataType": 1
  389. },
  390. {
  391. "id": {
  392. "m_id": "{13C41C54-6B43-47E5-AF7B-992AF8631F94}"
  393. },
  394. "DynamicTypeOverride": 3,
  395. "contracts": [
  396. {
  397. "$type": "SlotTypeContract"
  398. },
  399. {
  400. "$type": "MathOperatorContract",
  401. "NativeTypes": [
  402. {
  403. "m_type": 3
  404. },
  405. {
  406. "m_type": 6
  407. },
  408. {
  409. "m_type": 8
  410. },
  411. {
  412. "m_type": 9
  413. },
  414. {
  415. "m_type": 10
  416. },
  417. {
  418. "m_type": 11
  419. },
  420. {
  421. "m_type": 12
  422. },
  423. {
  424. "m_type": 14
  425. },
  426. {
  427. "m_type": 15
  428. }
  429. ]
  430. }
  431. ],
  432. "slotName": "Result",
  433. "toolTip": "The result of the specified operation",
  434. "DisplayDataType": {
  435. "m_type": 3
  436. },
  437. "DisplayGroup": {
  438. "Value": 1114760223
  439. },
  440. "Descriptor": {
  441. "ConnectionType": 2,
  442. "SlotType": 2
  443. },
  444. "DynamicGroup": {
  445. "Value": 1114760223
  446. },
  447. "DataType": 1
  448. }
  449. ],
  450. "Datums": [
  451. {
  452. "isOverloadedStorage": false,
  453. "scriptCanvasType": {
  454. "m_type": 3
  455. },
  456. "isNullPointer": false,
  457. "$type": "double",
  458. "value": 0.0,
  459. "label": "Number"
  460. },
  461. {
  462. "isOverloadedStorage": false,
  463. "scriptCanvasType": {
  464. "m_type": 3
  465. },
  466. "isNullPointer": false,
  467. "$type": "double",
  468. "value": 1.0,
  469. "label": "Number"
  470. }
  471. ]
  472. }
  473. }
  474. },
  475. {
  476. "Id": {
  477. "id": 589623021885486
  478. },
  479. "Name": "SC-Node(Expect True)",
  480. "Components": {
  481. "Component_[12305707113781372226]": {
  482. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  483. "Id": 12305707113781372226,
  484. "Slots": [
  485. {
  486. "isVisibile": false,
  487. "id": {
  488. "m_id": "{5F7A4A3B-AF75-488C-BACB-295EAAB857DC}"
  489. },
  490. "contracts": [
  491. {
  492. "$type": "SlotTypeContract"
  493. },
  494. null
  495. ],
  496. "slotName": "EntityID: 0",
  497. "Descriptor": {
  498. "ConnectionType": 1,
  499. "SlotType": 2
  500. },
  501. "DataType": 1
  502. },
  503. {
  504. "id": {
  505. "m_id": "{AAEE4AA2-A9FD-429D-BF7B-A2B5414B8951}"
  506. },
  507. "contracts": [
  508. {
  509. "$type": "SlotTypeContract"
  510. },
  511. null
  512. ],
  513. "slotName": "Candidate",
  514. "toolTip": "a value that must be true",
  515. "Descriptor": {
  516. "ConnectionType": 1,
  517. "SlotType": 2
  518. },
  519. "DataType": 1,
  520. "IsReference": true,
  521. "VariableReference": {
  522. "m_id": "{7EAB01FE-E67C-4018-ADF9-66CF43BAD875}"
  523. }
  524. },
  525. {
  526. "id": {
  527. "m_id": "{8D7B6DB4-5BAB-4C4C-AC75-ECCCACB202C3}"
  528. },
  529. "contracts": [
  530. {
  531. "$type": "SlotTypeContract"
  532. },
  533. null
  534. ],
  535. "slotName": "Report",
  536. "toolTip": "additional notes for the test report",
  537. "Descriptor": {
  538. "ConnectionType": 1,
  539. "SlotType": 2
  540. },
  541. "DataType": 1
  542. },
  543. {
  544. "id": {
  545. "m_id": "{EDDC6AF0-42B7-4577-B2AC-23BCD9D3D73E}"
  546. },
  547. "contracts": [
  548. {
  549. "$type": "SlotTypeContract"
  550. }
  551. ],
  552. "slotName": "In",
  553. "Descriptor": {
  554. "ConnectionType": 1,
  555. "SlotType": 1
  556. }
  557. },
  558. {
  559. "id": {
  560. "m_id": "{184FA2B4-4489-4022-8DB6-D4398F6FE84B}"
  561. },
  562. "contracts": [
  563. {
  564. "$type": "SlotTypeContract"
  565. }
  566. ],
  567. "slotName": "Out",
  568. "Descriptor": {
  569. "ConnectionType": 2,
  570. "SlotType": 1
  571. }
  572. }
  573. ],
  574. "Datums": [
  575. {
  576. "isOverloadedStorage": false,
  577. "scriptCanvasType": {
  578. "m_type": 1
  579. },
  580. "isNullPointer": false,
  581. "$type": "EntityId",
  582. "value": {
  583. "id": 4276206253
  584. }
  585. },
  586. {
  587. "isOverloadedStorage": false,
  588. "scriptCanvasType": {
  589. "m_type": 0
  590. },
  591. "isNullPointer": false,
  592. "$type": "bool",
  593. "value": false,
  594. "label": "Candidate"
  595. },
  596. {
  597. "isOverloadedStorage": false,
  598. "scriptCanvasType": {
  599. "m_type": 5
  600. },
  601. "isNullPointer": false,
  602. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  603. "value": "",
  604. "label": "Report"
  605. }
  606. ],
  607. "methodType": 2,
  608. "methodName": "Expect True",
  609. "className": "Unit Testing",
  610. "resultSlotIDs": [
  611. {}
  612. ],
  613. "prettyClassName": "Unit Testing"
  614. }
  615. }
  616. },
  617. {
  618. "Id": {
  619. "id": 589648791689262
  620. },
  621. "Name": "SC-Node(Start)",
  622. "Components": {
  623. "Component_[13343996263980682762]": {
  624. "$type": "Start",
  625. "Id": 13343996263980682762,
  626. "Slots": [
  627. {
  628. "id": {
  629. "m_id": "{44FA5998-4DBF-492B-9B0C-283B1DBC396B}"
  630. },
  631. "contracts": [
  632. {
  633. "$type": "SlotTypeContract"
  634. }
  635. ],
  636. "slotName": "Out",
  637. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  638. "Descriptor": {
  639. "ConnectionType": 2,
  640. "SlotType": 1
  641. }
  642. }
  643. ]
  644. }
  645. }
  646. },
  647. {
  648. "Id": {
  649. "id": 589657381623854
  650. },
  651. "Name": "SendScriptEvent",
  652. "Components": {
  653. "Component_[17737198132112381955]": {
  654. "$type": "SendScriptEvent",
  655. "Id": 17737198132112381955,
  656. "Slots": [
  657. {
  658. "id": {
  659. "m_id": "{F0862C7A-258C-4012-9F9F-C80B6FB6FEE8}"
  660. },
  661. "contracts": [
  662. {
  663. "$type": "SlotTypeContract"
  664. }
  665. ],
  666. "slotName": "In",
  667. "toolTip": "Fires the specified ScriptEvent when signaled",
  668. "Descriptor": {
  669. "ConnectionType": 1,
  670. "SlotType": 1
  671. }
  672. },
  673. {
  674. "id": {
  675. "m_id": "{4257A0BF-9CB0-4B72-8D95-19BC31E68C31}"
  676. },
  677. "contracts": [
  678. {
  679. "$type": "SlotTypeContract"
  680. }
  681. ],
  682. "slotName": "Out",
  683. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  684. "Descriptor": {
  685. "ConnectionType": 2,
  686. "SlotType": 1
  687. }
  688. },
  689. {
  690. "id": {
  691. "m_id": "{63A76B4B-D60B-4DE3-9A77-13E70D8E3AFD}"
  692. },
  693. "contracts": [
  694. {
  695. "$type": "SlotTypeContract"
  696. }
  697. ],
  698. "slotName": "Result: Number",
  699. "DisplayDataType": {
  700. "m_type": 3
  701. },
  702. "Descriptor": {
  703. "ConnectionType": 2,
  704. "SlotType": 2
  705. },
  706. "DataType": 1
  707. },
  708. {
  709. "id": {
  710. "m_id": "{219578DB-4FC3-4E54-A747-0C8839EA8531}"
  711. },
  712. "contracts": [
  713. {
  714. "$type": "SlotTypeContract"
  715. },
  716. null
  717. ],
  718. "slotName": "Number",
  719. "Descriptor": {
  720. "ConnectionType": 1,
  721. "SlotType": 2
  722. },
  723. "DataType": 1,
  724. "IsReference": true,
  725. "VariableReference": {
  726. "m_id": "{88FBC064-75B2-4E8D-A836-D429BD5C9D11}"
  727. }
  728. }
  729. ],
  730. "Datums": [
  731. {
  732. "isOverloadedStorage": false,
  733. "scriptCanvasType": {
  734. "m_type": 3
  735. },
  736. "isNullPointer": false,
  737. "$type": "double",
  738. "value": 0.0,
  739. "label": "Number"
  740. }
  741. ],
  742. "m_version": 2,
  743. "m_eventSlotMapping": {
  744. "{120F80C2-2DD7-4A14-A523-478144EEF583}": {
  745. "m_id": "{219578DB-4FC3-4E54-A747-0C8839EA8531}"
  746. },
  747. "{C7E99974-D1C0-4108-B731-120AF000060C}": {
  748. "m_id": "{63A76B4B-D60B-4DE3-9A77-13E70D8E3AFD}"
  749. }
  750. },
  751. "m_scriptEventAssetId": {
  752. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  753. },
  754. "m_asset": {
  755. "assetId": {
  756. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  757. },
  758. "assetHint": "scriptcanvas/unittests/globalscriptevents.scriptevents"
  759. },
  760. "m_busId": {
  761. "Value": 2261882474
  762. },
  763. "m_eventId": {
  764. "Value": 418628318
  765. }
  766. }
  767. }
  768. },
  769. {
  770. "Id": {
  771. "id": 589665971558446
  772. },
  773. "Name": "SendScriptEvent",
  774. "Components": {
  775. "Component_[17793330372307127005]": {
  776. "$type": "SendScriptEvent",
  777. "Id": 17793330372307127005,
  778. "Slots": [
  779. {
  780. "id": {
  781. "m_id": "{2466F81C-03C1-48A8-9C5A-5A56C493B2A0}"
  782. },
  783. "contracts": [
  784. {
  785. "$type": "SlotTypeContract"
  786. }
  787. ],
  788. "slotName": "In",
  789. "toolTip": "Fires the specified ScriptEvent when signaled",
  790. "Descriptor": {
  791. "ConnectionType": 1,
  792. "SlotType": 1
  793. }
  794. },
  795. {
  796. "id": {
  797. "m_id": "{32ECF8AA-932F-4A38-8FE7-F4F6D76C8319}"
  798. },
  799. "contracts": [
  800. {
  801. "$type": "SlotTypeContract"
  802. }
  803. ],
  804. "slotName": "Out",
  805. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  806. "Descriptor": {
  807. "ConnectionType": 2,
  808. "SlotType": 1
  809. }
  810. }
  811. ],
  812. "m_version": 2,
  813. "m_scriptEventAssetId": {
  814. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  815. },
  816. "m_asset": {
  817. "assetId": {
  818. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  819. },
  820. "assetHint": "scriptcanvas/unittests/globalscriptevents.scriptevents"
  821. },
  822. "m_busId": {
  823. "Value": 2261882474
  824. },
  825. "m_eventId": {
  826. "Value": 3040003823
  827. }
  828. }
  829. }
  830. },
  831. {
  832. "Id": {
  833. "id": 589653086656558
  834. },
  835. "Name": "SC-Node(Expect Equal)",
  836. "Components": {
  837. "Component_[2475017221557555879]": {
  838. "$type": "MethodOverloaded",
  839. "Id": 2475017221557555879,
  840. "Slots": [
  841. {
  842. "isVisibile": false,
  843. "id": {
  844. "m_id": "{7A49B888-CB85-42C0-B8B2-8FECB3353C7F}"
  845. },
  846. "contracts": [
  847. {
  848. "$type": "SlotTypeContract"
  849. },
  850. null
  851. ],
  852. "slotName": "EntityID: 0",
  853. "DisplayDataType": {
  854. "m_type": 1
  855. },
  856. "Descriptor": {
  857. "ConnectionType": 1,
  858. "SlotType": 2
  859. },
  860. "DataType": 1
  861. },
  862. {
  863. "IsOverload": true,
  864. "id": {
  865. "m_id": "{5A18D73D-362D-41CB-87BD-6BA7DB626D74}"
  866. },
  867. "DynamicTypeOverride": 3,
  868. "contracts": [
  869. {
  870. "$type": "SlotTypeContract"
  871. },
  872. null
  873. ],
  874. "slotName": "Candidate",
  875. "toolTip": "left of ==",
  876. "DisplayDataType": {
  877. "m_type": 3
  878. },
  879. "Descriptor": {
  880. "ConnectionType": 1,
  881. "SlotType": 2
  882. },
  883. "DataType": 1
  884. },
  885. {
  886. "IsOverload": true,
  887. "id": {
  888. "m_id": "{57F66850-2E84-4FE8-ABB1-063ABE57A18C}"
  889. },
  890. "DynamicTypeOverride": 3,
  891. "contracts": [
  892. {
  893. "$type": "SlotTypeContract"
  894. },
  895. null
  896. ],
  897. "slotName": "Reference",
  898. "toolTip": "right of ==",
  899. "DisplayDataType": {
  900. "m_type": 3
  901. },
  902. "Descriptor": {
  903. "ConnectionType": 1,
  904. "SlotType": 2
  905. },
  906. "DataType": 1,
  907. "IsReference": true,
  908. "VariableReference": {
  909. "m_id": "{836C0AC5-CEF7-4DC8-B2F7-9A2A3196BA17}"
  910. }
  911. },
  912. {
  913. "id": {
  914. "m_id": "{B2A786F3-D663-4CDC-BA03-47DBCB22CB5E}"
  915. },
  916. "contracts": [
  917. {
  918. "$type": "SlotTypeContract"
  919. },
  920. null
  921. ],
  922. "slotName": "Report",
  923. "toolTip": "additional notes for the test report",
  924. "DisplayDataType": {
  925. "m_type": 5
  926. },
  927. "Descriptor": {
  928. "ConnectionType": 1,
  929. "SlotType": 2
  930. },
  931. "DataType": 1
  932. },
  933. {
  934. "id": {
  935. "m_id": "{CEB87BB6-EA24-4C3C-9C3A-FDD08EE1D366}"
  936. },
  937. "contracts": [
  938. {
  939. "$type": "SlotTypeContract"
  940. }
  941. ],
  942. "slotName": "In",
  943. "Descriptor": {
  944. "ConnectionType": 1,
  945. "SlotType": 1
  946. }
  947. },
  948. {
  949. "id": {
  950. "m_id": "{80FEC92A-9FFF-4584-8CAD-22BD01A1532B}"
  951. },
  952. "contracts": [
  953. {
  954. "$type": "SlotTypeContract"
  955. }
  956. ],
  957. "slotName": "Out",
  958. "Descriptor": {
  959. "ConnectionType": 2,
  960. "SlotType": 1
  961. }
  962. }
  963. ],
  964. "Datums": [
  965. {
  966. "isOverloadedStorage": false,
  967. "scriptCanvasType": {
  968. "m_type": 1
  969. },
  970. "isNullPointer": false,
  971. "$type": "EntityId",
  972. "value": {
  973. "id": 4276206253
  974. }
  975. },
  976. {
  977. "isOverloadedStorage": false,
  978. "scriptCanvasType": {
  979. "m_type": 3
  980. },
  981. "isNullPointer": false,
  982. "$type": "double",
  983. "value": 0.0,
  984. "label": "Candidate"
  985. },
  986. {
  987. "isOverloadedStorage": false,
  988. "scriptCanvasType": {
  989. "m_type": 3
  990. },
  991. "isNullPointer": false,
  992. "$type": "double",
  993. "value": 0.0,
  994. "label": "Reference"
  995. },
  996. {
  997. "isOverloadedStorage": false,
  998. "scriptCanvasType": {
  999. "m_type": 5
  1000. },
  1001. "isNullPointer": false,
  1002. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1003. "value": "",
  1004. "label": "Report"
  1005. }
  1006. ],
  1007. "methodType": 2,
  1008. "methodName": "Expect Equal",
  1009. "className": "Unit Testing",
  1010. "resultSlotIDs": [
  1011. {}
  1012. ],
  1013. "prettyClassName": "Unit Testing",
  1014. "orderedInputSlotIds": [
  1015. {
  1016. "m_id": "{7A49B888-CB85-42C0-B8B2-8FECB3353C7F}"
  1017. },
  1018. {
  1019. "m_id": "{5A18D73D-362D-41CB-87BD-6BA7DB626D74}"
  1020. },
  1021. {
  1022. "m_id": "{57F66850-2E84-4FE8-ABB1-063ABE57A18C}"
  1023. },
  1024. {
  1025. "m_id": "{B2A786F3-D663-4CDC-BA03-47DBCB22CB5E}"
  1026. }
  1027. ],
  1028. "outputSlotIds": [
  1029. {}
  1030. ]
  1031. }
  1032. }
  1033. },
  1034. {
  1035. "Id": {
  1036. "id": 589644496721966
  1037. },
  1038. "Name": "SC-Node(Mark Complete)",
  1039. "Components": {
  1040. "Component_[2605751852683171324]": {
  1041. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1042. "Id": 2605751852683171324,
  1043. "Slots": [
  1044. {
  1045. "isVisibile": false,
  1046. "id": {
  1047. "m_id": "{782A0F93-ED05-4158-9921-1AB19BAAB1CE}"
  1048. },
  1049. "contracts": [
  1050. {
  1051. "$type": "SlotTypeContract"
  1052. },
  1053. null
  1054. ],
  1055. "slotName": "EntityID: 0",
  1056. "Descriptor": {
  1057. "ConnectionType": 1,
  1058. "SlotType": 2
  1059. },
  1060. "DataType": 1
  1061. },
  1062. {
  1063. "id": {
  1064. "m_id": "{429DF339-FC72-46B4-907F-515BA03E172D}"
  1065. },
  1066. "contracts": [
  1067. {
  1068. "$type": "SlotTypeContract"
  1069. },
  1070. null
  1071. ],
  1072. "slotName": "Report",
  1073. "toolTip": "additional notes for the test report",
  1074. "Descriptor": {
  1075. "ConnectionType": 1,
  1076. "SlotType": 2
  1077. },
  1078. "DataType": 1
  1079. },
  1080. {
  1081. "id": {
  1082. "m_id": "{C82BE2EF-C372-47C8-B3AC-646801437D50}"
  1083. },
  1084. "contracts": [
  1085. {
  1086. "$type": "SlotTypeContract"
  1087. }
  1088. ],
  1089. "slotName": "In",
  1090. "Descriptor": {
  1091. "ConnectionType": 1,
  1092. "SlotType": 1
  1093. }
  1094. },
  1095. {
  1096. "id": {
  1097. "m_id": "{0B9E7058-A78C-4EEE-BE26-18B176207956}"
  1098. },
  1099. "contracts": [
  1100. {
  1101. "$type": "SlotTypeContract"
  1102. }
  1103. ],
  1104. "slotName": "Out",
  1105. "Descriptor": {
  1106. "ConnectionType": 2,
  1107. "SlotType": 1
  1108. }
  1109. }
  1110. ],
  1111. "Datums": [
  1112. {
  1113. "isOverloadedStorage": false,
  1114. "scriptCanvasType": {
  1115. "m_type": 1
  1116. },
  1117. "isNullPointer": false,
  1118. "$type": "EntityId",
  1119. "value": {
  1120. "id": 4276206253
  1121. }
  1122. },
  1123. {
  1124. "isOverloadedStorage": false,
  1125. "scriptCanvasType": {
  1126. "m_type": 5
  1127. },
  1128. "isNullPointer": false,
  1129. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1130. "value": "",
  1131. "label": "Report"
  1132. }
  1133. ],
  1134. "methodType": 2,
  1135. "methodName": "Mark Complete",
  1136. "className": "Unit Testing",
  1137. "resultSlotIDs": [
  1138. {}
  1139. ],
  1140. "prettyClassName": "Unit Testing"
  1141. }
  1142. }
  1143. },
  1144. {
  1145. "Id": {
  1146. "id": 589640201754670
  1147. },
  1148. "Name": "ReceiveScriptEvent",
  1149. "Components": {
  1150. "Component_[2899365300177748121]": {
  1151. "$type": "ReceiveScriptEvent",
  1152. "Id": 2899365300177748121,
  1153. "Slots": [
  1154. {
  1155. "id": {
  1156. "m_id": "{F1EC0FE6-0078-487E-B96B-B223B9EE7FAF}"
  1157. },
  1158. "contracts": [
  1159. {
  1160. "$type": "SlotTypeContract"
  1161. }
  1162. ],
  1163. "slotName": "Connect",
  1164. "toolTip": "Connect this event handler to the specified entity.",
  1165. "Descriptor": {
  1166. "ConnectionType": 1,
  1167. "SlotType": 1
  1168. }
  1169. },
  1170. {
  1171. "id": {
  1172. "m_id": "{13DC7EA4-1F73-4CAD-8849-8794489D006F}"
  1173. },
  1174. "contracts": [
  1175. {
  1176. "$type": "SlotTypeContract"
  1177. }
  1178. ],
  1179. "slotName": "Disconnect",
  1180. "toolTip": "Disconnect this event handler.",
  1181. "Descriptor": {
  1182. "ConnectionType": 1,
  1183. "SlotType": 1
  1184. }
  1185. },
  1186. {
  1187. "id": {
  1188. "m_id": "{107770F2-9668-4E37-BDB3-3CE9ADC61162}"
  1189. },
  1190. "contracts": [
  1191. {
  1192. "$type": "SlotTypeContract"
  1193. }
  1194. ],
  1195. "slotName": "OnConnected",
  1196. "toolTip": "Signaled when a connection has taken place.",
  1197. "Descriptor": {
  1198. "ConnectionType": 2,
  1199. "SlotType": 1
  1200. }
  1201. },
  1202. {
  1203. "id": {
  1204. "m_id": "{60904745-4BB3-43F2-832E-82B9F02324A1}"
  1205. },
  1206. "contracts": [
  1207. {
  1208. "$type": "SlotTypeContract"
  1209. }
  1210. ],
  1211. "slotName": "OnDisconnected",
  1212. "toolTip": "Signaled when this event handler is disconnected.",
  1213. "Descriptor": {
  1214. "ConnectionType": 2,
  1215. "SlotType": 1
  1216. }
  1217. },
  1218. {
  1219. "id": {
  1220. "m_id": "{35D44895-98B0-48F3-BAC5-773292F86B1F}"
  1221. },
  1222. "contracts": [
  1223. {
  1224. "$type": "SlotTypeContract"
  1225. }
  1226. ],
  1227. "slotName": "OnFailure",
  1228. "toolTip": "Signaled when it is not possible to connect this handler.",
  1229. "Descriptor": {
  1230. "ConnectionType": 2,
  1231. "SlotType": 1
  1232. }
  1233. },
  1234. {
  1235. "id": {
  1236. "m_id": "{AD99C031-AD01-41D0-A51B-179C42DFDEF5}"
  1237. },
  1238. "contracts": [
  1239. {
  1240. "$type": "SlotTypeContract"
  1241. }
  1242. ],
  1243. "slotName": "ExecutionSlot:Void",
  1244. "Descriptor": {
  1245. "ConnectionType": 2,
  1246. "SlotType": 1
  1247. },
  1248. "IsLatent": true
  1249. },
  1250. {
  1251. "id": {
  1252. "m_id": "{314BB703-3D70-46B7-BB12-9C775896659F}"
  1253. },
  1254. "contracts": [
  1255. {
  1256. "$type": "SlotTypeContract"
  1257. },
  1258. null
  1259. ],
  1260. "slotName": "Result: Boolean",
  1261. "Descriptor": {
  1262. "ConnectionType": 1,
  1263. "SlotType": 2
  1264. },
  1265. "DataType": 1
  1266. },
  1267. {
  1268. "id": {
  1269. "m_id": "{BEBADBD9-F084-4A65-B11B-6C1295793DA8}"
  1270. },
  1271. "contracts": [
  1272. {
  1273. "$type": "SlotTypeContract"
  1274. }
  1275. ],
  1276. "slotName": "Boolean",
  1277. "DisplayDataType": {
  1278. "m_type": 0
  1279. },
  1280. "Descriptor": {
  1281. "ConnectionType": 2,
  1282. "SlotType": 2
  1283. },
  1284. "DataType": 1
  1285. },
  1286. {
  1287. "id": {
  1288. "m_id": "{7170C3BA-E86C-45F8-83A3-904A89F1C23C}"
  1289. },
  1290. "contracts": [
  1291. {
  1292. "$type": "SlotTypeContract"
  1293. }
  1294. ],
  1295. "slotName": "ExecutionSlot:Not",
  1296. "Descriptor": {
  1297. "ConnectionType": 2,
  1298. "SlotType": 1
  1299. },
  1300. "IsLatent": true
  1301. },
  1302. {
  1303. "id": {
  1304. "m_id": "{3DB4D52F-233B-48C7-BCB7-6300C07973CF}"
  1305. },
  1306. "contracts": [
  1307. {
  1308. "$type": "SlotTypeContract"
  1309. },
  1310. null
  1311. ],
  1312. "slotName": "Result: Number",
  1313. "Descriptor": {
  1314. "ConnectionType": 1,
  1315. "SlotType": 2
  1316. },
  1317. "DataType": 1
  1318. },
  1319. {
  1320. "id": {
  1321. "m_id": "{33A96B1B-D22F-4164-9DFA-F3E8D4BC9D01}"
  1322. },
  1323. "contracts": [
  1324. {
  1325. "$type": "SlotTypeContract"
  1326. }
  1327. ],
  1328. "slotName": "Number",
  1329. "DisplayDataType": {
  1330. "m_type": 3
  1331. },
  1332. "Descriptor": {
  1333. "ConnectionType": 2,
  1334. "SlotType": 2
  1335. },
  1336. "DataType": 1
  1337. },
  1338. {
  1339. "id": {
  1340. "m_id": "{9C1B0C44-08B1-4E2E-9F4C-40D91E5A2FD0}"
  1341. },
  1342. "contracts": [
  1343. {
  1344. "$type": "SlotTypeContract"
  1345. }
  1346. ],
  1347. "slotName": "ExecutionSlot:Increment",
  1348. "Descriptor": {
  1349. "ConnectionType": 2,
  1350. "SlotType": 1
  1351. },
  1352. "IsLatent": true
  1353. }
  1354. ],
  1355. "Datums": [
  1356. {
  1357. "isOverloadedStorage": false,
  1358. "scriptCanvasType": {
  1359. "m_type": 0
  1360. },
  1361. "isNullPointer": false,
  1362. "$type": "bool",
  1363. "value": false,
  1364. "label": "Result: Boolean"
  1365. },
  1366. {
  1367. "isOverloadedStorage": false,
  1368. "scriptCanvasType": {
  1369. "m_type": 3
  1370. },
  1371. "isNullPointer": false,
  1372. "$type": "double",
  1373. "value": 0.0,
  1374. "label": "Result: Number"
  1375. }
  1376. ],
  1377. "m_version": 2,
  1378. "m_eventMap": [
  1379. {
  1380. "Key": {
  1381. "Value": 418628318
  1382. },
  1383. "Value": {
  1384. "m_scriptEventAssetId": {
  1385. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  1386. },
  1387. "m_eventName": "Increment",
  1388. "m_eventSlotId": {
  1389. "m_id": "{9C1B0C44-08B1-4E2E-9F4C-40D91E5A2FD0}"
  1390. },
  1391. "m_resultSlotId": {
  1392. "m_id": "{3DB4D52F-233B-48C7-BCB7-6300C07973CF}"
  1393. },
  1394. "m_parameterSlotIds": [
  1395. {
  1396. "m_id": "{33A96B1B-D22F-4164-9DFA-F3E8D4BC9D01}"
  1397. }
  1398. ],
  1399. "m_numExpectedArguments": 1
  1400. }
  1401. },
  1402. {
  1403. "Key": {
  1404. "Value": 2640296398
  1405. },
  1406. "Value": {
  1407. "m_scriptEventAssetId": {
  1408. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  1409. },
  1410. "m_eventName": "Not",
  1411. "m_eventSlotId": {
  1412. "m_id": "{7170C3BA-E86C-45F8-83A3-904A89F1C23C}"
  1413. },
  1414. "m_resultSlotId": {
  1415. "m_id": "{314BB703-3D70-46B7-BB12-9C775896659F}"
  1416. },
  1417. "m_parameterSlotIds": [
  1418. {
  1419. "m_id": "{BEBADBD9-F084-4A65-B11B-6C1295793DA8}"
  1420. }
  1421. ],
  1422. "m_numExpectedArguments": 1
  1423. }
  1424. },
  1425. {
  1426. "Key": {
  1427. "Value": 3040003823
  1428. },
  1429. "Value": {
  1430. "m_scriptEventAssetId": {
  1431. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  1432. },
  1433. "m_eventName": "Void",
  1434. "m_eventSlotId": {
  1435. "m_id": "{AD99C031-AD01-41D0-A51B-179C42DFDEF5}"
  1436. }
  1437. }
  1438. }
  1439. ],
  1440. "m_eventSlotMapping": {
  1441. "{0C7A6FE1-0AAC-46B5-A221-844F252E4D24}": {
  1442. "m_id": "{AD99C031-AD01-41D0-A51B-179C42DFDEF5}"
  1443. },
  1444. "{120F80C2-2DD7-4A14-A523-478144EEF583}": {
  1445. "m_id": "{33A96B1B-D22F-4164-9DFA-F3E8D4BC9D01}"
  1446. },
  1447. "{8E9B01B5-D05D-4C59-93ED-96691AF7DA81}": {
  1448. "m_id": "{7170C3BA-E86C-45F8-83A3-904A89F1C23C}"
  1449. },
  1450. "{90254C81-3253-4D71-8D47-A3DC13D6B518}": {
  1451. "m_id": "{314BB703-3D70-46B7-BB12-9C775896659F}"
  1452. },
  1453. "{908C8852-DFBD-4E21-98B6-6A44ADCF5EE6}": {
  1454. "m_id": "{BEBADBD9-F084-4A65-B11B-6C1295793DA8}"
  1455. },
  1456. "{A64111EE-AC03-4037-8B30-55EFD5B8D025}": {
  1457. "m_id": "{3DB4D52F-233B-48C7-BCB7-6300C07973CF}"
  1458. },
  1459. "{F293F9C0-AFA6-4573-8433-05A5986D7540}": {
  1460. "m_id": "{9C1B0C44-08B1-4E2E-9F4C-40D91E5A2FD0}"
  1461. }
  1462. },
  1463. "m_scriptEventAssetId": {
  1464. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  1465. },
  1466. "m_asset": {
  1467. "assetId": {
  1468. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  1469. },
  1470. "assetHint": "scriptcanvas/unittests/globalscriptevents.scriptevents"
  1471. }
  1472. }
  1473. }
  1474. },
  1475. {
  1476. "Id": {
  1477. "id": 589635906787374
  1478. },
  1479. "Name": "SendScriptEvent",
  1480. "Components": {
  1481. "Component_[5014570603000055314]": {
  1482. "$type": "SendScriptEvent",
  1483. "Id": 5014570603000055314,
  1484. "Slots": [
  1485. {
  1486. "id": {
  1487. "m_id": "{32BA2325-5B12-48C8-BA8A-5275C2A9CD26}"
  1488. },
  1489. "contracts": [
  1490. {
  1491. "$type": "SlotTypeContract"
  1492. }
  1493. ],
  1494. "slotName": "In",
  1495. "toolTip": "Fires the specified ScriptEvent when signaled",
  1496. "Descriptor": {
  1497. "ConnectionType": 1,
  1498. "SlotType": 1
  1499. }
  1500. },
  1501. {
  1502. "id": {
  1503. "m_id": "{FF7A2B59-2CE4-435E-9A25-27CF2FAACA05}"
  1504. },
  1505. "contracts": [
  1506. {
  1507. "$type": "SlotTypeContract"
  1508. }
  1509. ],
  1510. "slotName": "Out",
  1511. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  1512. "Descriptor": {
  1513. "ConnectionType": 2,
  1514. "SlotType": 1
  1515. }
  1516. },
  1517. {
  1518. "id": {
  1519. "m_id": "{F37110A5-A5DF-4BA3-B5EE-6439D2BE1F87}"
  1520. },
  1521. "contracts": [
  1522. {
  1523. "$type": "SlotTypeContract"
  1524. }
  1525. ],
  1526. "slotName": "Result: Boolean",
  1527. "DisplayDataType": {
  1528. "m_type": 0
  1529. },
  1530. "Descriptor": {
  1531. "ConnectionType": 2,
  1532. "SlotType": 2
  1533. },
  1534. "DataType": 1
  1535. },
  1536. {
  1537. "id": {
  1538. "m_id": "{FCE42340-E061-40EE-8D3B-E1CA6E27A882}"
  1539. },
  1540. "contracts": [
  1541. {
  1542. "$type": "SlotTypeContract"
  1543. },
  1544. null
  1545. ],
  1546. "slotName": "Boolean",
  1547. "Descriptor": {
  1548. "ConnectionType": 1,
  1549. "SlotType": 2
  1550. },
  1551. "DataType": 1,
  1552. "IsReference": true,
  1553. "VariableReference": {
  1554. "m_id": "{11DAA5B8-1D26-4C4E-9232-D6688D6C5A63}"
  1555. }
  1556. }
  1557. ],
  1558. "Datums": [
  1559. {
  1560. "isOverloadedStorage": false,
  1561. "scriptCanvasType": {
  1562. "m_type": 0
  1563. },
  1564. "isNullPointer": false,
  1565. "$type": "bool",
  1566. "value": false,
  1567. "label": "Boolean"
  1568. }
  1569. ],
  1570. "m_version": 2,
  1571. "m_eventSlotMapping": {
  1572. "{908C8852-DFBD-4E21-98B6-6A44ADCF5EE6}": {
  1573. "m_id": "{FCE42340-E061-40EE-8D3B-E1CA6E27A882}"
  1574. },
  1575. "{C7E99974-D1C0-4108-B731-120AF000060C}": {
  1576. "m_id": "{F37110A5-A5DF-4BA3-B5EE-6439D2BE1F87}"
  1577. }
  1578. },
  1579. "m_scriptEventAssetId": {
  1580. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  1581. },
  1582. "m_asset": {
  1583. "assetId": {
  1584. "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
  1585. },
  1586. "assetHint": "scriptcanvas/unittests/globalscriptevents.scriptevents"
  1587. },
  1588. "m_busId": {
  1589. "Value": 2261882474
  1590. },
  1591. "m_eventId": {
  1592. "Value": 2640296398
  1593. }
  1594. }
  1595. }
  1596. },
  1597. {
  1598. "Id": {
  1599. "id": 589670266525742
  1600. },
  1601. "Name": "SC-Node(Expect False)",
  1602. "Components": {
  1603. "Component_[7471891413526465919]": {
  1604. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1605. "Id": 7471891413526465919,
  1606. "Slots": [
  1607. {
  1608. "isVisibile": false,
  1609. "id": {
  1610. "m_id": "{8B6E4F9A-A249-4789-9BA3-6F4996A378E3}"
  1611. },
  1612. "contracts": [
  1613. {
  1614. "$type": "SlotTypeContract"
  1615. },
  1616. null
  1617. ],
  1618. "slotName": "EntityID: 0",
  1619. "Descriptor": {
  1620. "ConnectionType": 1,
  1621. "SlotType": 2
  1622. },
  1623. "DataType": 1
  1624. },
  1625. {
  1626. "id": {
  1627. "m_id": "{972967E2-A7F6-4DFB-810D-C3DA2A767996}"
  1628. },
  1629. "contracts": [
  1630. {
  1631. "$type": "SlotTypeContract"
  1632. },
  1633. null
  1634. ],
  1635. "slotName": "Candidate",
  1636. "toolTip": "a value that must be false",
  1637. "Descriptor": {
  1638. "ConnectionType": 1,
  1639. "SlotType": 2
  1640. },
  1641. "DataType": 1
  1642. },
  1643. {
  1644. "id": {
  1645. "m_id": "{AA6B023C-B264-4593-A46D-6F7F447A5B64}"
  1646. },
  1647. "contracts": [
  1648. {
  1649. "$type": "SlotTypeContract"
  1650. },
  1651. null
  1652. ],
  1653. "slotName": "Report",
  1654. "toolTip": "additional notes for the test report",
  1655. "Descriptor": {
  1656. "ConnectionType": 1,
  1657. "SlotType": 2
  1658. },
  1659. "DataType": 1
  1660. },
  1661. {
  1662. "id": {
  1663. "m_id": "{E9FAFA10-4912-45BA-B49B-D027EC1C7DAE}"
  1664. },
  1665. "contracts": [
  1666. {
  1667. "$type": "SlotTypeContract"
  1668. }
  1669. ],
  1670. "slotName": "In",
  1671. "Descriptor": {
  1672. "ConnectionType": 1,
  1673. "SlotType": 1
  1674. }
  1675. },
  1676. {
  1677. "id": {
  1678. "m_id": "{7A010BFA-CE86-4763-8E53-4BE09EAC14A3}"
  1679. },
  1680. "contracts": [
  1681. {
  1682. "$type": "SlotTypeContract"
  1683. }
  1684. ],
  1685. "slotName": "Out",
  1686. "Descriptor": {
  1687. "ConnectionType": 2,
  1688. "SlotType": 1
  1689. }
  1690. }
  1691. ],
  1692. "Datums": [
  1693. {
  1694. "isOverloadedStorage": false,
  1695. "scriptCanvasType": {
  1696. "m_type": 1
  1697. },
  1698. "isNullPointer": false,
  1699. "$type": "EntityId",
  1700. "value": {
  1701. "id": 4276206253
  1702. }
  1703. },
  1704. {
  1705. "isOverloadedStorage": false,
  1706. "scriptCanvasType": {
  1707. "m_type": 0
  1708. },
  1709. "isNullPointer": false,
  1710. "$type": "bool",
  1711. "value": false,
  1712. "label": "Candidate"
  1713. },
  1714. {
  1715. "isOverloadedStorage": false,
  1716. "scriptCanvasType": {
  1717. "m_type": 5
  1718. },
  1719. "isNullPointer": false,
  1720. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1721. "value": "",
  1722. "label": "Report"
  1723. }
  1724. ],
  1725. "methodType": 2,
  1726. "methodName": "Expect False",
  1727. "className": "Unit Testing",
  1728. "resultSlotIDs": [
  1729. {}
  1730. ],
  1731. "prettyClassName": "Unit Testing"
  1732. }
  1733. }
  1734. }
  1735. ],
  1736. "m_connections": [
  1737. {
  1738. "Id": {
  1739. "id": 589674561493038
  1740. },
  1741. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Mark Complete: In)",
  1742. "Components": {
  1743. "Component_[3558788489285945935]": {
  1744. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1745. "Id": 3558788489285945935,
  1746. "sourceEndpoint": {
  1747. "nodeId": {
  1748. "id": 589623021885486
  1749. },
  1750. "slotId": {
  1751. "m_id": "{184FA2B4-4489-4022-8DB6-D4398F6FE84B}"
  1752. }
  1753. },
  1754. "targetEndpoint": {
  1755. "nodeId": {
  1756. "id": 589644496721966
  1757. },
  1758. "slotId": {
  1759. "m_id": "{C82BE2EF-C372-47C8-B3AC-646801437D50}"
  1760. }
  1761. }
  1762. }
  1763. }
  1764. },
  1765. {
  1766. "Id": {
  1767. "id": 589678856460334
  1768. },
  1769. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Send Script Event: In)",
  1770. "Components": {
  1771. "Component_[3917522684780950458]": {
  1772. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1773. "Id": 3917522684780950458,
  1774. "sourceEndpoint": {
  1775. "nodeId": {
  1776. "id": 589648791689262
  1777. },
  1778. "slotId": {
  1779. "m_id": "{44FA5998-4DBF-492B-9B0C-283B1DBC396B}"
  1780. }
  1781. },
  1782. "targetEndpoint": {
  1783. "nodeId": {
  1784. "id": 589657381623854
  1785. },
  1786. "slotId": {
  1787. "m_id": "{F0862C7A-258C-4012-9F9F-C80B6FB6FEE8}"
  1788. }
  1789. }
  1790. }
  1791. }
  1792. },
  1793. {
  1794. "Id": {
  1795. "id": 589683151427630
  1796. },
  1797. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Expect Equal: In)",
  1798. "Components": {
  1799. "Component_[13630389283291755678]": {
  1800. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1801. "Id": 13630389283291755678,
  1802. "sourceEndpoint": {
  1803. "nodeId": {
  1804. "id": 589657381623854
  1805. },
  1806. "slotId": {
  1807. "m_id": "{4257A0BF-9CB0-4B72-8D95-19BC31E68C31}"
  1808. }
  1809. },
  1810. "targetEndpoint": {
  1811. "nodeId": {
  1812. "id": 589653086656558
  1813. },
  1814. "slotId": {
  1815. "m_id": "{CEB87BB6-EA24-4C3C-9C3A-FDD08EE1D366}"
  1816. }
  1817. }
  1818. }
  1819. }
  1820. },
  1821. {
  1822. "Id": {
  1823. "id": 589687446394926
  1824. },
  1825. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Send Script Event: In)",
  1826. "Components": {
  1827. "Component_[18329241333705936510]": {
  1828. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1829. "Id": 18329241333705936510,
  1830. "sourceEndpoint": {
  1831. "nodeId": {
  1832. "id": 589653086656558
  1833. },
  1834. "slotId": {
  1835. "m_id": "{80FEC92A-9FFF-4584-8CAD-22BD01A1532B}"
  1836. }
  1837. },
  1838. "targetEndpoint": {
  1839. "nodeId": {
  1840. "id": 589635906787374
  1841. },
  1842. "slotId": {
  1843. "m_id": "{32BA2325-5B12-48C8-BA8A-5275C2A9CD26}"
  1844. }
  1845. }
  1846. }
  1847. }
  1848. },
  1849. {
  1850. "Id": {
  1851. "id": 589691741362222
  1852. },
  1853. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Expect False: In)",
  1854. "Components": {
  1855. "Component_[7121114002783937911]": {
  1856. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1857. "Id": 7121114002783937911,
  1858. "sourceEndpoint": {
  1859. "nodeId": {
  1860. "id": 589635906787374
  1861. },
  1862. "slotId": {
  1863. "m_id": "{FF7A2B59-2CE4-435E-9A25-27CF2FAACA05}"
  1864. }
  1865. },
  1866. "targetEndpoint": {
  1867. "nodeId": {
  1868. "id": 589670266525742
  1869. },
  1870. "slotId": {
  1871. "m_id": "{E9FAFA10-4912-45BA-B49B-D027EC1C7DAE}"
  1872. }
  1873. }
  1874. }
  1875. }
  1876. },
  1877. {
  1878. "Id": {
  1879. "id": 589696036329518
  1880. },
  1881. "Name": "srcEndpoint=(Send Script Event: Result: Boolean), destEndpoint=(Expect False: Candidate)",
  1882. "Components": {
  1883. "Component_[10249967466056818056]": {
  1884. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1885. "Id": 10249967466056818056,
  1886. "sourceEndpoint": {
  1887. "nodeId": {
  1888. "id": 589635906787374
  1889. },
  1890. "slotId": {
  1891. "m_id": "{F37110A5-A5DF-4BA3-B5EE-6439D2BE1F87}"
  1892. }
  1893. },
  1894. "targetEndpoint": {
  1895. "nodeId": {
  1896. "id": 589670266525742
  1897. },
  1898. "slotId": {
  1899. "m_id": "{972967E2-A7F6-4DFB-810D-C3DA2A767996}"
  1900. }
  1901. }
  1902. }
  1903. }
  1904. },
  1905. {
  1906. "Id": {
  1907. "id": 589700331296814
  1908. },
  1909. "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(Send Script Event: In)",
  1910. "Components": {
  1911. "Component_[3556752068525571383]": {
  1912. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1913. "Id": 3556752068525571383,
  1914. "sourceEndpoint": {
  1915. "nodeId": {
  1916. "id": 589670266525742
  1917. },
  1918. "slotId": {
  1919. "m_id": "{7A010BFA-CE86-4763-8E53-4BE09EAC14A3}"
  1920. }
  1921. },
  1922. "targetEndpoint": {
  1923. "nodeId": {
  1924. "id": 589665971558446
  1925. },
  1926. "slotId": {
  1927. "m_id": "{2466F81C-03C1-48A8-9C5A-5A56C493B2A0}"
  1928. }
  1929. }
  1930. }
  1931. }
  1932. },
  1933. {
  1934. "Id": {
  1935. "id": 589704626264110
  1936. },
  1937. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Expect True: In)",
  1938. "Components": {
  1939. "Component_[15757312414278549667]": {
  1940. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1941. "Id": 15757312414278549667,
  1942. "sourceEndpoint": {
  1943. "nodeId": {
  1944. "id": 589665971558446
  1945. },
  1946. "slotId": {
  1947. "m_id": "{32ECF8AA-932F-4A38-8FE7-F4F6D76C8319}"
  1948. }
  1949. },
  1950. "targetEndpoint": {
  1951. "nodeId": {
  1952. "id": 589623021885486
  1953. },
  1954. "slotId": {
  1955. "m_id": "{EDDC6AF0-42B7-4577-B2AC-23BCD9D3D73E}"
  1956. }
  1957. }
  1958. }
  1959. }
  1960. },
  1961. {
  1962. "Id": {
  1963. "id": 589708921231406
  1964. },
  1965. "Name": "srcEndpoint=(Receive Script Event: Number), destEndpoint=(Add (+): Value)",
  1966. "Components": {
  1967. "Component_[5611752705749724675]": {
  1968. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1969. "Id": 5611752705749724675,
  1970. "sourceEndpoint": {
  1971. "nodeId": {
  1972. "id": 589640201754670
  1973. },
  1974. "slotId": {
  1975. "m_id": "{33A96B1B-D22F-4164-9DFA-F3E8D4BC9D01}"
  1976. }
  1977. },
  1978. "targetEndpoint": {
  1979. "nodeId": {
  1980. "id": 589627316852782
  1981. },
  1982. "slotId": {
  1983. "m_id": "{AD0EE0F8-1F78-41D3-A0DB-121DC008A33B}"
  1984. }
  1985. }
  1986. }
  1987. }
  1988. },
  1989. {
  1990. "Id": {
  1991. "id": 589713216198702
  1992. },
  1993. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Increment), destEndpoint=(Add (+): In)",
  1994. "Components": {
  1995. "Component_[5594140004288547649]": {
  1996. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  1997. "Id": 5594140004288547649,
  1998. "sourceEndpoint": {
  1999. "nodeId": {
  2000. "id": 589640201754670
  2001. },
  2002. "slotId": {
  2003. "m_id": "{9C1B0C44-08B1-4E2E-9F4C-40D91E5A2FD0}"
  2004. }
  2005. },
  2006. "targetEndpoint": {
  2007. "nodeId": {
  2008. "id": 589627316852782
  2009. },
  2010. "slotId": {
  2011. "m_id": "{C63EDD6C-2CFE-4A2C-BD3D-7884E332C6E4}"
  2012. }
  2013. }
  2014. }
  2015. }
  2016. },
  2017. {
  2018. "Id": {
  2019. "id": 589717511165998
  2020. },
  2021. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Receive Script Event: Result: Number)",
  2022. "Components": {
  2023. "Component_[8607901630101607613]": {
  2024. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2025. "Id": 8607901630101607613,
  2026. "sourceEndpoint": {
  2027. "nodeId": {
  2028. "id": 589627316852782
  2029. },
  2030. "slotId": {
  2031. "m_id": "{13C41C54-6B43-47E5-AF7B-992AF8631F94}"
  2032. }
  2033. },
  2034. "targetEndpoint": {
  2035. "nodeId": {
  2036. "id": 589640201754670
  2037. },
  2038. "slotId": {
  2039. "m_id": "{3DB4D52F-233B-48C7-BCB7-6300C07973CF}"
  2040. }
  2041. }
  2042. }
  2043. }
  2044. },
  2045. {
  2046. "Id": {
  2047. "id": 589721806133294
  2048. },
  2049. "Name": "srcEndpoint=(Receive Script Event: Boolean), destEndpoint=(Not: Value)",
  2050. "Components": {
  2051. "Component_[11495607908356890113]": {
  2052. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2053. "Id": 11495607908356890113,
  2054. "sourceEndpoint": {
  2055. "nodeId": {
  2056. "id": 589640201754670
  2057. },
  2058. "slotId": {
  2059. "m_id": "{BEBADBD9-F084-4A65-B11B-6C1295793DA8}"
  2060. }
  2061. },
  2062. "targetEndpoint": {
  2063. "nodeId": {
  2064. "id": 589631611820078
  2065. },
  2066. "slotId": {
  2067. "m_id": "{FFACE0B4-481E-4DAD-99D0-0B05A1892623}"
  2068. }
  2069. }
  2070. }
  2071. }
  2072. },
  2073. {
  2074. "Id": {
  2075. "id": 589726101100590
  2076. },
  2077. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Not), destEndpoint=(Not: In)",
  2078. "Components": {
  2079. "Component_[4123371515071343752]": {
  2080. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2081. "Id": 4123371515071343752,
  2082. "sourceEndpoint": {
  2083. "nodeId": {
  2084. "id": 589640201754670
  2085. },
  2086. "slotId": {
  2087. "m_id": "{7170C3BA-E86C-45F8-83A3-904A89F1C23C}"
  2088. }
  2089. },
  2090. "targetEndpoint": {
  2091. "nodeId": {
  2092. "id": 589631611820078
  2093. },
  2094. "slotId": {
  2095. "m_id": "{B81FB4F3-7A39-4FCF-9B74-A5F508683416}"
  2096. }
  2097. }
  2098. }
  2099. }
  2100. },
  2101. {
  2102. "Id": {
  2103. "id": 589730396067886
  2104. },
  2105. "Name": "srcEndpoint=(Not: Result), destEndpoint=(Receive Script Event: Result: Boolean)",
  2106. "Components": {
  2107. "Component_[7675063294978670598]": {
  2108. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2109. "Id": 7675063294978670598,
  2110. "sourceEndpoint": {
  2111. "nodeId": {
  2112. "id": 589631611820078
  2113. },
  2114. "slotId": {
  2115. "m_id": "{F18EE183-EEF8-4B96-8720-9C3BBC36AD8C}"
  2116. }
  2117. },
  2118. "targetEndpoint": {
  2119. "nodeId": {
  2120. "id": 589640201754670
  2121. },
  2122. "slotId": {
  2123. "m_id": "{314BB703-3D70-46B7-BB12-9C775896659F}"
  2124. }
  2125. }
  2126. }
  2127. }
  2128. },
  2129. {
  2130. "Id": {
  2131. "id": 589734691035182
  2132. },
  2133. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Void), destEndpoint=(Set Variable: In)",
  2134. "Components": {
  2135. "Component_[2738038360910130861]": {
  2136. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2137. "Id": 2738038360910130861,
  2138. "sourceEndpoint": {
  2139. "nodeId": {
  2140. "id": 589640201754670
  2141. },
  2142. "slotId": {
  2143. "m_id": "{AD99C031-AD01-41D0-A51B-179C42DFDEF5}"
  2144. }
  2145. },
  2146. "targetEndpoint": {
  2147. "nodeId": {
  2148. "id": 589661676591150
  2149. },
  2150. "slotId": {
  2151. "m_id": "{ECD4EC8C-1759-4FAE-B31A-29D99A7216BE}"
  2152. }
  2153. }
  2154. }
  2155. }
  2156. },
  2157. {
  2158. "Id": {
  2159. "id": 589738986002478
  2160. },
  2161. "Name": "srcEndpoint=(Send Script Event: Result: Number), destEndpoint=(Expect Equal: Candidate)",
  2162. "Components": {
  2163. "Component_[18080442798886956750]": {
  2164. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2165. "Id": 18080442798886956750,
  2166. "sourceEndpoint": {
  2167. "nodeId": {
  2168. "id": 589657381623854
  2169. },
  2170. "slotId": {
  2171. "m_id": "{63A76B4B-D60B-4DE3-9A77-13E70D8E3AFD}"
  2172. }
  2173. },
  2174. "targetEndpoint": {
  2175. "nodeId": {
  2176. "id": 589653086656558
  2177. },
  2178. "slotId": {
  2179. "m_id": "{5A18D73D-362D-41CB-87BD-6BA7DB626D74}"
  2180. }
  2181. }
  2182. }
  2183. }
  2184. }
  2185. ],
  2186. "m_scriptEventAssets": [
  2187. [
  2188. {
  2189. "id": 589657381623854
  2190. },
  2191. {}
  2192. ],
  2193. [
  2194. {
  2195. "id": 589635906787374
  2196. },
  2197. {}
  2198. ],
  2199. [
  2200. {
  2201. "id": 589665971558446
  2202. },
  2203. {}
  2204. ],
  2205. [
  2206. {
  2207. "id": 589640201754670
  2208. },
  2209. {}
  2210. ]
  2211. ]
  2212. },
  2213. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  2214. "versionData": {
  2215. "_grammarVersion": 1,
  2216. "_runtimeVersion": 1,
  2217. "_fileVersion": 1
  2218. },
  2219. "m_variableCounter": 3,
  2220. "GraphCanvasData": [
  2221. {
  2222. "Key": {
  2223. "id": 589618726918190
  2224. },
  2225. "Value": {
  2226. "ComponentData": {
  2227. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2228. "$type": "SceneComponentSaveData",
  2229. "ViewParams": {
  2230. "Scale": 0.6364304,
  2231. "AnchorX": -977.3259887695313,
  2232. "AnchorY": -262.4010314941406
  2233. }
  2234. }
  2235. }
  2236. }
  2237. },
  2238. {
  2239. "Key": {
  2240. "id": 589623021885486
  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": "MethodNodeTitlePalette"
  2250. },
  2251. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2252. "$type": "GeometrySaveData",
  2253. "Position": [
  2254. 560.0,
  2255. -280.0
  2256. ]
  2257. },
  2258. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2259. "$type": "StylingComponentSaveData",
  2260. "SubStyle": ".method"
  2261. },
  2262. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2263. "$type": "PersistentIdComponentSaveData",
  2264. "PersistentId": "{7EA33538-C6BE-4971-B200-717AC90E0A2F}"
  2265. }
  2266. }
  2267. }
  2268. },
  2269. {
  2270. "Key": {
  2271. "id": 589627316852782
  2272. },
  2273. "Value": {
  2274. "ComponentData": {
  2275. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2276. "$type": "NodeSaveData"
  2277. },
  2278. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2279. "$type": "GeneralNodeTitleComponentSaveData",
  2280. "PaletteOverride": "MathNodeTitlePalette"
  2281. },
  2282. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2283. "$type": "GeometrySaveData",
  2284. "Position": [
  2285. -140.0,
  2286. 160.0
  2287. ]
  2288. },
  2289. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2290. "$type": "StylingComponentSaveData"
  2291. },
  2292. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2293. "$type": "PersistentIdComponentSaveData",
  2294. "PersistentId": "{DCBC25AF-64AD-4560-A485-583E060E67FC}"
  2295. }
  2296. }
  2297. }
  2298. },
  2299. {
  2300. "Key": {
  2301. "id": 589631611820078
  2302. },
  2303. "Value": {
  2304. "ComponentData": {
  2305. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2306. "$type": "NodeSaveData"
  2307. },
  2308. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2309. "$type": "GeneralNodeTitleComponentSaveData",
  2310. "PaletteOverride": "LogicNodeTitlePalette"
  2311. },
  2312. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2313. "$type": "GeometrySaveData",
  2314. "Position": [
  2315. -140.0,
  2316. 380.0
  2317. ]
  2318. },
  2319. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2320. "$type": "StylingComponentSaveData"
  2321. },
  2322. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2323. "$type": "PersistentIdComponentSaveData",
  2324. "PersistentId": "{34BFCA6A-556D-4AFF-AA06-23FEFCDEAAF0}"
  2325. }
  2326. }
  2327. }
  2328. },
  2329. {
  2330. "Key": {
  2331. "id": 589635906787374
  2332. },
  2333. "Value": {
  2334. "ComponentData": {
  2335. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2336. "$type": "NodeSaveData"
  2337. },
  2338. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2339. "$type": "GeneralNodeTitleComponentSaveData",
  2340. "PaletteOverride": "MethodNodeTitlePalette"
  2341. },
  2342. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2343. "$type": "GeometrySaveData",
  2344. "Position": [
  2345. -400.0,
  2346. -80.0
  2347. ]
  2348. },
  2349. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2350. "$type": "StylingComponentSaveData",
  2351. "SubStyle": ".method"
  2352. },
  2353. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2354. "$type": "PersistentIdComponentSaveData",
  2355. "PersistentId": "{38803201-50A4-42FD-A76D-052E2445C44F}"
  2356. }
  2357. }
  2358. }
  2359. },
  2360. {
  2361. "Key": {
  2362. "id": 589640201754670
  2363. },
  2364. "Value": {
  2365. "ComponentData": {
  2366. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2367. "$type": "NodeSaveData"
  2368. },
  2369. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2370. "$type": "GeometrySaveData",
  2371. "Position": [
  2372. -620.0,
  2373. 180.0
  2374. ]
  2375. },
  2376. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2377. "$type": "StylingComponentSaveData"
  2378. },
  2379. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2380. "$type": "PersistentIdComponentSaveData",
  2381. "PersistentId": "{0664C341-FC4B-45CA-809B-97883D4FE207}"
  2382. },
  2383. "{D8BBE799-7E4D-495A-B69A-1E3940670891}": {
  2384. "$type": "ScriptEventReceiverHandlerNodeDescriptorSaveData",
  2385. "EventNames": [
  2386. [
  2387. {
  2388. "Value": 418628318
  2389. },
  2390. "Increment"
  2391. ],
  2392. [
  2393. {
  2394. "Value": 2640296398
  2395. },
  2396. "Not"
  2397. ],
  2398. [
  2399. {
  2400. "Value": 3040003823
  2401. },
  2402. "Void"
  2403. ]
  2404. ]
  2405. }
  2406. }
  2407. }
  2408. },
  2409. {
  2410. "Key": {
  2411. "id": 589644496721966
  2412. },
  2413. "Value": {
  2414. "ComponentData": {
  2415. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2416. "$type": "NodeSaveData"
  2417. },
  2418. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2419. "$type": "GeneralNodeTitleComponentSaveData",
  2420. "PaletteOverride": "MethodNodeTitlePalette"
  2421. },
  2422. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2423. "$type": "GeometrySaveData",
  2424. "Position": [
  2425. 380.0,
  2426. -60.0
  2427. ]
  2428. },
  2429. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2430. "$type": "StylingComponentSaveData",
  2431. "SubStyle": ".method"
  2432. },
  2433. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2434. "$type": "PersistentIdComponentSaveData",
  2435. "PersistentId": "{7A67EE96-1407-4252-B343-D55DC83090D2}"
  2436. }
  2437. }
  2438. }
  2439. },
  2440. {
  2441. "Key": {
  2442. "id": 589648791689262
  2443. },
  2444. "Value": {
  2445. "ComponentData": {
  2446. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2447. "$type": "NodeSaveData"
  2448. },
  2449. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2450. "$type": "GeneralNodeTitleComponentSaveData",
  2451. "PaletteOverride": "TimeNodeTitlePalette"
  2452. },
  2453. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2454. "$type": "GeometrySaveData",
  2455. "Position": [
  2456. -600.0,
  2457. -280.0
  2458. ]
  2459. },
  2460. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2461. "$type": "StylingComponentSaveData",
  2462. "SubStyle": ".time"
  2463. },
  2464. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2465. "$type": "PersistentIdComponentSaveData",
  2466. "PersistentId": "{2AE87E44-A587-4E11-9B1D-7F32DF2DD09F}"
  2467. }
  2468. }
  2469. }
  2470. },
  2471. {
  2472. "Key": {
  2473. "id": 589653086656558
  2474. },
  2475. "Value": {
  2476. "ComponentData": {
  2477. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2478. "$type": "NodeSaveData"
  2479. },
  2480. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2481. "$type": "GeneralNodeTitleComponentSaveData",
  2482. "PaletteOverride": "MethodNodeTitlePalette"
  2483. },
  2484. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2485. "$type": "GeometrySaveData",
  2486. "Position": [
  2487. 60.0,
  2488. -280.0
  2489. ]
  2490. },
  2491. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2492. "$type": "StylingComponentSaveData",
  2493. "SubStyle": ".method"
  2494. },
  2495. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2496. "$type": "PersistentIdComponentSaveData",
  2497. "PersistentId": "{7B0928BF-FBAA-4DAB-8AA5-CF86948E1304}"
  2498. }
  2499. }
  2500. }
  2501. },
  2502. {
  2503. "Key": {
  2504. "id": 589657381623854
  2505. },
  2506. "Value": {
  2507. "ComponentData": {
  2508. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2509. "$type": "NodeSaveData"
  2510. },
  2511. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2512. "$type": "GeneralNodeTitleComponentSaveData",
  2513. "PaletteOverride": "MethodNodeTitlePalette"
  2514. },
  2515. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2516. "$type": "GeometrySaveData",
  2517. "Position": [
  2518. -400.0,
  2519. -280.0
  2520. ]
  2521. },
  2522. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2523. "$type": "StylingComponentSaveData",
  2524. "SubStyle": ".method"
  2525. },
  2526. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2527. "$type": "PersistentIdComponentSaveData",
  2528. "PersistentId": "{2AD7214B-7C8A-4828-9EB7-C1785AEABC01}"
  2529. }
  2530. }
  2531. }
  2532. },
  2533. {
  2534. "Key": {
  2535. "id": 589661676591150
  2536. },
  2537. "Value": {
  2538. "ComponentData": {
  2539. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2540. "$type": "NodeSaveData"
  2541. },
  2542. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2543. "$type": "GeneralNodeTitleComponentSaveData",
  2544. "PaletteOverride": "SetVariableNodeTitlePalette"
  2545. },
  2546. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2547. "$type": "GeometrySaveData",
  2548. "Position": [
  2549. -140.0,
  2550. 560.0
  2551. ]
  2552. },
  2553. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2554. "$type": "StylingComponentSaveData",
  2555. "SubStyle": ".setVariable"
  2556. },
  2557. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2558. "$type": "PersistentIdComponentSaveData",
  2559. "PersistentId": "{4DD86C76-51BC-4C20-83A9-B155EE4D640C}"
  2560. }
  2561. }
  2562. }
  2563. },
  2564. {
  2565. "Key": {
  2566. "id": 589665971558446
  2567. },
  2568. "Value": {
  2569. "ComponentData": {
  2570. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2571. "$type": "NodeSaveData"
  2572. },
  2573. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2574. "$type": "GeneralNodeTitleComponentSaveData",
  2575. "PaletteOverride": "MethodNodeTitlePalette"
  2576. },
  2577. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2578. "$type": "GeometrySaveData",
  2579. "Position": [
  2580. 380.0,
  2581. -280.0
  2582. ]
  2583. },
  2584. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2585. "$type": "StylingComponentSaveData",
  2586. "SubStyle": ".method"
  2587. },
  2588. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2589. "$type": "PersistentIdComponentSaveData",
  2590. "PersistentId": "{012FB437-7CE1-40EE-A033-BE58091868A3}"
  2591. }
  2592. }
  2593. }
  2594. },
  2595. {
  2596. "Key": {
  2597. "id": 589670266525742
  2598. },
  2599. "Value": {
  2600. "ComponentData": {
  2601. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2602. "$type": "NodeSaveData"
  2603. },
  2604. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2605. "$type": "GeneralNodeTitleComponentSaveData",
  2606. "PaletteOverride": "MethodNodeTitlePalette"
  2607. },
  2608. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2609. "$type": "GeometrySaveData",
  2610. "Position": [
  2611. 60.0,
  2612. -40.0
  2613. ]
  2614. },
  2615. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2616. "$type": "StylingComponentSaveData",
  2617. "SubStyle": ".method"
  2618. },
  2619. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2620. "$type": "PersistentIdComponentSaveData",
  2621. "PersistentId": "{8583740E-F0CF-47A1-A4A2-682519F87666}"
  2622. }
  2623. }
  2624. }
  2625. }
  2626. ],
  2627. "StatisticsHelper": {
  2628. "InstanceCounter": [
  2629. {
  2630. "Key": 524494764786010043,
  2631. "Value": 1
  2632. },
  2633. {
  2634. "Key": 1050222979521486012,
  2635. "Value": 1
  2636. },
  2637. {
  2638. "Key": 1244476766431948410,
  2639. "Value": 1
  2640. },
  2641. {
  2642. "Key": 1678857341228962198,
  2643. "Value": 1
  2644. },
  2645. {
  2646. "Key": 1678857343168039558,
  2647. "Value": 1
  2648. },
  2649. {
  2650. "Key": 1678857343842213289,
  2651. "Value": 1
  2652. },
  2653. {
  2654. "Key": 4199610336680704683,
  2655. "Value": 1
  2656. },
  2657. {
  2658. "Key": 4511496914810470227,
  2659. "Value": 1
  2660. },
  2661. {
  2662. "Key": 6840657073857873079,
  2663. "Value": 1
  2664. },
  2665. {
  2666. "Key": 12248402977957902355,
  2667. "Value": 1
  2668. },
  2669. {
  2670. "Key": 12248402984734585123,
  2671. "Value": 1
  2672. },
  2673. {
  2674. "Key": 12248402984866118658,
  2675. "Value": 1
  2676. },
  2677. {
  2678. "Key": 13965274197900804011,
  2679. "Value": 1
  2680. },
  2681. {
  2682. "Key": 14935618182048638376,
  2683. "Value": 1
  2684. }
  2685. ]
  2686. }
  2687. },
  2688. "Component_[18388094505787988725]": {
  2689. "$type": "EditorGraphVariableManagerComponent",
  2690. "Id": 18388094505787988725,
  2691. "m_variableData": {
  2692. "m_nameVariableMap": [
  2693. {
  2694. "Key": {
  2695. "m_id": "{11DAA5B8-1D26-4C4E-9232-D6688D6C5A63}"
  2696. },
  2697. "Value": {
  2698. "Datum": {
  2699. "isOverloadedStorage": false,
  2700. "scriptCanvasType": {
  2701. "m_type": 0
  2702. },
  2703. "isNullPointer": false,
  2704. "$type": "bool",
  2705. "value": true,
  2706. "label": "Boolean"
  2707. },
  2708. "VariableId": {
  2709. "m_id": "{11DAA5B8-1D26-4C4E-9232-D6688D6C5A63}"
  2710. },
  2711. "VariableName": "True"
  2712. }
  2713. },
  2714. {
  2715. "Key": {
  2716. "m_id": "{7EAB01FE-E67C-4018-ADF9-66CF43BAD875}"
  2717. },
  2718. "Value": {
  2719. "Datum": {
  2720. "isOverloadedStorage": false,
  2721. "scriptCanvasType": {
  2722. "m_type": 0
  2723. },
  2724. "isNullPointer": false,
  2725. "$type": "bool",
  2726. "value": false,
  2727. "label": "Boolean"
  2728. },
  2729. "VariableId": {
  2730. "m_id": "{7EAB01FE-E67C-4018-ADF9-66CF43BAD875}"
  2731. },
  2732. "VariableName": "Void Executed"
  2733. }
  2734. },
  2735. {
  2736. "Key": {
  2737. "m_id": "{836C0AC5-CEF7-4DC8-B2F7-9A2A3196BA17}"
  2738. },
  2739. "Value": {
  2740. "Datum": {
  2741. "isOverloadedStorage": false,
  2742. "scriptCanvasType": {
  2743. "m_type": 3
  2744. },
  2745. "isNullPointer": false,
  2746. "$type": "double",
  2747. "value": 14.0,
  2748. "label": "Number"
  2749. },
  2750. "VariableId": {
  2751. "m_id": "{836C0AC5-CEF7-4DC8-B2F7-9A2A3196BA17}"
  2752. },
  2753. "VariableName": "14"
  2754. }
  2755. },
  2756. {
  2757. "Key": {
  2758. "m_id": "{88FBC064-75B2-4E8D-A836-D429BD5C9D11}"
  2759. },
  2760. "Value": {
  2761. "Datum": {
  2762. "isOverloadedStorage": false,
  2763. "scriptCanvasType": {
  2764. "m_type": 3
  2765. },
  2766. "isNullPointer": false,
  2767. "$type": "double",
  2768. "value": 13.0,
  2769. "label": "Number"
  2770. },
  2771. "VariableId": {
  2772. "m_id": "{88FBC064-75B2-4E8D-A836-D429BD5C9D11}"
  2773. },
  2774. "VariableName": "13"
  2775. }
  2776. }
  2777. ]
  2778. },
  2779. "CopiedVariableRemapping": [
  2780. {
  2781. "Key": {
  2782. "m_id": "{3D036AE3-6EFC-4521-8765-80BC3028006E}"
  2783. },
  2784. "Value": {
  2785. "m_id": "{11DAA5B8-1D26-4C4E-9232-D6688D6C5A63}"
  2786. }
  2787. },
  2788. {
  2789. "Key": {
  2790. "m_id": "{6AA0F64C-4C8E-4762-9150-04F008B747C2}"
  2791. },
  2792. "Value": {
  2793. "m_id": "{88FBC064-75B2-4E8D-A836-D429BD5C9D11}"
  2794. }
  2795. },
  2796. {
  2797. "Key": {
  2798. "m_id": "{83E01F05-E6BC-45E1-8CAE-7388E486379F}"
  2799. },
  2800. "Value": {
  2801. "m_id": "{7EAB01FE-E67C-4018-ADF9-66CF43BAD875}"
  2802. }
  2803. },
  2804. {
  2805. "Key": {
  2806. "m_id": "{8C2202E2-66C4-4DC2-BBC0-64BCB5CFF499}"
  2807. },
  2808. "Value": {
  2809. "m_id": "{836C0AC5-CEF7-4DC8-B2F7-9A2A3196BA17}"
  2810. }
  2811. }
  2812. ]
  2813. }
  2814. }
  2815. }
  2816. }
  2817. }