Car.scriptcanvas 277 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 48961601916672
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[12537519447064475929]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 12537519447064475929,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{459D3FE8-2ED2-4929-A70D-BF80F0029EA0}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 3
  26. },
  27. "isNullPointer": false,
  28. "$type": "double",
  29. "value": 5.0
  30. },
  31. "VariableId": {
  32. "m_id": "{459D3FE8-2ED2-4929-A70D-BF80F0029EA0}"
  33. },
  34. "VariableName": "CarMovementMetersPerSecond"
  35. }
  36. },
  37. {
  38. "Key": {
  39. "m_id": "{BD1838D5-DF5A-4BB3-8D5E-E6937DF5E919}"
  40. },
  41. "Value": {
  42. "Datum": {
  43. "isOverloadedStorage": false,
  44. "scriptCanvasType": {
  45. "m_type": 3
  46. },
  47. "isNullPointer": false,
  48. "$type": "double",
  49. "value": 10.0
  50. },
  51. "VariableId": {
  52. "m_id": "{BD1838D5-DF5A-4BB3-8D5E-E6937DF5E919}"
  53. },
  54. "VariableName": "CarMovementIntervalMilliseconds"
  55. }
  56. },
  57. {
  58. "Key": {
  59. "m_id": "{D7A0E01D-FDA1-4BE7-A02B-E53B391A1BE8}"
  60. },
  61. "Value": {
  62. "Datum": {
  63. "isOverloadedStorage": false,
  64. "scriptCanvasType": {
  65. "m_type": 8
  66. },
  67. "isNullPointer": false,
  68. "$type": "Vector3",
  69. "value": [
  70. 0.0,
  71. 0.0,
  72. 0.0
  73. ]
  74. },
  75. "VariableId": {
  76. "m_id": "{D7A0E01D-FDA1-4BE7-A02B-E53B391A1BE8}"
  77. },
  78. "VariableName": "Forward"
  79. }
  80. }
  81. ]
  82. }
  83. },
  84. "Component_[17495540062796580453]": {
  85. "$type": "EditorGraph",
  86. "Id": 17495540062796580453,
  87. "m_graphData": {
  88. "m_nodes": [
  89. {
  90. "Id": {
  91. "id": 49043206295296
  92. },
  93. "Name": "SC-Node(HeartBeatNodeableNode)",
  94. "Components": {
  95. "Component_[10554541483449857898]": {
  96. "$type": "HeartBeatNodeableNode",
  97. "Id": 10554541483449857898,
  98. "Slots": [
  99. {
  100. "id": {
  101. "m_id": "{0B942881-716B-4264-94BA-C16D082D7527}"
  102. },
  103. "contracts": [
  104. {
  105. "$type": "SlotTypeContract"
  106. }
  107. ],
  108. "slotName": "Start",
  109. "DisplayGroup": {
  110. "Value": 2675529103
  111. },
  112. "Descriptor": {
  113. "ConnectionType": 1,
  114. "SlotType": 1
  115. }
  116. },
  117. {
  118. "id": {
  119. "m_id": "{A7EA43B7-A497-44E5-AC66-DC5D55ABC342}"
  120. },
  121. "contracts": [
  122. {
  123. "$type": "SlotTypeContract"
  124. }
  125. ],
  126. "slotName": "Interval",
  127. "toolTip": "The amount of time between pulses",
  128. "DisplayGroup": {
  129. "Value": 2675529103
  130. },
  131. "Descriptor": {
  132. "ConnectionType": 1,
  133. "SlotType": 2
  134. },
  135. "DataType": 1,
  136. "IsReference": true,
  137. "VariableReference": {
  138. "m_id": "{BD1838D5-DF5A-4BB3-8D5E-E6937DF5E919}"
  139. }
  140. },
  141. {
  142. "id": {
  143. "m_id": "{FD86F620-B044-45BC-A082-7D05CE2BBB08}"
  144. },
  145. "contracts": [
  146. {
  147. "$type": "SlotTypeContract"
  148. }
  149. ],
  150. "slotName": "On Start",
  151. "DisplayGroup": {
  152. "Value": 2675529103
  153. },
  154. "Descriptor": {
  155. "ConnectionType": 2,
  156. "SlotType": 1
  157. }
  158. },
  159. {
  160. "id": {
  161. "m_id": "{835DFF4B-A304-484E-B40A-6ABCEF8F5E6F}"
  162. },
  163. "contracts": [
  164. {
  165. "$type": "SlotTypeContract"
  166. }
  167. ],
  168. "slotName": "Stop",
  169. "DisplayGroup": {
  170. "Value": 3109426870
  171. },
  172. "Descriptor": {
  173. "ConnectionType": 1,
  174. "SlotType": 1
  175. }
  176. },
  177. {
  178. "id": {
  179. "m_id": "{3004A0F5-2E61-4956-A28C-783ED4A588DC}"
  180. },
  181. "contracts": [
  182. {
  183. "$type": "SlotTypeContract"
  184. }
  185. ],
  186. "slotName": "On Stop",
  187. "DisplayGroup": {
  188. "Value": 3109426870
  189. },
  190. "Descriptor": {
  191. "ConnectionType": 2,
  192. "SlotType": 1
  193. }
  194. },
  195. {
  196. "id": {
  197. "m_id": "{A3FB3DEE-1E9B-4853-8F63-9F9DDD55086D}"
  198. },
  199. "contracts": [
  200. {
  201. "$type": "SlotTypeContract"
  202. }
  203. ],
  204. "slotName": "Pulse",
  205. "toolTip": "Signaled at each specified interval.",
  206. "DisplayGroup": {
  207. "Value": 454478554
  208. },
  209. "Descriptor": {
  210. "ConnectionType": 2,
  211. "SlotType": 1
  212. },
  213. "IsLatent": true
  214. }
  215. ],
  216. "Datums": [
  217. {
  218. "isOverloadedStorage": false,
  219. "scriptCanvasType": {
  220. "m_type": 3
  221. },
  222. "isNullPointer": false,
  223. "$type": "double",
  224. "value": 10.0,
  225. "label": "Interval"
  226. }
  227. ],
  228. "nodeable": {
  229. "m_timeUnits": 1
  230. },
  231. "slotExecutionMap": {
  232. "ins": [
  233. {
  234. "_slotId": {
  235. "m_id": "{0B942881-716B-4264-94BA-C16D082D7527}"
  236. },
  237. "_inputs": [
  238. {
  239. "_slotId": {
  240. "m_id": "{A7EA43B7-A497-44E5-AC66-DC5D55ABC342}"
  241. }
  242. }
  243. ],
  244. "_outs": [
  245. {
  246. "_slotId": {
  247. "m_id": "{FD86F620-B044-45BC-A082-7D05CE2BBB08}"
  248. },
  249. "_name": "On Start",
  250. "_interfaceSourceId": "{48AD9490-FF7F-0000-008E-4FE305000000}"
  251. }
  252. ],
  253. "_interfaceSourceId": "{408E4FE3-0500-0000-3000-000000000000}"
  254. },
  255. {
  256. "_slotId": {
  257. "m_id": "{835DFF4B-A304-484E-B40A-6ABCEF8F5E6F}"
  258. },
  259. "_outs": [
  260. {
  261. "_slotId": {
  262. "m_id": "{3004A0F5-2E61-4956-A28C-783ED4A588DC}"
  263. },
  264. "_name": "On Stop",
  265. "_interfaceSourceId": "{48AD9490-FF7F-0000-008E-4FE305000000}"
  266. }
  267. ],
  268. "_interfaceSourceId": "{408E4FE3-0500-0000-3000-000000000000}"
  269. }
  270. ],
  271. "latents": [
  272. {
  273. "_slotId": {
  274. "m_id": "{A3FB3DEE-1E9B-4853-8F63-9F9DDD55086D}"
  275. },
  276. "_name": "Pulse",
  277. "_interfaceSourceId": "{408E4FE3-0500-0000-3000-000000000000}"
  278. }
  279. ]
  280. }
  281. }
  282. }
  283. },
  284. {
  285. "Id": {
  286. "id": 49030321393408
  287. },
  288. "Name": "SC Node(GetVariable)",
  289. "Components": {
  290. "Component_[10742684868082910015]": {
  291. "$type": "GetVariableNode",
  292. "Id": 10742684868082910015,
  293. "Slots": [
  294. {
  295. "id": {
  296. "m_id": "{AAA43CB5-6BDB-4060-9C66-CAB86C0AD626}"
  297. },
  298. "contracts": [
  299. {
  300. "$type": "SlotTypeContract"
  301. }
  302. ],
  303. "slotName": "In",
  304. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  305. "Descriptor": {
  306. "ConnectionType": 1,
  307. "SlotType": 1
  308. }
  309. },
  310. {
  311. "id": {
  312. "m_id": "{02901D74-B379-4479-8F4B-ED2D06095604}"
  313. },
  314. "contracts": [
  315. {
  316. "$type": "SlotTypeContract"
  317. }
  318. ],
  319. "slotName": "Out",
  320. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  321. "Descriptor": {
  322. "ConnectionType": 2,
  323. "SlotType": 1
  324. }
  325. },
  326. {
  327. "id": {
  328. "m_id": "{9C871B27-32B9-42EF-984F-1EF2978DD543}"
  329. },
  330. "contracts": [
  331. {
  332. "$type": "SlotTypeContract"
  333. }
  334. ],
  335. "slotName": "Number",
  336. "DisplayDataType": {
  337. "m_type": 3
  338. },
  339. "Descriptor": {
  340. "ConnectionType": 2,
  341. "SlotType": 2
  342. },
  343. "DataType": 1
  344. }
  345. ],
  346. "m_variableId": {
  347. "m_id": "{459D3FE8-2ED2-4929-A70D-BF80F0029EA0}"
  348. },
  349. "m_variableDataOutSlotId": {
  350. "m_id": "{9C871B27-32B9-42EF-984F-1EF2978DD543}"
  351. }
  352. }
  353. }
  354. },
  355. {
  356. "Id": {
  357. "id": 49017436491520
  358. },
  359. "Name": "EBusEventHandler",
  360. "Components": {
  361. "Component_[11761039422035800213]": {
  362. "$type": "EBusEventHandler",
  363. "Id": 11761039422035800213,
  364. "Slots": [
  365. {
  366. "id": {
  367. "m_id": "{F530C6B6-60FA-4634-9484-867098D095AA}"
  368. },
  369. "contracts": [
  370. {
  371. "$type": "SlotTypeContract"
  372. }
  373. ],
  374. "slotName": "Connect",
  375. "toolTip": "Connect this event handler to the specified entity.",
  376. "Descriptor": {
  377. "ConnectionType": 1,
  378. "SlotType": 1
  379. }
  380. },
  381. {
  382. "id": {
  383. "m_id": "{284DC75E-91BF-4797-BB0B-F3B8BDCCB4E5}"
  384. },
  385. "contracts": [
  386. {
  387. "$type": "SlotTypeContract"
  388. }
  389. ],
  390. "slotName": "Disconnect",
  391. "toolTip": "Disconnect this event handler.",
  392. "Descriptor": {
  393. "ConnectionType": 1,
  394. "SlotType": 1
  395. }
  396. },
  397. {
  398. "id": {
  399. "m_id": "{CDE5B6AA-EA4F-481B-A3C2-DCD2C0AD4E3F}"
  400. },
  401. "contracts": [
  402. {
  403. "$type": "SlotTypeContract"
  404. }
  405. ],
  406. "slotName": "OnConnected",
  407. "toolTip": "Signaled when a connection has taken place.",
  408. "Descriptor": {
  409. "ConnectionType": 2,
  410. "SlotType": 1
  411. }
  412. },
  413. {
  414. "id": {
  415. "m_id": "{BB8B33C6-B212-4534-BAF1-C9B21A50E4C5}"
  416. },
  417. "contracts": [
  418. {
  419. "$type": "SlotTypeContract"
  420. }
  421. ],
  422. "slotName": "OnDisconnected",
  423. "toolTip": "Signaled when this event handler is disconnected.",
  424. "Descriptor": {
  425. "ConnectionType": 2,
  426. "SlotType": 1
  427. }
  428. },
  429. {
  430. "id": {
  431. "m_id": "{E252D1CA-5B75-4873-92BB-6479389278D6}"
  432. },
  433. "contracts": [
  434. {
  435. "$type": "SlotTypeContract"
  436. }
  437. ],
  438. "slotName": "OnFailure",
  439. "toolTip": "Signaled when it is not possible to connect this handler.",
  440. "Descriptor": {
  441. "ConnectionType": 2,
  442. "SlotType": 1
  443. }
  444. },
  445. {
  446. "id": {
  447. "m_id": "{B24EA1BA-EF9B-460B-915A-CDA8185225C2}"
  448. },
  449. "contracts": [
  450. {
  451. "$type": "SlotTypeContract"
  452. }
  453. ],
  454. "slotName": "Source",
  455. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  456. "Descriptor": {
  457. "ConnectionType": 1,
  458. "SlotType": 2
  459. },
  460. "DataType": 1
  461. },
  462. {
  463. "id": {
  464. "m_id": "{06CBC255-5913-45C5-A216-6EC68A9A7EA5}"
  465. },
  466. "contracts": [
  467. {
  468. "$type": "SlotTypeContract"
  469. }
  470. ],
  471. "slotName": "EntityId",
  472. "DisplayDataType": {
  473. "m_type": 1
  474. },
  475. "Descriptor": {
  476. "ConnectionType": 2,
  477. "SlotType": 2
  478. },
  479. "DataType": 1
  480. },
  481. {
  482. "id": {
  483. "m_id": "{727ABBA7-D63A-457C-B63C-30CA6C81A8A9}"
  484. },
  485. "contracts": [
  486. {
  487. "$type": "SlotTypeContract"
  488. }
  489. ],
  490. "slotName": "ExecutionSlot:OnEntityActivated",
  491. "Descriptor": {
  492. "ConnectionType": 2,
  493. "SlotType": 1
  494. },
  495. "IsLatent": true
  496. },
  497. {
  498. "id": {
  499. "m_id": "{DA52D0C0-D0A5-4E60-8F7C-53837EC7BE15}"
  500. },
  501. "contracts": [
  502. {
  503. "$type": "SlotTypeContract"
  504. }
  505. ],
  506. "slotName": "EntityId",
  507. "DisplayDataType": {
  508. "m_type": 1
  509. },
  510. "Descriptor": {
  511. "ConnectionType": 2,
  512. "SlotType": 2
  513. },
  514. "DataType": 1
  515. },
  516. {
  517. "id": {
  518. "m_id": "{CAA11344-990E-4C02-BDBE-25A6535AD03C}"
  519. },
  520. "contracts": [
  521. {
  522. "$type": "SlotTypeContract"
  523. }
  524. ],
  525. "slotName": "ExecutionSlot:OnEntityDeactivated",
  526. "Descriptor": {
  527. "ConnectionType": 2,
  528. "SlotType": 1
  529. },
  530. "IsLatent": true
  531. }
  532. ],
  533. "Datums": [
  534. {
  535. "isOverloadedStorage": false,
  536. "scriptCanvasType": {
  537. "m_type": 1
  538. },
  539. "isNullPointer": false,
  540. "$type": "EntityId",
  541. "value": {
  542. "id": 2901262558
  543. },
  544. "label": "Source"
  545. }
  546. ],
  547. "m_eventMap": [
  548. {
  549. "Key": {
  550. "Value": 245425936
  551. },
  552. "Value": {
  553. "m_eventName": "OnEntityActivated",
  554. "m_eventId": {
  555. "Value": 245425936
  556. },
  557. "m_eventSlotId": {
  558. "m_id": "{727ABBA7-D63A-457C-B63C-30CA6C81A8A9}"
  559. },
  560. "m_parameterSlotIds": [
  561. {
  562. "m_id": "{06CBC255-5913-45C5-A216-6EC68A9A7EA5}"
  563. }
  564. ],
  565. "m_numExpectedArguments": 1
  566. }
  567. },
  568. {
  569. "Key": {
  570. "Value": 4273369222
  571. },
  572. "Value": {
  573. "m_eventName": "OnEntityDeactivated",
  574. "m_eventId": {
  575. "Value": 4273369222
  576. },
  577. "m_eventSlotId": {
  578. "m_id": "{CAA11344-990E-4C02-BDBE-25A6535AD03C}"
  579. },
  580. "m_parameterSlotIds": [
  581. {
  582. "m_id": "{DA52D0C0-D0A5-4E60-8F7C-53837EC7BE15}"
  583. }
  584. ],
  585. "m_numExpectedArguments": 1
  586. }
  587. }
  588. ],
  589. "m_ebusName": "EntityBus",
  590. "m_busId": {
  591. "Value": 3358774020
  592. }
  593. }
  594. }
  595. },
  596. {
  597. "Id": {
  598. "id": 49004551589632
  599. },
  600. "Name": "SC-Node(ScriptCanvas_StringFunctions_EndsWith)",
  601. "Components": {
  602. "Component_[13662419586116334066]": {
  603. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  604. "Id": 13662419586116334066,
  605. "Slots": [
  606. {
  607. "id": {
  608. "m_id": "{5FBBA5E0-F942-4A75-A08F-69434A9E0F99}"
  609. },
  610. "contracts": [
  611. {
  612. "$type": "SlotTypeContract"
  613. }
  614. ],
  615. "slotName": "Source",
  616. "toolTip": "The string to search in.",
  617. "Descriptor": {
  618. "ConnectionType": 1,
  619. "SlotType": 2
  620. },
  621. "DataType": 1
  622. },
  623. {
  624. "id": {
  625. "m_id": "{7CAF8976-C5B0-4CD2-9AC8-43BCE1B9C555}"
  626. },
  627. "contracts": [
  628. {
  629. "$type": "SlotTypeContract"
  630. }
  631. ],
  632. "slotName": "Pattern",
  633. "toolTip": "The substring to search for.",
  634. "Descriptor": {
  635. "ConnectionType": 1,
  636. "SlotType": 2
  637. },
  638. "DataType": 1
  639. },
  640. {
  641. "id": {
  642. "m_id": "{B6425DBE-EA9A-4310-A266-E7AEC1B36B78}"
  643. },
  644. "contracts": [
  645. {
  646. "$type": "SlotTypeContract"
  647. }
  648. ],
  649. "slotName": "Case Sensitive",
  650. "toolTip": "Take into account the case of the string when searching.",
  651. "Descriptor": {
  652. "ConnectionType": 1,
  653. "SlotType": 2
  654. },
  655. "DataType": 1
  656. },
  657. {
  658. "id": {
  659. "m_id": "{3E2CDE5F-CCA7-4A78-BA3B-9DFE13093918}"
  660. },
  661. "contracts": [
  662. {
  663. "$type": "SlotTypeContract"
  664. }
  665. ],
  666. "slotName": "In",
  667. "Descriptor": {
  668. "ConnectionType": 1,
  669. "SlotType": 1
  670. }
  671. },
  672. {
  673. "id": {
  674. "m_id": "{B541231A-30E5-4397-A831-5525AF80C682}"
  675. },
  676. "contracts": [
  677. {
  678. "$type": "SlotTypeContract"
  679. }
  680. ],
  681. "slotName": "True",
  682. "Descriptor": {
  683. "ConnectionType": 2,
  684. "SlotType": 1
  685. }
  686. },
  687. {
  688. "id": {
  689. "m_id": "{FD02D2D4-46E8-444A-B245-FCE6E8BE39E1}"
  690. },
  691. "contracts": [
  692. {
  693. "$type": "SlotTypeContract"
  694. }
  695. ],
  696. "slotName": "False",
  697. "Descriptor": {
  698. "ConnectionType": 2,
  699. "SlotType": 1
  700. }
  701. },
  702. {
  703. "isVisibile": false,
  704. "id": {
  705. "m_id": "{225397BE-56BC-4871-A755-76ECA661A22D}"
  706. },
  707. "contracts": [
  708. {
  709. "$type": "SlotTypeContract"
  710. }
  711. ],
  712. "slotName": "Boolean",
  713. "DisplayDataType": {
  714. "m_type": 0
  715. },
  716. "Descriptor": {
  717. "ConnectionType": 2,
  718. "SlotType": 2
  719. },
  720. "DataType": 1
  721. }
  722. ],
  723. "Datums": [
  724. {
  725. "isOverloadedStorage": false,
  726. "scriptCanvasType": {
  727. "m_type": 5
  728. },
  729. "isNullPointer": false,
  730. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  731. "value": "",
  732. "label": "Source"
  733. },
  734. {
  735. "isOverloadedStorage": false,
  736. "scriptCanvasType": {
  737. "m_type": 5
  738. },
  739. "isNullPointer": false,
  740. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  741. "value": "Control",
  742. "label": "Pattern"
  743. },
  744. {
  745. "isOverloadedStorage": false,
  746. "scriptCanvasType": {
  747. "m_type": 0
  748. },
  749. "isNullPointer": false,
  750. "$type": "bool",
  751. "value": true,
  752. "label": "Case Sensitive"
  753. }
  754. ],
  755. "methodType": 1,
  756. "methodName": "ScriptCanvas_StringFunctions_EndsWith",
  757. "resultSlotIDs": [
  758. {}
  759. ],
  760. "inputSlots": [
  761. {
  762. "m_id": "{5FBBA5E0-F942-4A75-A08F-69434A9E0F99}"
  763. },
  764. {
  765. "m_id": "{7CAF8976-C5B0-4CD2-9AC8-43BCE1B9C555}"
  766. },
  767. {
  768. "m_id": "{B6425DBE-EA9A-4310-A266-E7AEC1B36B78}"
  769. }
  770. ],
  771. "prettyClassName": "ScriptCanvas_StringFunctions_EndsWith"
  772. }
  773. }
  774. },
  775. {
  776. "Id": {
  777. "id": 48991666687744
  778. },
  779. "Name": "SC-Node(SetLocalTranslation)",
  780. "Components": {
  781. "Component_[15617957613130440395]": {
  782. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  783. "Id": 15617957613130440395,
  784. "Slots": [
  785. {
  786. "id": {
  787. "m_id": "{C69985EB-6A3C-4E20-A061-772900EDF578}"
  788. },
  789. "contracts": [
  790. {
  791. "$type": "SlotTypeContract"
  792. }
  793. ],
  794. "slotName": "EntityId: 0",
  795. "Descriptor": {
  796. "ConnectionType": 1,
  797. "SlotType": 2
  798. },
  799. "DataType": 1
  800. },
  801. {
  802. "id": {
  803. "m_id": "{B35B920C-E898-42C1-B303-733CCC413721}"
  804. },
  805. "contracts": [
  806. {
  807. "$type": "SlotTypeContract"
  808. }
  809. ],
  810. "slotName": "Vector3: 1",
  811. "Descriptor": {
  812. "ConnectionType": 1,
  813. "SlotType": 2
  814. },
  815. "DataType": 1
  816. },
  817. {
  818. "id": {
  819. "m_id": "{E19B4EBF-40F4-4DA3-83B0-DEAEB6958628}"
  820. },
  821. "contracts": [
  822. {
  823. "$type": "SlotTypeContract"
  824. }
  825. ],
  826. "slotName": "In",
  827. "Descriptor": {
  828. "ConnectionType": 1,
  829. "SlotType": 1
  830. }
  831. },
  832. {
  833. "id": {
  834. "m_id": "{9993EFD4-B925-40E6-B7CE-2337D86A0702}"
  835. },
  836. "contracts": [
  837. {
  838. "$type": "SlotTypeContract"
  839. }
  840. ],
  841. "slotName": "Out",
  842. "Descriptor": {
  843. "ConnectionType": 2,
  844. "SlotType": 1
  845. }
  846. }
  847. ],
  848. "Datums": [
  849. {
  850. "isOverloadedStorage": false,
  851. "scriptCanvasType": {
  852. "m_type": 1
  853. },
  854. "isNullPointer": false,
  855. "$type": "EntityId",
  856. "value": {
  857. "id": 2901262558
  858. },
  859. "label": "Source"
  860. },
  861. {
  862. "isOverloadedStorage": false,
  863. "scriptCanvasType": {
  864. "m_type": 8
  865. },
  866. "isNullPointer": false,
  867. "$type": "Vector3",
  868. "value": [
  869. 0.0,
  870. 0.0,
  871. 0.0
  872. ],
  873. "label": "Translation"
  874. }
  875. ],
  876. "methodType": 0,
  877. "methodName": "SetLocalTranslation",
  878. "className": "TransformBus",
  879. "resultSlotIDs": [
  880. {}
  881. ],
  882. "inputSlots": [
  883. {
  884. "m_id": "{C69985EB-6A3C-4E20-A061-772900EDF578}"
  885. },
  886. {
  887. "m_id": "{B35B920C-E898-42C1-B303-733CCC413721}"
  888. }
  889. ],
  890. "prettyClassName": "TransformBus"
  891. }
  892. }
  893. },
  894. {
  895. "Id": {
  896. "id": 48978781785856
  897. },
  898. "Name": "SC-Node(ScriptCanvas_TransformFunctions_GetForward)",
  899. "Components": {
  900. "Component_[15710900253400666208]": {
  901. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  902. "Id": 15710900253400666208,
  903. "Slots": [
  904. {
  905. "id": {
  906. "m_id": "{30EEB6ED-E778-4E1F-A722-50B2AAF5AAC6}"
  907. },
  908. "contracts": [
  909. {
  910. "$type": "SlotTypeContract"
  911. }
  912. ],
  913. "slotName": "Source",
  914. "Descriptor": {
  915. "ConnectionType": 1,
  916. "SlotType": 2
  917. },
  918. "DataType": 1
  919. },
  920. {
  921. "id": {
  922. "m_id": "{58B22F56-9509-47AE-B010-DBB5CDB28132}"
  923. },
  924. "contracts": [
  925. {
  926. "$type": "SlotTypeContract"
  927. }
  928. ],
  929. "slotName": "Scale",
  930. "Descriptor": {
  931. "ConnectionType": 1,
  932. "SlotType": 2
  933. },
  934. "DataType": 1
  935. },
  936. {
  937. "id": {
  938. "m_id": "{FC6F04CF-3C3C-4BFF-96E6-FA7604749ADE}"
  939. },
  940. "contracts": [
  941. {
  942. "$type": "SlotTypeContract"
  943. }
  944. ],
  945. "slotName": "In",
  946. "Descriptor": {
  947. "ConnectionType": 1,
  948. "SlotType": 1
  949. }
  950. },
  951. {
  952. "id": {
  953. "m_id": "{5C220946-5D2D-418C-A3BF-181B1EC1E3A1}"
  954. },
  955. "contracts": [
  956. {
  957. "$type": "SlotTypeContract"
  958. }
  959. ],
  960. "slotName": "Out",
  961. "Descriptor": {
  962. "ConnectionType": 2,
  963. "SlotType": 1
  964. }
  965. },
  966. {
  967. "id": {
  968. "m_id": "{DB829753-C336-449F-B35E-1F5603CB7424}"
  969. },
  970. "contracts": [
  971. {
  972. "$type": "SlotTypeContract"
  973. }
  974. ],
  975. "slotName": "Vector3",
  976. "DisplayDataType": {
  977. "m_type": 8
  978. },
  979. "Descriptor": {
  980. "ConnectionType": 2,
  981. "SlotType": 2
  982. },
  983. "DataType": 1
  984. }
  985. ],
  986. "Datums": [
  987. {
  988. "isOverloadedStorage": false,
  989. "scriptCanvasType": {
  990. "m_type": 7
  991. },
  992. "isNullPointer": false,
  993. "$type": "Transform",
  994. "value": {
  995. "Translation": [
  996. 0.0,
  997. 0.0,
  998. 0.0
  999. ],
  1000. "Rotation": [
  1001. 0.0,
  1002. 0.0,
  1003. 0.0,
  1004. 1.0
  1005. ],
  1006. "Scale": 1.0
  1007. },
  1008. "label": "Source"
  1009. },
  1010. {
  1011. "isOverloadedStorage": false,
  1012. "scriptCanvasType": {
  1013. "m_type": 3
  1014. },
  1015. "isNullPointer": false,
  1016. "$type": "double",
  1017. "value": 1.0,
  1018. "label": "Scale"
  1019. }
  1020. ],
  1021. "methodType": 1,
  1022. "methodName": "ScriptCanvas_TransformFunctions_GetForward",
  1023. "resultSlotIDs": [
  1024. {}
  1025. ],
  1026. "inputSlots": [
  1027. {
  1028. "m_id": "{30EEB6ED-E778-4E1F-A722-50B2AAF5AAC6}"
  1029. },
  1030. {
  1031. "m_id": "{58B22F56-9509-47AE-B010-DBB5CDB28132}"
  1032. }
  1033. ],
  1034. "prettyClassName": "ScriptCanvas_TransformFunctions_GetForward"
  1035. }
  1036. }
  1037. },
  1038. {
  1039. "Id": {
  1040. "id": 48965896883968
  1041. },
  1042. "Name": "SC-Node(Start)",
  1043. "Components": {
  1044. "Component_[16781887996609156503]": {
  1045. "$type": "Start",
  1046. "Id": 16781887996609156503,
  1047. "Slots": [
  1048. {
  1049. "id": {
  1050. "m_id": "{4E4CDC48-1925-493A-B473-E7848784F5A0}"
  1051. },
  1052. "contracts": [
  1053. {
  1054. "$type": "SlotTypeContract"
  1055. }
  1056. ],
  1057. "slotName": "Out",
  1058. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1059. "Descriptor": {
  1060. "ConnectionType": 2,
  1061. "SlotType": 1
  1062. }
  1063. }
  1064. ]
  1065. }
  1066. }
  1067. },
  1068. {
  1069. "Id": {
  1070. "id": 49047501262592
  1071. },
  1072. "Name": "SendScriptEvent",
  1073. "Components": {
  1074. "Component_[17902203746399172204]": {
  1075. "$type": "SendScriptEvent",
  1076. "Id": 17902203746399172204,
  1077. "Slots": [
  1078. {
  1079. "id": {
  1080. "m_id": "{0CD56A55-F88C-4AE8-829A-7AEF90A7DA34}"
  1081. },
  1082. "contracts": [
  1083. {
  1084. "$type": "SlotTypeContract"
  1085. }
  1086. ],
  1087. "slotName": "In",
  1088. "toolTip": "Fires the specified ScriptEvent when signaled",
  1089. "Descriptor": {
  1090. "ConnectionType": 1,
  1091. "SlotType": 1
  1092. }
  1093. },
  1094. {
  1095. "id": {
  1096. "m_id": "{1D5D4DD3-6771-41F7-A0A5-FEB77455D7ED}"
  1097. },
  1098. "contracts": [
  1099. {
  1100. "$type": "SlotTypeContract"
  1101. }
  1102. ],
  1103. "slotName": "Out",
  1104. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  1105. "Descriptor": {
  1106. "ConnectionType": 2,
  1107. "SlotType": 1
  1108. }
  1109. }
  1110. ],
  1111. "m_version": 11,
  1112. "m_scriptEventAssetId": {
  1113. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  1114. },
  1115. "m_asset": {
  1116. "assetId": {
  1117. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  1118. },
  1119. "loadBehavior": "PreLoad",
  1120. "assetHint": "scriptcanvas/paper_kid_script_events.scriptevents"
  1121. },
  1122. "m_busId": {
  1123. "Value": 1894911424
  1124. },
  1125. "m_eventId": {
  1126. "Value": 1558730029
  1127. }
  1128. }
  1129. }
  1130. },
  1131. {
  1132. "Id": {
  1133. "id": 49034616360704
  1134. },
  1135. "Name": "SC-EventNode(On Collision Begin event)",
  1136. "Components": {
  1137. "Component_[18287217062916473212]": {
  1138. "$type": "AzEventHandler",
  1139. "Id": 18287217062916473212,
  1140. "Slots": [
  1141. {
  1142. "id": {
  1143. "m_id": "{B7333B41-D19B-4DD8-ACC8-8B3B6B215825}"
  1144. },
  1145. "contracts": [
  1146. {
  1147. "$type": "SlotTypeContract"
  1148. },
  1149. {
  1150. "$type": "ConnectionLimitContract",
  1151. "limit": 1
  1152. },
  1153. {
  1154. "$type": "RestrictedNodeContract",
  1155. "m_nodeId": {
  1156. "id": 49008846556928
  1157. }
  1158. }
  1159. ],
  1160. "slotName": "Connect",
  1161. "toolTip": "Connect the AZ Event to this AZ Event Handler.",
  1162. "Descriptor": {
  1163. "ConnectionType": 1,
  1164. "SlotType": 1
  1165. }
  1166. },
  1167. {
  1168. "id": {
  1169. "m_id": "{D01AE675-25B0-49DF-ACCC-FC292B49A79B}"
  1170. },
  1171. "contracts": [
  1172. {
  1173. "$type": "SlotTypeContract"
  1174. }
  1175. ],
  1176. "slotName": "Disconnect",
  1177. "toolTip": "Disconnect current AZ Event from this AZ Event Handler.",
  1178. "Descriptor": {
  1179. "ConnectionType": 1,
  1180. "SlotType": 1
  1181. }
  1182. },
  1183. {
  1184. "id": {
  1185. "m_id": "{C5A2ADA9-A44D-486F-881F-26BB20D68645}"
  1186. },
  1187. "contracts": [
  1188. {
  1189. "$type": "SlotTypeContract"
  1190. }
  1191. ],
  1192. "slotName": "On Connected",
  1193. "toolTip": "Signaled when a connection has taken place.",
  1194. "Descriptor": {
  1195. "ConnectionType": 2,
  1196. "SlotType": 1
  1197. }
  1198. },
  1199. {
  1200. "id": {
  1201. "m_id": "{8793AC14-D0C2-467C-929D-FB2A85CFE4B8}"
  1202. },
  1203. "contracts": [
  1204. {
  1205. "$type": "SlotTypeContract"
  1206. }
  1207. ],
  1208. "slotName": "On Disconnected",
  1209. "toolTip": "Signaled when this event handler is disconnected.",
  1210. "Descriptor": {
  1211. "ConnectionType": 2,
  1212. "SlotType": 1
  1213. }
  1214. },
  1215. {
  1216. "id": {
  1217. "m_id": "{8CE6885A-C46C-4FBF-A249-79D2041CCE4F}"
  1218. },
  1219. "contracts": [
  1220. {
  1221. "$type": "SlotTypeContract"
  1222. }
  1223. ],
  1224. "slotName": "OnEvent",
  1225. "toolTip": "Triggered when the AZ Event invokes Signal() function.",
  1226. "Descriptor": {
  1227. "ConnectionType": 2,
  1228. "SlotType": 1
  1229. },
  1230. "IsLatent": true
  1231. },
  1232. {
  1233. "id": {
  1234. "m_id": "{B888E928-C1CD-46CF-B2AA-69746C2C786D}"
  1235. },
  1236. "contracts": [
  1237. {
  1238. "$type": "SlotTypeContract"
  1239. }
  1240. ],
  1241. "slotName": "Simulated Body Handle",
  1242. "DisplayDataType": {
  1243. "m_type": 4,
  1244. "m_azType": "{53C0CD3E-D0FC-5D90-9E9B-EF364D430B08}"
  1245. },
  1246. "Descriptor": {
  1247. "ConnectionType": 2,
  1248. "SlotType": 2
  1249. },
  1250. "DataType": 1
  1251. },
  1252. {
  1253. "id": {
  1254. "m_id": "{B32AB29E-D38E-43CF-B062-FC998F926C9A}"
  1255. },
  1256. "contracts": [
  1257. {
  1258. "$type": "SlotTypeContract"
  1259. }
  1260. ],
  1261. "slotName": "Collision Event",
  1262. "DisplayDataType": {
  1263. "m_type": 4,
  1264. "m_azType": "{7602AA36-792C-4BDC-BDF8-AA16792151A3}"
  1265. },
  1266. "Descriptor": {
  1267. "ConnectionType": 2,
  1268. "SlotType": 2
  1269. },
  1270. "DataType": 1
  1271. },
  1272. {
  1273. "id": {
  1274. "m_id": "{B30B1B74-33AD-4925-8E5D-7E4231B19E66}"
  1275. },
  1276. "contracts": [
  1277. {
  1278. "$type": "SlotTypeContract"
  1279. },
  1280. {
  1281. "$type": "ConnectionLimitContract",
  1282. "limit": 1
  1283. },
  1284. {
  1285. "$type": "RestrictedNodeContract",
  1286. "m_nodeId": {
  1287. "id": 49008846556928
  1288. }
  1289. }
  1290. ],
  1291. "slotName": "On Collision Begin event",
  1292. "Descriptor": {
  1293. "ConnectionType": 1,
  1294. "SlotType": 2
  1295. },
  1296. "DataType": 1
  1297. }
  1298. ],
  1299. "Datums": [
  1300. {
  1301. "scriptCanvasType": {
  1302. "m_type": 4,
  1303. "m_azType": "{4C19E257-F929-524E-80E3-C910C5F3E2D9}"
  1304. },
  1305. "isNullPointer": true,
  1306. "label": "On Collision Begin event"
  1307. }
  1308. ],
  1309. "m_azEventEntry": {
  1310. "AzEventEntryData_v0": {
  1311. "eventName": "On Collision Begin event",
  1312. "parameterSlotIds": [
  1313. {
  1314. "m_id": "{B888E928-C1CD-46CF-B2AA-69746C2C786D}"
  1315. },
  1316. {
  1317. "m_id": "{B32AB29E-D38E-43CF-B062-FC998F926C9A}"
  1318. }
  1319. ],
  1320. "azEventInputSlotId": {
  1321. "m_id": "{B30B1B74-33AD-4925-8E5D-7E4231B19E66}"
  1322. }
  1323. }
  1324. }
  1325. }
  1326. }
  1327. },
  1328. {
  1329. "Id": {
  1330. "id": 49021731458816
  1331. },
  1332. "Name": "SC-Node(OperatorAdd)",
  1333. "Components": {
  1334. "Component_[2685544352842817717]": {
  1335. "$type": "OperatorAdd",
  1336. "Id": 2685544352842817717,
  1337. "Slots": [
  1338. {
  1339. "id": {
  1340. "m_id": "{E17A3DFB-F2AA-49B6-BAEF-908CD54ADF52}"
  1341. },
  1342. "contracts": [
  1343. {
  1344. "$type": "SlotTypeContract"
  1345. }
  1346. ],
  1347. "slotName": "In",
  1348. "Descriptor": {
  1349. "ConnectionType": 1,
  1350. "SlotType": 1
  1351. }
  1352. },
  1353. {
  1354. "id": {
  1355. "m_id": "{5F9C8EF1-89ED-4876-BAAA-1EBC5AD30A49}"
  1356. },
  1357. "contracts": [
  1358. {
  1359. "$type": "SlotTypeContract"
  1360. }
  1361. ],
  1362. "slotName": "Out",
  1363. "Descriptor": {
  1364. "ConnectionType": 2,
  1365. "SlotType": 1
  1366. }
  1367. },
  1368. {
  1369. "id": {
  1370. "m_id": "{46346F7B-474A-4D8C-8C6B-CF6866182002}"
  1371. },
  1372. "DynamicTypeOverride": 3,
  1373. "contracts": [
  1374. {
  1375. "$type": "SlotTypeContract"
  1376. },
  1377. {
  1378. "$type": "MathOperatorContract",
  1379. "NativeTypes": [
  1380. {
  1381. "m_type": 3
  1382. },
  1383. {
  1384. "m_type": 6
  1385. },
  1386. {
  1387. "m_type": 8
  1388. },
  1389. {
  1390. "m_type": 9
  1391. },
  1392. {
  1393. "m_type": 10
  1394. },
  1395. {
  1396. "m_type": 11
  1397. },
  1398. {
  1399. "m_type": 12
  1400. },
  1401. {
  1402. "m_type": 14
  1403. },
  1404. {
  1405. "m_type": 15
  1406. }
  1407. ]
  1408. }
  1409. ],
  1410. "slotName": "Vector3 0",
  1411. "toolTip": "An operand to use in performing the specified Operation",
  1412. "DisplayDataType": {
  1413. "m_type": 8
  1414. },
  1415. "DisplayGroup": {
  1416. "Value": 1114760223
  1417. },
  1418. "Descriptor": {
  1419. "ConnectionType": 1,
  1420. "SlotType": 2
  1421. },
  1422. "DynamicGroup": {
  1423. "Value": 1114760223
  1424. },
  1425. "DataType": 1
  1426. },
  1427. {
  1428. "id": {
  1429. "m_id": "{BFC75D39-F920-4A41-84FB-28E584FE96D7}"
  1430. },
  1431. "DynamicTypeOverride": 3,
  1432. "contracts": [
  1433. {
  1434. "$type": "SlotTypeContract"
  1435. },
  1436. {
  1437. "$type": "MathOperatorContract",
  1438. "NativeTypes": [
  1439. {
  1440. "m_type": 3
  1441. },
  1442. {
  1443. "m_type": 6
  1444. },
  1445. {
  1446. "m_type": 8
  1447. },
  1448. {
  1449. "m_type": 9
  1450. },
  1451. {
  1452. "m_type": 10
  1453. },
  1454. {
  1455. "m_type": 11
  1456. },
  1457. {
  1458. "m_type": 12
  1459. },
  1460. {
  1461. "m_type": 14
  1462. },
  1463. {
  1464. "m_type": 15
  1465. }
  1466. ]
  1467. }
  1468. ],
  1469. "slotName": "Vector3 1",
  1470. "toolTip": "An operand to use in performing the specified Operation",
  1471. "DisplayDataType": {
  1472. "m_type": 8
  1473. },
  1474. "DisplayGroup": {
  1475. "Value": 1114760223
  1476. },
  1477. "Descriptor": {
  1478. "ConnectionType": 1,
  1479. "SlotType": 2
  1480. },
  1481. "DynamicGroup": {
  1482. "Value": 1114760223
  1483. },
  1484. "DataType": 1
  1485. },
  1486. {
  1487. "id": {
  1488. "m_id": "{7472B661-BEB3-4221-B1F6-C0F4C90B0069}"
  1489. },
  1490. "DynamicTypeOverride": 3,
  1491. "contracts": [
  1492. {
  1493. "$type": "SlotTypeContract"
  1494. },
  1495. {
  1496. "$type": "MathOperatorContract",
  1497. "NativeTypes": [
  1498. {
  1499. "m_type": 3
  1500. },
  1501. {
  1502. "m_type": 6
  1503. },
  1504. {
  1505. "m_type": 8
  1506. },
  1507. {
  1508. "m_type": 9
  1509. },
  1510. {
  1511. "m_type": 10
  1512. },
  1513. {
  1514. "m_type": 11
  1515. },
  1516. {
  1517. "m_type": 12
  1518. },
  1519. {
  1520. "m_type": 14
  1521. },
  1522. {
  1523. "m_type": 15
  1524. }
  1525. ]
  1526. }
  1527. ],
  1528. "slotName": "Result",
  1529. "toolTip": "The result of the specified operation",
  1530. "DisplayDataType": {
  1531. "m_type": 8
  1532. },
  1533. "DisplayGroup": {
  1534. "Value": 1114760223
  1535. },
  1536. "Descriptor": {
  1537. "ConnectionType": 2,
  1538. "SlotType": 2
  1539. },
  1540. "DynamicGroup": {
  1541. "Value": 1114760223
  1542. },
  1543. "DataType": 1
  1544. }
  1545. ],
  1546. "Datums": [
  1547. {
  1548. "isOverloadedStorage": false,
  1549. "scriptCanvasType": {
  1550. "m_type": 8
  1551. },
  1552. "isNullPointer": false,
  1553. "$type": "Vector3",
  1554. "value": [
  1555. 0.0,
  1556. 0.0,
  1557. 0.0
  1558. ],
  1559. "label": "Vector3 0"
  1560. },
  1561. {
  1562. "isOverloadedStorage": false,
  1563. "scriptCanvasType": {
  1564. "m_type": 8
  1565. },
  1566. "isNullPointer": false,
  1567. "$type": "Vector3",
  1568. "value": [
  1569. 0.05000000074505806,
  1570. 0.0,
  1571. 0.0
  1572. ],
  1573. "label": "Vector3 1"
  1574. }
  1575. ]
  1576. }
  1577. }
  1578. },
  1579. {
  1580. "Id": {
  1581. "id": 49008846556928
  1582. },
  1583. "Name": "SC-Node(GetOnCollisionBeginEvent)",
  1584. "Components": {
  1585. "Component_[2780021014401124204]": {
  1586. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1587. "Id": 2780021014401124204,
  1588. "Slots": [
  1589. {
  1590. "id": {
  1591. "m_id": "{FD442634-65D4-4075-BAEA-EE5161256E85}"
  1592. },
  1593. "contracts": [
  1594. {
  1595. "$type": "SlotTypeContract"
  1596. }
  1597. ],
  1598. "slotName": "EntityId",
  1599. "Descriptor": {
  1600. "ConnectionType": 1,
  1601. "SlotType": 2
  1602. },
  1603. "DataType": 1
  1604. },
  1605. {
  1606. "id": {
  1607. "m_id": "{D68CC0C1-845B-4650-921B-659399E1FC11}"
  1608. },
  1609. "contracts": [
  1610. {
  1611. "$type": "SlotTypeContract"
  1612. }
  1613. ],
  1614. "slotName": "In",
  1615. "Descriptor": {
  1616. "ConnectionType": 1,
  1617. "SlotType": 1
  1618. }
  1619. },
  1620. {
  1621. "id": {
  1622. "m_id": "{30F51AD2-9303-44D3-89FB-18577FEDF981}"
  1623. },
  1624. "contracts": [
  1625. {
  1626. "$type": "SlotTypeContract"
  1627. }
  1628. ],
  1629. "slotName": "Out",
  1630. "Descriptor": {
  1631. "ConnectionType": 2,
  1632. "SlotType": 1
  1633. }
  1634. },
  1635. {
  1636. "id": {
  1637. "m_id": "{01AA0426-3AC1-430E-87F4-CD871CEF555E}"
  1638. },
  1639. "contracts": [
  1640. {
  1641. "$type": "SlotTypeContract"
  1642. }
  1643. ],
  1644. "slotName": "Event<AZStd::tuple<Crc32, int>, const CollisionEvent&>",
  1645. "DisplayDataType": {
  1646. "m_type": 4,
  1647. "m_azType": "{4C19E257-F929-524E-80E3-C910C5F3E2D9}"
  1648. },
  1649. "Descriptor": {
  1650. "ConnectionType": 2,
  1651. "SlotType": 2
  1652. },
  1653. "DataType": 1
  1654. }
  1655. ],
  1656. "Datums": [
  1657. {
  1658. "isOverloadedStorage": false,
  1659. "scriptCanvasType": {
  1660. "m_type": 1
  1661. },
  1662. "isNullPointer": false,
  1663. "$type": "EntityId",
  1664. "value": {
  1665. "id": 2901262558
  1666. },
  1667. "label": "Entity Id"
  1668. }
  1669. ],
  1670. "methodType": 2,
  1671. "methodName": "GetOnCollisionBeginEvent",
  1672. "className": "SimulatedBody",
  1673. "resultSlotIDs": [
  1674. {}
  1675. ],
  1676. "inputSlots": [
  1677. {
  1678. "m_id": "{FD442634-65D4-4075-BAEA-EE5161256E85}"
  1679. }
  1680. ],
  1681. "prettyClassName": "SimulatedBody"
  1682. }
  1683. }
  1684. },
  1685. {
  1686. "Id": {
  1687. "id": 48995961655040
  1688. },
  1689. "Name": "SC-Node(SetLocalRotation)",
  1690. "Components": {
  1691. "Component_[3732101503763964582]": {
  1692. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1693. "Id": 3732101503763964582,
  1694. "Slots": [
  1695. {
  1696. "id": {
  1697. "m_id": "{714CAAEF-CEC2-4D59-9285-271EFEFC3593}"
  1698. },
  1699. "contracts": [
  1700. {
  1701. "$type": "SlotTypeContract"
  1702. }
  1703. ],
  1704. "slotName": "EntityId: 0",
  1705. "Descriptor": {
  1706. "ConnectionType": 1,
  1707. "SlotType": 2
  1708. },
  1709. "DataType": 1
  1710. },
  1711. {
  1712. "id": {
  1713. "m_id": "{52E8C721-3C8D-4B1A-8168-C8DAD113E317}"
  1714. },
  1715. "contracts": [
  1716. {
  1717. "$type": "SlotTypeContract"
  1718. }
  1719. ],
  1720. "slotName": "Vector3: 1",
  1721. "Descriptor": {
  1722. "ConnectionType": 1,
  1723. "SlotType": 2
  1724. },
  1725. "DataType": 1
  1726. },
  1727. {
  1728. "id": {
  1729. "m_id": "{24B1BE8C-096F-4919-894C-2A50E19187BA}"
  1730. },
  1731. "contracts": [
  1732. {
  1733. "$type": "SlotTypeContract"
  1734. }
  1735. ],
  1736. "slotName": "In",
  1737. "Descriptor": {
  1738. "ConnectionType": 1,
  1739. "SlotType": 1
  1740. }
  1741. },
  1742. {
  1743. "id": {
  1744. "m_id": "{A2AE9FF6-CCA9-46CA-8489-A2D7D97E8F76}"
  1745. },
  1746. "contracts": [
  1747. {
  1748. "$type": "SlotTypeContract"
  1749. }
  1750. ],
  1751. "slotName": "Out",
  1752. "Descriptor": {
  1753. "ConnectionType": 2,
  1754. "SlotType": 1
  1755. }
  1756. }
  1757. ],
  1758. "Datums": [
  1759. {
  1760. "isOverloadedStorage": false,
  1761. "scriptCanvasType": {
  1762. "m_type": 1
  1763. },
  1764. "isNullPointer": false,
  1765. "$type": "EntityId",
  1766. "value": {
  1767. "id": 2901262558
  1768. },
  1769. "label": "Source"
  1770. },
  1771. {
  1772. "isOverloadedStorage": false,
  1773. "scriptCanvasType": {
  1774. "m_type": 8
  1775. },
  1776. "isNullPointer": false,
  1777. "$type": "Vector3",
  1778. "value": [
  1779. 0.0,
  1780. 0.0,
  1781. 89.5999984741211
  1782. ],
  1783. "label": "Euler Angles (Radians)"
  1784. }
  1785. ],
  1786. "methodType": 0,
  1787. "methodName": "SetLocalRotation",
  1788. "className": "TransformBus",
  1789. "resultSlotIDs": [
  1790. {}
  1791. ],
  1792. "inputSlots": [
  1793. {
  1794. "m_id": "{714CAAEF-CEC2-4D59-9285-271EFEFC3593}"
  1795. },
  1796. {
  1797. "m_id": "{52E8C721-3C8D-4B1A-8168-C8DAD113E317}"
  1798. }
  1799. ],
  1800. "prettyClassName": "TransformBus"
  1801. }
  1802. }
  1803. },
  1804. {
  1805. "Id": {
  1806. "id": 48983076753152
  1807. },
  1808. "Name": "SC-Node(GetEntityName)",
  1809. "Components": {
  1810. "Component_[4181901507880404076]": {
  1811. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1812. "Id": 4181901507880404076,
  1813. "Slots": [
  1814. {
  1815. "id": {
  1816. "m_id": "{1127602F-F67C-4C0E-9988-C349650276A3}"
  1817. },
  1818. "contracts": [
  1819. {
  1820. "$type": "SlotTypeContract"
  1821. }
  1822. ],
  1823. "slotName": "EntityId",
  1824. "Descriptor": {
  1825. "ConnectionType": 1,
  1826. "SlotType": 2
  1827. },
  1828. "DataType": 1
  1829. },
  1830. {
  1831. "id": {
  1832. "m_id": "{986A3CC3-3C87-41F7-A00C-55587DABB350}"
  1833. },
  1834. "contracts": [
  1835. {
  1836. "$type": "SlotTypeContract"
  1837. }
  1838. ],
  1839. "slotName": "In",
  1840. "Descriptor": {
  1841. "ConnectionType": 1,
  1842. "SlotType": 1
  1843. }
  1844. },
  1845. {
  1846. "id": {
  1847. "m_id": "{947729F7-7752-4F73-A584-255BA3FC231C}"
  1848. },
  1849. "contracts": [
  1850. {
  1851. "$type": "SlotTypeContract"
  1852. }
  1853. ],
  1854. "slotName": "Out",
  1855. "Descriptor": {
  1856. "ConnectionType": 2,
  1857. "SlotType": 1
  1858. }
  1859. },
  1860. {
  1861. "id": {
  1862. "m_id": "{27150FF5-8B09-4E0F-B37A-2B85CF39C004}"
  1863. },
  1864. "contracts": [
  1865. {
  1866. "$type": "SlotTypeContract"
  1867. }
  1868. ],
  1869. "slotName": "String",
  1870. "DisplayDataType": {
  1871. "m_type": 5
  1872. },
  1873. "Descriptor": {
  1874. "ConnectionType": 2,
  1875. "SlotType": 2
  1876. },
  1877. "DataType": 1
  1878. }
  1879. ],
  1880. "Datums": [
  1881. {
  1882. "isOverloadedStorage": false,
  1883. "scriptCanvasType": {
  1884. "m_type": 1
  1885. },
  1886. "isNullPointer": false,
  1887. "$type": "EntityId",
  1888. "value": {
  1889. "id": 2901262558
  1890. },
  1891. "label": "Entity Id"
  1892. }
  1893. ],
  1894. "methodType": 0,
  1895. "methodName": "GetEntityName",
  1896. "className": "ComponentApplicationBus",
  1897. "resultSlotIDs": [
  1898. {}
  1899. ],
  1900. "inputSlots": [
  1901. {
  1902. "m_id": "{1127602F-F67C-4C0E-9988-C349650276A3}"
  1903. }
  1904. ],
  1905. "prettyClassName": "ComponentApplicationBus"
  1906. }
  1907. }
  1908. },
  1909. {
  1910. "Id": {
  1911. "id": 48970191851264
  1912. },
  1913. "Name": "SC-Node(GetLocalTranslation)",
  1914. "Components": {
  1915. "Component_[4350831814468884266]": {
  1916. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1917. "Id": 4350831814468884266,
  1918. "Slots": [
  1919. {
  1920. "id": {
  1921. "m_id": "{3E9C8272-882E-4BE6-A4E7-BA63D2C37E0B}"
  1922. },
  1923. "contracts": [
  1924. {
  1925. "$type": "SlotTypeContract"
  1926. }
  1927. ],
  1928. "slotName": "EntityId",
  1929. "Descriptor": {
  1930. "ConnectionType": 1,
  1931. "SlotType": 2
  1932. },
  1933. "DataType": 1
  1934. },
  1935. {
  1936. "id": {
  1937. "m_id": "{707EF6A9-0329-4048-AF2D-31566DB843BB}"
  1938. },
  1939. "contracts": [
  1940. {
  1941. "$type": "SlotTypeContract"
  1942. }
  1943. ],
  1944. "slotName": "In",
  1945. "Descriptor": {
  1946. "ConnectionType": 1,
  1947. "SlotType": 1
  1948. }
  1949. },
  1950. {
  1951. "id": {
  1952. "m_id": "{D8506844-9348-49D0-AA6E-0C3221669DAF}"
  1953. },
  1954. "contracts": [
  1955. {
  1956. "$type": "SlotTypeContract"
  1957. }
  1958. ],
  1959. "slotName": "Out",
  1960. "Descriptor": {
  1961. "ConnectionType": 2,
  1962. "SlotType": 1
  1963. }
  1964. },
  1965. {
  1966. "id": {
  1967. "m_id": "{D72501D4-89EA-43B4-B86F-A7D3FA2351DB}"
  1968. },
  1969. "contracts": [
  1970. {
  1971. "$type": "SlotTypeContract"
  1972. }
  1973. ],
  1974. "slotName": "Vector3",
  1975. "DisplayDataType": {
  1976. "m_type": 8
  1977. },
  1978. "Descriptor": {
  1979. "ConnectionType": 2,
  1980. "SlotType": 2
  1981. },
  1982. "DataType": 1
  1983. }
  1984. ],
  1985. "Datums": [
  1986. {
  1987. "isOverloadedStorage": false,
  1988. "scriptCanvasType": {
  1989. "m_type": 1
  1990. },
  1991. "isNullPointer": false,
  1992. "$type": "EntityId",
  1993. "value": {
  1994. "id": 2901262558
  1995. },
  1996. "label": "EntityId"
  1997. }
  1998. ],
  1999. "methodType": 0,
  2000. "methodName": "GetLocalTranslation",
  2001. "className": "TransformBus",
  2002. "resultSlotIDs": [
  2003. {}
  2004. ],
  2005. "inputSlots": [
  2006. {
  2007. "m_id": "{3E9C8272-882E-4BE6-A4E7-BA63D2C37E0B}"
  2008. }
  2009. ],
  2010. "prettyClassName": "TransformBus"
  2011. }
  2012. }
  2013. },
  2014. {
  2015. "Id": {
  2016. "id": 49051796229888
  2017. },
  2018. "Name": "SC Node(SetVariable)",
  2019. "Components": {
  2020. "Component_[4529330073772781225]": {
  2021. "$type": "SetVariableNode",
  2022. "Id": 4529330073772781225,
  2023. "Slots": [
  2024. {
  2025. "id": {
  2026. "m_id": "{3FAEABFC-CE3E-423A-8651-216FB09BC58B}"
  2027. },
  2028. "contracts": [
  2029. {
  2030. "$type": "SlotTypeContract"
  2031. }
  2032. ],
  2033. "slotName": "In",
  2034. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  2035. "Descriptor": {
  2036. "ConnectionType": 1,
  2037. "SlotType": 1
  2038. }
  2039. },
  2040. {
  2041. "id": {
  2042. "m_id": "{028139FB-BE5B-45D5-A6E3-A705ED2B9B67}"
  2043. },
  2044. "contracts": [
  2045. {
  2046. "$type": "SlotTypeContract"
  2047. }
  2048. ],
  2049. "slotName": "Out",
  2050. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  2051. "Descriptor": {
  2052. "ConnectionType": 2,
  2053. "SlotType": 1
  2054. }
  2055. },
  2056. {
  2057. "id": {
  2058. "m_id": "{AFF845FB-4E13-455B-A24F-83B00FF49BC2}"
  2059. },
  2060. "contracts": [
  2061. {
  2062. "$type": "SlotTypeContract"
  2063. }
  2064. ],
  2065. "slotName": "Vector3",
  2066. "Descriptor": {
  2067. "ConnectionType": 1,
  2068. "SlotType": 2
  2069. },
  2070. "DataType": 1
  2071. },
  2072. {
  2073. "id": {
  2074. "m_id": "{6EBA6137-1205-45F6-9DA8-E86C7510719E}"
  2075. },
  2076. "contracts": [
  2077. {
  2078. "$type": "SlotTypeContract"
  2079. }
  2080. ],
  2081. "slotName": "Vector3",
  2082. "DisplayDataType": {
  2083. "m_type": 8
  2084. },
  2085. "Descriptor": {
  2086. "ConnectionType": 2,
  2087. "SlotType": 2
  2088. },
  2089. "DataType": 1
  2090. },
  2091. {
  2092. "id": {
  2093. "m_id": "{F14646B2-FA61-494F-98BF-F8CBB611F494}"
  2094. },
  2095. "contracts": [
  2096. {
  2097. "$type": "SlotTypeContract"
  2098. }
  2099. ],
  2100. "slotName": "X",
  2101. "DisplayDataType": {
  2102. "m_type": 3
  2103. },
  2104. "Descriptor": {
  2105. "ConnectionType": 2,
  2106. "SlotType": 2
  2107. },
  2108. "DataType": 1
  2109. },
  2110. {
  2111. "id": {
  2112. "m_id": "{DCF5F71F-CDA7-41DF-B038-D929371FF603}"
  2113. },
  2114. "contracts": [
  2115. {
  2116. "$type": "SlotTypeContract"
  2117. }
  2118. ],
  2119. "slotName": "Y",
  2120. "DisplayDataType": {
  2121. "m_type": 3
  2122. },
  2123. "Descriptor": {
  2124. "ConnectionType": 2,
  2125. "SlotType": 2
  2126. },
  2127. "DataType": 1
  2128. },
  2129. {
  2130. "id": {
  2131. "m_id": "{E38488B1-7CFF-4A70-BFA0-F16FF8376441}"
  2132. },
  2133. "contracts": [
  2134. {
  2135. "$type": "SlotTypeContract"
  2136. }
  2137. ],
  2138. "slotName": "Z",
  2139. "DisplayDataType": {
  2140. "m_type": 3
  2141. },
  2142. "Descriptor": {
  2143. "ConnectionType": 2,
  2144. "SlotType": 2
  2145. },
  2146. "DataType": 1
  2147. }
  2148. ],
  2149. "Datums": [
  2150. {
  2151. "isOverloadedStorage": false,
  2152. "scriptCanvasType": {
  2153. "m_type": 8
  2154. },
  2155. "isNullPointer": false,
  2156. "$type": "Vector3",
  2157. "value": [
  2158. 0.0,
  2159. 0.0,
  2160. 0.0
  2161. ],
  2162. "label": "Vector3"
  2163. }
  2164. ],
  2165. "m_variableId": {
  2166. "m_id": "{D7A0E01D-FDA1-4BE7-A02B-E53B391A1BE8}"
  2167. },
  2168. "m_variableDataInSlotId": {
  2169. "m_id": "{AFF845FB-4E13-455B-A24F-83B00FF49BC2}"
  2170. },
  2171. "m_variableDataOutSlotId": {
  2172. "m_id": "{6EBA6137-1205-45F6-9DA8-E86C7510719E}"
  2173. },
  2174. "m_propertyAccounts": [
  2175. {
  2176. "m_propertySlotId": {
  2177. "m_id": "{F14646B2-FA61-494F-98BF-F8CBB611F494}"
  2178. },
  2179. "m_propertyType": {
  2180. "m_type": 3
  2181. },
  2182. "m_propertyName": "x"
  2183. },
  2184. {
  2185. "m_propertySlotId": {
  2186. "m_id": "{DCF5F71F-CDA7-41DF-B038-D929371FF603}"
  2187. },
  2188. "m_propertyType": {
  2189. "m_type": 3
  2190. },
  2191. "m_propertyName": "y"
  2192. },
  2193. {
  2194. "m_propertySlotId": {
  2195. "m_id": "{E38488B1-7CFF-4A70-BFA0-F16FF8376441}"
  2196. },
  2197. "m_propertyType": {
  2198. "m_type": 3
  2199. },
  2200. "m_propertyName": "z"
  2201. }
  2202. ]
  2203. }
  2204. }
  2205. },
  2206. {
  2207. "Id": {
  2208. "id": 49038911328000
  2209. },
  2210. "Name": "SC-Node(GetWorldTM)",
  2211. "Components": {
  2212. "Component_[511761522177160175]": {
  2213. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2214. "Id": 511761522177160175,
  2215. "Slots": [
  2216. {
  2217. "id": {
  2218. "m_id": "{8EB1564E-A867-493C-814F-1C1390B51F26}"
  2219. },
  2220. "contracts": [
  2221. {
  2222. "$type": "SlotTypeContract"
  2223. }
  2224. ],
  2225. "slotName": "EntityId",
  2226. "Descriptor": {
  2227. "ConnectionType": 1,
  2228. "SlotType": 2
  2229. },
  2230. "DataType": 1
  2231. },
  2232. {
  2233. "id": {
  2234. "m_id": "{FFF95C83-0C94-43CA-80EC-E89A04D8194C}"
  2235. },
  2236. "contracts": [
  2237. {
  2238. "$type": "SlotTypeContract"
  2239. }
  2240. ],
  2241. "slotName": "In",
  2242. "Descriptor": {
  2243. "ConnectionType": 1,
  2244. "SlotType": 1
  2245. }
  2246. },
  2247. {
  2248. "id": {
  2249. "m_id": "{54C214EF-67FA-44B5-B629-D23FD4C9BB8E}"
  2250. },
  2251. "contracts": [
  2252. {
  2253. "$type": "SlotTypeContract"
  2254. }
  2255. ],
  2256. "slotName": "Out",
  2257. "Descriptor": {
  2258. "ConnectionType": 2,
  2259. "SlotType": 1
  2260. }
  2261. },
  2262. {
  2263. "id": {
  2264. "m_id": "{AC0A1A8E-98CF-4FE7-A3C9-067EE59282C6}"
  2265. },
  2266. "contracts": [
  2267. {
  2268. "$type": "SlotTypeContract"
  2269. }
  2270. ],
  2271. "slotName": "Transform",
  2272. "DisplayDataType": {
  2273. "m_type": 7
  2274. },
  2275. "Descriptor": {
  2276. "ConnectionType": 2,
  2277. "SlotType": 2
  2278. },
  2279. "DataType": 1
  2280. }
  2281. ],
  2282. "Datums": [
  2283. {
  2284. "isOverloadedStorage": false,
  2285. "scriptCanvasType": {
  2286. "m_type": 1
  2287. },
  2288. "isNullPointer": false,
  2289. "$type": "EntityId",
  2290. "value": {
  2291. "id": 2901262558
  2292. },
  2293. "label": "EntityId"
  2294. }
  2295. ],
  2296. "methodType": 0,
  2297. "methodName": "GetWorldTM",
  2298. "className": "TransformBus",
  2299. "resultSlotIDs": [
  2300. {}
  2301. ],
  2302. "inputSlots": [
  2303. {
  2304. "m_id": "{8EB1564E-A867-493C-814F-1C1390B51F26}"
  2305. }
  2306. ],
  2307. "prettyClassName": "TransformBus"
  2308. }
  2309. }
  2310. },
  2311. {
  2312. "Id": {
  2313. "id": 49026026426112
  2314. },
  2315. "Name": "SC-Node(OperatorDiv)",
  2316. "Components": {
  2317. "Component_[5361849981903193435]": {
  2318. "$type": "OperatorDiv",
  2319. "Id": 5361849981903193435,
  2320. "Slots": [
  2321. {
  2322. "id": {
  2323. "m_id": "{63E4A931-2FAA-4328-AC8D-B096FB2AF5C6}"
  2324. },
  2325. "contracts": [
  2326. {
  2327. "$type": "SlotTypeContract"
  2328. }
  2329. ],
  2330. "slotName": "In",
  2331. "Descriptor": {
  2332. "ConnectionType": 1,
  2333. "SlotType": 1
  2334. }
  2335. },
  2336. {
  2337. "id": {
  2338. "m_id": "{158E8A83-3F51-4C74-B915-EE49CB260E10}"
  2339. },
  2340. "contracts": [
  2341. {
  2342. "$type": "SlotTypeContract"
  2343. }
  2344. ],
  2345. "slotName": "Out",
  2346. "Descriptor": {
  2347. "ConnectionType": 2,
  2348. "SlotType": 1
  2349. }
  2350. },
  2351. {
  2352. "id": {
  2353. "m_id": "{542BE869-5ACE-4C95-A1AA-A438319D371B}"
  2354. },
  2355. "DynamicTypeOverride": 3,
  2356. "contracts": [
  2357. {
  2358. "$type": "SlotTypeContract"
  2359. },
  2360. {
  2361. "$type": "MathOperatorContract",
  2362. "OperatorType": "Divide",
  2363. "NativeTypes": [
  2364. {
  2365. "m_type": 3
  2366. }
  2367. ]
  2368. }
  2369. ],
  2370. "slotName": "Number 0",
  2371. "toolTip": "An operand to use in performing the specified Operation",
  2372. "DisplayDataType": {
  2373. "m_type": 3
  2374. },
  2375. "DisplayGroup": {
  2376. "Value": 1114760223
  2377. },
  2378. "Descriptor": {
  2379. "ConnectionType": 1,
  2380. "SlotType": 2
  2381. },
  2382. "DynamicGroup": {
  2383. "Value": 1114760223
  2384. },
  2385. "DataType": 1
  2386. },
  2387. {
  2388. "id": {
  2389. "m_id": "{F6B172A0-EA03-4B76-A472-067031EB5AF7}"
  2390. },
  2391. "DynamicTypeOverride": 3,
  2392. "contracts": [
  2393. {
  2394. "$type": "SlotTypeContract"
  2395. },
  2396. {
  2397. "$type": "MathOperatorContract",
  2398. "OperatorType": "Divide",
  2399. "NativeTypes": [
  2400. {
  2401. "m_type": 3
  2402. }
  2403. ]
  2404. }
  2405. ],
  2406. "slotName": "Number 1",
  2407. "toolTip": "An operand to use in performing the specified Operation",
  2408. "DisplayDataType": {
  2409. "m_type": 3
  2410. },
  2411. "DisplayGroup": {
  2412. "Value": 1114760223
  2413. },
  2414. "Descriptor": {
  2415. "ConnectionType": 1,
  2416. "SlotType": 2
  2417. },
  2418. "DynamicGroup": {
  2419. "Value": 1114760223
  2420. },
  2421. "DataType": 1
  2422. },
  2423. {
  2424. "id": {
  2425. "m_id": "{12053C76-EAF4-449F-8D88-7ED8376F96C2}"
  2426. },
  2427. "DynamicTypeOverride": 3,
  2428. "contracts": [
  2429. {
  2430. "$type": "SlotTypeContract"
  2431. },
  2432. {
  2433. "$type": "MathOperatorContract",
  2434. "OperatorType": "Divide",
  2435. "NativeTypes": [
  2436. {
  2437. "m_type": 3
  2438. }
  2439. ]
  2440. }
  2441. ],
  2442. "slotName": "Result",
  2443. "toolTip": "The result of the specified operation",
  2444. "DisplayDataType": {
  2445. "m_type": 3
  2446. },
  2447. "DisplayGroup": {
  2448. "Value": 1114760223
  2449. },
  2450. "Descriptor": {
  2451. "ConnectionType": 2,
  2452. "SlotType": 2
  2453. },
  2454. "DynamicGroup": {
  2455. "Value": 1114760223
  2456. },
  2457. "DataType": 1
  2458. }
  2459. ],
  2460. "Datums": [
  2461. {
  2462. "isOverloadedStorage": false,
  2463. "scriptCanvasType": {
  2464. "m_type": 3
  2465. },
  2466. "isNullPointer": false,
  2467. "$type": "double",
  2468. "value": 1.0,
  2469. "label": "Number 0"
  2470. },
  2471. {
  2472. "isOverloadedStorage": false,
  2473. "scriptCanvasType": {
  2474. "m_type": 3
  2475. },
  2476. "isNullPointer": false,
  2477. "$type": "double",
  2478. "value": 1000.0,
  2479. "label": "Number 1"
  2480. }
  2481. ]
  2482. }
  2483. }
  2484. },
  2485. {
  2486. "Id": {
  2487. "id": 49000256622336
  2488. },
  2489. "Name": "SC Node(GetVariable)",
  2490. "Components": {
  2491. "Component_[7510173204782070711]": {
  2492. "$type": "GetVariableNode",
  2493. "Id": 7510173204782070711,
  2494. "Slots": [
  2495. {
  2496. "id": {
  2497. "m_id": "{86FE540C-1064-4610-B669-C50A32EE29E7}"
  2498. },
  2499. "contracts": [
  2500. {
  2501. "$type": "SlotTypeContract"
  2502. }
  2503. ],
  2504. "slotName": "In",
  2505. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2506. "Descriptor": {
  2507. "ConnectionType": 1,
  2508. "SlotType": 1
  2509. }
  2510. },
  2511. {
  2512. "id": {
  2513. "m_id": "{3C85BDA8-2DD6-4A37-9759-F302E83D7D2D}"
  2514. },
  2515. "contracts": [
  2516. {
  2517. "$type": "SlotTypeContract"
  2518. }
  2519. ],
  2520. "slotName": "Out",
  2521. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2522. "Descriptor": {
  2523. "ConnectionType": 2,
  2524. "SlotType": 1
  2525. }
  2526. },
  2527. {
  2528. "id": {
  2529. "m_id": "{6BD0C2FC-B35E-4C52-9964-1D5AD4ED5906}"
  2530. },
  2531. "contracts": [
  2532. {
  2533. "$type": "SlotTypeContract"
  2534. }
  2535. ],
  2536. "slotName": "Number",
  2537. "DisplayDataType": {
  2538. "m_type": 3
  2539. },
  2540. "Descriptor": {
  2541. "ConnectionType": 2,
  2542. "SlotType": 2
  2543. },
  2544. "DataType": 1
  2545. }
  2546. ],
  2547. "m_variableId": {
  2548. "m_id": "{BD1838D5-DF5A-4BB3-8D5E-E6937DF5E919}"
  2549. },
  2550. "m_variableDataOutSlotId": {
  2551. "m_id": "{6BD0C2FC-B35E-4C52-9964-1D5AD4ED5906}"
  2552. }
  2553. }
  2554. }
  2555. },
  2556. {
  2557. "Id": {
  2558. "id": 48987371720448
  2559. },
  2560. "Name": "SC-Node(ScriptCanvas_Vector3Functions_MultiplyByNumber)",
  2561. "Components": {
  2562. "Component_[8971637817936181929]": {
  2563. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2564. "Id": 8971637817936181929,
  2565. "Slots": [
  2566. {
  2567. "id": {
  2568. "m_id": "{47067D46-84DB-4ACC-A1D0-54057350A621}"
  2569. },
  2570. "contracts": [
  2571. {
  2572. "$type": "SlotTypeContract"
  2573. }
  2574. ],
  2575. "slotName": "Source",
  2576. "Descriptor": {
  2577. "ConnectionType": 1,
  2578. "SlotType": 2
  2579. },
  2580. "DataType": 1,
  2581. "IsReference": true,
  2582. "VariableReference": {
  2583. "m_id": "{D7A0E01D-FDA1-4BE7-A02B-E53B391A1BE8}"
  2584. }
  2585. },
  2586. {
  2587. "id": {
  2588. "m_id": "{DBED5A45-BF73-4C02-A199-A3C9D061F00A}"
  2589. },
  2590. "contracts": [
  2591. {
  2592. "$type": "SlotTypeContract"
  2593. }
  2594. ],
  2595. "slotName": "Multiplier",
  2596. "Descriptor": {
  2597. "ConnectionType": 1,
  2598. "SlotType": 2
  2599. },
  2600. "DataType": 1
  2601. },
  2602. {
  2603. "id": {
  2604. "m_id": "{E8E3A834-727C-4586-9E73-F49E795FEBEF}"
  2605. },
  2606. "contracts": [
  2607. {
  2608. "$type": "SlotTypeContract"
  2609. }
  2610. ],
  2611. "slotName": "In",
  2612. "Descriptor": {
  2613. "ConnectionType": 1,
  2614. "SlotType": 1
  2615. }
  2616. },
  2617. {
  2618. "id": {
  2619. "m_id": "{C04F73E4-5FDE-4AAF-9E72-A452A2FFBEE8}"
  2620. },
  2621. "contracts": [
  2622. {
  2623. "$type": "SlotTypeContract"
  2624. }
  2625. ],
  2626. "slotName": "Out",
  2627. "Descriptor": {
  2628. "ConnectionType": 2,
  2629. "SlotType": 1
  2630. }
  2631. },
  2632. {
  2633. "id": {
  2634. "m_id": "{80B49136-E915-4C38-8150-9828A63BDEB1}"
  2635. },
  2636. "contracts": [
  2637. {
  2638. "$type": "SlotTypeContract"
  2639. }
  2640. ],
  2641. "slotName": "Vector3",
  2642. "DisplayDataType": {
  2643. "m_type": 8
  2644. },
  2645. "Descriptor": {
  2646. "ConnectionType": 2,
  2647. "SlotType": 2
  2648. },
  2649. "DataType": 1
  2650. }
  2651. ],
  2652. "Datums": [
  2653. {
  2654. "isOverloadedStorage": false,
  2655. "scriptCanvasType": {
  2656. "m_type": 8
  2657. },
  2658. "isNullPointer": false,
  2659. "$type": "Vector3",
  2660. "value": [
  2661. 0.0,
  2662. 0.0,
  2663. 0.0
  2664. ],
  2665. "label": "Source"
  2666. },
  2667. {
  2668. "isOverloadedStorage": false,
  2669. "scriptCanvasType": {
  2670. "m_type": 3
  2671. },
  2672. "isNullPointer": false,
  2673. "$type": "double",
  2674. "value": 0.0,
  2675. "label": "Multiplier"
  2676. }
  2677. ],
  2678. "methodType": 1,
  2679. "methodName": "ScriptCanvas_Vector3Functions_MultiplyByNumber",
  2680. "resultSlotIDs": [
  2681. {}
  2682. ],
  2683. "inputSlots": [
  2684. {
  2685. "m_id": "{47067D46-84DB-4ACC-A1D0-54057350A621}"
  2686. },
  2687. {
  2688. "m_id": "{DBED5A45-BF73-4C02-A199-A3C9D061F00A}"
  2689. }
  2690. ],
  2691. "prettyClassName": "ScriptCanvas_Vector3Functions_MultiplyByNumber"
  2692. }
  2693. }
  2694. },
  2695. {
  2696. "Id": {
  2697. "id": 48974486818560
  2698. },
  2699. "Name": "SC-Node(OperatorMul)",
  2700. "Components": {
  2701. "Component_[9405621710181001186]": {
  2702. "$type": "OperatorMul",
  2703. "Id": 9405621710181001186,
  2704. "Slots": [
  2705. {
  2706. "id": {
  2707. "m_id": "{CA807B09-DAF2-4A2C-A19C-7E4236CE49F0}"
  2708. },
  2709. "contracts": [
  2710. {
  2711. "$type": "SlotTypeContract"
  2712. }
  2713. ],
  2714. "slotName": "In",
  2715. "Descriptor": {
  2716. "ConnectionType": 1,
  2717. "SlotType": 1
  2718. }
  2719. },
  2720. {
  2721. "id": {
  2722. "m_id": "{702A895D-550C-4863-B9F0-FF64F0327509}"
  2723. },
  2724. "contracts": [
  2725. {
  2726. "$type": "SlotTypeContract"
  2727. }
  2728. ],
  2729. "slotName": "Out",
  2730. "Descriptor": {
  2731. "ConnectionType": 2,
  2732. "SlotType": 1
  2733. }
  2734. },
  2735. {
  2736. "id": {
  2737. "m_id": "{96A37EE5-2575-4C03-9F1E-0CB38DC02606}"
  2738. },
  2739. "DynamicTypeOverride": 3,
  2740. "contracts": [
  2741. {
  2742. "$type": "SlotTypeContract"
  2743. },
  2744. {
  2745. "$type": "MathOperatorContract",
  2746. "OperatorType": "Multiply",
  2747. "NativeTypes": [
  2748. {
  2749. "m_type": 3
  2750. },
  2751. {
  2752. "m_type": 6
  2753. },
  2754. {
  2755. "m_type": 7
  2756. },
  2757. {
  2758. "m_type": 14
  2759. },
  2760. {
  2761. "m_type": 15
  2762. }
  2763. ]
  2764. }
  2765. ],
  2766. "slotName": "Number 0",
  2767. "toolTip": "An operand to use in performing the specified Operation",
  2768. "DisplayDataType": {
  2769. "m_type": 3
  2770. },
  2771. "DisplayGroup": {
  2772. "Value": 1114760223
  2773. },
  2774. "Descriptor": {
  2775. "ConnectionType": 1,
  2776. "SlotType": 2
  2777. },
  2778. "DynamicGroup": {
  2779. "Value": 1114760223
  2780. },
  2781. "DataType": 1
  2782. },
  2783. {
  2784. "id": {
  2785. "m_id": "{C62E28E3-9579-4AAB-A8AB-502B3F4CA3BA}"
  2786. },
  2787. "DynamicTypeOverride": 3,
  2788. "contracts": [
  2789. {
  2790. "$type": "SlotTypeContract"
  2791. },
  2792. {
  2793. "$type": "MathOperatorContract",
  2794. "OperatorType": "Multiply",
  2795. "NativeTypes": [
  2796. {
  2797. "m_type": 3
  2798. },
  2799. {
  2800. "m_type": 6
  2801. },
  2802. {
  2803. "m_type": 7
  2804. },
  2805. {
  2806. "m_type": 14
  2807. },
  2808. {
  2809. "m_type": 15
  2810. }
  2811. ]
  2812. }
  2813. ],
  2814. "slotName": "Number 1",
  2815. "toolTip": "An operand to use in performing the specified Operation",
  2816. "DisplayDataType": {
  2817. "m_type": 3
  2818. },
  2819. "DisplayGroup": {
  2820. "Value": 1114760223
  2821. },
  2822. "Descriptor": {
  2823. "ConnectionType": 1,
  2824. "SlotType": 2
  2825. },
  2826. "DynamicGroup": {
  2827. "Value": 1114760223
  2828. },
  2829. "DataType": 1
  2830. },
  2831. {
  2832. "id": {
  2833. "m_id": "{189EE647-3E23-407F-8461-DFE30DAA3FB7}"
  2834. },
  2835. "DynamicTypeOverride": 3,
  2836. "contracts": [
  2837. {
  2838. "$type": "SlotTypeContract"
  2839. },
  2840. {
  2841. "$type": "MathOperatorContract",
  2842. "OperatorType": "Multiply",
  2843. "NativeTypes": [
  2844. {
  2845. "m_type": 3
  2846. },
  2847. {
  2848. "m_type": 6
  2849. },
  2850. {
  2851. "m_type": 7
  2852. },
  2853. {
  2854. "m_type": 14
  2855. },
  2856. {
  2857. "m_type": 15
  2858. }
  2859. ]
  2860. }
  2861. ],
  2862. "slotName": "Result",
  2863. "toolTip": "The result of the specified operation",
  2864. "DisplayDataType": {
  2865. "m_type": 3
  2866. },
  2867. "DisplayGroup": {
  2868. "Value": 1114760223
  2869. },
  2870. "Descriptor": {
  2871. "ConnectionType": 2,
  2872. "SlotType": 2
  2873. },
  2874. "DynamicGroup": {
  2875. "Value": 1114760223
  2876. },
  2877. "DataType": 1
  2878. }
  2879. ],
  2880. "Datums": [
  2881. {
  2882. "isOverloadedStorage": false,
  2883. "scriptCanvasType": {
  2884. "m_type": 3
  2885. },
  2886. "isNullPointer": false,
  2887. "$type": "double",
  2888. "value": 1.0,
  2889. "label": "Number 0"
  2890. },
  2891. {
  2892. "isOverloadedStorage": false,
  2893. "scriptCanvasType": {
  2894. "m_type": 3
  2895. },
  2896. "isNullPointer": false,
  2897. "$type": "double",
  2898. "value": 1.0,
  2899. "label": "Number 1"
  2900. }
  2901. ]
  2902. }
  2903. }
  2904. },
  2905. {
  2906. "Id": {
  2907. "id": 361429062635264
  2908. },
  2909. "Name": "SC-Node(GetBody2EntityId)",
  2910. "Components": {
  2911. "Component_[9695116539058011494]": {
  2912. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2913. "Id": 9695116539058011494,
  2914. "Slots": [
  2915. {
  2916. "id": {
  2917. "m_id": "{DCF2592B-3FA6-4D72-A60B-312940CF55E6}"
  2918. },
  2919. "contracts": [
  2920. {
  2921. "$type": "SlotTypeContract"
  2922. }
  2923. ],
  2924. "slotName": "CollisionEvent",
  2925. "Descriptor": {
  2926. "ConnectionType": 1,
  2927. "SlotType": 2
  2928. },
  2929. "DataType": 1
  2930. },
  2931. {
  2932. "id": {
  2933. "m_id": "{5FD02948-AEA8-4D85-9E35-6CBD5FF0DF6A}"
  2934. },
  2935. "contracts": [
  2936. {
  2937. "$type": "SlotTypeContract"
  2938. }
  2939. ],
  2940. "slotName": "In",
  2941. "Descriptor": {
  2942. "ConnectionType": 1,
  2943. "SlotType": 1
  2944. }
  2945. },
  2946. {
  2947. "id": {
  2948. "m_id": "{4E0C4A8D-0572-4159-80DA-4999A5B9A896}"
  2949. },
  2950. "contracts": [
  2951. {
  2952. "$type": "SlotTypeContract"
  2953. }
  2954. ],
  2955. "slotName": "Out",
  2956. "Descriptor": {
  2957. "ConnectionType": 2,
  2958. "SlotType": 1
  2959. }
  2960. },
  2961. {
  2962. "id": {
  2963. "m_id": "{A2B87EC2-3E12-4AB4-88C7-E5621F3D36A9}"
  2964. },
  2965. "contracts": [
  2966. {
  2967. "$type": "SlotTypeContract"
  2968. }
  2969. ],
  2970. "slotName": "EntityId",
  2971. "DisplayDataType": {
  2972. "m_type": 1
  2973. },
  2974. "Descriptor": {
  2975. "ConnectionType": 2,
  2976. "SlotType": 2
  2977. },
  2978. "DataType": 1
  2979. }
  2980. ],
  2981. "Datums": [
  2982. {
  2983. "isOverloadedStorage": false,
  2984. "scriptCanvasType": {
  2985. "m_type": 4,
  2986. "m_azType": "{7602AA36-792C-4BDC-BDF8-AA16792151A3}"
  2987. },
  2988. "isNullPointer": true,
  2989. "label": "Collision Event"
  2990. }
  2991. ],
  2992. "methodType": 2,
  2993. "methodName": "GetBody2EntityId",
  2994. "className": "CollisionEvent",
  2995. "inputSlots": [
  2996. {
  2997. "m_id": "{DCF2592B-3FA6-4D72-A60B-312940CF55E6}"
  2998. }
  2999. ],
  3000. "prettyClassName": "CollisionEvent"
  3001. }
  3002. }
  3003. }
  3004. ],
  3005. "m_connections": [
  3006. {
  3007. "Id": {
  3008. "id": 49056091197184
  3009. },
  3010. "Name": "srcEndpoint=(HeartBeat: Pulse), destEndpoint=(GetLocalTranslation: In)",
  3011. "Components": {
  3012. "Component_[4440104547878818575]": {
  3013. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3014. "Id": 4440104547878818575,
  3015. "sourceEndpoint": {
  3016. "nodeId": {
  3017. "id": 49043206295296
  3018. },
  3019. "slotId": {
  3020. "m_id": "{A3FB3DEE-1E9B-4853-8F63-9F9DDD55086D}"
  3021. }
  3022. },
  3023. "targetEndpoint": {
  3024. "nodeId": {
  3025. "id": 48970191851264
  3026. },
  3027. "slotId": {
  3028. "m_id": "{707EF6A9-0329-4048-AF2D-31566DB843BB}"
  3029. }
  3030. }
  3031. }
  3032. }
  3033. },
  3034. {
  3035. "Id": {
  3036. "id": 49060386164480
  3037. },
  3038. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(SetLocalTranslation: In)",
  3039. "Components": {
  3040. "Component_[7282591168518162215]": {
  3041. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3042. "Id": 7282591168518162215,
  3043. "sourceEndpoint": {
  3044. "nodeId": {
  3045. "id": 49021731458816
  3046. },
  3047. "slotId": {
  3048. "m_id": "{5F9C8EF1-89ED-4876-BAAA-1EBC5AD30A49}"
  3049. }
  3050. },
  3051. "targetEndpoint": {
  3052. "nodeId": {
  3053. "id": 48991666687744
  3054. },
  3055. "slotId": {
  3056. "m_id": "{E19B4EBF-40F4-4DA3-83B0-DEAEB6958628}"
  3057. }
  3058. }
  3059. }
  3060. }
  3061. },
  3062. {
  3063. "Id": {
  3064. "id": 49064681131776
  3065. },
  3066. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(SetLocalTranslation: Vector3: 1)",
  3067. "Components": {
  3068. "Component_[8053735492915386319]": {
  3069. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3070. "Id": 8053735492915386319,
  3071. "sourceEndpoint": {
  3072. "nodeId": {
  3073. "id": 49021731458816
  3074. },
  3075. "slotId": {
  3076. "m_id": "{7472B661-BEB3-4221-B1F6-C0F4C90B0069}"
  3077. }
  3078. },
  3079. "targetEndpoint": {
  3080. "nodeId": {
  3081. "id": 48991666687744
  3082. },
  3083. "slotId": {
  3084. "m_id": "{B35B920C-E898-42C1-B303-733CCC413721}"
  3085. }
  3086. }
  3087. }
  3088. }
  3089. },
  3090. {
  3091. "Id": {
  3092. "id": 49068976099072
  3093. },
  3094. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Divide (/): In)",
  3095. "Components": {
  3096. "Component_[15683615988767835899]": {
  3097. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3098. "Id": 15683615988767835899,
  3099. "sourceEndpoint": {
  3100. "nodeId": {
  3101. "id": 49000256622336
  3102. },
  3103. "slotId": {
  3104. "m_id": "{3C85BDA8-2DD6-4A37-9759-F302E83D7D2D}"
  3105. }
  3106. },
  3107. "targetEndpoint": {
  3108. "nodeId": {
  3109. "id": 49026026426112
  3110. },
  3111. "slotId": {
  3112. "m_id": "{63E4A931-2FAA-4328-AC8D-B096FB2AF5C6}"
  3113. }
  3114. }
  3115. }
  3116. }
  3117. },
  3118. {
  3119. "Id": {
  3120. "id": 49073271066368
  3121. },
  3122. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Divide (/): Value 0)",
  3123. "Components": {
  3124. "Component_[5568933993160353782]": {
  3125. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3126. "Id": 5568933993160353782,
  3127. "sourceEndpoint": {
  3128. "nodeId": {
  3129. "id": 49000256622336
  3130. },
  3131. "slotId": {
  3132. "m_id": "{6BD0C2FC-B35E-4C52-9964-1D5AD4ED5906}"
  3133. }
  3134. },
  3135. "targetEndpoint": {
  3136. "nodeId": {
  3137. "id": 49026026426112
  3138. },
  3139. "slotId": {
  3140. "m_id": "{542BE869-5ACE-4C95-A1AA-A438319D371B}"
  3141. }
  3142. }
  3143. }
  3144. }
  3145. },
  3146. {
  3147. "Id": {
  3148. "id": 49077566033664
  3149. },
  3150. "Name": "srcEndpoint=(Divide (/): Out), destEndpoint=(Get Variable: In)",
  3151. "Components": {
  3152. "Component_[10323803147320302031]": {
  3153. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3154. "Id": 10323803147320302031,
  3155. "sourceEndpoint": {
  3156. "nodeId": {
  3157. "id": 49026026426112
  3158. },
  3159. "slotId": {
  3160. "m_id": "{158E8A83-3F51-4C74-B915-EE49CB260E10}"
  3161. }
  3162. },
  3163. "targetEndpoint": {
  3164. "nodeId": {
  3165. "id": 49030321393408
  3166. },
  3167. "slotId": {
  3168. "m_id": "{AAA43CB5-6BDB-4060-9C66-CAB86C0AD626}"
  3169. }
  3170. }
  3171. }
  3172. }
  3173. },
  3174. {
  3175. "Id": {
  3176. "id": 49081861000960
  3177. },
  3178. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Multiply (*): In)",
  3179. "Components": {
  3180. "Component_[14126112590447976897]": {
  3181. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3182. "Id": 14126112590447976897,
  3183. "sourceEndpoint": {
  3184. "nodeId": {
  3185. "id": 49030321393408
  3186. },
  3187. "slotId": {
  3188. "m_id": "{02901D74-B379-4479-8F4B-ED2D06095604}"
  3189. }
  3190. },
  3191. "targetEndpoint": {
  3192. "nodeId": {
  3193. "id": 48974486818560
  3194. },
  3195. "slotId": {
  3196. "m_id": "{CA807B09-DAF2-4A2C-A19C-7E4236CE49F0}"
  3197. }
  3198. }
  3199. }
  3200. }
  3201. },
  3202. {
  3203. "Id": {
  3204. "id": 49086155968256
  3205. },
  3206. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Multiply (*): Value 0)",
  3207. "Components": {
  3208. "Component_[13407302703500034473]": {
  3209. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3210. "Id": 13407302703500034473,
  3211. "sourceEndpoint": {
  3212. "nodeId": {
  3213. "id": 49030321393408
  3214. },
  3215. "slotId": {
  3216. "m_id": "{9C871B27-32B9-42EF-984F-1EF2978DD543}"
  3217. }
  3218. },
  3219. "targetEndpoint": {
  3220. "nodeId": {
  3221. "id": 48974486818560
  3222. },
  3223. "slotId": {
  3224. "m_id": "{96A37EE5-2575-4C03-9F1E-0CB38DC02606}"
  3225. }
  3226. }
  3227. }
  3228. }
  3229. },
  3230. {
  3231. "Id": {
  3232. "id": 49090450935552
  3233. },
  3234. "Name": "srcEndpoint=(Divide (/): Result), destEndpoint=(Multiply (*): Number 1)",
  3235. "Components": {
  3236. "Component_[5562664367512058335]": {
  3237. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3238. "Id": 5562664367512058335,
  3239. "sourceEndpoint": {
  3240. "nodeId": {
  3241. "id": 49026026426112
  3242. },
  3243. "slotId": {
  3244. "m_id": "{12053C76-EAF4-449F-8D88-7ED8376F96C2}"
  3245. }
  3246. },
  3247. "targetEndpoint": {
  3248. "nodeId": {
  3249. "id": 48974486818560
  3250. },
  3251. "slotId": {
  3252. "m_id": "{C62E28E3-9579-4AAB-A8AB-502B3F4CA3BA}"
  3253. }
  3254. }
  3255. }
  3256. }
  3257. },
  3258. {
  3259. "Id": {
  3260. "id": 49094745902848
  3261. },
  3262. "Name": "srcEndpoint=(GetLocalTranslation: Out), destEndpoint=(Get Variable: In)",
  3263. "Components": {
  3264. "Component_[14025719657911946920]": {
  3265. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3266. "Id": 14025719657911946920,
  3267. "sourceEndpoint": {
  3268. "nodeId": {
  3269. "id": 48970191851264
  3270. },
  3271. "slotId": {
  3272. "m_id": "{D8506844-9348-49D0-AA6E-0C3221669DAF}"
  3273. }
  3274. },
  3275. "targetEndpoint": {
  3276. "nodeId": {
  3277. "id": 49000256622336
  3278. },
  3279. "slotId": {
  3280. "m_id": "{86FE540C-1064-4610-B669-C50A32EE29E7}"
  3281. }
  3282. }
  3283. }
  3284. }
  3285. },
  3286. {
  3287. "Id": {
  3288. "id": 49099040870144
  3289. },
  3290. "Name": "srcEndpoint=(GetLocalTranslation: Vector3), destEndpoint=(Add (+): Vector3 0)",
  3291. "Components": {
  3292. "Component_[13127358680389582375]": {
  3293. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3294. "Id": 13127358680389582375,
  3295. "sourceEndpoint": {
  3296. "nodeId": {
  3297. "id": 48970191851264
  3298. },
  3299. "slotId": {
  3300. "m_id": "{D72501D4-89EA-43B4-B86F-A7D3FA2351DB}"
  3301. }
  3302. },
  3303. "targetEndpoint": {
  3304. "nodeId": {
  3305. "id": 49021731458816
  3306. },
  3307. "slotId": {
  3308. "m_id": "{46346F7B-474A-4D8C-8C6B-CF6866182002}"
  3309. }
  3310. }
  3311. }
  3312. }
  3313. },
  3314. {
  3315. "Id": {
  3316. "id": 49103335837440
  3317. },
  3318. "Name": "srcEndpoint=(GetOnCollisionBeginEvent: Event<AZStd::tuple<Crc32, int>, const CollisionEvent&>), destEndpoint=(On Collision Begin event: On Collision Begin event)",
  3319. "Components": {
  3320. "Component_[3502965575876239345]": {
  3321. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3322. "Id": 3502965575876239345,
  3323. "sourceEndpoint": {
  3324. "nodeId": {
  3325. "id": 49008846556928
  3326. },
  3327. "slotId": {
  3328. "m_id": "{01AA0426-3AC1-430E-87F4-CD871CEF555E}"
  3329. }
  3330. },
  3331. "targetEndpoint": {
  3332. "nodeId": {
  3333. "id": 49034616360704
  3334. },
  3335. "slotId": {
  3336. "m_id": "{B30B1B74-33AD-4925-8E5D-7E4231B19E66}"
  3337. }
  3338. }
  3339. }
  3340. }
  3341. },
  3342. {
  3343. "Id": {
  3344. "id": 49107630804736
  3345. },
  3346. "Name": "srcEndpoint=(GetOnCollisionBeginEvent: Out), destEndpoint=(On Collision Begin event: Connect)",
  3347. "Components": {
  3348. "Component_[18135208721232891869]": {
  3349. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3350. "Id": 18135208721232891869,
  3351. "sourceEndpoint": {
  3352. "nodeId": {
  3353. "id": 49008846556928
  3354. },
  3355. "slotId": {
  3356. "m_id": "{30F51AD2-9303-44D3-89FB-18577FEDF981}"
  3357. }
  3358. },
  3359. "targetEndpoint": {
  3360. "nodeId": {
  3361. "id": 49034616360704
  3362. },
  3363. "slotId": {
  3364. "m_id": "{B7333B41-D19B-4DD8-ACC8-8B3B6B215825}"
  3365. }
  3366. }
  3367. }
  3368. }
  3369. },
  3370. {
  3371. "Id": {
  3372. "id": 49111925772032
  3373. },
  3374. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(GetOnCollisionBeginEvent: In)",
  3375. "Components": {
  3376. "Component_[12050872996067158090]": {
  3377. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3378. "Id": 12050872996067158090,
  3379. "sourceEndpoint": {
  3380. "nodeId": {
  3381. "id": 49017436491520
  3382. },
  3383. "slotId": {
  3384. "m_id": "{727ABBA7-D63A-457C-B63C-30CA6C81A8A9}"
  3385. }
  3386. },
  3387. "targetEndpoint": {
  3388. "nodeId": {
  3389. "id": 49008846556928
  3390. },
  3391. "slotId": {
  3392. "m_id": "{D68CC0C1-845B-4650-921B-659399E1FC11}"
  3393. }
  3394. }
  3395. }
  3396. }
  3397. },
  3398. {
  3399. "Id": {
  3400. "id": 49116220739328
  3401. },
  3402. "Name": "srcEndpoint=(GetEntityName: Out), destEndpoint=(ScriptCanvas_StringFunctions_EndsWith: In)",
  3403. "Components": {
  3404. "Component_[6868136763471421230]": {
  3405. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3406. "Id": 6868136763471421230,
  3407. "sourceEndpoint": {
  3408. "nodeId": {
  3409. "id": 48983076753152
  3410. },
  3411. "slotId": {
  3412. "m_id": "{947729F7-7752-4F73-A584-255BA3FC231C}"
  3413. }
  3414. },
  3415. "targetEndpoint": {
  3416. "nodeId": {
  3417. "id": 49004551589632
  3418. },
  3419. "slotId": {
  3420. "m_id": "{3E2CDE5F-CCA7-4A78-BA3B-9DFE13093918}"
  3421. }
  3422. }
  3423. }
  3424. }
  3425. },
  3426. {
  3427. "Id": {
  3428. "id": 49120515706624
  3429. },
  3430. "Name": "srcEndpoint=(GetEntityName: String), destEndpoint=(ScriptCanvas_StringFunctions_EndsWith: Source)",
  3431. "Components": {
  3432. "Component_[11956301527588291387]": {
  3433. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3434. "Id": 11956301527588291387,
  3435. "sourceEndpoint": {
  3436. "nodeId": {
  3437. "id": 48983076753152
  3438. },
  3439. "slotId": {
  3440. "m_id": "{27150FF5-8B09-4E0F-B37A-2B85CF39C004}"
  3441. }
  3442. },
  3443. "targetEndpoint": {
  3444. "nodeId": {
  3445. "id": 49004551589632
  3446. },
  3447. "slotId": {
  3448. "m_id": "{5FBBA5E0-F942-4A75-A08F-69434A9E0F99}"
  3449. }
  3450. }
  3451. }
  3452. }
  3453. },
  3454. {
  3455. "Id": {
  3456. "id": 49141990543104
  3457. },
  3458. "Name": "srcEndpoint=(ScriptCanvas_StringFunctions_EndsWith: True), destEndpoint=(Send Script Event: In)",
  3459. "Components": {
  3460. "Component_[16262565240280464320]": {
  3461. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3462. "Id": 16262565240280464320,
  3463. "sourceEndpoint": {
  3464. "nodeId": {
  3465. "id": 49004551589632
  3466. },
  3467. "slotId": {
  3468. "m_id": "{B541231A-30E5-4397-A831-5525AF80C682}"
  3469. }
  3470. },
  3471. "targetEndpoint": {
  3472. "nodeId": {
  3473. "id": 49047501262592
  3474. },
  3475. "slotId": {
  3476. "m_id": "{0CD56A55-F88C-4AE8-829A-7AEF90A7DA34}"
  3477. }
  3478. }
  3479. }
  3480. }
  3481. },
  3482. {
  3483. "Id": {
  3484. "id": 49146285510400
  3485. },
  3486. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(GetWorldTM: In)",
  3487. "Components": {
  3488. "Component_[12521198788295398288]": {
  3489. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3490. "Id": 12521198788295398288,
  3491. "sourceEndpoint": {
  3492. "nodeId": {
  3493. "id": 48965896883968
  3494. },
  3495. "slotId": {
  3496. "m_id": "{4E4CDC48-1925-493A-B473-E7848784F5A0}"
  3497. }
  3498. },
  3499. "targetEndpoint": {
  3500. "nodeId": {
  3501. "id": 49038911328000
  3502. },
  3503. "slotId": {
  3504. "m_id": "{FFF95C83-0C94-43CA-80EC-E89A04D8194C}"
  3505. }
  3506. }
  3507. }
  3508. }
  3509. },
  3510. {
  3511. "Id": {
  3512. "id": 49150580477696
  3513. },
  3514. "Name": "srcEndpoint=(GetWorldTM: Out), destEndpoint=(ScriptCanvas_TransformFunctions_GetForward: In)",
  3515. "Components": {
  3516. "Component_[15362499678320861716]": {
  3517. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3518. "Id": 15362499678320861716,
  3519. "sourceEndpoint": {
  3520. "nodeId": {
  3521. "id": 49038911328000
  3522. },
  3523. "slotId": {
  3524. "m_id": "{54C214EF-67FA-44B5-B629-D23FD4C9BB8E}"
  3525. }
  3526. },
  3527. "targetEndpoint": {
  3528. "nodeId": {
  3529. "id": 48978781785856
  3530. },
  3531. "slotId": {
  3532. "m_id": "{FC6F04CF-3C3C-4BFF-96E6-FA7604749ADE}"
  3533. }
  3534. }
  3535. }
  3536. }
  3537. },
  3538. {
  3539. "Id": {
  3540. "id": 49154875444992
  3541. },
  3542. "Name": "srcEndpoint=(GetWorldTM: Transform), destEndpoint=(ScriptCanvas_TransformFunctions_GetForward: Source)",
  3543. "Components": {
  3544. "Component_[4778170839479021704]": {
  3545. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3546. "Id": 4778170839479021704,
  3547. "sourceEndpoint": {
  3548. "nodeId": {
  3549. "id": 49038911328000
  3550. },
  3551. "slotId": {
  3552. "m_id": "{AC0A1A8E-98CF-4FE7-A3C9-067EE59282C6}"
  3553. }
  3554. },
  3555. "targetEndpoint": {
  3556. "nodeId": {
  3557. "id": 48978781785856
  3558. },
  3559. "slotId": {
  3560. "m_id": "{30EEB6ED-E778-4E1F-A722-50B2AAF5AAC6}"
  3561. }
  3562. }
  3563. }
  3564. }
  3565. },
  3566. {
  3567. "Id": {
  3568. "id": 49159170412288
  3569. },
  3570. "Name": "srcEndpoint=(ScriptCanvas_TransformFunctions_GetForward: Out), destEndpoint=(Set Variable: In)",
  3571. "Components": {
  3572. "Component_[6424197541573099907]": {
  3573. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3574. "Id": 6424197541573099907,
  3575. "sourceEndpoint": {
  3576. "nodeId": {
  3577. "id": 48978781785856
  3578. },
  3579. "slotId": {
  3580. "m_id": "{5C220946-5D2D-418C-A3BF-181B1EC1E3A1}"
  3581. }
  3582. },
  3583. "targetEndpoint": {
  3584. "nodeId": {
  3585. "id": 49051796229888
  3586. },
  3587. "slotId": {
  3588. "m_id": "{3FAEABFC-CE3E-423A-8651-216FB09BC58B}"
  3589. }
  3590. }
  3591. }
  3592. }
  3593. },
  3594. {
  3595. "Id": {
  3596. "id": 49163465379584
  3597. },
  3598. "Name": "srcEndpoint=(ScriptCanvas_TransformFunctions_GetForward: Vector3), destEndpoint=(Set Variable: Vector3)",
  3599. "Components": {
  3600. "Component_[17785213288848468699]": {
  3601. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3602. "Id": 17785213288848468699,
  3603. "sourceEndpoint": {
  3604. "nodeId": {
  3605. "id": 48978781785856
  3606. },
  3607. "slotId": {
  3608. "m_id": "{DB829753-C336-449F-B35E-1F5603CB7424}"
  3609. }
  3610. },
  3611. "targetEndpoint": {
  3612. "nodeId": {
  3613. "id": 49051796229888
  3614. },
  3615. "slotId": {
  3616. "m_id": "{AFF845FB-4E13-455B-A24F-83B00FF49BC2}"
  3617. }
  3618. }
  3619. }
  3620. }
  3621. },
  3622. {
  3623. "Id": {
  3624. "id": 49167760346880
  3625. },
  3626. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(HeartBeat: Start)",
  3627. "Components": {
  3628. "Component_[4749718635184535931]": {
  3629. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3630. "Id": 4749718635184535931,
  3631. "sourceEndpoint": {
  3632. "nodeId": {
  3633. "id": 49051796229888
  3634. },
  3635. "slotId": {
  3636. "m_id": "{028139FB-BE5B-45D5-A6E3-A705ED2B9B67}"
  3637. }
  3638. },
  3639. "targetEndpoint": {
  3640. "nodeId": {
  3641. "id": 49043206295296
  3642. },
  3643. "slotId": {
  3644. "m_id": "{0B942881-716B-4264-94BA-C16D082D7527}"
  3645. }
  3646. }
  3647. }
  3648. }
  3649. },
  3650. {
  3651. "Id": {
  3652. "id": 49172055314176
  3653. },
  3654. "Name": "srcEndpoint=(Multiply (*): Out), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: In)",
  3655. "Components": {
  3656. "Component_[6788609702298675553]": {
  3657. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3658. "Id": 6788609702298675553,
  3659. "sourceEndpoint": {
  3660. "nodeId": {
  3661. "id": 48974486818560
  3662. },
  3663. "slotId": {
  3664. "m_id": "{702A895D-550C-4863-B9F0-FF64F0327509}"
  3665. }
  3666. },
  3667. "targetEndpoint": {
  3668. "nodeId": {
  3669. "id": 48987371720448
  3670. },
  3671. "slotId": {
  3672. "m_id": "{E8E3A834-727C-4586-9E73-F49E795FEBEF}"
  3673. }
  3674. }
  3675. }
  3676. }
  3677. },
  3678. {
  3679. "Id": {
  3680. "id": 49176350281472
  3681. },
  3682. "Name": "srcEndpoint=(Multiply (*): Result), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Multiplier)",
  3683. "Components": {
  3684. "Component_[13521374596650588598]": {
  3685. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3686. "Id": 13521374596650588598,
  3687. "sourceEndpoint": {
  3688. "nodeId": {
  3689. "id": 48974486818560
  3690. },
  3691. "slotId": {
  3692. "m_id": "{189EE647-3E23-407F-8461-DFE30DAA3FB7}"
  3693. }
  3694. },
  3695. "targetEndpoint": {
  3696. "nodeId": {
  3697. "id": 48987371720448
  3698. },
  3699. "slotId": {
  3700. "m_id": "{DBED5A45-BF73-4C02-A199-A3C9D061F00A}"
  3701. }
  3702. }
  3703. }
  3704. }
  3705. },
  3706. {
  3707. "Id": {
  3708. "id": 49180645248768
  3709. },
  3710. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Out), destEndpoint=(Add (+): In)",
  3711. "Components": {
  3712. "Component_[16808903695311900664]": {
  3713. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3714. "Id": 16808903695311900664,
  3715. "sourceEndpoint": {
  3716. "nodeId": {
  3717. "id": 48987371720448
  3718. },
  3719. "slotId": {
  3720. "m_id": "{C04F73E4-5FDE-4AAF-9E72-A452A2FFBEE8}"
  3721. }
  3722. },
  3723. "targetEndpoint": {
  3724. "nodeId": {
  3725. "id": 49021731458816
  3726. },
  3727. "slotId": {
  3728. "m_id": "{E17A3DFB-F2AA-49B6-BAEF-908CD54ADF52}"
  3729. }
  3730. }
  3731. }
  3732. }
  3733. },
  3734. {
  3735. "Id": {
  3736. "id": 49184940216064
  3737. },
  3738. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Vector3), destEndpoint=(Add (+): Vector3 1)",
  3739. "Components": {
  3740. "Component_[3909590152922003930]": {
  3741. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3742. "Id": 3909590152922003930,
  3743. "sourceEndpoint": {
  3744. "nodeId": {
  3745. "id": 48987371720448
  3746. },
  3747. "slotId": {
  3748. "m_id": "{80B49136-E915-4C38-8150-9828A63BDEB1}"
  3749. }
  3750. },
  3751. "targetEndpoint": {
  3752. "nodeId": {
  3753. "id": 49021731458816
  3754. },
  3755. "slotId": {
  3756. "m_id": "{BFC75D39-F920-4A41-84FB-28E584FE96D7}"
  3757. }
  3758. }
  3759. }
  3760. }
  3761. },
  3762. {
  3763. "Id": {
  3764. "id": 49189235183360
  3765. },
  3766. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(SetLocalRotation: In)",
  3767. "Components": {
  3768. "Component_[9171941380347648526]": {
  3769. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3770. "Id": 9171941380347648526,
  3771. "sourceEndpoint": {
  3772. "nodeId": {
  3773. "id": 48965896883968
  3774. },
  3775. "slotId": {
  3776. "m_id": "{4E4CDC48-1925-493A-B473-E7848784F5A0}"
  3777. }
  3778. },
  3779. "targetEndpoint": {
  3780. "nodeId": {
  3781. "id": 48995961655040
  3782. },
  3783. "slotId": {
  3784. "m_id": "{24B1BE8C-096F-4919-894C-2A50E19187BA}"
  3785. }
  3786. }
  3787. }
  3788. }
  3789. },
  3790. {
  3791. "Id": {
  3792. "id": 362288056094464
  3793. },
  3794. "Name": "srcEndpoint=(On Collision Begin event: OnEvent), destEndpoint=(GetBody2EntityId: In)",
  3795. "Components": {
  3796. "Component_[6972865483993645862]": {
  3797. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3798. "Id": 6972865483993645862,
  3799. "sourceEndpoint": {
  3800. "nodeId": {
  3801. "id": 49034616360704
  3802. },
  3803. "slotId": {
  3804. "m_id": "{8CE6885A-C46C-4FBF-A249-79D2041CCE4F}"
  3805. }
  3806. },
  3807. "targetEndpoint": {
  3808. "nodeId": {
  3809. "id": 361429062635264
  3810. },
  3811. "slotId": {
  3812. "m_id": "{5FD02948-AEA8-4D85-9E35-6CBD5FF0DF6A}"
  3813. }
  3814. }
  3815. }
  3816. }
  3817. },
  3818. {
  3819. "Id": {
  3820. "id": 362580113870592
  3821. },
  3822. "Name": "srcEndpoint=(On Collision Begin event: Collision Event), destEndpoint=(GetBody2EntityId: CollisionEvent)",
  3823. "Components": {
  3824. "Component_[15114620155751835590]": {
  3825. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3826. "Id": 15114620155751835590,
  3827. "sourceEndpoint": {
  3828. "nodeId": {
  3829. "id": 49034616360704
  3830. },
  3831. "slotId": {
  3832. "m_id": "{B32AB29E-D38E-43CF-B062-FC998F926C9A}"
  3833. }
  3834. },
  3835. "targetEndpoint": {
  3836. "nodeId": {
  3837. "id": 361429062635264
  3838. },
  3839. "slotId": {
  3840. "m_id": "{DCF2592B-3FA6-4D72-A60B-312940CF55E6}"
  3841. }
  3842. }
  3843. }
  3844. }
  3845. },
  3846. {
  3847. "Id": {
  3848. "id": 362889351515904
  3849. },
  3850. "Name": "srcEndpoint=(GetBody2EntityId: Out), destEndpoint=(GetEntityName: In)",
  3851. "Components": {
  3852. "Component_[395349082734841756]": {
  3853. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3854. "Id": 395349082734841756,
  3855. "sourceEndpoint": {
  3856. "nodeId": {
  3857. "id": 361429062635264
  3858. },
  3859. "slotId": {
  3860. "m_id": "{4E0C4A8D-0572-4159-80DA-4999A5B9A896}"
  3861. }
  3862. },
  3863. "targetEndpoint": {
  3864. "nodeId": {
  3865. "id": 48983076753152
  3866. },
  3867. "slotId": {
  3868. "m_id": "{986A3CC3-3C87-41F7-A00C-55587DABB350}"
  3869. }
  3870. }
  3871. }
  3872. }
  3873. },
  3874. {
  3875. "Id": {
  3876. "id": 363138459619072
  3877. },
  3878. "Name": "srcEndpoint=(GetBody2EntityId: EntityId), destEndpoint=(GetEntityName: EntityId)",
  3879. "Components": {
  3880. "Component_[3472248562488114541]": {
  3881. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3882. "Id": 3472248562488114541,
  3883. "sourceEndpoint": {
  3884. "nodeId": {
  3885. "id": 361429062635264
  3886. },
  3887. "slotId": {
  3888. "m_id": "{A2B87EC2-3E12-4AB4-88C7-E5621F3D36A9}"
  3889. }
  3890. },
  3891. "targetEndpoint": {
  3892. "nodeId": {
  3893. "id": 48983076753152
  3894. },
  3895. "slotId": {
  3896. "m_id": "{1127602F-F67C-4C0E-9988-C349650276A3}"
  3897. }
  3898. }
  3899. }
  3900. }
  3901. }
  3902. ],
  3903. "m_scriptEventAssets": [
  3904. [
  3905. {
  3906. "id": 49047501262592
  3907. },
  3908. {}
  3909. ],
  3910. [
  3911. {
  3912. "id": 49047501262592
  3913. },
  3914. {}
  3915. ],
  3916. [
  3917. {
  3918. "id": 49047501262592
  3919. },
  3920. {}
  3921. ],
  3922. [
  3923. {
  3924. "id": 49047501262592
  3925. },
  3926. {}
  3927. ],
  3928. [
  3929. {
  3930. "id": 49047501262592
  3931. },
  3932. {}
  3933. ]
  3934. ]
  3935. },
  3936. "m_assetType": "{13000000-0000-0000-1300-000000000000}",
  3937. "versionData": {
  3938. "_grammarVersion": 1,
  3939. "_runtimeVersion": 1,
  3940. "_fileVersion": 1
  3941. },
  3942. "m_variableCounter": 3,
  3943. "GraphCanvasData": [
  3944. {
  3945. "Key": {
  3946. "id": 48961601916672
  3947. },
  3948. "Value": {
  3949. "ComponentData": {
  3950. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  3951. "$type": "SceneComponentSaveData",
  3952. "Constructs": [
  3953. {
  3954. "Type": 3,
  3955. "DataContainer": {
  3956. "ComponentData": {
  3957. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3958. "$type": "NodeSaveData"
  3959. },
  3960. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  3961. "$type": "CommentNodeTextSaveData",
  3962. "Comment": "HELP! I'm not sure why I had to add this...but without it the cars are facing the wrong direction",
  3963. "BackgroundColor": [
  3964. 0.9800000190734863,
  3965. 0.9700000286102295,
  3966. 0.6499999761581421
  3967. ],
  3968. "FontSettings": {
  3969. "PixelSize": 16
  3970. }
  3971. },
  3972. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  3973. "$type": "NodeGroupFrameComponentSaveData",
  3974. "DisplayHeight": 267.0,
  3975. "DisplayWidth": 600.0,
  3976. "PersistentGroupedId": [
  3977. "{D3C48CAC-3B21-481A-9425-1454DE109221}"
  3978. ]
  3979. },
  3980. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3981. "$type": "GeometrySaveData",
  3982. "Position": [
  3983. -640.0,
  3984. 620.0
  3985. ]
  3986. },
  3987. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3988. "$type": "StylingComponentSaveData"
  3989. },
  3990. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3991. "$type": "PersistentIdComponentSaveData",
  3992. "PersistentId": "{8818C1F6-7F59-496A-9722-E31A09A885F2}"
  3993. }
  3994. }
  3995. }
  3996. }
  3997. ],
  3998. "ViewParams": {
  3999. "Scale": 0.9024744241397901,
  4000. "AnchorX": 1334.10986328125,
  4001. "AnchorY": 868.72265625
  4002. }
  4003. }
  4004. }
  4005. }
  4006. },
  4007. {
  4008. "Key": {
  4009. "id": 48965896883968
  4010. },
  4011. "Value": {
  4012. "ComponentData": {
  4013. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4014. "$type": "NodeSaveData"
  4015. },
  4016. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4017. "$type": "GeneralNodeTitleComponentSaveData",
  4018. "PaletteOverride": "TimeNodeTitlePalette"
  4019. },
  4020. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4021. "$type": "GeometrySaveData",
  4022. "Position": [
  4023. -840.0,
  4024. 320.0
  4025. ]
  4026. },
  4027. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4028. "$type": "StylingComponentSaveData"
  4029. },
  4030. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4031. "$type": "PersistentIdComponentSaveData",
  4032. "PersistentId": "{01EEE83B-F307-4FC7-BCBA-49C297CBC417}"
  4033. }
  4034. }
  4035. }
  4036. },
  4037. {
  4038. "Key": {
  4039. "id": 48970191851264
  4040. },
  4041. "Value": {
  4042. "ComponentData": {
  4043. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4044. "$type": "NodeSaveData"
  4045. },
  4046. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4047. "$type": "GeneralNodeTitleComponentSaveData",
  4048. "PaletteOverride": "MethodNodeTitlePalette"
  4049. },
  4050. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4051. "$type": "GeometrySaveData",
  4052. "Position": [
  4053. 940.0,
  4054. 300.0
  4055. ]
  4056. },
  4057. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4058. "$type": "StylingComponentSaveData",
  4059. "SubStyle": ".method"
  4060. },
  4061. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4062. "$type": "PersistentIdComponentSaveData",
  4063. "PersistentId": "{CD2CB260-1A34-4046-B4D6-470D63DAB0E1}"
  4064. }
  4065. }
  4066. }
  4067. },
  4068. {
  4069. "Key": {
  4070. "id": 48974486818560
  4071. },
  4072. "Value": {
  4073. "ComponentData": {
  4074. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4075. "$type": "NodeSaveData"
  4076. },
  4077. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4078. "$type": "GeneralNodeTitleComponentSaveData",
  4079. "PaletteOverride": "MathNodeTitlePalette"
  4080. },
  4081. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4082. "$type": "GeometrySaveData",
  4083. "Position": [
  4084. 2500.0,
  4085. 300.0
  4086. ]
  4087. },
  4088. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4089. "$type": "StylingComponentSaveData"
  4090. },
  4091. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4092. "$type": "PersistentIdComponentSaveData",
  4093. "PersistentId": "{2CCDBAAB-55A2-4DDB-85B8-F79BC3B72E39}"
  4094. }
  4095. }
  4096. }
  4097. },
  4098. {
  4099. "Key": {
  4100. "id": 48978781785856
  4101. },
  4102. "Value": {
  4103. "ComponentData": {
  4104. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4105. "$type": "NodeSaveData"
  4106. },
  4107. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4108. "$type": "GeneralNodeTitleComponentSaveData",
  4109. "PaletteOverride": "MethodNodeTitlePalette"
  4110. },
  4111. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4112. "$type": "GeometrySaveData",
  4113. "Position": [
  4114. -180.0,
  4115. 320.0
  4116. ]
  4117. },
  4118. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4119. "$type": "StylingComponentSaveData",
  4120. "SubStyle": ".method"
  4121. },
  4122. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4123. "$type": "PersistentIdComponentSaveData",
  4124. "PersistentId": "{97369420-C340-4239-BA5B-531109B25F89}"
  4125. }
  4126. }
  4127. }
  4128. },
  4129. {
  4130. "Key": {
  4131. "id": 48983076753152
  4132. },
  4133. "Value": {
  4134. "ComponentData": {
  4135. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4136. "$type": "NodeSaveData"
  4137. },
  4138. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4139. "$type": "GeneralNodeTitleComponentSaveData",
  4140. "PaletteOverride": "MethodNodeTitlePalette"
  4141. },
  4142. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4143. "$type": "GeometrySaveData",
  4144. "Position": [
  4145. 2260.0,
  4146. 1000.0
  4147. ]
  4148. },
  4149. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4150. "$type": "StylingComponentSaveData",
  4151. "SubStyle": ".method"
  4152. },
  4153. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4154. "$type": "PersistentIdComponentSaveData",
  4155. "PersistentId": "{D7308178-28F0-4C68-84C6-DCCE5DD9D48F}"
  4156. }
  4157. }
  4158. }
  4159. },
  4160. {
  4161. "Key": {
  4162. "id": 48987371720448
  4163. },
  4164. "Value": {
  4165. "ComponentData": {
  4166. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4167. "$type": "NodeSaveData"
  4168. },
  4169. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4170. "$type": "GeneralNodeTitleComponentSaveData",
  4171. "PaletteOverride": "MethodNodeTitlePalette"
  4172. },
  4173. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4174. "$type": "GeometrySaveData",
  4175. "Position": [
  4176. 2820.0,
  4177. 300.0
  4178. ]
  4179. },
  4180. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4181. "$type": "StylingComponentSaveData",
  4182. "SubStyle": ".method"
  4183. },
  4184. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4185. "$type": "PersistentIdComponentSaveData",
  4186. "PersistentId": "{F912086A-E123-46F0-B6B3-38DBA6702283}"
  4187. }
  4188. }
  4189. }
  4190. },
  4191. {
  4192. "Key": {
  4193. "id": 48991666687744
  4194. },
  4195. "Value": {
  4196. "ComponentData": {
  4197. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4198. "$type": "NodeSaveData"
  4199. },
  4200. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4201. "$type": "GeneralNodeTitleComponentSaveData",
  4202. "PaletteOverride": "MethodNodeTitlePalette"
  4203. },
  4204. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4205. "$type": "GeometrySaveData",
  4206. "Position": [
  4207. 3680.0,
  4208. 440.0
  4209. ]
  4210. },
  4211. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4212. "$type": "StylingComponentSaveData",
  4213. "SubStyle": ".method"
  4214. },
  4215. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4216. "$type": "PersistentIdComponentSaveData",
  4217. "PersistentId": "{F029E139-1922-4E2A-BCC9-D23602181D3F}"
  4218. }
  4219. }
  4220. }
  4221. },
  4222. {
  4223. "Key": {
  4224. "id": 48995961655040
  4225. },
  4226. "Value": {
  4227. "ComponentData": {
  4228. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4229. "$type": "NodeSaveData"
  4230. },
  4231. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4232. "$type": "GeneralNodeTitleComponentSaveData",
  4233. "PaletteOverride": "MethodNodeTitlePalette"
  4234. },
  4235. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4236. "$type": "GeometrySaveData",
  4237. "Position": [
  4238. -620.0,
  4239. 680.0
  4240. ]
  4241. },
  4242. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4243. "$type": "StylingComponentSaveData",
  4244. "SubStyle": ".method"
  4245. },
  4246. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4247. "$type": "PersistentIdComponentSaveData",
  4248. "PersistentId": "{D3C48CAC-3B21-481A-9425-1454DE109221}"
  4249. }
  4250. }
  4251. }
  4252. },
  4253. {
  4254. "Key": {
  4255. "id": 49000256622336
  4256. },
  4257. "Value": {
  4258. "ComponentData": {
  4259. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4260. "$type": "NodeSaveData"
  4261. },
  4262. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4263. "$type": "GeneralNodeTitleComponentSaveData",
  4264. "PaletteOverride": "GetVariableNodeTitlePalette"
  4265. },
  4266. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4267. "$type": "GeometrySaveData",
  4268. "Position": [
  4269. 1400.0,
  4270. 300.0
  4271. ]
  4272. },
  4273. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4274. "$type": "StylingComponentSaveData",
  4275. "SubStyle": ".getVariable"
  4276. },
  4277. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4278. "$type": "PersistentIdComponentSaveData",
  4279. "PersistentId": "{1BFF0BC9-3854-46CF-8801-27516D713C63}"
  4280. }
  4281. }
  4282. }
  4283. },
  4284. {
  4285. "Key": {
  4286. "id": 49004551589632
  4287. },
  4288. "Value": {
  4289. "ComponentData": {
  4290. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4291. "$type": "NodeSaveData"
  4292. },
  4293. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4294. "$type": "GeneralNodeTitleComponentSaveData",
  4295. "PaletteOverride": "MethodNodeTitlePalette"
  4296. },
  4297. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4298. "$type": "GeometrySaveData",
  4299. "Position": [
  4300. 2740.0,
  4301. 1000.0
  4302. ]
  4303. },
  4304. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4305. "$type": "StylingComponentSaveData",
  4306. "SubStyle": ".method"
  4307. },
  4308. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4309. "$type": "PersistentIdComponentSaveData",
  4310. "PersistentId": "{00B77E2A-E8CB-4C0F-9CEB-47FA42318220}"
  4311. }
  4312. }
  4313. }
  4314. },
  4315. {
  4316. "Key": {
  4317. "id": 49008846556928
  4318. },
  4319. "Value": {
  4320. "ComponentData": {
  4321. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4322. "$type": "NodeSaveData"
  4323. },
  4324. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4325. "$type": "GeneralNodeTitleComponentSaveData",
  4326. "PaletteOverride": "MethodNodeTitlePalette"
  4327. },
  4328. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4329. "$type": "GeometrySaveData",
  4330. "Position": [
  4331. 840.0,
  4332. 1020.0
  4333. ]
  4334. },
  4335. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4336. "$type": "StylingComponentSaveData",
  4337. "SubStyle": ".method"
  4338. },
  4339. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4340. "$type": "PersistentIdComponentSaveData",
  4341. "PersistentId": "{FF78EA4C-D604-4C96-B2AC-F3231962EEC0}"
  4342. }
  4343. }
  4344. }
  4345. },
  4346. {
  4347. "Key": {
  4348. "id": 49017436491520
  4349. },
  4350. "Value": {
  4351. "ComponentData": {
  4352. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4353. "$type": "NodeSaveData"
  4354. },
  4355. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4356. "$type": "GeometrySaveData",
  4357. "Position": [
  4358. 460.0,
  4359. 920.0
  4360. ]
  4361. },
  4362. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  4363. "$type": "EBusHandlerNodeDescriptorSaveData",
  4364. "EventIds": [
  4365. {
  4366. "Value": 245425936
  4367. }
  4368. ]
  4369. },
  4370. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4371. "$type": "StylingComponentSaveData"
  4372. },
  4373. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4374. "$type": "PersistentIdComponentSaveData",
  4375. "PersistentId": "{8F60A9FB-CB1A-4F65-A0A5-DFA6C9169C1E}"
  4376. }
  4377. }
  4378. }
  4379. },
  4380. {
  4381. "Key": {
  4382. "id": 49021731458816
  4383. },
  4384. "Value": {
  4385. "ComponentData": {
  4386. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4387. "$type": "NodeSaveData"
  4388. },
  4389. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4390. "$type": "GeneralNodeTitleComponentSaveData",
  4391. "PaletteOverride": "MathNodeTitlePalette"
  4392. },
  4393. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4394. "$type": "GeometrySaveData",
  4395. "Position": [
  4396. 3320.0,
  4397. 400.0
  4398. ]
  4399. },
  4400. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4401. "$type": "StylingComponentSaveData"
  4402. },
  4403. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4404. "$type": "PersistentIdComponentSaveData",
  4405. "PersistentId": "{E85922F3-67E3-401D-9A03-C6C9D0897C3B}"
  4406. }
  4407. }
  4408. }
  4409. },
  4410. {
  4411. "Key": {
  4412. "id": 49026026426112
  4413. },
  4414. "Value": {
  4415. "ComponentData": {
  4416. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4417. "$type": "NodeSaveData"
  4418. },
  4419. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4420. "$type": "GeneralNodeTitleComponentSaveData",
  4421. "PaletteOverride": "MathNodeTitlePalette"
  4422. },
  4423. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4424. "$type": "GeometrySaveData",
  4425. "Position": [
  4426. 1860.0,
  4427. 300.0
  4428. ]
  4429. },
  4430. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4431. "$type": "StylingComponentSaveData"
  4432. },
  4433. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4434. "$type": "PersistentIdComponentSaveData",
  4435. "PersistentId": "{9EC5DB70-96AB-4CF1-8CA6-C61A19864512}"
  4436. }
  4437. }
  4438. }
  4439. },
  4440. {
  4441. "Key": {
  4442. "id": 49030321393408
  4443. },
  4444. "Value": {
  4445. "ComponentData": {
  4446. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4447. "$type": "NodeSaveData"
  4448. },
  4449. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4450. "$type": "GeneralNodeTitleComponentSaveData",
  4451. "PaletteOverride": "GetVariableNodeTitlePalette"
  4452. },
  4453. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4454. "$type": "GeometrySaveData",
  4455. "Position": [
  4456. 2180.0,
  4457. 300.0
  4458. ]
  4459. },
  4460. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4461. "$type": "StylingComponentSaveData",
  4462. "SubStyle": ".getVariable"
  4463. },
  4464. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4465. "$type": "PersistentIdComponentSaveData",
  4466. "PersistentId": "{CDA8B731-6E85-4609-8898-2F68E9BD2EDC}"
  4467. }
  4468. }
  4469. }
  4470. },
  4471. {
  4472. "Key": {
  4473. "id": 49034616360704
  4474. },
  4475. "Value": {
  4476. "ComponentData": {
  4477. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4478. "$type": "NodeSaveData"
  4479. },
  4480. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4481. "$type": "GeneralNodeTitleComponentSaveData",
  4482. "PaletteOverride": "HandlerNodeTitlePalette"
  4483. },
  4484. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4485. "$type": "GeometrySaveData",
  4486. "Position": [
  4487. 1440.0,
  4488. 1000.0
  4489. ]
  4490. },
  4491. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4492. "$type": "StylingComponentSaveData",
  4493. "SubStyle": ".azeventhandler"
  4494. },
  4495. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4496. "$type": "PersistentIdComponentSaveData",
  4497. "PersistentId": "{3DCC4839-D6FE-4B41-AD22-D86008C03795}"
  4498. }
  4499. }
  4500. }
  4501. },
  4502. {
  4503. "Key": {
  4504. "id": 49038911328000
  4505. },
  4506. "Value": {
  4507. "ComponentData": {
  4508. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4509. "$type": "NodeSaveData"
  4510. },
  4511. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4512. "$type": "GeneralNodeTitleComponentSaveData",
  4513. "PaletteOverride": "MethodNodeTitlePalette"
  4514. },
  4515. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4516. "$type": "GeometrySaveData",
  4517. "Position": [
  4518. -640.0,
  4519. 320.0
  4520. ]
  4521. },
  4522. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4523. "$type": "StylingComponentSaveData",
  4524. "SubStyle": ".method"
  4525. },
  4526. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4527. "$type": "PersistentIdComponentSaveData",
  4528. "PersistentId": "{E0E2B7B9-7D98-47FA-9FB3-C617ACCB9AAF}"
  4529. }
  4530. }
  4531. }
  4532. },
  4533. {
  4534. "Key": {
  4535. "id": 49043206295296
  4536. },
  4537. "Value": {
  4538. "ComponentData": {
  4539. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4540. "$type": "NodeSaveData"
  4541. },
  4542. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4543. "$type": "GeneralNodeTitleComponentSaveData",
  4544. "PaletteOverride": "TimeNodeTitlePalette"
  4545. },
  4546. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4547. "$type": "GeometrySaveData",
  4548. "Position": [
  4549. 480.0,
  4550. 300.0
  4551. ]
  4552. },
  4553. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4554. "$type": "StylingComponentSaveData"
  4555. },
  4556. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4557. "$type": "PersistentIdComponentSaveData",
  4558. "PersistentId": "{3C8294A3-71FA-4545-8FE6-BB81FF48B500}"
  4559. }
  4560. }
  4561. }
  4562. },
  4563. {
  4564. "Key": {
  4565. "id": 49047501262592
  4566. },
  4567. "Value": {
  4568. "ComponentData": {
  4569. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4570. "$type": "NodeSaveData"
  4571. },
  4572. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4573. "$type": "GeneralNodeTitleComponentSaveData",
  4574. "PaletteOverride": "MethodNodeTitlePalette"
  4575. },
  4576. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4577. "$type": "GeometrySaveData",
  4578. "Position": [
  4579. 3100.0,
  4580. 1080.0
  4581. ]
  4582. },
  4583. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4584. "$type": "StylingComponentSaveData",
  4585. "SubStyle": ".method"
  4586. },
  4587. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4588. "$type": "PersistentIdComponentSaveData",
  4589. "PersistentId": "{1C6EC183-319B-48C4-92AF-FD6BE640C740}"
  4590. }
  4591. }
  4592. }
  4593. },
  4594. {
  4595. "Key": {
  4596. "id": 49051796229888
  4597. },
  4598. "Value": {
  4599. "ComponentData": {
  4600. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4601. "$type": "NodeSaveData"
  4602. },
  4603. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4604. "$type": "GeneralNodeTitleComponentSaveData",
  4605. "PaletteOverride": "SetVariableNodeTitlePalette"
  4606. },
  4607. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4608. "$type": "GeometrySaveData",
  4609. "Position": [
  4610. 160.0,
  4611. 300.0
  4612. ]
  4613. },
  4614. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4615. "$type": "StylingComponentSaveData",
  4616. "SubStyle": ".setVariable"
  4617. },
  4618. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4619. "$type": "PersistentIdComponentSaveData",
  4620. "PersistentId": "{7B141FFE-7AA5-47ED-AF08-0D610536F10C}"
  4621. }
  4622. }
  4623. }
  4624. },
  4625. {
  4626. "Key": {
  4627. "id": 361429062635264
  4628. },
  4629. "Value": {
  4630. "ComponentData": {
  4631. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4632. "$type": "NodeSaveData"
  4633. },
  4634. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4635. "$type": "GeneralNodeTitleComponentSaveData",
  4636. "PaletteOverride": "MethodNodeTitlePalette"
  4637. },
  4638. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4639. "$type": "GeometrySaveData",
  4640. "Position": [
  4641. 1920.0,
  4642. 1040.0
  4643. ]
  4644. },
  4645. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4646. "$type": "StylingComponentSaveData",
  4647. "SubStyle": ".method"
  4648. },
  4649. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4650. "$type": "PersistentIdComponentSaveData",
  4651. "PersistentId": "{BCCB0DEF-5266-46AE-9934-1048E636CCE7}"
  4652. }
  4653. }
  4654. }
  4655. }
  4656. ],
  4657. "StatisticsHelper": {
  4658. "InstanceCounter": [
  4659. {
  4660. "Key": 191865528901450421,
  4661. "Value": 1
  4662. },
  4663. {
  4664. "Key": 955089921810928021,
  4665. "Value": 1
  4666. },
  4667. {
  4668. "Key": 1244476766431948410,
  4669. "Value": 1
  4670. },
  4671. {
  4672. "Key": 4199610336680704683,
  4673. "Value": 1
  4674. },
  4675. {
  4676. "Key": 4284653482313037728,
  4677. "Value": 1
  4678. },
  4679. {
  4680. "Key": 4847610523576971761,
  4681. "Value": 1
  4682. },
  4683. {
  4684. "Key": 5842116761103598202,
  4685. "Value": 1
  4686. },
  4687. {
  4688. "Key": 6928077898798683711,
  4689. "Value": 1
  4690. },
  4691. {
  4692. "Key": 8124895317272008913,
  4693. "Value": 1
  4694. },
  4695. {
  4696. "Key": 9017495172405820461,
  4697. "Value": 1
  4698. },
  4699. {
  4700. "Key": 10103778464964995608,
  4701. "Value": 1
  4702. },
  4703. {
  4704. "Key": 11406045330943018107,
  4705. "Value": 1
  4706. },
  4707. {
  4708. "Key": 12248403026803206096,
  4709. "Value": 1
  4710. },
  4711. {
  4712. "Key": 12702286953450386850,
  4713. "Value": 1
  4714. },
  4715. {
  4716. "Key": 13774516541610154630,
  4717. "Value": 1
  4718. },
  4719. {
  4720. "Key": 13774516554665849160,
  4721. "Value": 1
  4722. },
  4723. {
  4724. "Key": 13774516554859667306,
  4725. "Value": 1
  4726. },
  4727. {
  4728. "Key": 13774516555687402408,
  4729. "Value": 1
  4730. },
  4731. {
  4732. "Key": 13774516556300749906,
  4733. "Value": 1
  4734. },
  4735. {
  4736. "Key": 17499710305455786242,
  4737. "Value": 1
  4738. },
  4739. {
  4740. "Key": 18025644294733943479,
  4741. "Value": 1
  4742. }
  4743. ]
  4744. }
  4745. }
  4746. }
  4747. }
  4748. }
  4749. }