3
0

LY_SC_UnitTest_EventHandlingAddressUpdate.scriptcanvas 212 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 855082065549358
  9. },
  10. "Name": "LY_SC_UnitTest_EventHandlingAddressUpdate",
  11. "Components": {
  12. "Component_[16938950299749457314]": {
  13. "$type": "EditorGraph",
  14. "Id": 16938950299749457314,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 855103540385838
  20. },
  21. "Name": "SC Node(GetVariable)",
  22. "Components": {
  23. "Component_[10401665901642143513]": {
  24. "$type": "GetVariableNode",
  25. "Id": 10401665901642143513,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{3FE32DE8-F484-4A9E-8414-A5B5A547C6D1}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "In",
  37. "toolTip": "When signaled sends the property 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": "{492B6BB9-EDA0-45A9-9BCB-D7136E1D7A8A}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "Out",
  53. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  54. "Descriptor": {
  55. "ConnectionType": 2,
  56. "SlotType": 1
  57. }
  58. },
  59. {
  60. "id": {
  61. "m_id": "{9A86F1E8-82CF-4C2F-80E0-54B30871E611}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. }
  67. ],
  68. "slotName": "Number",
  69. "DisplayDataType": {
  70. "m_type": 3
  71. },
  72. "Descriptor": {
  73. "ConnectionType": 2,
  74. "SlotType": 2
  75. },
  76. "DataType": 1
  77. }
  78. ],
  79. "m_variableId": {
  80. "m_id": "{61E02098-E7F9-4442-BF7C-55F62213527C}"
  81. },
  82. "m_variableDataOutSlotId": {
  83. "m_id": "{9A86F1E8-82CF-4C2F-80E0-54B30871E611}"
  84. }
  85. }
  86. }
  87. },
  88. {
  89. "Id": {
  90. "id": 855155079993390
  91. },
  92. "Name": "SC-Node(Not)",
  93. "Components": {
  94. "Component_[10462556873150738076]": {
  95. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  96. "Id": 10462556873150738076,
  97. "Slots": [
  98. {
  99. "id": {
  100. "m_id": "{05067E15-F359-4EAF-A41A-B043BAEB2FF9}"
  101. },
  102. "contracts": [
  103. {
  104. "$type": "SlotTypeContract"
  105. },
  106. null
  107. ],
  108. "slotName": "Number: 0",
  109. "Descriptor": {
  110. "ConnectionType": 1,
  111. "SlotType": 2
  112. },
  113. "DataType": 1
  114. },
  115. {
  116. "id": {
  117. "m_id": "{A37C8883-0FB3-48D0-9E05-39DF02772A4A}"
  118. },
  119. "contracts": [
  120. {
  121. "$type": "SlotTypeContract"
  122. },
  123. null
  124. ],
  125. "slotName": "Boolean: 1",
  126. "Descriptor": {
  127. "ConnectionType": 1,
  128. "SlotType": 2
  129. },
  130. "DataType": 1
  131. },
  132. {
  133. "id": {
  134. "m_id": "{F5C262F5-86D0-4BD4-A41F-4E46528179A4}"
  135. },
  136. "contracts": [
  137. {
  138. "$type": "SlotTypeContract"
  139. }
  140. ],
  141. "slotName": "In",
  142. "Descriptor": {
  143. "ConnectionType": 1,
  144. "SlotType": 1
  145. }
  146. },
  147. {
  148. "id": {
  149. "m_id": "{9A745DF5-BDDE-45C9-8FEB-98B6768F3059}"
  150. },
  151. "contracts": [
  152. {
  153. "$type": "SlotTypeContract"
  154. }
  155. ],
  156. "slotName": "Result: Boolean",
  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": "{82AF7E69-1875-4DF0-AF4F-982CA0904633}"
  169. },
  170. "contracts": [
  171. {
  172. "$type": "SlotTypeContract"
  173. }
  174. ],
  175. "slotName": "Out",
  176. "Descriptor": {
  177. "ConnectionType": 2,
  178. "SlotType": 1
  179. }
  180. }
  181. ],
  182. "Datums": [
  183. {
  184. "isOverloadedStorage": false,
  185. "scriptCanvasType": {
  186. "m_type": 3
  187. },
  188. "isNullPointer": false,
  189. "$type": "double",
  190. "value": 0.0,
  191. "label": "Source"
  192. },
  193. {
  194. "isOverloadedStorage": false,
  195. "scriptCanvasType": {
  196. "m_type": 0
  197. },
  198. "isNullPointer": false,
  199. "$type": "bool",
  200. "value": false,
  201. "label": "Boolean: 1"
  202. }
  203. ],
  204. "methodType": 0,
  205. "methodName": "Not",
  206. "className": "LocalEBus",
  207. "resultSlotIDs": [
  208. {
  209. "m_id": "{9A745DF5-BDDE-45C9-8FEB-98B6768F3059}"
  210. }
  211. ],
  212. "prettyClassName": "LocalEBus"
  213. }
  214. }
  215. },
  216. {
  217. "Id": {
  218. "id": 855142195091502
  219. },
  220. "Name": "SC Node(SetVariable)",
  221. "Components": {
  222. "Component_[10486568682958146457]": {
  223. "$type": "SetVariableNode",
  224. "Id": 10486568682958146457,
  225. "Slots": [
  226. {
  227. "id": {
  228. "m_id": "{12AA4346-D389-4D5B-9CE8-4B6A7EEBF26E}"
  229. },
  230. "contracts": [
  231. {
  232. "$type": "SlotTypeContract"
  233. }
  234. ],
  235. "slotName": "In",
  236. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  237. "Descriptor": {
  238. "ConnectionType": 1,
  239. "SlotType": 1
  240. }
  241. },
  242. {
  243. "id": {
  244. "m_id": "{0662A0B3-52FD-44BE-B402-49BEF67BA240}"
  245. },
  246. "contracts": [
  247. {
  248. "$type": "SlotTypeContract"
  249. }
  250. ],
  251. "slotName": "Out",
  252. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  253. "Descriptor": {
  254. "ConnectionType": 2,
  255. "SlotType": 1
  256. }
  257. },
  258. {
  259. "id": {
  260. "m_id": "{7F20FF04-3D69-4B06-A808-A1E5B61496A0}"
  261. },
  262. "contracts": [
  263. {
  264. "$type": "SlotTypeContract"
  265. },
  266. null
  267. ],
  268. "slotName": "Boolean",
  269. "Descriptor": {
  270. "ConnectionType": 1,
  271. "SlotType": 2
  272. },
  273. "DataType": 1
  274. },
  275. {
  276. "id": {
  277. "m_id": "{8DFD9C0B-0C18-41A9-BA37-3E9B6BBF487E}"
  278. },
  279. "contracts": [
  280. {
  281. "$type": "SlotTypeContract"
  282. }
  283. ],
  284. "slotName": "Boolean",
  285. "DisplayDataType": {
  286. "m_type": 0
  287. },
  288. "Descriptor": {
  289. "ConnectionType": 2,
  290. "SlotType": 2
  291. },
  292. "DataType": 1
  293. }
  294. ],
  295. "Datums": [
  296. {
  297. "isOverloadedStorage": false,
  298. "scriptCanvasType": {
  299. "m_type": 0
  300. },
  301. "isNullPointer": false,
  302. "$type": "bool",
  303. "value": true,
  304. "label": "Boolean"
  305. }
  306. ],
  307. "m_variableId": {
  308. "m_id": "{C3F80853-3BBA-4BDD-AE40-370243EA977E}"
  309. },
  310. "m_variableDataInSlotId": {
  311. "m_id": "{7F20FF04-3D69-4B06-A808-A1E5B61496A0}"
  312. },
  313. "m_variableDataOutSlotId": {
  314. "m_id": "{8DFD9C0B-0C18-41A9-BA37-3E9B6BBF487E}"
  315. }
  316. }
  317. }
  318. },
  319. {
  320. "Id": {
  321. "id": 855094950451246
  322. },
  323. "Name": "SC Node(SetVariable)",
  324. "Components": {
  325. "Component_[11399089475020448290]": {
  326. "$type": "SetVariableNode",
  327. "Id": 11399089475020448290,
  328. "Slots": [
  329. {
  330. "id": {
  331. "m_id": "{B89CAC90-8D4D-4A8C-9868-AD6EE5C1F9AF}"
  332. },
  333. "contracts": [
  334. {
  335. "$type": "SlotTypeContract"
  336. }
  337. ],
  338. "slotName": "In",
  339. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  340. "Descriptor": {
  341. "ConnectionType": 1,
  342. "SlotType": 1
  343. }
  344. },
  345. {
  346. "id": {
  347. "m_id": "{71CC5AD0-21C3-43FB-A743-68473B6E29C5}"
  348. },
  349. "contracts": [
  350. {
  351. "$type": "SlotTypeContract"
  352. }
  353. ],
  354. "slotName": "Out",
  355. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  356. "Descriptor": {
  357. "ConnectionType": 2,
  358. "SlotType": 1
  359. }
  360. },
  361. {
  362. "id": {
  363. "m_id": "{3B2AE335-C311-4A51-A73A-A7753F4D41A8}"
  364. },
  365. "contracts": [
  366. {
  367. "$type": "SlotTypeContract"
  368. },
  369. null
  370. ],
  371. "slotName": "Boolean",
  372. "Descriptor": {
  373. "ConnectionType": 1,
  374. "SlotType": 2
  375. },
  376. "DataType": 1
  377. },
  378. {
  379. "id": {
  380. "m_id": "{A8DE4B52-A491-4524-A494-0BDFEBBAE9B7}"
  381. },
  382. "contracts": [
  383. {
  384. "$type": "SlotTypeContract"
  385. }
  386. ],
  387. "slotName": "Boolean",
  388. "DisplayDataType": {
  389. "m_type": 0
  390. },
  391. "Descriptor": {
  392. "ConnectionType": 2,
  393. "SlotType": 2
  394. },
  395. "DataType": 1
  396. }
  397. ],
  398. "Datums": [
  399. {
  400. "isOverloadedStorage": false,
  401. "scriptCanvasType": {
  402. "m_type": 0
  403. },
  404. "isNullPointer": false,
  405. "$type": "bool",
  406. "value": true,
  407. "label": "Boolean"
  408. }
  409. ],
  410. "m_variableId": {
  411. "m_id": "{0C94FD8E-2858-4E71-81DA-8E361CB683C5}"
  412. },
  413. "m_variableDataInSlotId": {
  414. "m_id": "{3B2AE335-C311-4A51-A73A-A7753F4D41A8}"
  415. },
  416. "m_variableDataOutSlotId": {
  417. "m_id": "{A8DE4B52-A491-4524-A494-0BDFEBBAE9B7}"
  418. }
  419. }
  420. }
  421. },
  422. {
  423. "Id": {
  424. "id": 855150785026094
  425. },
  426. "Name": "SC-Node(Expect True)",
  427. "Components": {
  428. "Component_[11855701002342489256]": {
  429. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  430. "Id": 11855701002342489256,
  431. "Slots": [
  432. {
  433. "isVisibile": false,
  434. "id": {
  435. "m_id": "{9D0D71B7-6723-43EC-9505-C88887F35010}"
  436. },
  437. "contracts": [
  438. {
  439. "$type": "SlotTypeContract"
  440. },
  441. null
  442. ],
  443. "slotName": "EntityID: 0",
  444. "Descriptor": {
  445. "ConnectionType": 1,
  446. "SlotType": 2
  447. },
  448. "DataType": 1
  449. },
  450. {
  451. "id": {
  452. "m_id": "{47BCEB52-6526-44E1-9E03-3CAD686C99F1}"
  453. },
  454. "contracts": [
  455. {
  456. "$type": "SlotTypeContract"
  457. },
  458. null
  459. ],
  460. "slotName": "Candidate",
  461. "toolTip": "a value that must be true",
  462. "Descriptor": {
  463. "ConnectionType": 1,
  464. "SlotType": 2
  465. },
  466. "DataType": 1,
  467. "IsReference": true,
  468. "VariableReference": {
  469. "m_id": "{9E67CCA8-9355-4B37-B682-2009F137ABDE}"
  470. }
  471. },
  472. {
  473. "id": {
  474. "m_id": "{FFBC1909-3330-4D3B-8393-F1417D581604}"
  475. },
  476. "contracts": [
  477. {
  478. "$type": "SlotTypeContract"
  479. },
  480. null
  481. ],
  482. "slotName": "Report",
  483. "toolTip": "additional notes for the test report",
  484. "Descriptor": {
  485. "ConnectionType": 1,
  486. "SlotType": 2
  487. },
  488. "DataType": 1
  489. },
  490. {
  491. "id": {
  492. "m_id": "{D389C4AD-BF5E-4D7B-83B6-1407F3FB97C9}"
  493. },
  494. "contracts": [
  495. {
  496. "$type": "SlotTypeContract"
  497. }
  498. ],
  499. "slotName": "In",
  500. "Descriptor": {
  501. "ConnectionType": 1,
  502. "SlotType": 1
  503. }
  504. },
  505. {
  506. "id": {
  507. "m_id": "{AAC7411A-1781-41B2-B2DC-ED0D4BCAB3BA}"
  508. },
  509. "contracts": [
  510. {
  511. "$type": "SlotTypeContract"
  512. }
  513. ],
  514. "slotName": "Out",
  515. "Descriptor": {
  516. "ConnectionType": 2,
  517. "SlotType": 1
  518. }
  519. }
  520. ],
  521. "Datums": [
  522. {
  523. "isOverloadedStorage": false,
  524. "scriptCanvasType": {
  525. "m_type": 1
  526. },
  527. "isNullPointer": false,
  528. "$type": "EntityId",
  529. "value": {
  530. "id": 4276206253
  531. }
  532. },
  533. {
  534. "isOverloadedStorage": false,
  535. "scriptCanvasType": {
  536. "m_type": 0
  537. },
  538. "isNullPointer": false,
  539. "$type": "bool",
  540. "value": false,
  541. "label": "Candidate"
  542. },
  543. {
  544. "isOverloadedStorage": false,
  545. "scriptCanvasType": {
  546. "m_type": 5
  547. },
  548. "isNullPointer": false,
  549. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  550. "value": "increment",
  551. "label": "Report"
  552. }
  553. ],
  554. "methodType": 2,
  555. "methodName": "Expect True",
  556. "className": "Unit Testing",
  557. "resultSlotIDs": [
  558. {}
  559. ],
  560. "prettyClassName": "Unit Testing"
  561. }
  562. }
  563. },
  564. {
  565. "Id": {
  566. "id": 855133605156910
  567. },
  568. "Name": "SC-Node(Expect True)",
  569. "Components": {
  570. "Component_[11855701002342489256]": {
  571. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  572. "Id": 11855701002342489256,
  573. "Slots": [
  574. {
  575. "isVisibile": false,
  576. "id": {
  577. "m_id": "{9D0D71B7-6723-43EC-9505-C88887F35010}"
  578. },
  579. "contracts": [
  580. {
  581. "$type": "SlotTypeContract"
  582. },
  583. null
  584. ],
  585. "slotName": "EntityID: 0",
  586. "Descriptor": {
  587. "ConnectionType": 1,
  588. "SlotType": 2
  589. },
  590. "DataType": 1
  591. },
  592. {
  593. "id": {
  594. "m_id": "{47BCEB52-6526-44E1-9E03-3CAD686C99F1}"
  595. },
  596. "contracts": [
  597. {
  598. "$type": "SlotTypeContract"
  599. },
  600. null
  601. ],
  602. "slotName": "Candidate",
  603. "toolTip": "a value that must be true",
  604. "Descriptor": {
  605. "ConnectionType": 1,
  606. "SlotType": 2
  607. },
  608. "DataType": 1,
  609. "IsReference": true,
  610. "VariableReference": {
  611. "m_id": "{C3F80853-3BBA-4BDD-AE40-370243EA977E}"
  612. }
  613. },
  614. {
  615. "id": {
  616. "m_id": "{FFBC1909-3330-4D3B-8393-F1417D581604}"
  617. },
  618. "contracts": [
  619. {
  620. "$type": "SlotTypeContract"
  621. },
  622. null
  623. ],
  624. "slotName": "Report",
  625. "toolTip": "additional notes for the test report",
  626. "Descriptor": {
  627. "ConnectionType": 1,
  628. "SlotType": 2
  629. },
  630. "DataType": 1
  631. },
  632. {
  633. "id": {
  634. "m_id": "{D389C4AD-BF5E-4D7B-83B6-1407F3FB97C9}"
  635. },
  636. "contracts": [
  637. {
  638. "$type": "SlotTypeContract"
  639. }
  640. ],
  641. "slotName": "In",
  642. "Descriptor": {
  643. "ConnectionType": 1,
  644. "SlotType": 1
  645. }
  646. },
  647. {
  648. "id": {
  649. "m_id": "{AAC7411A-1781-41B2-B2DC-ED0D4BCAB3BA}"
  650. },
  651. "contracts": [
  652. {
  653. "$type": "SlotTypeContract"
  654. }
  655. ],
  656. "slotName": "Out",
  657. "Descriptor": {
  658. "ConnectionType": 2,
  659. "SlotType": 1
  660. }
  661. }
  662. ],
  663. "Datums": [
  664. {
  665. "isOverloadedStorage": false,
  666. "scriptCanvasType": {
  667. "m_type": 1
  668. },
  669. "isNullPointer": false,
  670. "$type": "EntityId",
  671. "value": {
  672. "id": 4276206253
  673. }
  674. },
  675. {
  676. "isOverloadedStorage": false,
  677. "scriptCanvasType": {
  678. "m_type": 0
  679. },
  680. "isNullPointer": false,
  681. "$type": "bool",
  682. "value": false,
  683. "label": "Candidate"
  684. },
  685. {
  686. "isOverloadedStorage": false,
  687. "scriptCanvasType": {
  688. "m_type": 5
  689. },
  690. "isNullPointer": false,
  691. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  692. "value": "not",
  693. "label": "Report"
  694. }
  695. ],
  696. "methodType": 2,
  697. "methodName": "Expect True",
  698. "className": "Unit Testing",
  699. "resultSlotIDs": [
  700. {}
  701. ],
  702. "prettyClassName": "Unit Testing"
  703. }
  704. }
  705. },
  706. {
  707. "Id": {
  708. "id": 855107835353134
  709. },
  710. "Name": "SC-Node(Expect True)",
  711. "Components": {
  712. "Component_[11855701002342489256]": {
  713. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  714. "Id": 11855701002342489256,
  715. "Slots": [
  716. {
  717. "isVisibile": false,
  718. "id": {
  719. "m_id": "{9D0D71B7-6723-43EC-9505-C88887F35010}"
  720. },
  721. "contracts": [
  722. {
  723. "$type": "SlotTypeContract"
  724. },
  725. null
  726. ],
  727. "slotName": "EntityID: 0",
  728. "Descriptor": {
  729. "ConnectionType": 1,
  730. "SlotType": 2
  731. },
  732. "DataType": 1
  733. },
  734. {
  735. "id": {
  736. "m_id": "{47BCEB52-6526-44E1-9E03-3CAD686C99F1}"
  737. },
  738. "contracts": [
  739. {
  740. "$type": "SlotTypeContract"
  741. },
  742. null
  743. ],
  744. "slotName": "Candidate",
  745. "toolTip": "a value that must be true",
  746. "Descriptor": {
  747. "ConnectionType": 1,
  748. "SlotType": 2
  749. },
  750. "DataType": 1,
  751. "IsReference": true,
  752. "VariableReference": {
  753. "m_id": "{0C94FD8E-2858-4E71-81DA-8E361CB683C5}"
  754. }
  755. },
  756. {
  757. "id": {
  758. "m_id": "{FFBC1909-3330-4D3B-8393-F1417D581604}"
  759. },
  760. "contracts": [
  761. {
  762. "$type": "SlotTypeContract"
  763. },
  764. null
  765. ],
  766. "slotName": "Report",
  767. "toolTip": "additional notes for the test report",
  768. "Descriptor": {
  769. "ConnectionType": 1,
  770. "SlotType": 2
  771. },
  772. "DataType": 1
  773. },
  774. {
  775. "id": {
  776. "m_id": "{D389C4AD-BF5E-4D7B-83B6-1407F3FB97C9}"
  777. },
  778. "contracts": [
  779. {
  780. "$type": "SlotTypeContract"
  781. }
  782. ],
  783. "slotName": "In",
  784. "Descriptor": {
  785. "ConnectionType": 1,
  786. "SlotType": 1
  787. }
  788. },
  789. {
  790. "id": {
  791. "m_id": "{AAC7411A-1781-41B2-B2DC-ED0D4BCAB3BA}"
  792. },
  793. "contracts": [
  794. {
  795. "$type": "SlotTypeContract"
  796. }
  797. ],
  798. "slotName": "Out",
  799. "Descriptor": {
  800. "ConnectionType": 2,
  801. "SlotType": 1
  802. }
  803. }
  804. ],
  805. "Datums": [
  806. {
  807. "isOverloadedStorage": false,
  808. "scriptCanvasType": {
  809. "m_type": 1
  810. },
  811. "isNullPointer": false,
  812. "$type": "EntityId",
  813. "value": {
  814. "id": 4276206253
  815. }
  816. },
  817. {
  818. "isOverloadedStorage": false,
  819. "scriptCanvasType": {
  820. "m_type": 0
  821. },
  822. "isNullPointer": false,
  823. "$type": "bool",
  824. "value": false,
  825. "label": "Candidate"
  826. },
  827. {
  828. "isOverloadedStorage": false,
  829. "scriptCanvasType": {
  830. "m_type": 5
  831. },
  832. "isNullPointer": false,
  833. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  834. "value": "sweet",
  835. "label": "Report"
  836. }
  837. ],
  838. "methodType": 2,
  839. "methodName": "Expect True",
  840. "className": "Unit Testing",
  841. "resultSlotIDs": [
  842. {}
  843. ],
  844. "prettyClassName": "Unit Testing"
  845. }
  846. }
  847. },
  848. {
  849. "Id": {
  850. "id": 855112130320430
  851. },
  852. "Name": "SC-Node(Expect True)",
  853. "Components": {
  854. "Component_[11855701002342489256]": {
  855. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  856. "Id": 11855701002342489256,
  857. "Slots": [
  858. {
  859. "isVisibile": false,
  860. "id": {
  861. "m_id": "{9D0D71B7-6723-43EC-9505-C88887F35010}"
  862. },
  863. "contracts": [
  864. {
  865. "$type": "SlotTypeContract"
  866. },
  867. null
  868. ],
  869. "slotName": "EntityID: 0",
  870. "Descriptor": {
  871. "ConnectionType": 1,
  872. "SlotType": 2
  873. },
  874. "DataType": 1
  875. },
  876. {
  877. "id": {
  878. "m_id": "{47BCEB52-6526-44E1-9E03-3CAD686C99F1}"
  879. },
  880. "contracts": [
  881. {
  882. "$type": "SlotTypeContract"
  883. },
  884. null
  885. ],
  886. "slotName": "Candidate",
  887. "toolTip": "a value that must be true",
  888. "Descriptor": {
  889. "ConnectionType": 1,
  890. "SlotType": 2
  891. },
  892. "DataType": 1,
  893. "IsReference": true,
  894. "VariableReference": {
  895. "m_id": "{2C7C3FDD-45FD-42A5-B006-ED501626E9AE}"
  896. }
  897. },
  898. {
  899. "id": {
  900. "m_id": "{FFBC1909-3330-4D3B-8393-F1417D581604}"
  901. },
  902. "contracts": [
  903. {
  904. "$type": "SlotTypeContract"
  905. },
  906. null
  907. ],
  908. "slotName": "Report",
  909. "toolTip": "additional notes for the test report",
  910. "Descriptor": {
  911. "ConnectionType": 1,
  912. "SlotType": 2
  913. },
  914. "DataType": 1
  915. },
  916. {
  917. "id": {
  918. "m_id": "{D389C4AD-BF5E-4D7B-83B6-1407F3FB97C9}"
  919. },
  920. "contracts": [
  921. {
  922. "$type": "SlotTypeContract"
  923. }
  924. ],
  925. "slotName": "In",
  926. "Descriptor": {
  927. "ConnectionType": 1,
  928. "SlotType": 1
  929. }
  930. },
  931. {
  932. "id": {
  933. "m_id": "{AAC7411A-1781-41B2-B2DC-ED0D4BCAB3BA}"
  934. },
  935. "contracts": [
  936. {
  937. "$type": "SlotTypeContract"
  938. }
  939. ],
  940. "slotName": "Out",
  941. "Descriptor": {
  942. "ConnectionType": 2,
  943. "SlotType": 1
  944. }
  945. }
  946. ],
  947. "Datums": [
  948. {
  949. "isOverloadedStorage": false,
  950. "scriptCanvasType": {
  951. "m_type": 1
  952. },
  953. "isNullPointer": false,
  954. "$type": "EntityId",
  955. "value": {
  956. "id": 4276206253
  957. }
  958. },
  959. {
  960. "isOverloadedStorage": false,
  961. "scriptCanvasType": {
  962. "m_type": 0
  963. },
  964. "isNullPointer": false,
  965. "$type": "bool",
  966. "value": false,
  967. "label": "Candidate"
  968. },
  969. {
  970. "isOverloadedStorage": false,
  971. "scriptCanvasType": {
  972. "m_type": 5
  973. },
  974. "isNullPointer": false,
  975. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  976. "value": "void",
  977. "label": "Report"
  978. }
  979. ],
  980. "methodType": 2,
  981. "methodName": "Expect True",
  982. "className": "Unit Testing",
  983. "resultSlotIDs": [
  984. {}
  985. ],
  986. "prettyClassName": "Unit Testing"
  987. }
  988. }
  989. },
  990. {
  991. "Id": {
  992. "id": 855137900124206
  993. },
  994. "Name": "SC-Node(Mark Complete)",
  995. "Components": {
  996. "Component_[12953505590610160548]": {
  997. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  998. "Id": 12953505590610160548,
  999. "Slots": [
  1000. {
  1001. "isVisibile": false,
  1002. "id": {
  1003. "m_id": "{DCB4236E-5310-4BA3-BA4D-C88CFC8C4808}"
  1004. },
  1005. "contracts": [
  1006. {
  1007. "$type": "SlotTypeContract"
  1008. },
  1009. null
  1010. ],
  1011. "slotName": "EntityID: 0",
  1012. "Descriptor": {
  1013. "ConnectionType": 1,
  1014. "SlotType": 2
  1015. },
  1016. "DataType": 1
  1017. },
  1018. {
  1019. "id": {
  1020. "m_id": "{488FE653-89BB-4C4F-978C-8E133D53A611}"
  1021. },
  1022. "contracts": [
  1023. {
  1024. "$type": "SlotTypeContract"
  1025. },
  1026. null
  1027. ],
  1028. "slotName": "Report",
  1029. "toolTip": "additional notes for the test report",
  1030. "Descriptor": {
  1031. "ConnectionType": 1,
  1032. "SlotType": 2
  1033. },
  1034. "DataType": 1
  1035. },
  1036. {
  1037. "id": {
  1038. "m_id": "{FF9C66AA-D139-485D-82FA-CBA38D64DD22}"
  1039. },
  1040. "contracts": [
  1041. {
  1042. "$type": "SlotTypeContract"
  1043. }
  1044. ],
  1045. "slotName": "In",
  1046. "Descriptor": {
  1047. "ConnectionType": 1,
  1048. "SlotType": 1
  1049. }
  1050. },
  1051. {
  1052. "id": {
  1053. "m_id": "{FE6C754B-036E-486C-B012-B076425990B7}"
  1054. },
  1055. "contracts": [
  1056. {
  1057. "$type": "SlotTypeContract"
  1058. }
  1059. ],
  1060. "slotName": "Out",
  1061. "Descriptor": {
  1062. "ConnectionType": 2,
  1063. "SlotType": 1
  1064. }
  1065. }
  1066. ],
  1067. "Datums": [
  1068. {
  1069. "isOverloadedStorage": false,
  1070. "scriptCanvasType": {
  1071. "m_type": 1
  1072. },
  1073. "isNullPointer": false,
  1074. "$type": "EntityId",
  1075. "value": {
  1076. "id": 4276206253
  1077. }
  1078. },
  1079. {
  1080. "isOverloadedStorage": false,
  1081. "scriptCanvasType": {
  1082. "m_type": 5
  1083. },
  1084. "isNullPointer": false,
  1085. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1086. "value": "",
  1087. "label": "Report"
  1088. }
  1089. ],
  1090. "methodType": 2,
  1091. "methodName": "Mark Complete",
  1092. "className": "Unit Testing",
  1093. "resultSlotIDs": [
  1094. {}
  1095. ],
  1096. "prettyClassName": "Unit Testing"
  1097. }
  1098. }
  1099. },
  1100. {
  1101. "Id": {
  1102. "id": 855099245418542
  1103. },
  1104. "Name": "SC-Node(Void)",
  1105. "Components": {
  1106. "Component_[14464070366903650608]": {
  1107. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1108. "Id": 14464070366903650608,
  1109. "Slots": [
  1110. {
  1111. "id": {
  1112. "m_id": "{011FBABB-9614-48CC-B9FC-E0F43D768904}"
  1113. },
  1114. "contracts": [
  1115. {
  1116. "$type": "SlotTypeContract"
  1117. },
  1118. null
  1119. ],
  1120. "slotName": "Number: 0",
  1121. "Descriptor": {
  1122. "ConnectionType": 1,
  1123. "SlotType": 2
  1124. },
  1125. "DataType": 1
  1126. },
  1127. {
  1128. "id": {
  1129. "m_id": "{FF974BDC-30BC-45B5-BE3A-73D98B39FC33}"
  1130. },
  1131. "contracts": [
  1132. {
  1133. "$type": "SlotTypeContract"
  1134. },
  1135. null
  1136. ],
  1137. "slotName": "String: 1",
  1138. "Descriptor": {
  1139. "ConnectionType": 1,
  1140. "SlotType": 2
  1141. },
  1142. "DataType": 1
  1143. },
  1144. {
  1145. "id": {
  1146. "m_id": "{C1492689-9891-41D0-ACFD-E54660291DD6}"
  1147. },
  1148. "contracts": [
  1149. {
  1150. "$type": "SlotTypeContract"
  1151. }
  1152. ],
  1153. "slotName": "In",
  1154. "Descriptor": {
  1155. "ConnectionType": 1,
  1156. "SlotType": 1
  1157. }
  1158. },
  1159. {
  1160. "id": {
  1161. "m_id": "{582F03D8-0AC2-4082-A0A8-0EBBF6777102}"
  1162. },
  1163. "contracts": [
  1164. {
  1165. "$type": "SlotTypeContract"
  1166. }
  1167. ],
  1168. "slotName": "Out",
  1169. "Descriptor": {
  1170. "ConnectionType": 2,
  1171. "SlotType": 1
  1172. }
  1173. }
  1174. ],
  1175. "Datums": [
  1176. {
  1177. "isOverloadedStorage": false,
  1178. "scriptCanvasType": {
  1179. "m_type": 3
  1180. },
  1181. "isNullPointer": false,
  1182. "$type": "double",
  1183. "value": 3.0,
  1184. "label": "Source"
  1185. },
  1186. {
  1187. "isOverloadedStorage": false,
  1188. "scriptCanvasType": {
  1189. "m_type": 5
  1190. },
  1191. "isNullPointer": false,
  1192. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1193. "value": "",
  1194. "label": "String: 1"
  1195. }
  1196. ],
  1197. "methodType": 0,
  1198. "methodName": "Void",
  1199. "className": "LocalEBus",
  1200. "resultSlotIDs": [
  1201. {}
  1202. ],
  1203. "prettyClassName": "LocalEBus"
  1204. }
  1205. }
  1206. },
  1207. {
  1208. "Id": {
  1209. "id": 855120720255022
  1210. },
  1211. "Name": "SC Node(SetVariable)",
  1212. "Components": {
  1213. "Component_[14800690339718303149]": {
  1214. "$type": "SetVariableNode",
  1215. "Id": 14800690339718303149,
  1216. "Slots": [
  1217. {
  1218. "id": {
  1219. "m_id": "{0820B95C-6A66-47F1-B243-D56C92669B53}"
  1220. },
  1221. "contracts": [
  1222. {
  1223. "$type": "SlotTypeContract"
  1224. }
  1225. ],
  1226. "slotName": "In",
  1227. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  1228. "Descriptor": {
  1229. "ConnectionType": 1,
  1230. "SlotType": 1
  1231. }
  1232. },
  1233. {
  1234. "id": {
  1235. "m_id": "{0B4BC9E6-A860-4A16-B553-5A681718F033}"
  1236. },
  1237. "contracts": [
  1238. {
  1239. "$type": "SlotTypeContract"
  1240. }
  1241. ],
  1242. "slotName": "Out",
  1243. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1244. "Descriptor": {
  1245. "ConnectionType": 2,
  1246. "SlotType": 1
  1247. }
  1248. },
  1249. {
  1250. "id": {
  1251. "m_id": "{04BE880F-E969-4CF7-BBCB-60EB7B63A6A0}"
  1252. },
  1253. "contracts": [
  1254. {
  1255. "$type": "SlotTypeContract"
  1256. },
  1257. null
  1258. ],
  1259. "slotName": "Boolean",
  1260. "Descriptor": {
  1261. "ConnectionType": 1,
  1262. "SlotType": 2
  1263. },
  1264. "DataType": 1
  1265. },
  1266. {
  1267. "id": {
  1268. "m_id": "{A04A3B8B-8097-4E04-A8C7-6892640E5209}"
  1269. },
  1270. "contracts": [
  1271. {
  1272. "$type": "SlotTypeContract"
  1273. }
  1274. ],
  1275. "slotName": "Boolean",
  1276. "DisplayDataType": {
  1277. "m_type": 0
  1278. },
  1279. "Descriptor": {
  1280. "ConnectionType": 2,
  1281. "SlotType": 2
  1282. },
  1283. "DataType": 1
  1284. }
  1285. ],
  1286. "Datums": [
  1287. {
  1288. "isOverloadedStorage": false,
  1289. "scriptCanvasType": {
  1290. "m_type": 0
  1291. },
  1292. "isNullPointer": false,
  1293. "$type": "bool",
  1294. "value": true,
  1295. "label": "Boolean"
  1296. }
  1297. ],
  1298. "m_variableId": {
  1299. "m_id": "{9E67CCA8-9355-4B37-B682-2009F137ABDE}"
  1300. },
  1301. "m_variableDataInSlotId": {
  1302. "m_id": "{04BE880F-E969-4CF7-BBCB-60EB7B63A6A0}"
  1303. },
  1304. "m_variableDataOutSlotId": {
  1305. "m_id": "{A04A3B8B-8097-4E04-A8C7-6892640E5209}"
  1306. }
  1307. }
  1308. }
  1309. },
  1310. {
  1311. "Id": {
  1312. "id": 855090655483950
  1313. },
  1314. "Name": "SC Node(SetVariable)",
  1315. "Components": {
  1316. "Component_[15148564359260207457]": {
  1317. "$type": "SetVariableNode",
  1318. "Id": 15148564359260207457,
  1319. "Slots": [
  1320. {
  1321. "id": {
  1322. "m_id": "{A87C91ED-C381-41AC-9510-864B65DF53F6}"
  1323. },
  1324. "contracts": [
  1325. {
  1326. "$type": "SlotTypeContract"
  1327. }
  1328. ],
  1329. "slotName": "In",
  1330. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  1331. "Descriptor": {
  1332. "ConnectionType": 1,
  1333. "SlotType": 1
  1334. }
  1335. },
  1336. {
  1337. "id": {
  1338. "m_id": "{71CE0195-FDF9-4C0D-82BC-F16FA07B9466}"
  1339. },
  1340. "contracts": [
  1341. {
  1342. "$type": "SlotTypeContract"
  1343. }
  1344. ],
  1345. "slotName": "Out",
  1346. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1347. "Descriptor": {
  1348. "ConnectionType": 2,
  1349. "SlotType": 1
  1350. }
  1351. },
  1352. {
  1353. "id": {
  1354. "m_id": "{B30FB707-2865-4D5D-9838-3537204605A8}"
  1355. },
  1356. "contracts": [
  1357. {
  1358. "$type": "SlotTypeContract"
  1359. },
  1360. null
  1361. ],
  1362. "slotName": "Boolean",
  1363. "Descriptor": {
  1364. "ConnectionType": 1,
  1365. "SlotType": 2
  1366. },
  1367. "DataType": 1
  1368. },
  1369. {
  1370. "id": {
  1371. "m_id": "{CC59EC7C-0017-4C9A-8F5A-D04A09150D8E}"
  1372. },
  1373. "contracts": [
  1374. {
  1375. "$type": "SlotTypeContract"
  1376. }
  1377. ],
  1378. "slotName": "Boolean",
  1379. "DisplayDataType": {
  1380. "m_type": 0
  1381. },
  1382. "Descriptor": {
  1383. "ConnectionType": 2,
  1384. "SlotType": 2
  1385. },
  1386. "DataType": 1
  1387. }
  1388. ],
  1389. "Datums": [
  1390. {
  1391. "isOverloadedStorage": false,
  1392. "scriptCanvasType": {
  1393. "m_type": 0
  1394. },
  1395. "isNullPointer": false,
  1396. "$type": "bool",
  1397. "value": true,
  1398. "label": "Boolean"
  1399. }
  1400. ],
  1401. "m_variableId": {
  1402. "m_id": "{2C7C3FDD-45FD-42A5-B006-ED501626E9AE}"
  1403. },
  1404. "m_variableDataInSlotId": {
  1405. "m_id": "{B30FB707-2865-4D5D-9838-3537204605A8}"
  1406. },
  1407. "m_variableDataOutSlotId": {
  1408. "m_id": "{CC59EC7C-0017-4C9A-8F5A-D04A09150D8E}"
  1409. }
  1410. }
  1411. }
  1412. },
  1413. {
  1414. "Id": {
  1415. "id": 855146490058798
  1416. },
  1417. "Name": "SC-Node(Start)",
  1418. "Components": {
  1419. "Component_[15843044724009388527]": {
  1420. "$type": "Start",
  1421. "Id": 15843044724009388527,
  1422. "Slots": [
  1423. {
  1424. "id": {
  1425. "m_id": "{6C90DD1F-92CD-477D-9150-1B3CEDC09675}"
  1426. },
  1427. "contracts": [
  1428. {
  1429. "$type": "SlotTypeContract"
  1430. }
  1431. ],
  1432. "slotName": "Out",
  1433. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1434. "Descriptor": {
  1435. "ConnectionType": 2,
  1436. "SlotType": 1
  1437. }
  1438. }
  1439. ]
  1440. }
  1441. }
  1442. },
  1443. {
  1444. "Id": {
  1445. "id": 855125015222318
  1446. },
  1447. "Name": "SC-Node(AppendSweet)",
  1448. "Components": {
  1449. "Component_[16839531971417469449]": {
  1450. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1451. "Id": 16839531971417469449,
  1452. "Slots": [
  1453. {
  1454. "id": {
  1455. "m_id": "{A1DE5F3A-27EE-4C34-8D2B-6D10704BD867}"
  1456. },
  1457. "contracts": [
  1458. {
  1459. "$type": "SlotTypeContract"
  1460. },
  1461. null
  1462. ],
  1463. "slotName": "Number: 0",
  1464. "Descriptor": {
  1465. "ConnectionType": 1,
  1466. "SlotType": 2
  1467. },
  1468. "DataType": 1
  1469. },
  1470. {
  1471. "id": {
  1472. "m_id": "{D90C1265-7F54-408E-9ECE-CBD68950AF28}"
  1473. },
  1474. "contracts": [
  1475. {
  1476. "$type": "SlotTypeContract"
  1477. },
  1478. null
  1479. ],
  1480. "slotName": "String: 1",
  1481. "Descriptor": {
  1482. "ConnectionType": 1,
  1483. "SlotType": 2
  1484. },
  1485. "DataType": 1
  1486. },
  1487. {
  1488. "id": {
  1489. "m_id": "{21E1F505-C832-460F-8C57-E2C285F165F1}"
  1490. },
  1491. "contracts": [
  1492. {
  1493. "$type": "SlotTypeContract"
  1494. }
  1495. ],
  1496. "slotName": "In",
  1497. "Descriptor": {
  1498. "ConnectionType": 1,
  1499. "SlotType": 1
  1500. }
  1501. },
  1502. {
  1503. "id": {
  1504. "m_id": "{FE2B67FA-8E9A-48FF-81CD-0C7104F4C4AD}"
  1505. },
  1506. "contracts": [
  1507. {
  1508. "$type": "SlotTypeContract"
  1509. }
  1510. ],
  1511. "slotName": "Result: String",
  1512. "DisplayDataType": {
  1513. "m_type": 5
  1514. },
  1515. "Descriptor": {
  1516. "ConnectionType": 2,
  1517. "SlotType": 2
  1518. },
  1519. "DataType": 1
  1520. },
  1521. {
  1522. "id": {
  1523. "m_id": "{CE1D6B32-9343-42BB-8F0B-1660D4BD75DE}"
  1524. },
  1525. "contracts": [
  1526. {
  1527. "$type": "SlotTypeContract"
  1528. }
  1529. ],
  1530. "slotName": "Out",
  1531. "Descriptor": {
  1532. "ConnectionType": 2,
  1533. "SlotType": 1
  1534. }
  1535. }
  1536. ],
  1537. "Datums": [
  1538. {
  1539. "isOverloadedStorage": false,
  1540. "scriptCanvasType": {
  1541. "m_type": 3
  1542. },
  1543. "isNullPointer": false,
  1544. "$type": "double",
  1545. "value": 2.0,
  1546. "label": "Source"
  1547. },
  1548. {
  1549. "isOverloadedStorage": false,
  1550. "scriptCanvasType": {
  1551. "m_type": 5
  1552. },
  1553. "isNullPointer": false,
  1554. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1555. "value": "",
  1556. "label": "String: 1"
  1557. }
  1558. ],
  1559. "methodType": 0,
  1560. "methodName": "AppendSweet",
  1561. "className": "LocalEBus",
  1562. "resultSlotIDs": [
  1563. {
  1564. "m_id": "{FE2B67FA-8E9A-48FF-81CD-0C7104F4C4AD}"
  1565. }
  1566. ],
  1567. "prettyClassName": "LocalEBus"
  1568. }
  1569. }
  1570. },
  1571. {
  1572. "Id": {
  1573. "id": 855159374960686
  1574. },
  1575. "Name": "SC-Node(Increment)",
  1576. "Components": {
  1577. "Component_[2454598132679821148]": {
  1578. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1579. "Id": 2454598132679821148,
  1580. "Slots": [
  1581. {
  1582. "id": {
  1583. "m_id": "{2364458F-968C-4E0E-BBB9-0549DC5030B7}"
  1584. },
  1585. "contracts": [
  1586. {
  1587. "$type": "SlotTypeContract"
  1588. },
  1589. null
  1590. ],
  1591. "slotName": "Number: 0",
  1592. "Descriptor": {
  1593. "ConnectionType": 1,
  1594. "SlotType": 2
  1595. },
  1596. "DataType": 1
  1597. },
  1598. {
  1599. "id": {
  1600. "m_id": "{903279D5-F45A-4566-9EF8-5DB63472B441}"
  1601. },
  1602. "contracts": [
  1603. {
  1604. "$type": "SlotTypeContract"
  1605. },
  1606. null
  1607. ],
  1608. "slotName": "Number: 1",
  1609. "Descriptor": {
  1610. "ConnectionType": 1,
  1611. "SlotType": 2
  1612. },
  1613. "DataType": 1
  1614. },
  1615. {
  1616. "id": {
  1617. "m_id": "{201FC621-0245-4700-AEF0-53B0CAE66DE1}"
  1618. },
  1619. "contracts": [
  1620. {
  1621. "$type": "SlotTypeContract"
  1622. }
  1623. ],
  1624. "slotName": "In",
  1625. "Descriptor": {
  1626. "ConnectionType": 1,
  1627. "SlotType": 1
  1628. }
  1629. },
  1630. {
  1631. "id": {
  1632. "m_id": "{BEA4920D-74EA-419E-9096-1C9FAB1958FD}"
  1633. },
  1634. "contracts": [
  1635. {
  1636. "$type": "SlotTypeContract"
  1637. }
  1638. ],
  1639. "slotName": "Result: Number",
  1640. "DisplayDataType": {
  1641. "m_type": 3
  1642. },
  1643. "Descriptor": {
  1644. "ConnectionType": 2,
  1645. "SlotType": 2
  1646. },
  1647. "DataType": 1
  1648. },
  1649. {
  1650. "id": {
  1651. "m_id": "{9C97BFEC-BEE5-485B-BC2E-84978EC49441}"
  1652. },
  1653. "contracts": [
  1654. {
  1655. "$type": "SlotTypeContract"
  1656. }
  1657. ],
  1658. "slotName": "Out",
  1659. "Descriptor": {
  1660. "ConnectionType": 2,
  1661. "SlotType": 1
  1662. }
  1663. }
  1664. ],
  1665. "Datums": [
  1666. {
  1667. "isOverloadedStorage": false,
  1668. "scriptCanvasType": {
  1669. "m_type": 3
  1670. },
  1671. "isNullPointer": false,
  1672. "$type": "double",
  1673. "value": 1.0,
  1674. "label": "Source"
  1675. },
  1676. {
  1677. "isOverloadedStorage": false,
  1678. "scriptCanvasType": {
  1679. "m_type": 3
  1680. },
  1681. "isNullPointer": false,
  1682. "$type": "double",
  1683. "value": 0.0,
  1684. "label": "Number: 1"
  1685. }
  1686. ],
  1687. "methodType": 0,
  1688. "methodName": "Increment",
  1689. "className": "LocalEBus",
  1690. "resultSlotIDs": [
  1691. {
  1692. "m_id": "{BEA4920D-74EA-419E-9096-1C9FAB1958FD}"
  1693. }
  1694. ],
  1695. "prettyClassName": "LocalEBus"
  1696. }
  1697. }
  1698. },
  1699. {
  1700. "Id": {
  1701. "id": 855116425287726
  1702. },
  1703. "Name": "EBusEventHandler",
  1704. "Components": {
  1705. "Component_[4254185373435195715]": {
  1706. "$type": "EBusEventHandler",
  1707. "Id": 4254185373435195715,
  1708. "Slots": [
  1709. {
  1710. "id": {
  1711. "m_id": "{71F7C977-3D5B-48EA-BFD9-2B4159B483CA}"
  1712. },
  1713. "contracts": [
  1714. {
  1715. "$type": "SlotTypeContract"
  1716. }
  1717. ],
  1718. "slotName": "Connect",
  1719. "toolTip": "Connect this event handler to the specified entity.",
  1720. "Descriptor": {
  1721. "ConnectionType": 1,
  1722. "SlotType": 1
  1723. }
  1724. },
  1725. {
  1726. "id": {
  1727. "m_id": "{323BC178-58D0-42CA-87BA-EE3206615025}"
  1728. },
  1729. "contracts": [
  1730. {
  1731. "$type": "SlotTypeContract"
  1732. }
  1733. ],
  1734. "slotName": "Disconnect",
  1735. "toolTip": "Disconnect this event handler.",
  1736. "Descriptor": {
  1737. "ConnectionType": 1,
  1738. "SlotType": 1
  1739. }
  1740. },
  1741. {
  1742. "id": {
  1743. "m_id": "{F3BD47A5-5B5C-4D9A-9695-1817E895A6C0}"
  1744. },
  1745. "contracts": [
  1746. {
  1747. "$type": "SlotTypeContract"
  1748. }
  1749. ],
  1750. "slotName": "OnConnected",
  1751. "toolTip": "Signaled when a connection has taken place.",
  1752. "Descriptor": {
  1753. "ConnectionType": 2,
  1754. "SlotType": 1
  1755. }
  1756. },
  1757. {
  1758. "id": {
  1759. "m_id": "{F75CE08B-38C1-46ED-BF3C-F1628EEA715C}"
  1760. },
  1761. "contracts": [
  1762. {
  1763. "$type": "SlotTypeContract"
  1764. }
  1765. ],
  1766. "slotName": "OnDisconnected",
  1767. "toolTip": "Signaled when this event handler is disconnected.",
  1768. "Descriptor": {
  1769. "ConnectionType": 2,
  1770. "SlotType": 1
  1771. }
  1772. },
  1773. {
  1774. "id": {
  1775. "m_id": "{432D0337-8263-41D7-893A-7AF453C62B28}"
  1776. },
  1777. "contracts": [
  1778. {
  1779. "$type": "SlotTypeContract"
  1780. }
  1781. ],
  1782. "slotName": "OnFailure",
  1783. "toolTip": "Signaled when it is not possible to connect this handler.",
  1784. "Descriptor": {
  1785. "ConnectionType": 2,
  1786. "SlotType": 1
  1787. }
  1788. },
  1789. {
  1790. "id": {
  1791. "m_id": "{B666D228-55D2-431E-8282-C30BCF24F5F9}"
  1792. },
  1793. "contracts": [
  1794. {
  1795. "$type": "SlotTypeContract"
  1796. },
  1797. null
  1798. ],
  1799. "slotName": "Source",
  1800. "toolTip": "ID used to connect on a specific Event address (Type: double)",
  1801. "Descriptor": {
  1802. "ConnectionType": 1,
  1803. "SlotType": 2
  1804. },
  1805. "DataType": 1
  1806. },
  1807. {
  1808. "id": {
  1809. "m_id": "{55582F0B-296B-45A8-844F-EA58EC0C4252}"
  1810. },
  1811. "contracts": [
  1812. {
  1813. "$type": "SlotTypeContract"
  1814. },
  1815. null
  1816. ],
  1817. "slotName": "Result: String",
  1818. "Descriptor": {
  1819. "ConnectionType": 1,
  1820. "SlotType": 2
  1821. },
  1822. "DataType": 1
  1823. },
  1824. {
  1825. "id": {
  1826. "m_id": "{C9B1EDEB-5986-4E3F-8F1F-F0F12A625892}"
  1827. },
  1828. "contracts": [
  1829. {
  1830. "$type": "SlotTypeContract"
  1831. }
  1832. ],
  1833. "slotName": "String",
  1834. "DisplayDataType": {
  1835. "m_type": 5
  1836. },
  1837. "Descriptor": {
  1838. "ConnectionType": 2,
  1839. "SlotType": 2
  1840. },
  1841. "DataType": 1
  1842. },
  1843. {
  1844. "id": {
  1845. "m_id": "{E882022A-4280-4254-8025-627EC2B58264}"
  1846. },
  1847. "contracts": [
  1848. {
  1849. "$type": "SlotTypeContract"
  1850. }
  1851. ],
  1852. "slotName": "ExecutionSlot:AppendSweet",
  1853. "Descriptor": {
  1854. "ConnectionType": 2,
  1855. "SlotType": 1
  1856. },
  1857. "IsLatent": true
  1858. },
  1859. {
  1860. "id": {
  1861. "m_id": "{22B11AFE-EFB9-4221-BC9F-D5EFEA892032}"
  1862. },
  1863. "contracts": [
  1864. {
  1865. "$type": "SlotTypeContract"
  1866. },
  1867. null
  1868. ],
  1869. "slotName": "Result: Number",
  1870. "Descriptor": {
  1871. "ConnectionType": 1,
  1872. "SlotType": 2
  1873. },
  1874. "DataType": 1
  1875. },
  1876. {
  1877. "id": {
  1878. "m_id": "{F2197BCF-9A4E-48D3-965A-8593ADF23EAB}"
  1879. },
  1880. "contracts": [
  1881. {
  1882. "$type": "SlotTypeContract"
  1883. }
  1884. ],
  1885. "slotName": "Number",
  1886. "DisplayDataType": {
  1887. "m_type": 3
  1888. },
  1889. "Descriptor": {
  1890. "ConnectionType": 2,
  1891. "SlotType": 2
  1892. },
  1893. "DataType": 1
  1894. },
  1895. {
  1896. "id": {
  1897. "m_id": "{5816FDA0-BF80-49EE-84C1-5BA79EE5ED25}"
  1898. },
  1899. "contracts": [
  1900. {
  1901. "$type": "SlotTypeContract"
  1902. }
  1903. ],
  1904. "slotName": "ExecutionSlot:Increment",
  1905. "Descriptor": {
  1906. "ConnectionType": 2,
  1907. "SlotType": 1
  1908. },
  1909. "IsLatent": true
  1910. },
  1911. {
  1912. "id": {
  1913. "m_id": "{4F88C006-249B-4D3B-887C-F94838208D6F}"
  1914. },
  1915. "contracts": [
  1916. {
  1917. "$type": "SlotTypeContract"
  1918. },
  1919. null
  1920. ],
  1921. "slotName": "Result: Boolean",
  1922. "Descriptor": {
  1923. "ConnectionType": 1,
  1924. "SlotType": 2
  1925. },
  1926. "DataType": 1
  1927. },
  1928. {
  1929. "id": {
  1930. "m_id": "{BC6D96E2-70DD-4709-9E1E-3262BDCCB97E}"
  1931. },
  1932. "contracts": [
  1933. {
  1934. "$type": "SlotTypeContract"
  1935. }
  1936. ],
  1937. "slotName": "Boolean",
  1938. "DisplayDataType": {
  1939. "m_type": 0
  1940. },
  1941. "Descriptor": {
  1942. "ConnectionType": 2,
  1943. "SlotType": 2
  1944. },
  1945. "DataType": 1
  1946. },
  1947. {
  1948. "id": {
  1949. "m_id": "{BD1D5DBF-C453-4DFB-967E-FBA9FD100D2C}"
  1950. },
  1951. "contracts": [
  1952. {
  1953. "$type": "SlotTypeContract"
  1954. }
  1955. ],
  1956. "slotName": "ExecutionSlot:Not",
  1957. "Descriptor": {
  1958. "ConnectionType": 2,
  1959. "SlotType": 1
  1960. },
  1961. "IsLatent": true
  1962. },
  1963. {
  1964. "id": {
  1965. "m_id": "{4AA7510D-D9C8-4C76-AEB9-5859A9E5EB7F}"
  1966. },
  1967. "contracts": [
  1968. {
  1969. "$type": "SlotTypeContract"
  1970. }
  1971. ],
  1972. "slotName": "String",
  1973. "DisplayDataType": {
  1974. "m_type": 5
  1975. },
  1976. "Descriptor": {
  1977. "ConnectionType": 2,
  1978. "SlotType": 2
  1979. },
  1980. "DataType": 1
  1981. },
  1982. {
  1983. "id": {
  1984. "m_id": "{5E265109-79B0-48D7-8B7B-FC0C0B393F12}"
  1985. },
  1986. "contracts": [
  1987. {
  1988. "$type": "SlotTypeContract"
  1989. }
  1990. ],
  1991. "slotName": "ExecutionSlot:Void",
  1992. "Descriptor": {
  1993. "ConnectionType": 2,
  1994. "SlotType": 1
  1995. },
  1996. "IsLatent": true
  1997. }
  1998. ],
  1999. "Datums": [
  2000. {
  2001. "isOverloadedStorage": false,
  2002. "scriptCanvasType": {
  2003. "m_type": 3
  2004. },
  2005. "isNullPointer": false,
  2006. "$type": "double",
  2007. "value": 0.0,
  2008. "label": "Source"
  2009. },
  2010. {
  2011. "isOverloadedStorage": false,
  2012. "scriptCanvasType": {
  2013. "m_type": 5
  2014. },
  2015. "isNullPointer": false,
  2016. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2017. "value": "",
  2018. "label": "Result: String"
  2019. },
  2020. {
  2021. "isOverloadedStorage": false,
  2022. "scriptCanvasType": {
  2023. "m_type": 3
  2024. },
  2025. "isNullPointer": false,
  2026. "$type": "double",
  2027. "value": 0.0,
  2028. "label": "Result: Number"
  2029. },
  2030. {
  2031. "isOverloadedStorage": false,
  2032. "scriptCanvasType": {
  2033. "m_type": 0
  2034. },
  2035. "isNullPointer": false,
  2036. "$type": "bool",
  2037. "value": false,
  2038. "label": "Result: Boolean"
  2039. }
  2040. ],
  2041. "m_eventMap": [
  2042. {
  2043. "Key": {
  2044. "Value": 134610293
  2045. },
  2046. "Value": {
  2047. "m_eventName": "Not",
  2048. "m_eventId": {
  2049. "Value": 134610293
  2050. },
  2051. "m_eventSlotId": {
  2052. "m_id": "{BD1D5DBF-C453-4DFB-967E-FBA9FD100D2C}"
  2053. },
  2054. "m_resultSlotId": {
  2055. "m_id": "{4F88C006-249B-4D3B-887C-F94838208D6F}"
  2056. },
  2057. "m_parameterSlotIds": [
  2058. {
  2059. "m_id": "{BC6D96E2-70DD-4709-9E1E-3262BDCCB97E}"
  2060. }
  2061. ],
  2062. "m_numExpectedArguments": 1
  2063. }
  2064. },
  2065. {
  2066. "Key": {
  2067. "Value": 1434994254
  2068. },
  2069. "Value": {
  2070. "m_eventName": "Increment",
  2071. "m_eventId": {
  2072. "Value": 1434994254
  2073. },
  2074. "m_eventSlotId": {
  2075. "m_id": "{5816FDA0-BF80-49EE-84C1-5BA79EE5ED25}"
  2076. },
  2077. "m_resultSlotId": {
  2078. "m_id": "{22B11AFE-EFB9-4221-BC9F-D5EFEA892032}"
  2079. },
  2080. "m_parameterSlotIds": [
  2081. {
  2082. "m_id": "{F2197BCF-9A4E-48D3-965A-8593ADF23EAB}"
  2083. }
  2084. ],
  2085. "m_numExpectedArguments": 1
  2086. }
  2087. },
  2088. {
  2089. "Key": {
  2090. "Value": 1706314564
  2091. },
  2092. "Value": {
  2093. "m_eventName": "AppendSweet",
  2094. "m_eventId": {
  2095. "Value": 1706314564
  2096. },
  2097. "m_eventSlotId": {
  2098. "m_id": "{E882022A-4280-4254-8025-627EC2B58264}"
  2099. },
  2100. "m_resultSlotId": {
  2101. "m_id": "{55582F0B-296B-45A8-844F-EA58EC0C4252}"
  2102. },
  2103. "m_parameterSlotIds": [
  2104. {
  2105. "m_id": "{C9B1EDEB-5986-4E3F-8F1F-F0F12A625892}"
  2106. }
  2107. ],
  2108. "m_numExpectedArguments": 1
  2109. }
  2110. },
  2111. {
  2112. "Key": {
  2113. "Value": 3531332078
  2114. },
  2115. "Value": {
  2116. "m_eventName": "Void",
  2117. "m_eventId": {
  2118. "Value": 3531332078
  2119. },
  2120. "m_eventSlotId": {
  2121. "m_id": "{5E265109-79B0-48D7-8B7B-FC0C0B393F12}"
  2122. },
  2123. "m_parameterSlotIds": [
  2124. {
  2125. "m_id": "{4AA7510D-D9C8-4C76-AEB9-5859A9E5EB7F}"
  2126. }
  2127. ],
  2128. "m_numExpectedArguments": 1
  2129. }
  2130. }
  2131. ],
  2132. "m_ebusName": "LocalEBus",
  2133. "m_busId": {
  2134. "Value": 2890822024
  2135. }
  2136. }
  2137. }
  2138. },
  2139. {
  2140. "Id": {
  2141. "id": 855129310189614
  2142. },
  2143. "Name": "SC Node(GetVariable)",
  2144. "Components": {
  2145. "Component_[9234739736785520817]": {
  2146. "$type": "GetVariableNode",
  2147. "Id": 9234739736785520817,
  2148. "Slots": [
  2149. {
  2150. "id": {
  2151. "m_id": "{6AE83873-DDA8-41F5-922B-5C2FA470F963}"
  2152. },
  2153. "contracts": [
  2154. {
  2155. "$type": "SlotTypeContract"
  2156. }
  2157. ],
  2158. "slotName": "In",
  2159. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2160. "Descriptor": {
  2161. "ConnectionType": 1,
  2162. "SlotType": 1
  2163. }
  2164. },
  2165. {
  2166. "id": {
  2167. "m_id": "{AE183E68-36F1-4965-BF7F-959DDA8AF368}"
  2168. },
  2169. "contracts": [
  2170. {
  2171. "$type": "SlotTypeContract"
  2172. }
  2173. ],
  2174. "slotName": "Out",
  2175. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2176. "Descriptor": {
  2177. "ConnectionType": 2,
  2178. "SlotType": 1
  2179. }
  2180. },
  2181. {
  2182. "id": {
  2183. "m_id": "{7B99B6E5-FA8A-45D7-87FD-9054EA09251F}"
  2184. },
  2185. "contracts": [
  2186. {
  2187. "$type": "SlotTypeContract"
  2188. }
  2189. ],
  2190. "slotName": "Number",
  2191. "DisplayDataType": {
  2192. "m_type": 3
  2193. },
  2194. "Descriptor": {
  2195. "ConnectionType": 2,
  2196. "SlotType": 2
  2197. },
  2198. "DataType": 1
  2199. }
  2200. ],
  2201. "m_variableId": {
  2202. "m_id": "{11630F91-3EC2-4764-AC7E-8B6382FED186}"
  2203. },
  2204. "m_variableDataOutSlotId": {
  2205. "m_id": "{7B99B6E5-FA8A-45D7-87FD-9054EA09251F}"
  2206. }
  2207. }
  2208. }
  2209. },
  2210. {
  2211. "Id": {
  2212. "id": 855086360516654
  2213. },
  2214. "Name": "SC Node(GetVariable)",
  2215. "Components": {
  2216. "Component_[9938372558777736529]": {
  2217. "$type": "GetVariableNode",
  2218. "Id": 9938372558777736529,
  2219. "Slots": [
  2220. {
  2221. "id": {
  2222. "m_id": "{C58BA2D1-948A-4C7B-8B96-7A11083365AA}"
  2223. },
  2224. "contracts": [
  2225. {
  2226. "$type": "SlotTypeContract"
  2227. }
  2228. ],
  2229. "slotName": "In",
  2230. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2231. "Descriptor": {
  2232. "ConnectionType": 1,
  2233. "SlotType": 1
  2234. }
  2235. },
  2236. {
  2237. "id": {
  2238. "m_id": "{7B284683-77C0-444A-8E76-4DFF4B4151CE}"
  2239. },
  2240. "contracts": [
  2241. {
  2242. "$type": "SlotTypeContract"
  2243. }
  2244. ],
  2245. "slotName": "Out",
  2246. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2247. "Descriptor": {
  2248. "ConnectionType": 2,
  2249. "SlotType": 1
  2250. }
  2251. },
  2252. {
  2253. "id": {
  2254. "m_id": "{B2FF34E2-1B61-4ADA-B988-1AF58C6C5EFC}"
  2255. },
  2256. "contracts": [
  2257. {
  2258. "$type": "SlotTypeContract"
  2259. }
  2260. ],
  2261. "slotName": "Number",
  2262. "DisplayDataType": {
  2263. "m_type": 3
  2264. },
  2265. "Descriptor": {
  2266. "ConnectionType": 2,
  2267. "SlotType": 2
  2268. },
  2269. "DataType": 1
  2270. }
  2271. ],
  2272. "m_variableId": {
  2273. "m_id": "{94E2AD9F-CA1A-4ED8-AFD7-4D3040E112B1}"
  2274. },
  2275. "m_variableDataOutSlotId": {
  2276. "m_id": "{B2FF34E2-1B61-4ADA-B988-1AF58C6C5EFC}"
  2277. }
  2278. }
  2279. }
  2280. }
  2281. ],
  2282. "m_connections": [
  2283. {
  2284. "Id": {
  2285. "id": 855163669927982
  2286. },
  2287. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(LocalEBus Handler: Source)",
  2288. "Components": {
  2289. "Component_[16506357990544630932]": {
  2290. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2291. "Id": 16506357990544630932,
  2292. "sourceEndpoint": {
  2293. "nodeId": {
  2294. "id": 855086360516654
  2295. },
  2296. "slotId": {
  2297. "m_id": "{B2FF34E2-1B61-4ADA-B988-1AF58C6C5EFC}"
  2298. }
  2299. },
  2300. "targetEndpoint": {
  2301. "nodeId": {
  2302. "id": 855116425287726
  2303. },
  2304. "slotId": {
  2305. "m_id": "{B666D228-55D2-431E-8282-C30BCF24F5F9}"
  2306. }
  2307. }
  2308. }
  2309. }
  2310. },
  2311. {
  2312. "Id": {
  2313. "id": 855167964895278
  2314. },
  2315. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Not: In)",
  2316. "Components": {
  2317. "Component_[5865663232261592697]": {
  2318. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2319. "Id": 5865663232261592697,
  2320. "sourceEndpoint": {
  2321. "nodeId": {
  2322. "id": 855146490058798
  2323. },
  2324. "slotId": {
  2325. "m_id": "{6C90DD1F-92CD-477D-9150-1B3CEDC09675}"
  2326. }
  2327. },
  2328. "targetEndpoint": {
  2329. "nodeId": {
  2330. "id": 855155079993390
  2331. },
  2332. "slotId": {
  2333. "m_id": "{F5C262F5-86D0-4BD4-A41F-4E46528179A4}"
  2334. }
  2335. }
  2336. }
  2337. }
  2338. },
  2339. {
  2340. "Id": {
  2341. "id": 855172259862574
  2342. },
  2343. "Name": "srcEndpoint=(Not: Out), destEndpoint=(Get Variable: In)",
  2344. "Components": {
  2345. "Component_[3076213321599075149]": {
  2346. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2347. "Id": 3076213321599075149,
  2348. "sourceEndpoint": {
  2349. "nodeId": {
  2350. "id": 855155079993390
  2351. },
  2352. "slotId": {
  2353. "m_id": "{82AF7E69-1875-4DF0-AF4F-982CA0904633}"
  2354. }
  2355. },
  2356. "targetEndpoint": {
  2357. "nodeId": {
  2358. "id": 855086360516654
  2359. },
  2360. "slotId": {
  2361. "m_id": "{C58BA2D1-948A-4C7B-8B96-7A11083365AA}"
  2362. }
  2363. }
  2364. }
  2365. }
  2366. },
  2367. {
  2368. "Id": {
  2369. "id": 855176554829870
  2370. },
  2371. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(LocalEBus Handler: Source)",
  2372. "Components": {
  2373. "Component_[13867737631877942116]": {
  2374. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2375. "Id": 13867737631877942116,
  2376. "sourceEndpoint": {
  2377. "nodeId": {
  2378. "id": 855103540385838
  2379. },
  2380. "slotId": {
  2381. "m_id": "{9A86F1E8-82CF-4C2F-80E0-54B30871E611}"
  2382. }
  2383. },
  2384. "targetEndpoint": {
  2385. "nodeId": {
  2386. "id": 855116425287726
  2387. },
  2388. "slotId": {
  2389. "m_id": "{B666D228-55D2-431E-8282-C30BCF24F5F9}"
  2390. }
  2391. }
  2392. }
  2393. }
  2394. },
  2395. {
  2396. "Id": {
  2397. "id": 855180849797166
  2398. },
  2399. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(AppendSweet: In)",
  2400. "Components": {
  2401. "Component_[90760288253790032]": {
  2402. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2403. "Id": 90760288253790032,
  2404. "sourceEndpoint": {
  2405. "nodeId": {
  2406. "id": 855103540385838
  2407. },
  2408. "slotId": {
  2409. "m_id": "{492B6BB9-EDA0-45A9-9BCB-D7136E1D7A8A}"
  2410. }
  2411. },
  2412. "targetEndpoint": {
  2413. "nodeId": {
  2414. "id": 855125015222318
  2415. },
  2416. "slotId": {
  2417. "m_id": "{21E1F505-C832-460F-8C57-E2C285F165F1}"
  2418. }
  2419. }
  2420. }
  2421. }
  2422. },
  2423. {
  2424. "Id": {
  2425. "id": 855185144764462
  2426. },
  2427. "Name": "srcEndpoint=(AppendSweet: Out), destEndpoint=(Get Variable: In)",
  2428. "Components": {
  2429. "Component_[7411648181266316314]": {
  2430. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2431. "Id": 7411648181266316314,
  2432. "sourceEndpoint": {
  2433. "nodeId": {
  2434. "id": 855125015222318
  2435. },
  2436. "slotId": {
  2437. "m_id": "{CE1D6B32-9343-42BB-8F0B-1660D4BD75DE}"
  2438. }
  2439. },
  2440. "targetEndpoint": {
  2441. "nodeId": {
  2442. "id": 855129310189614
  2443. },
  2444. "slotId": {
  2445. "m_id": "{6AE83873-DDA8-41F5-922B-5C2FA470F963}"
  2446. }
  2447. }
  2448. }
  2449. }
  2450. },
  2451. {
  2452. "Id": {
  2453. "id": 855189439731758
  2454. },
  2455. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Void: In)",
  2456. "Components": {
  2457. "Component_[16726690475678073258]": {
  2458. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2459. "Id": 16726690475678073258,
  2460. "sourceEndpoint": {
  2461. "nodeId": {
  2462. "id": 855129310189614
  2463. },
  2464. "slotId": {
  2465. "m_id": "{AE183E68-36F1-4965-BF7F-959DDA8AF368}"
  2466. }
  2467. },
  2468. "targetEndpoint": {
  2469. "nodeId": {
  2470. "id": 855099245418542
  2471. },
  2472. "slotId": {
  2473. "m_id": "{C1492689-9891-41D0-ACFD-E54660291DD6}"
  2474. }
  2475. }
  2476. }
  2477. }
  2478. },
  2479. {
  2480. "Id": {
  2481. "id": 855193734699054
  2482. },
  2483. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(LocalEBus Handler: Source)",
  2484. "Components": {
  2485. "Component_[2947401739678681467]": {
  2486. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2487. "Id": 2947401739678681467,
  2488. "sourceEndpoint": {
  2489. "nodeId": {
  2490. "id": 855129310189614
  2491. },
  2492. "slotId": {
  2493. "m_id": "{7B99B6E5-FA8A-45D7-87FD-9054EA09251F}"
  2494. }
  2495. },
  2496. "targetEndpoint": {
  2497. "nodeId": {
  2498. "id": 855116425287726
  2499. },
  2500. "slotId": {
  2501. "m_id": "{B666D228-55D2-431E-8282-C30BCF24F5F9}"
  2502. }
  2503. }
  2504. }
  2505. }
  2506. },
  2507. {
  2508. "Id": {
  2509. "id": 855198029666350
  2510. },
  2511. "Name": "srcEndpoint=(LocalEBus Handler: ExecutionSlot:Not), destEndpoint=(Set Variable: In)",
  2512. "Components": {
  2513. "Component_[16862188091276026241]": {
  2514. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2515. "Id": 16862188091276026241,
  2516. "sourceEndpoint": {
  2517. "nodeId": {
  2518. "id": 855116425287726
  2519. },
  2520. "slotId": {
  2521. "m_id": "{BD1D5DBF-C453-4DFB-967E-FBA9FD100D2C}"
  2522. }
  2523. },
  2524. "targetEndpoint": {
  2525. "nodeId": {
  2526. "id": 855142195091502
  2527. },
  2528. "slotId": {
  2529. "m_id": "{12AA4346-D389-4D5B-9CE8-4B6A7EEBF26E}"
  2530. }
  2531. }
  2532. }
  2533. }
  2534. },
  2535. {
  2536. "Id": {
  2537. "id": 855202324633646
  2538. },
  2539. "Name": "srcEndpoint=(LocalEBus Handler: ExecutionSlot:Increment), destEndpoint=(Set Variable: In)",
  2540. "Components": {
  2541. "Component_[7869679510120732835]": {
  2542. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2543. "Id": 7869679510120732835,
  2544. "sourceEndpoint": {
  2545. "nodeId": {
  2546. "id": 855116425287726
  2547. },
  2548. "slotId": {
  2549. "m_id": "{5816FDA0-BF80-49EE-84C1-5BA79EE5ED25}"
  2550. }
  2551. },
  2552. "targetEndpoint": {
  2553. "nodeId": {
  2554. "id": 855120720255022
  2555. },
  2556. "slotId": {
  2557. "m_id": "{0820B95C-6A66-47F1-B243-D56C92669B53}"
  2558. }
  2559. }
  2560. }
  2561. }
  2562. },
  2563. {
  2564. "Id": {
  2565. "id": 855206619600942
  2566. },
  2567. "Name": "srcEndpoint=(LocalEBus Handler: ExecutionSlot:AppendSweet), destEndpoint=(Set Variable: In)",
  2568. "Components": {
  2569. "Component_[15617566216378541461]": {
  2570. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2571. "Id": 15617566216378541461,
  2572. "sourceEndpoint": {
  2573. "nodeId": {
  2574. "id": 855116425287726
  2575. },
  2576. "slotId": {
  2577. "m_id": "{E882022A-4280-4254-8025-627EC2B58264}"
  2578. }
  2579. },
  2580. "targetEndpoint": {
  2581. "nodeId": {
  2582. "id": 855094950451246
  2583. },
  2584. "slotId": {
  2585. "m_id": "{B89CAC90-8D4D-4A8C-9868-AD6EE5C1F9AF}"
  2586. }
  2587. }
  2588. }
  2589. }
  2590. },
  2591. {
  2592. "Id": {
  2593. "id": 855210914568238
  2594. },
  2595. "Name": "srcEndpoint=(LocalEBus Handler: ExecutionSlot:Void), destEndpoint=(Set Variable: In)",
  2596. "Components": {
  2597. "Component_[13269121373775066461]": {
  2598. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2599. "Id": 13269121373775066461,
  2600. "sourceEndpoint": {
  2601. "nodeId": {
  2602. "id": 855116425287726
  2603. },
  2604. "slotId": {
  2605. "m_id": "{5E265109-79B0-48D7-8B7B-FC0C0B393F12}"
  2606. }
  2607. },
  2608. "targetEndpoint": {
  2609. "nodeId": {
  2610. "id": 855090655483950
  2611. },
  2612. "slotId": {
  2613. "m_id": "{A87C91ED-C381-41AC-9510-864B65DF53F6}"
  2614. }
  2615. }
  2616. }
  2617. }
  2618. },
  2619. {
  2620. "Id": {
  2621. "id": 855215209535534
  2622. },
  2623. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Expect True: In)",
  2624. "Components": {
  2625. "Component_[9100569999673364646]": {
  2626. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2627. "Id": 9100569999673364646,
  2628. "sourceEndpoint": {
  2629. "nodeId": {
  2630. "id": 855150785026094
  2631. },
  2632. "slotId": {
  2633. "m_id": "{AAC7411A-1781-41B2-B2DC-ED0D4BCAB3BA}"
  2634. }
  2635. },
  2636. "targetEndpoint": {
  2637. "nodeId": {
  2638. "id": 855107835353134
  2639. },
  2640. "slotId": {
  2641. "m_id": "{D389C4AD-BF5E-4D7B-83B6-1407F3FB97C9}"
  2642. }
  2643. }
  2644. }
  2645. }
  2646. },
  2647. {
  2648. "Id": {
  2649. "id": 855219504502830
  2650. },
  2651. "Name": "srcEndpoint=(Void: Out), destEndpoint=(Expect True: In)",
  2652. "Components": {
  2653. "Component_[14931103647855155957]": {
  2654. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2655. "Id": 14931103647855155957,
  2656. "sourceEndpoint": {
  2657. "nodeId": {
  2658. "id": 855099245418542
  2659. },
  2660. "slotId": {
  2661. "m_id": "{582F03D8-0AC2-4082-A0A8-0EBBF6777102}"
  2662. }
  2663. },
  2664. "targetEndpoint": {
  2665. "nodeId": {
  2666. "id": 855133605156910
  2667. },
  2668. "slotId": {
  2669. "m_id": "{D389C4AD-BF5E-4D7B-83B6-1407F3FB97C9}"
  2670. }
  2671. }
  2672. }
  2673. }
  2674. },
  2675. {
  2676. "Id": {
  2677. "id": 855223799470126
  2678. },
  2679. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Expect True: In)",
  2680. "Components": {
  2681. "Component_[16246067777008011768]": {
  2682. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2683. "Id": 16246067777008011768,
  2684. "sourceEndpoint": {
  2685. "nodeId": {
  2686. "id": 855133605156910
  2687. },
  2688. "slotId": {
  2689. "m_id": "{AAC7411A-1781-41B2-B2DC-ED0D4BCAB3BA}"
  2690. }
  2691. },
  2692. "targetEndpoint": {
  2693. "nodeId": {
  2694. "id": 855150785026094
  2695. },
  2696. "slotId": {
  2697. "m_id": "{D389C4AD-BF5E-4D7B-83B6-1407F3FB97C9}"
  2698. }
  2699. }
  2700. }
  2701. }
  2702. },
  2703. {
  2704. "Id": {
  2705. "id": 855228094437422
  2706. },
  2707. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Expect True: In)",
  2708. "Components": {
  2709. "Component_[12695178484727842162]": {
  2710. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2711. "Id": 12695178484727842162,
  2712. "sourceEndpoint": {
  2713. "nodeId": {
  2714. "id": 855107835353134
  2715. },
  2716. "slotId": {
  2717. "m_id": "{AAC7411A-1781-41B2-B2DC-ED0D4BCAB3BA}"
  2718. }
  2719. },
  2720. "targetEndpoint": {
  2721. "nodeId": {
  2722. "id": 855112130320430
  2723. },
  2724. "slotId": {
  2725. "m_id": "{D389C4AD-BF5E-4D7B-83B6-1407F3FB97C9}"
  2726. }
  2727. }
  2728. }
  2729. }
  2730. },
  2731. {
  2732. "Id": {
  2733. "id": 855232389404718
  2734. },
  2735. "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Mark Complete: In)",
  2736. "Components": {
  2737. "Component_[10096056275719106079]": {
  2738. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2739. "Id": 10096056275719106079,
  2740. "sourceEndpoint": {
  2741. "nodeId": {
  2742. "id": 855112130320430
  2743. },
  2744. "slotId": {
  2745. "m_id": "{AAC7411A-1781-41B2-B2DC-ED0D4BCAB3BA}"
  2746. }
  2747. },
  2748. "targetEndpoint": {
  2749. "nodeId": {
  2750. "id": 855137900124206
  2751. },
  2752. "slotId": {
  2753. "m_id": "{FF9C66AA-D139-485D-82FA-CBA38D64DD22}"
  2754. }
  2755. }
  2756. }
  2757. }
  2758. },
  2759. {
  2760. "Id": {
  2761. "id": 855236684372014
  2762. },
  2763. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Increment: In)",
  2764. "Components": {
  2765. "Component_[15775970451562616541]": {
  2766. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2767. "Id": 15775970451562616541,
  2768. "sourceEndpoint": {
  2769. "nodeId": {
  2770. "id": 855086360516654
  2771. },
  2772. "slotId": {
  2773. "m_id": "{7B284683-77C0-444A-8E76-4DFF4B4151CE}"
  2774. }
  2775. },
  2776. "targetEndpoint": {
  2777. "nodeId": {
  2778. "id": 855159374960686
  2779. },
  2780. "slotId": {
  2781. "m_id": "{201FC621-0245-4700-AEF0-53B0CAE66DE1}"
  2782. }
  2783. }
  2784. }
  2785. }
  2786. },
  2787. {
  2788. "Id": {
  2789. "id": 855240979339310
  2790. },
  2791. "Name": "srcEndpoint=(Increment: Out), destEndpoint=(Get Variable: In)",
  2792. "Components": {
  2793. "Component_[16084305078922037756]": {
  2794. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2795. "Id": 16084305078922037756,
  2796. "sourceEndpoint": {
  2797. "nodeId": {
  2798. "id": 855159374960686
  2799. },
  2800. "slotId": {
  2801. "m_id": "{9C97BFEC-BEE5-485B-BC2E-84978EC49441}"
  2802. }
  2803. },
  2804. "targetEndpoint": {
  2805. "nodeId": {
  2806. "id": 855103540385838
  2807. },
  2808. "slotId": {
  2809. "m_id": "{3FE32DE8-F484-4A9E-8414-A5B5A547C6D1}"
  2810. }
  2811. }
  2812. }
  2813. }
  2814. }
  2815. ]
  2816. },
  2817. "m_assetType": "{30CE08EB-0402-0000-F0CE-08EB04020000}",
  2818. "versionData": {
  2819. "_grammarVersion": 1,
  2820. "_runtimeVersion": 1,
  2821. "_fileVersion": 1
  2822. },
  2823. "m_variableCounter": 8,
  2824. "GraphCanvasData": [
  2825. {
  2826. "Key": {
  2827. "id": 855082065549358
  2828. },
  2829. "Value": {
  2830. "ComponentData": {
  2831. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2832. "$type": "SceneComponentSaveData",
  2833. "ViewParams": {
  2834. "Scale": 0.579627,
  2835. "AnchorX": -1017.8960571289063,
  2836. "AnchorY": -422.6856384277344
  2837. }
  2838. }
  2839. }
  2840. }
  2841. },
  2842. {
  2843. "Key": {
  2844. "id": 855086360516654
  2845. },
  2846. "Value": {
  2847. "ComponentData": {
  2848. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2849. "$type": "NodeSaveData"
  2850. },
  2851. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2852. "$type": "GeneralNodeTitleComponentSaveData",
  2853. "PaletteOverride": "GetVariableNodeTitlePalette"
  2854. },
  2855. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2856. "$type": "GeometrySaveData",
  2857. "Position": [
  2858. -140.0,
  2859. 220.0
  2860. ]
  2861. },
  2862. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2863. "$type": "StylingComponentSaveData",
  2864. "SubStyle": ".getVariable"
  2865. },
  2866. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2867. "$type": "PersistentIdComponentSaveData",
  2868. "PersistentId": "{F5D1641C-48F6-4665-A786-95AF97BA2AC4}"
  2869. }
  2870. }
  2871. }
  2872. },
  2873. {
  2874. "Key": {
  2875. "id": 855090655483950
  2876. },
  2877. "Value": {
  2878. "ComponentData": {
  2879. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2880. "$type": "NodeSaveData"
  2881. },
  2882. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2883. "$type": "GeneralNodeTitleComponentSaveData",
  2884. "PaletteOverride": "SetVariableNodeTitlePalette"
  2885. },
  2886. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2887. "$type": "GeometrySaveData",
  2888. "Position": [
  2889. 1220.0,
  2890. 80.0
  2891. ]
  2892. },
  2893. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2894. "$type": "StylingComponentSaveData",
  2895. "SubStyle": ".setVariable"
  2896. },
  2897. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2898. "$type": "PersistentIdComponentSaveData",
  2899. "PersistentId": "{89E3A48B-88DD-499A-B41F-857ABCF3A8E1}"
  2900. }
  2901. }
  2902. }
  2903. },
  2904. {
  2905. "Key": {
  2906. "id": 855094950451246
  2907. },
  2908. "Value": {
  2909. "ComponentData": {
  2910. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2911. "$type": "NodeSaveData"
  2912. },
  2913. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2914. "$type": "GeneralNodeTitleComponentSaveData",
  2915. "PaletteOverride": "SetVariableNodeTitlePalette"
  2916. },
  2917. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2918. "$type": "GeometrySaveData",
  2919. "Position": [
  2920. 1180.0,
  2921. -80.0
  2922. ]
  2923. },
  2924. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2925. "$type": "StylingComponentSaveData",
  2926. "SubStyle": ".setVariable"
  2927. },
  2928. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2929. "$type": "PersistentIdComponentSaveData",
  2930. "PersistentId": "{89A56A28-FD6D-465E-AA66-859E2CAD3C87}"
  2931. }
  2932. }
  2933. }
  2934. },
  2935. {
  2936. "Key": {
  2937. "id": 855099245418542
  2938. },
  2939. "Value": {
  2940. "ComponentData": {
  2941. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2942. "$type": "NodeSaveData"
  2943. },
  2944. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2945. "$type": "GeneralNodeTitleComponentSaveData",
  2946. "PaletteOverride": "MethodNodeTitlePalette"
  2947. },
  2948. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2949. "$type": "GeometrySaveData",
  2950. "Position": [
  2951. 1120.0,
  2952. 260.0
  2953. ]
  2954. },
  2955. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2956. "$type": "StylingComponentSaveData",
  2957. "SubStyle": ".method"
  2958. },
  2959. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2960. "$type": "PersistentIdComponentSaveData",
  2961. "PersistentId": "{1C85A570-5011-47B5-9471-3B0701A43564}"
  2962. }
  2963. }
  2964. }
  2965. },
  2966. {
  2967. "Key": {
  2968. "id": 855103540385838
  2969. },
  2970. "Value": {
  2971. "ComponentData": {
  2972. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2973. "$type": "NodeSaveData"
  2974. },
  2975. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2976. "$type": "GeneralNodeTitleComponentSaveData",
  2977. "PaletteOverride": "GetVariableNodeTitlePalette"
  2978. },
  2979. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2980. "$type": "GeometrySaveData",
  2981. "Position": [
  2982. 440.0,
  2983. 260.0
  2984. ]
  2985. },
  2986. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2987. "$type": "StylingComponentSaveData",
  2988. "SubStyle": ".getVariable"
  2989. },
  2990. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2991. "$type": "PersistentIdComponentSaveData",
  2992. "PersistentId": "{700C8E98-6096-49C0-BA8E-BF823BA4731D}"
  2993. }
  2994. }
  2995. }
  2996. },
  2997. {
  2998. "Key": {
  2999. "id": 855107835353134
  3000. },
  3001. "Value": {
  3002. "ComponentData": {
  3003. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3004. "$type": "NodeSaveData"
  3005. },
  3006. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3007. "$type": "GeneralNodeTitleComponentSaveData",
  3008. "PaletteOverride": "MethodNodeTitlePalette"
  3009. },
  3010. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3011. "$type": "GeometrySaveData",
  3012. "Position": [
  3013. 320.0,
  3014. 480.0
  3015. ]
  3016. },
  3017. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3018. "$type": "StylingComponentSaveData",
  3019. "SubStyle": ".method"
  3020. },
  3021. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3022. "$type": "PersistentIdComponentSaveData",
  3023. "PersistentId": "{483FBA94-293F-41A9-842C-C06F62E830FA}"
  3024. }
  3025. }
  3026. }
  3027. },
  3028. {
  3029. "Key": {
  3030. "id": 855112130320430
  3031. },
  3032. "Value": {
  3033. "ComponentData": {
  3034. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3035. "$type": "NodeSaveData"
  3036. },
  3037. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3038. "$type": "GeneralNodeTitleComponentSaveData",
  3039. "PaletteOverride": "MethodNodeTitlePalette"
  3040. },
  3041. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3042. "$type": "GeometrySaveData",
  3043. "Position": [
  3044. 620.0,
  3045. 480.0
  3046. ]
  3047. },
  3048. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3049. "$type": "StylingComponentSaveData",
  3050. "SubStyle": ".method"
  3051. },
  3052. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3053. "$type": "PersistentIdComponentSaveData",
  3054. "PersistentId": "{310AC3E2-4EDF-4FFA-B6AB-3980B6A156EA}"
  3055. }
  3056. }
  3057. }
  3058. },
  3059. {
  3060. "Key": {
  3061. "id": 855116425287726
  3062. },
  3063. "Value": {
  3064. "ComponentData": {
  3065. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3066. "$type": "NodeSaveData"
  3067. },
  3068. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3069. "$type": "GeometrySaveData",
  3070. "Position": [
  3071. 500.0,
  3072. -380.0
  3073. ]
  3074. },
  3075. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3076. "$type": "EBusHandlerNodeDescriptorSaveData",
  3077. "EventIds": [
  3078. {
  3079. "Value": 134610293
  3080. },
  3081. {
  3082. "Value": 3531332078
  3083. },
  3084. {
  3085. "Value": 1434994254
  3086. },
  3087. {
  3088. "Value": 1706314564
  3089. }
  3090. ]
  3091. },
  3092. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3093. "$type": "StylingComponentSaveData"
  3094. },
  3095. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3096. "$type": "PersistentIdComponentSaveData",
  3097. "PersistentId": "{78BB96FA-AA48-4504-B6F3-211B78C10A82}"
  3098. }
  3099. }
  3100. }
  3101. },
  3102. {
  3103. "Key": {
  3104. "id": 855120720255022
  3105. },
  3106. "Value": {
  3107. "ComponentData": {
  3108. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3109. "$type": "NodeSaveData"
  3110. },
  3111. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3112. "$type": "GeneralNodeTitleComponentSaveData",
  3113. "PaletteOverride": "SetVariableNodeTitlePalette"
  3114. },
  3115. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3116. "$type": "GeometrySaveData",
  3117. "Position": [
  3118. 1220.0,
  3119. -200.0
  3120. ]
  3121. },
  3122. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3123. "$type": "StylingComponentSaveData",
  3124. "SubStyle": ".setVariable"
  3125. },
  3126. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3127. "$type": "PersistentIdComponentSaveData",
  3128. "PersistentId": "{5BFB73F6-D8C5-42EF-A0E9-4986577A4F4C}"
  3129. }
  3130. }
  3131. }
  3132. },
  3133. {
  3134. "Key": {
  3135. "id": 855125015222318
  3136. },
  3137. "Value": {
  3138. "ComponentData": {
  3139. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3140. "$type": "NodeSaveData"
  3141. },
  3142. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3143. "$type": "GeneralNodeTitleComponentSaveData",
  3144. "PaletteOverride": "MethodNodeTitlePalette"
  3145. },
  3146. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3147. "$type": "GeometrySaveData",
  3148. "Position": [
  3149. 580.0,
  3150. 260.0
  3151. ]
  3152. },
  3153. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3154. "$type": "StylingComponentSaveData",
  3155. "SubStyle": ".method"
  3156. },
  3157. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3158. "$type": "PersistentIdComponentSaveData",
  3159. "PersistentId": "{BDC8CE61-EF04-4D7F-9FEC-6AE7D500D673}"
  3160. }
  3161. }
  3162. }
  3163. },
  3164. {
  3165. "Key": {
  3166. "id": 855129310189614
  3167. },
  3168. "Value": {
  3169. "ComponentData": {
  3170. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3171. "$type": "NodeSaveData"
  3172. },
  3173. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3174. "$type": "GeneralNodeTitleComponentSaveData",
  3175. "PaletteOverride": "GetVariableNodeTitlePalette"
  3176. },
  3177. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3178. "$type": "GeometrySaveData",
  3179. "Position": [
  3180. 960.0,
  3181. 260.0
  3182. ]
  3183. },
  3184. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3185. "$type": "StylingComponentSaveData",
  3186. "SubStyle": ".getVariable"
  3187. },
  3188. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3189. "$type": "PersistentIdComponentSaveData",
  3190. "PersistentId": "{35252133-E8CB-4648-BD2D-3ED500BFC66E}"
  3191. }
  3192. }
  3193. }
  3194. },
  3195. {
  3196. "Key": {
  3197. "id": 855133605156910
  3198. },
  3199. "Value": {
  3200. "ComponentData": {
  3201. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3202. "$type": "NodeSaveData"
  3203. },
  3204. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3205. "$type": "GeneralNodeTitleComponentSaveData",
  3206. "PaletteOverride": "MethodNodeTitlePalette"
  3207. },
  3208. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3209. "$type": "GeometrySaveData",
  3210. "Position": [
  3211. -280.0,
  3212. 480.0
  3213. ]
  3214. },
  3215. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3216. "$type": "StylingComponentSaveData",
  3217. "SubStyle": ".method"
  3218. },
  3219. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3220. "$type": "PersistentIdComponentSaveData",
  3221. "PersistentId": "{98DC3C01-EA4C-4EA7-971C-BBC66B4211C3}"
  3222. }
  3223. }
  3224. }
  3225. },
  3226. {
  3227. "Key": {
  3228. "id": 855137900124206
  3229. },
  3230. "Value": {
  3231. "ComponentData": {
  3232. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3233. "$type": "NodeSaveData"
  3234. },
  3235. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3236. "$type": "GeneralNodeTitleComponentSaveData",
  3237. "PaletteOverride": "MethodNodeTitlePalette"
  3238. },
  3239. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3240. "$type": "GeometrySaveData",
  3241. "Position": [
  3242. 920.0,
  3243. 480.0
  3244. ]
  3245. },
  3246. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3247. "$type": "StylingComponentSaveData",
  3248. "SubStyle": ".method"
  3249. },
  3250. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3251. "$type": "PersistentIdComponentSaveData",
  3252. "PersistentId": "{2EC13B75-7313-4800-A72A-3A56CD0493BC}"
  3253. }
  3254. }
  3255. }
  3256. },
  3257. {
  3258. "Key": {
  3259. "id": 855142195091502
  3260. },
  3261. "Value": {
  3262. "ComponentData": {
  3263. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3264. "$type": "NodeSaveData"
  3265. },
  3266. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3267. "$type": "GeneralNodeTitleComponentSaveData",
  3268. "PaletteOverride": "SetVariableNodeTitlePalette"
  3269. },
  3270. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3271. "$type": "GeometrySaveData",
  3272. "Position": [
  3273. 1160.0,
  3274. -340.0
  3275. ]
  3276. },
  3277. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3278. "$type": "StylingComponentSaveData",
  3279. "SubStyle": ".setVariable"
  3280. },
  3281. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3282. "$type": "PersistentIdComponentSaveData",
  3283. "PersistentId": "{D74CE332-EE23-4C94-9A44-D3466CBB02EE}"
  3284. }
  3285. }
  3286. }
  3287. },
  3288. {
  3289. "Key": {
  3290. "id": 855146490058798
  3291. },
  3292. "Value": {
  3293. "ComponentData": {
  3294. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3295. "$type": "NodeSaveData"
  3296. },
  3297. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3298. "$type": "GeneralNodeTitleComponentSaveData",
  3299. "PaletteOverride": "TimeNodeTitlePalette"
  3300. },
  3301. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3302. "$type": "GeometrySaveData",
  3303. "Position": [
  3304. -820.0,
  3305. 240.0
  3306. ]
  3307. },
  3308. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3309. "$type": "StylingComponentSaveData",
  3310. "SubStyle": ".time"
  3311. },
  3312. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3313. "$type": "PersistentIdComponentSaveData",
  3314. "PersistentId": "{10268231-9300-4DB3-84ED-8340D358E6D5}"
  3315. }
  3316. }
  3317. }
  3318. },
  3319. {
  3320. "Key": {
  3321. "id": 855150785026094
  3322. },
  3323. "Value": {
  3324. "ComponentData": {
  3325. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3326. "$type": "NodeSaveData"
  3327. },
  3328. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3329. "$type": "GeneralNodeTitleComponentSaveData",
  3330. "PaletteOverride": "MethodNodeTitlePalette"
  3331. },
  3332. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3333. "$type": "GeometrySaveData",
  3334. "Position": [
  3335. 20.0,
  3336. 480.0
  3337. ]
  3338. },
  3339. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3340. "$type": "StylingComponentSaveData",
  3341. "SubStyle": ".method"
  3342. },
  3343. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3344. "$type": "PersistentIdComponentSaveData",
  3345. "PersistentId": "{543AD94B-F445-4EC9-97FD-DA37795E5B56}"
  3346. }
  3347. }
  3348. }
  3349. },
  3350. {
  3351. "Key": {
  3352. "id": 855155079993390
  3353. },
  3354. "Value": {
  3355. "ComponentData": {
  3356. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3357. "$type": "NodeSaveData"
  3358. },
  3359. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3360. "$type": "GeneralNodeTitleComponentSaveData",
  3361. "PaletteOverride": "MethodNodeTitlePalette"
  3362. },
  3363. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3364. "$type": "GeometrySaveData",
  3365. "Position": [
  3366. -620.0,
  3367. 220.0
  3368. ]
  3369. },
  3370. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3371. "$type": "StylingComponentSaveData",
  3372. "SubStyle": ".method"
  3373. },
  3374. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3375. "$type": "PersistentIdComponentSaveData",
  3376. "PersistentId": "{2B629029-4D50-4537-97B9-A873E0B95F58}"
  3377. }
  3378. }
  3379. }
  3380. },
  3381. {
  3382. "Key": {
  3383. "id": 855159374960686
  3384. },
  3385. "Value": {
  3386. "ComponentData": {
  3387. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3388. "$type": "NodeSaveData"
  3389. },
  3390. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3391. "$type": "GeneralNodeTitleComponentSaveData",
  3392. "PaletteOverride": "MethodNodeTitlePalette"
  3393. },
  3394. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3395. "$type": "GeometrySaveData",
  3396. "Position": [
  3397. 120.0,
  3398. 220.0
  3399. ]
  3400. },
  3401. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3402. "$type": "StylingComponentSaveData",
  3403. "SubStyle": ".method"
  3404. },
  3405. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3406. "$type": "PersistentIdComponentSaveData",
  3407. "PersistentId": "{0DBAE2FA-2C35-4277-8DFD-2545F0540535}"
  3408. }
  3409. }
  3410. }
  3411. }
  3412. ],
  3413. "StatisticsHelper": {
  3414. "InstanceCounter": [
  3415. {
  3416. "Key": 1050222979521486012,
  3417. "Value": 4
  3418. },
  3419. {
  3420. "Key": 2511819297225667531,
  3421. "Value": 1
  3422. },
  3423. {
  3424. "Key": 3540360971222092899,
  3425. "Value": 1
  3426. },
  3427. {
  3428. "Key": 4199610336680704683,
  3429. "Value": 1
  3430. },
  3431. {
  3432. "Key": 4988785657296915936,
  3433. "Value": 1
  3434. },
  3435. {
  3436. "Key": 5842117337878041745,
  3437. "Value": 1
  3438. },
  3439. {
  3440. "Key": 5842117338149358491,
  3441. "Value": 1
  3442. },
  3443. {
  3444. "Key": 5842117341664101026,
  3445. "Value": 1
  3446. },
  3447. {
  3448. "Key": 5842117353265424187,
  3449. "Value": 1
  3450. },
  3451. {
  3452. "Key": 6840657073857873079,
  3453. "Value": 1
  3454. },
  3455. {
  3456. "Key": 8709041537851999837,
  3457. "Value": 1
  3458. },
  3459. {
  3460. "Key": 10149808508004458774,
  3461. "Value": 1
  3462. },
  3463. {
  3464. "Key": 13028946730610880125,
  3465. "Value": 1
  3466. },
  3467. {
  3468. "Key": 13774516386536289134,
  3469. "Value": 1
  3470. },
  3471. {
  3472. "Key": 13774516389663530721,
  3473. "Value": 1
  3474. },
  3475. {
  3476. "Key": 13774516391728458241,
  3477. "Value": 1
  3478. },
  3479. {
  3480. "Key": 13774516392537170207,
  3481. "Value": 1
  3482. },
  3483. {
  3484. "Key": 15213893176353361811,
  3485. "Value": 1
  3486. }
  3487. ]
  3488. }
  3489. },
  3490. "Component_[9435064044103188435]": {
  3491. "$type": "EditorGraphVariableManagerComponent",
  3492. "Id": 9435064044103188435,
  3493. "m_variableData": {
  3494. "m_nameVariableMap": [
  3495. {
  3496. "Key": {
  3497. "m_id": "{0C94FD8E-2858-4E71-81DA-8E361CB683C5}"
  3498. },
  3499. "Value": {
  3500. "Datum": {
  3501. "isOverloadedStorage": false,
  3502. "scriptCanvasType": {
  3503. "m_type": 0
  3504. },
  3505. "isNullPointer": false,
  3506. "$type": "bool",
  3507. "value": false,
  3508. "label": "Boolean"
  3509. },
  3510. "VariableId": {
  3511. "m_id": "{0C94FD8E-2858-4E71-81DA-8E361CB683C5}"
  3512. },
  3513. "VariableName": "Append Sweet"
  3514. }
  3515. },
  3516. {
  3517. "Key": {
  3518. "m_id": "{11630F91-3EC2-4764-AC7E-8B6382FED186}"
  3519. },
  3520. "Value": {
  3521. "Datum": {
  3522. "isOverloadedStorage": false,
  3523. "scriptCanvasType": {
  3524. "m_type": 3
  3525. },
  3526. "isNullPointer": false,
  3527. "$type": "double",
  3528. "value": 3.0,
  3529. "label": "Number"
  3530. },
  3531. "VariableId": {
  3532. "m_id": "{11630F91-3EC2-4764-AC7E-8B6382FED186}"
  3533. },
  3534. "VariableName": "Three"
  3535. }
  3536. },
  3537. {
  3538. "Key": {
  3539. "m_id": "{2C7C3FDD-45FD-42A5-B006-ED501626E9AE}"
  3540. },
  3541. "Value": {
  3542. "Datum": {
  3543. "isOverloadedStorage": false,
  3544. "scriptCanvasType": {
  3545. "m_type": 0
  3546. },
  3547. "isNullPointer": false,
  3548. "$type": "bool",
  3549. "value": false,
  3550. "label": "Boolean"
  3551. },
  3552. "VariableId": {
  3553. "m_id": "{2C7C3FDD-45FD-42A5-B006-ED501626E9AE}"
  3554. },
  3555. "VariableName": "Void Triggered"
  3556. }
  3557. },
  3558. {
  3559. "Key": {
  3560. "m_id": "{61E02098-E7F9-4442-BF7C-55F62213527C}"
  3561. },
  3562. "Value": {
  3563. "Datum": {
  3564. "isOverloadedStorage": false,
  3565. "scriptCanvasType": {
  3566. "m_type": 3
  3567. },
  3568. "isNullPointer": false,
  3569. "$type": "double",
  3570. "value": 2.0,
  3571. "label": "Number"
  3572. },
  3573. "VariableId": {
  3574. "m_id": "{61E02098-E7F9-4442-BF7C-55F62213527C}"
  3575. },
  3576. "VariableName": "Two"
  3577. }
  3578. },
  3579. {
  3580. "Key": {
  3581. "m_id": "{94E2AD9F-CA1A-4ED8-AFD7-4D3040E112B1}"
  3582. },
  3583. "Value": {
  3584. "Datum": {
  3585. "isOverloadedStorage": false,
  3586. "scriptCanvasType": {
  3587. "m_type": 3
  3588. },
  3589. "isNullPointer": false,
  3590. "$type": "double",
  3591. "value": 1.0,
  3592. "label": "Number"
  3593. },
  3594. "VariableId": {
  3595. "m_id": "{94E2AD9F-CA1A-4ED8-AFD7-4D3040E112B1}"
  3596. },
  3597. "VariableName": "One"
  3598. }
  3599. },
  3600. {
  3601. "Key": {
  3602. "m_id": "{9E67CCA8-9355-4B37-B682-2009F137ABDE}"
  3603. },
  3604. "Value": {
  3605. "Datum": {
  3606. "isOverloadedStorage": false,
  3607. "scriptCanvasType": {
  3608. "m_type": 0
  3609. },
  3610. "isNullPointer": false,
  3611. "$type": "bool",
  3612. "value": false,
  3613. "label": "Boolean"
  3614. },
  3615. "VariableId": {
  3616. "m_id": "{9E67CCA8-9355-4B37-B682-2009F137ABDE}"
  3617. },
  3618. "VariableName": "Increment Triggered"
  3619. }
  3620. },
  3621. {
  3622. "Key": {
  3623. "m_id": "{C3F80853-3BBA-4BDD-AE40-370243EA977E}"
  3624. },
  3625. "Value": {
  3626. "Datum": {
  3627. "isOverloadedStorage": false,
  3628. "scriptCanvasType": {
  3629. "m_type": 0
  3630. },
  3631. "isNullPointer": false,
  3632. "$type": "bool",
  3633. "value": false,
  3634. "label": "Boolean"
  3635. },
  3636. "VariableId": {
  3637. "m_id": "{C3F80853-3BBA-4BDD-AE40-370243EA977E}"
  3638. },
  3639. "VariableName": "Not Triggered"
  3640. }
  3641. },
  3642. {
  3643. "Key": {
  3644. "m_id": "{F11DDE5E-D0EA-4432-9156-13C72F592AEB}"
  3645. },
  3646. "Value": {
  3647. "Datum": {
  3648. "isOverloadedStorage": false,
  3649. "scriptCanvasType": {
  3650. "m_type": 3
  3651. },
  3652. "isNullPointer": false,
  3653. "$type": "double",
  3654. "value": 0.0,
  3655. "label": "Zero"
  3656. },
  3657. "VariableId": {
  3658. "m_id": "{F11DDE5E-D0EA-4432-9156-13C72F592AEB}"
  3659. },
  3660. "VariableName": "Zero"
  3661. }
  3662. }
  3663. ]
  3664. }
  3665. }
  3666. }
  3667. }
  3668. }
  3669. }