3
0

Test_OnVariableChange.scriptcanvas 309 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 76836004660391
  9. },
  10. "Name": "Test_OnVariableChange",
  11. "Components": {
  12. "Component_[12847899503982205681]": {
  13. "$type": "EditorGraph",
  14. "Id": 12847899503982205681,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 76917609039015
  20. },
  21. "Name": "SC Node(GetVariable)",
  22. "Components": {
  23. "Component_[10864663718599734607]": {
  24. "$type": "GetVariableNode",
  25. "Id": 10864663718599734607,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{72F1B1EC-6C15-4C4E-BAF6-0431AFE319AA}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "In",
  37. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  38. "Descriptor": {
  39. "ConnectionType": 1,
  40. "SlotType": 1
  41. }
  42. },
  43. {
  44. "id": {
  45. "m_id": "{550CEB49-5446-4A51-8E23-4C41351550BD}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "Out",
  53. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  54. "Descriptor": {
  55. "ConnectionType": 2,
  56. "SlotType": 1
  57. }
  58. },
  59. {
  60. "id": {
  61. "m_id": "{1A256425-2D1A-43CB-BF1B-0F5536ED8710}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. }
  67. ],
  68. "slotName": "Number",
  69. "DisplayDataType": {
  70. "m_type": 3
  71. },
  72. "Descriptor": {
  73. "ConnectionType": 2,
  74. "SlotType": 2
  75. },
  76. "DataType": 1
  77. }
  78. ],
  79. "m_variableId": {
  80. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  81. },
  82. "m_variableDataOutSlotId": {
  83. "m_id": "{1A256425-2D1A-43CB-BF1B-0F5536ED8710}"
  84. }
  85. }
  86. }
  87. },
  88. {
  89. "Id": {
  90. "id": 76904724137127
  91. },
  92. "Name": "SC Node(SetVariable)",
  93. "Components": {
  94. "Component_[11220654088659959545]": {
  95. "$type": "SetVariableNode",
  96. "Id": 11220654088659959545,
  97. "Slots": [
  98. {
  99. "id": {
  100. "m_id": "{4DD7C0CC-D2DC-4E5E-8AC4-D0F3AA609063}"
  101. },
  102. "contracts": [
  103. {
  104. "$type": "SlotTypeContract"
  105. }
  106. ],
  107. "slotName": "In",
  108. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  109. "Descriptor": {
  110. "ConnectionType": 1,
  111. "SlotType": 1
  112. }
  113. },
  114. {
  115. "id": {
  116. "m_id": "{98E9163C-BE05-4DA6-8F3F-46F430FEB13E}"
  117. },
  118. "contracts": [
  119. {
  120. "$type": "SlotTypeContract"
  121. }
  122. ],
  123. "slotName": "Out",
  124. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  125. "Descriptor": {
  126. "ConnectionType": 2,
  127. "SlotType": 1
  128. }
  129. },
  130. {
  131. "id": {
  132. "m_id": "{B472EAB7-3A3D-4A11-9B89-0215A15038D3}"
  133. },
  134. "contracts": [
  135. {
  136. "$type": "SlotTypeContract"
  137. },
  138. null
  139. ],
  140. "slotName": "Vector3",
  141. "Descriptor": {
  142. "ConnectionType": 1,
  143. "SlotType": 2
  144. },
  145. "DataType": 1,
  146. "IsReference": true,
  147. "VariableReference": {
  148. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  149. }
  150. },
  151. {
  152. "id": {
  153. "m_id": "{B6ABA089-4E71-4041-89F8-F2FD3E9E7961}"
  154. },
  155. "contracts": [
  156. {
  157. "$type": "SlotTypeContract"
  158. }
  159. ],
  160. "slotName": "Vector3",
  161. "DisplayDataType": {
  162. "m_type": 8
  163. },
  164. "Descriptor": {
  165. "ConnectionType": 2,
  166. "SlotType": 2
  167. },
  168. "DataType": 1
  169. },
  170. {
  171. "id": {
  172. "m_id": "{D7425B8A-2F2F-49A3-A559-7AD761CFDDA8}"
  173. },
  174. "contracts": [
  175. {
  176. "$type": "SlotTypeContract"
  177. }
  178. ],
  179. "slotName": "x: Number",
  180. "DisplayDataType": {
  181. "m_type": 3
  182. },
  183. "Descriptor": {
  184. "ConnectionType": 2,
  185. "SlotType": 2
  186. },
  187. "DataType": 1
  188. },
  189. {
  190. "id": {
  191. "m_id": "{A144EF8D-6F83-4F4C-B68C-736ABF9B93CF}"
  192. },
  193. "contracts": [
  194. {
  195. "$type": "SlotTypeContract"
  196. }
  197. ],
  198. "slotName": "y: Number",
  199. "DisplayDataType": {
  200. "m_type": 3
  201. },
  202. "Descriptor": {
  203. "ConnectionType": 2,
  204. "SlotType": 2
  205. },
  206. "DataType": 1
  207. },
  208. {
  209. "id": {
  210. "m_id": "{07CE9CAF-70DD-43C9-B5AD-B4FB57990CA3}"
  211. },
  212. "contracts": [
  213. {
  214. "$type": "SlotTypeContract"
  215. }
  216. ],
  217. "slotName": "z: Number",
  218. "DisplayDataType": {
  219. "m_type": 3
  220. },
  221. "Descriptor": {
  222. "ConnectionType": 2,
  223. "SlotType": 2
  224. },
  225. "DataType": 1
  226. }
  227. ],
  228. "Datums": [
  229. {
  230. "isOverloadedStorage": false,
  231. "scriptCanvasType": {
  232. "m_type": 8
  233. },
  234. "isNullPointer": false,
  235. "$type": "Vector3",
  236. "value": [
  237. 0.0,
  238. 0.0,
  239. 0.0
  240. ],
  241. "label": "Vector3"
  242. }
  243. ],
  244. "m_variableId": {
  245. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  246. },
  247. "m_variableDataInSlotId": {
  248. "m_id": "{B472EAB7-3A3D-4A11-9B89-0215A15038D3}"
  249. },
  250. "m_variableDataOutSlotId": {
  251. "m_id": "{B6ABA089-4E71-4041-89F8-F2FD3E9E7961}"
  252. },
  253. "m_propertyAccounts": [
  254. {
  255. "m_propertySlotId": {
  256. "m_id": "{D7425B8A-2F2F-49A3-A559-7AD761CFDDA8}"
  257. },
  258. "m_propertyType": {
  259. "m_type": 3
  260. },
  261. "m_propertyName": "x"
  262. },
  263. {
  264. "m_propertySlotId": {
  265. "m_id": "{A144EF8D-6F83-4F4C-B68C-736ABF9B93CF}"
  266. },
  267. "m_propertyType": {
  268. "m_type": 3
  269. },
  270. "m_propertyName": "y"
  271. },
  272. {
  273. "m_propertySlotId": {
  274. "m_id": "{07CE9CAF-70DD-43C9-B5AD-B4FB57990CA3}"
  275. },
  276. "m_propertyType": {
  277. "m_type": 3
  278. },
  279. "m_propertyName": "z"
  280. }
  281. ]
  282. }
  283. }
  284. },
  285. {
  286. "Id": {
  287. "id": 76891839235239
  288. },
  289. "Name": "SC-Node(MarkComplete)",
  290. "Components": {
  291. "Component_[11556772328065049121]": {
  292. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  293. "Id": 11556772328065049121,
  294. "Slots": [
  295. {
  296. "isVisibile": false,
  297. "id": {
  298. "m_id": "{96DE6114-FE76-4A17-9884-2964ECE88C58}"
  299. },
  300. "contracts": [
  301. {
  302. "$type": "SlotTypeContract"
  303. },
  304. null
  305. ],
  306. "slotName": "EntityID: 0",
  307. "Descriptor": {
  308. "ConnectionType": 1,
  309. "SlotType": 2
  310. },
  311. "DataType": 1
  312. },
  313. {
  314. "id": {
  315. "m_id": "{589741EC-0D7E-4219-9720-8070A1365E39}"
  316. },
  317. "contracts": [
  318. {
  319. "$type": "SlotTypeContract"
  320. },
  321. null
  322. ],
  323. "slotName": "Report",
  324. "toolTip": "additional notes for the test report",
  325. "DisplayDataType": {
  326. "m_type": 5
  327. },
  328. "Descriptor": {
  329. "ConnectionType": 1,
  330. "SlotType": 2
  331. },
  332. "DataType": 1
  333. },
  334. {
  335. "id": {
  336. "m_id": "{82D04AB4-51F3-4929-B182-07B6861E3C5C}"
  337. },
  338. "contracts": [
  339. {
  340. "$type": "SlotTypeContract"
  341. }
  342. ],
  343. "slotName": "In",
  344. "Descriptor": {
  345. "ConnectionType": 1,
  346. "SlotType": 1
  347. }
  348. },
  349. {
  350. "id": {
  351. "m_id": "{C42039F4-FE17-47EF-93E7-52CDB01B5531}"
  352. },
  353. "contracts": [
  354. {
  355. "$type": "SlotTypeContract"
  356. }
  357. ],
  358. "slotName": "Out",
  359. "Descriptor": {
  360. "ConnectionType": 2,
  361. "SlotType": 1
  362. }
  363. }
  364. ],
  365. "Datums": [
  366. {
  367. "isOverloadedStorage": false,
  368. "scriptCanvasType": {
  369. "m_type": 1
  370. },
  371. "isNullPointer": false,
  372. "$type": "EntityId",
  373. "value": {
  374. "id": 4276206253
  375. }
  376. },
  377. {
  378. "isOverloadedStorage": false,
  379. "scriptCanvasType": {
  380. "m_type": 5
  381. },
  382. "isNullPointer": false,
  383. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  384. "value": "",
  385. "label": "Report"
  386. }
  387. ],
  388. "methodType": 2,
  389. "methodName": "Mark Complete",
  390. "className": "Unit Testing",
  391. "resultSlotIDs": [
  392. {}
  393. ],
  394. "prettyClassName": "Unit Testing"
  395. }
  396. }
  397. },
  398. {
  399. "Id": {
  400. "id": 76878954333351
  401. },
  402. "Name": "SC-Node(OrderedSequencer)",
  403. "Components": {
  404. "Component_[11648224367717873569]": {
  405. "$type": "OrderedSequencer",
  406. "Id": 11648224367717873569,
  407. "Slots": [
  408. {
  409. "id": {
  410. "m_id": "{43A2BC61-A37B-448C-BB9A-E71E94AC2CDE}"
  411. },
  412. "contracts": [
  413. {
  414. "$type": "SlotTypeContract"
  415. }
  416. ],
  417. "slotName": "In",
  418. "Descriptor": {
  419. "ConnectionType": 1,
  420. "SlotType": 1
  421. }
  422. },
  423. {
  424. "id": {
  425. "m_id": "{ACCCF165-61C0-4CF8-9E1E-C59CF5132FA5}"
  426. },
  427. "contracts": [
  428. {
  429. "$type": "SlotTypeContract"
  430. }
  431. ],
  432. "slotName": "Out 0",
  433. "toolTip": "Output 0",
  434. "DisplayGroup": {
  435. "Value": 1020632324
  436. },
  437. "Descriptor": {
  438. "ConnectionType": 2,
  439. "SlotType": 1
  440. }
  441. },
  442. {
  443. "id": {
  444. "m_id": "{0CDB188D-D6D6-41DB-9A16-36370D9BF7D0}"
  445. },
  446. "contracts": [
  447. {
  448. "$type": "SlotTypeContract"
  449. }
  450. ],
  451. "slotName": "Out 1",
  452. "DisplayGroup": {
  453. "Value": 1020632324
  454. },
  455. "Descriptor": {
  456. "ConnectionType": 2,
  457. "SlotType": 1
  458. }
  459. }
  460. ]
  461. }
  462. }
  463. },
  464. {
  465. "Id": {
  466. "id": 76866069431463
  467. },
  468. "Name": "SC Node(GetVariable)",
  469. "Components": {
  470. "Component_[12514318624535743338]": {
  471. "$type": "GetVariableNode",
  472. "Id": 12514318624535743338,
  473. "Slots": [
  474. {
  475. "id": {
  476. "m_id": "{085989A2-2735-4554-B894-01842DD0C584}"
  477. },
  478. "contracts": [
  479. {
  480. "$type": "SlotTypeContract"
  481. }
  482. ],
  483. "slotName": "In",
  484. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  485. "Descriptor": {
  486. "ConnectionType": 1,
  487. "SlotType": 1
  488. }
  489. },
  490. {
  491. "id": {
  492. "m_id": "{6D4201AC-6457-44FE-855F-494A1CC6F635}"
  493. },
  494. "contracts": [
  495. {
  496. "$type": "SlotTypeContract"
  497. }
  498. ],
  499. "slotName": "Out",
  500. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  501. "Descriptor": {
  502. "ConnectionType": 2,
  503. "SlotType": 1
  504. }
  505. },
  506. {
  507. "id": {
  508. "m_id": "{30489BF2-BF62-4A48-A654-83A76E27DDE1}"
  509. },
  510. "contracts": [
  511. {
  512. "$type": "SlotTypeContract"
  513. }
  514. ],
  515. "slotName": "Vector3",
  516. "DisplayDataType": {
  517. "m_type": 8
  518. },
  519. "Descriptor": {
  520. "ConnectionType": 2,
  521. "SlotType": 2
  522. },
  523. "DataType": 1
  524. },
  525. {
  526. "id": {
  527. "m_id": "{9D67D53C-12F4-4872-8B2D-7944510CE441}"
  528. },
  529. "contracts": [
  530. {
  531. "$type": "SlotTypeContract"
  532. }
  533. ],
  534. "slotName": "x: Number",
  535. "DisplayDataType": {
  536. "m_type": 3
  537. },
  538. "Descriptor": {
  539. "ConnectionType": 2,
  540. "SlotType": 2
  541. },
  542. "DataType": 1
  543. },
  544. {
  545. "id": {
  546. "m_id": "{C5C6F4BE-86EB-42E9-BFE2-6D9AF987A40F}"
  547. },
  548. "contracts": [
  549. {
  550. "$type": "SlotTypeContract"
  551. }
  552. ],
  553. "slotName": "y: Number",
  554. "DisplayDataType": {
  555. "m_type": 3
  556. },
  557. "Descriptor": {
  558. "ConnectionType": 2,
  559. "SlotType": 2
  560. },
  561. "DataType": 1
  562. },
  563. {
  564. "id": {
  565. "m_id": "{45795C8F-50A9-4813-B109-ADB1AA23845C}"
  566. },
  567. "contracts": [
  568. {
  569. "$type": "SlotTypeContract"
  570. }
  571. ],
  572. "slotName": "z: Number",
  573. "DisplayDataType": {
  574. "m_type": 3
  575. },
  576. "Descriptor": {
  577. "ConnectionType": 2,
  578. "SlotType": 2
  579. },
  580. "DataType": 1
  581. }
  582. ],
  583. "m_variableId": {
  584. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  585. },
  586. "m_variableDataOutSlotId": {
  587. "m_id": "{30489BF2-BF62-4A48-A654-83A76E27DDE1}"
  588. },
  589. "m_propertyAccounts": [
  590. {
  591. "m_propertySlotId": {
  592. "m_id": "{9D67D53C-12F4-4872-8B2D-7944510CE441}"
  593. },
  594. "m_propertyType": {
  595. "m_type": 3
  596. },
  597. "m_propertyName": "x"
  598. },
  599. {
  600. "m_propertySlotId": {
  601. "m_id": "{C5C6F4BE-86EB-42E9-BFE2-6D9AF987A40F}"
  602. },
  603. "m_propertyType": {
  604. "m_type": 3
  605. },
  606. "m_propertyName": "y"
  607. },
  608. {
  609. "m_propertySlotId": {
  610. "m_id": "{45795C8F-50A9-4813-B109-ADB1AA23845C}"
  611. },
  612. "m_propertyType": {
  613. "m_type": 3
  614. },
  615. "m_propertyName": "z"
  616. }
  617. ]
  618. }
  619. }
  620. },
  621. {
  622. "Id": {
  623. "id": 76853184529575
  624. },
  625. "Name": "SC-Node(Format)",
  626. "Components": {
  627. "Component_[13272323850144690880]": {
  628. "$type": "Format",
  629. "Id": 13272323850144690880,
  630. "Slots": [
  631. {
  632. "id": {
  633. "m_id": "{0787E887-2283-44E9-A766-44DB6EE049DF}"
  634. },
  635. "contracts": [
  636. {
  637. "$type": "SlotTypeContract"
  638. }
  639. ],
  640. "slotName": "In",
  641. "toolTip": "Input signal",
  642. "Descriptor": {
  643. "ConnectionType": 1,
  644. "SlotType": 1
  645. }
  646. },
  647. {
  648. "id": {
  649. "m_id": "{D76BC6A3-C927-4882-8EE0-3710AA629CBE}"
  650. },
  651. "contracts": [
  652. {
  653. "$type": "SlotTypeContract"
  654. }
  655. ],
  656. "slotName": "Out",
  657. "Descriptor": {
  658. "ConnectionType": 2,
  659. "SlotType": 1
  660. }
  661. },
  662. {
  663. "id": {
  664. "m_id": "{4932DE6E-2458-43DE-83B0-74A24AC1A13A}"
  665. },
  666. "DynamicTypeOverride": 3,
  667. "contracts": [
  668. {
  669. "$type": "SlotTypeContract"
  670. },
  671. null
  672. ],
  673. "slotName": "Value",
  674. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  675. "DisplayDataType": {
  676. "m_type": 3
  677. },
  678. "DisplayGroup": {
  679. "Value": 1015031923
  680. },
  681. "Descriptor": {
  682. "ConnectionType": 1,
  683. "SlotType": 2
  684. },
  685. "DataType": 1,
  686. "IsReference": true,
  687. "VariableReference": {
  688. "m_id": "{24A824E9-D978-4417-8472-93B73485117A}"
  689. }
  690. },
  691. {
  692. "id": {
  693. "m_id": "{80F2041C-70DF-447A-A140-8533C0D5BA10}"
  694. },
  695. "DynamicTypeOverride": 3,
  696. "contracts": [
  697. {
  698. "$type": "SlotTypeContract"
  699. },
  700. null
  701. ],
  702. "slotName": "Value_1",
  703. "toolTip": "Value which replaces instances of {Value_1} in the resulting string.",
  704. "DisplayDataType": {
  705. "m_type": 3
  706. },
  707. "DisplayGroup": {
  708. "Value": 1015031923
  709. },
  710. "Descriptor": {
  711. "ConnectionType": 1,
  712. "SlotType": 2
  713. },
  714. "DataType": 1,
  715. "IsReference": true,
  716. "VariableReference": {
  717. "m_id": "{FD797D01-AD59-4CC2-9B7B-19A39091A1D4}"
  718. }
  719. },
  720. {
  721. "id": {
  722. "m_id": "{11F32B6F-DC66-4C38-9B2E-68B8FFE8C37A}"
  723. },
  724. "contracts": [
  725. {
  726. "$type": "SlotTypeContract"
  727. }
  728. ],
  729. "slotName": "String",
  730. "toolTip": "The resulting string.",
  731. "DisplayDataType": {
  732. "m_type": 5
  733. },
  734. "DisplayGroup": {
  735. "Value": 1015031923
  736. },
  737. "Descriptor": {
  738. "ConnectionType": 2,
  739. "SlotType": 2
  740. },
  741. "DataType": 1
  742. }
  743. ],
  744. "Datums": [
  745. {
  746. "isOverloadedStorage": false,
  747. "scriptCanvasType": {
  748. "m_type": 3
  749. },
  750. "isNullPointer": false,
  751. "$type": "double",
  752. "value": 0.0,
  753. "label": "Value"
  754. },
  755. {
  756. "isOverloadedStorage": false,
  757. "scriptCanvasType": {
  758. "m_type": 3
  759. },
  760. "isNullPointer": false,
  761. "$type": "double",
  762. "value": 0.0,
  763. "label": "Value_1"
  764. }
  765. ],
  766. "m_format": "Counter_Vector {Value}::Repetitions {Value_1}",
  767. "m_arrayBindingMap": [
  768. {
  769. "Key": 1,
  770. "Value": {
  771. "m_id": "{4932DE6E-2458-43DE-83B0-74A24AC1A13A}"
  772. }
  773. },
  774. {
  775. "Key": 3,
  776. "Value": {
  777. "m_id": "{80F2041C-70DF-447A-A140-8533C0D5BA10}"
  778. }
  779. }
  780. ],
  781. "m_unresolvedString": [
  782. "Counter_Vector ",
  783. {},
  784. "::Repetitions ",
  785. {}
  786. ],
  787. "m_formatSlotMap": {
  788. "Value": {
  789. "m_id": "{4932DE6E-2458-43DE-83B0-74A24AC1A13A}"
  790. },
  791. "Value_1": {
  792. "m_id": "{80F2041C-70DF-447A-A140-8533C0D5BA10}"
  793. }
  794. }
  795. }
  796. }
  797. },
  798. {
  799. "Id": {
  800. "id": 76840299627687
  801. },
  802. "Name": "SC-Node(Format)",
  803. "Components": {
  804. "Component_[13272323850144690880]": {
  805. "$type": "Format",
  806. "Id": 13272323850144690880,
  807. "Slots": [
  808. {
  809. "id": {
  810. "m_id": "{0787E887-2283-44E9-A766-44DB6EE049DF}"
  811. },
  812. "contracts": [
  813. {
  814. "$type": "SlotTypeContract"
  815. }
  816. ],
  817. "slotName": "In",
  818. "toolTip": "Input signal",
  819. "Descriptor": {
  820. "ConnectionType": 1,
  821. "SlotType": 1
  822. }
  823. },
  824. {
  825. "id": {
  826. "m_id": "{D76BC6A3-C927-4882-8EE0-3710AA629CBE}"
  827. },
  828. "contracts": [
  829. {
  830. "$type": "SlotTypeContract"
  831. }
  832. ],
  833. "slotName": "Out",
  834. "Descriptor": {
  835. "ConnectionType": 2,
  836. "SlotType": 1
  837. }
  838. },
  839. {
  840. "id": {
  841. "m_id": "{4932DE6E-2458-43DE-83B0-74A24AC1A13A}"
  842. },
  843. "DynamicTypeOverride": 3,
  844. "contracts": [
  845. {
  846. "$type": "SlotTypeContract"
  847. },
  848. null
  849. ],
  850. "slotName": "Value",
  851. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  852. "DisplayDataType": {
  853. "m_type": 3
  854. },
  855. "DisplayGroup": {
  856. "Value": 1015031923
  857. },
  858. "Descriptor": {
  859. "ConnectionType": 1,
  860. "SlotType": 2
  861. },
  862. "DataType": 1,
  863. "IsReference": true,
  864. "VariableReference": {
  865. "m_id": "{265E1DFF-2502-4B9A-B7E6-C9F02863758D}"
  866. }
  867. },
  868. {
  869. "id": {
  870. "m_id": "{80F2041C-70DF-447A-A140-8533C0D5BA10}"
  871. },
  872. "DynamicTypeOverride": 3,
  873. "contracts": [
  874. {
  875. "$type": "SlotTypeContract"
  876. },
  877. null
  878. ],
  879. "slotName": "Value_1",
  880. "toolTip": "Value which replaces instances of {Value_1} in the resulting string.",
  881. "DisplayDataType": {
  882. "m_type": 3
  883. },
  884. "DisplayGroup": {
  885. "Value": 1015031923
  886. },
  887. "Descriptor": {
  888. "ConnectionType": 1,
  889. "SlotType": 2
  890. },
  891. "DataType": 1,
  892. "IsReference": true,
  893. "VariableReference": {
  894. "m_id": "{FD797D01-AD59-4CC2-9B7B-19A39091A1D4}"
  895. }
  896. },
  897. {
  898. "id": {
  899. "m_id": "{11F32B6F-DC66-4C38-9B2E-68B8FFE8C37A}"
  900. },
  901. "contracts": [
  902. {
  903. "$type": "SlotTypeContract"
  904. }
  905. ],
  906. "slotName": "String",
  907. "toolTip": "The resulting string.",
  908. "DisplayDataType": {
  909. "m_type": 5
  910. },
  911. "DisplayGroup": {
  912. "Value": 1015031923
  913. },
  914. "Descriptor": {
  915. "ConnectionType": 2,
  916. "SlotType": 2
  917. },
  918. "DataType": 1
  919. }
  920. ],
  921. "Datums": [
  922. {
  923. "isOverloadedStorage": false,
  924. "scriptCanvasType": {
  925. "m_type": 3
  926. },
  927. "isNullPointer": false,
  928. "$type": "double",
  929. "value": 0.0,
  930. "label": "Value"
  931. },
  932. {
  933. "isOverloadedStorage": false,
  934. "scriptCanvasType": {
  935. "m_type": 3
  936. },
  937. "isNullPointer": false,
  938. "$type": "double",
  939. "value": 0.0,
  940. "label": "Value_1"
  941. }
  942. ],
  943. "m_format": "Counter {Value}::Repetitions {Value_1}",
  944. "m_arrayBindingMap": [
  945. {
  946. "Key": 1,
  947. "Value": {
  948. "m_id": "{4932DE6E-2458-43DE-83B0-74A24AC1A13A}"
  949. }
  950. },
  951. {
  952. "Key": 3,
  953. "Value": {
  954. "m_id": "{80F2041C-70DF-447A-A140-8533C0D5BA10}"
  955. }
  956. }
  957. ],
  958. "m_unresolvedString": [
  959. "Counter ",
  960. {},
  961. "::Repetitions ",
  962. {}
  963. ],
  964. "m_formatSlotMap": {
  965. "Value": {
  966. "m_id": "{4932DE6E-2458-43DE-83B0-74A24AC1A13A}"
  967. },
  968. "Value_1": {
  969. "m_id": "{80F2041C-70DF-447A-A140-8533C0D5BA10}"
  970. }
  971. }
  972. }
  973. }
  974. },
  975. {
  976. "Id": {
  977. "id": 76921904006311
  978. },
  979. "Name": "SC Node(SetVariable)",
  980. "Components": {
  981. "Component_[14187953262591149204]": {
  982. "$type": "SetVariableNode",
  983. "Id": 14187953262591149204,
  984. "Slots": [
  985. {
  986. "id": {
  987. "m_id": "{77899A62-6D62-4139-BEE9-6A06179799DE}"
  988. },
  989. "contracts": [
  990. {
  991. "$type": "SlotTypeContract"
  992. }
  993. ],
  994. "slotName": "In",
  995. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  996. "Descriptor": {
  997. "ConnectionType": 1,
  998. "SlotType": 1
  999. }
  1000. },
  1001. {
  1002. "id": {
  1003. "m_id": "{ED48A10E-4051-4A82-9295-0C642DEE75CF}"
  1004. },
  1005. "contracts": [
  1006. {
  1007. "$type": "SlotTypeContract"
  1008. }
  1009. ],
  1010. "slotName": "Out",
  1011. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1012. "Descriptor": {
  1013. "ConnectionType": 2,
  1014. "SlotType": 1
  1015. }
  1016. },
  1017. {
  1018. "id": {
  1019. "m_id": "{4BCDC94D-0B6B-4EDA-B278-01BAADFFCD60}"
  1020. },
  1021. "contracts": [
  1022. {
  1023. "$type": "SlotTypeContract"
  1024. },
  1025. null
  1026. ],
  1027. "slotName": "Number",
  1028. "Descriptor": {
  1029. "ConnectionType": 1,
  1030. "SlotType": 2
  1031. },
  1032. "DataType": 1,
  1033. "IsReference": true,
  1034. "VariableReference": {
  1035. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  1036. }
  1037. },
  1038. {
  1039. "id": {
  1040. "m_id": "{B44BBEF8-648A-42E6-86A0-CD2D304FC4EB}"
  1041. },
  1042. "contracts": [
  1043. {
  1044. "$type": "SlotTypeContract"
  1045. }
  1046. ],
  1047. "slotName": "Number",
  1048. "DisplayDataType": {
  1049. "m_type": 3
  1050. },
  1051. "Descriptor": {
  1052. "ConnectionType": 2,
  1053. "SlotType": 2
  1054. },
  1055. "DataType": 1
  1056. }
  1057. ],
  1058. "Datums": [
  1059. {
  1060. "isOverloadedStorage": false,
  1061. "scriptCanvasType": {
  1062. "m_type": 3
  1063. },
  1064. "isNullPointer": false,
  1065. "$type": "double",
  1066. "value": 0.0,
  1067. "label": "Number"
  1068. }
  1069. ],
  1070. "m_variableId": {
  1071. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  1072. },
  1073. "m_variableDataInSlotId": {
  1074. "m_id": "{4BCDC94D-0B6B-4EDA-B278-01BAADFFCD60}"
  1075. },
  1076. "m_variableDataOutSlotId": {
  1077. "m_id": "{B44BBEF8-648A-42E6-86A0-CD2D304FC4EB}"
  1078. }
  1079. }
  1080. }
  1081. },
  1082. {
  1083. "Id": {
  1084. "id": 76909019104423
  1085. },
  1086. "Name": "SC-Node(OperatorAdd)",
  1087. "Components": {
  1088. "Component_[14203913327738808763]": {
  1089. "$type": "OperatorAdd",
  1090. "Id": 14203913327738808763,
  1091. "Slots": [
  1092. {
  1093. "id": {
  1094. "m_id": "{E7A5DA39-3418-4C4A-B0F0-C9CC1F1B67E4}"
  1095. },
  1096. "contracts": [
  1097. {
  1098. "$type": "SlotTypeContract"
  1099. }
  1100. ],
  1101. "slotName": "In",
  1102. "Descriptor": {
  1103. "ConnectionType": 1,
  1104. "SlotType": 1
  1105. }
  1106. },
  1107. {
  1108. "id": {
  1109. "m_id": "{D25EC972-BEA5-4120-8157-4B60AF687C60}"
  1110. },
  1111. "contracts": [
  1112. {
  1113. "$type": "SlotTypeContract"
  1114. }
  1115. ],
  1116. "slotName": "Out",
  1117. "Descriptor": {
  1118. "ConnectionType": 2,
  1119. "SlotType": 1
  1120. }
  1121. },
  1122. {
  1123. "id": {
  1124. "m_id": "{F6AA813C-3168-49FC-9AB8-A820E5E9456B}"
  1125. },
  1126. "DynamicTypeOverride": 3,
  1127. "contracts": [
  1128. {
  1129. "$type": "SlotTypeContract"
  1130. },
  1131. null,
  1132. {
  1133. "$type": "MathOperatorContract",
  1134. "NativeTypes": [
  1135. {
  1136. "m_type": 3
  1137. },
  1138. {
  1139. "m_type": 6
  1140. },
  1141. {
  1142. "m_type": 8
  1143. },
  1144. {
  1145. "m_type": 9
  1146. },
  1147. {
  1148. "m_type": 10
  1149. },
  1150. {
  1151. "m_type": 11
  1152. },
  1153. {
  1154. "m_type": 12
  1155. },
  1156. {
  1157. "m_type": 14
  1158. },
  1159. {
  1160. "m_type": 15
  1161. }
  1162. ]
  1163. }
  1164. ],
  1165. "slotName": "Number",
  1166. "toolTip": "An operand to use in performing the specified Operation",
  1167. "DisplayDataType": {
  1168. "m_type": 3
  1169. },
  1170. "DisplayGroup": {
  1171. "Value": 1114760223
  1172. },
  1173. "Descriptor": {
  1174. "ConnectionType": 1,
  1175. "SlotType": 2
  1176. },
  1177. "DynamicGroup": {
  1178. "Value": 1114760223
  1179. },
  1180. "DataType": 1,
  1181. "IsReference": true,
  1182. "VariableReference": {
  1183. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  1184. }
  1185. },
  1186. {
  1187. "id": {
  1188. "m_id": "{8FDE54DC-DA75-4915-AF64-233B5A056782}"
  1189. },
  1190. "DynamicTypeOverride": 3,
  1191. "contracts": [
  1192. {
  1193. "$type": "SlotTypeContract"
  1194. },
  1195. null,
  1196. {
  1197. "$type": "MathOperatorContract",
  1198. "NativeTypes": [
  1199. {
  1200. "m_type": 3
  1201. },
  1202. {
  1203. "m_type": 6
  1204. },
  1205. {
  1206. "m_type": 8
  1207. },
  1208. {
  1209. "m_type": 9
  1210. },
  1211. {
  1212. "m_type": 10
  1213. },
  1214. {
  1215. "m_type": 11
  1216. },
  1217. {
  1218. "m_type": 12
  1219. },
  1220. {
  1221. "m_type": 14
  1222. },
  1223. {
  1224. "m_type": 15
  1225. }
  1226. ]
  1227. }
  1228. ],
  1229. "slotName": "Number",
  1230. "toolTip": "An operand to use in performing the specified Operation",
  1231. "DisplayDataType": {
  1232. "m_type": 3
  1233. },
  1234. "DisplayGroup": {
  1235. "Value": 1114760223
  1236. },
  1237. "Descriptor": {
  1238. "ConnectionType": 1,
  1239. "SlotType": 2
  1240. },
  1241. "DynamicGroup": {
  1242. "Value": 1114760223
  1243. },
  1244. "DataType": 1
  1245. },
  1246. {
  1247. "id": {
  1248. "m_id": "{B2028DF2-B907-44FB-96B1-832E212FA8C2}"
  1249. },
  1250. "DynamicTypeOverride": 3,
  1251. "contracts": [
  1252. {
  1253. "$type": "SlotTypeContract"
  1254. },
  1255. {
  1256. "$type": "MathOperatorContract",
  1257. "NativeTypes": [
  1258. {
  1259. "m_type": 3
  1260. },
  1261. {
  1262. "m_type": 6
  1263. },
  1264. {
  1265. "m_type": 8
  1266. },
  1267. {
  1268. "m_type": 9
  1269. },
  1270. {
  1271. "m_type": 10
  1272. },
  1273. {
  1274. "m_type": 11
  1275. },
  1276. {
  1277. "m_type": 12
  1278. },
  1279. {
  1280. "m_type": 14
  1281. },
  1282. {
  1283. "m_type": 15
  1284. }
  1285. ]
  1286. }
  1287. ],
  1288. "slotName": "Result",
  1289. "toolTip": "The result of the specified operation",
  1290. "DisplayDataType": {
  1291. "m_type": 3
  1292. },
  1293. "DisplayGroup": {
  1294. "Value": 1114760223
  1295. },
  1296. "Descriptor": {
  1297. "ConnectionType": 2,
  1298. "SlotType": 2
  1299. },
  1300. "DynamicGroup": {
  1301. "Value": 1114760223
  1302. },
  1303. "DataType": 1,
  1304. "IsReference": true,
  1305. "VariableReference": {
  1306. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  1307. }
  1308. }
  1309. ],
  1310. "Datums": [
  1311. {},
  1312. {
  1313. "isOverloadedStorage": false,
  1314. "scriptCanvasType": {
  1315. "m_type": 3
  1316. },
  1317. "isNullPointer": false,
  1318. "$type": "double",
  1319. "value": 1.0,
  1320. "label": "Number"
  1321. }
  1322. ]
  1323. }
  1324. }
  1325. },
  1326. {
  1327. "Id": {
  1328. "id": 76896134202535
  1329. },
  1330. "Name": "SC-Node(OperatorAdd)",
  1331. "Components": {
  1332. "Component_[14203913327738808763]": {
  1333. "$type": "OperatorAdd",
  1334. "Id": 14203913327738808763,
  1335. "Slots": [
  1336. {
  1337. "id": {
  1338. "m_id": "{E7A5DA39-3418-4C4A-B0F0-C9CC1F1B67E4}"
  1339. },
  1340. "contracts": [
  1341. {
  1342. "$type": "SlotTypeContract"
  1343. }
  1344. ],
  1345. "slotName": "In",
  1346. "Descriptor": {
  1347. "ConnectionType": 1,
  1348. "SlotType": 1
  1349. }
  1350. },
  1351. {
  1352. "id": {
  1353. "m_id": "{D25EC972-BEA5-4120-8157-4B60AF687C60}"
  1354. },
  1355. "contracts": [
  1356. {
  1357. "$type": "SlotTypeContract"
  1358. }
  1359. ],
  1360. "slotName": "Out",
  1361. "Descriptor": {
  1362. "ConnectionType": 2,
  1363. "SlotType": 1
  1364. }
  1365. },
  1366. {
  1367. "id": {
  1368. "m_id": "{F6AA813C-3168-49FC-9AB8-A820E5E9456B}"
  1369. },
  1370. "DynamicTypeOverride": 3,
  1371. "contracts": [
  1372. {
  1373. "$type": "SlotTypeContract"
  1374. },
  1375. null,
  1376. {
  1377. "$type": "MathOperatorContract",
  1378. "NativeTypes": [
  1379. {
  1380. "m_type": 3
  1381. },
  1382. {
  1383. "m_type": 6
  1384. },
  1385. {
  1386. "m_type": 8
  1387. },
  1388. {
  1389. "m_type": 9
  1390. },
  1391. {
  1392. "m_type": 10
  1393. },
  1394. {
  1395. "m_type": 11
  1396. },
  1397. {
  1398. "m_type": 12
  1399. },
  1400. {
  1401. "m_type": 14
  1402. },
  1403. {
  1404. "m_type": 15
  1405. }
  1406. ]
  1407. }
  1408. ],
  1409. "slotName": "Vector3",
  1410. "toolTip": "An operand to use in performing the specified Operation",
  1411. "DisplayDataType": {
  1412. "m_type": 8
  1413. },
  1414. "DisplayGroup": {
  1415. "Value": 1114760223
  1416. },
  1417. "Descriptor": {
  1418. "ConnectionType": 1,
  1419. "SlotType": 2
  1420. },
  1421. "DynamicGroup": {
  1422. "Value": 1114760223
  1423. },
  1424. "DataType": 1,
  1425. "IsReference": true,
  1426. "VariableReference": {
  1427. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  1428. }
  1429. },
  1430. {
  1431. "id": {
  1432. "m_id": "{8FDE54DC-DA75-4915-AF64-233B5A056782}"
  1433. },
  1434. "DynamicTypeOverride": 3,
  1435. "contracts": [
  1436. {
  1437. "$type": "SlotTypeContract"
  1438. },
  1439. null,
  1440. {
  1441. "$type": "MathOperatorContract",
  1442. "NativeTypes": [
  1443. {
  1444. "m_type": 3
  1445. },
  1446. {
  1447. "m_type": 6
  1448. },
  1449. {
  1450. "m_type": 8
  1451. },
  1452. {
  1453. "m_type": 9
  1454. },
  1455. {
  1456. "m_type": 10
  1457. },
  1458. {
  1459. "m_type": 11
  1460. },
  1461. {
  1462. "m_type": 12
  1463. },
  1464. {
  1465. "m_type": 14
  1466. },
  1467. {
  1468. "m_type": 15
  1469. }
  1470. ]
  1471. }
  1472. ],
  1473. "slotName": "Vector3",
  1474. "toolTip": "An operand to use in performing the specified Operation",
  1475. "DisplayDataType": {
  1476. "m_type": 8
  1477. },
  1478. "DisplayGroup": {
  1479. "Value": 1114760223
  1480. },
  1481. "Descriptor": {
  1482. "ConnectionType": 1,
  1483. "SlotType": 2
  1484. },
  1485. "DynamicGroup": {
  1486. "Value": 1114760223
  1487. },
  1488. "DataType": 1
  1489. },
  1490. {
  1491. "id": {
  1492. "m_id": "{B2028DF2-B907-44FB-96B1-832E212FA8C2}"
  1493. },
  1494. "DynamicTypeOverride": 3,
  1495. "contracts": [
  1496. {
  1497. "$type": "SlotTypeContract"
  1498. },
  1499. {
  1500. "$type": "MathOperatorContract",
  1501. "NativeTypes": [
  1502. {
  1503. "m_type": 3
  1504. },
  1505. {
  1506. "m_type": 6
  1507. },
  1508. {
  1509. "m_type": 8
  1510. },
  1511. {
  1512. "m_type": 9
  1513. },
  1514. {
  1515. "m_type": 10
  1516. },
  1517. {
  1518. "m_type": 11
  1519. },
  1520. {
  1521. "m_type": 12
  1522. },
  1523. {
  1524. "m_type": 14
  1525. },
  1526. {
  1527. "m_type": 15
  1528. }
  1529. ]
  1530. }
  1531. ],
  1532. "slotName": "Result",
  1533. "toolTip": "The result of the specified operation",
  1534. "DisplayDataType": {
  1535. "m_type": 8
  1536. },
  1537. "DisplayGroup": {
  1538. "Value": 1114760223
  1539. },
  1540. "Descriptor": {
  1541. "ConnectionType": 2,
  1542. "SlotType": 2
  1543. },
  1544. "DynamicGroup": {
  1545. "Value": 1114760223
  1546. },
  1547. "DataType": 1,
  1548. "IsReference": true,
  1549. "VariableReference": {
  1550. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  1551. }
  1552. }
  1553. ],
  1554. "Datums": [
  1555. {
  1556. "isOverloadedStorage": false,
  1557. "scriptCanvasType": {
  1558. "m_type": 8
  1559. },
  1560. "isNullPointer": false,
  1561. "$type": "Vector3",
  1562. "value": [
  1563. 0.0,
  1564. 0.0,
  1565. 0.0
  1566. ],
  1567. "label": "Vector3"
  1568. },
  1569. {
  1570. "isOverloadedStorage": false,
  1571. "scriptCanvasType": {
  1572. "m_type": 8
  1573. },
  1574. "isNullPointer": false,
  1575. "$type": "Vector3",
  1576. "value": [
  1577. 1.0,
  1578. 0.0,
  1579. 0.0
  1580. ],
  1581. "label": "Vector3"
  1582. }
  1583. ]
  1584. }
  1585. }
  1586. },
  1587. {
  1588. "Id": {
  1589. "id": 76883249300647
  1590. },
  1591. "Name": "SC Node(SetVariable)",
  1592. "Components": {
  1593. "Component_[14575781175688075831]": {
  1594. "$type": "SetVariableNode",
  1595. "Id": 14575781175688075831,
  1596. "Slots": [
  1597. {
  1598. "id": {
  1599. "m_id": "{727DEC9E-D004-45E5-BE5C-B0D396CA16AD}"
  1600. },
  1601. "contracts": [
  1602. {
  1603. "$type": "SlotTypeContract"
  1604. }
  1605. ],
  1606. "slotName": "In",
  1607. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  1608. "Descriptor": {
  1609. "ConnectionType": 1,
  1610. "SlotType": 1
  1611. }
  1612. },
  1613. {
  1614. "id": {
  1615. "m_id": "{4D180E28-78D1-455C-B90E-4FC0E0C28FF9}"
  1616. },
  1617. "contracts": [
  1618. {
  1619. "$type": "SlotTypeContract"
  1620. }
  1621. ],
  1622. "slotName": "Out",
  1623. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1624. "Descriptor": {
  1625. "ConnectionType": 2,
  1626. "SlotType": 1
  1627. }
  1628. },
  1629. {
  1630. "id": {
  1631. "m_id": "{7C5D93B8-37F2-4F31-8E66-36B1513BAF7A}"
  1632. },
  1633. "contracts": [
  1634. {
  1635. "$type": "SlotTypeContract"
  1636. },
  1637. null
  1638. ],
  1639. "slotName": "Vector3",
  1640. "Descriptor": {
  1641. "ConnectionType": 1,
  1642. "SlotType": 2
  1643. },
  1644. "DataType": 1
  1645. },
  1646. {
  1647. "id": {
  1648. "m_id": "{B6BAF75A-1C30-4AB0-984B-E27DC9729237}"
  1649. },
  1650. "contracts": [
  1651. {
  1652. "$type": "SlotTypeContract"
  1653. }
  1654. ],
  1655. "slotName": "Vector3",
  1656. "DisplayDataType": {
  1657. "m_type": 8
  1658. },
  1659. "Descriptor": {
  1660. "ConnectionType": 2,
  1661. "SlotType": 2
  1662. },
  1663. "DataType": 1
  1664. },
  1665. {
  1666. "id": {
  1667. "m_id": "{B1C40AA8-60CF-44AE-AAF3-3C0AE5603676}"
  1668. },
  1669. "contracts": [
  1670. {
  1671. "$type": "SlotTypeContract"
  1672. }
  1673. ],
  1674. "slotName": "x: Number",
  1675. "DisplayDataType": {
  1676. "m_type": 3
  1677. },
  1678. "Descriptor": {
  1679. "ConnectionType": 2,
  1680. "SlotType": 2
  1681. },
  1682. "DataType": 1
  1683. },
  1684. {
  1685. "id": {
  1686. "m_id": "{0E1773DC-DB6B-4140-BF98-9DBA64C71F49}"
  1687. },
  1688. "contracts": [
  1689. {
  1690. "$type": "SlotTypeContract"
  1691. }
  1692. ],
  1693. "slotName": "y: Number",
  1694. "DisplayDataType": {
  1695. "m_type": 3
  1696. },
  1697. "Descriptor": {
  1698. "ConnectionType": 2,
  1699. "SlotType": 2
  1700. },
  1701. "DataType": 1
  1702. },
  1703. {
  1704. "id": {
  1705. "m_id": "{70A6879D-2065-4902-8A80-EAAC4A01876D}"
  1706. },
  1707. "contracts": [
  1708. {
  1709. "$type": "SlotTypeContract"
  1710. }
  1711. ],
  1712. "slotName": "z: Number",
  1713. "DisplayDataType": {
  1714. "m_type": 3
  1715. },
  1716. "Descriptor": {
  1717. "ConnectionType": 2,
  1718. "SlotType": 2
  1719. },
  1720. "DataType": 1
  1721. }
  1722. ],
  1723. "Datums": [
  1724. {
  1725. "isOverloadedStorage": false,
  1726. "scriptCanvasType": {
  1727. "m_type": 8
  1728. },
  1729. "isNullPointer": false,
  1730. "$type": "Vector3",
  1731. "value": [
  1732. 0.0,
  1733. 0.0,
  1734. 0.0
  1735. ],
  1736. "label": "Vector3"
  1737. }
  1738. ],
  1739. "m_variableId": {
  1740. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  1741. },
  1742. "m_variableDataInSlotId": {
  1743. "m_id": "{7C5D93B8-37F2-4F31-8E66-36B1513BAF7A}"
  1744. },
  1745. "m_variableDataOutSlotId": {
  1746. "m_id": "{B6BAF75A-1C30-4AB0-984B-E27DC9729237}"
  1747. },
  1748. "m_propertyAccounts": [
  1749. {
  1750. "m_propertySlotId": {
  1751. "m_id": "{B1C40AA8-60CF-44AE-AAF3-3C0AE5603676}"
  1752. },
  1753. "m_propertyType": {
  1754. "m_type": 3
  1755. },
  1756. "m_propertyName": "x"
  1757. },
  1758. {
  1759. "m_propertySlotId": {
  1760. "m_id": "{0E1773DC-DB6B-4140-BF98-9DBA64C71F49}"
  1761. },
  1762. "m_propertyType": {
  1763. "m_type": 3
  1764. },
  1765. "m_propertyName": "y"
  1766. },
  1767. {
  1768. "m_propertySlotId": {
  1769. "m_id": "{70A6879D-2065-4902-8A80-EAAC4A01876D}"
  1770. },
  1771. "m_propertyType": {
  1772. "m_type": 3
  1773. },
  1774. "m_propertyName": "z"
  1775. }
  1776. ]
  1777. }
  1778. }
  1779. },
  1780. {
  1781. "Id": {
  1782. "id": 76870364398759
  1783. },
  1784. "Name": "SC-Node(Start)",
  1785. "Components": {
  1786. "Component_[15146682708541519720]": {
  1787. "$type": "Start",
  1788. "Id": 15146682708541519720,
  1789. "Slots": [
  1790. {
  1791. "id": {
  1792. "m_id": "{C9B94A20-FD66-48BB-99D8-F1FE7115C18C}"
  1793. },
  1794. "contracts": [
  1795. {
  1796. "$type": "SlotTypeContract"
  1797. }
  1798. ],
  1799. "slotName": "Out",
  1800. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1801. "Descriptor": {
  1802. "ConnectionType": 2,
  1803. "SlotType": 1
  1804. }
  1805. }
  1806. ]
  1807. }
  1808. }
  1809. },
  1810. {
  1811. "Id": {
  1812. "id": 76857479496871
  1813. },
  1814. "Name": "SC Node(SetVariable)",
  1815. "Components": {
  1816. "Component_[165419690617819629]": {
  1817. "$type": "SetVariableNode",
  1818. "Id": 165419690617819629,
  1819. "Slots": [
  1820. {
  1821. "id": {
  1822. "m_id": "{D9F933F3-D205-4379-A9A6-64C24597C7EF}"
  1823. },
  1824. "contracts": [
  1825. {
  1826. "$type": "SlotTypeContract"
  1827. }
  1828. ],
  1829. "slotName": "In",
  1830. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  1831. "Descriptor": {
  1832. "ConnectionType": 1,
  1833. "SlotType": 1
  1834. }
  1835. },
  1836. {
  1837. "id": {
  1838. "m_id": "{F10E49EA-B4E3-41A7-BE8A-F16B7B09BEA4}"
  1839. },
  1840. "contracts": [
  1841. {
  1842. "$type": "SlotTypeContract"
  1843. }
  1844. ],
  1845. "slotName": "Out",
  1846. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1847. "Descriptor": {
  1848. "ConnectionType": 2,
  1849. "SlotType": 1
  1850. }
  1851. },
  1852. {
  1853. "id": {
  1854. "m_id": "{10229DA5-278D-4BBF-8DEE-CB22EB6F6D10}"
  1855. },
  1856. "contracts": [
  1857. {
  1858. "$type": "SlotTypeContract"
  1859. },
  1860. null
  1861. ],
  1862. "slotName": "Number",
  1863. "Descriptor": {
  1864. "ConnectionType": 1,
  1865. "SlotType": 2
  1866. },
  1867. "DataType": 1
  1868. },
  1869. {
  1870. "id": {
  1871. "m_id": "{ADABB579-E2DD-4401-8689-B48450DE851B}"
  1872. },
  1873. "contracts": [
  1874. {
  1875. "$type": "SlotTypeContract"
  1876. }
  1877. ],
  1878. "slotName": "Number",
  1879. "DisplayDataType": {
  1880. "m_type": 3
  1881. },
  1882. "Descriptor": {
  1883. "ConnectionType": 2,
  1884. "SlotType": 2
  1885. },
  1886. "DataType": 1
  1887. }
  1888. ],
  1889. "Datums": [
  1890. {
  1891. "isOverloadedStorage": false,
  1892. "scriptCanvasType": {
  1893. "m_type": 3
  1894. },
  1895. "isNullPointer": false,
  1896. "$type": "double",
  1897. "value": 0.0,
  1898. "label": "Number"
  1899. }
  1900. ],
  1901. "m_variableId": {
  1902. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  1903. },
  1904. "m_variableDataInSlotId": {
  1905. "m_id": "{10229DA5-278D-4BBF-8DEE-CB22EB6F6D10}"
  1906. },
  1907. "m_variableDataOutSlotId": {
  1908. "m_id": "{ADABB579-E2DD-4401-8689-B48450DE851B}"
  1909. }
  1910. }
  1911. }
  1912. },
  1913. {
  1914. "Id": {
  1915. "id": 76844594594983
  1916. },
  1917. "Name": "SC Node(GetVariable)",
  1918. "Components": {
  1919. "Component_[204968519052040575]": {
  1920. "$type": "GetVariableNode",
  1921. "Id": 204968519052040575,
  1922. "Slots": [
  1923. {
  1924. "id": {
  1925. "m_id": "{1909CFB4-F600-4C89-B114-032D320E2E51}"
  1926. },
  1927. "contracts": [
  1928. {
  1929. "$type": "SlotTypeContract"
  1930. }
  1931. ],
  1932. "slotName": "In",
  1933. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1934. "Descriptor": {
  1935. "ConnectionType": 1,
  1936. "SlotType": 1
  1937. }
  1938. },
  1939. {
  1940. "id": {
  1941. "m_id": "{6BE08411-46D3-45C5-904A-7A611AAC54BB}"
  1942. },
  1943. "contracts": [
  1944. {
  1945. "$type": "SlotTypeContract"
  1946. }
  1947. ],
  1948. "slotName": "Out",
  1949. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1950. "Descriptor": {
  1951. "ConnectionType": 2,
  1952. "SlotType": 1
  1953. }
  1954. },
  1955. {
  1956. "id": {
  1957. "m_id": "{A5E87EEE-7E49-4E3D-925D-6E63159CBA64}"
  1958. },
  1959. "contracts": [
  1960. {
  1961. "$type": "SlotTypeContract"
  1962. }
  1963. ],
  1964. "slotName": "Vector3",
  1965. "DisplayDataType": {
  1966. "m_type": 8
  1967. },
  1968. "Descriptor": {
  1969. "ConnectionType": 2,
  1970. "SlotType": 2
  1971. },
  1972. "DataType": 1,
  1973. "IsReference": true,
  1974. "VariableReference": {
  1975. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  1976. }
  1977. },
  1978. {
  1979. "id": {
  1980. "m_id": "{E9083153-1FB6-4BEC-B7FA-DF542C52D4FB}"
  1981. },
  1982. "contracts": [
  1983. {
  1984. "$type": "SlotTypeContract"
  1985. }
  1986. ],
  1987. "slotName": "x: Number",
  1988. "DisplayDataType": {
  1989. "m_type": 3
  1990. },
  1991. "Descriptor": {
  1992. "ConnectionType": 2,
  1993. "SlotType": 2
  1994. },
  1995. "DataType": 1
  1996. },
  1997. {
  1998. "id": {
  1999. "m_id": "{6F6C2DA7-7F89-4DE6-ABBE-2E0646ED9782}"
  2000. },
  2001. "contracts": [
  2002. {
  2003. "$type": "SlotTypeContract"
  2004. }
  2005. ],
  2006. "slotName": "y: Number",
  2007. "DisplayDataType": {
  2008. "m_type": 3
  2009. },
  2010. "Descriptor": {
  2011. "ConnectionType": 2,
  2012. "SlotType": 2
  2013. },
  2014. "DataType": 1
  2015. },
  2016. {
  2017. "id": {
  2018. "m_id": "{3B02AD7C-647A-4E6D-B79E-CA08E1C605EB}"
  2019. },
  2020. "contracts": [
  2021. {
  2022. "$type": "SlotTypeContract"
  2023. }
  2024. ],
  2025. "slotName": "z: Number",
  2026. "DisplayDataType": {
  2027. "m_type": 3
  2028. },
  2029. "Descriptor": {
  2030. "ConnectionType": 2,
  2031. "SlotType": 2
  2032. },
  2033. "DataType": 1
  2034. }
  2035. ],
  2036. "m_variableId": {
  2037. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  2038. },
  2039. "m_variableDataOutSlotId": {
  2040. "m_id": "{A5E87EEE-7E49-4E3D-925D-6E63159CBA64}"
  2041. },
  2042. "m_propertyAccounts": [
  2043. {
  2044. "m_propertySlotId": {
  2045. "m_id": "{E9083153-1FB6-4BEC-B7FA-DF542C52D4FB}"
  2046. },
  2047. "m_propertyType": {
  2048. "m_type": 3
  2049. },
  2050. "m_propertyName": "x"
  2051. },
  2052. {
  2053. "m_propertySlotId": {
  2054. "m_id": "{6F6C2DA7-7F89-4DE6-ABBE-2E0646ED9782}"
  2055. },
  2056. "m_propertyType": {
  2057. "m_type": 3
  2058. },
  2059. "m_propertyName": "y"
  2060. },
  2061. {
  2062. "m_propertySlotId": {
  2063. "m_id": "{3B02AD7C-647A-4E6D-B79E-CA08E1C605EB}"
  2064. },
  2065. "m_propertyType": {
  2066. "m_type": 3
  2067. },
  2068. "m_propertyName": "z"
  2069. }
  2070. ]
  2071. }
  2072. }
  2073. },
  2074. {
  2075. "Id": {
  2076. "id": 76926198973607
  2077. },
  2078. "Name": "SC-Node(OperatorAdd)",
  2079. "Components": {
  2080. "Component_[2612554955794730323]": {
  2081. "$type": "OperatorAdd",
  2082. "Id": 2612554955794730323,
  2083. "Slots": [
  2084. {
  2085. "id": {
  2086. "m_id": "{D0041CBF-37EC-46CA-9938-B105F63A126E}"
  2087. },
  2088. "contracts": [
  2089. {
  2090. "$type": "SlotTypeContract"
  2091. }
  2092. ],
  2093. "slotName": "In",
  2094. "Descriptor": {
  2095. "ConnectionType": 1,
  2096. "SlotType": 1
  2097. }
  2098. },
  2099. {
  2100. "id": {
  2101. "m_id": "{251244D0-F1A3-4B01-B039-197615CC6396}"
  2102. },
  2103. "contracts": [
  2104. {
  2105. "$type": "SlotTypeContract"
  2106. }
  2107. ],
  2108. "slotName": "Out",
  2109. "Descriptor": {
  2110. "ConnectionType": 2,
  2111. "SlotType": 1
  2112. }
  2113. },
  2114. {
  2115. "id": {
  2116. "m_id": "{97EED13E-CEC4-420C-A1C0-DAA9E41DDBC0}"
  2117. },
  2118. "DynamicTypeOverride": 3,
  2119. "contracts": [
  2120. {
  2121. "$type": "SlotTypeContract"
  2122. },
  2123. null,
  2124. {
  2125. "$type": "MathOperatorContract",
  2126. "NativeTypes": [
  2127. {
  2128. "m_type": 3
  2129. },
  2130. {
  2131. "m_type": 6
  2132. },
  2133. {
  2134. "m_type": 8
  2135. },
  2136. {
  2137. "m_type": 9
  2138. },
  2139. {
  2140. "m_type": 10
  2141. },
  2142. {
  2143. "m_type": 11
  2144. },
  2145. {
  2146. "m_type": 12
  2147. },
  2148. {
  2149. "m_type": 14
  2150. },
  2151. {
  2152. "m_type": 15
  2153. }
  2154. ]
  2155. }
  2156. ],
  2157. "slotName": "Number",
  2158. "toolTip": "An operand to use in performing the specified Operation",
  2159. "DisplayDataType": {
  2160. "m_type": 3
  2161. },
  2162. "DisplayGroup": {
  2163. "Value": 1114760223
  2164. },
  2165. "Descriptor": {
  2166. "ConnectionType": 1,
  2167. "SlotType": 2
  2168. },
  2169. "DynamicGroup": {
  2170. "Value": 1114760223
  2171. },
  2172. "DataType": 1,
  2173. "IsReference": true,
  2174. "VariableReference": {
  2175. "m_id": "{24A824E9-D978-4417-8472-93B73485117A}"
  2176. }
  2177. },
  2178. {
  2179. "id": {
  2180. "m_id": "{53DCF983-1529-4BA9-B23D-4CA9C1A97845}"
  2181. },
  2182. "DynamicTypeOverride": 3,
  2183. "contracts": [
  2184. {
  2185. "$type": "SlotTypeContract"
  2186. },
  2187. null,
  2188. {
  2189. "$type": "MathOperatorContract",
  2190. "NativeTypes": [
  2191. {
  2192. "m_type": 3
  2193. },
  2194. {
  2195. "m_type": 6
  2196. },
  2197. {
  2198. "m_type": 8
  2199. },
  2200. {
  2201. "m_type": 9
  2202. },
  2203. {
  2204. "m_type": 10
  2205. },
  2206. {
  2207. "m_type": 11
  2208. },
  2209. {
  2210. "m_type": 12
  2211. },
  2212. {
  2213. "m_type": 14
  2214. },
  2215. {
  2216. "m_type": 15
  2217. }
  2218. ]
  2219. }
  2220. ],
  2221. "slotName": "Number",
  2222. "toolTip": "An operand to use in performing the specified Operation",
  2223. "DisplayDataType": {
  2224. "m_type": 3
  2225. },
  2226. "DisplayGroup": {
  2227. "Value": 1114760223
  2228. },
  2229. "Descriptor": {
  2230. "ConnectionType": 1,
  2231. "SlotType": 2
  2232. },
  2233. "DynamicGroup": {
  2234. "Value": 1114760223
  2235. },
  2236. "DataType": 1
  2237. },
  2238. {
  2239. "id": {
  2240. "m_id": "{545B6DDF-93CE-4DA0-AD37-753177C91C3C}"
  2241. },
  2242. "DynamicTypeOverride": 3,
  2243. "contracts": [
  2244. {
  2245. "$type": "SlotTypeContract"
  2246. },
  2247. {
  2248. "$type": "MathOperatorContract",
  2249. "NativeTypes": [
  2250. {
  2251. "m_type": 3
  2252. },
  2253. {
  2254. "m_type": 6
  2255. },
  2256. {
  2257. "m_type": 8
  2258. },
  2259. {
  2260. "m_type": 9
  2261. },
  2262. {
  2263. "m_type": 10
  2264. },
  2265. {
  2266. "m_type": 11
  2267. },
  2268. {
  2269. "m_type": 12
  2270. },
  2271. {
  2272. "m_type": 14
  2273. },
  2274. {
  2275. "m_type": 15
  2276. }
  2277. ]
  2278. }
  2279. ],
  2280. "slotName": "Result",
  2281. "toolTip": "The result of the specified operation",
  2282. "DisplayDataType": {
  2283. "m_type": 3
  2284. },
  2285. "DisplayGroup": {
  2286. "Value": 1114760223
  2287. },
  2288. "Descriptor": {
  2289. "ConnectionType": 2,
  2290. "SlotType": 2
  2291. },
  2292. "DynamicGroup": {
  2293. "Value": 1114760223
  2294. },
  2295. "DataType": 1,
  2296. "IsReference": true,
  2297. "VariableReference": {
  2298. "m_id": "{24A824E9-D978-4417-8472-93B73485117A}"
  2299. }
  2300. }
  2301. ],
  2302. "Datums": [
  2303. {},
  2304. {
  2305. "isOverloadedStorage": false,
  2306. "scriptCanvasType": {
  2307. "m_type": 3
  2308. },
  2309. "isNullPointer": false,
  2310. "$type": "double",
  2311. "value": 1.0,
  2312. "label": "Number"
  2313. }
  2314. ]
  2315. }
  2316. }
  2317. },
  2318. {
  2319. "Id": {
  2320. "id": 76913314071719
  2321. },
  2322. "Name": "SC-Node(OperatorAdd)",
  2323. "Components": {
  2324. "Component_[2612554955794730323]": {
  2325. "$type": "OperatorAdd",
  2326. "Id": 2612554955794730323,
  2327. "Slots": [
  2328. {
  2329. "id": {
  2330. "m_id": "{D0041CBF-37EC-46CA-9938-B105F63A126E}"
  2331. },
  2332. "contracts": [
  2333. {
  2334. "$type": "SlotTypeContract"
  2335. }
  2336. ],
  2337. "slotName": "In",
  2338. "Descriptor": {
  2339. "ConnectionType": 1,
  2340. "SlotType": 1
  2341. }
  2342. },
  2343. {
  2344. "id": {
  2345. "m_id": "{251244D0-F1A3-4B01-B039-197615CC6396}"
  2346. },
  2347. "contracts": [
  2348. {
  2349. "$type": "SlotTypeContract"
  2350. }
  2351. ],
  2352. "slotName": "Out",
  2353. "Descriptor": {
  2354. "ConnectionType": 2,
  2355. "SlotType": 1
  2356. }
  2357. },
  2358. {
  2359. "id": {
  2360. "m_id": "{97EED13E-CEC4-420C-A1C0-DAA9E41DDBC0}"
  2361. },
  2362. "DynamicTypeOverride": 3,
  2363. "contracts": [
  2364. {
  2365. "$type": "SlotTypeContract"
  2366. },
  2367. null,
  2368. {
  2369. "$type": "MathOperatorContract",
  2370. "NativeTypes": [
  2371. {
  2372. "m_type": 3
  2373. },
  2374. {
  2375. "m_type": 6
  2376. },
  2377. {
  2378. "m_type": 8
  2379. },
  2380. {
  2381. "m_type": 9
  2382. },
  2383. {
  2384. "m_type": 10
  2385. },
  2386. {
  2387. "m_type": 11
  2388. },
  2389. {
  2390. "m_type": 12
  2391. },
  2392. {
  2393. "m_type": 14
  2394. },
  2395. {
  2396. "m_type": 15
  2397. }
  2398. ]
  2399. }
  2400. ],
  2401. "slotName": "Number",
  2402. "toolTip": "An operand to use in performing the specified Operation",
  2403. "DisplayDataType": {
  2404. "m_type": 3
  2405. },
  2406. "DisplayGroup": {
  2407. "Value": 1114760223
  2408. },
  2409. "Descriptor": {
  2410. "ConnectionType": 1,
  2411. "SlotType": 2
  2412. },
  2413. "DynamicGroup": {
  2414. "Value": 1114760223
  2415. },
  2416. "DataType": 1,
  2417. "IsReference": true,
  2418. "VariableReference": {
  2419. "m_id": "{265E1DFF-2502-4B9A-B7E6-C9F02863758D}"
  2420. }
  2421. },
  2422. {
  2423. "id": {
  2424. "m_id": "{53DCF983-1529-4BA9-B23D-4CA9C1A97845}"
  2425. },
  2426. "DynamicTypeOverride": 3,
  2427. "contracts": [
  2428. {
  2429. "$type": "SlotTypeContract"
  2430. },
  2431. null,
  2432. {
  2433. "$type": "MathOperatorContract",
  2434. "NativeTypes": [
  2435. {
  2436. "m_type": 3
  2437. },
  2438. {
  2439. "m_type": 6
  2440. },
  2441. {
  2442. "m_type": 8
  2443. },
  2444. {
  2445. "m_type": 9
  2446. },
  2447. {
  2448. "m_type": 10
  2449. },
  2450. {
  2451. "m_type": 11
  2452. },
  2453. {
  2454. "m_type": 12
  2455. },
  2456. {
  2457. "m_type": 14
  2458. },
  2459. {
  2460. "m_type": 15
  2461. }
  2462. ]
  2463. }
  2464. ],
  2465. "slotName": "Number",
  2466. "toolTip": "An operand to use in performing the specified Operation",
  2467. "DisplayDataType": {
  2468. "m_type": 3
  2469. },
  2470. "DisplayGroup": {
  2471. "Value": 1114760223
  2472. },
  2473. "Descriptor": {
  2474. "ConnectionType": 1,
  2475. "SlotType": 2
  2476. },
  2477. "DynamicGroup": {
  2478. "Value": 1114760223
  2479. },
  2480. "DataType": 1
  2481. },
  2482. {
  2483. "id": {
  2484. "m_id": "{545B6DDF-93CE-4DA0-AD37-753177C91C3C}"
  2485. },
  2486. "DynamicTypeOverride": 3,
  2487. "contracts": [
  2488. {
  2489. "$type": "SlotTypeContract"
  2490. },
  2491. {
  2492. "$type": "MathOperatorContract",
  2493. "NativeTypes": [
  2494. {
  2495. "m_type": 3
  2496. },
  2497. {
  2498. "m_type": 6
  2499. },
  2500. {
  2501. "m_type": 8
  2502. },
  2503. {
  2504. "m_type": 9
  2505. },
  2506. {
  2507. "m_type": 10
  2508. },
  2509. {
  2510. "m_type": 11
  2511. },
  2512. {
  2513. "m_type": 12
  2514. },
  2515. {
  2516. "m_type": 14
  2517. },
  2518. {
  2519. "m_type": 15
  2520. }
  2521. ]
  2522. }
  2523. ],
  2524. "slotName": "Result",
  2525. "toolTip": "The result of the specified operation",
  2526. "DisplayDataType": {
  2527. "m_type": 3
  2528. },
  2529. "DisplayGroup": {
  2530. "Value": 1114760223
  2531. },
  2532. "Descriptor": {
  2533. "ConnectionType": 2,
  2534. "SlotType": 2
  2535. },
  2536. "DynamicGroup": {
  2537. "Value": 1114760223
  2538. },
  2539. "DataType": 1,
  2540. "IsReference": true,
  2541. "VariableReference": {
  2542. "m_id": "{265E1DFF-2502-4B9A-B7E6-C9F02863758D}"
  2543. }
  2544. }
  2545. ],
  2546. "Datums": [
  2547. {},
  2548. {
  2549. "isOverloadedStorage": false,
  2550. "scriptCanvasType": {
  2551. "m_type": 3
  2552. },
  2553. "isNullPointer": false,
  2554. "$type": "double",
  2555. "value": 1.0,
  2556. "label": "Number"
  2557. }
  2558. ]
  2559. }
  2560. }
  2561. },
  2562. {
  2563. "Id": {
  2564. "id": 76900429169831
  2565. },
  2566. "Name": "SC-Node(ExpectEqual)",
  2567. "Components": {
  2568. "Component_[6355568164015893102]": {
  2569. "$type": "MethodOverloaded",
  2570. "Id": 6355568164015893102,
  2571. "Slots": [
  2572. {
  2573. "isVisibile": false,
  2574. "id": {
  2575. "m_id": "{A31169AF-2C1B-425F-9598-1452D6975584}"
  2576. },
  2577. "contracts": [
  2578. {
  2579. "$type": "SlotTypeContract"
  2580. },
  2581. null
  2582. ],
  2583. "slotName": "EntityID: 0",
  2584. "Descriptor": {
  2585. "ConnectionType": 1,
  2586. "SlotType": 2
  2587. },
  2588. "DataType": 1
  2589. },
  2590. {
  2591. "id": {
  2592. "m_id": "{AE909E36-3495-4FDC-B87E-2747A7D02448}"
  2593. },
  2594. "DynamicTypeOverride": 1,
  2595. "contracts": [
  2596. {
  2597. "$type": "SlotTypeContract"
  2598. },
  2599. null,
  2600. {
  2601. "$type": "OverloadContract"
  2602. }
  2603. ],
  2604. "slotName": "Candidate",
  2605. "toolTip": "left of ==",
  2606. "DisplayDataType": {
  2607. "m_type": 3
  2608. },
  2609. "Descriptor": {
  2610. "ConnectionType": 1,
  2611. "SlotType": 2
  2612. },
  2613. "DataType": 1,
  2614. "IsReference": true,
  2615. "VariableReference": {
  2616. "m_id": "{265E1DFF-2502-4B9A-B7E6-C9F02863758D}"
  2617. }
  2618. },
  2619. {
  2620. "id": {
  2621. "m_id": "{4BE78178-77C5-4635-96D3-5C66C9518354}"
  2622. },
  2623. "DynamicTypeOverride": 1,
  2624. "contracts": [
  2625. {
  2626. "$type": "SlotTypeContract"
  2627. },
  2628. null,
  2629. {
  2630. "$type": "OverloadContract"
  2631. }
  2632. ],
  2633. "slotName": "Reference",
  2634. "toolTip": "right of ==",
  2635. "DisplayDataType": {
  2636. "m_type": 3
  2637. },
  2638. "Descriptor": {
  2639. "ConnectionType": 1,
  2640. "SlotType": 2
  2641. },
  2642. "DataType": 1,
  2643. "IsReference": true,
  2644. "VariableReference": {
  2645. "m_id": "{FD797D01-AD59-4CC2-9B7B-19A39091A1D4}"
  2646. }
  2647. },
  2648. {
  2649. "id": {
  2650. "m_id": "{1AD2BBE6-7682-4D5E-9DC5-009CAB628CF4}"
  2651. },
  2652. "contracts": [
  2653. {
  2654. "$type": "SlotTypeContract"
  2655. },
  2656. null
  2657. ],
  2658. "slotName": "Report",
  2659. "toolTip": "additional notes for the test report",
  2660. "DisplayDataType": {
  2661. "m_type": 5
  2662. },
  2663. "Descriptor": {
  2664. "ConnectionType": 1,
  2665. "SlotType": 2
  2666. },
  2667. "DataType": 1
  2668. },
  2669. {
  2670. "id": {
  2671. "m_id": "{6E12389E-558E-4D51-A223-F5E583F17584}"
  2672. },
  2673. "contracts": [
  2674. {
  2675. "$type": "SlotTypeContract"
  2676. }
  2677. ],
  2678. "slotName": "In",
  2679. "Descriptor": {
  2680. "ConnectionType": 1,
  2681. "SlotType": 1
  2682. }
  2683. },
  2684. {
  2685. "id": {
  2686. "m_id": "{AA0B0013-E65F-4F0E-9A63-F99964748041}"
  2687. },
  2688. "contracts": [
  2689. {
  2690. "$type": "SlotTypeContract"
  2691. }
  2692. ],
  2693. "slotName": "Out",
  2694. "Descriptor": {
  2695. "ConnectionType": 2,
  2696. "SlotType": 1
  2697. }
  2698. }
  2699. ],
  2700. "Datums": [
  2701. {
  2702. "isOverloadedStorage": false,
  2703. "scriptCanvasType": {
  2704. "m_type": 1
  2705. },
  2706. "isNullPointer": false,
  2707. "$type": "EntityId",
  2708. "value": {
  2709. "id": 4276206253
  2710. }
  2711. },
  2712. {
  2713. "isOverloadedStorage": false,
  2714. "scriptCanvasType": {
  2715. "m_type": 3
  2716. },
  2717. "isNullPointer": false,
  2718. "$type": "double",
  2719. "value": 0.0,
  2720. "label": "Candidate"
  2721. },
  2722. {
  2723. "isOverloadedStorage": false,
  2724. "scriptCanvasType": {
  2725. "m_type": 3
  2726. },
  2727. "isNullPointer": false,
  2728. "$type": "double",
  2729. "value": 0.0,
  2730. "label": "Reference"
  2731. },
  2732. {
  2733. "isOverloadedStorage": false,
  2734. "scriptCanvasType": {
  2735. "m_type": 5
  2736. },
  2737. "isNullPointer": false,
  2738. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2739. "value": "",
  2740. "label": "Report"
  2741. }
  2742. ],
  2743. "methodType": 2,
  2744. "methodName": "Expect Equal",
  2745. "className": "Unit Testing",
  2746. "prettyClassName": "Unit Testing",
  2747. "orderedInputSlotIds": [
  2748. {
  2749. "m_id": "{A31169AF-2C1B-425F-9598-1452D6975584}"
  2750. },
  2751. {
  2752. "m_id": "{AE909E36-3495-4FDC-B87E-2747A7D02448}"
  2753. },
  2754. {
  2755. "m_id": "{4BE78178-77C5-4635-96D3-5C66C9518354}"
  2756. },
  2757. {
  2758. "m_id": "{1AD2BBE6-7682-4D5E-9DC5-009CAB628CF4}"
  2759. }
  2760. ],
  2761. "outputSlotIds": [
  2762. {}
  2763. ]
  2764. }
  2765. }
  2766. },
  2767. {
  2768. "Id": {
  2769. "id": 76887544267943
  2770. },
  2771. "Name": "SC-Node(Repeater)",
  2772. "Components": {
  2773. "Component_[7706100513304287715]": {
  2774. "$type": "RepeaterNodeableNode",
  2775. "Id": 7706100513304287715,
  2776. "Slots": [
  2777. {
  2778. "id": {
  2779. "m_id": "{BBFFD801-157D-4D18-8697-E97F02CC0AA0}"
  2780. },
  2781. "contracts": [
  2782. {
  2783. "$type": "SlotTypeContract"
  2784. }
  2785. ],
  2786. "slotName": "Start",
  2787. "DisplayGroup": {
  2788. "Value": 2675529103
  2789. },
  2790. "Descriptor": {
  2791. "ConnectionType": 1,
  2792. "SlotType": 1
  2793. }
  2794. },
  2795. {
  2796. "id": {
  2797. "m_id": "{81806639-F2E7-4BC1-9138-1717A90599C2}"
  2798. },
  2799. "contracts": [
  2800. {
  2801. "$type": "SlotTypeContract"
  2802. },
  2803. null
  2804. ],
  2805. "slotName": "Repetitions",
  2806. "DisplayDataType": {
  2807. "m_type": 3
  2808. },
  2809. "DisplayGroup": {
  2810. "Value": 2675529103
  2811. },
  2812. "Descriptor": {
  2813. "ConnectionType": 1,
  2814. "SlotType": 2
  2815. },
  2816. "DataType": 1,
  2817. "IsReference": true,
  2818. "VariableReference": {
  2819. "m_id": "{FD797D01-AD59-4CC2-9B7B-19A39091A1D4}"
  2820. }
  2821. },
  2822. {
  2823. "id": {
  2824. "m_id": "{27FB64F7-81D2-4BCA-88AD-5FB93AB6C2A0}"
  2825. },
  2826. "contracts": [
  2827. {
  2828. "$type": "SlotTypeContract"
  2829. },
  2830. null
  2831. ],
  2832. "slotName": "Interval",
  2833. "toolTip": "The Interval between repetitions.",
  2834. "DisplayDataType": {
  2835. "m_type": 3
  2836. },
  2837. "DisplayGroup": {
  2838. "Value": 2675529103
  2839. },
  2840. "Descriptor": {
  2841. "ConnectionType": 1,
  2842. "SlotType": 2
  2843. },
  2844. "DataType": 1
  2845. },
  2846. {
  2847. "id": {
  2848. "m_id": "{248D3048-930B-4D5C-BE55-DF0B884BAF2B}"
  2849. },
  2850. "contracts": [
  2851. {
  2852. "$type": "SlotTypeContract"
  2853. }
  2854. ],
  2855. "slotName": "On Start",
  2856. "DisplayGroup": {
  2857. "Value": 2675529103
  2858. },
  2859. "Descriptor": {
  2860. "ConnectionType": 2,
  2861. "SlotType": 1
  2862. }
  2863. },
  2864. {
  2865. "id": {
  2866. "m_id": "{B47E3C04-6E76-4FBB-A8E4-92D00445B859}"
  2867. },
  2868. "contracts": [
  2869. {
  2870. "$type": "SlotTypeContract"
  2871. }
  2872. ],
  2873. "slotName": "Complete",
  2874. "toolTip": "Signaled upon node exit",
  2875. "DisplayGroup": {
  2876. "Value": 1114099747
  2877. },
  2878. "Descriptor": {
  2879. "ConnectionType": 2,
  2880. "SlotType": 1
  2881. },
  2882. "IsLatent": true
  2883. },
  2884. {
  2885. "id": {
  2886. "m_id": "{4F4138D6-7A5B-42C7-B7BD-3280A42EAE6A}"
  2887. },
  2888. "contracts": [
  2889. {
  2890. "$type": "SlotTypeContract"
  2891. }
  2892. ],
  2893. "slotName": "Action",
  2894. "toolTip": "The signal that will be repeated",
  2895. "DisplayGroup": {
  2896. "Value": 1204587666
  2897. },
  2898. "Descriptor": {
  2899. "ConnectionType": 2,
  2900. "SlotType": 1
  2901. },
  2902. "IsLatent": true
  2903. }
  2904. ],
  2905. "Datums": [
  2906. {
  2907. "isOverloadedStorage": false,
  2908. "scriptCanvasType": {
  2909. "m_type": 3
  2910. },
  2911. "isNullPointer": false,
  2912. "$type": "double",
  2913. "value": 0.0,
  2914. "label": "Repetitions"
  2915. },
  2916. {
  2917. "isOverloadedStorage": false,
  2918. "scriptCanvasType": {
  2919. "m_type": 3
  2920. },
  2921. "isNullPointer": false,
  2922. "$type": "double",
  2923. "value": 0.0,
  2924. "label": "Interval"
  2925. }
  2926. ],
  2927. "slotExecutionMap": {
  2928. "ins": [
  2929. {
  2930. "_slotId": {
  2931. "m_id": "{BBFFD801-157D-4D18-8697-E97F02CC0AA0}"
  2932. },
  2933. "_inputs": [
  2934. {
  2935. "_slotId": {
  2936. "m_id": "{81806639-F2E7-4BC1-9138-1717A90599C2}"
  2937. }
  2938. },
  2939. {
  2940. "_slotId": {
  2941. "m_id": "{27FB64F7-81D2-4BCA-88AD-5FB93AB6C2A0}"
  2942. }
  2943. }
  2944. ],
  2945. "_outs": [
  2946. {
  2947. "_slotId": {
  2948. "m_id": "{248D3048-930B-4D5C-BE55-DF0B884BAF2B}"
  2949. },
  2950. "_name": "On Start",
  2951. "_interfaceSourceId": "{D0D11CA9-C702-0000-2F76-AF9FFD7F0000}"
  2952. }
  2953. ],
  2954. "_interfaceSourceId": "{01000000-0000-0000-B09C-F4A2FD7F0000}"
  2955. }
  2956. ],
  2957. "latents": [
  2958. {
  2959. "_slotId": {
  2960. "m_id": "{B47E3C04-6E76-4FBB-A8E4-92D00445B859}"
  2961. },
  2962. "_name": "Complete",
  2963. "_interfaceSourceId": "{01000000-0000-0000-B09C-F4A2FD7F0000}"
  2964. },
  2965. {
  2966. "_slotId": {
  2967. "m_id": "{4F4138D6-7A5B-42C7-B7BD-3280A42EAE6A}"
  2968. },
  2969. "_name": "Action",
  2970. "_interfaceSourceId": "{01000000-0000-0000-B09C-F4A2FD7F0000}"
  2971. }
  2972. ]
  2973. }
  2974. }
  2975. }
  2976. },
  2977. {
  2978. "Id": {
  2979. "id": 76874659366055
  2980. },
  2981. "Name": "SC-Node(ExpectEqual)",
  2982. "Components": {
  2983. "Component_[8117449822340239280]": {
  2984. "$type": "MethodOverloaded",
  2985. "Id": 8117449822340239280,
  2986. "Slots": [
  2987. {
  2988. "isVisibile": false,
  2989. "id": {
  2990. "m_id": "{DEAEC883-7A0B-449B-AC01-F0EB6C25EA5D}"
  2991. },
  2992. "contracts": [
  2993. {
  2994. "$type": "SlotTypeContract"
  2995. },
  2996. null
  2997. ],
  2998. "slotName": "EntityID: 0",
  2999. "Descriptor": {
  3000. "ConnectionType": 1,
  3001. "SlotType": 2
  3002. },
  3003. "DataType": 1
  3004. },
  3005. {
  3006. "id": {
  3007. "m_id": "{5B132026-EC61-4116-AE59-DF75F9683BEE}"
  3008. },
  3009. "DynamicTypeOverride": 1,
  3010. "contracts": [
  3011. {
  3012. "$type": "SlotTypeContract"
  3013. },
  3014. null,
  3015. {
  3016. "$type": "OverloadContract"
  3017. }
  3018. ],
  3019. "slotName": "Candidate",
  3020. "toolTip": "left of ==",
  3021. "DisplayDataType": {
  3022. "m_type": 3
  3023. },
  3024. "Descriptor": {
  3025. "ConnectionType": 1,
  3026. "SlotType": 2
  3027. },
  3028. "DataType": 1,
  3029. "IsReference": true,
  3030. "VariableReference": {
  3031. "m_id": "{24A824E9-D978-4417-8472-93B73485117A}"
  3032. }
  3033. },
  3034. {
  3035. "id": {
  3036. "m_id": "{F445F528-FC95-4ECD-9352-F9F06FAD6261}"
  3037. },
  3038. "DynamicTypeOverride": 1,
  3039. "contracts": [
  3040. {
  3041. "$type": "SlotTypeContract"
  3042. },
  3043. null,
  3044. {
  3045. "$type": "OverloadContract"
  3046. }
  3047. ],
  3048. "slotName": "Reference",
  3049. "toolTip": "right of ==",
  3050. "DisplayDataType": {
  3051. "m_type": 3
  3052. },
  3053. "Descriptor": {
  3054. "ConnectionType": 1,
  3055. "SlotType": 2
  3056. },
  3057. "DataType": 1,
  3058. "IsReference": true,
  3059. "VariableReference": {
  3060. "m_id": "{FD797D01-AD59-4CC2-9B7B-19A39091A1D4}"
  3061. }
  3062. },
  3063. {
  3064. "id": {
  3065. "m_id": "{8BA00AC0-178E-47B7-BB82-D12F11D23D17}"
  3066. },
  3067. "contracts": [
  3068. {
  3069. "$type": "SlotTypeContract"
  3070. },
  3071. null
  3072. ],
  3073. "slotName": "Report",
  3074. "toolTip": "additional notes for the test report",
  3075. "DisplayDataType": {
  3076. "m_type": 5
  3077. },
  3078. "Descriptor": {
  3079. "ConnectionType": 1,
  3080. "SlotType": 2
  3081. },
  3082. "DataType": 1
  3083. },
  3084. {
  3085. "id": {
  3086. "m_id": "{2D163CE1-E731-4292-B92B-F36FB0BAECAB}"
  3087. },
  3088. "contracts": [
  3089. {
  3090. "$type": "SlotTypeContract"
  3091. }
  3092. ],
  3093. "slotName": "In",
  3094. "Descriptor": {
  3095. "ConnectionType": 1,
  3096. "SlotType": 1
  3097. }
  3098. },
  3099. {
  3100. "id": {
  3101. "m_id": "{2B2C9347-D76F-4857-AF78-452087F8265D}"
  3102. },
  3103. "contracts": [
  3104. {
  3105. "$type": "SlotTypeContract"
  3106. }
  3107. ],
  3108. "slotName": "Out",
  3109. "Descriptor": {
  3110. "ConnectionType": 2,
  3111. "SlotType": 1
  3112. }
  3113. }
  3114. ],
  3115. "Datums": [
  3116. {
  3117. "isOverloadedStorage": false,
  3118. "scriptCanvasType": {
  3119. "m_type": 1
  3120. },
  3121. "isNullPointer": false,
  3122. "$type": "EntityId",
  3123. "value": {
  3124. "id": 4276206253
  3125. }
  3126. },
  3127. {
  3128. "isOverloadedStorage": false,
  3129. "scriptCanvasType": {
  3130. "m_type": 3
  3131. },
  3132. "isNullPointer": false,
  3133. "$type": "double",
  3134. "value": 0.0,
  3135. "label": "Candidate"
  3136. },
  3137. {
  3138. "isOverloadedStorage": false,
  3139. "scriptCanvasType": {
  3140. "m_type": 3
  3141. },
  3142. "isNullPointer": false,
  3143. "$type": "double",
  3144. "value": 0.0,
  3145. "label": "Reference"
  3146. },
  3147. {
  3148. "isOverloadedStorage": false,
  3149. "scriptCanvasType": {
  3150. "m_type": 5
  3151. },
  3152. "isNullPointer": false,
  3153. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  3154. "value": "",
  3155. "label": "Report"
  3156. }
  3157. ],
  3158. "methodType": 2,
  3159. "methodName": "Expect Equal",
  3160. "className": "Unit Testing",
  3161. "prettyClassName": "Unit Testing",
  3162. "orderedInputSlotIds": [
  3163. {
  3164. "m_id": "{DEAEC883-7A0B-449B-AC01-F0EB6C25EA5D}"
  3165. },
  3166. {
  3167. "m_id": "{5B132026-EC61-4116-AE59-DF75F9683BEE}"
  3168. },
  3169. {
  3170. "m_id": "{F445F528-FC95-4ECD-9352-F9F06FAD6261}"
  3171. },
  3172. {
  3173. "m_id": "{8BA00AC0-178E-47B7-BB82-D12F11D23D17}"
  3174. }
  3175. ],
  3176. "outputSlotIds": [
  3177. {}
  3178. ]
  3179. }
  3180. }
  3181. },
  3182. {
  3183. "Id": {
  3184. "id": 76861774464167
  3185. },
  3186. "Name": "SC Node(GetVariable)",
  3187. "Components": {
  3188. "Component_[8266677080259374837]": {
  3189. "$type": "GetVariableNode",
  3190. "Id": 8266677080259374837,
  3191. "Slots": [
  3192. {
  3193. "id": {
  3194. "m_id": "{00E98A1F-BA34-4BCF-BF9B-49A41260F636}"
  3195. },
  3196. "contracts": [
  3197. {
  3198. "$type": "SlotTypeContract"
  3199. }
  3200. ],
  3201. "slotName": "In",
  3202. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  3203. "Descriptor": {
  3204. "ConnectionType": 1,
  3205. "SlotType": 1
  3206. }
  3207. },
  3208. {
  3209. "id": {
  3210. "m_id": "{F054C433-83EA-43D3-951B-EED632DA1B2D}"
  3211. },
  3212. "contracts": [
  3213. {
  3214. "$type": "SlotTypeContract"
  3215. }
  3216. ],
  3217. "slotName": "Out",
  3218. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  3219. "Descriptor": {
  3220. "ConnectionType": 2,
  3221. "SlotType": 1
  3222. }
  3223. },
  3224. {
  3225. "id": {
  3226. "m_id": "{797831AF-FB75-43F1-9AF5-959FFFE46B47}"
  3227. },
  3228. "contracts": [
  3229. {
  3230. "$type": "SlotTypeContract"
  3231. }
  3232. ],
  3233. "slotName": "Number",
  3234. "DisplayDataType": {
  3235. "m_type": 3
  3236. },
  3237. "Descriptor": {
  3238. "ConnectionType": 2,
  3239. "SlotType": 2
  3240. },
  3241. "DataType": 1,
  3242. "IsReference": true,
  3243. "VariableReference": {
  3244. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  3245. }
  3246. }
  3247. ],
  3248. "m_variableId": {
  3249. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  3250. },
  3251. "m_variableDataOutSlotId": {
  3252. "m_id": "{797831AF-FB75-43F1-9AF5-959FFFE46B47}"
  3253. }
  3254. }
  3255. }
  3256. },
  3257. {
  3258. "Id": {
  3259. "id": 76848889562279
  3260. },
  3261. "Name": "EBusEventHandler",
  3262. "Components": {
  3263. "Component_[9524515287928903983]": {
  3264. "$type": "EBusEventHandler",
  3265. "Id": 9524515287928903983,
  3266. "Slots": [
  3267. {
  3268. "id": {
  3269. "m_id": "{ACD0A8BC-0293-4A5B-8609-9AB9FFF1D96E}"
  3270. },
  3271. "contracts": [
  3272. {
  3273. "$type": "SlotTypeContract"
  3274. }
  3275. ],
  3276. "slotName": "Connect",
  3277. "toolTip": "Connect this event handler to the specified entity.",
  3278. "Descriptor": {
  3279. "ConnectionType": 1,
  3280. "SlotType": 1
  3281. }
  3282. },
  3283. {
  3284. "id": {
  3285. "m_id": "{F62ACEB1-61DD-44F4-BA84-1C02BF02062D}"
  3286. },
  3287. "contracts": [
  3288. {
  3289. "$type": "SlotTypeContract"
  3290. }
  3291. ],
  3292. "slotName": "Disconnect",
  3293. "toolTip": "Disconnect this event handler.",
  3294. "Descriptor": {
  3295. "ConnectionType": 1,
  3296. "SlotType": 1
  3297. }
  3298. },
  3299. {
  3300. "id": {
  3301. "m_id": "{1F3CCEA3-0C99-4032-B3E6-047BFD116553}"
  3302. },
  3303. "contracts": [
  3304. {
  3305. "$type": "SlotTypeContract"
  3306. }
  3307. ],
  3308. "slotName": "OnConnected",
  3309. "toolTip": "Signaled when a connection has taken place.",
  3310. "Descriptor": {
  3311. "ConnectionType": 2,
  3312. "SlotType": 1
  3313. }
  3314. },
  3315. {
  3316. "id": {
  3317. "m_id": "{C1CFDD7C-EFFA-45AD-917A-312B9EBBA767}"
  3318. },
  3319. "contracts": [
  3320. {
  3321. "$type": "SlotTypeContract"
  3322. }
  3323. ],
  3324. "slotName": "OnDisconnected",
  3325. "toolTip": "Signaled when this event handler is disconnected.",
  3326. "Descriptor": {
  3327. "ConnectionType": 2,
  3328. "SlotType": 1
  3329. }
  3330. },
  3331. {
  3332. "id": {
  3333. "m_id": "{44B9A288-2421-42D1-BA28-6BC308FA2A9C}"
  3334. },
  3335. "contracts": [
  3336. {
  3337. "$type": "SlotTypeContract"
  3338. }
  3339. ],
  3340. "slotName": "OnFailure",
  3341. "toolTip": "Signaled when it is not possible to connect this handler.",
  3342. "Descriptor": {
  3343. "ConnectionType": 2,
  3344. "SlotType": 1
  3345. }
  3346. },
  3347. {
  3348. "id": {
  3349. "m_id": "{2DC76B27-AB04-49BD-8AFC-937D13F6D841}"
  3350. },
  3351. "contracts": [
  3352. {
  3353. "$type": "SlotTypeContract"
  3354. },
  3355. null
  3356. ],
  3357. "slotName": "Source",
  3358. "toolTip": "ID used to connect on a specific Event address (Type: GraphScopedIdentifier<VariableId >)",
  3359. "Descriptor": {
  3360. "ConnectionType": 1,
  3361. "SlotType": 2
  3362. },
  3363. "DataType": 1
  3364. },
  3365. {
  3366. "id": {
  3367. "m_id": "{C664D919-9B0E-4AB0-A9BD-F645450249F4}"
  3368. },
  3369. "contracts": [
  3370. {
  3371. "$type": "SlotTypeContract"
  3372. }
  3373. ],
  3374. "slotName": "ExecutionSlot:OnVariableValueChanged",
  3375. "Descriptor": {
  3376. "ConnectionType": 2,
  3377. "SlotType": 1
  3378. },
  3379. "IsLatent": true
  3380. }
  3381. ],
  3382. "Datums": [
  3383. {
  3384. "isOverloadedStorage": false,
  3385. "scriptCanvasType": {
  3386. "m_type": 4,
  3387. "m_azType": "{F8B7B5C2-3469-54D4-89E9-F457640BAD85}"
  3388. },
  3389. "isNullPointer": false,
  3390. "$type": "GraphScopedIdentifier<VariableId>",
  3391. "value": {
  3392. "Identifier": {
  3393. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  3394. }
  3395. },
  3396. "label": "Source"
  3397. }
  3398. ],
  3399. "m_eventMap": [
  3400. {
  3401. "Key": {
  3402. "Value": 3939979346
  3403. },
  3404. "Value": {
  3405. "m_eventName": "OnVariableValueChanged",
  3406. "m_eventId": {
  3407. "Value": 3939979346
  3408. },
  3409. "m_eventSlotId": {
  3410. "m_id": "{C664D919-9B0E-4AB0-A9BD-F645450249F4}"
  3411. }
  3412. }
  3413. }
  3414. ],
  3415. "m_ebusName": "VariableNotification",
  3416. "m_busId": {
  3417. "Value": 709969044
  3418. }
  3419. }
  3420. }
  3421. },
  3422. {
  3423. "Id": {
  3424. "id": 76930493940903
  3425. },
  3426. "Name": "EBusEventHandler",
  3427. "Components": {
  3428. "Component_[9524515287928903983]": {
  3429. "$type": "EBusEventHandler",
  3430. "Id": 9524515287928903983,
  3431. "Slots": [
  3432. {
  3433. "id": {
  3434. "m_id": "{ACD0A8BC-0293-4A5B-8609-9AB9FFF1D96E}"
  3435. },
  3436. "contracts": [
  3437. {
  3438. "$type": "SlotTypeContract"
  3439. }
  3440. ],
  3441. "slotName": "Connect",
  3442. "toolTip": "Connect this event handler to the specified entity.",
  3443. "Descriptor": {
  3444. "ConnectionType": 1,
  3445. "SlotType": 1
  3446. }
  3447. },
  3448. {
  3449. "id": {
  3450. "m_id": "{F62ACEB1-61DD-44F4-BA84-1C02BF02062D}"
  3451. },
  3452. "contracts": [
  3453. {
  3454. "$type": "SlotTypeContract"
  3455. }
  3456. ],
  3457. "slotName": "Disconnect",
  3458. "toolTip": "Disconnect this event handler.",
  3459. "Descriptor": {
  3460. "ConnectionType": 1,
  3461. "SlotType": 1
  3462. }
  3463. },
  3464. {
  3465. "id": {
  3466. "m_id": "{1F3CCEA3-0C99-4032-B3E6-047BFD116553}"
  3467. },
  3468. "contracts": [
  3469. {
  3470. "$type": "SlotTypeContract"
  3471. }
  3472. ],
  3473. "slotName": "OnConnected",
  3474. "toolTip": "Signaled when a connection has taken place.",
  3475. "Descriptor": {
  3476. "ConnectionType": 2,
  3477. "SlotType": 1
  3478. }
  3479. },
  3480. {
  3481. "id": {
  3482. "m_id": "{C1CFDD7C-EFFA-45AD-917A-312B9EBBA767}"
  3483. },
  3484. "contracts": [
  3485. {
  3486. "$type": "SlotTypeContract"
  3487. }
  3488. ],
  3489. "slotName": "OnDisconnected",
  3490. "toolTip": "Signaled when this event handler is disconnected.",
  3491. "Descriptor": {
  3492. "ConnectionType": 2,
  3493. "SlotType": 1
  3494. }
  3495. },
  3496. {
  3497. "id": {
  3498. "m_id": "{44B9A288-2421-42D1-BA28-6BC308FA2A9C}"
  3499. },
  3500. "contracts": [
  3501. {
  3502. "$type": "SlotTypeContract"
  3503. }
  3504. ],
  3505. "slotName": "OnFailure",
  3506. "toolTip": "Signaled when it is not possible to connect this handler.",
  3507. "Descriptor": {
  3508. "ConnectionType": 2,
  3509. "SlotType": 1
  3510. }
  3511. },
  3512. {
  3513. "id": {
  3514. "m_id": "{2DC76B27-AB04-49BD-8AFC-937D13F6D841}"
  3515. },
  3516. "contracts": [
  3517. {
  3518. "$type": "SlotTypeContract"
  3519. },
  3520. null
  3521. ],
  3522. "slotName": "Source",
  3523. "toolTip": "ID used to connect on a specific Event address (Type: GraphScopedIdentifier<VariableId >)",
  3524. "Descriptor": {
  3525. "ConnectionType": 1,
  3526. "SlotType": 2
  3527. },
  3528. "DataType": 1
  3529. },
  3530. {
  3531. "id": {
  3532. "m_id": "{C664D919-9B0E-4AB0-A9BD-F645450249F4}"
  3533. },
  3534. "contracts": [
  3535. {
  3536. "$type": "SlotTypeContract"
  3537. }
  3538. ],
  3539. "slotName": "ExecutionSlot:OnVariableValueChanged",
  3540. "Descriptor": {
  3541. "ConnectionType": 2,
  3542. "SlotType": 1
  3543. },
  3544. "IsLatent": true
  3545. }
  3546. ],
  3547. "Datums": [
  3548. {
  3549. "isOverloadedStorage": false,
  3550. "scriptCanvasType": {
  3551. "m_type": 4,
  3552. "m_azType": "{F8B7B5C2-3469-54D4-89E9-F457640BAD85}"
  3553. },
  3554. "isNullPointer": false,
  3555. "$type": "GraphScopedIdentifier<VariableId>",
  3556. "value": {
  3557. "Identifier": {
  3558. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  3559. }
  3560. },
  3561. "label": "Source"
  3562. }
  3563. ],
  3564. "m_eventMap": [
  3565. {
  3566. "Key": {
  3567. "Value": 3939979346
  3568. },
  3569. "Value": {
  3570. "m_eventName": "OnVariableValueChanged",
  3571. "m_eventId": {
  3572. "Value": 3939979346
  3573. },
  3574. "m_eventSlotId": {
  3575. "m_id": "{C664D919-9B0E-4AB0-A9BD-F645450249F4}"
  3576. }
  3577. }
  3578. }
  3579. ],
  3580. "m_ebusName": "VariableNotification",
  3581. "m_busId": {
  3582. "Value": 709969044
  3583. }
  3584. }
  3585. }
  3586. }
  3587. ],
  3588. "m_connections": [
  3589. {
  3590. "Id": {
  3591. "id": 76934788908199
  3592. },
  3593. "Name": "srcEndpoint=(VariableNotification Handler: ExecutionSlot:OnVariableValueChanged), destEndpoint=(Add (+): In)",
  3594. "Components": {
  3595. "Component_[46976367971354184]": {
  3596. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3597. "Id": 46976367971354184,
  3598. "sourceEndpoint": {
  3599. "nodeId": {
  3600. "id": 76930493940903
  3601. },
  3602. "slotId": {
  3603. "m_id": "{C664D919-9B0E-4AB0-A9BD-F645450249F4}"
  3604. }
  3605. },
  3606. "targetEndpoint": {
  3607. "nodeId": {
  3608. "id": 76913314071719
  3609. },
  3610. "slotId": {
  3611. "m_id": "{D0041CBF-37EC-46CA-9938-B105F63A126E}"
  3612. }
  3613. }
  3614. }
  3615. }
  3616. },
  3617. {
  3618. "Id": {
  3619. "id": 76939083875495
  3620. },
  3621. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Get Variable: In)",
  3622. "Components": {
  3623. "Component_[11251416108627184525]": {
  3624. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3625. "Id": 11251416108627184525,
  3626. "sourceEndpoint": {
  3627. "nodeId": {
  3628. "id": 76909019104423
  3629. },
  3630. "slotId": {
  3631. "m_id": "{D25EC972-BEA5-4120-8157-4B60AF687C60}"
  3632. }
  3633. },
  3634. "targetEndpoint": {
  3635. "nodeId": {
  3636. "id": 76917609039015
  3637. },
  3638. "slotId": {
  3639. "m_id": "{72F1B1EC-6C15-4C4E-BAF6-0431AFE319AA}"
  3640. }
  3641. }
  3642. }
  3643. }
  3644. },
  3645. {
  3646. "Id": {
  3647. "id": 76943378842791
  3648. },
  3649. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Set Variable: In)",
  3650. "Components": {
  3651. "Component_[5306753567719871498]": {
  3652. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3653. "Id": 5306753567719871498,
  3654. "sourceEndpoint": {
  3655. "nodeId": {
  3656. "id": 76917609039015
  3657. },
  3658. "slotId": {
  3659. "m_id": "{550CEB49-5446-4A51-8E23-4C41351550BD}"
  3660. }
  3661. },
  3662. "targetEndpoint": {
  3663. "nodeId": {
  3664. "id": 76857479496871
  3665. },
  3666. "slotId": {
  3667. "m_id": "{D9F933F3-D205-4379-A9A6-64C24597C7EF}"
  3668. }
  3669. }
  3670. }
  3671. }
  3672. },
  3673. {
  3674. "Id": {
  3675. "id": 76947673810087
  3676. },
  3677. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Set Variable: Number)",
  3678. "Components": {
  3679. "Component_[7632656845891207850]": {
  3680. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3681. "Id": 7632656845891207850,
  3682. "sourceEndpoint": {
  3683. "nodeId": {
  3684. "id": 76917609039015
  3685. },
  3686. "slotId": {
  3687. "m_id": "{1A256425-2D1A-43CB-BF1B-0F5536ED8710}"
  3688. }
  3689. },
  3690. "targetEndpoint": {
  3691. "nodeId": {
  3692. "id": 76857479496871
  3693. },
  3694. "slotId": {
  3695. "m_id": "{10229DA5-278D-4BBF-8DEE-CB22EB6F6D10}"
  3696. }
  3697. }
  3698. }
  3699. }
  3700. },
  3701. {
  3702. "Id": {
  3703. "id": 76951968777383
  3704. },
  3705. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Set Variable: In)",
  3706. "Components": {
  3707. "Component_[11719124162786498735]": {
  3708. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3709. "Id": 11719124162786498735,
  3710. "sourceEndpoint": {
  3711. "nodeId": {
  3712. "id": 76857479496871
  3713. },
  3714. "slotId": {
  3715. "m_id": "{F10E49EA-B4E3-41A7-BE8A-F16B7B09BEA4}"
  3716. }
  3717. },
  3718. "targetEndpoint": {
  3719. "nodeId": {
  3720. "id": 76921904006311
  3721. },
  3722. "slotId": {
  3723. "m_id": "{77899A62-6D62-4139-BEE9-6A06179799DE}"
  3724. }
  3725. }
  3726. }
  3727. }
  3728. },
  3729. {
  3730. "Id": {
  3731. "id": 76956263744679
  3732. },
  3733. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Get Variable: In)",
  3734. "Components": {
  3735. "Component_[2435121641921668875]": {
  3736. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3737. "Id": 2435121641921668875,
  3738. "sourceEndpoint": {
  3739. "nodeId": {
  3740. "id": 76921904006311
  3741. },
  3742. "slotId": {
  3743. "m_id": "{ED48A10E-4051-4A82-9295-0C642DEE75CF}"
  3744. }
  3745. },
  3746. "targetEndpoint": {
  3747. "nodeId": {
  3748. "id": 76861774464167
  3749. },
  3750. "slotId": {
  3751. "m_id": "{00E98A1F-BA34-4BCF-BF9B-49A41260F636}"
  3752. }
  3753. }
  3754. }
  3755. }
  3756. },
  3757. {
  3758. "Id": {
  3759. "id": 76960558711975
  3760. },
  3761. "Name": "srcEndpoint=(Ordered Sequencer: Out 0), destEndpoint=(Add (+): In)",
  3762. "Components": {
  3763. "Component_[15053624933429687244]": {
  3764. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3765. "Id": 15053624933429687244,
  3766. "sourceEndpoint": {
  3767. "nodeId": {
  3768. "id": 76878954333351
  3769. },
  3770. "slotId": {
  3771. "m_id": "{ACCCF165-61C0-4CF8-9E1E-C59CF5132FA5}"
  3772. }
  3773. },
  3774. "targetEndpoint": {
  3775. "nodeId": {
  3776. "id": 76909019104423
  3777. },
  3778. "slotId": {
  3779. "m_id": "{E7A5DA39-3418-4C4A-B0F0-C9CC1F1B67E4}"
  3780. }
  3781. }
  3782. }
  3783. }
  3784. },
  3785. {
  3786. "Id": {
  3787. "id": 76964853679271
  3788. },
  3789. "Name": "srcEndpoint=(Ordered Sequencer: Out 1), destEndpoint=(Add (+): In)",
  3790. "Components": {
  3791. "Component_[5140059187756059721]": {
  3792. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3793. "Id": 5140059187756059721,
  3794. "sourceEndpoint": {
  3795. "nodeId": {
  3796. "id": 76878954333351
  3797. },
  3798. "slotId": {
  3799. "m_id": "{0CDB188D-D6D6-41DB-9A16-36370D9BF7D0}"
  3800. }
  3801. },
  3802. "targetEndpoint": {
  3803. "nodeId": {
  3804. "id": 76896134202535
  3805. },
  3806. "slotId": {
  3807. "m_id": "{E7A5DA39-3418-4C4A-B0F0-C9CC1F1B67E4}"
  3808. }
  3809. }
  3810. }
  3811. }
  3812. },
  3813. {
  3814. "Id": {
  3815. "id": 76969148646567
  3816. },
  3817. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Get Variable: In)",
  3818. "Components": {
  3819. "Component_[7570533913691527902]": {
  3820. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3821. "Id": 7570533913691527902,
  3822. "sourceEndpoint": {
  3823. "nodeId": {
  3824. "id": 76896134202535
  3825. },
  3826. "slotId": {
  3827. "m_id": "{D25EC972-BEA5-4120-8157-4B60AF687C60}"
  3828. }
  3829. },
  3830. "targetEndpoint": {
  3831. "nodeId": {
  3832. "id": 76866069431463
  3833. },
  3834. "slotId": {
  3835. "m_id": "{085989A2-2735-4554-B894-01842DD0C584}"
  3836. }
  3837. }
  3838. }
  3839. }
  3840. },
  3841. {
  3842. "Id": {
  3843. "id": 76973443613863
  3844. },
  3845. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Set Variable: In)",
  3846. "Components": {
  3847. "Component_[9697553778715064455]": {
  3848. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3849. "Id": 9697553778715064455,
  3850. "sourceEndpoint": {
  3851. "nodeId": {
  3852. "id": 76866069431463
  3853. },
  3854. "slotId": {
  3855. "m_id": "{6D4201AC-6457-44FE-855F-494A1CC6F635}"
  3856. }
  3857. },
  3858. "targetEndpoint": {
  3859. "nodeId": {
  3860. "id": 76883249300647
  3861. },
  3862. "slotId": {
  3863. "m_id": "{727DEC9E-D004-45E5-BE5C-B0D396CA16AD}"
  3864. }
  3865. }
  3866. }
  3867. }
  3868. },
  3869. {
  3870. "Id": {
  3871. "id": 76977738581159
  3872. },
  3873. "Name": "srcEndpoint=(Get Variable: Vector3), destEndpoint=(Set Variable: Vector3)",
  3874. "Components": {
  3875. "Component_[9309144626101083931]": {
  3876. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3877. "Id": 9309144626101083931,
  3878. "sourceEndpoint": {
  3879. "nodeId": {
  3880. "id": 76866069431463
  3881. },
  3882. "slotId": {
  3883. "m_id": "{30489BF2-BF62-4A48-A654-83A76E27DDE1}"
  3884. }
  3885. },
  3886. "targetEndpoint": {
  3887. "nodeId": {
  3888. "id": 76883249300647
  3889. },
  3890. "slotId": {
  3891. "m_id": "{7C5D93B8-37F2-4F31-8E66-36B1513BAF7A}"
  3892. }
  3893. }
  3894. }
  3895. }
  3896. },
  3897. {
  3898. "Id": {
  3899. "id": 76982033548455
  3900. },
  3901. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Set Variable: In)",
  3902. "Components": {
  3903. "Component_[9367362262859141969]": {
  3904. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3905. "Id": 9367362262859141969,
  3906. "sourceEndpoint": {
  3907. "nodeId": {
  3908. "id": 76883249300647
  3909. },
  3910. "slotId": {
  3911. "m_id": "{4D180E28-78D1-455C-B90E-4FC0E0C28FF9}"
  3912. }
  3913. },
  3914. "targetEndpoint": {
  3915. "nodeId": {
  3916. "id": 76904724137127
  3917. },
  3918. "slotId": {
  3919. "m_id": "{4DD7C0CC-D2DC-4E5E-8AC4-D0F3AA609063}"
  3920. }
  3921. }
  3922. }
  3923. }
  3924. },
  3925. {
  3926. "Id": {
  3927. "id": 76986328515751
  3928. },
  3929. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Get Variable: In)",
  3930. "Components": {
  3931. "Component_[8837126724732981354]": {
  3932. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3933. "Id": 8837126724732981354,
  3934. "sourceEndpoint": {
  3935. "nodeId": {
  3936. "id": 76904724137127
  3937. },
  3938. "slotId": {
  3939. "m_id": "{98E9163C-BE05-4DA6-8F3F-46F430FEB13E}"
  3940. }
  3941. },
  3942. "targetEndpoint": {
  3943. "nodeId": {
  3944. "id": 76844594594983
  3945. },
  3946. "slotId": {
  3947. "m_id": "{1909CFB4-F600-4C89-B114-032D320E2E51}"
  3948. }
  3949. }
  3950. }
  3951. }
  3952. },
  3953. {
  3954. "Id": {
  3955. "id": 76990623483047
  3956. },
  3957. "Name": "srcEndpoint=(VariableNotification Handler: ExecutionSlot:OnVariableValueChanged), destEndpoint=(Add (+): In)",
  3958. "Components": {
  3959. "Component_[3554270756113006903]": {
  3960. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3961. "Id": 3554270756113006903,
  3962. "sourceEndpoint": {
  3963. "nodeId": {
  3964. "id": 76848889562279
  3965. },
  3966. "slotId": {
  3967. "m_id": "{C664D919-9B0E-4AB0-A9BD-F645450249F4}"
  3968. }
  3969. },
  3970. "targetEndpoint": {
  3971. "nodeId": {
  3972. "id": 76926198973607
  3973. },
  3974. "slotId": {
  3975. "m_id": "{D0041CBF-37EC-46CA-9938-B105F63A126E}"
  3976. }
  3977. }
  3978. }
  3979. }
  3980. },
  3981. {
  3982. "Id": {
  3983. "id": 76994918450343
  3984. },
  3985. "Name": "srcEndpoint=(Build String: Out), destEndpoint=(Expect Equal: In)",
  3986. "Components": {
  3987. "Component_[15328486583603096573]": {
  3988. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3989. "Id": 15328486583603096573,
  3990. "sourceEndpoint": {
  3991. "nodeId": {
  3992. "id": 76840299627687
  3993. },
  3994. "slotId": {
  3995. "m_id": "{D76BC6A3-C927-4882-8EE0-3710AA629CBE}"
  3996. }
  3997. },
  3998. "targetEndpoint": {
  3999. "nodeId": {
  4000. "id": 76900429169831
  4001. },
  4002. "slotId": {
  4003. "m_id": "{6E12389E-558E-4D51-A223-F5E583F17584}"
  4004. }
  4005. }
  4006. }
  4007. }
  4008. },
  4009. {
  4010. "Id": {
  4011. "id": 76999213417639
  4012. },
  4013. "Name": "srcEndpoint=(Build String: Out), destEndpoint=(Expect Equal: In)",
  4014. "Components": {
  4015. "Component_[950133169155938266]": {
  4016. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4017. "Id": 950133169155938266,
  4018. "sourceEndpoint": {
  4019. "nodeId": {
  4020. "id": 76853184529575
  4021. },
  4022. "slotId": {
  4023. "m_id": "{D76BC6A3-C927-4882-8EE0-3710AA629CBE}"
  4024. }
  4025. },
  4026. "targetEndpoint": {
  4027. "nodeId": {
  4028. "id": 76874659366055
  4029. },
  4030. "slotId": {
  4031. "m_id": "{2D163CE1-E731-4292-B92B-F36FB0BAECAB}"
  4032. }
  4033. }
  4034. }
  4035. }
  4036. },
  4037. {
  4038. "Id": {
  4039. "id": 77003508384935
  4040. },
  4041. "Name": "srcEndpoint=(Build String: String), destEndpoint=(Expect Equal: Report)",
  4042. "Components": {
  4043. "Component_[9019232704906364885]": {
  4044. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4045. "Id": 9019232704906364885,
  4046. "sourceEndpoint": {
  4047. "nodeId": {
  4048. "id": 76853184529575
  4049. },
  4050. "slotId": {
  4051. "m_id": "{11F32B6F-DC66-4C38-9B2E-68B8FFE8C37A}"
  4052. }
  4053. },
  4054. "targetEndpoint": {
  4055. "nodeId": {
  4056. "id": 76874659366055
  4057. },
  4058. "slotId": {
  4059. "m_id": "{8BA00AC0-178E-47B7-BB82-D12F11D23D17}"
  4060. }
  4061. }
  4062. }
  4063. }
  4064. },
  4065. {
  4066. "Id": {
  4067. "id": 77007803352231
  4068. },
  4069. "Name": "srcEndpoint=(Build String: String), destEndpoint=(Expect Equal: Report)",
  4070. "Components": {
  4071. "Component_[10188664338829975305]": {
  4072. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4073. "Id": 10188664338829975305,
  4074. "sourceEndpoint": {
  4075. "nodeId": {
  4076. "id": 76840299627687
  4077. },
  4078. "slotId": {
  4079. "m_id": "{11F32B6F-DC66-4C38-9B2E-68B8FFE8C37A}"
  4080. }
  4081. },
  4082. "targetEndpoint": {
  4083. "nodeId": {
  4084. "id": 76900429169831
  4085. },
  4086. "slotId": {
  4087. "m_id": "{1AD2BBE6-7682-4D5E-9DC5-009CAB628CF4}"
  4088. }
  4089. }
  4090. }
  4091. }
  4092. },
  4093. {
  4094. "Id": {
  4095. "id": 77012098319527
  4096. },
  4097. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Repeater: Start)",
  4098. "Components": {
  4099. "Component_[2597516178701003447]": {
  4100. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4101. "Id": 2597516178701003447,
  4102. "sourceEndpoint": {
  4103. "nodeId": {
  4104. "id": 76870364398759
  4105. },
  4106. "slotId": {
  4107. "m_id": "{C9B94A20-FD66-48BB-99D8-F1FE7115C18C}"
  4108. }
  4109. },
  4110. "targetEndpoint": {
  4111. "nodeId": {
  4112. "id": 76887544267943
  4113. },
  4114. "slotId": {
  4115. "m_id": "{BBFFD801-157D-4D18-8697-E97F02CC0AA0}"
  4116. }
  4117. }
  4118. }
  4119. }
  4120. },
  4121. {
  4122. "Id": {
  4123. "id": 77016393286823
  4124. },
  4125. "Name": "srcEndpoint=(Repeater: Complete), destEndpoint=(Build String: In)",
  4126. "Components": {
  4127. "Component_[437031807370330053]": {
  4128. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4129. "Id": 437031807370330053,
  4130. "sourceEndpoint": {
  4131. "nodeId": {
  4132. "id": 76887544267943
  4133. },
  4134. "slotId": {
  4135. "m_id": "{B47E3C04-6E76-4FBB-A8E4-92D00445B859}"
  4136. }
  4137. },
  4138. "targetEndpoint": {
  4139. "nodeId": {
  4140. "id": 76840299627687
  4141. },
  4142. "slotId": {
  4143. "m_id": "{0787E887-2283-44E9-A766-44DB6EE049DF}"
  4144. }
  4145. }
  4146. }
  4147. }
  4148. },
  4149. {
  4150. "Id": {
  4151. "id": 77020688254119
  4152. },
  4153. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Build String: In)",
  4154. "Components": {
  4155. "Component_[14662032527624098347]": {
  4156. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4157. "Id": 14662032527624098347,
  4158. "sourceEndpoint": {
  4159. "nodeId": {
  4160. "id": 76900429169831
  4161. },
  4162. "slotId": {
  4163. "m_id": "{AA0B0013-E65F-4F0E-9A63-F99964748041}"
  4164. }
  4165. },
  4166. "targetEndpoint": {
  4167. "nodeId": {
  4168. "id": 76853184529575
  4169. },
  4170. "slotId": {
  4171. "m_id": "{0787E887-2283-44E9-A766-44DB6EE049DF}"
  4172. }
  4173. }
  4174. }
  4175. }
  4176. },
  4177. {
  4178. "Id": {
  4179. "id": 77024983221415
  4180. },
  4181. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  4182. "Components": {
  4183. "Component_[17359341303564440248]": {
  4184. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4185. "Id": 17359341303564440248,
  4186. "sourceEndpoint": {
  4187. "nodeId": {
  4188. "id": 76874659366055
  4189. },
  4190. "slotId": {
  4191. "m_id": "{2B2C9347-D76F-4857-AF78-452087F8265D}"
  4192. }
  4193. },
  4194. "targetEndpoint": {
  4195. "nodeId": {
  4196. "id": 76891839235239
  4197. },
  4198. "slotId": {
  4199. "m_id": "{82D04AB4-51F3-4929-B182-07B6861E3C5C}"
  4200. }
  4201. }
  4202. }
  4203. }
  4204. },
  4205. {
  4206. "Id": {
  4207. "id": 77029278188711
  4208. },
  4209. "Name": "srcEndpoint=(Repeater: Action), destEndpoint=(Ordered Sequencer: In)",
  4210. "Components": {
  4211. "Component_[3797285037354956789]": {
  4212. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4213. "Id": 3797285037354956789,
  4214. "sourceEndpoint": {
  4215. "nodeId": {
  4216. "id": 76887544267943
  4217. },
  4218. "slotId": {
  4219. "m_id": "{4F4138D6-7A5B-42C7-B7BD-3280A42EAE6A}"
  4220. }
  4221. },
  4222. "targetEndpoint": {
  4223. "nodeId": {
  4224. "id": 76878954333351
  4225. },
  4226. "slotId": {
  4227. "m_id": "{43A2BC61-A37B-448C-BB9A-E71E94AC2CDE}"
  4228. }
  4229. }
  4230. }
  4231. }
  4232. }
  4233. ]
  4234. },
  4235. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  4236. "versionData": {
  4237. "_grammarVersion": 1,
  4238. "_runtimeVersion": 1,
  4239. "_fileVersion": 1
  4240. },
  4241. "m_variableCounter": 5,
  4242. "GraphCanvasData": [
  4243. {
  4244. "Key": {
  4245. "id": 76836004660391
  4246. },
  4247. "Value": {
  4248. "ComponentData": {
  4249. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  4250. "$type": "SceneComponentSaveData",
  4251. "Constructs": [
  4252. {
  4253. "Type": 3,
  4254. "DataContainer": {
  4255. "ComponentData": {
  4256. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4257. "$type": "NodeSaveData"
  4258. },
  4259. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  4260. "$type": "CommentNodeTextSaveData",
  4261. "Comment": "Test for not signalling unchanged variable across the various forms of assignments",
  4262. "BackgroundColor": [
  4263. 0.9800000190734863,
  4264. 0.9700000286102295,
  4265. 0.6499999761581421
  4266. ]
  4267. },
  4268. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  4269. "$type": "NodeGroupFrameComponentSaveData",
  4270. "DisplayHeight": 220.0,
  4271. "DisplayWidth": 1360.0,
  4272. "PersistentGroupedId": [
  4273. "{7AF0E020-1139-498F-BCE9-9F7901317C8A}",
  4274. "{E29A29FC-A3AC-44E3-A90C-A8139F750F76}",
  4275. "{A379DDC2-1D62-47F7-93C9-C5C41A5396E4}",
  4276. "{5A93B78F-27DB-4ECF-B74E-3081C254255C}"
  4277. ]
  4278. },
  4279. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4280. "$type": "GeometrySaveData",
  4281. "Position": [
  4282. 1400.0,
  4283. 260.0
  4284. ]
  4285. },
  4286. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4287. "$type": "StylingComponentSaveData"
  4288. },
  4289. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4290. "$type": "PersistentIdComponentSaveData",
  4291. "PersistentId": "{3E3B1361-D587-4F09-8136-599BEA66F5D9}"
  4292. }
  4293. }
  4294. }
  4295. },
  4296. {
  4297. "Type": 3,
  4298. "DataContainer": {
  4299. "ComponentData": {
  4300. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4301. "$type": "NodeSaveData"
  4302. },
  4303. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  4304. "$type": "CommentNodeTextSaveData",
  4305. "Comment": "Test for not signalling unchanged variable across the various forms of assignments",
  4306. "BackgroundColor": [
  4307. 0.9800000190734863,
  4308. 0.9700000286102295,
  4309. 0.6499999761581421
  4310. ]
  4311. },
  4312. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  4313. "$type": "NodeGroupFrameComponentSaveData",
  4314. "DisplayHeight": 319.0,
  4315. "DisplayWidth": 1360.0,
  4316. "PersistentGroupedId": [
  4317. "{92419E68-842B-4513-810E-61D3E98C47A6}",
  4318. "{24EF7C58-EC0E-4B6A-B809-B846794B9E03}",
  4319. "{C35CB605-E1B6-40D1-8C00-06E00456FD8C}",
  4320. "{154E818C-7671-4088-90D8-DFAF19E5EB36}"
  4321. ]
  4322. },
  4323. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4324. "$type": "GeometrySaveData",
  4325. "Position": [
  4326. 1400.0,
  4327. 560.0
  4328. ]
  4329. },
  4330. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4331. "$type": "StylingComponentSaveData"
  4332. },
  4333. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4334. "$type": "PersistentIdComponentSaveData",
  4335. "PersistentId": "{E0E2CB3B-4C2E-4648-8DD4-B059E24EBC2B}"
  4336. }
  4337. }
  4338. }
  4339. }
  4340. ],
  4341. "ViewParams": {
  4342. "Scale": 0.8232133,
  4343. "AnchorX": 745.8577270507813,
  4344. "AnchorY": -297.6142272949219
  4345. }
  4346. }
  4347. }
  4348. }
  4349. },
  4350. {
  4351. "Key": {
  4352. "id": 76840299627687
  4353. },
  4354. "Value": {
  4355. "ComponentData": {
  4356. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4357. "$type": "NodeSaveData"
  4358. },
  4359. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4360. "$type": "GeneralNodeTitleComponentSaveData",
  4361. "PaletteOverride": "StringNodeTitlePalette"
  4362. },
  4363. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4364. "$type": "GeometrySaveData",
  4365. "Position": [
  4366. 500.0,
  4367. -100.0
  4368. ]
  4369. },
  4370. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4371. "$type": "StylingComponentSaveData"
  4372. },
  4373. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4374. "$type": "PersistentIdComponentSaveData",
  4375. "PersistentId": "{872B5ABC-745D-4EB3-9F9D-CC78E3C778CA}"
  4376. }
  4377. }
  4378. }
  4379. },
  4380. {
  4381. "Key": {
  4382. "id": 76844594594983
  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": "GetVariableNodeTitlePalette"
  4392. },
  4393. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4394. "$type": "GeometrySaveData",
  4395. "Position": [
  4396. 2460.0,
  4397. 620.0
  4398. ]
  4399. },
  4400. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4401. "$type": "StylingComponentSaveData",
  4402. "SubStyle": ".getVariable"
  4403. },
  4404. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4405. "$type": "PersistentIdComponentSaveData",
  4406. "PersistentId": "{154E818C-7671-4088-90D8-DFAF19E5EB36}"
  4407. }
  4408. }
  4409. }
  4410. },
  4411. {
  4412. "Key": {
  4413. "id": 76848889562279
  4414. },
  4415. "Value": {
  4416. "ComponentData": {
  4417. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4418. "$type": "NodeSaveData"
  4419. },
  4420. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4421. "$type": "GeometrySaveData",
  4422. "Position": [
  4423. 240.0,
  4424. 1600.0
  4425. ]
  4426. },
  4427. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  4428. "$type": "EBusHandlerNodeDescriptorSaveData",
  4429. "EventIds": [
  4430. {
  4431. "Value": 3939979346
  4432. }
  4433. ]
  4434. },
  4435. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4436. "$type": "StylingComponentSaveData"
  4437. },
  4438. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4439. "$type": "PersistentIdComponentSaveData",
  4440. "PersistentId": "{35499117-0C8E-4CF0-AB2B-F85F43E3A83E}"
  4441. }
  4442. }
  4443. }
  4444. },
  4445. {
  4446. "Key": {
  4447. "id": 76853184529575
  4448. },
  4449. "Value": {
  4450. "ComponentData": {
  4451. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4452. "$type": "NodeSaveData"
  4453. },
  4454. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4455. "$type": "GeneralNodeTitleComponentSaveData",
  4456. "PaletteOverride": "StringNodeTitlePalette"
  4457. },
  4458. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4459. "$type": "GeometrySaveData",
  4460. "Position": [
  4461. 1280.0,
  4462. -100.0
  4463. ]
  4464. },
  4465. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4466. "$type": "StylingComponentSaveData"
  4467. },
  4468. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4469. "$type": "PersistentIdComponentSaveData",
  4470. "PersistentId": "{4C2CFBAF-22DC-47C0-AB77-D841BAFB83FF}"
  4471. }
  4472. }
  4473. }
  4474. },
  4475. {
  4476. "Key": {
  4477. "id": 76857479496871
  4478. },
  4479. "Value": {
  4480. "ComponentData": {
  4481. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4482. "$type": "NodeSaveData"
  4483. },
  4484. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4485. "$type": "GeneralNodeTitleComponentSaveData",
  4486. "PaletteOverride": "SetVariableNodeTitlePalette"
  4487. },
  4488. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4489. "$type": "GeometrySaveData",
  4490. "Position": [
  4491. 1720.0,
  4492. 320.0
  4493. ]
  4494. },
  4495. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4496. "$type": "StylingComponentSaveData",
  4497. "SubStyle": ".setVariable"
  4498. },
  4499. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4500. "$type": "PersistentIdComponentSaveData",
  4501. "PersistentId": "{5A93B78F-27DB-4ECF-B74E-3081C254255C}"
  4502. }
  4503. }
  4504. }
  4505. },
  4506. {
  4507. "Key": {
  4508. "id": 76861774464167
  4509. },
  4510. "Value": {
  4511. "ComponentData": {
  4512. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4513. "$type": "NodeSaveData"
  4514. },
  4515. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4516. "$type": "GeneralNodeTitleComponentSaveData",
  4517. "PaletteOverride": "GetVariableNodeTitlePalette"
  4518. },
  4519. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4520. "$type": "GeometrySaveData",
  4521. "Position": [
  4522. 2460.0,
  4523. 320.0
  4524. ]
  4525. },
  4526. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4527. "$type": "StylingComponentSaveData",
  4528. "SubStyle": ".getVariable"
  4529. },
  4530. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4531. "$type": "PersistentIdComponentSaveData",
  4532. "PersistentId": "{A379DDC2-1D62-47F7-93C9-C5C41A5396E4}"
  4533. }
  4534. }
  4535. }
  4536. },
  4537. {
  4538. "Key": {
  4539. "id": 76866069431463
  4540. },
  4541. "Value": {
  4542. "ComponentData": {
  4543. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4544. "$type": "NodeSaveData"
  4545. },
  4546. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4547. "$type": "GeneralNodeTitleComponentSaveData",
  4548. "PaletteOverride": "GetVariableNodeTitlePalette"
  4549. },
  4550. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4551. "$type": "GeometrySaveData",
  4552. "Position": [
  4553. 1420.0,
  4554. 620.0
  4555. ]
  4556. },
  4557. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4558. "$type": "StylingComponentSaveData",
  4559. "SubStyle": ".getVariable"
  4560. },
  4561. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4562. "$type": "PersistentIdComponentSaveData",
  4563. "PersistentId": "{C35CB605-E1B6-40D1-8C00-06E00456FD8C}"
  4564. }
  4565. }
  4566. }
  4567. },
  4568. {
  4569. "Key": {
  4570. "id": 76870364398759
  4571. },
  4572. "Value": {
  4573. "ComponentData": {
  4574. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4575. "$type": "NodeSaveData"
  4576. },
  4577. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4578. "$type": "GeneralNodeTitleComponentSaveData",
  4579. "PaletteOverride": "TimeNodeTitlePalette"
  4580. },
  4581. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4582. "$type": "GeometrySaveData",
  4583. "Position": [
  4584. -60.0,
  4585. 220.0
  4586. ]
  4587. },
  4588. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4589. "$type": "StylingComponentSaveData",
  4590. "SubStyle": ".time"
  4591. },
  4592. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4593. "$type": "PersistentIdComponentSaveData",
  4594. "PersistentId": "{9DAC301D-9417-4435-BBAB-C997630556FF}"
  4595. }
  4596. }
  4597. }
  4598. },
  4599. {
  4600. "Key": {
  4601. "id": 76874659366055
  4602. },
  4603. "Value": {
  4604. "ComponentData": {
  4605. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4606. "$type": "NodeSaveData"
  4607. },
  4608. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4609. "$type": "GeneralNodeTitleComponentSaveData",
  4610. "PaletteOverride": "TestingNodeTitlePalette"
  4611. },
  4612. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4613. "$type": "GeometrySaveData",
  4614. "Position": [
  4615. 1720.0,
  4616. -80.0
  4617. ]
  4618. },
  4619. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4620. "$type": "StylingComponentSaveData",
  4621. "SubStyle": ".method"
  4622. },
  4623. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4624. "$type": "PersistentIdComponentSaveData",
  4625. "PersistentId": "{FE161D22-EFCE-4E7F-84DA-5F3177BAAC90}"
  4626. }
  4627. }
  4628. }
  4629. },
  4630. {
  4631. "Key": {
  4632. "id": 76878954333351
  4633. },
  4634. "Value": {
  4635. "ComponentData": {
  4636. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4637. "$type": "NodeSaveData"
  4638. },
  4639. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4640. "$type": "GeneralNodeTitleComponentSaveData",
  4641. "PaletteOverride": "LogicNodeTitlePalette"
  4642. },
  4643. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4644. "$type": "GeometrySaveData",
  4645. "Position": [
  4646. 440.0,
  4647. 260.0
  4648. ]
  4649. },
  4650. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4651. "$type": "StylingComponentSaveData"
  4652. },
  4653. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4654. "$type": "PersistentIdComponentSaveData",
  4655. "PersistentId": "{22723536-5307-4183-A1A6-34926A190DCA}"
  4656. }
  4657. }
  4658. }
  4659. },
  4660. {
  4661. "Key": {
  4662. "id": 76883249300647
  4663. },
  4664. "Value": {
  4665. "ComponentData": {
  4666. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4667. "$type": "NodeSaveData"
  4668. },
  4669. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4670. "$type": "GeneralNodeTitleComponentSaveData",
  4671. "PaletteOverride": "SetVariableNodeTitlePalette"
  4672. },
  4673. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4674. "$type": "GeometrySaveData",
  4675. "Position": [
  4676. 1720.0,
  4677. 620.0
  4678. ]
  4679. },
  4680. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4681. "$type": "StylingComponentSaveData",
  4682. "SubStyle": ".setVariable"
  4683. },
  4684. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4685. "$type": "PersistentIdComponentSaveData",
  4686. "PersistentId": "{24EF7C58-EC0E-4B6A-B809-B846794B9E03}"
  4687. }
  4688. }
  4689. }
  4690. },
  4691. {
  4692. "Key": {
  4693. "id": 76887544267943
  4694. },
  4695. "Value": {
  4696. "ComponentData": {
  4697. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4698. "$type": "NodeSaveData"
  4699. },
  4700. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4701. "$type": "GeneralNodeTitleComponentSaveData",
  4702. "PaletteOverride": "DefaultNodeTitlePalette"
  4703. },
  4704. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4705. "$type": "GeometrySaveData",
  4706. "Position": [
  4707. 100.0,
  4708. 220.0
  4709. ]
  4710. },
  4711. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4712. "$type": "StylingComponentSaveData"
  4713. },
  4714. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4715. "$type": "PersistentIdComponentSaveData",
  4716. "PersistentId": "{D00659BC-4BCA-42E1-A3D9-BFBB58E78C32}"
  4717. }
  4718. }
  4719. }
  4720. },
  4721. {
  4722. "Key": {
  4723. "id": 76891839235239
  4724. },
  4725. "Value": {
  4726. "ComponentData": {
  4727. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4728. "$type": "NodeSaveData"
  4729. },
  4730. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4731. "$type": "GeneralNodeTitleComponentSaveData",
  4732. "PaletteOverride": "TestingNodeTitlePalette"
  4733. },
  4734. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4735. "$type": "GeometrySaveData",
  4736. "Position": [
  4737. 2040.0,
  4738. -100.0
  4739. ]
  4740. },
  4741. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4742. "$type": "StylingComponentSaveData",
  4743. "SubStyle": ".method"
  4744. },
  4745. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4746. "$type": "PersistentIdComponentSaveData",
  4747. "PersistentId": "{93B1AE1A-1FAE-4AA5-AA6F-E874ECD5A3B3}"
  4748. }
  4749. }
  4750. }
  4751. },
  4752. {
  4753. "Key": {
  4754. "id": 76896134202535
  4755. },
  4756. "Value": {
  4757. "ComponentData": {
  4758. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4759. "$type": "NodeSaveData"
  4760. },
  4761. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4762. "$type": "GeneralNodeTitleComponentSaveData",
  4763. "PaletteOverride": "MathNodeTitlePalette"
  4764. },
  4765. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4766. "$type": "GeometrySaveData",
  4767. "Position": [
  4768. 780.0,
  4769. 620.0
  4770. ]
  4771. },
  4772. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4773. "$type": "StylingComponentSaveData",
  4774. "SubStyle": ".math"
  4775. },
  4776. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4777. "$type": "PersistentIdComponentSaveData",
  4778. "PersistentId": "{2680B35B-B311-40F9-9584-9DCA49564AB3}"
  4779. }
  4780. }
  4781. }
  4782. },
  4783. {
  4784. "Key": {
  4785. "id": 76900429169831
  4786. },
  4787. "Value": {
  4788. "ComponentData": {
  4789. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4790. "$type": "NodeSaveData"
  4791. },
  4792. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4793. "$type": "GeneralNodeTitleComponentSaveData",
  4794. "PaletteOverride": "TestingNodeTitlePalette"
  4795. },
  4796. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4797. "$type": "GeometrySaveData",
  4798. "Position": [
  4799. 940.0,
  4800. -80.0
  4801. ]
  4802. },
  4803. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4804. "$type": "StylingComponentSaveData",
  4805. "SubStyle": ".method"
  4806. },
  4807. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4808. "$type": "PersistentIdComponentSaveData",
  4809. "PersistentId": "{76751B7F-2629-4F7F-81F1-C076F0AF0E8E}"
  4810. }
  4811. }
  4812. }
  4813. },
  4814. {
  4815. "Key": {
  4816. "id": 76904724137127
  4817. },
  4818. "Value": {
  4819. "ComponentData": {
  4820. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4821. "$type": "NodeSaveData"
  4822. },
  4823. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4824. "$type": "GeneralNodeTitleComponentSaveData",
  4825. "PaletteOverride": "SetVariableNodeTitlePalette"
  4826. },
  4827. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4828. "$type": "GeometrySaveData",
  4829. "Position": [
  4830. 2020.0,
  4831. 620.0
  4832. ]
  4833. },
  4834. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4835. "$type": "StylingComponentSaveData",
  4836. "SubStyle": ".setVariable"
  4837. },
  4838. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4839. "$type": "PersistentIdComponentSaveData",
  4840. "PersistentId": "{92419E68-842B-4513-810E-61D3E98C47A6}"
  4841. }
  4842. }
  4843. }
  4844. },
  4845. {
  4846. "Key": {
  4847. "id": 76909019104423
  4848. },
  4849. "Value": {
  4850. "ComponentData": {
  4851. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4852. "$type": "NodeSaveData"
  4853. },
  4854. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4855. "$type": "GeneralNodeTitleComponentSaveData",
  4856. "PaletteOverride": "MathNodeTitlePalette"
  4857. },
  4858. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4859. "$type": "GeometrySaveData",
  4860. "Position": [
  4861. 780.0,
  4862. 320.0
  4863. ]
  4864. },
  4865. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4866. "$type": "StylingComponentSaveData",
  4867. "SubStyle": ".math"
  4868. },
  4869. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4870. "$type": "PersistentIdComponentSaveData",
  4871. "PersistentId": "{6389090D-B94D-4971-9990-D270A9AF2DB8}"
  4872. }
  4873. }
  4874. }
  4875. },
  4876. {
  4877. "Key": {
  4878. "id": 76913314071719
  4879. },
  4880. "Value": {
  4881. "ComponentData": {
  4882. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4883. "$type": "NodeSaveData"
  4884. },
  4885. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4886. "$type": "GeneralNodeTitleComponentSaveData",
  4887. "PaletteOverride": "MathNodeTitlePalette"
  4888. },
  4889. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4890. "$type": "GeometrySaveData",
  4891. "Position": [
  4892. 500.0,
  4893. 1340.0
  4894. ]
  4895. },
  4896. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4897. "$type": "StylingComponentSaveData",
  4898. "SubStyle": ".math"
  4899. },
  4900. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4901. "$type": "PersistentIdComponentSaveData",
  4902. "PersistentId": "{FC1268F0-50C1-40FF-96FC-C44115D9D02C}"
  4903. }
  4904. }
  4905. }
  4906. },
  4907. {
  4908. "Key": {
  4909. "id": 76917609039015
  4910. },
  4911. "Value": {
  4912. "ComponentData": {
  4913. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4914. "$type": "NodeSaveData"
  4915. },
  4916. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4917. "$type": "GeneralNodeTitleComponentSaveData",
  4918. "PaletteOverride": "GetVariableNodeTitlePalette"
  4919. },
  4920. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4921. "$type": "GeometrySaveData",
  4922. "Position": [
  4923. 1420.0,
  4924. 320.0
  4925. ]
  4926. },
  4927. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4928. "$type": "StylingComponentSaveData",
  4929. "SubStyle": ".getVariable"
  4930. },
  4931. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4932. "$type": "PersistentIdComponentSaveData",
  4933. "PersistentId": "{E29A29FC-A3AC-44E3-A90C-A8139F750F76}"
  4934. }
  4935. }
  4936. }
  4937. },
  4938. {
  4939. "Key": {
  4940. "id": 76921904006311
  4941. },
  4942. "Value": {
  4943. "ComponentData": {
  4944. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4945. "$type": "NodeSaveData"
  4946. },
  4947. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4948. "$type": "GeneralNodeTitleComponentSaveData",
  4949. "PaletteOverride": "SetVariableNodeTitlePalette"
  4950. },
  4951. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4952. "$type": "GeometrySaveData",
  4953. "Position": [
  4954. 2020.0,
  4955. 320.0
  4956. ]
  4957. },
  4958. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4959. "$type": "StylingComponentSaveData",
  4960. "SubStyle": ".setVariable"
  4961. },
  4962. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4963. "$type": "PersistentIdComponentSaveData",
  4964. "PersistentId": "{7AF0E020-1139-498F-BCE9-9F7901317C8A}"
  4965. }
  4966. }
  4967. }
  4968. },
  4969. {
  4970. "Key": {
  4971. "id": 76926198973607
  4972. },
  4973. "Value": {
  4974. "ComponentData": {
  4975. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4976. "$type": "NodeSaveData"
  4977. },
  4978. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4979. "$type": "GeneralNodeTitleComponentSaveData",
  4980. "PaletteOverride": "MathNodeTitlePalette"
  4981. },
  4982. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4983. "$type": "GeometrySaveData",
  4984. "Position": [
  4985. 500.0,
  4986. 1660.0
  4987. ]
  4988. },
  4989. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4990. "$type": "StylingComponentSaveData",
  4991. "SubStyle": ".math"
  4992. },
  4993. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4994. "$type": "PersistentIdComponentSaveData",
  4995. "PersistentId": "{6121CE4B-9CF2-4680-895D-518261F04345}"
  4996. }
  4997. }
  4998. }
  4999. },
  5000. {
  5001. "Key": {
  5002. "id": 76930493940903
  5003. },
  5004. "Value": {
  5005. "ComponentData": {
  5006. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5007. "$type": "NodeSaveData"
  5008. },
  5009. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5010. "$type": "GeometrySaveData",
  5011. "Position": [
  5012. 240.0,
  5013. 1280.0
  5014. ]
  5015. },
  5016. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  5017. "$type": "EBusHandlerNodeDescriptorSaveData",
  5018. "EventIds": [
  5019. {
  5020. "Value": 3939979346
  5021. }
  5022. ]
  5023. },
  5024. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5025. "$type": "StylingComponentSaveData"
  5026. },
  5027. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5028. "$type": "PersistentIdComponentSaveData",
  5029. "PersistentId": "{8C9623B0-7EBD-466E-B9C3-E5DCCB1B8CC1}"
  5030. }
  5031. }
  5032. }
  5033. }
  5034. ],
  5035. "StatisticsHelper": {
  5036. "InstanceCounter": [
  5037. {
  5038. "Key": 1244476766431948410,
  5039. "Value": 4
  5040. },
  5041. {
  5042. "Key": 4053150093067829293,
  5043. "Value": 2
  5044. },
  5045. {
  5046. "Key": 4199610336680704683,
  5047. "Value": 1
  5048. },
  5049. {
  5050. "Key": 4271004856738215795,
  5051. "Value": 1
  5052. },
  5053. {
  5054. "Key": 4846425829683551338,
  5055. "Value": 2
  5056. },
  5057. {
  5058. "Key": 5842117479013396256,
  5059. "Value": 2
  5060. },
  5061. {
  5062. "Key": 10204019744198319120,
  5063. "Value": 1
  5064. },
  5065. {
  5066. "Key": 11614751517507390371,
  5067. "Value": 2
  5068. },
  5069. {
  5070. "Key": 11972506139882991723,
  5071. "Value": 2
  5072. },
  5073. {
  5074. "Key": 11983076003173356132,
  5075. "Value": 1
  5076. },
  5077. {
  5078. "Key": 16489459624480566096,
  5079. "Value": 2
  5080. },
  5081. {
  5082. "Key": 16560109908053259928,
  5083. "Value": 2
  5084. }
  5085. ]
  5086. }
  5087. },
  5088. "Component_[8390568117203905540]": {
  5089. "$type": "EditorGraphVariableManagerComponent",
  5090. "Id": 8390568117203905540,
  5091. "m_variableData": {
  5092. "m_nameVariableMap": [
  5093. {
  5094. "Key": {
  5095. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  5096. },
  5097. "Value": {
  5098. "Datum": {
  5099. "isOverloadedStorage": false,
  5100. "scriptCanvasType": {
  5101. "m_type": 8
  5102. },
  5103. "isNullPointer": false,
  5104. "$type": "Vector3",
  5105. "value": [
  5106. 0.0,
  5107. 0.0,
  5108. 0.0
  5109. ],
  5110. "label": "Vector3"
  5111. },
  5112. "VariableId": {
  5113. "m_id": "{097F8090-21C3-48F5-B002-568C5E2DE9E4}"
  5114. },
  5115. "VariableName": "TargetVarible_Vector"
  5116. }
  5117. },
  5118. {
  5119. "Key": {
  5120. "m_id": "{24A824E9-D978-4417-8472-93B73485117A}"
  5121. },
  5122. "Value": {
  5123. "Datum": {
  5124. "isOverloadedStorage": false,
  5125. "scriptCanvasType": {
  5126. "m_type": 3
  5127. },
  5128. "isNullPointer": false,
  5129. "$type": "double",
  5130. "value": 0.0,
  5131. "label": "Counter_Vector"
  5132. },
  5133. "VariableId": {
  5134. "m_id": "{24A824E9-D978-4417-8472-93B73485117A}"
  5135. },
  5136. "VariableName": "Counter_Vector"
  5137. }
  5138. },
  5139. {
  5140. "Key": {
  5141. "m_id": "{265E1DFF-2502-4B9A-B7E6-C9F02863758D}"
  5142. },
  5143. "Value": {
  5144. "Datum": {
  5145. "isOverloadedStorage": false,
  5146. "scriptCanvasType": {
  5147. "m_type": 3
  5148. },
  5149. "isNullPointer": false,
  5150. "$type": "double",
  5151. "value": 0.0,
  5152. "label": "Number"
  5153. },
  5154. "VariableId": {
  5155. "m_id": "{265E1DFF-2502-4B9A-B7E6-C9F02863758D}"
  5156. },
  5157. "VariableName": "Counter"
  5158. }
  5159. },
  5160. {
  5161. "Key": {
  5162. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  5163. },
  5164. "Value": {
  5165. "Datum": {
  5166. "isOverloadedStorage": false,
  5167. "scriptCanvasType": {
  5168. "m_type": 3
  5169. },
  5170. "isNullPointer": false,
  5171. "$type": "double",
  5172. "value": 0.0,
  5173. "label": "Number"
  5174. },
  5175. "VariableId": {
  5176. "m_id": "{51E4E38F-32C3-41F4-8A99-98A59C76E270}"
  5177. },
  5178. "VariableName": "TargetVariable"
  5179. }
  5180. },
  5181. {
  5182. "Key": {
  5183. "m_id": "{FD797D01-AD59-4CC2-9B7B-19A39091A1D4}"
  5184. },
  5185. "Value": {
  5186. "Datum": {
  5187. "isOverloadedStorage": false,
  5188. "scriptCanvasType": {
  5189. "m_type": 3
  5190. },
  5191. "isNullPointer": false,
  5192. "$type": "double",
  5193. "value": 10.0,
  5194. "label": "Number"
  5195. },
  5196. "VariableId": {
  5197. "m_id": "{FD797D01-AD59-4CC2-9B7B-19A39091A1D4}"
  5198. },
  5199. "VariableName": "Repetitions"
  5200. }
  5201. }
  5202. ]
  5203. }
  5204. }
  5205. }
  5206. }
  5207. }
  5208. }