nose_middle_script.scriptcanvas 207 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 11218911564323
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[5088701856173636205]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 5088701856173636205,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{04507A1B-EB87-4A66-97D5-FBED973CDD5F}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 1
  26. },
  27. "isNullPointer": false,
  28. "$type": "EntityId",
  29. "value": {
  30. "id": 2901262558
  31. }
  32. },
  33. "VariableId": {
  34. "m_id": "{04507A1B-EB87-4A66-97D5-FBED973CDD5F}"
  35. },
  36. "VariableName": "nose_tip",
  37. "InitialValueSource": 1
  38. }
  39. },
  40. {
  41. "Key": {
  42. "m_id": "{30C8ACC4-63F6-420F-B662-38A9BB7A5BEB}"
  43. },
  44. "Value": {
  45. "Datum": {
  46. "isOverloadedStorage": false,
  47. "scriptCanvasType": {
  48. "m_type": 3
  49. },
  50. "isNullPointer": false,
  51. "$type": "double",
  52. "value": 0.0
  53. },
  54. "VariableId": {
  55. "m_id": "{30C8ACC4-63F6-420F-B662-38A9BB7A5BEB}"
  56. },
  57. "VariableName": "initial_tip_y"
  58. }
  59. },
  60. {
  61. "Key": {
  62. "m_id": "{A8E84DC5-8189-48FA-9BB6-90109E8CA129}"
  63. },
  64. "Value": {
  65. "Datum": {
  66. "isOverloadedStorage": false,
  67. "scriptCanvasType": {
  68. "m_type": 3
  69. },
  70. "isNullPointer": false,
  71. "$type": "double",
  72. "value": 0.0
  73. },
  74. "VariableId": {
  75. "m_id": "{A8E84DC5-8189-48FA-9BB6-90109E8CA129}"
  76. },
  77. "VariableName": "initial_middle_y"
  78. }
  79. }
  80. ]
  81. }
  82. },
  83. "Component_[5568307693467492009]": {
  84. "$type": "EditorGraph",
  85. "Id": 5568307693467492009,
  86. "m_graphData": {
  87. "m_nodes": [
  88. {
  89. "Id": {
  90. "id": 11279041106467
  91. },
  92. "Name": "SC Node(GetVariable)",
  93. "Components": {
  94. "Component_[11243374519757531668]": {
  95. "$type": "GetVariableNode",
  96. "Id": 11243374519757531668,
  97. "Slots": [
  98. {
  99. "id": {
  100. "m_id": "{3FC9B208-A798-442A-B498-16E809538AD5}"
  101. },
  102. "contracts": [
  103. {
  104. "$type": "SlotTypeContract"
  105. }
  106. ],
  107. "slotName": "In",
  108. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  109. "Descriptor": {
  110. "ConnectionType": 1,
  111. "SlotType": 1
  112. }
  113. },
  114. {
  115. "id": {
  116. "m_id": "{EE9C1663-9DD2-463F-A7DE-451C3FB642AD}"
  117. },
  118. "contracts": [
  119. {
  120. "$type": "SlotTypeContract"
  121. }
  122. ],
  123. "slotName": "Out",
  124. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  125. "Descriptor": {
  126. "ConnectionType": 2,
  127. "SlotType": 1
  128. }
  129. },
  130. {
  131. "id": {
  132. "m_id": "{BCF661B0-844C-4D84-BD7B-CA21C9369977}"
  133. },
  134. "contracts": [
  135. {
  136. "$type": "SlotTypeContract"
  137. }
  138. ],
  139. "slotName": "Number",
  140. "DisplayDataType": {
  141. "m_type": 3
  142. },
  143. "Descriptor": {
  144. "ConnectionType": 2,
  145. "SlotType": 2
  146. },
  147. "DataType": 1
  148. }
  149. ],
  150. "m_variableId": {
  151. "m_id": "{A8E84DC5-8189-48FA-9BB6-90109E8CA129}"
  152. },
  153. "m_variableDataOutSlotId": {
  154. "m_id": "{BCF661B0-844C-4D84-BD7B-CA21C9369977}"
  155. }
  156. }
  157. }
  158. },
  159. {
  160. "Id": {
  161. "id": 11266156204579
  162. },
  163. "Name": "SC Node(SetVariable)",
  164. "Components": {
  165. "Component_[11323411598930590194]": {
  166. "$type": "SetVariableNode",
  167. "Id": 11323411598930590194,
  168. "Slots": [
  169. {
  170. "id": {
  171. "m_id": "{2F10F342-BEC0-4E46-BF6E-E125C52CC8F2}"
  172. },
  173. "contracts": [
  174. {
  175. "$type": "SlotTypeContract"
  176. }
  177. ],
  178. "slotName": "In",
  179. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  180. "Descriptor": {
  181. "ConnectionType": 1,
  182. "SlotType": 1
  183. }
  184. },
  185. {
  186. "id": {
  187. "m_id": "{0DA71907-FAC7-4230-B446-3A1474D66D8C}"
  188. },
  189. "contracts": [
  190. {
  191. "$type": "SlotTypeContract"
  192. }
  193. ],
  194. "slotName": "Out",
  195. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  196. "Descriptor": {
  197. "ConnectionType": 2,
  198. "SlotType": 1
  199. }
  200. },
  201. {
  202. "id": {
  203. "m_id": "{A18BD500-A51A-49AA-844B-961AB0D125A5}"
  204. },
  205. "contracts": [
  206. {
  207. "$type": "SlotTypeContract"
  208. }
  209. ],
  210. "slotName": "Number",
  211. "Descriptor": {
  212. "ConnectionType": 1,
  213. "SlotType": 2
  214. },
  215. "DataType": 1
  216. },
  217. {
  218. "id": {
  219. "m_id": "{BC2EB9B7-4D9B-4089-928B-1EC4C050F243}"
  220. },
  221. "contracts": [
  222. {
  223. "$type": "SlotTypeContract"
  224. }
  225. ],
  226. "slotName": "Number",
  227. "DisplayDataType": {
  228. "m_type": 3
  229. },
  230. "Descriptor": {
  231. "ConnectionType": 2,
  232. "SlotType": 2
  233. },
  234. "DataType": 1
  235. }
  236. ],
  237. "Datums": [
  238. {
  239. "isOverloadedStorage": false,
  240. "scriptCanvasType": {
  241. "m_type": 3
  242. },
  243. "isNullPointer": false,
  244. "$type": "double",
  245. "value": 0.0,
  246. "label": "Number"
  247. }
  248. ],
  249. "m_variableId": {
  250. "m_id": "{A8E84DC5-8189-48FA-9BB6-90109E8CA129}"
  251. },
  252. "m_variableDataInSlotId": {
  253. "m_id": "{A18BD500-A51A-49AA-844B-961AB0D125A5}"
  254. },
  255. "m_variableDataOutSlotId": {
  256. "m_id": "{BC2EB9B7-4D9B-4089-928B-1EC4C050F243}"
  257. }
  258. }
  259. }
  260. },
  261. {
  262. "Id": {
  263. "id": 11257566269987
  264. },
  265. "Name": "SC-Node(OperatorDiv)",
  266. "Components": {
  267. "Component_[12937033849663956423]": {
  268. "$type": "OperatorDiv",
  269. "Id": 12937033849663956423,
  270. "Slots": [
  271. {
  272. "id": {
  273. "m_id": "{5D96EEA1-B0D6-40B5-86FD-09DC6570D111}"
  274. },
  275. "contracts": [
  276. {
  277. "$type": "SlotTypeContract"
  278. }
  279. ],
  280. "slotName": "In",
  281. "Descriptor": {
  282. "ConnectionType": 1,
  283. "SlotType": 1
  284. }
  285. },
  286. {
  287. "id": {
  288. "m_id": "{A857B355-A3A4-419E-B939-F4141E9AD9E1}"
  289. },
  290. "contracts": [
  291. {
  292. "$type": "SlotTypeContract"
  293. }
  294. ],
  295. "slotName": "Out",
  296. "Descriptor": {
  297. "ConnectionType": 2,
  298. "SlotType": 1
  299. }
  300. },
  301. {
  302. "id": {
  303. "m_id": "{20FF274C-83A6-4003-B4F8-0FC3D4501ECC}"
  304. },
  305. "DynamicTypeOverride": 3,
  306. "contracts": [
  307. {
  308. "$type": "SlotTypeContract"
  309. },
  310. {
  311. "$type": "MathOperatorContract",
  312. "OperatorType": "Divide",
  313. "NativeTypes": [
  314. {
  315. "m_type": 3
  316. },
  317. {
  318. "m_type": 8
  319. },
  320. {
  321. "m_type": 9
  322. },
  323. {
  324. "m_type": 10
  325. },
  326. {
  327. "m_type": 20
  328. }
  329. ]
  330. }
  331. ],
  332. "slotName": "Number 0",
  333. "toolTip": "An operand to use in performing the specified Operation",
  334. "DisplayDataType": {
  335. "m_type": 3
  336. },
  337. "DisplayGroup": {
  338. "Value": 1114760223
  339. },
  340. "Descriptor": {
  341. "ConnectionType": 1,
  342. "SlotType": 2
  343. },
  344. "DynamicGroup": {
  345. "Value": 1114760223
  346. },
  347. "DataType": 1
  348. },
  349. {
  350. "id": {
  351. "m_id": "{76852237-81EA-4925-BC48-6B2EA8024FA6}"
  352. },
  353. "DynamicTypeOverride": 3,
  354. "contracts": [
  355. {
  356. "$type": "SlotTypeContract"
  357. },
  358. {
  359. "$type": "MathOperatorContract",
  360. "OperatorType": "Divide",
  361. "NativeTypes": [
  362. {
  363. "m_type": 3
  364. },
  365. {
  366. "m_type": 8
  367. },
  368. {
  369. "m_type": 9
  370. },
  371. {
  372. "m_type": 10
  373. },
  374. {
  375. "m_type": 20
  376. }
  377. ]
  378. }
  379. ],
  380. "slotName": "Number 1",
  381. "toolTip": "An operand to use in performing the specified Operation",
  382. "DisplayDataType": {
  383. "m_type": 3
  384. },
  385. "DisplayGroup": {
  386. "Value": 1114760223
  387. },
  388. "Descriptor": {
  389. "ConnectionType": 1,
  390. "SlotType": 2
  391. },
  392. "DynamicGroup": {
  393. "Value": 1114760223
  394. },
  395. "DataType": 1
  396. },
  397. {
  398. "id": {
  399. "m_id": "{6BE5D56F-634E-41DA-88FB-53ED0422ACC6}"
  400. },
  401. "DynamicTypeOverride": 3,
  402. "contracts": [
  403. {
  404. "$type": "SlotTypeContract"
  405. },
  406. {
  407. "$type": "MathOperatorContract",
  408. "OperatorType": "Divide",
  409. "NativeTypes": [
  410. {
  411. "m_type": 3
  412. },
  413. {
  414. "m_type": 8
  415. },
  416. {
  417. "m_type": 9
  418. },
  419. {
  420. "m_type": 10
  421. },
  422. {
  423. "m_type": 20
  424. }
  425. ]
  426. }
  427. ],
  428. "slotName": "Result",
  429. "toolTip": "The result of the specified operation",
  430. "DisplayDataType": {
  431. "m_type": 3
  432. },
  433. "DisplayGroup": {
  434. "Value": 1114760223
  435. },
  436. "Descriptor": {
  437. "ConnectionType": 2,
  438. "SlotType": 2
  439. },
  440. "DynamicGroup": {
  441. "Value": 1114760223
  442. },
  443. "DataType": 1
  444. }
  445. ],
  446. "Datums": [
  447. {
  448. "isOverloadedStorage": false,
  449. "scriptCanvasType": {
  450. "m_type": 3
  451. },
  452. "isNullPointer": false,
  453. "$type": "double",
  454. "value": 0.0,
  455. "label": "Number 0"
  456. },
  457. {
  458. "isOverloadedStorage": false,
  459. "scriptCanvasType": {
  460. "m_type": 3
  461. },
  462. "isNullPointer": false,
  463. "$type": "double",
  464. "value": 2.0,
  465. "label": "Number 1"
  466. }
  467. ]
  468. }
  469. }
  470. },
  471. {
  472. "Id": {
  473. "id": 11248976335395
  474. },
  475. "Name": "EBusEventHandler",
  476. "Components": {
  477. "Component_[1414559495525556582]": {
  478. "$type": "EBusEventHandler",
  479. "Id": 1414559495525556582,
  480. "Slots": [
  481. {
  482. "id": {
  483. "m_id": "{92C477D7-2C55-481B-B6EB-A42788E113B0}"
  484. },
  485. "contracts": [
  486. {
  487. "$type": "SlotTypeContract"
  488. }
  489. ],
  490. "slotName": "Connect",
  491. "toolTip": "Connect this event handler to the specified entity.",
  492. "Descriptor": {
  493. "ConnectionType": 1,
  494. "SlotType": 1
  495. }
  496. },
  497. {
  498. "id": {
  499. "m_id": "{6788C805-77BE-4F10-BA6D-7D96BC588747}"
  500. },
  501. "contracts": [
  502. {
  503. "$type": "SlotTypeContract"
  504. }
  505. ],
  506. "slotName": "Disconnect",
  507. "toolTip": "Disconnect this event handler.",
  508. "Descriptor": {
  509. "ConnectionType": 1,
  510. "SlotType": 1
  511. }
  512. },
  513. {
  514. "id": {
  515. "m_id": "{23837C36-AC1F-410B-9653-34F658D48BBA}"
  516. },
  517. "contracts": [
  518. {
  519. "$type": "SlotTypeContract"
  520. }
  521. ],
  522. "slotName": "OnConnected",
  523. "toolTip": "Signaled when a connection has taken place.",
  524. "Descriptor": {
  525. "ConnectionType": 2,
  526. "SlotType": 1
  527. }
  528. },
  529. {
  530. "id": {
  531. "m_id": "{192F7BB7-6BF3-473F-8151-1B0219FA3054}"
  532. },
  533. "contracts": [
  534. {
  535. "$type": "SlotTypeContract"
  536. }
  537. ],
  538. "slotName": "OnDisconnected",
  539. "toolTip": "Signaled when this event handler is disconnected.",
  540. "Descriptor": {
  541. "ConnectionType": 2,
  542. "SlotType": 1
  543. }
  544. },
  545. {
  546. "id": {
  547. "m_id": "{EC75F791-F840-4B68-8580-AAAA70D0153B}"
  548. },
  549. "contracts": [
  550. {
  551. "$type": "SlotTypeContract"
  552. }
  553. ],
  554. "slotName": "OnFailure",
  555. "toolTip": "Signaled when it is not possible to connect this handler.",
  556. "Descriptor": {
  557. "ConnectionType": 2,
  558. "SlotType": 1
  559. }
  560. },
  561. {
  562. "id": {
  563. "m_id": "{D0F34AC4-D4C8-433C-92B9-1F621AB7F3BC}"
  564. },
  565. "contracts": [
  566. {
  567. "$type": "SlotTypeContract"
  568. }
  569. ],
  570. "slotName": "Source",
  571. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  572. "Descriptor": {
  573. "ConnectionType": 1,
  574. "SlotType": 2
  575. },
  576. "DataType": 1,
  577. "IsReference": true,
  578. "VariableReference": {
  579. "m_id": "{04507A1B-EB87-4A66-97D5-FBED973CDD5F}"
  580. }
  581. },
  582. {
  583. "id": {
  584. "m_id": "{43612773-54E1-4427-95B7-65266F675E1D}"
  585. },
  586. "contracts": [
  587. {
  588. "$type": "SlotTypeContract"
  589. }
  590. ],
  591. "slotName": "Transform",
  592. "DisplayDataType": {
  593. "m_type": 7
  594. },
  595. "Descriptor": {
  596. "ConnectionType": 2,
  597. "SlotType": 2
  598. },
  599. "DataType": 1
  600. },
  601. {
  602. "id": {
  603. "m_id": "{295038C6-3EA9-4233-8503-D35F937B1375}"
  604. },
  605. "contracts": [
  606. {
  607. "$type": "SlotTypeContract"
  608. }
  609. ],
  610. "slotName": "Transform",
  611. "DisplayDataType": {
  612. "m_type": 7
  613. },
  614. "Descriptor": {
  615. "ConnectionType": 2,
  616. "SlotType": 2
  617. },
  618. "DataType": 1
  619. },
  620. {
  621. "id": {
  622. "m_id": "{D9AE1408-48AF-4C21-AB3E-F75D290ECCB6}"
  623. },
  624. "contracts": [
  625. {
  626. "$type": "SlotTypeContract"
  627. }
  628. ],
  629. "slotName": "ExecutionSlot:OnTransformChanged",
  630. "Descriptor": {
  631. "ConnectionType": 2,
  632. "SlotType": 1
  633. },
  634. "IsLatent": true
  635. },
  636. {
  637. "id": {
  638. "m_id": "{29C84A43-13E2-492A-8ECE-A158F8AD533D}"
  639. },
  640. "contracts": [
  641. {
  642. "$type": "SlotTypeContract"
  643. }
  644. ],
  645. "slotName": "EntityId",
  646. "DisplayDataType": {
  647. "m_type": 1
  648. },
  649. "Descriptor": {
  650. "ConnectionType": 2,
  651. "SlotType": 2
  652. },
  653. "DataType": 1
  654. },
  655. {
  656. "id": {
  657. "m_id": "{15B0A3F8-0B39-466C-AA8F-66EAB8EB7BD0}"
  658. },
  659. "contracts": [
  660. {
  661. "$type": "SlotTypeContract"
  662. }
  663. ],
  664. "slotName": "EntityId",
  665. "DisplayDataType": {
  666. "m_type": 1
  667. },
  668. "Descriptor": {
  669. "ConnectionType": 2,
  670. "SlotType": 2
  671. },
  672. "DataType": 1
  673. },
  674. {
  675. "id": {
  676. "m_id": "{75723E52-D792-4491-AD70-09D2B3BE3631}"
  677. },
  678. "contracts": [
  679. {
  680. "$type": "SlotTypeContract"
  681. }
  682. ],
  683. "slotName": "ExecutionSlot:OnParentChanged",
  684. "Descriptor": {
  685. "ConnectionType": 2,
  686. "SlotType": 1
  687. },
  688. "IsLatent": true
  689. },
  690. {
  691. "id": {
  692. "m_id": "{49B3EC13-58C8-4C75-9125-F14A8535C73F}"
  693. },
  694. "contracts": [
  695. {
  696. "$type": "SlotTypeContract"
  697. }
  698. ],
  699. "slotName": "EntityId",
  700. "DisplayDataType": {
  701. "m_type": 1
  702. },
  703. "Descriptor": {
  704. "ConnectionType": 2,
  705. "SlotType": 2
  706. },
  707. "DataType": 1
  708. },
  709. {
  710. "id": {
  711. "m_id": "{0CF1A729-EC03-40A6-9D7F-FED8A3A0C157}"
  712. },
  713. "contracts": [
  714. {
  715. "$type": "SlotTypeContract"
  716. }
  717. ],
  718. "slotName": "ExecutionSlot:OnChildAdded",
  719. "Descriptor": {
  720. "ConnectionType": 2,
  721. "SlotType": 1
  722. },
  723. "IsLatent": true
  724. },
  725. {
  726. "id": {
  727. "m_id": "{15046FBC-23C5-4ABC-BB4C-4102EEF0D792}"
  728. },
  729. "contracts": [
  730. {
  731. "$type": "SlotTypeContract"
  732. }
  733. ],
  734. "slotName": "EntityId",
  735. "DisplayDataType": {
  736. "m_type": 1
  737. },
  738. "Descriptor": {
  739. "ConnectionType": 2,
  740. "SlotType": 2
  741. },
  742. "DataType": 1
  743. },
  744. {
  745. "id": {
  746. "m_id": "{7D7A9778-4C53-48C5-9272-357D8AF840B0}"
  747. },
  748. "contracts": [
  749. {
  750. "$type": "SlotTypeContract"
  751. }
  752. ],
  753. "slotName": "ExecutionSlot:OnChildRemoved",
  754. "Descriptor": {
  755. "ConnectionType": 2,
  756. "SlotType": 1
  757. },
  758. "IsLatent": true
  759. }
  760. ],
  761. "Datums": [
  762. {
  763. "isOverloadedStorage": false,
  764. "scriptCanvasType": {
  765. "m_type": 1
  766. },
  767. "isNullPointer": false,
  768. "$type": "EntityId",
  769. "value": {
  770. "id": 2901262558
  771. }
  772. }
  773. ],
  774. "m_eventMap": [
  775. {
  776. "Key": {
  777. "Value": 1683606720
  778. },
  779. "Value": {
  780. "m_eventName": "OnTransformChanged",
  781. "m_eventId": {
  782. "Value": 1683606720
  783. },
  784. "m_eventSlotId": {
  785. "m_id": "{D9AE1408-48AF-4C21-AB3E-F75D290ECCB6}"
  786. },
  787. "m_parameterSlotIds": [
  788. {
  789. "m_id": "{43612773-54E1-4427-95B7-65266F675E1D}"
  790. },
  791. {
  792. "m_id": "{295038C6-3EA9-4233-8503-D35F937B1375}"
  793. }
  794. ],
  795. "m_numExpectedArguments": 2
  796. }
  797. },
  798. {
  799. "Key": {
  800. "Value": 2625896461
  801. },
  802. "Value": {
  803. "m_eventName": "OnParentChanged",
  804. "m_eventId": {
  805. "Value": 2625896461
  806. },
  807. "m_eventSlotId": {
  808. "m_id": "{75723E52-D792-4491-AD70-09D2B3BE3631}"
  809. },
  810. "m_parameterSlotIds": [
  811. {
  812. "m_id": "{29C84A43-13E2-492A-8ECE-A158F8AD533D}"
  813. },
  814. {
  815. "m_id": "{15B0A3F8-0B39-466C-AA8F-66EAB8EB7BD0}"
  816. }
  817. ],
  818. "m_numExpectedArguments": 2
  819. }
  820. },
  821. {
  822. "Key": {
  823. "Value": 2855832379
  824. },
  825. "Value": {
  826. "m_eventName": "OnChildRemoved",
  827. "m_eventId": {
  828. "Value": 2855832379
  829. },
  830. "m_eventSlotId": {
  831. "m_id": "{7D7A9778-4C53-48C5-9272-357D8AF840B0}"
  832. },
  833. "m_parameterSlotIds": [
  834. {
  835. "m_id": "{15046FBC-23C5-4ABC-BB4C-4102EEF0D792}"
  836. }
  837. ],
  838. "m_numExpectedArguments": 1
  839. }
  840. },
  841. {
  842. "Key": {
  843. "Value": 3817907036
  844. },
  845. "Value": {
  846. "m_eventName": "OnChildAdded",
  847. "m_eventId": {
  848. "Value": 3817907036
  849. },
  850. "m_eventSlotId": {
  851. "m_id": "{0CF1A729-EC03-40A6-9D7F-FED8A3A0C157}"
  852. },
  853. "m_parameterSlotIds": [
  854. {
  855. "m_id": "{49B3EC13-58C8-4C75-9125-F14A8535C73F}"
  856. }
  857. ],
  858. "m_numExpectedArguments": 1
  859. }
  860. }
  861. ],
  862. "m_ebusName": "TransformNotificationBus",
  863. "m_busId": {
  864. "Value": 362845288
  865. }
  866. }
  867. }
  868. },
  869. {
  870. "Id": {
  871. "id": 11231796466211
  872. },
  873. "Name": "SC-Node(OperatorAdd)",
  874. "Components": {
  875. "Component_[17711330644635245405]": {
  876. "$type": "OperatorAdd",
  877. "Id": 17711330644635245405,
  878. "Slots": [
  879. {
  880. "id": {
  881. "m_id": "{BEA8F21D-CBB1-46C7-928D-B92F164F9364}"
  882. },
  883. "contracts": [
  884. {
  885. "$type": "SlotTypeContract"
  886. }
  887. ],
  888. "slotName": "In",
  889. "Descriptor": {
  890. "ConnectionType": 1,
  891. "SlotType": 1
  892. }
  893. },
  894. {
  895. "id": {
  896. "m_id": "{1BF4ABA6-EC97-4EA7-9572-C925F8B3BB91}"
  897. },
  898. "contracts": [
  899. {
  900. "$type": "SlotTypeContract"
  901. }
  902. ],
  903. "slotName": "Out",
  904. "Descriptor": {
  905. "ConnectionType": 2,
  906. "SlotType": 1
  907. }
  908. },
  909. {
  910. "id": {
  911. "m_id": "{09E53250-D25D-4CFB-A3D5-59FD52377312}"
  912. },
  913. "DynamicTypeOverride": 3,
  914. "contracts": [
  915. {
  916. "$type": "SlotTypeContract"
  917. },
  918. {
  919. "$type": "MathOperatorContract",
  920. "NativeTypes": [
  921. {
  922. "m_type": 3
  923. },
  924. {
  925. "m_type": 6
  926. },
  927. {
  928. "m_type": 8
  929. },
  930. {
  931. "m_type": 9
  932. },
  933. {
  934. "m_type": 10
  935. },
  936. {
  937. "m_type": 11
  938. },
  939. {
  940. "m_type": 12
  941. },
  942. {
  943. "m_type": 14
  944. },
  945. {
  946. "m_type": 15
  947. },
  948. {
  949. "m_type": 20
  950. },
  951. {
  952. "m_type": 21
  953. }
  954. ]
  955. }
  956. ],
  957. "slotName": "Number 0",
  958. "toolTip": "An operand to use in performing the specified Operation",
  959. "DisplayDataType": {
  960. "m_type": 3
  961. },
  962. "DisplayGroup": {
  963. "Value": 1114760223
  964. },
  965. "Descriptor": {
  966. "ConnectionType": 1,
  967. "SlotType": 2
  968. },
  969. "DynamicGroup": {
  970. "Value": 1114760223
  971. },
  972. "DataType": 1
  973. },
  974. {
  975. "id": {
  976. "m_id": "{24C90721-AECA-407A-B267-43C1E55624CD}"
  977. },
  978. "DynamicTypeOverride": 3,
  979. "contracts": [
  980. {
  981. "$type": "SlotTypeContract"
  982. },
  983. {
  984. "$type": "MathOperatorContract",
  985. "NativeTypes": [
  986. {
  987. "m_type": 3
  988. },
  989. {
  990. "m_type": 6
  991. },
  992. {
  993. "m_type": 8
  994. },
  995. {
  996. "m_type": 9
  997. },
  998. {
  999. "m_type": 10
  1000. },
  1001. {
  1002. "m_type": 11
  1003. },
  1004. {
  1005. "m_type": 12
  1006. },
  1007. {
  1008. "m_type": 14
  1009. },
  1010. {
  1011. "m_type": 15
  1012. },
  1013. {
  1014. "m_type": 20
  1015. },
  1016. {
  1017. "m_type": 21
  1018. }
  1019. ]
  1020. }
  1021. ],
  1022. "slotName": "Number 1",
  1023. "toolTip": "An operand to use in performing the specified Operation",
  1024. "DisplayDataType": {
  1025. "m_type": 3
  1026. },
  1027. "DisplayGroup": {
  1028. "Value": 1114760223
  1029. },
  1030. "Descriptor": {
  1031. "ConnectionType": 1,
  1032. "SlotType": 2
  1033. },
  1034. "DynamicGroup": {
  1035. "Value": 1114760223
  1036. },
  1037. "DataType": 1
  1038. },
  1039. {
  1040. "id": {
  1041. "m_id": "{1E02AB42-E22B-45A6-B3A9-E4AFBD03ECF8}"
  1042. },
  1043. "DynamicTypeOverride": 3,
  1044. "contracts": [
  1045. {
  1046. "$type": "SlotTypeContract"
  1047. },
  1048. {
  1049. "$type": "MathOperatorContract",
  1050. "NativeTypes": [
  1051. {
  1052. "m_type": 3
  1053. },
  1054. {
  1055. "m_type": 6
  1056. },
  1057. {
  1058. "m_type": 8
  1059. },
  1060. {
  1061. "m_type": 9
  1062. },
  1063. {
  1064. "m_type": 10
  1065. },
  1066. {
  1067. "m_type": 11
  1068. },
  1069. {
  1070. "m_type": 12
  1071. },
  1072. {
  1073. "m_type": 14
  1074. },
  1075. {
  1076. "m_type": 15
  1077. },
  1078. {
  1079. "m_type": 20
  1080. },
  1081. {
  1082. "m_type": 21
  1083. }
  1084. ]
  1085. }
  1086. ],
  1087. "slotName": "Result",
  1088. "toolTip": "The result of the specified operation",
  1089. "DisplayDataType": {
  1090. "m_type": 3
  1091. },
  1092. "DisplayGroup": {
  1093. "Value": 1114760223
  1094. },
  1095. "Descriptor": {
  1096. "ConnectionType": 2,
  1097. "SlotType": 2
  1098. },
  1099. "DynamicGroup": {
  1100. "Value": 1114760223
  1101. },
  1102. "DataType": 1
  1103. }
  1104. ],
  1105. "Datums": [
  1106. {
  1107. "isOverloadedStorage": false,
  1108. "scriptCanvasType": {
  1109. "m_type": 3
  1110. },
  1111. "isNullPointer": false,
  1112. "$type": "double",
  1113. "value": 0.0,
  1114. "label": "Number 0"
  1115. },
  1116. {
  1117. "isOverloadedStorage": false,
  1118. "scriptCanvasType": {
  1119. "m_type": 3
  1120. },
  1121. "isNullPointer": false,
  1122. "$type": "double",
  1123. "value": 0.0,
  1124. "label": "Number 1"
  1125. }
  1126. ]
  1127. }
  1128. }
  1129. },
  1130. {
  1131. "Id": {
  1132. "id": 11223206531619
  1133. },
  1134. "Name": "EBusEventHandler",
  1135. "Components": {
  1136. "Component_[2316754571302379267]": {
  1137. "$type": "EBusEventHandler",
  1138. "Id": 2316754571302379267,
  1139. "Slots": [
  1140. {
  1141. "id": {
  1142. "m_id": "{8C6E5C37-DEDE-4C7B-9BC7-0C7B330E7430}"
  1143. },
  1144. "contracts": [
  1145. {
  1146. "$type": "SlotTypeContract"
  1147. }
  1148. ],
  1149. "slotName": "Connect",
  1150. "toolTip": "Connect this event handler to the specified entity.",
  1151. "Descriptor": {
  1152. "ConnectionType": 1,
  1153. "SlotType": 1
  1154. }
  1155. },
  1156. {
  1157. "id": {
  1158. "m_id": "{3A346880-A957-43F1-9A4C-D357AB04B88D}"
  1159. },
  1160. "contracts": [
  1161. {
  1162. "$type": "SlotTypeContract"
  1163. }
  1164. ],
  1165. "slotName": "Disconnect",
  1166. "toolTip": "Disconnect this event handler.",
  1167. "Descriptor": {
  1168. "ConnectionType": 1,
  1169. "SlotType": 1
  1170. }
  1171. },
  1172. {
  1173. "id": {
  1174. "m_id": "{DD6BDBC3-B7EA-4F3E-A123-33BB6DB92533}"
  1175. },
  1176. "contracts": [
  1177. {
  1178. "$type": "SlotTypeContract"
  1179. }
  1180. ],
  1181. "slotName": "OnConnected",
  1182. "toolTip": "Signaled when a connection has taken place.",
  1183. "Descriptor": {
  1184. "ConnectionType": 2,
  1185. "SlotType": 1
  1186. }
  1187. },
  1188. {
  1189. "id": {
  1190. "m_id": "{81D9485E-FE32-4B71-AB69-66A34CFCEE77}"
  1191. },
  1192. "contracts": [
  1193. {
  1194. "$type": "SlotTypeContract"
  1195. }
  1196. ],
  1197. "slotName": "OnDisconnected",
  1198. "toolTip": "Signaled when this event handler is disconnected.",
  1199. "Descriptor": {
  1200. "ConnectionType": 2,
  1201. "SlotType": 1
  1202. }
  1203. },
  1204. {
  1205. "id": {
  1206. "m_id": "{4A4DF180-E871-4B4C-AA1C-BD5EDDBE54DB}"
  1207. },
  1208. "contracts": [
  1209. {
  1210. "$type": "SlotTypeContract"
  1211. }
  1212. ],
  1213. "slotName": "OnFailure",
  1214. "toolTip": "Signaled when it is not possible to connect this handler.",
  1215. "Descriptor": {
  1216. "ConnectionType": 2,
  1217. "SlotType": 1
  1218. }
  1219. },
  1220. {
  1221. "id": {
  1222. "m_id": "{1455CC1A-AEE6-4360-AFAF-191E1F7A4D22}"
  1223. },
  1224. "contracts": [
  1225. {
  1226. "$type": "SlotTypeContract"
  1227. }
  1228. ],
  1229. "slotName": "Source",
  1230. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  1231. "Descriptor": {
  1232. "ConnectionType": 1,
  1233. "SlotType": 2
  1234. },
  1235. "DataType": 1,
  1236. "IsReference": true,
  1237. "VariableReference": {
  1238. "m_id": "{04507A1B-EB87-4A66-97D5-FBED973CDD5F}"
  1239. }
  1240. },
  1241. {
  1242. "id": {
  1243. "m_id": "{5D7AEC12-0D55-487C-87E7-8897FA1AFC5B}"
  1244. },
  1245. "contracts": [
  1246. {
  1247. "$type": "SlotTypeContract"
  1248. }
  1249. ],
  1250. "slotName": "EntityId",
  1251. "DisplayDataType": {
  1252. "m_type": 1
  1253. },
  1254. "Descriptor": {
  1255. "ConnectionType": 2,
  1256. "SlotType": 2
  1257. },
  1258. "DataType": 1
  1259. },
  1260. {
  1261. "id": {
  1262. "m_id": "{EC961343-397C-4AF7-A295-F5F33A3D3FD2}"
  1263. },
  1264. "contracts": [
  1265. {
  1266. "$type": "SlotTypeContract"
  1267. }
  1268. ],
  1269. "slotName": "ExecutionSlot:OnEntityActivated",
  1270. "Descriptor": {
  1271. "ConnectionType": 2,
  1272. "SlotType": 1
  1273. },
  1274. "IsLatent": true
  1275. },
  1276. {
  1277. "id": {
  1278. "m_id": "{3D02FEB8-9EED-4643-AB09-2CAC1899C2EE}"
  1279. },
  1280. "contracts": [
  1281. {
  1282. "$type": "SlotTypeContract"
  1283. }
  1284. ],
  1285. "slotName": "EntityId",
  1286. "DisplayDataType": {
  1287. "m_type": 1
  1288. },
  1289. "Descriptor": {
  1290. "ConnectionType": 2,
  1291. "SlotType": 2
  1292. },
  1293. "DataType": 1
  1294. },
  1295. {
  1296. "id": {
  1297. "m_id": "{D9A9E5D8-A1AE-462F-BAB0-FADD79A10A03}"
  1298. },
  1299. "contracts": [
  1300. {
  1301. "$type": "SlotTypeContract"
  1302. }
  1303. ],
  1304. "slotName": "ExecutionSlot:OnEntityDeactivated",
  1305. "Descriptor": {
  1306. "ConnectionType": 2,
  1307. "SlotType": 1
  1308. },
  1309. "IsLatent": true
  1310. }
  1311. ],
  1312. "Datums": [
  1313. {
  1314. "isOverloadedStorage": false,
  1315. "scriptCanvasType": {
  1316. "m_type": 1
  1317. },
  1318. "isNullPointer": false,
  1319. "$type": "EntityId",
  1320. "value": {
  1321. "id": 2901262558
  1322. }
  1323. }
  1324. ],
  1325. "m_eventMap": [
  1326. {
  1327. "Key": {
  1328. "Value": 245425936
  1329. },
  1330. "Value": {
  1331. "m_eventName": "OnEntityActivated",
  1332. "m_eventId": {
  1333. "Value": 245425936
  1334. },
  1335. "m_eventSlotId": {
  1336. "m_id": "{EC961343-397C-4AF7-A295-F5F33A3D3FD2}"
  1337. },
  1338. "m_parameterSlotIds": [
  1339. {
  1340. "m_id": "{5D7AEC12-0D55-487C-87E7-8897FA1AFC5B}"
  1341. }
  1342. ],
  1343. "m_numExpectedArguments": 1
  1344. }
  1345. },
  1346. {
  1347. "Key": {
  1348. "Value": 4273369222
  1349. },
  1350. "Value": {
  1351. "m_eventName": "OnEntityDeactivated",
  1352. "m_eventId": {
  1353. "Value": 4273369222
  1354. },
  1355. "m_eventSlotId": {
  1356. "m_id": "{D9A9E5D8-A1AE-462F-BAB0-FADD79A10A03}"
  1357. },
  1358. "m_parameterSlotIds": [
  1359. {
  1360. "m_id": "{3D02FEB8-9EED-4643-AB09-2CAC1899C2EE}"
  1361. }
  1362. ],
  1363. "m_numExpectedArguments": 1
  1364. }
  1365. }
  1366. ],
  1367. "m_ebusName": "EntityBus",
  1368. "m_busId": {
  1369. "Value": 3358774020
  1370. }
  1371. }
  1372. }
  1373. },
  1374. {
  1375. "Id": {
  1376. "id": 11283336073763
  1377. },
  1378. "Name": "EBusEventHandler",
  1379. "Components": {
  1380. "Component_[2316754571302379267]": {
  1381. "$type": "EBusEventHandler",
  1382. "Id": 2316754571302379267,
  1383. "Slots": [
  1384. {
  1385. "id": {
  1386. "m_id": "{8C6E5C37-DEDE-4C7B-9BC7-0C7B330E7430}"
  1387. },
  1388. "contracts": [
  1389. {
  1390. "$type": "SlotTypeContract"
  1391. }
  1392. ],
  1393. "slotName": "Connect",
  1394. "toolTip": "Connect this event handler to the specified entity.",
  1395. "Descriptor": {
  1396. "ConnectionType": 1,
  1397. "SlotType": 1
  1398. }
  1399. },
  1400. {
  1401. "id": {
  1402. "m_id": "{3A346880-A957-43F1-9A4C-D357AB04B88D}"
  1403. },
  1404. "contracts": [
  1405. {
  1406. "$type": "SlotTypeContract"
  1407. }
  1408. ],
  1409. "slotName": "Disconnect",
  1410. "toolTip": "Disconnect this event handler.",
  1411. "Descriptor": {
  1412. "ConnectionType": 1,
  1413. "SlotType": 1
  1414. }
  1415. },
  1416. {
  1417. "id": {
  1418. "m_id": "{DD6BDBC3-B7EA-4F3E-A123-33BB6DB92533}"
  1419. },
  1420. "contracts": [
  1421. {
  1422. "$type": "SlotTypeContract"
  1423. }
  1424. ],
  1425. "slotName": "OnConnected",
  1426. "toolTip": "Signaled when a connection has taken place.",
  1427. "Descriptor": {
  1428. "ConnectionType": 2,
  1429. "SlotType": 1
  1430. }
  1431. },
  1432. {
  1433. "id": {
  1434. "m_id": "{81D9485E-FE32-4B71-AB69-66A34CFCEE77}"
  1435. },
  1436. "contracts": [
  1437. {
  1438. "$type": "SlotTypeContract"
  1439. }
  1440. ],
  1441. "slotName": "OnDisconnected",
  1442. "toolTip": "Signaled when this event handler is disconnected.",
  1443. "Descriptor": {
  1444. "ConnectionType": 2,
  1445. "SlotType": 1
  1446. }
  1447. },
  1448. {
  1449. "id": {
  1450. "m_id": "{4A4DF180-E871-4B4C-AA1C-BD5EDDBE54DB}"
  1451. },
  1452. "contracts": [
  1453. {
  1454. "$type": "SlotTypeContract"
  1455. }
  1456. ],
  1457. "slotName": "OnFailure",
  1458. "toolTip": "Signaled when it is not possible to connect this handler.",
  1459. "Descriptor": {
  1460. "ConnectionType": 2,
  1461. "SlotType": 1
  1462. }
  1463. },
  1464. {
  1465. "id": {
  1466. "m_id": "{1455CC1A-AEE6-4360-AFAF-191E1F7A4D22}"
  1467. },
  1468. "contracts": [
  1469. {
  1470. "$type": "SlotTypeContract"
  1471. }
  1472. ],
  1473. "slotName": "Source",
  1474. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  1475. "Descriptor": {
  1476. "ConnectionType": 1,
  1477. "SlotType": 2
  1478. },
  1479. "DataType": 1
  1480. },
  1481. {
  1482. "id": {
  1483. "m_id": "{5D7AEC12-0D55-487C-87E7-8897FA1AFC5B}"
  1484. },
  1485. "contracts": [
  1486. {
  1487. "$type": "SlotTypeContract"
  1488. }
  1489. ],
  1490. "slotName": "EntityId",
  1491. "DisplayDataType": {
  1492. "m_type": 1
  1493. },
  1494. "Descriptor": {
  1495. "ConnectionType": 2,
  1496. "SlotType": 2
  1497. },
  1498. "DataType": 1
  1499. },
  1500. {
  1501. "id": {
  1502. "m_id": "{EC961343-397C-4AF7-A295-F5F33A3D3FD2}"
  1503. },
  1504. "contracts": [
  1505. {
  1506. "$type": "SlotTypeContract"
  1507. }
  1508. ],
  1509. "slotName": "ExecutionSlot:OnEntityActivated",
  1510. "Descriptor": {
  1511. "ConnectionType": 2,
  1512. "SlotType": 1
  1513. },
  1514. "IsLatent": true
  1515. },
  1516. {
  1517. "id": {
  1518. "m_id": "{3D02FEB8-9EED-4643-AB09-2CAC1899C2EE}"
  1519. },
  1520. "contracts": [
  1521. {
  1522. "$type": "SlotTypeContract"
  1523. }
  1524. ],
  1525. "slotName": "EntityId",
  1526. "DisplayDataType": {
  1527. "m_type": 1
  1528. },
  1529. "Descriptor": {
  1530. "ConnectionType": 2,
  1531. "SlotType": 2
  1532. },
  1533. "DataType": 1
  1534. },
  1535. {
  1536. "id": {
  1537. "m_id": "{D9A9E5D8-A1AE-462F-BAB0-FADD79A10A03}"
  1538. },
  1539. "contracts": [
  1540. {
  1541. "$type": "SlotTypeContract"
  1542. }
  1543. ],
  1544. "slotName": "ExecutionSlot:OnEntityDeactivated",
  1545. "Descriptor": {
  1546. "ConnectionType": 2,
  1547. "SlotType": 1
  1548. },
  1549. "IsLatent": true
  1550. }
  1551. ],
  1552. "Datums": [
  1553. {
  1554. "isOverloadedStorage": false,
  1555. "scriptCanvasType": {
  1556. "m_type": 1
  1557. },
  1558. "isNullPointer": false,
  1559. "$type": "EntityId",
  1560. "value": {
  1561. "id": 2901262558
  1562. },
  1563. "label": "Source"
  1564. }
  1565. ],
  1566. "m_eventMap": [
  1567. {
  1568. "Key": {
  1569. "Value": 245425936
  1570. },
  1571. "Value": {
  1572. "m_eventName": "OnEntityActivated",
  1573. "m_eventId": {
  1574. "Value": 245425936
  1575. },
  1576. "m_eventSlotId": {
  1577. "m_id": "{EC961343-397C-4AF7-A295-F5F33A3D3FD2}"
  1578. },
  1579. "m_parameterSlotIds": [
  1580. {
  1581. "m_id": "{5D7AEC12-0D55-487C-87E7-8897FA1AFC5B}"
  1582. }
  1583. ],
  1584. "m_numExpectedArguments": 1
  1585. }
  1586. },
  1587. {
  1588. "Key": {
  1589. "Value": 4273369222
  1590. },
  1591. "Value": {
  1592. "m_eventName": "OnEntityDeactivated",
  1593. "m_eventId": {
  1594. "Value": 4273369222
  1595. },
  1596. "m_eventSlotId": {
  1597. "m_id": "{D9A9E5D8-A1AE-462F-BAB0-FADD79A10A03}"
  1598. },
  1599. "m_parameterSlotIds": [
  1600. {
  1601. "m_id": "{3D02FEB8-9EED-4643-AB09-2CAC1899C2EE}"
  1602. }
  1603. ],
  1604. "m_numExpectedArguments": 1
  1605. }
  1606. }
  1607. ],
  1608. "m_ebusName": "EntityBus",
  1609. "m_busId": {
  1610. "Value": 3358774020
  1611. }
  1612. }
  1613. }
  1614. },
  1615. {
  1616. "Id": {
  1617. "id": 11270451171875
  1618. },
  1619. "Name": "SC-Node(OperatorSub)",
  1620. "Components": {
  1621. "Component_[6431321486410147107]": {
  1622. "$type": "OperatorSub",
  1623. "Id": 6431321486410147107,
  1624. "Slots": [
  1625. {
  1626. "id": {
  1627. "m_id": "{757FD261-5EFF-4C4D-8D93-7303446305CC}"
  1628. },
  1629. "contracts": [
  1630. {
  1631. "$type": "SlotTypeContract"
  1632. }
  1633. ],
  1634. "slotName": "In",
  1635. "Descriptor": {
  1636. "ConnectionType": 1,
  1637. "SlotType": 1
  1638. }
  1639. },
  1640. {
  1641. "id": {
  1642. "m_id": "{1B2A8ED4-346C-4D78-BF27-5E512EE0E15D}"
  1643. },
  1644. "contracts": [
  1645. {
  1646. "$type": "SlotTypeContract"
  1647. }
  1648. ],
  1649. "slotName": "Out",
  1650. "Descriptor": {
  1651. "ConnectionType": 2,
  1652. "SlotType": 1
  1653. }
  1654. },
  1655. {
  1656. "id": {
  1657. "m_id": "{EBAE578D-0881-4132-B605-4409D174C010}"
  1658. },
  1659. "DynamicTypeOverride": 3,
  1660. "contracts": [
  1661. {
  1662. "$type": "SlotTypeContract"
  1663. },
  1664. {
  1665. "$type": "MathOperatorContract",
  1666. "NativeTypes": [
  1667. {
  1668. "m_type": 3
  1669. },
  1670. {
  1671. "m_type": 8
  1672. },
  1673. {
  1674. "m_type": 9
  1675. },
  1676. {
  1677. "m_type": 10
  1678. },
  1679. {
  1680. "m_type": 12
  1681. },
  1682. {
  1683. "m_type": 14
  1684. },
  1685. {
  1686. "m_type": 15
  1687. },
  1688. {
  1689. "m_type": 20
  1690. },
  1691. {
  1692. "m_type": 21
  1693. }
  1694. ]
  1695. }
  1696. ],
  1697. "slotName": "Number 0",
  1698. "toolTip": "An operand to use in performing the specified Operation",
  1699. "DisplayDataType": {
  1700. "m_type": 3
  1701. },
  1702. "DisplayGroup": {
  1703. "Value": 1114760223
  1704. },
  1705. "Descriptor": {
  1706. "ConnectionType": 1,
  1707. "SlotType": 2
  1708. },
  1709. "DynamicGroup": {
  1710. "Value": 1114760223
  1711. },
  1712. "DataType": 1
  1713. },
  1714. {
  1715. "id": {
  1716. "m_id": "{5EC46562-25F0-47EA-914F-07C978BA825C}"
  1717. },
  1718. "DynamicTypeOverride": 3,
  1719. "contracts": [
  1720. {
  1721. "$type": "SlotTypeContract"
  1722. },
  1723. {
  1724. "$type": "MathOperatorContract",
  1725. "NativeTypes": [
  1726. {
  1727. "m_type": 3
  1728. },
  1729. {
  1730. "m_type": 8
  1731. },
  1732. {
  1733. "m_type": 9
  1734. },
  1735. {
  1736. "m_type": 10
  1737. },
  1738. {
  1739. "m_type": 12
  1740. },
  1741. {
  1742. "m_type": 14
  1743. },
  1744. {
  1745. "m_type": 15
  1746. },
  1747. {
  1748. "m_type": 20
  1749. },
  1750. {
  1751. "m_type": 21
  1752. }
  1753. ]
  1754. }
  1755. ],
  1756. "slotName": "Number 1",
  1757. "toolTip": "An operand to use in performing the specified Operation",
  1758. "DisplayDataType": {
  1759. "m_type": 3
  1760. },
  1761. "DisplayGroup": {
  1762. "Value": 1114760223
  1763. },
  1764. "Descriptor": {
  1765. "ConnectionType": 1,
  1766. "SlotType": 2
  1767. },
  1768. "DynamicGroup": {
  1769. "Value": 1114760223
  1770. },
  1771. "DataType": 1
  1772. },
  1773. {
  1774. "id": {
  1775. "m_id": "{29D32BD4-7086-4B92-AACE-7E0F6241D415}"
  1776. },
  1777. "DynamicTypeOverride": 3,
  1778. "contracts": [
  1779. {
  1780. "$type": "SlotTypeContract"
  1781. },
  1782. {
  1783. "$type": "MathOperatorContract",
  1784. "NativeTypes": [
  1785. {
  1786. "m_type": 3
  1787. },
  1788. {
  1789. "m_type": 8
  1790. },
  1791. {
  1792. "m_type": 9
  1793. },
  1794. {
  1795. "m_type": 10
  1796. },
  1797. {
  1798. "m_type": 12
  1799. },
  1800. {
  1801. "m_type": 14
  1802. },
  1803. {
  1804. "m_type": 15
  1805. },
  1806. {
  1807. "m_type": 20
  1808. },
  1809. {
  1810. "m_type": 21
  1811. }
  1812. ]
  1813. }
  1814. ],
  1815. "slotName": "Result",
  1816. "toolTip": "The result of the specified operation",
  1817. "DisplayDataType": {
  1818. "m_type": 3
  1819. },
  1820. "DisplayGroup": {
  1821. "Value": 1114760223
  1822. },
  1823. "Descriptor": {
  1824. "ConnectionType": 2,
  1825. "SlotType": 2
  1826. },
  1827. "DynamicGroup": {
  1828. "Value": 1114760223
  1829. },
  1830. "DataType": 1
  1831. }
  1832. ],
  1833. "Datums": [
  1834. {
  1835. "isOverloadedStorage": false,
  1836. "scriptCanvasType": {
  1837. "m_type": 3
  1838. },
  1839. "isNullPointer": false,
  1840. "$type": "double",
  1841. "value": 0.0,
  1842. "label": "Number 0"
  1843. },
  1844. {
  1845. "isOverloadedStorage": false,
  1846. "scriptCanvasType": {
  1847. "m_type": 3
  1848. },
  1849. "isNullPointer": false,
  1850. "$type": "double",
  1851. "value": 0.0,
  1852. "label": "Number 1"
  1853. }
  1854. ]
  1855. }
  1856. }
  1857. },
  1858. {
  1859. "Id": {
  1860. "id": 11261861237283
  1861. },
  1862. "Name": "SC-Node(GetLocalY)",
  1863. "Components": {
  1864. "Component_[6853814780776154054]": {
  1865. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1866. "Id": 6853814780776154054,
  1867. "Slots": [
  1868. {
  1869. "id": {
  1870. "m_id": "{3979E61B-6BBC-4AFE-9AB4-B833F49AF269}"
  1871. },
  1872. "contracts": [
  1873. {
  1874. "$type": "SlotTypeContract"
  1875. }
  1876. ],
  1877. "slotName": "EntityId",
  1878. "Descriptor": {
  1879. "ConnectionType": 1,
  1880. "SlotType": 2
  1881. },
  1882. "DataType": 1
  1883. },
  1884. {
  1885. "id": {
  1886. "m_id": "{8C3C692C-BE76-4D35-BCFC-D0DA75E5B86F}"
  1887. },
  1888. "contracts": [
  1889. {
  1890. "$type": "SlotTypeContract"
  1891. }
  1892. ],
  1893. "slotName": "In",
  1894. "Descriptor": {
  1895. "ConnectionType": 1,
  1896. "SlotType": 1
  1897. }
  1898. },
  1899. {
  1900. "id": {
  1901. "m_id": "{6F9A875B-6A57-4A66-BAC4-E6BE8B0A2AA4}"
  1902. },
  1903. "contracts": [
  1904. {
  1905. "$type": "SlotTypeContract"
  1906. }
  1907. ],
  1908. "slotName": "Out",
  1909. "Descriptor": {
  1910. "ConnectionType": 2,
  1911. "SlotType": 1
  1912. }
  1913. },
  1914. {
  1915. "id": {
  1916. "m_id": "{6A514AAB-4C07-48A4-A50C-C5F176287431}"
  1917. },
  1918. "contracts": [
  1919. {
  1920. "$type": "SlotTypeContract"
  1921. }
  1922. ],
  1923. "slotName": "Number",
  1924. "DisplayDataType": {
  1925. "m_type": 3
  1926. },
  1927. "Descriptor": {
  1928. "ConnectionType": 2,
  1929. "SlotType": 2
  1930. },
  1931. "DataType": 1
  1932. }
  1933. ],
  1934. "Datums": [
  1935. {
  1936. "isOverloadedStorage": false,
  1937. "scriptCanvasType": {
  1938. "m_type": 1
  1939. },
  1940. "isNullPointer": false,
  1941. "$type": "EntityId",
  1942. "value": {
  1943. "id": 2901262558
  1944. },
  1945. "label": "EntityId"
  1946. }
  1947. ],
  1948. "methodType": 0,
  1949. "methodName": "GetLocalY",
  1950. "className": "TransformBus",
  1951. "resultSlotIDs": [
  1952. {}
  1953. ],
  1954. "inputSlots": [
  1955. {
  1956. "m_id": "{3979E61B-6BBC-4AFE-9AB4-B833F49AF269}"
  1957. }
  1958. ],
  1959. "prettyClassName": "TransformBus"
  1960. }
  1961. }
  1962. },
  1963. {
  1964. "Id": {
  1965. "id": 11244681368099
  1966. },
  1967. "Name": "SC-Node(GetLocalY)",
  1968. "Components": {
  1969. "Component_[6853814780776154054]": {
  1970. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1971. "Id": 6853814780776154054,
  1972. "Slots": [
  1973. {
  1974. "id": {
  1975. "m_id": "{3979E61B-6BBC-4AFE-9AB4-B833F49AF269}"
  1976. },
  1977. "contracts": [
  1978. {
  1979. "$type": "SlotTypeContract"
  1980. }
  1981. ],
  1982. "slotName": "EntityId",
  1983. "Descriptor": {
  1984. "ConnectionType": 1,
  1985. "SlotType": 2
  1986. },
  1987. "DataType": 1,
  1988. "IsReference": true,
  1989. "VariableReference": {
  1990. "m_id": "{04507A1B-EB87-4A66-97D5-FBED973CDD5F}"
  1991. }
  1992. },
  1993. {
  1994. "id": {
  1995. "m_id": "{8C3C692C-BE76-4D35-BCFC-D0DA75E5B86F}"
  1996. },
  1997. "contracts": [
  1998. {
  1999. "$type": "SlotTypeContract"
  2000. }
  2001. ],
  2002. "slotName": "In",
  2003. "Descriptor": {
  2004. "ConnectionType": 1,
  2005. "SlotType": 1
  2006. }
  2007. },
  2008. {
  2009. "id": {
  2010. "m_id": "{6F9A875B-6A57-4A66-BAC4-E6BE8B0A2AA4}"
  2011. },
  2012. "contracts": [
  2013. {
  2014. "$type": "SlotTypeContract"
  2015. }
  2016. ],
  2017. "slotName": "Out",
  2018. "Descriptor": {
  2019. "ConnectionType": 2,
  2020. "SlotType": 1
  2021. }
  2022. },
  2023. {
  2024. "id": {
  2025. "m_id": "{6A514AAB-4C07-48A4-A50C-C5F176287431}"
  2026. },
  2027. "contracts": [
  2028. {
  2029. "$type": "SlotTypeContract"
  2030. }
  2031. ],
  2032. "slotName": "Number",
  2033. "DisplayDataType": {
  2034. "m_type": 3
  2035. },
  2036. "Descriptor": {
  2037. "ConnectionType": 2,
  2038. "SlotType": 2
  2039. },
  2040. "DataType": 1
  2041. }
  2042. ],
  2043. "Datums": [
  2044. {
  2045. "isOverloadedStorage": false,
  2046. "scriptCanvasType": {
  2047. "m_type": 1
  2048. },
  2049. "isNullPointer": false,
  2050. "$type": "EntityId",
  2051. "value": {
  2052. "id": 2901262558
  2053. },
  2054. "label": "EntityId"
  2055. }
  2056. ],
  2057. "methodType": 0,
  2058. "methodName": "GetLocalY",
  2059. "className": "TransformBus",
  2060. "resultSlotIDs": [
  2061. {}
  2062. ],
  2063. "inputSlots": [
  2064. {
  2065. "m_id": "{3979E61B-6BBC-4AFE-9AB4-B833F49AF269}"
  2066. }
  2067. ],
  2068. "prettyClassName": "TransformBus"
  2069. }
  2070. }
  2071. },
  2072. {
  2073. "Id": {
  2074. "id": 11253271302691
  2075. },
  2076. "Name": "SC-Node(GetLocalY)",
  2077. "Components": {
  2078. "Component_[6853814780776154054]": {
  2079. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2080. "Id": 6853814780776154054,
  2081. "Slots": [
  2082. {
  2083. "id": {
  2084. "m_id": "{3979E61B-6BBC-4AFE-9AB4-B833F49AF269}"
  2085. },
  2086. "contracts": [
  2087. {
  2088. "$type": "SlotTypeContract"
  2089. }
  2090. ],
  2091. "slotName": "EntityId",
  2092. "Descriptor": {
  2093. "ConnectionType": 1,
  2094. "SlotType": 2
  2095. },
  2096. "DataType": 1,
  2097. "IsReference": true,
  2098. "VariableReference": {
  2099. "m_id": "{04507A1B-EB87-4A66-97D5-FBED973CDD5F}"
  2100. }
  2101. },
  2102. {
  2103. "id": {
  2104. "m_id": "{8C3C692C-BE76-4D35-BCFC-D0DA75E5B86F}"
  2105. },
  2106. "contracts": [
  2107. {
  2108. "$type": "SlotTypeContract"
  2109. }
  2110. ],
  2111. "slotName": "In",
  2112. "Descriptor": {
  2113. "ConnectionType": 1,
  2114. "SlotType": 1
  2115. }
  2116. },
  2117. {
  2118. "id": {
  2119. "m_id": "{6F9A875B-6A57-4A66-BAC4-E6BE8B0A2AA4}"
  2120. },
  2121. "contracts": [
  2122. {
  2123. "$type": "SlotTypeContract"
  2124. }
  2125. ],
  2126. "slotName": "Out",
  2127. "Descriptor": {
  2128. "ConnectionType": 2,
  2129. "SlotType": 1
  2130. }
  2131. },
  2132. {
  2133. "id": {
  2134. "m_id": "{6A514AAB-4C07-48A4-A50C-C5F176287431}"
  2135. },
  2136. "contracts": [
  2137. {
  2138. "$type": "SlotTypeContract"
  2139. }
  2140. ],
  2141. "slotName": "Number",
  2142. "DisplayDataType": {
  2143. "m_type": 3
  2144. },
  2145. "Descriptor": {
  2146. "ConnectionType": 2,
  2147. "SlotType": 2
  2148. },
  2149. "DataType": 1
  2150. }
  2151. ],
  2152. "Datums": [
  2153. {
  2154. "isOverloadedStorage": false,
  2155. "scriptCanvasType": {
  2156. "m_type": 1
  2157. },
  2158. "isNullPointer": false,
  2159. "$type": "EntityId",
  2160. "value": {
  2161. "id": 2901262558
  2162. },
  2163. "label": "EntityId"
  2164. }
  2165. ],
  2166. "methodType": 0,
  2167. "methodName": "GetLocalY",
  2168. "className": "TransformBus",
  2169. "resultSlotIDs": [
  2170. {}
  2171. ],
  2172. "inputSlots": [
  2173. {
  2174. "m_id": "{3979E61B-6BBC-4AFE-9AB4-B833F49AF269}"
  2175. }
  2176. ],
  2177. "prettyClassName": "TransformBus"
  2178. }
  2179. }
  2180. },
  2181. {
  2182. "Id": {
  2183. "id": 11236091433507
  2184. },
  2185. "Name": "SC-Node(SetLocalY)",
  2186. "Components": {
  2187. "Component_[9006706758069791097]": {
  2188. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2189. "Id": 9006706758069791097,
  2190. "Slots": [
  2191. {
  2192. "id": {
  2193. "m_id": "{B5118201-61B7-4EE1-B8A2-CD985C38526F}"
  2194. },
  2195. "contracts": [
  2196. {
  2197. "$type": "SlotTypeContract"
  2198. }
  2199. ],
  2200. "slotName": "EntityId: 0",
  2201. "Descriptor": {
  2202. "ConnectionType": 1,
  2203. "SlotType": 2
  2204. },
  2205. "DataType": 1
  2206. },
  2207. {
  2208. "id": {
  2209. "m_id": "{59FAC3B5-20DD-4491-B687-558EFF15F69E}"
  2210. },
  2211. "contracts": [
  2212. {
  2213. "$type": "SlotTypeContract"
  2214. }
  2215. ],
  2216. "slotName": "Number: 1",
  2217. "Descriptor": {
  2218. "ConnectionType": 1,
  2219. "SlotType": 2
  2220. },
  2221. "DataType": 1
  2222. },
  2223. {
  2224. "id": {
  2225. "m_id": "{D210CED9-193F-4874-B002-769E1CCDAAD5}"
  2226. },
  2227. "contracts": [
  2228. {
  2229. "$type": "SlotTypeContract"
  2230. }
  2231. ],
  2232. "slotName": "In",
  2233. "Descriptor": {
  2234. "ConnectionType": 1,
  2235. "SlotType": 1
  2236. }
  2237. },
  2238. {
  2239. "id": {
  2240. "m_id": "{FEF30B9B-8670-44A7-9313-314A6E4141BE}"
  2241. },
  2242. "contracts": [
  2243. {
  2244. "$type": "SlotTypeContract"
  2245. }
  2246. ],
  2247. "slotName": "Out",
  2248. "Descriptor": {
  2249. "ConnectionType": 2,
  2250. "SlotType": 1
  2251. }
  2252. }
  2253. ],
  2254. "Datums": [
  2255. {
  2256. "isOverloadedStorage": false,
  2257. "scriptCanvasType": {
  2258. "m_type": 1
  2259. },
  2260. "isNullPointer": false,
  2261. "$type": "EntityId",
  2262. "value": {
  2263. "id": 2901262558
  2264. },
  2265. "label": "Source"
  2266. },
  2267. {
  2268. "isOverloadedStorage": false,
  2269. "scriptCanvasType": {
  2270. "m_type": 3
  2271. },
  2272. "isNullPointer": false,
  2273. "$type": "double",
  2274. "value": 0.0,
  2275. "label": "Y"
  2276. }
  2277. ],
  2278. "methodType": 0,
  2279. "methodName": "SetLocalY",
  2280. "className": "TransformBus",
  2281. "resultSlotIDs": [
  2282. {}
  2283. ],
  2284. "inputSlots": [
  2285. {
  2286. "m_id": "{B5118201-61B7-4EE1-B8A2-CD985C38526F}"
  2287. },
  2288. {
  2289. "m_id": "{59FAC3B5-20DD-4491-B687-558EFF15F69E}"
  2290. }
  2291. ],
  2292. "prettyClassName": "TransformBus"
  2293. }
  2294. }
  2295. },
  2296. {
  2297. "Id": {
  2298. "id": 11227501498915
  2299. },
  2300. "Name": "SC Node(GetVariable)",
  2301. "Components": {
  2302. "Component_[9035715616180882330]": {
  2303. "$type": "GetVariableNode",
  2304. "Id": 9035715616180882330,
  2305. "Slots": [
  2306. {
  2307. "id": {
  2308. "m_id": "{00B8F466-5C10-4D20-A80A-78FEC31A763F}"
  2309. },
  2310. "contracts": [
  2311. {
  2312. "$type": "SlotTypeContract"
  2313. }
  2314. ],
  2315. "slotName": "In",
  2316. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2317. "Descriptor": {
  2318. "ConnectionType": 1,
  2319. "SlotType": 1
  2320. }
  2321. },
  2322. {
  2323. "id": {
  2324. "m_id": "{736600C2-9C8D-4B09-B2D9-34E899E46E90}"
  2325. },
  2326. "contracts": [
  2327. {
  2328. "$type": "SlotTypeContract"
  2329. }
  2330. ],
  2331. "slotName": "Out",
  2332. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2333. "Descriptor": {
  2334. "ConnectionType": 2,
  2335. "SlotType": 1
  2336. }
  2337. },
  2338. {
  2339. "id": {
  2340. "m_id": "{F4255FC2-6027-46CC-A06B-71ABAB04557D}"
  2341. },
  2342. "contracts": [
  2343. {
  2344. "$type": "SlotTypeContract"
  2345. }
  2346. ],
  2347. "slotName": "Number",
  2348. "DisplayDataType": {
  2349. "m_type": 3
  2350. },
  2351. "Descriptor": {
  2352. "ConnectionType": 2,
  2353. "SlotType": 2
  2354. },
  2355. "DataType": 1
  2356. }
  2357. ],
  2358. "m_variableId": {
  2359. "m_id": "{30C8ACC4-63F6-420F-B662-38A9BB7A5BEB}"
  2360. },
  2361. "m_variableDataOutSlotId": {
  2362. "m_id": "{F4255FC2-6027-46CC-A06B-71ABAB04557D}"
  2363. }
  2364. }
  2365. }
  2366. },
  2367. {
  2368. "Id": {
  2369. "id": 11274746139171
  2370. },
  2371. "Name": "SC Node(SetVariable)",
  2372. "Components": {
  2373. "Component_[9565436110305935598]": {
  2374. "$type": "SetVariableNode",
  2375. "Id": 9565436110305935598,
  2376. "Slots": [
  2377. {
  2378. "id": {
  2379. "m_id": "{C670CA62-1BEA-42DC-BCB6-9418596EA2EE}"
  2380. },
  2381. "contracts": [
  2382. {
  2383. "$type": "SlotTypeContract"
  2384. }
  2385. ],
  2386. "slotName": "In",
  2387. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  2388. "Descriptor": {
  2389. "ConnectionType": 1,
  2390. "SlotType": 1
  2391. }
  2392. },
  2393. {
  2394. "id": {
  2395. "m_id": "{3566F14A-D539-4B37-9CD0-E5E58DB66FBB}"
  2396. },
  2397. "contracts": [
  2398. {
  2399. "$type": "SlotTypeContract"
  2400. }
  2401. ],
  2402. "slotName": "Out",
  2403. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  2404. "Descriptor": {
  2405. "ConnectionType": 2,
  2406. "SlotType": 1
  2407. }
  2408. },
  2409. {
  2410. "id": {
  2411. "m_id": "{BC22E761-77DD-4CF5-B6D0-15147C56E591}"
  2412. },
  2413. "contracts": [
  2414. {
  2415. "$type": "SlotTypeContract"
  2416. }
  2417. ],
  2418. "slotName": "Number",
  2419. "Descriptor": {
  2420. "ConnectionType": 1,
  2421. "SlotType": 2
  2422. },
  2423. "DataType": 1
  2424. },
  2425. {
  2426. "id": {
  2427. "m_id": "{58BDD631-290B-4F75-8044-5D60B7B5E6E8}"
  2428. },
  2429. "contracts": [
  2430. {
  2431. "$type": "SlotTypeContract"
  2432. }
  2433. ],
  2434. "slotName": "Number",
  2435. "DisplayDataType": {
  2436. "m_type": 3
  2437. },
  2438. "Descriptor": {
  2439. "ConnectionType": 2,
  2440. "SlotType": 2
  2441. },
  2442. "DataType": 1
  2443. }
  2444. ],
  2445. "Datums": [
  2446. {
  2447. "isOverloadedStorage": false,
  2448. "scriptCanvasType": {
  2449. "m_type": 3
  2450. },
  2451. "isNullPointer": false,
  2452. "$type": "double",
  2453. "value": 0.0,
  2454. "label": "Number"
  2455. }
  2456. ],
  2457. "m_variableId": {
  2458. "m_id": "{30C8ACC4-63F6-420F-B662-38A9BB7A5BEB}"
  2459. },
  2460. "m_variableDataInSlotId": {
  2461. "m_id": "{BC22E761-77DD-4CF5-B6D0-15147C56E591}"
  2462. },
  2463. "m_variableDataOutSlotId": {
  2464. "m_id": "{58BDD631-290B-4F75-8044-5D60B7B5E6E8}"
  2465. }
  2466. }
  2467. }
  2468. }
  2469. ],
  2470. "m_connections": [
  2471. {
  2472. "Id": {
  2473. "id": 11291926008355
  2474. },
  2475. "Name": "srcEndpoint=(TransformNotificationBus Handler: ExecutionSlot:OnTransformChanged), destEndpoint=(GetLocalY: In)",
  2476. "Components": {
  2477. "Component_[402451582484290512]": {
  2478. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2479. "Id": 402451582484290512,
  2480. "sourceEndpoint": {
  2481. "nodeId": {
  2482. "id": 11248976335395
  2483. },
  2484. "slotId": {
  2485. "m_id": "{D9AE1408-48AF-4C21-AB3E-F75D290ECCB6}"
  2486. }
  2487. },
  2488. "targetEndpoint": {
  2489. "nodeId": {
  2490. "id": 11244681368099
  2491. },
  2492. "slotId": {
  2493. "m_id": "{8C3C692C-BE76-4D35-BCFC-D0DA75E5B86F}"
  2494. }
  2495. }
  2496. }
  2497. }
  2498. },
  2499. {
  2500. "Id": {
  2501. "id": 11296220975651
  2502. },
  2503. "Name": "srcEndpoint=(Subtract (-): Result), destEndpoint=(Divide (/): Number 0)",
  2504. "Components": {
  2505. "Component_[16640562815357752118]": {
  2506. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2507. "Id": 16640562815357752118,
  2508. "sourceEndpoint": {
  2509. "nodeId": {
  2510. "id": 11270451171875
  2511. },
  2512. "slotId": {
  2513. "m_id": "{29D32BD4-7086-4B92-AACE-7E0F6241D415}"
  2514. }
  2515. },
  2516. "targetEndpoint": {
  2517. "nodeId": {
  2518. "id": 11257566269987
  2519. },
  2520. "slotId": {
  2521. "m_id": "{20FF274C-83A6-4003-B4F8-0FC3D4501ECC}"
  2522. }
  2523. }
  2524. }
  2525. }
  2526. },
  2527. {
  2528. "Id": {
  2529. "id": 11300515942947
  2530. },
  2531. "Name": "srcEndpoint=(Subtract (-): Out), destEndpoint=(Divide (/): In)",
  2532. "Components": {
  2533. "Component_[18227322825113873893]": {
  2534. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2535. "Id": 18227322825113873893,
  2536. "sourceEndpoint": {
  2537. "nodeId": {
  2538. "id": 11270451171875
  2539. },
  2540. "slotId": {
  2541. "m_id": "{1B2A8ED4-346C-4D78-BF27-5E512EE0E15D}"
  2542. }
  2543. },
  2544. "targetEndpoint": {
  2545. "nodeId": {
  2546. "id": 11257566269987
  2547. },
  2548. "slotId": {
  2549. "m_id": "{5D96EEA1-B0D6-40B5-86FD-09DC6570D111}"
  2550. }
  2551. }
  2552. }
  2553. }
  2554. },
  2555. {
  2556. "Id": {
  2557. "id": 11304810910243
  2558. },
  2559. "Name": "srcEndpoint=(GetLocalY: Number), destEndpoint=(Subtract (-): Number 0)",
  2560. "Components": {
  2561. "Component_[5231142137799649594]": {
  2562. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2563. "Id": 5231142137799649594,
  2564. "sourceEndpoint": {
  2565. "nodeId": {
  2566. "id": 11244681368099
  2567. },
  2568. "slotId": {
  2569. "m_id": "{6A514AAB-4C07-48A4-A50C-C5F176287431}"
  2570. }
  2571. },
  2572. "targetEndpoint": {
  2573. "nodeId": {
  2574. "id": 11270451171875
  2575. },
  2576. "slotId": {
  2577. "m_id": "{EBAE578D-0881-4132-B605-4409D174C010}"
  2578. }
  2579. }
  2580. }
  2581. }
  2582. },
  2583. {
  2584. "Id": {
  2585. "id": 11309105877539
  2586. },
  2587. "Name": "srcEndpoint=(GetLocalY: Out), destEndpoint=(Get Variable: In)",
  2588. "Components": {
  2589. "Component_[10625174371041152181]": {
  2590. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2591. "Id": 10625174371041152181,
  2592. "sourceEndpoint": {
  2593. "nodeId": {
  2594. "id": 11244681368099
  2595. },
  2596. "slotId": {
  2597. "m_id": "{6F9A875B-6A57-4A66-BAC4-E6BE8B0A2AA4}"
  2598. }
  2599. },
  2600. "targetEndpoint": {
  2601. "nodeId": {
  2602. "id": 11227501498915
  2603. },
  2604. "slotId": {
  2605. "m_id": "{00B8F466-5C10-4D20-A80A-78FEC31A763F}"
  2606. }
  2607. }
  2608. }
  2609. }
  2610. },
  2611. {
  2612. "Id": {
  2613. "id": 11313400844835
  2614. },
  2615. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Subtract (-): In)",
  2616. "Components": {
  2617. "Component_[2733283981631094327]": {
  2618. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2619. "Id": 2733283981631094327,
  2620. "sourceEndpoint": {
  2621. "nodeId": {
  2622. "id": 11227501498915
  2623. },
  2624. "slotId": {
  2625. "m_id": "{736600C2-9C8D-4B09-B2D9-34E899E46E90}"
  2626. }
  2627. },
  2628. "targetEndpoint": {
  2629. "nodeId": {
  2630. "id": 11270451171875
  2631. },
  2632. "slotId": {
  2633. "m_id": "{757FD261-5EFF-4C4D-8D93-7303446305CC}"
  2634. }
  2635. }
  2636. }
  2637. }
  2638. },
  2639. {
  2640. "Id": {
  2641. "id": 11317695812131
  2642. },
  2643. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Subtract (-): Number 1)",
  2644. "Components": {
  2645. "Component_[7629491296929980398]": {
  2646. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2647. "Id": 7629491296929980398,
  2648. "sourceEndpoint": {
  2649. "nodeId": {
  2650. "id": 11227501498915
  2651. },
  2652. "slotId": {
  2653. "m_id": "{F4255FC2-6027-46CC-A06B-71ABAB04557D}"
  2654. }
  2655. },
  2656. "targetEndpoint": {
  2657. "nodeId": {
  2658. "id": 11270451171875
  2659. },
  2660. "slotId": {
  2661. "m_id": "{5EC46562-25F0-47EA-914F-07C978BA825C}"
  2662. }
  2663. }
  2664. }
  2665. }
  2666. },
  2667. {
  2668. "Id": {
  2669. "id": 11321990779427
  2670. },
  2671. "Name": "srcEndpoint=(Divide (/): Out), destEndpoint=(Get Variable: In)",
  2672. "Components": {
  2673. "Component_[13517654510223022082]": {
  2674. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2675. "Id": 13517654510223022082,
  2676. "sourceEndpoint": {
  2677. "nodeId": {
  2678. "id": 11257566269987
  2679. },
  2680. "slotId": {
  2681. "m_id": "{A857B355-A3A4-419E-B939-F4141E9AD9E1}"
  2682. }
  2683. },
  2684. "targetEndpoint": {
  2685. "nodeId": {
  2686. "id": 11279041106467
  2687. },
  2688. "slotId": {
  2689. "m_id": "{3FC9B208-A798-442A-B498-16E809538AD5}"
  2690. }
  2691. }
  2692. }
  2693. }
  2694. },
  2695. {
  2696. "Id": {
  2697. "id": 11326285746723
  2698. },
  2699. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Add (+): In)",
  2700. "Components": {
  2701. "Component_[15045096200799492873]": {
  2702. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2703. "Id": 15045096200799492873,
  2704. "sourceEndpoint": {
  2705. "nodeId": {
  2706. "id": 11279041106467
  2707. },
  2708. "slotId": {
  2709. "m_id": "{EE9C1663-9DD2-463F-A7DE-451C3FB642AD}"
  2710. }
  2711. },
  2712. "targetEndpoint": {
  2713. "nodeId": {
  2714. "id": 11231796466211
  2715. },
  2716. "slotId": {
  2717. "m_id": "{BEA8F21D-CBB1-46C7-928D-B92F164F9364}"
  2718. }
  2719. }
  2720. }
  2721. }
  2722. },
  2723. {
  2724. "Id": {
  2725. "id": 11330580714019
  2726. },
  2727. "Name": "srcEndpoint=(Divide (/): Result), destEndpoint=(Add (+): Value 0)",
  2728. "Components": {
  2729. "Component_[12656976291638319556]": {
  2730. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2731. "Id": 12656976291638319556,
  2732. "sourceEndpoint": {
  2733. "nodeId": {
  2734. "id": 11257566269987
  2735. },
  2736. "slotId": {
  2737. "m_id": "{6BE5D56F-634E-41DA-88FB-53ED0422ACC6}"
  2738. }
  2739. },
  2740. "targetEndpoint": {
  2741. "nodeId": {
  2742. "id": 11231796466211
  2743. },
  2744. "slotId": {
  2745. "m_id": "{09E53250-D25D-4CFB-A3D5-59FD52377312}"
  2746. }
  2747. }
  2748. }
  2749. }
  2750. },
  2751. {
  2752. "Id": {
  2753. "id": 11334875681315
  2754. },
  2755. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Add (+): Number 1)",
  2756. "Components": {
  2757. "Component_[14110223960984617726]": {
  2758. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2759. "Id": 14110223960984617726,
  2760. "sourceEndpoint": {
  2761. "nodeId": {
  2762. "id": 11279041106467
  2763. },
  2764. "slotId": {
  2765. "m_id": "{BCF661B0-844C-4D84-BD7B-CA21C9369977}"
  2766. }
  2767. },
  2768. "targetEndpoint": {
  2769. "nodeId": {
  2770. "id": 11231796466211
  2771. },
  2772. "slotId": {
  2773. "m_id": "{24C90721-AECA-407A-B267-43C1E55624CD}"
  2774. }
  2775. }
  2776. }
  2777. }
  2778. },
  2779. {
  2780. "Id": {
  2781. "id": 11339170648611
  2782. },
  2783. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(SetLocalY: Number: 1)",
  2784. "Components": {
  2785. "Component_[5571759025494122071]": {
  2786. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2787. "Id": 5571759025494122071,
  2788. "sourceEndpoint": {
  2789. "nodeId": {
  2790. "id": 11231796466211
  2791. },
  2792. "slotId": {
  2793. "m_id": "{1E02AB42-E22B-45A6-B3A9-E4AFBD03ECF8}"
  2794. }
  2795. },
  2796. "targetEndpoint": {
  2797. "nodeId": {
  2798. "id": 11236091433507
  2799. },
  2800. "slotId": {
  2801. "m_id": "{59FAC3B5-20DD-4491-B687-558EFF15F69E}"
  2802. }
  2803. }
  2804. }
  2805. }
  2806. },
  2807. {
  2808. "Id": {
  2809. "id": 11343465615907
  2810. },
  2811. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(SetLocalY: In)",
  2812. "Components": {
  2813. "Component_[12616638451191141722]": {
  2814. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2815. "Id": 12616638451191141722,
  2816. "sourceEndpoint": {
  2817. "nodeId": {
  2818. "id": 11231796466211
  2819. },
  2820. "slotId": {
  2821. "m_id": "{1BF4ABA6-EC97-4EA7-9572-C925F8B3BB91}"
  2822. }
  2823. },
  2824. "targetEndpoint": {
  2825. "nodeId": {
  2826. "id": 11236091433507
  2827. },
  2828. "slotId": {
  2829. "m_id": "{D210CED9-193F-4874-B002-769E1CCDAAD5}"
  2830. }
  2831. }
  2832. }
  2833. }
  2834. },
  2835. {
  2836. "Id": {
  2837. "id": 11347760583203
  2838. },
  2839. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(GetLocalY: In)",
  2840. "Components": {
  2841. "Component_[10154067886363236680]": {
  2842. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2843. "Id": 10154067886363236680,
  2844. "sourceEndpoint": {
  2845. "nodeId": {
  2846. "id": 11283336073763
  2847. },
  2848. "slotId": {
  2849. "m_id": "{EC961343-397C-4AF7-A295-F5F33A3D3FD2}"
  2850. }
  2851. },
  2852. "targetEndpoint": {
  2853. "nodeId": {
  2854. "id": 11261861237283
  2855. },
  2856. "slotId": {
  2857. "m_id": "{8C3C692C-BE76-4D35-BCFC-D0DA75E5B86F}"
  2858. }
  2859. }
  2860. }
  2861. }
  2862. },
  2863. {
  2864. "Id": {
  2865. "id": 11352055550499
  2866. },
  2867. "Name": "srcEndpoint=(GetLocalY: Out), destEndpoint=(Set Variable: In)",
  2868. "Components": {
  2869. "Component_[11044111666474470950]": {
  2870. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2871. "Id": 11044111666474470950,
  2872. "sourceEndpoint": {
  2873. "nodeId": {
  2874. "id": 11261861237283
  2875. },
  2876. "slotId": {
  2877. "m_id": "{6F9A875B-6A57-4A66-BAC4-E6BE8B0A2AA4}"
  2878. }
  2879. },
  2880. "targetEndpoint": {
  2881. "nodeId": {
  2882. "id": 11266156204579
  2883. },
  2884. "slotId": {
  2885. "m_id": "{2F10F342-BEC0-4E46-BF6E-E125C52CC8F2}"
  2886. }
  2887. }
  2888. }
  2889. }
  2890. },
  2891. {
  2892. "Id": {
  2893. "id": 11356350517795
  2894. },
  2895. "Name": "srcEndpoint=(GetLocalY: Number), destEndpoint=(Set Variable: Number)",
  2896. "Components": {
  2897. "Component_[3574096235933855864]": {
  2898. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2899. "Id": 3574096235933855864,
  2900. "sourceEndpoint": {
  2901. "nodeId": {
  2902. "id": 11261861237283
  2903. },
  2904. "slotId": {
  2905. "m_id": "{6A514AAB-4C07-48A4-A50C-C5F176287431}"
  2906. }
  2907. },
  2908. "targetEndpoint": {
  2909. "nodeId": {
  2910. "id": 11266156204579
  2911. },
  2912. "slotId": {
  2913. "m_id": "{A18BD500-A51A-49AA-844B-961AB0D125A5}"
  2914. }
  2915. }
  2916. }
  2917. }
  2918. },
  2919. {
  2920. "Id": {
  2921. "id": 11360645485091
  2922. },
  2923. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(GetLocalY: In)",
  2924. "Components": {
  2925. "Component_[16075432103391991640]": {
  2926. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2927. "Id": 16075432103391991640,
  2928. "sourceEndpoint": {
  2929. "nodeId": {
  2930. "id": 11223206531619
  2931. },
  2932. "slotId": {
  2933. "m_id": "{EC961343-397C-4AF7-A295-F5F33A3D3FD2}"
  2934. }
  2935. },
  2936. "targetEndpoint": {
  2937. "nodeId": {
  2938. "id": 11253271302691
  2939. },
  2940. "slotId": {
  2941. "m_id": "{8C3C692C-BE76-4D35-BCFC-D0DA75E5B86F}"
  2942. }
  2943. }
  2944. }
  2945. }
  2946. },
  2947. {
  2948. "Id": {
  2949. "id": 11364940452387
  2950. },
  2951. "Name": "srcEndpoint=(GetLocalY: Out), destEndpoint=(Set Variable: In)",
  2952. "Components": {
  2953. "Component_[8912891612684142495]": {
  2954. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2955. "Id": 8912891612684142495,
  2956. "sourceEndpoint": {
  2957. "nodeId": {
  2958. "id": 11253271302691
  2959. },
  2960. "slotId": {
  2961. "m_id": "{6F9A875B-6A57-4A66-BAC4-E6BE8B0A2AA4}"
  2962. }
  2963. },
  2964. "targetEndpoint": {
  2965. "nodeId": {
  2966. "id": 11274746139171
  2967. },
  2968. "slotId": {
  2969. "m_id": "{C670CA62-1BEA-42DC-BCB6-9418596EA2EE}"
  2970. }
  2971. }
  2972. }
  2973. }
  2974. },
  2975. {
  2976. "Id": {
  2977. "id": 11369235419683
  2978. },
  2979. "Name": "srcEndpoint=(GetLocalY: Number), destEndpoint=(Set Variable: Number)",
  2980. "Components": {
  2981. "Component_[1982690244336472316]": {
  2982. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2983. "Id": 1982690244336472316,
  2984. "sourceEndpoint": {
  2985. "nodeId": {
  2986. "id": 11253271302691
  2987. },
  2988. "slotId": {
  2989. "m_id": "{6A514AAB-4C07-48A4-A50C-C5F176287431}"
  2990. }
  2991. },
  2992. "targetEndpoint": {
  2993. "nodeId": {
  2994. "id": 11274746139171
  2995. },
  2996. "slotId": {
  2997. "m_id": "{BC22E761-77DD-4CF5-B6D0-15147C56E591}"
  2998. }
  2999. }
  3000. }
  3001. }
  3002. }
  3003. ]
  3004. },
  3005. "versionData": {
  3006. "_grammarVersion": 1,
  3007. "_runtimeVersion": 1,
  3008. "_fileVersion": 1
  3009. },
  3010. "m_variableCounter": 3,
  3011. "GraphCanvasData": [
  3012. {
  3013. "Key": {
  3014. "id": 11218911564323
  3015. },
  3016. "Value": {
  3017. "ComponentData": {
  3018. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  3019. "$type": "SceneComponentSaveData",
  3020. "ViewParams": {
  3021. "Scale": 0.5711477812099419,
  3022. "AnchorX": -252.12388610839844,
  3023. "AnchorY": 206.6015167236328
  3024. }
  3025. }
  3026. }
  3027. }
  3028. },
  3029. {
  3030. "Key": {
  3031. "id": 11223206531619
  3032. },
  3033. "Value": {
  3034. "ComponentData": {
  3035. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3036. "$type": "NodeSaveData"
  3037. },
  3038. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3039. "$type": "GeometrySaveData",
  3040. "Position": [
  3041. -220.0,
  3042. 1000.0
  3043. ]
  3044. },
  3045. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3046. "$type": "EBusHandlerNodeDescriptorSaveData",
  3047. "EventIds": [
  3048. {
  3049. "Value": 245425936
  3050. }
  3051. ]
  3052. },
  3053. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3054. "$type": "StylingComponentSaveData"
  3055. },
  3056. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3057. "$type": "PersistentIdComponentSaveData",
  3058. "PersistentId": "{114F7A3F-56BC-46AC-B765-E80612FC28F5}"
  3059. }
  3060. }
  3061. }
  3062. },
  3063. {
  3064. "Key": {
  3065. "id": 11227501498915
  3066. },
  3067. "Value": {
  3068. "ComponentData": {
  3069. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3070. "$type": "NodeSaveData"
  3071. },
  3072. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3073. "$type": "GeneralNodeTitleComponentSaveData",
  3074. "PaletteOverride": "GetVariableNodeTitlePalette"
  3075. },
  3076. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3077. "$type": "GeometrySaveData",
  3078. "Position": [
  3079. 440.0,
  3080. 80.0
  3081. ]
  3082. },
  3083. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3084. "$type": "StylingComponentSaveData",
  3085. "SubStyle": ".getVariable"
  3086. },
  3087. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3088. "$type": "PersistentIdComponentSaveData",
  3089. "PersistentId": "{E0CF32FA-4FDC-4AF8-BB08-FC37663E742A}"
  3090. }
  3091. }
  3092. }
  3093. },
  3094. {
  3095. "Key": {
  3096. "id": 11231796466211
  3097. },
  3098. "Value": {
  3099. "ComponentData": {
  3100. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3101. "$type": "NodeSaveData"
  3102. },
  3103. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3104. "$type": "GeneralNodeTitleComponentSaveData",
  3105. "PaletteOverride": "MathNodeTitlePalette"
  3106. },
  3107. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3108. "$type": "GeometrySaveData",
  3109. "Position": [
  3110. 1640.0,
  3111. 200.0
  3112. ]
  3113. },
  3114. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3115. "$type": "StylingComponentSaveData"
  3116. },
  3117. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3118. "$type": "PersistentIdComponentSaveData",
  3119. "PersistentId": "{10D7D3C0-07BC-47A9-BA07-12FB0324D703}"
  3120. }
  3121. }
  3122. }
  3123. },
  3124. {
  3125. "Key": {
  3126. "id": 11236091433507
  3127. },
  3128. "Value": {
  3129. "ComponentData": {
  3130. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3131. "$type": "NodeSaveData"
  3132. },
  3133. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3134. "$type": "GeneralNodeTitleComponentSaveData",
  3135. "PaletteOverride": "MethodNodeTitlePalette"
  3136. },
  3137. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3138. "$type": "GeometrySaveData",
  3139. "Position": [
  3140. 2000.0,
  3141. 200.0
  3142. ]
  3143. },
  3144. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3145. "$type": "StylingComponentSaveData",
  3146. "SubStyle": ".method"
  3147. },
  3148. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3149. "$type": "PersistentIdComponentSaveData",
  3150. "PersistentId": "{BBA33C78-7AD6-41AA-B149-47CBBCF5B9DA}"
  3151. }
  3152. }
  3153. }
  3154. },
  3155. {
  3156. "Key": {
  3157. "id": 11244681368099
  3158. },
  3159. "Value": {
  3160. "ComponentData": {
  3161. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3162. "$type": "NodeSaveData"
  3163. },
  3164. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3165. "$type": "GeneralNodeTitleComponentSaveData",
  3166. "PaletteOverride": "MethodNodeTitlePalette"
  3167. },
  3168. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3169. "$type": "GeometrySaveData",
  3170. "Position": [
  3171. 100.0,
  3172. 220.0
  3173. ]
  3174. },
  3175. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3176. "$type": "StylingComponentSaveData",
  3177. "SubStyle": ".method"
  3178. },
  3179. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3180. "$type": "PersistentIdComponentSaveData",
  3181. "PersistentId": "{B9FCA0FE-0B3F-43B0-A788-4CAF712ACA45}"
  3182. }
  3183. }
  3184. }
  3185. },
  3186. {
  3187. "Key": {
  3188. "id": 11248976335395
  3189. },
  3190. "Value": {
  3191. "ComponentData": {
  3192. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3193. "$type": "NodeSaveData"
  3194. },
  3195. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3196. "$type": "GeometrySaveData",
  3197. "Position": [
  3198. -220.0,
  3199. 60.0
  3200. ]
  3201. },
  3202. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3203. "$type": "EBusHandlerNodeDescriptorSaveData",
  3204. "EventIds": [
  3205. {
  3206. "Value": 1683606720
  3207. }
  3208. ]
  3209. },
  3210. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3211. "$type": "StylingComponentSaveData"
  3212. },
  3213. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3214. "$type": "PersistentIdComponentSaveData",
  3215. "PersistentId": "{FA907CC0-7318-4C4E-9D9F-EE947EEF80C5}"
  3216. }
  3217. }
  3218. }
  3219. },
  3220. {
  3221. "Key": {
  3222. "id": 11253271302691
  3223. },
  3224. "Value": {
  3225. "ComponentData": {
  3226. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3227. "$type": "NodeSaveData"
  3228. },
  3229. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3230. "$type": "GeneralNodeTitleComponentSaveData",
  3231. "PaletteOverride": "MethodNodeTitlePalette"
  3232. },
  3233. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3234. "$type": "GeometrySaveData",
  3235. "Position": [
  3236. 120.0,
  3237. 1160.0
  3238. ]
  3239. },
  3240. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3241. "$type": "StylingComponentSaveData",
  3242. "SubStyle": ".method"
  3243. },
  3244. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3245. "$type": "PersistentIdComponentSaveData",
  3246. "PersistentId": "{BBB66D91-ED55-428F-9532-E280CD606D5C}"
  3247. }
  3248. }
  3249. }
  3250. },
  3251. {
  3252. "Key": {
  3253. "id": 11257566269987
  3254. },
  3255. "Value": {
  3256. "ComponentData": {
  3257. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3258. "$type": "NodeSaveData"
  3259. },
  3260. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3261. "$type": "GeneralNodeTitleComponentSaveData",
  3262. "PaletteOverride": "MathNodeTitlePalette"
  3263. },
  3264. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3265. "$type": "GeometrySaveData",
  3266. "Position": [
  3267. 940.0,
  3268. 220.0
  3269. ]
  3270. },
  3271. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3272. "$type": "StylingComponentSaveData"
  3273. },
  3274. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3275. "$type": "PersistentIdComponentSaveData",
  3276. "PersistentId": "{A6B7317F-8BE9-4D7E-A95F-DC28C491D2EC}"
  3277. }
  3278. }
  3279. }
  3280. },
  3281. {
  3282. "Key": {
  3283. "id": 11261861237283
  3284. },
  3285. "Value": {
  3286. "ComponentData": {
  3287. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3288. "$type": "NodeSaveData"
  3289. },
  3290. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3291. "$type": "GeneralNodeTitleComponentSaveData",
  3292. "PaletteOverride": "MethodNodeTitlePalette"
  3293. },
  3294. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3295. "$type": "GeometrySaveData",
  3296. "Position": [
  3297. 120.0,
  3298. 780.0
  3299. ]
  3300. },
  3301. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3302. "$type": "StylingComponentSaveData",
  3303. "SubStyle": ".method"
  3304. },
  3305. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3306. "$type": "PersistentIdComponentSaveData",
  3307. "PersistentId": "{76980D0E-CB74-4B83-B6A3-F0113E6713F1}"
  3308. }
  3309. }
  3310. }
  3311. },
  3312. {
  3313. "Key": {
  3314. "id": 11266156204579
  3315. },
  3316. "Value": {
  3317. "ComponentData": {
  3318. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3319. "$type": "NodeSaveData"
  3320. },
  3321. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3322. "$type": "GeneralNodeTitleComponentSaveData",
  3323. "PaletteOverride": "SetVariableNodeTitlePalette"
  3324. },
  3325. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3326. "$type": "GeometrySaveData",
  3327. "Position": [
  3328. 440.0,
  3329. 780.0
  3330. ]
  3331. },
  3332. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3333. "$type": "StylingComponentSaveData",
  3334. "SubStyle": ".setVariable"
  3335. },
  3336. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3337. "$type": "PersistentIdComponentSaveData",
  3338. "PersistentId": "{D5549C85-1AD6-48E3-BC5A-D377A0A5D9C5}"
  3339. }
  3340. }
  3341. }
  3342. },
  3343. {
  3344. "Key": {
  3345. "id": 11270451171875
  3346. },
  3347. "Value": {
  3348. "ComponentData": {
  3349. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3350. "$type": "NodeSaveData"
  3351. },
  3352. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3353. "$type": "GeneralNodeTitleComponentSaveData",
  3354. "PaletteOverride": "MathNodeTitlePalette"
  3355. },
  3356. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3357. "$type": "GeometrySaveData",
  3358. "Position": [
  3359. 640.0,
  3360. 220.0
  3361. ]
  3362. },
  3363. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3364. "$type": "StylingComponentSaveData"
  3365. },
  3366. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3367. "$type": "PersistentIdComponentSaveData",
  3368. "PersistentId": "{81785E4D-786B-44EC-B41E-A9119F0605F1}"
  3369. }
  3370. }
  3371. }
  3372. },
  3373. {
  3374. "Key": {
  3375. "id": 11274746139171
  3376. },
  3377. "Value": {
  3378. "ComponentData": {
  3379. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3380. "$type": "NodeSaveData"
  3381. },
  3382. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3383. "$type": "GeneralNodeTitleComponentSaveData",
  3384. "PaletteOverride": "SetVariableNodeTitlePalette"
  3385. },
  3386. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3387. "$type": "GeometrySaveData",
  3388. "Position": [
  3389. 440.0,
  3390. 1160.0
  3391. ]
  3392. },
  3393. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3394. "$type": "StylingComponentSaveData",
  3395. "SubStyle": ".setVariable"
  3396. },
  3397. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3398. "$type": "PersistentIdComponentSaveData",
  3399. "PersistentId": "{4A969633-1417-4B3A-8346-9019347E1D72}"
  3400. }
  3401. }
  3402. }
  3403. },
  3404. {
  3405. "Key": {
  3406. "id": 11279041106467
  3407. },
  3408. "Value": {
  3409. "ComponentData": {
  3410. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3411. "$type": "NodeSaveData"
  3412. },
  3413. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3414. "$type": "GeneralNodeTitleComponentSaveData",
  3415. "PaletteOverride": "GetVariableNodeTitlePalette"
  3416. },
  3417. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3418. "$type": "GeometrySaveData",
  3419. "Position": [
  3420. 1280.0,
  3421. 80.0
  3422. ]
  3423. },
  3424. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3425. "$type": "StylingComponentSaveData",
  3426. "SubStyle": ".getVariable"
  3427. },
  3428. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3429. "$type": "PersistentIdComponentSaveData",
  3430. "PersistentId": "{C773CEEE-0B44-4795-963D-774DF73F40A2}"
  3431. }
  3432. }
  3433. }
  3434. },
  3435. {
  3436. "Key": {
  3437. "id": 11283336073763
  3438. },
  3439. "Value": {
  3440. "ComponentData": {
  3441. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3442. "$type": "NodeSaveData"
  3443. },
  3444. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3445. "$type": "GeometrySaveData",
  3446. "Position": [
  3447. -220.0,
  3448. 620.0
  3449. ]
  3450. },
  3451. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  3452. "$type": "EBusHandlerNodeDescriptorSaveData",
  3453. "EventIds": [
  3454. {
  3455. "Value": 245425936
  3456. }
  3457. ]
  3458. },
  3459. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3460. "$type": "StylingComponentSaveData"
  3461. },
  3462. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3463. "$type": "PersistentIdComponentSaveData",
  3464. "PersistentId": "{F19C4EB7-137F-4BA6-9EB3-C4E122851344}"
  3465. }
  3466. }
  3467. }
  3468. }
  3469. ],
  3470. "StatisticsHelper": {
  3471. "InstanceCounter": [
  3472. {
  3473. "Key": 955089921810928021,
  3474. "Value": 1
  3475. },
  3476. {
  3477. "Key": 1244476766431948410,
  3478. "Value": 1
  3479. },
  3480. {
  3481. "Key": 5842116761103598202,
  3482. "Value": 2
  3483. },
  3484. {
  3485. "Key": 5842117060592297717,
  3486. "Value": 1
  3487. },
  3488. {
  3489. "Key": 11253545079622395724,
  3490. "Value": 1
  3491. },
  3492. {
  3493. "Key": 12332592210424825812,
  3494. "Value": 1
  3495. },
  3496. {
  3497. "Key": 13774516554878574510,
  3498. "Value": 1
  3499. },
  3500. {
  3501. "Key": 13774516556776238733,
  3502. "Value": 3
  3503. },
  3504. {
  3505. "Key": 15767130228066554489,
  3506. "Value": 1
  3507. },
  3508. {
  3509. "Key": 17282152668694508273,
  3510. "Value": 1
  3511. },
  3512. {
  3513. "Key": 17746292506071718793,
  3514. "Value": 1
  3515. }
  3516. ]
  3517. }
  3518. }
  3519. }
  3520. }
  3521. }
  3522. }