move_cursor.scriptcanvas 245 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 169369465342630
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[1637753170629331311]": {
  13. "$type": "EditorGraph",
  14. "Id": 1637753170629331311,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 169403825080998
  20. },
  21. "Name": "SC-Node(GetCanvasPosition)",
  22. "Components": {
  23. "Component_[10438046041119802129]": {
  24. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  25. "Id": 10438046041119802129,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{8CA17AAB-5A25-480A-950F-458B91E82DC4}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "EntityId",
  37. "Descriptor": {
  38. "ConnectionType": 1,
  39. "SlotType": 2
  40. },
  41. "DataType": 1
  42. },
  43. {
  44. "id": {
  45. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "In",
  53. "Descriptor": {
  54. "ConnectionType": 1,
  55. "SlotType": 1
  56. }
  57. },
  58. {
  59. "id": {
  60. "m_id": "{35E99D4F-EB80-4D6A-A080-85F0E6B5B7D0}"
  61. },
  62. "contracts": [
  63. {
  64. "$type": "SlotTypeContract"
  65. }
  66. ],
  67. "slotName": "Out",
  68. "Descriptor": {
  69. "ConnectionType": 2,
  70. "SlotType": 1
  71. }
  72. },
  73. {
  74. "id": {
  75. "m_id": "{B4BF43D7-5E8C-4B36-8351-ADA6309C26EA}"
  76. },
  77. "contracts": [
  78. {
  79. "$type": "SlotTypeContract"
  80. }
  81. ],
  82. "slotName": "Vector2",
  83. "DisplayDataType": {
  84. "m_type": 9
  85. },
  86. "Descriptor": {
  87. "ConnectionType": 2,
  88. "SlotType": 2
  89. },
  90. "DataType": 1
  91. }
  92. ],
  93. "Datums": [
  94. {
  95. "scriptCanvasType": {
  96. "m_type": 1
  97. },
  98. "isNullPointer": false,
  99. "$type": "EntityId",
  100. "value": {
  101. "id": 2901262558
  102. },
  103. "label": "EntityId"
  104. }
  105. ],
  106. "methodType": 0,
  107. "methodName": "GetCanvasPosition",
  108. "className": "UiTransformBus",
  109. "resultSlotIDs": [
  110. {}
  111. ],
  112. "inputSlots": [
  113. {
  114. "m_id": "{8CA17AAB-5A25-480A-950F-458B91E82DC4}"
  115. }
  116. ],
  117. "prettyClassName": "UiTransformBus"
  118. }
  119. }
  120. },
  121. {
  122. "Id": {
  123. "id": 169416709982886
  124. },
  125. "Name": "SC-Node(GetCanvasPosition)",
  126. "Components": {
  127. "Component_[10438046041119802129]": {
  128. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  129. "Id": 10438046041119802129,
  130. "Slots": [
  131. {
  132. "id": {
  133. "m_id": "{8CA17AAB-5A25-480A-950F-458B91E82DC4}"
  134. },
  135. "contracts": [
  136. {
  137. "$type": "SlotTypeContract"
  138. }
  139. ],
  140. "slotName": "EntityId",
  141. "Descriptor": {
  142. "ConnectionType": 1,
  143. "SlotType": 2
  144. },
  145. "DataType": 1
  146. },
  147. {
  148. "id": {
  149. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  150. },
  151. "contracts": [
  152. {
  153. "$type": "SlotTypeContract"
  154. }
  155. ],
  156. "slotName": "In",
  157. "Descriptor": {
  158. "ConnectionType": 1,
  159. "SlotType": 1
  160. }
  161. },
  162. {
  163. "id": {
  164. "m_id": "{35E99D4F-EB80-4D6A-A080-85F0E6B5B7D0}"
  165. },
  166. "contracts": [
  167. {
  168. "$type": "SlotTypeContract"
  169. }
  170. ],
  171. "slotName": "Out",
  172. "Descriptor": {
  173. "ConnectionType": 2,
  174. "SlotType": 1
  175. }
  176. },
  177. {
  178. "id": {
  179. "m_id": "{B4BF43D7-5E8C-4B36-8351-ADA6309C26EA}"
  180. },
  181. "contracts": [
  182. {
  183. "$type": "SlotTypeContract"
  184. }
  185. ],
  186. "slotName": "Vector2",
  187. "DisplayDataType": {
  188. "m_type": 9
  189. },
  190. "Descriptor": {
  191. "ConnectionType": 2,
  192. "SlotType": 2
  193. },
  194. "DataType": 1
  195. }
  196. ],
  197. "Datums": [
  198. {
  199. "scriptCanvasType": {
  200. "m_type": 1
  201. },
  202. "isNullPointer": false,
  203. "$type": "EntityId",
  204. "value": {
  205. "id": 2901262558
  206. },
  207. "label": "EntityId"
  208. }
  209. ],
  210. "methodType": 0,
  211. "methodName": "GetCanvasPosition",
  212. "className": "UiTransformBus",
  213. "resultSlotIDs": [
  214. {}
  215. ],
  216. "inputSlots": [
  217. {
  218. "m_id": "{8CA17AAB-5A25-480A-950F-458B91E82DC4}"
  219. }
  220. ],
  221. "prettyClassName": "UiTransformBus"
  222. }
  223. }
  224. },
  225. {
  226. "Id": {
  227. "id": 169429594884774
  228. },
  229. "Name": "SC-Node(GetCanvasPosition)",
  230. "Components": {
  231. "Component_[10438046041119802129]": {
  232. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  233. "Id": 10438046041119802129,
  234. "Slots": [
  235. {
  236. "id": {
  237. "m_id": "{8CA17AAB-5A25-480A-950F-458B91E82DC4}"
  238. },
  239. "contracts": [
  240. {
  241. "$type": "SlotTypeContract"
  242. }
  243. ],
  244. "slotName": "EntityId",
  245. "Descriptor": {
  246. "ConnectionType": 1,
  247. "SlotType": 2
  248. },
  249. "DataType": 1
  250. },
  251. {
  252. "id": {
  253. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  254. },
  255. "contracts": [
  256. {
  257. "$type": "SlotTypeContract"
  258. }
  259. ],
  260. "slotName": "In",
  261. "Descriptor": {
  262. "ConnectionType": 1,
  263. "SlotType": 1
  264. }
  265. },
  266. {
  267. "id": {
  268. "m_id": "{35E99D4F-EB80-4D6A-A080-85F0E6B5B7D0}"
  269. },
  270. "contracts": [
  271. {
  272. "$type": "SlotTypeContract"
  273. }
  274. ],
  275. "slotName": "Out",
  276. "Descriptor": {
  277. "ConnectionType": 2,
  278. "SlotType": 1
  279. }
  280. },
  281. {
  282. "id": {
  283. "m_id": "{B4BF43D7-5E8C-4B36-8351-ADA6309C26EA}"
  284. },
  285. "contracts": [
  286. {
  287. "$type": "SlotTypeContract"
  288. }
  289. ],
  290. "slotName": "Vector2",
  291. "DisplayDataType": {
  292. "m_type": 9
  293. },
  294. "Descriptor": {
  295. "ConnectionType": 2,
  296. "SlotType": 2
  297. },
  298. "DataType": 1
  299. }
  300. ],
  301. "Datums": [
  302. {
  303. "scriptCanvasType": {
  304. "m_type": 1
  305. },
  306. "isNullPointer": false,
  307. "$type": "EntityId",
  308. "value": {
  309. "id": 2901262558
  310. },
  311. "label": "EntityId"
  312. }
  313. ],
  314. "methodType": 0,
  315. "methodName": "GetCanvasPosition",
  316. "className": "UiTransformBus",
  317. "resultSlotIDs": [
  318. {}
  319. ],
  320. "inputSlots": [
  321. {
  322. "m_id": "{8CA17AAB-5A25-480A-950F-458B91E82DC4}"
  323. }
  324. ],
  325. "prettyClassName": "UiTransformBus"
  326. }
  327. }
  328. },
  329. {
  330. "Id": {
  331. "id": 169378055277222
  332. },
  333. "Name": "SC-Node((NodeFunctionGenericMultiReturn<t_Func, t_Traits, function>)<{Vector2(Vector2 double )}* SetXTraits >)",
  334. "Components": {
  335. "Component_[11053146446124277598]": {
  336. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  337. "Id": 11053146446124277598,
  338. "Slots": [
  339. {
  340. "id": {
  341. "m_id": "{B4639347-7DC2-41B9-9E76-C4A396FD3CCF}"
  342. },
  343. "contracts": [
  344. {
  345. "$type": "SlotTypeContract"
  346. }
  347. ],
  348. "slotName": "Source",
  349. "DisplayDataType": {
  350. "m_type": 9
  351. },
  352. "Descriptor": {
  353. "ConnectionType": 1,
  354. "SlotType": 2
  355. },
  356. "DataType": 1
  357. },
  358. {
  359. "id": {
  360. "m_id": "{A75B6D9C-267A-443F-8A58-0F0C82DFDC17}"
  361. },
  362. "contracts": [
  363. {
  364. "$type": "SlotTypeContract"
  365. }
  366. ],
  367. "slotName": "X",
  368. "DisplayDataType": {
  369. "m_type": 3
  370. },
  371. "Descriptor": {
  372. "ConnectionType": 1,
  373. "SlotType": 2
  374. },
  375. "DataType": 1
  376. },
  377. {
  378. "id": {
  379. "m_id": "{27DBE48E-F193-49C1-8909-FCC181F17C48}"
  380. },
  381. "contracts": [
  382. {
  383. "$type": "SlotTypeContract"
  384. }
  385. ],
  386. "slotName": "In",
  387. "Descriptor": {
  388. "ConnectionType": 1,
  389. "SlotType": 1
  390. }
  391. },
  392. {
  393. "id": {
  394. "m_id": "{237E1C5F-247F-489F-90ED-A781E349F828}"
  395. },
  396. "contracts": [
  397. {
  398. "$type": "SlotTypeContract"
  399. }
  400. ],
  401. "slotName": "Out",
  402. "Descriptor": {
  403. "ConnectionType": 2,
  404. "SlotType": 1
  405. }
  406. },
  407. {
  408. "id": {
  409. "m_id": "{F9707D4F-16DC-4809-B1AE-6CEF3E18EA48}"
  410. },
  411. "contracts": [
  412. {
  413. "$type": "SlotTypeContract"
  414. }
  415. ],
  416. "slotName": "Vector2",
  417. "DisplayDataType": {
  418. "m_type": 9
  419. },
  420. "Descriptor": {
  421. "ConnectionType": 2,
  422. "SlotType": 2
  423. },
  424. "DataType": 1
  425. }
  426. ],
  427. "Datums": [
  428. {
  429. "isOverloadedStorage": false,
  430. "scriptCanvasType": {
  431. "m_type": 9
  432. },
  433. "isNullPointer": false,
  434. "$type": "Vector2",
  435. "value": [
  436. 0.0,
  437. 0.0
  438. ],
  439. "label": "Source"
  440. },
  441. {
  442. "isOverloadedStorage": false,
  443. "scriptCanvasType": {
  444. "m_type": 3
  445. },
  446. "isNullPointer": false,
  447. "$type": "double",
  448. "value": 0.0,
  449. "label": "X"
  450. }
  451. ],
  452. "methodType": 1,
  453. "methodName": "ScriptCanvas_Vector2Functions_SetX",
  454. "inputSlots": [
  455. {
  456. "m_id": "{B4639347-7DC2-41B9-9E76-C4A396FD3CCF}"
  457. },
  458. {
  459. "m_id": "{A75B6D9C-267A-443F-8A58-0F0C82DFDC17}"
  460. }
  461. ],
  462. "prettyClassName": "ScriptCanvas_Vector2Functions_SetX"
  463. }
  464. }
  465. },
  466. {
  467. "Id": {
  468. "id": 169395235146406
  469. },
  470. "Name": "SC-Node((NodeFunctionGenericMultiReturn<t_Func, t_Traits, function>)<{double(Vector2 double )}* GetElementTraits >)",
  471. "Components": {
  472. "Component_[11980390440834033545]": {
  473. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  474. "Id": 11980390440834033545,
  475. "Slots": [
  476. {
  477. "id": {
  478. "m_id": "{3ABE33A1-A8B1-4B8B-B96C-12F6E821F47C}"
  479. },
  480. "contracts": [
  481. {
  482. "$type": "SlotTypeContract"
  483. }
  484. ],
  485. "slotName": "Source",
  486. "DisplayDataType": {
  487. "m_type": 9
  488. },
  489. "Descriptor": {
  490. "ConnectionType": 1,
  491. "SlotType": 2
  492. },
  493. "DataType": 1
  494. },
  495. {
  496. "id": {
  497. "m_id": "{27C1366E-2B3E-4281-B306-A2F1428A2FC8}"
  498. },
  499. "contracts": [
  500. {
  501. "$type": "SlotTypeContract"
  502. }
  503. ],
  504. "slotName": "Index",
  505. "DisplayDataType": {
  506. "m_type": 3
  507. },
  508. "Descriptor": {
  509. "ConnectionType": 1,
  510. "SlotType": 2
  511. },
  512. "DataType": 1
  513. },
  514. {
  515. "id": {
  516. "m_id": "{580CEF6F-7DE4-43A2-B215-995F5D33F33E}"
  517. },
  518. "contracts": [
  519. {
  520. "$type": "SlotTypeContract"
  521. }
  522. ],
  523. "slotName": "In",
  524. "Descriptor": {
  525. "ConnectionType": 1,
  526. "SlotType": 1
  527. }
  528. },
  529. {
  530. "id": {
  531. "m_id": "{C84498D9-B8DB-4588-B82D-B5BEACD75FFB}"
  532. },
  533. "contracts": [
  534. {
  535. "$type": "SlotTypeContract"
  536. }
  537. ],
  538. "slotName": "Out",
  539. "Descriptor": {
  540. "ConnectionType": 2,
  541. "SlotType": 1
  542. }
  543. },
  544. {
  545. "id": {
  546. "m_id": "{AFDA7E63-A4B6-4185-A731-88BE4C440B3E}"
  547. },
  548. "contracts": [
  549. {
  550. "$type": "SlotTypeContract"
  551. }
  552. ],
  553. "slotName": "Number",
  554. "DisplayDataType": {
  555. "m_type": 3
  556. },
  557. "Descriptor": {
  558. "ConnectionType": 2,
  559. "SlotType": 2
  560. },
  561. "DataType": 1
  562. }
  563. ],
  564. "Datums": [
  565. {
  566. "isOverloadedStorage": false,
  567. "scriptCanvasType": {
  568. "m_type": 9
  569. },
  570. "isNullPointer": false,
  571. "$type": "Vector2",
  572. "value": [
  573. 0.0,
  574. 0.0
  575. ],
  576. "label": "Source"
  577. },
  578. {
  579. "isOverloadedStorage": false,
  580. "scriptCanvasType": {
  581. "m_type": 3
  582. },
  583. "isNullPointer": false,
  584. "$type": "double",
  585. "value": 0.0,
  586. "label": "Index"
  587. }
  588. ],
  589. "methodType": 1,
  590. "methodName": "ScriptCanvas_Vector2Functions_GetElement",
  591. "inputSlots": [
  592. {
  593. "m_id": "{3ABE33A1-A8B1-4B8B-B96C-12F6E821F47C}"
  594. },
  595. {
  596. "m_id": "{27C1366E-2B3E-4281-B306-A2F1428A2FC8}"
  597. }
  598. ],
  599. "prettyClassName": "ScriptCanvas_Vector2Functions_GetElement"
  600. }
  601. }
  602. },
  603. {
  604. "Id": {
  605. "id": 169433889852070
  606. },
  607. "Name": "SC-Node(InputHandlerNodeableNode)",
  608. "Components": {
  609. "Component_[12694365356892072239]": {
  610. "$type": "InputHandlerNodeableNode",
  611. "Id": 12694365356892072239,
  612. "Slots": [
  613. {
  614. "id": {
  615. "m_id": "{3F5631FB-CFBF-4E30-9433-6B47A59F5CFD}"
  616. },
  617. "contracts": [
  618. {
  619. "$type": "SlotTypeContract"
  620. }
  621. ],
  622. "slotName": "Connect Event",
  623. "toolTip": "Connect to input event name as defined in an input binding asset.",
  624. "DisplayGroup": {
  625. "Value": 2173756817
  626. },
  627. "Descriptor": {
  628. "ConnectionType": 1,
  629. "SlotType": 1
  630. }
  631. },
  632. {
  633. "id": {
  634. "m_id": "{78E3C29E-06A4-4002-9551-9F233AD1EC7F}"
  635. },
  636. "contracts": [
  637. {
  638. "$type": "SlotTypeContract"
  639. }
  640. ],
  641. "slotName": "Event Name",
  642. "toolTip": "Event name as defined in an input binding asset. Example 'Fireball'.",
  643. "DisplayGroup": {
  644. "Value": 2173756817
  645. },
  646. "Descriptor": {
  647. "ConnectionType": 1,
  648. "SlotType": 2
  649. },
  650. "DataType": 1
  651. },
  652. {
  653. "id": {
  654. "m_id": "{D6A675B8-53BF-41FC-8414-E416614D0ACE}"
  655. },
  656. "contracts": [
  657. {
  658. "$type": "SlotTypeContract"
  659. }
  660. ],
  661. "slotName": "On Connect Event",
  662. "toolTip": "Connect to input event name as defined in an input binding asset.",
  663. "DisplayGroup": {
  664. "Value": 2173756817
  665. },
  666. "Descriptor": {
  667. "ConnectionType": 2,
  668. "SlotType": 1
  669. }
  670. },
  671. {
  672. "id": {
  673. "m_id": "{93010610-58C7-411F-9A0D-A8C9C9A4ACB7}"
  674. },
  675. "contracts": [
  676. {
  677. "$type": "SlotTypeContract"
  678. }
  679. ],
  680. "slotName": "Pressed",
  681. "toolTip": "Signaled when the input event begins.",
  682. "DisplayGroup": {
  683. "Value": 458537082
  684. },
  685. "Descriptor": {
  686. "ConnectionType": 2,
  687. "SlotType": 1
  688. },
  689. "IsLatent": true
  690. },
  691. {
  692. "id": {
  693. "m_id": "{19EEC514-9261-4B55-BE96-969E933EF0DC}"
  694. },
  695. "contracts": [
  696. {
  697. "$type": "SlotTypeContract"
  698. }
  699. ],
  700. "slotName": "value",
  701. "DisplayDataType": {
  702. "m_type": 3
  703. },
  704. "DisplayGroup": {
  705. "Value": 458537082
  706. },
  707. "Descriptor": {
  708. "ConnectionType": 2,
  709. "SlotType": 2
  710. },
  711. "DataType": 1
  712. },
  713. {
  714. "id": {
  715. "m_id": "{9B089E7D-3864-4218-BAF9-007F456BE575}"
  716. },
  717. "contracts": [
  718. {
  719. "$type": "SlotTypeContract"
  720. }
  721. ],
  722. "slotName": "Held",
  723. "toolTip": "Signaled while the input event is active.",
  724. "DisplayGroup": {
  725. "Value": 308119761
  726. },
  727. "Descriptor": {
  728. "ConnectionType": 2,
  729. "SlotType": 1
  730. },
  731. "IsLatent": true
  732. },
  733. {
  734. "id": {
  735. "m_id": "{F1A32365-160C-4226-B930-88DBC8564BD8}"
  736. },
  737. "contracts": [
  738. {
  739. "$type": "SlotTypeContract"
  740. }
  741. ],
  742. "slotName": "Released",
  743. "toolTip": "Signaled when the input event ends.",
  744. "DisplayGroup": {
  745. "Value": 4215628054
  746. },
  747. "Descriptor": {
  748. "ConnectionType": 2,
  749. "SlotType": 1
  750. },
  751. "IsLatent": true
  752. }
  753. ],
  754. "Datums": [
  755. {
  756. "scriptCanvasType": {
  757. "m_type": 5
  758. },
  759. "isNullPointer": false,
  760. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  761. "value": "Mouse Delta Y",
  762. "label": "Event Name"
  763. }
  764. ],
  765. "slotExecutionMap": {
  766. "ins": [
  767. {
  768. "_slotId": {
  769. "m_id": "{3F5631FB-CFBF-4E30-9433-6B47A59F5CFD}"
  770. },
  771. "_inputs": [
  772. {
  773. "_slotId": {
  774. "m_id": "{78E3C29E-06A4-4002-9551-9F233AD1EC7F}"
  775. }
  776. }
  777. ],
  778. "_outs": [
  779. {
  780. "_slotId": {
  781. "m_id": "{D6A675B8-53BF-41FC-8414-E416614D0ACE}"
  782. },
  783. "_name": "On Connect Event",
  784. "_interfaceSourceId": "{36C7C81A-F79D-0000-FD99-1A38FD7F0000}"
  785. }
  786. ],
  787. "_interfaceSourceId": "{90C26553-FD01-0000-AC23-7646FC7F0000}"
  788. }
  789. ],
  790. "latents": [
  791. {
  792. "_slotId": {
  793. "m_id": "{93010610-58C7-411F-9A0D-A8C9C9A4ACB7}"
  794. },
  795. "_name": "Pressed",
  796. "_outputs": [
  797. {
  798. "_slotId": {
  799. "m_id": "{19EEC514-9261-4B55-BE96-969E933EF0DC}"
  800. }
  801. }
  802. ],
  803. "_interfaceSourceId": "{90C26553-FD01-0000-AC23-7646FC7F0000}"
  804. },
  805. {
  806. "_slotId": {
  807. "m_id": "{9B089E7D-3864-4218-BAF9-007F456BE575}"
  808. },
  809. "_name": "Held",
  810. "_outputs": [
  811. {
  812. "_slotId": {
  813. "m_id": "{19EEC514-9261-4B55-BE96-969E933EF0DC}"
  814. }
  815. }
  816. ],
  817. "_interfaceSourceId": "{90C26553-FD01-0000-AC23-7646FC7F0000}"
  818. },
  819. {
  820. "_slotId": {
  821. "m_id": "{F1A32365-160C-4226-B930-88DBC8564BD8}"
  822. },
  823. "_name": "Released",
  824. "_outputs": [
  825. {
  826. "_slotId": {
  827. "m_id": "{19EEC514-9261-4B55-BE96-969E933EF0DC}"
  828. }
  829. }
  830. ],
  831. "_interfaceSourceId": "{90C26553-FD01-0000-AC23-7646FC7F0000}"
  832. }
  833. ]
  834. }
  835. }
  836. }
  837. },
  838. {
  839. "Id": {
  840. "id": 169386645211814
  841. },
  842. "Name": "SC-Node((NodeFunctionGenericMultiReturn<t_Func, t_Traits, function>)<{Vector2(Vector2 double )}* SetYTraits >)",
  843. "Components": {
  844. "Component_[13432259014450217042]": {
  845. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  846. "Id": 13432259014450217042,
  847. "Slots": [
  848. {
  849. "id": {
  850. "m_id": "{5A68DB6F-A438-4D1F-B03C-21AE1062C321}"
  851. },
  852. "contracts": [
  853. {
  854. "$type": "SlotTypeContract"
  855. }
  856. ],
  857. "slotName": "Source",
  858. "DisplayDataType": {
  859. "m_type": 9
  860. },
  861. "Descriptor": {
  862. "ConnectionType": 1,
  863. "SlotType": 2
  864. },
  865. "DataType": 1
  866. },
  867. {
  868. "id": {
  869. "m_id": "{4B2D8F3B-EA0B-4FB3-B525-AD7C98DDFE8A}"
  870. },
  871. "contracts": [
  872. {
  873. "$type": "SlotTypeContract"
  874. }
  875. ],
  876. "slotName": "Y",
  877. "DisplayDataType": {
  878. "m_type": 3
  879. },
  880. "Descriptor": {
  881. "ConnectionType": 1,
  882. "SlotType": 2
  883. },
  884. "DataType": 1
  885. },
  886. {
  887. "id": {
  888. "m_id": "{2FF98CF2-8ADB-4668-AF37-EA36A049D566}"
  889. },
  890. "contracts": [
  891. {
  892. "$type": "SlotTypeContract"
  893. }
  894. ],
  895. "slotName": "In",
  896. "Descriptor": {
  897. "ConnectionType": 1,
  898. "SlotType": 1
  899. }
  900. },
  901. {
  902. "id": {
  903. "m_id": "{66717A7E-01E9-4927-B605-3A3378C9E38F}"
  904. },
  905. "contracts": [
  906. {
  907. "$type": "SlotTypeContract"
  908. }
  909. ],
  910. "slotName": "Out",
  911. "Descriptor": {
  912. "ConnectionType": 2,
  913. "SlotType": 1
  914. }
  915. },
  916. {
  917. "id": {
  918. "m_id": "{D3521A76-8015-4EE3-87B5-6EDE3603FBE2}"
  919. },
  920. "contracts": [
  921. {
  922. "$type": "SlotTypeContract"
  923. }
  924. ],
  925. "slotName": "Vector2",
  926. "DisplayDataType": {
  927. "m_type": 9
  928. },
  929. "Descriptor": {
  930. "ConnectionType": 2,
  931. "SlotType": 2
  932. },
  933. "DataType": 1
  934. }
  935. ],
  936. "Datums": [
  937. {
  938. "isOverloadedStorage": false,
  939. "scriptCanvasType": {
  940. "m_type": 9
  941. },
  942. "isNullPointer": false,
  943. "$type": "Vector2",
  944. "value": [
  945. 0.0,
  946. 0.0
  947. ],
  948. "label": "Source"
  949. },
  950. {
  951. "isOverloadedStorage": false,
  952. "scriptCanvasType": {
  953. "m_type": 3
  954. },
  955. "isNullPointer": false,
  956. "$type": "double",
  957. "value": 0.0,
  958. "label": "Y"
  959. }
  960. ],
  961. "methodType": 1,
  962. "methodName": "ScriptCanvas_Vector2Functions_SetY",
  963. "inputSlots": [
  964. {
  965. "m_id": "{5A68DB6F-A438-4D1F-B03C-21AE1062C321}"
  966. },
  967. {
  968. "m_id": "{4B2D8F3B-EA0B-4FB3-B525-AD7C98DDFE8A}"
  969. }
  970. ],
  971. "prettyClassName": "ScriptCanvas_Vector2Functions_SetY"
  972. }
  973. }
  974. },
  975. {
  976. "Id": {
  977. "id": 169421004950182
  978. },
  979. "Name": "EBusEventHandler",
  980. "Components": {
  981. "Component_[14257591729330808015]": {
  982. "$type": "EBusEventHandler",
  983. "Id": 14257591729330808015,
  984. "Slots": [
  985. {
  986. "id": {
  987. "m_id": "{39525836-6C3C-43B4-A6BC-13FB78438F70}"
  988. },
  989. "contracts": [
  990. {
  991. "$type": "SlotTypeContract"
  992. }
  993. ],
  994. "slotName": "Connect",
  995. "toolTip": "Connect this event handler to the specified entity.",
  996. "Descriptor": {
  997. "ConnectionType": 1,
  998. "SlotType": 1
  999. }
  1000. },
  1001. {
  1002. "id": {
  1003. "m_id": "{94DA22AC-2CAE-412E-997E-F25DB07A287E}"
  1004. },
  1005. "contracts": [
  1006. {
  1007. "$type": "SlotTypeContract"
  1008. }
  1009. ],
  1010. "slotName": "Disconnect",
  1011. "toolTip": "Disconnect this event handler.",
  1012. "Descriptor": {
  1013. "ConnectionType": 1,
  1014. "SlotType": 1
  1015. }
  1016. },
  1017. {
  1018. "id": {
  1019. "m_id": "{82E494A6-C2D9-488A-9B1C-CAFC9F963482}"
  1020. },
  1021. "contracts": [
  1022. {
  1023. "$type": "SlotTypeContract"
  1024. }
  1025. ],
  1026. "slotName": "OnConnected",
  1027. "toolTip": "Signaled when a connection has taken place.",
  1028. "Descriptor": {
  1029. "ConnectionType": 2,
  1030. "SlotType": 1
  1031. }
  1032. },
  1033. {
  1034. "id": {
  1035. "m_id": "{98CF3D19-D061-44DA-9083-E9D862DCF7E1}"
  1036. },
  1037. "contracts": [
  1038. {
  1039. "$type": "SlotTypeContract"
  1040. }
  1041. ],
  1042. "slotName": "OnDisconnected",
  1043. "toolTip": "Signaled when this event handler is disconnected.",
  1044. "Descriptor": {
  1045. "ConnectionType": 2,
  1046. "SlotType": 1
  1047. }
  1048. },
  1049. {
  1050. "id": {
  1051. "m_id": "{D527552F-E3D1-4CF6-A32F-951875B90E77}"
  1052. },
  1053. "contracts": [
  1054. {
  1055. "$type": "SlotTypeContract"
  1056. }
  1057. ],
  1058. "slotName": "OnFailure",
  1059. "toolTip": "Signaled when it is not possible to connect this handler.",
  1060. "Descriptor": {
  1061. "ConnectionType": 2,
  1062. "SlotType": 1
  1063. }
  1064. },
  1065. {
  1066. "id": {
  1067. "m_id": "{8C2D5284-0361-4B31-AA0C-D157845D3A62}"
  1068. },
  1069. "contracts": [
  1070. {
  1071. "$type": "SlotTypeContract"
  1072. }
  1073. ],
  1074. "slotName": "Source",
  1075. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  1076. "Descriptor": {
  1077. "ConnectionType": 1,
  1078. "SlotType": 2
  1079. },
  1080. "DataType": 1
  1081. },
  1082. {
  1083. "id": {
  1084. "m_id": "{E980FC72-3BA8-4DB9-8B9A-803D110D0359}"
  1085. },
  1086. "contracts": [
  1087. {
  1088. "$type": "SlotTypeContract"
  1089. }
  1090. ],
  1091. "slotName": "EntityId",
  1092. "DisplayDataType": {
  1093. "m_type": 1
  1094. },
  1095. "Descriptor": {
  1096. "ConnectionType": 2,
  1097. "SlotType": 2
  1098. },
  1099. "DataType": 1
  1100. },
  1101. {
  1102. "id": {
  1103. "m_id": "{993C5C2F-1F8E-4A8D-8DBA-B4AA7EC46040}"
  1104. },
  1105. "contracts": [
  1106. {
  1107. "$type": "SlotTypeContract"
  1108. }
  1109. ],
  1110. "slotName": "ExecutionSlot:OnEntityActivated",
  1111. "Descriptor": {
  1112. "ConnectionType": 2,
  1113. "SlotType": 1
  1114. },
  1115. "IsLatent": true
  1116. },
  1117. {
  1118. "id": {
  1119. "m_id": "{6BA93EEA-3A3E-4629-B548-10FDB00F2FA8}"
  1120. },
  1121. "contracts": [
  1122. {
  1123. "$type": "SlotTypeContract"
  1124. }
  1125. ],
  1126. "slotName": "EntityId",
  1127. "DisplayDataType": {
  1128. "m_type": 1
  1129. },
  1130. "Descriptor": {
  1131. "ConnectionType": 2,
  1132. "SlotType": 2
  1133. },
  1134. "DataType": 1
  1135. },
  1136. {
  1137. "id": {
  1138. "m_id": "{368DA9D0-5659-4844-BC9C-305FE04A7572}"
  1139. },
  1140. "contracts": [
  1141. {
  1142. "$type": "SlotTypeContract"
  1143. }
  1144. ],
  1145. "slotName": "ExecutionSlot:OnEntityDeactivated",
  1146. "Descriptor": {
  1147. "ConnectionType": 2,
  1148. "SlotType": 1
  1149. },
  1150. "IsLatent": true
  1151. }
  1152. ],
  1153. "Datums": [
  1154. {
  1155. "scriptCanvasType": {
  1156. "m_type": 1
  1157. },
  1158. "isNullPointer": false,
  1159. "$type": "EntityId",
  1160. "value": {
  1161. "id": 2901262558
  1162. },
  1163. "label": "Source"
  1164. }
  1165. ],
  1166. "m_eventMap": [
  1167. {
  1168. "Key": {
  1169. "Value": 245425936
  1170. },
  1171. "Value": {
  1172. "m_eventName": "OnEntityActivated",
  1173. "m_eventId": {
  1174. "Value": 245425936
  1175. },
  1176. "m_eventSlotId": {
  1177. "m_id": "{993C5C2F-1F8E-4A8D-8DBA-B4AA7EC46040}"
  1178. },
  1179. "m_parameterSlotIds": [
  1180. {
  1181. "m_id": "{E980FC72-3BA8-4DB9-8B9A-803D110D0359}"
  1182. }
  1183. ],
  1184. "m_numExpectedArguments": 1
  1185. }
  1186. },
  1187. {
  1188. "Key": {
  1189. "Value": 4273369222
  1190. },
  1191. "Value": {
  1192. "m_eventName": "OnEntityDeactivated",
  1193. "m_eventId": {
  1194. "Value": 4273369222
  1195. },
  1196. "m_eventSlotId": {
  1197. "m_id": "{368DA9D0-5659-4844-BC9C-305FE04A7572}"
  1198. },
  1199. "m_parameterSlotIds": [
  1200. {
  1201. "m_id": "{6BA93EEA-3A3E-4629-B548-10FDB00F2FA8}"
  1202. }
  1203. ],
  1204. "m_numExpectedArguments": 1
  1205. }
  1206. }
  1207. ],
  1208. "m_ebusName": "EntityBus",
  1209. "m_busId": {
  1210. "Value": 3358774020
  1211. }
  1212. }
  1213. }
  1214. },
  1215. {
  1216. "Id": {
  1217. "id": 169382350244518
  1218. },
  1219. "Name": "SC-Node(OperatorAdd)",
  1220. "Components": {
  1221. "Component_[15223021120121369069]": {
  1222. "$type": "OperatorAdd",
  1223. "Id": 15223021120121369069,
  1224. "Slots": [
  1225. {
  1226. "id": {
  1227. "m_id": "{68A4222D-5C0F-454E-B945-B18B9952353F}"
  1228. },
  1229. "contracts": [
  1230. {
  1231. "$type": "SlotTypeContract"
  1232. }
  1233. ],
  1234. "slotName": "In",
  1235. "Descriptor": {
  1236. "ConnectionType": 1,
  1237. "SlotType": 1
  1238. }
  1239. },
  1240. {
  1241. "id": {
  1242. "m_id": "{8635CC65-2D11-4C26-ABB4-26ABEFC51B4F}"
  1243. },
  1244. "contracts": [
  1245. {
  1246. "$type": "SlotTypeContract"
  1247. }
  1248. ],
  1249. "slotName": "Out",
  1250. "Descriptor": {
  1251. "ConnectionType": 2,
  1252. "SlotType": 1
  1253. }
  1254. },
  1255. {
  1256. "id": {
  1257. "m_id": "{59115C65-1BC5-45EC-AEF0-B71D318C5D17}"
  1258. },
  1259. "DynamicTypeOverride": 3,
  1260. "contracts": [
  1261. {
  1262. "$type": "SlotTypeContract"
  1263. },
  1264. {
  1265. "$type": "MathOperatorContract",
  1266. "NativeTypes": [
  1267. {
  1268. "m_type": 3
  1269. },
  1270. {
  1271. "m_type": 6
  1272. },
  1273. {
  1274. "m_type": 8
  1275. },
  1276. {
  1277. "m_type": 9
  1278. },
  1279. {
  1280. "m_type": 10
  1281. },
  1282. {
  1283. "m_type": 11
  1284. },
  1285. {
  1286. "m_type": 12
  1287. },
  1288. {
  1289. "m_type": 14
  1290. },
  1291. {
  1292. "m_type": 15
  1293. }
  1294. ]
  1295. }
  1296. ],
  1297. "slotName": "Number 0",
  1298. "toolTip": "An operand to use in performing the specified Operation",
  1299. "DisplayDataType": {
  1300. "m_type": 3
  1301. },
  1302. "DisplayGroup": {
  1303. "Value": 1114760223
  1304. },
  1305. "Descriptor": {
  1306. "ConnectionType": 1,
  1307. "SlotType": 2
  1308. },
  1309. "DynamicGroup": {
  1310. "Value": 1114760223
  1311. },
  1312. "DataType": 1
  1313. },
  1314. {
  1315. "id": {
  1316. "m_id": "{239D01DA-E7E4-4867-9FB4-8F45D5170D59}"
  1317. },
  1318. "DynamicTypeOverride": 3,
  1319. "contracts": [
  1320. {
  1321. "$type": "SlotTypeContract"
  1322. },
  1323. {
  1324. "$type": "MathOperatorContract",
  1325. "NativeTypes": [
  1326. {
  1327. "m_type": 3
  1328. },
  1329. {
  1330. "m_type": 6
  1331. },
  1332. {
  1333. "m_type": 8
  1334. },
  1335. {
  1336. "m_type": 9
  1337. },
  1338. {
  1339. "m_type": 10
  1340. },
  1341. {
  1342. "m_type": 11
  1343. },
  1344. {
  1345. "m_type": 12
  1346. },
  1347. {
  1348. "m_type": 14
  1349. },
  1350. {
  1351. "m_type": 15
  1352. }
  1353. ]
  1354. }
  1355. ],
  1356. "slotName": "Number 1",
  1357. "toolTip": "An operand to use in performing the specified Operation",
  1358. "DisplayDataType": {
  1359. "m_type": 3
  1360. },
  1361. "DisplayGroup": {
  1362. "Value": 1114760223
  1363. },
  1364. "Descriptor": {
  1365. "ConnectionType": 1,
  1366. "SlotType": 2
  1367. },
  1368. "DynamicGroup": {
  1369. "Value": 1114760223
  1370. },
  1371. "DataType": 1
  1372. },
  1373. {
  1374. "id": {
  1375. "m_id": "{C0451A33-6F40-42A2-84BD-52815868A0E0}"
  1376. },
  1377. "DynamicTypeOverride": 3,
  1378. "contracts": [
  1379. {
  1380. "$type": "SlotTypeContract"
  1381. },
  1382. {
  1383. "$type": "MathOperatorContract",
  1384. "NativeTypes": [
  1385. {
  1386. "m_type": 3
  1387. },
  1388. {
  1389. "m_type": 6
  1390. },
  1391. {
  1392. "m_type": 8
  1393. },
  1394. {
  1395. "m_type": 9
  1396. },
  1397. {
  1398. "m_type": 10
  1399. },
  1400. {
  1401. "m_type": 11
  1402. },
  1403. {
  1404. "m_type": 12
  1405. },
  1406. {
  1407. "m_type": 14
  1408. },
  1409. {
  1410. "m_type": 15
  1411. }
  1412. ]
  1413. }
  1414. ],
  1415. "slotName": "Result",
  1416. "toolTip": "The result of the specified operation",
  1417. "DisplayDataType": {
  1418. "m_type": 3
  1419. },
  1420. "DisplayGroup": {
  1421. "Value": 1114760223
  1422. },
  1423. "Descriptor": {
  1424. "ConnectionType": 2,
  1425. "SlotType": 2
  1426. },
  1427. "DynamicGroup": {
  1428. "Value": 1114760223
  1429. },
  1430. "DataType": 1
  1431. }
  1432. ],
  1433. "Datums": [
  1434. {
  1435. "scriptCanvasType": {
  1436. "m_type": 3
  1437. },
  1438. "isNullPointer": false,
  1439. "$type": "double",
  1440. "value": 0.0,
  1441. "label": "Number 0"
  1442. },
  1443. {
  1444. "scriptCanvasType": {
  1445. "m_type": 3
  1446. },
  1447. "isNullPointer": false,
  1448. "$type": "double",
  1449. "value": 0.0,
  1450. "label": "Number 1"
  1451. }
  1452. ]
  1453. }
  1454. }
  1455. },
  1456. {
  1457. "Id": {
  1458. "id": 169408120048294
  1459. },
  1460. "Name": "SC-Node(OperatorAdd)",
  1461. "Components": {
  1462. "Component_[15223021120121369069]": {
  1463. "$type": "OperatorAdd",
  1464. "Id": 15223021120121369069,
  1465. "Slots": [
  1466. {
  1467. "id": {
  1468. "m_id": "{68A4222D-5C0F-454E-B945-B18B9952353F}"
  1469. },
  1470. "contracts": [
  1471. {
  1472. "$type": "SlotTypeContract"
  1473. }
  1474. ],
  1475. "slotName": "In",
  1476. "Descriptor": {
  1477. "ConnectionType": 1,
  1478. "SlotType": 1
  1479. }
  1480. },
  1481. {
  1482. "id": {
  1483. "m_id": "{8635CC65-2D11-4C26-ABB4-26ABEFC51B4F}"
  1484. },
  1485. "contracts": [
  1486. {
  1487. "$type": "SlotTypeContract"
  1488. }
  1489. ],
  1490. "slotName": "Out",
  1491. "Descriptor": {
  1492. "ConnectionType": 2,
  1493. "SlotType": 1
  1494. }
  1495. },
  1496. {
  1497. "id": {
  1498. "m_id": "{59115C65-1BC5-45EC-AEF0-B71D318C5D17}"
  1499. },
  1500. "DynamicTypeOverride": 3,
  1501. "contracts": [
  1502. {
  1503. "$type": "SlotTypeContract"
  1504. },
  1505. {
  1506. "$type": "MathOperatorContract",
  1507. "NativeTypes": [
  1508. {
  1509. "m_type": 3
  1510. },
  1511. {
  1512. "m_type": 6
  1513. },
  1514. {
  1515. "m_type": 8
  1516. },
  1517. {
  1518. "m_type": 9
  1519. },
  1520. {
  1521. "m_type": 10
  1522. },
  1523. {
  1524. "m_type": 11
  1525. },
  1526. {
  1527. "m_type": 12
  1528. },
  1529. {
  1530. "m_type": 14
  1531. },
  1532. {
  1533. "m_type": 15
  1534. }
  1535. ]
  1536. }
  1537. ],
  1538. "slotName": "Number 0",
  1539. "toolTip": "An operand to use in performing the specified Operation",
  1540. "DisplayDataType": {
  1541. "m_type": 3
  1542. },
  1543. "DisplayGroup": {
  1544. "Value": 1114760223
  1545. },
  1546. "Descriptor": {
  1547. "ConnectionType": 1,
  1548. "SlotType": 2
  1549. },
  1550. "DynamicGroup": {
  1551. "Value": 1114760223
  1552. },
  1553. "DataType": 1
  1554. },
  1555. {
  1556. "id": {
  1557. "m_id": "{239D01DA-E7E4-4867-9FB4-8F45D5170D59}"
  1558. },
  1559. "DynamicTypeOverride": 3,
  1560. "contracts": [
  1561. {
  1562. "$type": "SlotTypeContract"
  1563. },
  1564. {
  1565. "$type": "MathOperatorContract",
  1566. "NativeTypes": [
  1567. {
  1568. "m_type": 3
  1569. },
  1570. {
  1571. "m_type": 6
  1572. },
  1573. {
  1574. "m_type": 8
  1575. },
  1576. {
  1577. "m_type": 9
  1578. },
  1579. {
  1580. "m_type": 10
  1581. },
  1582. {
  1583. "m_type": 11
  1584. },
  1585. {
  1586. "m_type": 12
  1587. },
  1588. {
  1589. "m_type": 14
  1590. },
  1591. {
  1592. "m_type": 15
  1593. }
  1594. ]
  1595. }
  1596. ],
  1597. "slotName": "Number 1",
  1598. "toolTip": "An operand to use in performing the specified Operation",
  1599. "DisplayDataType": {
  1600. "m_type": 3
  1601. },
  1602. "DisplayGroup": {
  1603. "Value": 1114760223
  1604. },
  1605. "Descriptor": {
  1606. "ConnectionType": 1,
  1607. "SlotType": 2
  1608. },
  1609. "DynamicGroup": {
  1610. "Value": 1114760223
  1611. },
  1612. "DataType": 1
  1613. },
  1614. {
  1615. "id": {
  1616. "m_id": "{C0451A33-6F40-42A2-84BD-52815868A0E0}"
  1617. },
  1618. "DynamicTypeOverride": 3,
  1619. "contracts": [
  1620. {
  1621. "$type": "SlotTypeContract"
  1622. },
  1623. {
  1624. "$type": "MathOperatorContract",
  1625. "NativeTypes": [
  1626. {
  1627. "m_type": 3
  1628. },
  1629. {
  1630. "m_type": 6
  1631. },
  1632. {
  1633. "m_type": 8
  1634. },
  1635. {
  1636. "m_type": 9
  1637. },
  1638. {
  1639. "m_type": 10
  1640. },
  1641. {
  1642. "m_type": 11
  1643. },
  1644. {
  1645. "m_type": 12
  1646. },
  1647. {
  1648. "m_type": 14
  1649. },
  1650. {
  1651. "m_type": 15
  1652. }
  1653. ]
  1654. }
  1655. ],
  1656. "slotName": "Result",
  1657. "toolTip": "The result of the specified operation",
  1658. "DisplayDataType": {
  1659. "m_type": 3
  1660. },
  1661. "DisplayGroup": {
  1662. "Value": 1114760223
  1663. },
  1664. "Descriptor": {
  1665. "ConnectionType": 2,
  1666. "SlotType": 2
  1667. },
  1668. "DynamicGroup": {
  1669. "Value": 1114760223
  1670. },
  1671. "DataType": 1
  1672. }
  1673. ],
  1674. "Datums": [
  1675. {
  1676. "scriptCanvasType": {
  1677. "m_type": 3
  1678. },
  1679. "isNullPointer": false,
  1680. "$type": "double",
  1681. "value": 0.0,
  1682. "label": "Number 0"
  1683. },
  1684. {
  1685. "scriptCanvasType": {
  1686. "m_type": 3
  1687. },
  1688. "isNullPointer": false,
  1689. "$type": "double",
  1690. "value": 0.0,
  1691. "label": "Number 1"
  1692. }
  1693. ]
  1694. }
  1695. }
  1696. },
  1697. {
  1698. "Id": {
  1699. "id": 169399530113702
  1700. },
  1701. "Name": "SendScriptEvent",
  1702. "Components": {
  1703. "Component_[1831131070715247174]": {
  1704. "$type": "SendScriptEvent",
  1705. "Id": 1831131070715247174,
  1706. "Slots": [
  1707. {
  1708. "id": {
  1709. "m_id": "{E3E10C28-F1F0-427D-99BB-3874F03E97B9}"
  1710. },
  1711. "contracts": [
  1712. {
  1713. "$type": "SlotTypeContract"
  1714. }
  1715. ],
  1716. "slotName": "In",
  1717. "toolTip": "Fires the specified ScriptEvent when signaled",
  1718. "Descriptor": {
  1719. "ConnectionType": 1,
  1720. "SlotType": 1
  1721. }
  1722. },
  1723. {
  1724. "id": {
  1725. "m_id": "{C09E448B-DEB8-4DDB-974A-B5593F2B7AE1}"
  1726. },
  1727. "contracts": [
  1728. {
  1729. "$type": "SlotTypeContract"
  1730. }
  1731. ],
  1732. "slotName": "Out",
  1733. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  1734. "Descriptor": {
  1735. "ConnectionType": 2,
  1736. "SlotType": 1
  1737. }
  1738. },
  1739. {
  1740. "id": {
  1741. "m_id": "{4442A070-92A8-45D1-99EF-3FD040C2C7E4}"
  1742. },
  1743. "contracts": [
  1744. {
  1745. "$type": "SlotTypeContract"
  1746. }
  1747. ],
  1748. "slotName": "ScreenPosition",
  1749. "Descriptor": {
  1750. "ConnectionType": 1,
  1751. "SlotType": 2
  1752. },
  1753. "DataType": 1
  1754. }
  1755. ],
  1756. "Datums": [
  1757. {
  1758. "scriptCanvasType": {
  1759. "m_type": 9
  1760. },
  1761. "isNullPointer": false,
  1762. "$type": "Vector2",
  1763. "value": [
  1764. 0.0,
  1765. 0.0
  1766. ],
  1767. "label": "ScreenPosition"
  1768. }
  1769. ],
  1770. "m_version": 1,
  1771. "m_eventSlotMapping": {
  1772. "{48127351-5575-4270-87B8-776B57FFBB19}": {
  1773. "m_id": "{4442A070-92A8-45D1-99EF-3FD040C2C7E4}"
  1774. }
  1775. },
  1776. "m_scriptEventAssetId": {
  1777. "guid": "{7AEDAE50-3EE1-5811-976A-2C09A80B78F8}"
  1778. },
  1779. "m_asset": {
  1780. "assetId": {
  1781. "guid": "{7AEDAE50-3EE1-5811-976A-2C09A80B78F8}"
  1782. },
  1783. "assetHint": "levels/navigation/navigationsample/player_clicked.scriptevents"
  1784. },
  1785. "m_busId": {
  1786. "Value": 3711360679
  1787. },
  1788. "m_eventId": {
  1789. "Value": 684305243
  1790. }
  1791. }
  1792. }
  1793. },
  1794. {
  1795. "Id": {
  1796. "id": 169373760309926
  1797. },
  1798. "Name": "SC-Node(SetCanvasPosition)",
  1799. "Components": {
  1800. "Component_[1859120683877996729]": {
  1801. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1802. "Id": 1859120683877996729,
  1803. "Slots": [
  1804. {
  1805. "id": {
  1806. "m_id": "{9301C61A-2D73-4E8E-AFDE-6667BBDB319C}"
  1807. },
  1808. "contracts": [
  1809. {
  1810. "$type": "SlotTypeContract"
  1811. }
  1812. ],
  1813. "slotName": "EntityId: 0",
  1814. "Descriptor": {
  1815. "ConnectionType": 1,
  1816. "SlotType": 2
  1817. },
  1818. "DataType": 1
  1819. },
  1820. {
  1821. "id": {
  1822. "m_id": "{E990AAF1-D67F-48A6-B088-F5A6208E2102}"
  1823. },
  1824. "contracts": [
  1825. {
  1826. "$type": "SlotTypeContract"
  1827. }
  1828. ],
  1829. "slotName": "Vector2: 1",
  1830. "Descriptor": {
  1831. "ConnectionType": 1,
  1832. "SlotType": 2
  1833. },
  1834. "DataType": 1
  1835. },
  1836. {
  1837. "id": {
  1838. "m_id": "{3A5707AF-FAA0-4828-8F5E-FBE4A1826BEF}"
  1839. },
  1840. "contracts": [
  1841. {
  1842. "$type": "SlotTypeContract"
  1843. }
  1844. ],
  1845. "slotName": "In",
  1846. "Descriptor": {
  1847. "ConnectionType": 1,
  1848. "SlotType": 1
  1849. }
  1850. },
  1851. {
  1852. "id": {
  1853. "m_id": "{877FC1F0-92D6-448A-BE80-D8302A29291D}"
  1854. },
  1855. "contracts": [
  1856. {
  1857. "$type": "SlotTypeContract"
  1858. }
  1859. ],
  1860. "slotName": "Out",
  1861. "Descriptor": {
  1862. "ConnectionType": 2,
  1863. "SlotType": 1
  1864. }
  1865. }
  1866. ],
  1867. "Datums": [
  1868. {
  1869. "scriptCanvasType": {
  1870. "m_type": 1
  1871. },
  1872. "isNullPointer": false,
  1873. "$type": "EntityId",
  1874. "value": {
  1875. "id": 2901262558
  1876. },
  1877. "label": "Source"
  1878. },
  1879. {
  1880. "scriptCanvasType": {
  1881. "m_type": 9
  1882. },
  1883. "isNullPointer": false,
  1884. "$type": "Vector2",
  1885. "value": [
  1886. 0.0,
  1887. 0.0
  1888. ],
  1889. "label": "Vector 2"
  1890. }
  1891. ],
  1892. "methodType": 0,
  1893. "methodName": "SetCanvasPosition",
  1894. "className": "UiTransformBus",
  1895. "resultSlotIDs": [
  1896. {}
  1897. ],
  1898. "inputSlots": [
  1899. {
  1900. "m_id": "{9301C61A-2D73-4E8E-AFDE-6667BBDB319C}"
  1901. },
  1902. {
  1903. "m_id": "{E990AAF1-D67F-48A6-B088-F5A6208E2102}"
  1904. }
  1905. ],
  1906. "prettyClassName": "UiTransformBus"
  1907. }
  1908. }
  1909. },
  1910. {
  1911. "Id": {
  1912. "id": 169425299917478
  1913. },
  1914. "Name": "SC-Node(SetCanvasPosition)",
  1915. "Components": {
  1916. "Component_[1859120683877996729]": {
  1917. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1918. "Id": 1859120683877996729,
  1919. "Slots": [
  1920. {
  1921. "id": {
  1922. "m_id": "{9301C61A-2D73-4E8E-AFDE-6667BBDB319C}"
  1923. },
  1924. "contracts": [
  1925. {
  1926. "$type": "SlotTypeContract"
  1927. }
  1928. ],
  1929. "slotName": "EntityId: 0",
  1930. "Descriptor": {
  1931. "ConnectionType": 1,
  1932. "SlotType": 2
  1933. },
  1934. "DataType": 1
  1935. },
  1936. {
  1937. "id": {
  1938. "m_id": "{E990AAF1-D67F-48A6-B088-F5A6208E2102}"
  1939. },
  1940. "contracts": [
  1941. {
  1942. "$type": "SlotTypeContract"
  1943. }
  1944. ],
  1945. "slotName": "Vector2: 1",
  1946. "Descriptor": {
  1947. "ConnectionType": 1,
  1948. "SlotType": 2
  1949. },
  1950. "DataType": 1
  1951. },
  1952. {
  1953. "id": {
  1954. "m_id": "{3A5707AF-FAA0-4828-8F5E-FBE4A1826BEF}"
  1955. },
  1956. "contracts": [
  1957. {
  1958. "$type": "SlotTypeContract"
  1959. }
  1960. ],
  1961. "slotName": "In",
  1962. "Descriptor": {
  1963. "ConnectionType": 1,
  1964. "SlotType": 1
  1965. }
  1966. },
  1967. {
  1968. "id": {
  1969. "m_id": "{877FC1F0-92D6-448A-BE80-D8302A29291D}"
  1970. },
  1971. "contracts": [
  1972. {
  1973. "$type": "SlotTypeContract"
  1974. }
  1975. ],
  1976. "slotName": "Out",
  1977. "Descriptor": {
  1978. "ConnectionType": 2,
  1979. "SlotType": 1
  1980. }
  1981. }
  1982. ],
  1983. "Datums": [
  1984. {
  1985. "scriptCanvasType": {
  1986. "m_type": 1
  1987. },
  1988. "isNullPointer": false,
  1989. "$type": "EntityId",
  1990. "value": {
  1991. "id": 2901262558
  1992. },
  1993. "label": "Source"
  1994. },
  1995. {
  1996. "scriptCanvasType": {
  1997. "m_type": 9
  1998. },
  1999. "isNullPointer": false,
  2000. "$type": "Vector2",
  2001. "value": [
  2002. 0.0,
  2003. 0.0
  2004. ],
  2005. "label": "Vector 2"
  2006. }
  2007. ],
  2008. "methodType": 0,
  2009. "methodName": "SetCanvasPosition",
  2010. "className": "UiTransformBus",
  2011. "resultSlotIDs": [
  2012. {}
  2013. ],
  2014. "inputSlots": [
  2015. {
  2016. "m_id": "{9301C61A-2D73-4E8E-AFDE-6667BBDB319C}"
  2017. },
  2018. {
  2019. "m_id": "{E990AAF1-D67F-48A6-B088-F5A6208E2102}"
  2020. }
  2021. ],
  2022. "prettyClassName": "UiTransformBus"
  2023. }
  2024. }
  2025. },
  2026. {
  2027. "Id": {
  2028. "id": 169438184819366
  2029. },
  2030. "Name": "SC-Node(InputHandlerNodeableNode)",
  2031. "Components": {
  2032. "Component_[266095057294030631]": {
  2033. "$type": "InputHandlerNodeableNode",
  2034. "Id": 266095057294030631,
  2035. "Slots": [
  2036. {
  2037. "id": {
  2038. "m_id": "{DDF0F7D7-C0FE-451C-A895-485CEB11BCE5}"
  2039. },
  2040. "contracts": [
  2041. {
  2042. "$type": "SlotTypeContract"
  2043. }
  2044. ],
  2045. "slotName": "Connect Event",
  2046. "toolTip": "Connect to input event name as defined in an input binding asset.",
  2047. "DisplayGroup": {
  2048. "Value": 2173756817
  2049. },
  2050. "Descriptor": {
  2051. "ConnectionType": 1,
  2052. "SlotType": 1
  2053. }
  2054. },
  2055. {
  2056. "id": {
  2057. "m_id": "{6F8FA598-F3BE-4E24-A2AF-6B10EC3471D7}"
  2058. },
  2059. "contracts": [
  2060. {
  2061. "$type": "SlotTypeContract"
  2062. }
  2063. ],
  2064. "slotName": "Event Name",
  2065. "toolTip": "Event name as defined in an input binding asset. Example 'Fireball'.",
  2066. "DisplayGroup": {
  2067. "Value": 2173756817
  2068. },
  2069. "Descriptor": {
  2070. "ConnectionType": 1,
  2071. "SlotType": 2
  2072. },
  2073. "DataType": 1
  2074. },
  2075. {
  2076. "id": {
  2077. "m_id": "{AC503F5F-23C0-42BF-B975-49F0BB7A78FE}"
  2078. },
  2079. "contracts": [
  2080. {
  2081. "$type": "SlotTypeContract"
  2082. }
  2083. ],
  2084. "slotName": "On Connect Event",
  2085. "toolTip": "Connect to input event name as defined in an input binding asset.",
  2086. "DisplayGroup": {
  2087. "Value": 2173756817
  2088. },
  2089. "Descriptor": {
  2090. "ConnectionType": 2,
  2091. "SlotType": 1
  2092. }
  2093. },
  2094. {
  2095. "id": {
  2096. "m_id": "{25C8DC74-EADB-4B9B-B0D7-617F944034D2}"
  2097. },
  2098. "contracts": [
  2099. {
  2100. "$type": "SlotTypeContract"
  2101. }
  2102. ],
  2103. "slotName": "Pressed",
  2104. "toolTip": "Signaled when the input event begins.",
  2105. "DisplayGroup": {
  2106. "Value": 458537082
  2107. },
  2108. "Descriptor": {
  2109. "ConnectionType": 2,
  2110. "SlotType": 1
  2111. },
  2112. "IsLatent": true
  2113. },
  2114. {
  2115. "id": {
  2116. "m_id": "{B1E35929-2559-440D-858C-9FBCF4EEF022}"
  2117. },
  2118. "contracts": [
  2119. {
  2120. "$type": "SlotTypeContract"
  2121. }
  2122. ],
  2123. "slotName": "value",
  2124. "DisplayDataType": {
  2125. "m_type": 3
  2126. },
  2127. "DisplayGroup": {
  2128. "Value": 458537082
  2129. },
  2130. "Descriptor": {
  2131. "ConnectionType": 2,
  2132. "SlotType": 2
  2133. },
  2134. "DataType": 1
  2135. },
  2136. {
  2137. "id": {
  2138. "m_id": "{B2EBF33E-CDF9-4DA0-9007-353C3DFAA76B}"
  2139. },
  2140. "contracts": [
  2141. {
  2142. "$type": "SlotTypeContract"
  2143. }
  2144. ],
  2145. "slotName": "Held",
  2146. "toolTip": "Signaled while the input event is active.",
  2147. "DisplayGroup": {
  2148. "Value": 308119761
  2149. },
  2150. "Descriptor": {
  2151. "ConnectionType": 2,
  2152. "SlotType": 1
  2153. },
  2154. "IsLatent": true
  2155. },
  2156. {
  2157. "id": {
  2158. "m_id": "{5252AF61-805F-4E0F-A69E-FC9C50EC1D94}"
  2159. },
  2160. "contracts": [
  2161. {
  2162. "$type": "SlotTypeContract"
  2163. }
  2164. ],
  2165. "slotName": "Released",
  2166. "toolTip": "Signaled when the input event ends.",
  2167. "DisplayGroup": {
  2168. "Value": 4215628054
  2169. },
  2170. "Descriptor": {
  2171. "ConnectionType": 2,
  2172. "SlotType": 1
  2173. },
  2174. "IsLatent": true
  2175. }
  2176. ],
  2177. "Datums": [
  2178. {
  2179. "scriptCanvasType": {
  2180. "m_type": 5
  2181. },
  2182. "isNullPointer": false,
  2183. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2184. "value": "Mouse Delta X",
  2185. "label": "Event Name"
  2186. }
  2187. ],
  2188. "slotExecutionMap": {
  2189. "ins": [
  2190. {
  2191. "_slotId": {
  2192. "m_id": "{DDF0F7D7-C0FE-451C-A895-485CEB11BCE5}"
  2193. },
  2194. "_inputs": [
  2195. {
  2196. "_slotId": {
  2197. "m_id": "{6F8FA598-F3BE-4E24-A2AF-6B10EC3471D7}"
  2198. }
  2199. }
  2200. ],
  2201. "_outs": [
  2202. {
  2203. "_slotId": {
  2204. "m_id": "{AC503F5F-23C0-42BF-B975-49F0BB7A78FE}"
  2205. },
  2206. "_name": "On Connect Event",
  2207. "_interfaceSourceId": "{36C7C81A-F79D-0000-286E-F1D12C000000}"
  2208. }
  2209. ],
  2210. "_interfaceSourceId": "{283A0080-0000-0000-55B9-6DAAFC7F0000}"
  2211. }
  2212. ],
  2213. "latents": [
  2214. {
  2215. "_slotId": {
  2216. "m_id": "{25C8DC74-EADB-4B9B-B0D7-617F944034D2}"
  2217. },
  2218. "_name": "Pressed",
  2219. "_outputs": [
  2220. {
  2221. "_slotId": {
  2222. "m_id": "{B1E35929-2559-440D-858C-9FBCF4EEF022}"
  2223. }
  2224. }
  2225. ],
  2226. "_interfaceSourceId": "{283A0080-0000-0000-55B9-6DAAFC7F0000}"
  2227. },
  2228. {
  2229. "_slotId": {
  2230. "m_id": "{B2EBF33E-CDF9-4DA0-9007-353C3DFAA76B}"
  2231. },
  2232. "_name": "Held",
  2233. "_outputs": [
  2234. {
  2235. "_slotId": {
  2236. "m_id": "{B1E35929-2559-440D-858C-9FBCF4EEF022}"
  2237. }
  2238. }
  2239. ],
  2240. "_interfaceSourceId": "{283A0080-0000-0000-55B9-6DAAFC7F0000}"
  2241. },
  2242. {
  2243. "_slotId": {
  2244. "m_id": "{5252AF61-805F-4E0F-A69E-FC9C50EC1D94}"
  2245. },
  2246. "_name": "Released",
  2247. "_outputs": [
  2248. {
  2249. "_slotId": {
  2250. "m_id": "{B1E35929-2559-440D-858C-9FBCF4EEF022}"
  2251. }
  2252. }
  2253. ],
  2254. "_interfaceSourceId": "{283A0080-0000-0000-55B9-6DAAFC7F0000}"
  2255. }
  2256. ]
  2257. }
  2258. }
  2259. }
  2260. },
  2261. {
  2262. "Id": {
  2263. "id": 169390940179110
  2264. },
  2265. "Name": "SC-Node((NodeFunctionGenericMultiReturn<t_Func, t_Traits, function>)<{double(Vector2 double )}* GetElementTraits >)",
  2266. "Components": {
  2267. "Component_[3143319145499350830]": {
  2268. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2269. "Id": 3143319145499350830,
  2270. "Slots": [
  2271. {
  2272. "id": {
  2273. "m_id": "{B8E2FAE3-E48A-4514-86DC-86B10C906BCD}"
  2274. },
  2275. "contracts": [
  2276. {
  2277. "$type": "SlotTypeContract"
  2278. }
  2279. ],
  2280. "slotName": "Source",
  2281. "DisplayDataType": {
  2282. "m_type": 9
  2283. },
  2284. "Descriptor": {
  2285. "ConnectionType": 1,
  2286. "SlotType": 2
  2287. },
  2288. "DataType": 1
  2289. },
  2290. {
  2291. "id": {
  2292. "m_id": "{0D8DEF70-AEDC-4ABE-A21D-1D65E38E8B78}"
  2293. },
  2294. "contracts": [
  2295. {
  2296. "$type": "SlotTypeContract"
  2297. }
  2298. ],
  2299. "slotName": "Index",
  2300. "DisplayDataType": {
  2301. "m_type": 3
  2302. },
  2303. "Descriptor": {
  2304. "ConnectionType": 1,
  2305. "SlotType": 2
  2306. },
  2307. "DataType": 1
  2308. },
  2309. {
  2310. "id": {
  2311. "m_id": "{CB66EFD0-0528-4873-AB86-A15F02B36278}"
  2312. },
  2313. "contracts": [
  2314. {
  2315. "$type": "SlotTypeContract"
  2316. }
  2317. ],
  2318. "slotName": "In",
  2319. "Descriptor": {
  2320. "ConnectionType": 1,
  2321. "SlotType": 1
  2322. }
  2323. },
  2324. {
  2325. "id": {
  2326. "m_id": "{9622F69D-509B-4DF7-ACEA-A9586EE198D7}"
  2327. },
  2328. "contracts": [
  2329. {
  2330. "$type": "SlotTypeContract"
  2331. }
  2332. ],
  2333. "slotName": "Out",
  2334. "Descriptor": {
  2335. "ConnectionType": 2,
  2336. "SlotType": 1
  2337. }
  2338. },
  2339. {
  2340. "id": {
  2341. "m_id": "{AB19148F-4CBB-40AD-B79A-BA679AF940B6}"
  2342. },
  2343. "contracts": [
  2344. {
  2345. "$type": "SlotTypeContract"
  2346. }
  2347. ],
  2348. "slotName": "Number",
  2349. "DisplayDataType": {
  2350. "m_type": 3
  2351. },
  2352. "Descriptor": {
  2353. "ConnectionType": 2,
  2354. "SlotType": 2
  2355. },
  2356. "DataType": 1
  2357. }
  2358. ],
  2359. "Datums": [
  2360. {
  2361. "isOverloadedStorage": false,
  2362. "scriptCanvasType": {
  2363. "m_type": 9
  2364. },
  2365. "isNullPointer": false,
  2366. "$type": "Vector2",
  2367. "value": [
  2368. 0.0,
  2369. 0.0
  2370. ],
  2371. "label": "Source"
  2372. },
  2373. {
  2374. "isOverloadedStorage": false,
  2375. "scriptCanvasType": {
  2376. "m_type": 3
  2377. },
  2378. "isNullPointer": false,
  2379. "$type": "double",
  2380. "value": 1.0,
  2381. "label": "Index"
  2382. }
  2383. ],
  2384. "methodType": 1,
  2385. "methodName": "ScriptCanvas_Vector2Functions_GetElement",
  2386. "inputSlots": [
  2387. {
  2388. "m_id": "{B8E2FAE3-E48A-4514-86DC-86B10C906BCD}"
  2389. },
  2390. {
  2391. "m_id": "{0D8DEF70-AEDC-4ABE-A21D-1D65E38E8B78}"
  2392. }
  2393. ],
  2394. "prettyClassName": "ScriptCanvas_Vector2Functions_GetElement"
  2395. }
  2396. }
  2397. },
  2398. {
  2399. "Id": {
  2400. "id": 169412415015590
  2401. },
  2402. "Name": "SC-Node(InputHandlerNodeableNode)",
  2403. "Components": {
  2404. "Component_[429041604965031232]": {
  2405. "$type": "InputHandlerNodeableNode",
  2406. "Id": 429041604965031232,
  2407. "Slots": [
  2408. {
  2409. "id": {
  2410. "m_id": "{6EDFCF1B-F76C-4D17-AE99-CC3083628A37}"
  2411. },
  2412. "contracts": [
  2413. {
  2414. "$type": "SlotTypeContract"
  2415. }
  2416. ],
  2417. "slotName": "Connect Event",
  2418. "toolTip": "Connect to input event name as defined in an input binding asset.",
  2419. "DisplayGroup": {
  2420. "Value": 2173756817
  2421. },
  2422. "Descriptor": {
  2423. "ConnectionType": 1,
  2424. "SlotType": 1
  2425. }
  2426. },
  2427. {
  2428. "id": {
  2429. "m_id": "{13B32744-4F6E-4737-BC5E-98B7BAB58906}"
  2430. },
  2431. "contracts": [
  2432. {
  2433. "$type": "SlotTypeContract"
  2434. }
  2435. ],
  2436. "slotName": "Event Name",
  2437. "toolTip": "Event name as defined in an input binding asset. Example 'Fireball'.",
  2438. "DisplayGroup": {
  2439. "Value": 2173756817
  2440. },
  2441. "Descriptor": {
  2442. "ConnectionType": 1,
  2443. "SlotType": 2
  2444. },
  2445. "DataType": 1
  2446. },
  2447. {
  2448. "id": {
  2449. "m_id": "{02ABF0C1-1E36-4C4B-AB59-CD3645E46D13}"
  2450. },
  2451. "contracts": [
  2452. {
  2453. "$type": "SlotTypeContract"
  2454. }
  2455. ],
  2456. "slotName": "On Connect Event",
  2457. "toolTip": "Connect to input event name as defined in an input binding asset.",
  2458. "DisplayGroup": {
  2459. "Value": 2173756817
  2460. },
  2461. "Descriptor": {
  2462. "ConnectionType": 2,
  2463. "SlotType": 1
  2464. }
  2465. },
  2466. {
  2467. "id": {
  2468. "m_id": "{83DEC80B-077A-418C-83BA-95D7F30C3512}"
  2469. },
  2470. "contracts": [
  2471. {
  2472. "$type": "SlotTypeContract"
  2473. }
  2474. ],
  2475. "slotName": "Pressed",
  2476. "toolTip": "Signaled when the input event begins.",
  2477. "DisplayGroup": {
  2478. "Value": 458537082
  2479. },
  2480. "Descriptor": {
  2481. "ConnectionType": 2,
  2482. "SlotType": 1
  2483. },
  2484. "IsLatent": true
  2485. },
  2486. {
  2487. "id": {
  2488. "m_id": "{B8839C67-CF80-4D7F-B691-351D59F1E9E0}"
  2489. },
  2490. "contracts": [
  2491. {
  2492. "$type": "SlotTypeContract"
  2493. }
  2494. ],
  2495. "slotName": "value",
  2496. "DisplayDataType": {
  2497. "m_type": 3
  2498. },
  2499. "DisplayGroup": {
  2500. "Value": 458537082
  2501. },
  2502. "Descriptor": {
  2503. "ConnectionType": 2,
  2504. "SlotType": 2
  2505. },
  2506. "DataType": 1
  2507. },
  2508. {
  2509. "id": {
  2510. "m_id": "{32DEDD4C-E4B7-4080-A048-1D913E77B773}"
  2511. },
  2512. "contracts": [
  2513. {
  2514. "$type": "SlotTypeContract"
  2515. }
  2516. ],
  2517. "slotName": "Held",
  2518. "toolTip": "Signaled while the input event is active.",
  2519. "DisplayGroup": {
  2520. "Value": 308119761
  2521. },
  2522. "Descriptor": {
  2523. "ConnectionType": 2,
  2524. "SlotType": 1
  2525. },
  2526. "IsLatent": true
  2527. },
  2528. {
  2529. "id": {
  2530. "m_id": "{60EC4563-784C-472A-945A-5145CC5325DF}"
  2531. },
  2532. "contracts": [
  2533. {
  2534. "$type": "SlotTypeContract"
  2535. }
  2536. ],
  2537. "slotName": "Released",
  2538. "toolTip": "Signaled when the input event ends.",
  2539. "DisplayGroup": {
  2540. "Value": 4215628054
  2541. },
  2542. "Descriptor": {
  2543. "ConnectionType": 2,
  2544. "SlotType": 1
  2545. },
  2546. "IsLatent": true
  2547. }
  2548. ],
  2549. "Datums": [
  2550. {
  2551. "scriptCanvasType": {
  2552. "m_type": 5
  2553. },
  2554. "isNullPointer": false,
  2555. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2556. "value": "Mouse Left Click",
  2557. "label": "Event Name"
  2558. }
  2559. ],
  2560. "slotExecutionMap": {
  2561. "ins": [
  2562. {
  2563. "_slotId": {
  2564. "m_id": "{6EDFCF1B-F76C-4D17-AE99-CC3083628A37}"
  2565. },
  2566. "_inputs": [
  2567. {
  2568. "_slotId": {
  2569. "m_id": "{13B32744-4F6E-4737-BC5E-98B7BAB58906}"
  2570. }
  2571. }
  2572. ],
  2573. "_outs": [
  2574. {
  2575. "_slotId": {
  2576. "m_id": "{02ABF0C1-1E36-4C4B-AB59-CD3645E46D13}"
  2577. },
  2578. "_name": "On Connect Event",
  2579. "_interfaceSourceId": "{36C7C81A-F79D-0000-286E-F1D12C000000}"
  2580. }
  2581. ],
  2582. "_interfaceSourceId": "{4F520080-0000-0000-55B9-6DAAFC7F0000}"
  2583. }
  2584. ],
  2585. "latents": [
  2586. {
  2587. "_slotId": {
  2588. "m_id": "{83DEC80B-077A-418C-83BA-95D7F30C3512}"
  2589. },
  2590. "_name": "Pressed",
  2591. "_outputs": [
  2592. {
  2593. "_slotId": {
  2594. "m_id": "{B8839C67-CF80-4D7F-B691-351D59F1E9E0}"
  2595. }
  2596. }
  2597. ],
  2598. "_interfaceSourceId": "{4F520080-0000-0000-55B9-6DAAFC7F0000}"
  2599. },
  2600. {
  2601. "_slotId": {
  2602. "m_id": "{32DEDD4C-E4B7-4080-A048-1D913E77B773}"
  2603. },
  2604. "_name": "Held",
  2605. "_outputs": [
  2606. {
  2607. "_slotId": {
  2608. "m_id": "{B8839C67-CF80-4D7F-B691-351D59F1E9E0}"
  2609. }
  2610. }
  2611. ],
  2612. "_interfaceSourceId": "{4F520080-0000-0000-55B9-6DAAFC7F0000}"
  2613. },
  2614. {
  2615. "_slotId": {
  2616. "m_id": "{60EC4563-784C-472A-945A-5145CC5325DF}"
  2617. },
  2618. "_name": "Released",
  2619. "_outputs": [
  2620. {
  2621. "_slotId": {
  2622. "m_id": "{B8839C67-CF80-4D7F-B691-351D59F1E9E0}"
  2623. }
  2624. }
  2625. ],
  2626. "_interfaceSourceId": "{4F520080-0000-0000-55B9-6DAAFC7F0000}"
  2627. }
  2628. ]
  2629. }
  2630. }
  2631. }
  2632. }
  2633. ],
  2634. "m_connections": [
  2635. {
  2636. "Id": {
  2637. "id": 181240754948774
  2638. },
  2639. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(InputHandler: Connect Event)",
  2640. "Components": {
  2641. "Component_[12928368948363350961]": {
  2642. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2643. "Id": 12928368948363350961,
  2644. "sourceEndpoint": {
  2645. "nodeId": {
  2646. "id": 169421004950182
  2647. },
  2648. "slotId": {
  2649. "m_id": "{993C5C2F-1F8E-4A8D-8DBA-B4AA7EC46040}"
  2650. }
  2651. },
  2652. "targetEndpoint": {
  2653. "nodeId": {
  2654. "id": 169438184819366
  2655. },
  2656. "slotId": {
  2657. "m_id": "{DDF0F7D7-C0FE-451C-A895-485CEB11BCE5}"
  2658. }
  2659. }
  2660. }
  2661. }
  2662. },
  2663. {
  2664. "Id": {
  2665. "id": 181245049916070
  2666. },
  2667. "Name": "srcEndpoint=(GetCanvasPosition: Out), destEndpoint=(ScriptCanvas_Vector2Functions_GetElement: In)",
  2668. "Components": {
  2669. "Component_[2905731904564847826]": {
  2670. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2671. "Id": 2905731904564847826,
  2672. "sourceEndpoint": {
  2673. "nodeId": {
  2674. "id": 169403825080998
  2675. },
  2676. "slotId": {
  2677. "m_id": "{35E99D4F-EB80-4D6A-A080-85F0E6B5B7D0}"
  2678. }
  2679. },
  2680. "targetEndpoint": {
  2681. "nodeId": {
  2682. "id": 169395235146406
  2683. },
  2684. "slotId": {
  2685. "m_id": "{580CEF6F-7DE4-43A2-B215-995F5D33F33E}"
  2686. }
  2687. }
  2688. }
  2689. }
  2690. },
  2691. {
  2692. "Id": {
  2693. "id": 181249344883366
  2694. },
  2695. "Name": "srcEndpoint=(ScriptCanvas_Vector2Functions_GetElement: Number), destEndpoint=(Add (+): Number 0)",
  2696. "Components": {
  2697. "Component_[16594568147973004598]": {
  2698. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2699. "Id": 16594568147973004598,
  2700. "sourceEndpoint": {
  2701. "nodeId": {
  2702. "id": 169395235146406
  2703. },
  2704. "slotId": {
  2705. "m_id": "{AFDA7E63-A4B6-4185-A731-88BE4C440B3E}"
  2706. }
  2707. },
  2708. "targetEndpoint": {
  2709. "nodeId": {
  2710. "id": 169408120048294
  2711. },
  2712. "slotId": {
  2713. "m_id": "{59115C65-1BC5-45EC-AEF0-B71D318C5D17}"
  2714. }
  2715. }
  2716. }
  2717. }
  2718. },
  2719. {
  2720. "Id": {
  2721. "id": 181253639850662
  2722. },
  2723. "Name": "srcEndpoint=(InputHandler: value), destEndpoint=(Add (+): Number 1)",
  2724. "Components": {
  2725. "Component_[6133403119968823203]": {
  2726. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2727. "Id": 6133403119968823203,
  2728. "sourceEndpoint": {
  2729. "nodeId": {
  2730. "id": 169438184819366
  2731. },
  2732. "slotId": {
  2733. "m_id": "{B1E35929-2559-440D-858C-9FBCF4EEF022}"
  2734. }
  2735. },
  2736. "targetEndpoint": {
  2737. "nodeId": {
  2738. "id": 169408120048294
  2739. },
  2740. "slotId": {
  2741. "m_id": "{239D01DA-E7E4-4867-9FB4-8F45D5170D59}"
  2742. }
  2743. }
  2744. }
  2745. }
  2746. },
  2747. {
  2748. "Id": {
  2749. "id": 181257934817958
  2750. },
  2751. "Name": "srcEndpoint=(ScriptCanvas_Vector2Functions_GetElement: Out), destEndpoint=(Add (+): In)",
  2752. "Components": {
  2753. "Component_[9833221077785469861]": {
  2754. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2755. "Id": 9833221077785469861,
  2756. "sourceEndpoint": {
  2757. "nodeId": {
  2758. "id": 169395235146406
  2759. },
  2760. "slotId": {
  2761. "m_id": "{C84498D9-B8DB-4588-B82D-B5BEACD75FFB}"
  2762. }
  2763. },
  2764. "targetEndpoint": {
  2765. "nodeId": {
  2766. "id": 169408120048294
  2767. },
  2768. "slotId": {
  2769. "m_id": "{68A4222D-5C0F-454E-B945-B18B9952353F}"
  2770. }
  2771. }
  2772. }
  2773. }
  2774. },
  2775. {
  2776. "Id": {
  2777. "id": 181262229785254
  2778. },
  2779. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(ScriptCanvas_Vector2Functions_SetX: X)",
  2780. "Components": {
  2781. "Component_[11944686773637199460]": {
  2782. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2783. "Id": 11944686773637199460,
  2784. "sourceEndpoint": {
  2785. "nodeId": {
  2786. "id": 169408120048294
  2787. },
  2788. "slotId": {
  2789. "m_id": "{C0451A33-6F40-42A2-84BD-52815868A0E0}"
  2790. }
  2791. },
  2792. "targetEndpoint": {
  2793. "nodeId": {
  2794. "id": 169378055277222
  2795. },
  2796. "slotId": {
  2797. "m_id": "{A75B6D9C-267A-443F-8A58-0F0C82DFDC17}"
  2798. }
  2799. }
  2800. }
  2801. }
  2802. },
  2803. {
  2804. "Id": {
  2805. "id": 181266524752550
  2806. },
  2807. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(ScriptCanvas_Vector2Functions_SetX: In)",
  2808. "Components": {
  2809. "Component_[690068062411912519]": {
  2810. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2811. "Id": 690068062411912519,
  2812. "sourceEndpoint": {
  2813. "nodeId": {
  2814. "id": 169408120048294
  2815. },
  2816. "slotId": {
  2817. "m_id": "{8635CC65-2D11-4C26-ABB4-26ABEFC51B4F}"
  2818. }
  2819. },
  2820. "targetEndpoint": {
  2821. "nodeId": {
  2822. "id": 169378055277222
  2823. },
  2824. "slotId": {
  2825. "m_id": "{27DBE48E-F193-49C1-8909-FCC181F17C48}"
  2826. }
  2827. }
  2828. }
  2829. }
  2830. },
  2831. {
  2832. "Id": {
  2833. "id": 181270819719846
  2834. },
  2835. "Name": "srcEndpoint=(GetCanvasPosition: Vector2), destEndpoint=(ScriptCanvas_Vector2Functions_GetElement: Source)",
  2836. "Components": {
  2837. "Component_[8756119729686829940]": {
  2838. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2839. "Id": 8756119729686829940,
  2840. "sourceEndpoint": {
  2841. "nodeId": {
  2842. "id": 169403825080998
  2843. },
  2844. "slotId": {
  2845. "m_id": "{B4BF43D7-5E8C-4B36-8351-ADA6309C26EA}"
  2846. }
  2847. },
  2848. "targetEndpoint": {
  2849. "nodeId": {
  2850. "id": 169395235146406
  2851. },
  2852. "slotId": {
  2853. "m_id": "{3ABE33A1-A8B1-4B8B-B96C-12F6E821F47C}"
  2854. }
  2855. }
  2856. }
  2857. }
  2858. },
  2859. {
  2860. "Id": {
  2861. "id": 181275114687142
  2862. },
  2863. "Name": "srcEndpoint=(GetCanvasPosition: Vector2), destEndpoint=(ScriptCanvas_Vector2Functions_SetX: Source)",
  2864. "Components": {
  2865. "Component_[6561729134732409686]": {
  2866. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2867. "Id": 6561729134732409686,
  2868. "sourceEndpoint": {
  2869. "nodeId": {
  2870. "id": 169403825080998
  2871. },
  2872. "slotId": {
  2873. "m_id": "{B4BF43D7-5E8C-4B36-8351-ADA6309C26EA}"
  2874. }
  2875. },
  2876. "targetEndpoint": {
  2877. "nodeId": {
  2878. "id": 169378055277222
  2879. },
  2880. "slotId": {
  2881. "m_id": "{B4639347-7DC2-41B9-9E76-C4A396FD3CCF}"
  2882. }
  2883. }
  2884. }
  2885. }
  2886. },
  2887. {
  2888. "Id": {
  2889. "id": 181279409654438
  2890. },
  2891. "Name": "srcEndpoint=(ScriptCanvas_Vector2Functions_SetX: Vector2), destEndpoint=(SetCanvasPosition: Vector2: 1)",
  2892. "Components": {
  2893. "Component_[3166671478841435983]": {
  2894. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2895. "Id": 3166671478841435983,
  2896. "sourceEndpoint": {
  2897. "nodeId": {
  2898. "id": 169378055277222
  2899. },
  2900. "slotId": {
  2901. "m_id": "{F9707D4F-16DC-4809-B1AE-6CEF3E18EA48}"
  2902. }
  2903. },
  2904. "targetEndpoint": {
  2905. "nodeId": {
  2906. "id": 169425299917478
  2907. },
  2908. "slotId": {
  2909. "m_id": "{E990AAF1-D67F-48A6-B088-F5A6208E2102}"
  2910. }
  2911. }
  2912. }
  2913. }
  2914. },
  2915. {
  2916. "Id": {
  2917. "id": 181283704621734
  2918. },
  2919. "Name": "srcEndpoint=(ScriptCanvas_Vector2Functions_SetX: Out), destEndpoint=(SetCanvasPosition: In)",
  2920. "Components": {
  2921. "Component_[5821556590777460335]": {
  2922. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2923. "Id": 5821556590777460335,
  2924. "sourceEndpoint": {
  2925. "nodeId": {
  2926. "id": 169378055277222
  2927. },
  2928. "slotId": {
  2929. "m_id": "{237E1C5F-247F-489F-90ED-A781E349F828}"
  2930. }
  2931. },
  2932. "targetEndpoint": {
  2933. "nodeId": {
  2934. "id": 169425299917478
  2935. },
  2936. "slotId": {
  2937. "m_id": "{3A5707AF-FAA0-4828-8F5E-FBE4A1826BEF}"
  2938. }
  2939. }
  2940. }
  2941. }
  2942. },
  2943. {
  2944. "Id": {
  2945. "id": 181287999589030
  2946. },
  2947. "Name": "srcEndpoint=(InputHandler: Held), destEndpoint=(GetCanvasPosition: In)",
  2948. "Components": {
  2949. "Component_[13447359406279290369]": {
  2950. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2951. "Id": 13447359406279290369,
  2952. "sourceEndpoint": {
  2953. "nodeId": {
  2954. "id": 169438184819366
  2955. },
  2956. "slotId": {
  2957. "m_id": "{B2EBF33E-CDF9-4DA0-9007-353C3DFAA76B}"
  2958. }
  2959. },
  2960. "targetEndpoint": {
  2961. "nodeId": {
  2962. "id": 169403825080998
  2963. },
  2964. "slotId": {
  2965. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  2966. }
  2967. }
  2968. }
  2969. }
  2970. },
  2971. {
  2972. "Id": {
  2973. "id": 181292294556326
  2974. },
  2975. "Name": "srcEndpoint=(InputHandler: On Connect Event), destEndpoint=(InputHandler: Connect Event)",
  2976. "Components": {
  2977. "Component_[6709921498352054946]": {
  2978. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2979. "Id": 6709921498352054946,
  2980. "sourceEndpoint": {
  2981. "nodeId": {
  2982. "id": 169438184819366
  2983. },
  2984. "slotId": {
  2985. "m_id": "{AC503F5F-23C0-42BF-B975-49F0BB7A78FE}"
  2986. }
  2987. },
  2988. "targetEndpoint": {
  2989. "nodeId": {
  2990. "id": 169433889852070
  2991. },
  2992. "slotId": {
  2993. "m_id": "{3F5631FB-CFBF-4E30-9433-6B47A59F5CFD}"
  2994. }
  2995. }
  2996. }
  2997. }
  2998. },
  2999. {
  3000. "Id": {
  3001. "id": 181296589523622
  3002. },
  3003. "Name": "srcEndpoint=(GetCanvasPosition: Vector2), destEndpoint=(ScriptCanvas_Vector2Functions_GetElement: Source)",
  3004. "Components": {
  3005. "Component_[10391575701226630343]": {
  3006. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3007. "Id": 10391575701226630343,
  3008. "sourceEndpoint": {
  3009. "nodeId": {
  3010. "id": 169416709982886
  3011. },
  3012. "slotId": {
  3013. "m_id": "{B4BF43D7-5E8C-4B36-8351-ADA6309C26EA}"
  3014. }
  3015. },
  3016. "targetEndpoint": {
  3017. "nodeId": {
  3018. "id": 169390940179110
  3019. },
  3020. "slotId": {
  3021. "m_id": "{B8E2FAE3-E48A-4514-86DC-86B10C906BCD}"
  3022. }
  3023. }
  3024. }
  3025. }
  3026. },
  3027. {
  3028. "Id": {
  3029. "id": 181300884490918
  3030. },
  3031. "Name": "srcEndpoint=(ScriptCanvas_Vector2Functions_GetElement: Number), destEndpoint=(Add (+): Number 0)",
  3032. "Components": {
  3033. "Component_[3519937373455700972]": {
  3034. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3035. "Id": 3519937373455700972,
  3036. "sourceEndpoint": {
  3037. "nodeId": {
  3038. "id": 169390940179110
  3039. },
  3040. "slotId": {
  3041. "m_id": "{AB19148F-4CBB-40AD-B79A-BA679AF940B6}"
  3042. }
  3043. },
  3044. "targetEndpoint": {
  3045. "nodeId": {
  3046. "id": 169382350244518
  3047. },
  3048. "slotId": {
  3049. "m_id": "{59115C65-1BC5-45EC-AEF0-B71D318C5D17}"
  3050. }
  3051. }
  3052. }
  3053. }
  3054. },
  3055. {
  3056. "Id": {
  3057. "id": 181305179458214
  3058. },
  3059. "Name": "srcEndpoint=(GetCanvasPosition: Out), destEndpoint=(ScriptCanvas_Vector2Functions_GetElement: In)",
  3060. "Components": {
  3061. "Component_[14373391825849843704]": {
  3062. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3063. "Id": 14373391825849843704,
  3064. "sourceEndpoint": {
  3065. "nodeId": {
  3066. "id": 169416709982886
  3067. },
  3068. "slotId": {
  3069. "m_id": "{35E99D4F-EB80-4D6A-A080-85F0E6B5B7D0}"
  3070. }
  3071. },
  3072. "targetEndpoint": {
  3073. "nodeId": {
  3074. "id": 169390940179110
  3075. },
  3076. "slotId": {
  3077. "m_id": "{CB66EFD0-0528-4873-AB86-A15F02B36278}"
  3078. }
  3079. }
  3080. }
  3081. }
  3082. },
  3083. {
  3084. "Id": {
  3085. "id": 181309474425510
  3086. },
  3087. "Name": "srcEndpoint=(ScriptCanvas_Vector2Functions_GetElement: Out), destEndpoint=(Add (+): In)",
  3088. "Components": {
  3089. "Component_[12790076281454063134]": {
  3090. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3091. "Id": 12790076281454063134,
  3092. "sourceEndpoint": {
  3093. "nodeId": {
  3094. "id": 169390940179110
  3095. },
  3096. "slotId": {
  3097. "m_id": "{9622F69D-509B-4DF7-ACEA-A9586EE198D7}"
  3098. }
  3099. },
  3100. "targetEndpoint": {
  3101. "nodeId": {
  3102. "id": 169382350244518
  3103. },
  3104. "slotId": {
  3105. "m_id": "{68A4222D-5C0F-454E-B945-B18B9952353F}"
  3106. }
  3107. }
  3108. }
  3109. }
  3110. },
  3111. {
  3112. "Id": {
  3113. "id": 181313769392806
  3114. },
  3115. "Name": "srcEndpoint=(InputHandler: Held), destEndpoint=(GetCanvasPosition: In)",
  3116. "Components": {
  3117. "Component_[4401536860732012602]": {
  3118. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3119. "Id": 4401536860732012602,
  3120. "sourceEndpoint": {
  3121. "nodeId": {
  3122. "id": 169433889852070
  3123. },
  3124. "slotId": {
  3125. "m_id": "{9B089E7D-3864-4218-BAF9-007F456BE575}"
  3126. }
  3127. },
  3128. "targetEndpoint": {
  3129. "nodeId": {
  3130. "id": 169416709982886
  3131. },
  3132. "slotId": {
  3133. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  3134. }
  3135. }
  3136. }
  3137. }
  3138. },
  3139. {
  3140. "Id": {
  3141. "id": 181318064360102
  3142. },
  3143. "Name": "srcEndpoint=(InputHandler: value), destEndpoint=(Add (+): Number 1)",
  3144. "Components": {
  3145. "Component_[12348138927043259227]": {
  3146. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3147. "Id": 12348138927043259227,
  3148. "sourceEndpoint": {
  3149. "nodeId": {
  3150. "id": 169433889852070
  3151. },
  3152. "slotId": {
  3153. "m_id": "{19EEC514-9261-4B55-BE96-969E933EF0DC}"
  3154. }
  3155. },
  3156. "targetEndpoint": {
  3157. "nodeId": {
  3158. "id": 169382350244518
  3159. },
  3160. "slotId": {
  3161. "m_id": "{239D01DA-E7E4-4867-9FB4-8F45D5170D59}"
  3162. }
  3163. }
  3164. }
  3165. }
  3166. },
  3167. {
  3168. "Id": {
  3169. "id": 181322359327398
  3170. },
  3171. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(ScriptCanvas_Vector2Functions_SetY: In)",
  3172. "Components": {
  3173. "Component_[12053759659193805468]": {
  3174. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3175. "Id": 12053759659193805468,
  3176. "sourceEndpoint": {
  3177. "nodeId": {
  3178. "id": 169382350244518
  3179. },
  3180. "slotId": {
  3181. "m_id": "{8635CC65-2D11-4C26-ABB4-26ABEFC51B4F}"
  3182. }
  3183. },
  3184. "targetEndpoint": {
  3185. "nodeId": {
  3186. "id": 169386645211814
  3187. },
  3188. "slotId": {
  3189. "m_id": "{2FF98CF2-8ADB-4668-AF37-EA36A049D566}"
  3190. }
  3191. }
  3192. }
  3193. }
  3194. },
  3195. {
  3196. "Id": {
  3197. "id": 181326654294694
  3198. },
  3199. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(ScriptCanvas_Vector2Functions_SetY: Y)",
  3200. "Components": {
  3201. "Component_[15756654526597214470]": {
  3202. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3203. "Id": 15756654526597214470,
  3204. "sourceEndpoint": {
  3205. "nodeId": {
  3206. "id": 169382350244518
  3207. },
  3208. "slotId": {
  3209. "m_id": "{C0451A33-6F40-42A2-84BD-52815868A0E0}"
  3210. }
  3211. },
  3212. "targetEndpoint": {
  3213. "nodeId": {
  3214. "id": 169386645211814
  3215. },
  3216. "slotId": {
  3217. "m_id": "{4B2D8F3B-EA0B-4FB3-B525-AD7C98DDFE8A}"
  3218. }
  3219. }
  3220. }
  3221. }
  3222. },
  3223. {
  3224. "Id": {
  3225. "id": 181330949261990
  3226. },
  3227. "Name": "srcEndpoint=(ScriptCanvas_Vector2Functions_SetY: Out), destEndpoint=(SetCanvasPosition: In)",
  3228. "Components": {
  3229. "Component_[13895591211885170667]": {
  3230. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3231. "Id": 13895591211885170667,
  3232. "sourceEndpoint": {
  3233. "nodeId": {
  3234. "id": 169386645211814
  3235. },
  3236. "slotId": {
  3237. "m_id": "{66717A7E-01E9-4927-B605-3A3378C9E38F}"
  3238. }
  3239. },
  3240. "targetEndpoint": {
  3241. "nodeId": {
  3242. "id": 169373760309926
  3243. },
  3244. "slotId": {
  3245. "m_id": "{3A5707AF-FAA0-4828-8F5E-FBE4A1826BEF}"
  3246. }
  3247. }
  3248. }
  3249. }
  3250. },
  3251. {
  3252. "Id": {
  3253. "id": 181335244229286
  3254. },
  3255. "Name": "srcEndpoint=(ScriptCanvas_Vector2Functions_SetY: Vector2), destEndpoint=(SetCanvasPosition: Vector2: 1)",
  3256. "Components": {
  3257. "Component_[9126906937575751390]": {
  3258. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3259. "Id": 9126906937575751390,
  3260. "sourceEndpoint": {
  3261. "nodeId": {
  3262. "id": 169386645211814
  3263. },
  3264. "slotId": {
  3265. "m_id": "{D3521A76-8015-4EE3-87B5-6EDE3603FBE2}"
  3266. }
  3267. },
  3268. "targetEndpoint": {
  3269. "nodeId": {
  3270. "id": 169373760309926
  3271. },
  3272. "slotId": {
  3273. "m_id": "{E990AAF1-D67F-48A6-B088-F5A6208E2102}"
  3274. }
  3275. }
  3276. }
  3277. }
  3278. },
  3279. {
  3280. "Id": {
  3281. "id": 181339539196582
  3282. },
  3283. "Name": "srcEndpoint=(GetCanvasPosition: Vector2), destEndpoint=(ScriptCanvas_Vector2Functions_SetY: Source)",
  3284. "Components": {
  3285. "Component_[2272272118893792197]": {
  3286. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3287. "Id": 2272272118893792197,
  3288. "sourceEndpoint": {
  3289. "nodeId": {
  3290. "id": 169416709982886
  3291. },
  3292. "slotId": {
  3293. "m_id": "{B4BF43D7-5E8C-4B36-8351-ADA6309C26EA}"
  3294. }
  3295. },
  3296. "targetEndpoint": {
  3297. "nodeId": {
  3298. "id": 169386645211814
  3299. },
  3300. "slotId": {
  3301. "m_id": "{5A68DB6F-A438-4D1F-B03C-21AE1062C321}"
  3302. }
  3303. }
  3304. }
  3305. }
  3306. },
  3307. {
  3308. "Id": {
  3309. "id": 181343834163878
  3310. },
  3311. "Name": "srcEndpoint=(InputHandler: On Connect Event), destEndpoint=(InputHandler: Connect Event)",
  3312. "Components": {
  3313. "Component_[12606701997947012517]": {
  3314. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3315. "Id": 12606701997947012517,
  3316. "sourceEndpoint": {
  3317. "nodeId": {
  3318. "id": 169433889852070
  3319. },
  3320. "slotId": {
  3321. "m_id": "{D6A675B8-53BF-41FC-8414-E416614D0ACE}"
  3322. }
  3323. },
  3324. "targetEndpoint": {
  3325. "nodeId": {
  3326. "id": 169412415015590
  3327. },
  3328. "slotId": {
  3329. "m_id": "{6EDFCF1B-F76C-4D17-AE99-CC3083628A37}"
  3330. }
  3331. }
  3332. }
  3333. }
  3334. },
  3335. {
  3336. "Id": {
  3337. "id": 181348129131174
  3338. },
  3339. "Name": "srcEndpoint=(GetCanvasPosition: Vector2), destEndpoint=(Send Script Event: ScreenPosition)",
  3340. "Components": {
  3341. "Component_[10287014541820852134]": {
  3342. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3343. "Id": 10287014541820852134,
  3344. "sourceEndpoint": {
  3345. "nodeId": {
  3346. "id": 169429594884774
  3347. },
  3348. "slotId": {
  3349. "m_id": "{B4BF43D7-5E8C-4B36-8351-ADA6309C26EA}"
  3350. }
  3351. },
  3352. "targetEndpoint": {
  3353. "nodeId": {
  3354. "id": 169399530113702
  3355. },
  3356. "slotId": {
  3357. "m_id": "{4442A070-92A8-45D1-99EF-3FD040C2C7E4}"
  3358. }
  3359. }
  3360. }
  3361. }
  3362. },
  3363. {
  3364. "Id": {
  3365. "id": 181352424098470
  3366. },
  3367. "Name": "srcEndpoint=(GetCanvasPosition: Out), destEndpoint=(Send Script Event: In)",
  3368. "Components": {
  3369. "Component_[6622415067641538468]": {
  3370. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3371. "Id": 6622415067641538468,
  3372. "sourceEndpoint": {
  3373. "nodeId": {
  3374. "id": 169429594884774
  3375. },
  3376. "slotId": {
  3377. "m_id": "{35E99D4F-EB80-4D6A-A080-85F0E6B5B7D0}"
  3378. }
  3379. },
  3380. "targetEndpoint": {
  3381. "nodeId": {
  3382. "id": 169399530113702
  3383. },
  3384. "slotId": {
  3385. "m_id": "{E3E10C28-F1F0-427D-99BB-3874F03E97B9}"
  3386. }
  3387. }
  3388. }
  3389. }
  3390. },
  3391. {
  3392. "Id": {
  3393. "id": 181356719065766
  3394. },
  3395. "Name": "srcEndpoint=(InputHandler: Held), destEndpoint=(GetCanvasPosition: In)",
  3396. "Components": {
  3397. "Component_[452767803164440664]": {
  3398. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3399. "Id": 452767803164440664,
  3400. "sourceEndpoint": {
  3401. "nodeId": {
  3402. "id": 169412415015590
  3403. },
  3404. "slotId": {
  3405. "m_id": "{32DEDD4C-E4B7-4080-A048-1D913E77B773}"
  3406. }
  3407. },
  3408. "targetEndpoint": {
  3409. "nodeId": {
  3410. "id": 169429594884774
  3411. },
  3412. "slotId": {
  3413. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  3414. }
  3415. }
  3416. }
  3417. }
  3418. },
  3419. {
  3420. "Id": {
  3421. "id": 181361014033062
  3422. },
  3423. "Name": "srcEndpoint=(InputHandler: Pressed), destEndpoint=(GetCanvasPosition: In)",
  3424. "Components": {
  3425. "Component_[14199929753473353821]": {
  3426. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3427. "Id": 14199929753473353821,
  3428. "sourceEndpoint": {
  3429. "nodeId": {
  3430. "id": 169438184819366
  3431. },
  3432. "slotId": {
  3433. "m_id": "{25C8DC74-EADB-4B9B-B0D7-617F944034D2}"
  3434. }
  3435. },
  3436. "targetEndpoint": {
  3437. "nodeId": {
  3438. "id": 169403825080998
  3439. },
  3440. "slotId": {
  3441. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  3442. }
  3443. }
  3444. }
  3445. }
  3446. },
  3447. {
  3448. "Id": {
  3449. "id": 181365309000358
  3450. },
  3451. "Name": "srcEndpoint=(InputHandler: Released), destEndpoint=(GetCanvasPosition: In)",
  3452. "Components": {
  3453. "Component_[3749942640302838403]": {
  3454. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3455. "Id": 3749942640302838403,
  3456. "sourceEndpoint": {
  3457. "nodeId": {
  3458. "id": 169438184819366
  3459. },
  3460. "slotId": {
  3461. "m_id": "{5252AF61-805F-4E0F-A69E-FC9C50EC1D94}"
  3462. }
  3463. },
  3464. "targetEndpoint": {
  3465. "nodeId": {
  3466. "id": 169403825080998
  3467. },
  3468. "slotId": {
  3469. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  3470. }
  3471. }
  3472. }
  3473. }
  3474. },
  3475. {
  3476. "Id": {
  3477. "id": 181369603967654
  3478. },
  3479. "Name": "srcEndpoint=(InputHandler: Pressed), destEndpoint=(GetCanvasPosition: In)",
  3480. "Components": {
  3481. "Component_[15961161957248742092]": {
  3482. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3483. "Id": 15961161957248742092,
  3484. "sourceEndpoint": {
  3485. "nodeId": {
  3486. "id": 169433889852070
  3487. },
  3488. "slotId": {
  3489. "m_id": "{93010610-58C7-411F-9A0D-A8C9C9A4ACB7}"
  3490. }
  3491. },
  3492. "targetEndpoint": {
  3493. "nodeId": {
  3494. "id": 169416709982886
  3495. },
  3496. "slotId": {
  3497. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  3498. }
  3499. }
  3500. }
  3501. }
  3502. },
  3503. {
  3504. "Id": {
  3505. "id": 181373898934950
  3506. },
  3507. "Name": "srcEndpoint=(InputHandler: Released), destEndpoint=(GetCanvasPosition: In)",
  3508. "Components": {
  3509. "Component_[1185743344531278003]": {
  3510. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3511. "Id": 1185743344531278003,
  3512. "sourceEndpoint": {
  3513. "nodeId": {
  3514. "id": 169433889852070
  3515. },
  3516. "slotId": {
  3517. "m_id": "{F1A32365-160C-4226-B930-88DBC8564BD8}"
  3518. }
  3519. },
  3520. "targetEndpoint": {
  3521. "nodeId": {
  3522. "id": 169416709982886
  3523. },
  3524. "slotId": {
  3525. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  3526. }
  3527. }
  3528. }
  3529. }
  3530. },
  3531. {
  3532. "Id": {
  3533. "id": 181378193902246
  3534. },
  3535. "Name": "srcEndpoint=(InputHandler: Pressed), destEndpoint=(GetCanvasPosition: In)",
  3536. "Components": {
  3537. "Component_[3357354844815359703]": {
  3538. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3539. "Id": 3357354844815359703,
  3540. "sourceEndpoint": {
  3541. "nodeId": {
  3542. "id": 169412415015590
  3543. },
  3544. "slotId": {
  3545. "m_id": "{83DEC80B-077A-418C-83BA-95D7F30C3512}"
  3546. }
  3547. },
  3548. "targetEndpoint": {
  3549. "nodeId": {
  3550. "id": 169429594884774
  3551. },
  3552. "slotId": {
  3553. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  3554. }
  3555. }
  3556. }
  3557. }
  3558. },
  3559. {
  3560. "Id": {
  3561. "id": 181382488869542
  3562. },
  3563. "Name": "srcEndpoint=(InputHandler: Released), destEndpoint=(GetCanvasPosition: In)",
  3564. "Components": {
  3565. "Component_[7646104517219967198]": {
  3566. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3567. "Id": 7646104517219967198,
  3568. "sourceEndpoint": {
  3569. "nodeId": {
  3570. "id": 169412415015590
  3571. },
  3572. "slotId": {
  3573. "m_id": "{60EC4563-784C-472A-945A-5145CC5325DF}"
  3574. }
  3575. },
  3576. "targetEndpoint": {
  3577. "nodeId": {
  3578. "id": 169429594884774
  3579. },
  3580. "slotId": {
  3581. "m_id": "{7BEF768D-FA7A-41B3-BEC6-48DE12626EE6}"
  3582. }
  3583. }
  3584. }
  3585. }
  3586. }
  3587. ],
  3588. "m_scriptEventAssets": [
  3589. [
  3590. {
  3591. "id": 169399530113702
  3592. },
  3593. {}
  3594. ]
  3595. ]
  3596. },
  3597. "m_assetType": "{00000000-0000-0000-589D-0000FE010000}",
  3598. "versionData": {
  3599. "_grammarVersion": 1,
  3600. "_runtimeVersion": 1,
  3601. "_fileVersion": 1
  3602. },
  3603. "m_variableCounter": 1,
  3604. "GraphCanvasData": [
  3605. {
  3606. "Key": {
  3607. "id": 169369465342630
  3608. },
  3609. "Value": {
  3610. "ComponentData": {
  3611. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  3612. "$type": "SceneComponentSaveData",
  3613. "ViewParams": {
  3614. "Scale": 0.685484108625595,
  3615. "AnchorX": 110.87055206298828,
  3616. "AnchorY": 840.2820434570312
  3617. }
  3618. }
  3619. }
  3620. }
  3621. },
  3622. {
  3623. "Key": {
  3624. "id": 169373760309926
  3625. },
  3626. "Value": {
  3627. "ComponentData": {
  3628. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3629. "$type": "NodeSaveData"
  3630. },
  3631. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3632. "$type": "GeneralNodeTitleComponentSaveData",
  3633. "PaletteOverride": "MethodNodeTitlePalette"
  3634. },
  3635. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3636. "$type": "GeometrySaveData",
  3637. "Position": [
  3638. 2720.0,
  3639. 880.0
  3640. ]
  3641. },
  3642. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3643. "$type": "StylingComponentSaveData",
  3644. "SubStyle": ".method"
  3645. },
  3646. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3647. "$type": "PersistentIdComponentSaveData",
  3648. "PersistentId": "{F39D43DB-0744-4FF6-AC9E-FFA1A9414F92}"
  3649. }
  3650. }
  3651. }
  3652. },
  3653. {
  3654. "Key": {
  3655. "id": 169378055277222
  3656. },
  3657. "Value": {
  3658. "ComponentData": {
  3659. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3660. "$type": "NodeSaveData"
  3661. },
  3662. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3663. "$type": "GeneralNodeTitleComponentSaveData",
  3664. "PaletteOverride": "MathNodeTitlePalette"
  3665. },
  3666. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3667. "$type": "GeometrySaveData",
  3668. "Position": [
  3669. 2280.0,
  3670. 420.0
  3671. ]
  3672. },
  3673. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3674. "$type": "StylingComponentSaveData"
  3675. },
  3676. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3677. "$type": "PersistentIdComponentSaveData",
  3678. "PersistentId": "{EF906BCF-4A41-431C-9B0A-F07084466329}"
  3679. }
  3680. }
  3681. }
  3682. },
  3683. {
  3684. "Key": {
  3685. "id": 169382350244518
  3686. },
  3687. "Value": {
  3688. "ComponentData": {
  3689. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3690. "$type": "NodeSaveData"
  3691. },
  3692. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3693. "$type": "GeneralNodeTitleComponentSaveData",
  3694. "PaletteOverride": "MathNodeTitlePalette"
  3695. },
  3696. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3697. "$type": "GeometrySaveData",
  3698. "Position": [
  3699. 1940.0,
  3700. 880.0
  3701. ]
  3702. },
  3703. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3704. "$type": "StylingComponentSaveData"
  3705. },
  3706. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3707. "$type": "PersistentIdComponentSaveData",
  3708. "PersistentId": "{C5A1664C-B969-4DEA-BE60-BA314BB199B4}"
  3709. }
  3710. }
  3711. }
  3712. },
  3713. {
  3714. "Key": {
  3715. "id": 169386645211814
  3716. },
  3717. "Value": {
  3718. "ComponentData": {
  3719. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3720. "$type": "NodeSaveData"
  3721. },
  3722. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3723. "$type": "GeneralNodeTitleComponentSaveData",
  3724. "PaletteOverride": "MathNodeTitlePalette"
  3725. },
  3726. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3727. "$type": "GeometrySaveData",
  3728. "Position": [
  3729. 2320.0,
  3730. 880.0
  3731. ]
  3732. },
  3733. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3734. "$type": "StylingComponentSaveData"
  3735. },
  3736. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3737. "$type": "PersistentIdComponentSaveData",
  3738. "PersistentId": "{BAFA2321-1F63-4330-95A3-54E4910968FF}"
  3739. }
  3740. }
  3741. }
  3742. },
  3743. {
  3744. "Key": {
  3745. "id": 169390940179110
  3746. },
  3747. "Value": {
  3748. "ComponentData": {
  3749. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3750. "$type": "NodeSaveData"
  3751. },
  3752. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3753. "$type": "GeneralNodeTitleComponentSaveData",
  3754. "PaletteOverride": "MathNodeTitlePalette"
  3755. },
  3756. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3757. "$type": "GeometrySaveData",
  3758. "Position": [
  3759. 1540.0,
  3760. 780.0
  3761. ]
  3762. },
  3763. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3764. "$type": "StylingComponentSaveData"
  3765. },
  3766. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3767. "$type": "PersistentIdComponentSaveData",
  3768. "PersistentId": "{CE93B27D-F205-4155-9A26-35140B9DC5DD}"
  3769. }
  3770. }
  3771. }
  3772. },
  3773. {
  3774. "Key": {
  3775. "id": 169395235146406
  3776. },
  3777. "Value": {
  3778. "ComponentData": {
  3779. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3780. "$type": "NodeSaveData"
  3781. },
  3782. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3783. "$type": "GeneralNodeTitleComponentSaveData",
  3784. "PaletteOverride": "MathNodeTitlePalette"
  3785. },
  3786. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3787. "$type": "GeometrySaveData",
  3788. "Position": [
  3789. 1520.0,
  3790. 320.0
  3791. ]
  3792. },
  3793. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3794. "$type": "StylingComponentSaveData"
  3795. },
  3796. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3797. "$type": "PersistentIdComponentSaveData",
  3798. "PersistentId": "{70EB6E26-EDB8-4681-A72C-A299F7759FEB}"
  3799. }
  3800. }
  3801. }
  3802. },
  3803. {
  3804. "Key": {
  3805. "id": 169399530113702
  3806. },
  3807. "Value": {
  3808. "ComponentData": {
  3809. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3810. "$type": "NodeSaveData"
  3811. },
  3812. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3813. "$type": "GeneralNodeTitleComponentSaveData",
  3814. "PaletteOverride": "MethodNodeTitlePalette"
  3815. },
  3816. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3817. "$type": "GeometrySaveData",
  3818. "Position": [
  3819. 1460.0,
  3820. 1320.0
  3821. ]
  3822. },
  3823. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3824. "$type": "StylingComponentSaveData",
  3825. "SubStyle": ".method"
  3826. },
  3827. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3828. "$type": "PersistentIdComponentSaveData",
  3829. "PersistentId": "{BB553775-1196-4DF2-A00E-69103C3CDDF9}"
  3830. }
  3831. }
  3832. }
  3833. },
  3834. {
  3835. "Key": {
  3836. "id": 169403825080998
  3837. },
  3838. "Value": {
  3839. "ComponentData": {
  3840. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3841. "$type": "NodeSaveData"
  3842. },
  3843. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3844. "$type": "GeneralNodeTitleComponentSaveData",
  3845. "PaletteOverride": "MethodNodeTitlePalette"
  3846. },
  3847. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3848. "$type": "GeometrySaveData",
  3849. "Position": [
  3850. 1020.0,
  3851. 320.0
  3852. ]
  3853. },
  3854. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3855. "$type": "StylingComponentSaveData",
  3856. "SubStyle": ".method"
  3857. },
  3858. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3859. "$type": "PersistentIdComponentSaveData",
  3860. "PersistentId": "{4BAFC075-0DE1-4B04-87FA-EFBF46890B6B}"
  3861. }
  3862. }
  3863. }
  3864. },
  3865. {
  3866. "Key": {
  3867. "id": 169408120048294
  3868. },
  3869. "Value": {
  3870. "ComponentData": {
  3871. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3872. "$type": "NodeSaveData"
  3873. },
  3874. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3875. "$type": "GeneralNodeTitleComponentSaveData",
  3876. "PaletteOverride": "MathNodeTitlePalette"
  3877. },
  3878. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3879. "$type": "GeometrySaveData",
  3880. "Position": [
  3881. 1900.0,
  3882. 420.0
  3883. ]
  3884. },
  3885. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3886. "$type": "StylingComponentSaveData"
  3887. },
  3888. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3889. "$type": "PersistentIdComponentSaveData",
  3890. "PersistentId": "{C61BA05C-5FD1-4F94-814D-11395ED0DCB2}"
  3891. }
  3892. }
  3893. }
  3894. },
  3895. {
  3896. "Key": {
  3897. "id": 169412415015590
  3898. },
  3899. "Value": {
  3900. "ComponentData": {
  3901. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3902. "$type": "NodeSaveData"
  3903. },
  3904. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3905. "$type": "GeneralNodeTitleComponentSaveData",
  3906. "PaletteOverride": "DefaultNodeTitlePalette"
  3907. },
  3908. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3909. "$type": "GeometrySaveData",
  3910. "Position": [
  3911. 440.0,
  3912. 1120.0
  3913. ]
  3914. },
  3915. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3916. "$type": "StylingComponentSaveData"
  3917. },
  3918. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3919. "$type": "PersistentIdComponentSaveData",
  3920. "PersistentId": "{6EA50B49-3816-429A-AA66-5D3375D2A7EB}"
  3921. }
  3922. }
  3923. }
  3924. },
  3925. {
  3926. "Key": {
  3927. "id": 169416709982886
  3928. },
  3929. "Value": {
  3930. "ComponentData": {
  3931. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3932. "$type": "NodeSaveData"
  3933. },
  3934. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3935. "$type": "GeneralNodeTitleComponentSaveData",
  3936. "PaletteOverride": "MethodNodeTitlePalette"
  3937. },
  3938. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3939. "$type": "GeometrySaveData",
  3940. "Position": [
  3941. 1040.0,
  3942. 760.0
  3943. ]
  3944. },
  3945. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3946. "$type": "StylingComponentSaveData",
  3947. "SubStyle": ".method"
  3948. },
  3949. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3950. "$type": "PersistentIdComponentSaveData",
  3951. "PersistentId": "{4607ECBA-33AF-4577-B113-D5DEFC422EDC}"
  3952. }
  3953. }
  3954. }
  3955. },
  3956. {
  3957. "Key": {
  3958. "id": 169421004950182
  3959. },
  3960. "Value": {
  3961. "ComponentData": {
  3962. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3963. "$type": "NodeSaveData"
  3964. },
  3965. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3966. "$type": "GeometrySaveData",
  3967. "Position": [
  3968. 80.0,
  3969. 140.0
  3970. ]
  3971. },
  3972. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3973. "$type": "EBusHandlerNodeDescriptorSaveData",
  3974. "EventIds": [
  3975. {
  3976. "Value": 245425936
  3977. }
  3978. ]
  3979. },
  3980. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3981. "$type": "StylingComponentSaveData"
  3982. },
  3983. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3984. "$type": "PersistentIdComponentSaveData",
  3985. "PersistentId": "{C599DBA9-D6C6-44D8-94A7-0DFB1654BC18}"
  3986. }
  3987. }
  3988. }
  3989. },
  3990. {
  3991. "Key": {
  3992. "id": 169425299917478
  3993. },
  3994. "Value": {
  3995. "ComponentData": {
  3996. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3997. "$type": "NodeSaveData"
  3998. },
  3999. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4000. "$type": "GeneralNodeTitleComponentSaveData",
  4001. "PaletteOverride": "MethodNodeTitlePalette"
  4002. },
  4003. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4004. "$type": "GeometrySaveData",
  4005. "Position": [
  4006. 2700.0,
  4007. 420.0
  4008. ]
  4009. },
  4010. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4011. "$type": "StylingComponentSaveData",
  4012. "SubStyle": ".method"
  4013. },
  4014. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4015. "$type": "PersistentIdComponentSaveData",
  4016. "PersistentId": "{A6593054-5AA3-4C4C-B3B7-BFF767A41763}"
  4017. }
  4018. }
  4019. }
  4020. },
  4021. {
  4022. "Key": {
  4023. "id": 169429594884774
  4024. },
  4025. "Value": {
  4026. "ComponentData": {
  4027. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4028. "$type": "NodeSaveData"
  4029. },
  4030. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4031. "$type": "GeneralNodeTitleComponentSaveData",
  4032. "PaletteOverride": "MethodNodeTitlePalette"
  4033. },
  4034. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4035. "$type": "GeometrySaveData",
  4036. "Position": [
  4037. 940.0,
  4038. 1320.0
  4039. ]
  4040. },
  4041. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4042. "$type": "StylingComponentSaveData",
  4043. "SubStyle": ".method"
  4044. },
  4045. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4046. "$type": "PersistentIdComponentSaveData",
  4047. "PersistentId": "{9139966B-2057-4918-A6EC-7A37352FBD61}"
  4048. }
  4049. }
  4050. }
  4051. },
  4052. {
  4053. "Key": {
  4054. "id": 169433889852070
  4055. },
  4056. "Value": {
  4057. "ComponentData": {
  4058. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4059. "$type": "NodeSaveData"
  4060. },
  4061. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4062. "$type": "GeneralNodeTitleComponentSaveData",
  4063. "PaletteOverride": "DefaultNodeTitlePalette"
  4064. },
  4065. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4066. "$type": "GeometrySaveData",
  4067. "Position": [
  4068. 460.0,
  4069. 700.0
  4070. ]
  4071. },
  4072. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4073. "$type": "StylingComponentSaveData"
  4074. },
  4075. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4076. "$type": "PersistentIdComponentSaveData",
  4077. "PersistentId": "{0D0E6732-EFC6-462D-938C-5B6AEE972559}"
  4078. }
  4079. }
  4080. }
  4081. },
  4082. {
  4083. "Key": {
  4084. "id": 169438184819366
  4085. },
  4086. "Value": {
  4087. "ComponentData": {
  4088. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4089. "$type": "NodeSaveData"
  4090. },
  4091. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4092. "$type": "GeneralNodeTitleComponentSaveData",
  4093. "PaletteOverride": "DefaultNodeTitlePalette"
  4094. },
  4095. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4096. "$type": "GeometrySaveData",
  4097. "Position": [
  4098. 440.0,
  4099. 300.0
  4100. ]
  4101. },
  4102. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4103. "$type": "StylingComponentSaveData"
  4104. },
  4105. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4106. "$type": "PersistentIdComponentSaveData",
  4107. "PersistentId": "{36D61666-75BE-4399-AD3C-0D84546A507C}"
  4108. }
  4109. }
  4110. }
  4111. }
  4112. ],
  4113. "StatisticsHelper": {
  4114. "InstanceCounter": [
  4115. {
  4116. "Key": 1244476766431948410,
  4117. "Value": 2
  4118. },
  4119. {
  4120. "Key": 5842116761103598202,
  4121. "Value": 1
  4122. },
  4123. {
  4124. "Key": 7307122813773184931,
  4125. "Value": 1
  4126. },
  4127. {
  4128. "Key": 7307191258372029523,
  4129. "Value": 1
  4130. },
  4131. {
  4132. "Key": 7413323401356093379,
  4133. "Value": 3
  4134. },
  4135. {
  4136. "Key": 12248403068068564232,
  4137. "Value": 1
  4138. },
  4139. {
  4140. "Key": 13774516334725444745,
  4141. "Value": 2
  4142. },
  4143. {
  4144. "Key": 13774516340444010011,
  4145. "Value": 3
  4146. },
  4147. {
  4148. "Key": 16640522114938877080,
  4149. "Value": 2
  4150. }
  4151. ]
  4152. }
  4153. },
  4154. "Component_[481057464355264045]": {
  4155. "$type": "EditorGraphVariableManagerComponent",
  4156. "Id": 481057464355264045
  4157. }
  4158. }
  4159. }
  4160. }
  4161. }