EnemyMove.scriptcanvas 470 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 2733568956563
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[12290301574983515216]": {
  13. "$type": "EditorGraph",
  14. "Id": 12290301574983515216,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 2767928694931
  20. },
  21. "Name": "SC-Node(Get Entity By Tag)",
  22. "Components": {
  23. "Component_[10669449339653205226]": {
  24. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  25. "Id": 10669449339653205226,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{73F5CDF6-299C-4B79-95FE-73EE0EB7484A}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "Tag",
  37. "Descriptor": {
  38. "ConnectionType": 1,
  39. "SlotType": 2
  40. },
  41. "DataType": 1
  42. },
  43. {
  44. "id": {
  45. "m_id": "{5A90C36A-2599-4E3A-B3C4-953E9DB152AA}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "In",
  53. "Descriptor": {
  54. "ConnectionType": 1,
  55. "SlotType": 1
  56. }
  57. },
  58. {
  59. "id": {
  60. "m_id": "{7FDA7960-A551-4667-A5FD-F9CC86785A05}"
  61. },
  62. "contracts": [
  63. {
  64. "$type": "SlotTypeContract"
  65. }
  66. ],
  67. "slotName": "Out",
  68. "Descriptor": {
  69. "ConnectionType": 2,
  70. "SlotType": 1
  71. }
  72. },
  73. {
  74. "id": {
  75. "m_id": "{A1E2A164-8B7A-4520-A492-C3952EFE2DBA}"
  76. },
  77. "contracts": [
  78. {
  79. "$type": "SlotTypeContract"
  80. }
  81. ],
  82. "slotName": "EntityId",
  83. "DisplayDataType": {
  84. "m_type": 1
  85. },
  86. "Descriptor": {
  87. "ConnectionType": 2,
  88. "SlotType": 2
  89. },
  90. "DataType": 1,
  91. "IsReference": true,
  92. "VariableReference": {
  93. "m_id": "{0972CFBE-B68B-4884-BE5F-C98D41ECFC9D}"
  94. }
  95. }
  96. ],
  97. "Datums": [
  98. {
  99. "isOverloadedStorage": false,
  100. "scriptCanvasType": {
  101. "m_type": 13
  102. },
  103. "isNullPointer": false,
  104. "$type": "Crc32",
  105. "value": {
  106. "Value": 2551806565
  107. },
  108. "label": "Tag"
  109. }
  110. ],
  111. "methodType": 0,
  112. "methodName": "Get Entity By Tag",
  113. "className": "TagGlobalRequestBus",
  114. "resultSlotIDs": [
  115. {}
  116. ],
  117. "inputSlots": [
  118. {
  119. "m_id": "{73F5CDF6-299C-4B79-95FE-73EE0EB7484A}"
  120. }
  121. ],
  122. "prettyClassName": "TagGlobalRequestBus"
  123. }
  124. }
  125. },
  126. {
  127. "Id": {
  128. "id": 2785108564115
  129. },
  130. "Name": "SC-Node(DelayNodeableNode)",
  131. "Components": {
  132. "Component_[10677057919341449584]": {
  133. "$type": "DelayNodeableNode",
  134. "Id": 10677057919341449584,
  135. "Slots": [
  136. {
  137. "id": {
  138. "m_id": "{61F539E2-A361-4136-9073-6D9344BCAFBA}"
  139. },
  140. "contracts": [
  141. {
  142. "$type": "SlotTypeContract"
  143. }
  144. ],
  145. "slotName": "Start",
  146. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  147. "DisplayGroup": {
  148. "Value": 2675529103
  149. },
  150. "Descriptor": {
  151. "ConnectionType": 1,
  152. "SlotType": 1
  153. }
  154. },
  155. {
  156. "id": {
  157. "m_id": "{D41603BE-E9A3-449A-842A-54A7FECBA60B}"
  158. },
  159. "contracts": [
  160. {
  161. "$type": "SlotTypeContract"
  162. }
  163. ],
  164. "slotName": "Start: Time",
  165. "toolTip": "Amount of time to delay, in seconds.",
  166. "DisplayGroup": {
  167. "Value": 2675529103
  168. },
  169. "Descriptor": {
  170. "ConnectionType": 1,
  171. "SlotType": 2
  172. },
  173. "DataType": 1
  174. },
  175. {
  176. "id": {
  177. "m_id": "{6970B4A6-1A86-4449-BA9D-29F865498718}"
  178. },
  179. "contracts": [
  180. {
  181. "$type": "SlotTypeContract"
  182. }
  183. ],
  184. "slotName": "Start: Loop",
  185. "toolTip": "If true, the delay will restart after triggering the Out slot.",
  186. "DisplayGroup": {
  187. "Value": 2675529103
  188. },
  189. "Descriptor": {
  190. "ConnectionType": 1,
  191. "SlotType": 2
  192. },
  193. "DataType": 1
  194. },
  195. {
  196. "id": {
  197. "m_id": "{570B358B-AB31-446D-BC72-D84E92F33DF0}"
  198. },
  199. "contracts": [
  200. {
  201. "$type": "SlotTypeContract"
  202. }
  203. ],
  204. "slotName": "Start: Hold",
  205. "toolTip": "Amount of time to wait before restarting, in seconds.",
  206. "DisplayGroup": {
  207. "Value": 2675529103
  208. },
  209. "Descriptor": {
  210. "ConnectionType": 1,
  211. "SlotType": 2
  212. },
  213. "DataType": 1
  214. },
  215. {
  216. "id": {
  217. "m_id": "{16072723-4A5B-4596-A0AA-BB8A1DEA7627}"
  218. },
  219. "contracts": [
  220. {
  221. "$type": "SlotTypeContract"
  222. }
  223. ],
  224. "slotName": "On Start",
  225. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  226. "DisplayGroup": {
  227. "Value": 2675529103
  228. },
  229. "Descriptor": {
  230. "ConnectionType": 2,
  231. "SlotType": 1
  232. }
  233. },
  234. {
  235. "id": {
  236. "m_id": "{6D8E2E73-1C15-409A-8923-9669B78DEA9A}"
  237. },
  238. "contracts": [
  239. {
  240. "$type": "SlotTypeContract"
  241. }
  242. ],
  243. "slotName": "Reset",
  244. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  245. "DisplayGroup": {
  246. "Value": 1352515405
  247. },
  248. "Descriptor": {
  249. "ConnectionType": 1,
  250. "SlotType": 1
  251. }
  252. },
  253. {
  254. "id": {
  255. "m_id": "{62DBC20F-A44B-44CB-9FEB-ED7937003300}"
  256. },
  257. "contracts": [
  258. {
  259. "$type": "SlotTypeContract"
  260. }
  261. ],
  262. "slotName": "Reset: Time",
  263. "toolTip": "Amount of time to delay, in seconds.",
  264. "DisplayGroup": {
  265. "Value": 1352515405
  266. },
  267. "Descriptor": {
  268. "ConnectionType": 1,
  269. "SlotType": 2
  270. },
  271. "DataType": 1
  272. },
  273. {
  274. "id": {
  275. "m_id": "{61EAB232-1BBC-4824-B39B-28BA56E14871}"
  276. },
  277. "contracts": [
  278. {
  279. "$type": "SlotTypeContract"
  280. }
  281. ],
  282. "slotName": "Reset: Loop",
  283. "toolTip": "If true, the delay will restart after triggering the Out slot.",
  284. "DisplayGroup": {
  285. "Value": 1352515405
  286. },
  287. "Descriptor": {
  288. "ConnectionType": 1,
  289. "SlotType": 2
  290. },
  291. "DataType": 1
  292. },
  293. {
  294. "id": {
  295. "m_id": "{36544F77-22C0-463F-8A92-F06171703871}"
  296. },
  297. "contracts": [
  298. {
  299. "$type": "SlotTypeContract"
  300. }
  301. ],
  302. "slotName": "Reset: Hold",
  303. "toolTip": "Amount of time to wait before restarting, in seconds.",
  304. "DisplayGroup": {
  305. "Value": 1352515405
  306. },
  307. "Descriptor": {
  308. "ConnectionType": 1,
  309. "SlotType": 2
  310. },
  311. "DataType": 1
  312. },
  313. {
  314. "id": {
  315. "m_id": "{EEE01C69-EB9E-4E3B-951D-9D40A505243B}"
  316. },
  317. "contracts": [
  318. {
  319. "$type": "SlotTypeContract"
  320. }
  321. ],
  322. "slotName": "On Reset",
  323. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  324. "DisplayGroup": {
  325. "Value": 1352515405
  326. },
  327. "Descriptor": {
  328. "ConnectionType": 2,
  329. "SlotType": 1
  330. }
  331. },
  332. {
  333. "id": {
  334. "m_id": "{5EA1379A-287A-4412-BD67-0C32DCBA1773}"
  335. },
  336. "contracts": [
  337. {
  338. "$type": "SlotTypeContract"
  339. }
  340. ],
  341. "slotName": "Cancel",
  342. "toolTip": "Cancels the current delay.",
  343. "DisplayGroup": {
  344. "Value": 1444332914
  345. },
  346. "Descriptor": {
  347. "ConnectionType": 1,
  348. "SlotType": 1
  349. }
  350. },
  351. {
  352. "id": {
  353. "m_id": "{061367CD-DE3E-4D6F-940A-2C17C5FF6CC7}"
  354. },
  355. "contracts": [
  356. {
  357. "$type": "SlotTypeContract"
  358. }
  359. ],
  360. "slotName": "On Cancel",
  361. "toolTip": "Cancels the current delay.",
  362. "DisplayGroup": {
  363. "Value": 1444332914
  364. },
  365. "Descriptor": {
  366. "ConnectionType": 2,
  367. "SlotType": 1
  368. }
  369. },
  370. {
  371. "id": {
  372. "m_id": "{14C8C8BD-20A2-49C8-861A-841AC4BC626B}"
  373. },
  374. "contracts": [
  375. {
  376. "$type": "SlotTypeContract"
  377. }
  378. ],
  379. "slotName": "Done",
  380. "toolTip": "Signaled when the delay reaches zero.",
  381. "DisplayGroup": {
  382. "Value": 271442091
  383. },
  384. "Descriptor": {
  385. "ConnectionType": 2,
  386. "SlotType": 1
  387. },
  388. "IsLatent": true
  389. },
  390. {
  391. "id": {
  392. "m_id": "{F2C197FA-90A2-4F16-A8AD-53423EC931AC}"
  393. },
  394. "contracts": [
  395. {
  396. "$type": "SlotTypeContract"
  397. }
  398. ],
  399. "slotName": "Elapsed",
  400. "toolTip": "The amount of time that has elapsed since the delay began.",
  401. "DisplayDataType": {
  402. "m_type": 3
  403. },
  404. "DisplayGroup": {
  405. "Value": 271442091
  406. },
  407. "Descriptor": {
  408. "ConnectionType": 2,
  409. "SlotType": 2
  410. },
  411. "DataType": 1
  412. }
  413. ],
  414. "Datums": [
  415. {
  416. "isOverloadedStorage": false,
  417. "scriptCanvasType": {
  418. "m_type": 3
  419. },
  420. "isNullPointer": false,
  421. "$type": "double",
  422. "value": 0.0,
  423. "label": "Start: Time"
  424. },
  425. {
  426. "isOverloadedStorage": false,
  427. "scriptCanvasType": {
  428. "m_type": 0
  429. },
  430. "isNullPointer": false,
  431. "$type": "bool",
  432. "value": false,
  433. "label": "Start: Loop"
  434. },
  435. {
  436. "isOverloadedStorage": false,
  437. "scriptCanvasType": {
  438. "m_type": 3
  439. },
  440. "isNullPointer": false,
  441. "$type": "double",
  442. "value": 0.0,
  443. "label": "Start: Hold"
  444. },
  445. {
  446. "isOverloadedStorage": false,
  447. "scriptCanvasType": {
  448. "m_type": 3
  449. },
  450. "isNullPointer": false,
  451. "$type": "double",
  452. "value": 0.0,
  453. "label": "Reset: Time"
  454. },
  455. {
  456. "isOverloadedStorage": false,
  457. "scriptCanvasType": {
  458. "m_type": 0
  459. },
  460. "isNullPointer": false,
  461. "$type": "bool",
  462. "value": false,
  463. "label": "Reset: Loop"
  464. },
  465. {
  466. "isOverloadedStorage": false,
  467. "scriptCanvasType": {
  468. "m_type": 3
  469. },
  470. "isNullPointer": false,
  471. "$type": "double",
  472. "value": 0.0,
  473. "label": "Reset: Hold"
  474. }
  475. ],
  476. "slotExecutionMap": {
  477. "ins": [
  478. {
  479. "_slotId": {
  480. "m_id": "{61F539E2-A361-4136-9073-6D9344BCAFBA}"
  481. },
  482. "_inputs": [
  483. {
  484. "_slotId": {
  485. "m_id": "{D41603BE-E9A3-449A-842A-54A7FECBA60B}"
  486. }
  487. },
  488. {
  489. "_slotId": {
  490. "m_id": "{6970B4A6-1A86-4449-BA9D-29F865498718}"
  491. }
  492. },
  493. {
  494. "_slotId": {
  495. "m_id": "{570B358B-AB31-446D-BC72-D84E92F33DF0}"
  496. }
  497. }
  498. ],
  499. "_outs": [
  500. {
  501. "_slotId": {
  502. "m_id": "{16072723-4A5B-4596-A0AA-BB8A1DEA7627}"
  503. },
  504. "_name": "On Start"
  505. }
  506. ]
  507. },
  508. {
  509. "_slotId": {
  510. "m_id": "{6D8E2E73-1C15-409A-8923-9669B78DEA9A}"
  511. },
  512. "_inputs": [
  513. {
  514. "_slotId": {
  515. "m_id": "{62DBC20F-A44B-44CB-9FEB-ED7937003300}"
  516. }
  517. },
  518. {
  519. "_slotId": {
  520. "m_id": "{61EAB232-1BBC-4824-B39B-28BA56E14871}"
  521. }
  522. },
  523. {
  524. "_slotId": {
  525. "m_id": "{36544F77-22C0-463F-8A92-F06171703871}"
  526. }
  527. }
  528. ],
  529. "_outs": [
  530. {
  531. "_slotId": {
  532. "m_id": "{EEE01C69-EB9E-4E3B-951D-9D40A505243B}"
  533. },
  534. "_name": "On Reset"
  535. }
  536. ]
  537. },
  538. {
  539. "_slotId": {
  540. "m_id": "{5EA1379A-287A-4412-BD67-0C32DCBA1773}"
  541. },
  542. "_outs": [
  543. {
  544. "_slotId": {
  545. "m_id": "{061367CD-DE3E-4D6F-940A-2C17C5FF6CC7}"
  546. },
  547. "_name": "On Cancel"
  548. }
  549. ]
  550. }
  551. ],
  552. "latents": [
  553. {
  554. "_slotId": {
  555. "m_id": "{14C8C8BD-20A2-49C8-861A-841AC4BC626B}"
  556. },
  557. "_name": "Done",
  558. "_outputs": [
  559. {
  560. "_slotId": {
  561. "m_id": "{F2C197FA-90A2-4F16-A8AD-53423EC931AC}"
  562. }
  563. }
  564. ]
  565. }
  566. ]
  567. }
  568. }
  569. }
  570. },
  571. {
  572. "Id": {
  573. "id": 2802288433299
  574. },
  575. "Name": "SC-Node(DelayNodeableNode)",
  576. "Components": {
  577. "Component_[10677057919341449584]": {
  578. "$type": "DelayNodeableNode",
  579. "Id": 10677057919341449584,
  580. "Slots": [
  581. {
  582. "id": {
  583. "m_id": "{61F539E2-A361-4136-9073-6D9344BCAFBA}"
  584. },
  585. "contracts": [
  586. {
  587. "$type": "SlotTypeContract"
  588. }
  589. ],
  590. "slotName": "Start",
  591. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  592. "DisplayGroup": {
  593. "Value": 2675529103
  594. },
  595. "Descriptor": {
  596. "ConnectionType": 1,
  597. "SlotType": 1
  598. }
  599. },
  600. {
  601. "id": {
  602. "m_id": "{D41603BE-E9A3-449A-842A-54A7FECBA60B}"
  603. },
  604. "contracts": [
  605. {
  606. "$type": "SlotTypeContract"
  607. }
  608. ],
  609. "slotName": "Start: Time",
  610. "toolTip": "Amount of time to delay, in seconds.",
  611. "DisplayGroup": {
  612. "Value": 2675529103
  613. },
  614. "Descriptor": {
  615. "ConnectionType": 1,
  616. "SlotType": 2
  617. },
  618. "DataType": 1
  619. },
  620. {
  621. "id": {
  622. "m_id": "{6970B4A6-1A86-4449-BA9D-29F865498718}"
  623. },
  624. "contracts": [
  625. {
  626. "$type": "SlotTypeContract"
  627. }
  628. ],
  629. "slotName": "Start: Loop",
  630. "toolTip": "If true, the delay will restart after triggering the Out slot.",
  631. "DisplayGroup": {
  632. "Value": 2675529103
  633. },
  634. "Descriptor": {
  635. "ConnectionType": 1,
  636. "SlotType": 2
  637. },
  638. "DataType": 1
  639. },
  640. {
  641. "id": {
  642. "m_id": "{570B358B-AB31-446D-BC72-D84E92F33DF0}"
  643. },
  644. "contracts": [
  645. {
  646. "$type": "SlotTypeContract"
  647. }
  648. ],
  649. "slotName": "Start: Hold",
  650. "toolTip": "Amount of time to wait before restarting, in seconds.",
  651. "DisplayGroup": {
  652. "Value": 2675529103
  653. },
  654. "Descriptor": {
  655. "ConnectionType": 1,
  656. "SlotType": 2
  657. },
  658. "DataType": 1,
  659. "IsReference": true,
  660. "VariableReference": {
  661. "m_id": "{4E2645FE-845E-4BB7-9CD8-F4517153C0D6}"
  662. }
  663. },
  664. {
  665. "id": {
  666. "m_id": "{16072723-4A5B-4596-A0AA-BB8A1DEA7627}"
  667. },
  668. "contracts": [
  669. {
  670. "$type": "SlotTypeContract"
  671. }
  672. ],
  673. "slotName": "On Start",
  674. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  675. "DisplayGroup": {
  676. "Value": 2675529103
  677. },
  678. "Descriptor": {
  679. "ConnectionType": 2,
  680. "SlotType": 1
  681. }
  682. },
  683. {
  684. "id": {
  685. "m_id": "{6D8E2E73-1C15-409A-8923-9669B78DEA9A}"
  686. },
  687. "contracts": [
  688. {
  689. "$type": "SlotTypeContract"
  690. }
  691. ],
  692. "slotName": "Reset",
  693. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  694. "DisplayGroup": {
  695. "Value": 1352515405
  696. },
  697. "Descriptor": {
  698. "ConnectionType": 1,
  699. "SlotType": 1
  700. }
  701. },
  702. {
  703. "id": {
  704. "m_id": "{62DBC20F-A44B-44CB-9FEB-ED7937003300}"
  705. },
  706. "contracts": [
  707. {
  708. "$type": "SlotTypeContract"
  709. }
  710. ],
  711. "slotName": "Reset: Time",
  712. "toolTip": "Amount of time to delay, in seconds.",
  713. "DisplayGroup": {
  714. "Value": 1352515405
  715. },
  716. "Descriptor": {
  717. "ConnectionType": 1,
  718. "SlotType": 2
  719. },
  720. "DataType": 1
  721. },
  722. {
  723. "id": {
  724. "m_id": "{61EAB232-1BBC-4824-B39B-28BA56E14871}"
  725. },
  726. "contracts": [
  727. {
  728. "$type": "SlotTypeContract"
  729. }
  730. ],
  731. "slotName": "Reset: Loop",
  732. "toolTip": "If true, the delay will restart after triggering the Out slot.",
  733. "DisplayGroup": {
  734. "Value": 1352515405
  735. },
  736. "Descriptor": {
  737. "ConnectionType": 1,
  738. "SlotType": 2
  739. },
  740. "DataType": 1
  741. },
  742. {
  743. "id": {
  744. "m_id": "{36544F77-22C0-463F-8A92-F06171703871}"
  745. },
  746. "contracts": [
  747. {
  748. "$type": "SlotTypeContract"
  749. }
  750. ],
  751. "slotName": "Reset: Hold",
  752. "toolTip": "Amount of time to wait before restarting, in seconds.",
  753. "DisplayGroup": {
  754. "Value": 1352515405
  755. },
  756. "Descriptor": {
  757. "ConnectionType": 1,
  758. "SlotType": 2
  759. },
  760. "DataType": 1
  761. },
  762. {
  763. "id": {
  764. "m_id": "{EEE01C69-EB9E-4E3B-951D-9D40A505243B}"
  765. },
  766. "contracts": [
  767. {
  768. "$type": "SlotTypeContract"
  769. }
  770. ],
  771. "slotName": "On Reset",
  772. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  773. "DisplayGroup": {
  774. "Value": 1352515405
  775. },
  776. "Descriptor": {
  777. "ConnectionType": 2,
  778. "SlotType": 1
  779. }
  780. },
  781. {
  782. "id": {
  783. "m_id": "{5EA1379A-287A-4412-BD67-0C32DCBA1773}"
  784. },
  785. "contracts": [
  786. {
  787. "$type": "SlotTypeContract"
  788. }
  789. ],
  790. "slotName": "Cancel",
  791. "toolTip": "Cancels the current delay.",
  792. "DisplayGroup": {
  793. "Value": 1444332914
  794. },
  795. "Descriptor": {
  796. "ConnectionType": 1,
  797. "SlotType": 1
  798. }
  799. },
  800. {
  801. "id": {
  802. "m_id": "{061367CD-DE3E-4D6F-940A-2C17C5FF6CC7}"
  803. },
  804. "contracts": [
  805. {
  806. "$type": "SlotTypeContract"
  807. }
  808. ],
  809. "slotName": "On Cancel",
  810. "toolTip": "Cancels the current delay.",
  811. "DisplayGroup": {
  812. "Value": 1444332914
  813. },
  814. "Descriptor": {
  815. "ConnectionType": 2,
  816. "SlotType": 1
  817. }
  818. },
  819. {
  820. "id": {
  821. "m_id": "{14C8C8BD-20A2-49C8-861A-841AC4BC626B}"
  822. },
  823. "contracts": [
  824. {
  825. "$type": "SlotTypeContract"
  826. }
  827. ],
  828. "slotName": "Done",
  829. "toolTip": "Signaled when the delay reaches zero.",
  830. "DisplayGroup": {
  831. "Value": 271442091
  832. },
  833. "Descriptor": {
  834. "ConnectionType": 2,
  835. "SlotType": 1
  836. },
  837. "IsLatent": true
  838. },
  839. {
  840. "id": {
  841. "m_id": "{F2C197FA-90A2-4F16-A8AD-53423EC931AC}"
  842. },
  843. "contracts": [
  844. {
  845. "$type": "SlotTypeContract"
  846. }
  847. ],
  848. "slotName": "Elapsed",
  849. "toolTip": "The amount of time that has elapsed since the delay began.",
  850. "DisplayDataType": {
  851. "m_type": 3
  852. },
  853. "DisplayGroup": {
  854. "Value": 271442091
  855. },
  856. "Descriptor": {
  857. "ConnectionType": 2,
  858. "SlotType": 2
  859. },
  860. "DataType": 1
  861. }
  862. ],
  863. "Datums": [
  864. {
  865. "isOverloadedStorage": false,
  866. "scriptCanvasType": {
  867. "m_type": 3
  868. },
  869. "isNullPointer": false,
  870. "$type": "double",
  871. "value": 0.0,
  872. "label": "Start: Time"
  873. },
  874. {
  875. "isOverloadedStorage": false,
  876. "scriptCanvasType": {
  877. "m_type": 0
  878. },
  879. "isNullPointer": false,
  880. "$type": "bool",
  881. "value": true,
  882. "label": "Start: Loop"
  883. },
  884. {
  885. "isOverloadedStorage": false,
  886. "scriptCanvasType": {
  887. "m_type": 3
  888. },
  889. "isNullPointer": false,
  890. "$type": "double",
  891. "value": 0.0,
  892. "label": "Start: Hold"
  893. },
  894. {
  895. "isOverloadedStorage": false,
  896. "scriptCanvasType": {
  897. "m_type": 3
  898. },
  899. "isNullPointer": false,
  900. "$type": "double",
  901. "value": 0.0,
  902. "label": "Reset: Time"
  903. },
  904. {
  905. "isOverloadedStorage": false,
  906. "scriptCanvasType": {
  907. "m_type": 0
  908. },
  909. "isNullPointer": false,
  910. "$type": "bool",
  911. "value": false,
  912. "label": "Reset: Loop"
  913. },
  914. {
  915. "isOverloadedStorage": false,
  916. "scriptCanvasType": {
  917. "m_type": 3
  918. },
  919. "isNullPointer": false,
  920. "$type": "double",
  921. "value": 0.0,
  922. "label": "Reset: Hold"
  923. }
  924. ],
  925. "slotExecutionMap": {
  926. "ins": [
  927. {
  928. "_slotId": {
  929. "m_id": "{61F539E2-A361-4136-9073-6D9344BCAFBA}"
  930. },
  931. "_inputs": [
  932. {
  933. "_slotId": {
  934. "m_id": "{D41603BE-E9A3-449A-842A-54A7FECBA60B}"
  935. }
  936. },
  937. {
  938. "_slotId": {
  939. "m_id": "{6970B4A6-1A86-4449-BA9D-29F865498718}"
  940. }
  941. },
  942. {
  943. "_slotId": {
  944. "m_id": "{570B358B-AB31-446D-BC72-D84E92F33DF0}"
  945. }
  946. }
  947. ],
  948. "_outs": [
  949. {
  950. "_slotId": {
  951. "m_id": "{16072723-4A5B-4596-A0AA-BB8A1DEA7627}"
  952. },
  953. "_name": "On Start"
  954. }
  955. ]
  956. },
  957. {
  958. "_slotId": {
  959. "m_id": "{6D8E2E73-1C15-409A-8923-9669B78DEA9A}"
  960. },
  961. "_inputs": [
  962. {
  963. "_slotId": {
  964. "m_id": "{62DBC20F-A44B-44CB-9FEB-ED7937003300}"
  965. }
  966. },
  967. {
  968. "_slotId": {
  969. "m_id": "{61EAB232-1BBC-4824-B39B-28BA56E14871}"
  970. }
  971. },
  972. {
  973. "_slotId": {
  974. "m_id": "{36544F77-22C0-463F-8A92-F06171703871}"
  975. }
  976. }
  977. ],
  978. "_outs": [
  979. {
  980. "_slotId": {
  981. "m_id": "{EEE01C69-EB9E-4E3B-951D-9D40A505243B}"
  982. },
  983. "_name": "On Reset"
  984. }
  985. ]
  986. },
  987. {
  988. "_slotId": {
  989. "m_id": "{5EA1379A-287A-4412-BD67-0C32DCBA1773}"
  990. },
  991. "_outs": [
  992. {
  993. "_slotId": {
  994. "m_id": "{061367CD-DE3E-4D6F-940A-2C17C5FF6CC7}"
  995. },
  996. "_name": "On Cancel"
  997. }
  998. ]
  999. }
  1000. ],
  1001. "latents": [
  1002. {
  1003. "_slotId": {
  1004. "m_id": "{14C8C8BD-20A2-49C8-861A-841AC4BC626B}"
  1005. },
  1006. "_name": "Done",
  1007. "_outputs": [
  1008. {
  1009. "_slotId": {
  1010. "m_id": "{F2C197FA-90A2-4F16-A8AD-53423EC931AC}"
  1011. }
  1012. }
  1013. ]
  1014. }
  1015. ]
  1016. }
  1017. }
  1018. }
  1019. },
  1020. {
  1021. "Id": {
  1022. "id": 2819468302483
  1023. },
  1024. "Name": "SC-Node(OperatorAdd)",
  1025. "Components": {
  1026. "Component_[11280137217556235457]": {
  1027. "$type": "OperatorAdd",
  1028. "Id": 11280137217556235457,
  1029. "Slots": [
  1030. {
  1031. "id": {
  1032. "m_id": "{D1C69C0C-CF12-41DD-B883-8B8C0BD865C2}"
  1033. },
  1034. "contracts": [
  1035. {
  1036. "$type": "SlotTypeContract"
  1037. }
  1038. ],
  1039. "slotName": "In",
  1040. "Descriptor": {
  1041. "ConnectionType": 1,
  1042. "SlotType": 1
  1043. }
  1044. },
  1045. {
  1046. "id": {
  1047. "m_id": "{6FA44DA0-B16D-4E19-9A23-01BC2799ACAF}"
  1048. },
  1049. "contracts": [
  1050. {
  1051. "$type": "SlotTypeContract"
  1052. }
  1053. ],
  1054. "slotName": "Out",
  1055. "Descriptor": {
  1056. "ConnectionType": 2,
  1057. "SlotType": 1
  1058. }
  1059. },
  1060. {
  1061. "id": {
  1062. "m_id": "{8AB5A9E2-2D24-4CA0-90DD-CA5CCEE925FB}"
  1063. },
  1064. "DynamicTypeOverride": 3,
  1065. "contracts": [
  1066. {
  1067. "$type": "SlotTypeContract"
  1068. },
  1069. {
  1070. "$type": "MathOperatorContract",
  1071. "NativeTypes": [
  1072. {
  1073. "m_type": 3
  1074. },
  1075. {
  1076. "m_type": 6
  1077. },
  1078. {
  1079. "m_type": 8
  1080. },
  1081. {
  1082. "m_type": 9
  1083. },
  1084. {
  1085. "m_type": 10
  1086. },
  1087. {
  1088. "m_type": 11
  1089. },
  1090. {
  1091. "m_type": 12
  1092. },
  1093. {
  1094. "m_type": 14
  1095. },
  1096. {
  1097. "m_type": 15
  1098. }
  1099. ]
  1100. }
  1101. ],
  1102. "slotName": "Vector3 0",
  1103. "toolTip": "An operand to use in performing the specified Operation",
  1104. "DisplayDataType": {
  1105. "m_type": 8
  1106. },
  1107. "DisplayGroup": {
  1108. "Value": 1114760223
  1109. },
  1110. "Descriptor": {
  1111. "ConnectionType": 1,
  1112. "SlotType": 2
  1113. },
  1114. "DynamicGroup": {
  1115. "Value": 1114760223
  1116. },
  1117. "DataType": 1
  1118. },
  1119. {
  1120. "id": {
  1121. "m_id": "{78FA62F8-DA2A-4D36-A604-FC0324E3A44A}"
  1122. },
  1123. "DynamicTypeOverride": 3,
  1124. "contracts": [
  1125. {
  1126. "$type": "SlotTypeContract"
  1127. },
  1128. {
  1129. "$type": "MathOperatorContract",
  1130. "NativeTypes": [
  1131. {
  1132. "m_type": 3
  1133. },
  1134. {
  1135. "m_type": 6
  1136. },
  1137. {
  1138. "m_type": 8
  1139. },
  1140. {
  1141. "m_type": 9
  1142. },
  1143. {
  1144. "m_type": 10
  1145. },
  1146. {
  1147. "m_type": 11
  1148. },
  1149. {
  1150. "m_type": 12
  1151. },
  1152. {
  1153. "m_type": 14
  1154. },
  1155. {
  1156. "m_type": 15
  1157. }
  1158. ]
  1159. }
  1160. ],
  1161. "slotName": "Vector3 1",
  1162. "toolTip": "An operand to use in performing the specified Operation",
  1163. "DisplayDataType": {
  1164. "m_type": 8
  1165. },
  1166. "DisplayGroup": {
  1167. "Value": 1114760223
  1168. },
  1169. "Descriptor": {
  1170. "ConnectionType": 1,
  1171. "SlotType": 2
  1172. },
  1173. "DynamicGroup": {
  1174. "Value": 1114760223
  1175. },
  1176. "DataType": 1
  1177. },
  1178. {
  1179. "id": {
  1180. "m_id": "{1FF69540-EAE6-4900-9C0C-ED85B513ACCC}"
  1181. },
  1182. "DynamicTypeOverride": 3,
  1183. "contracts": [
  1184. {
  1185. "$type": "SlotTypeContract"
  1186. },
  1187. {
  1188. "$type": "MathOperatorContract",
  1189. "NativeTypes": [
  1190. {
  1191. "m_type": 3
  1192. },
  1193. {
  1194. "m_type": 6
  1195. },
  1196. {
  1197. "m_type": 8
  1198. },
  1199. {
  1200. "m_type": 9
  1201. },
  1202. {
  1203. "m_type": 10
  1204. },
  1205. {
  1206. "m_type": 11
  1207. },
  1208. {
  1209. "m_type": 12
  1210. },
  1211. {
  1212. "m_type": 14
  1213. },
  1214. {
  1215. "m_type": 15
  1216. }
  1217. ]
  1218. }
  1219. ],
  1220. "slotName": "Result",
  1221. "toolTip": "The result of the specified operation",
  1222. "DisplayDataType": {
  1223. "m_type": 8
  1224. },
  1225. "DisplayGroup": {
  1226. "Value": 1114760223
  1227. },
  1228. "Descriptor": {
  1229. "ConnectionType": 2,
  1230. "SlotType": 2
  1231. },
  1232. "DynamicGroup": {
  1233. "Value": 1114760223
  1234. },
  1235. "DataType": 1,
  1236. "IsReference": true,
  1237. "VariableReference": {
  1238. "m_id": "{48FD0F1D-469F-4B55-AF0E-0352D17854B9}"
  1239. }
  1240. }
  1241. ],
  1242. "Datums": [
  1243. {
  1244. "isOverloadedStorage": false,
  1245. "scriptCanvasType": {
  1246. "m_type": 8
  1247. },
  1248. "isNullPointer": false,
  1249. "$type": "Vector3",
  1250. "value": [
  1251. 0.0,
  1252. 0.0,
  1253. 0.0
  1254. ],
  1255. "label": "Vector3 0"
  1256. },
  1257. {
  1258. "isOverloadedStorage": false,
  1259. "scriptCanvasType": {
  1260. "m_type": 8
  1261. },
  1262. "isNullPointer": false,
  1263. "$type": "Vector3",
  1264. "value": [
  1265. 0.0,
  1266. -50.0,
  1267. 0.0
  1268. ],
  1269. "label": "Vector3 1"
  1270. }
  1271. ]
  1272. }
  1273. }
  1274. },
  1275. {
  1276. "Id": {
  1277. "id": 2845238106259
  1278. },
  1279. "Name": "SC-Node(SetLocalX)",
  1280. "Components": {
  1281. "Component_[12079758315062143973]": {
  1282. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1283. "Id": 12079758315062143973,
  1284. "Slots": [
  1285. {
  1286. "id": {
  1287. "m_id": "{647519B4-5DBC-434D-B155-B7CE5F0E7DC4}"
  1288. },
  1289. "contracts": [
  1290. {
  1291. "$type": "SlotTypeContract"
  1292. }
  1293. ],
  1294. "slotName": "EntityId: 0",
  1295. "Descriptor": {
  1296. "ConnectionType": 1,
  1297. "SlotType": 2
  1298. },
  1299. "DataType": 1
  1300. },
  1301. {
  1302. "id": {
  1303. "m_id": "{C7959E47-99F9-489A-AE58-6AA429A6A062}"
  1304. },
  1305. "contracts": [
  1306. {
  1307. "$type": "SlotTypeContract"
  1308. }
  1309. ],
  1310. "slotName": "Number: 1",
  1311. "Descriptor": {
  1312. "ConnectionType": 1,
  1313. "SlotType": 2
  1314. },
  1315. "DataType": 1
  1316. },
  1317. {
  1318. "id": {
  1319. "m_id": "{0F0B182A-0098-4AF8-A170-D6F092E8AE39}"
  1320. },
  1321. "contracts": [
  1322. {
  1323. "$type": "SlotTypeContract"
  1324. }
  1325. ],
  1326. "slotName": "In",
  1327. "Descriptor": {
  1328. "ConnectionType": 1,
  1329. "SlotType": 1
  1330. }
  1331. },
  1332. {
  1333. "id": {
  1334. "m_id": "{1F5DCDC7-D4F0-4A32-9FDB-B5642823035F}"
  1335. },
  1336. "contracts": [
  1337. {
  1338. "$type": "SlotTypeContract"
  1339. }
  1340. ],
  1341. "slotName": "Out",
  1342. "Descriptor": {
  1343. "ConnectionType": 2,
  1344. "SlotType": 1
  1345. }
  1346. }
  1347. ],
  1348. "Datums": [
  1349. {
  1350. "isOverloadedStorage": false,
  1351. "scriptCanvasType": {
  1352. "m_type": 1
  1353. },
  1354. "isNullPointer": false,
  1355. "$type": "EntityId",
  1356. "value": {
  1357. "id": 2901262558
  1358. },
  1359. "label": "Source"
  1360. },
  1361. {
  1362. "isOverloadedStorage": false,
  1363. "scriptCanvasType": {
  1364. "m_type": 3
  1365. },
  1366. "isNullPointer": false,
  1367. "$type": "double",
  1368. "value": 0.0,
  1369. "label": "X"
  1370. }
  1371. ],
  1372. "methodType": 0,
  1373. "methodName": "SetLocalX",
  1374. "className": "TransformBus",
  1375. "resultSlotIDs": [
  1376. {}
  1377. ],
  1378. "inputSlots": [
  1379. {
  1380. "m_id": "{647519B4-5DBC-434D-B155-B7CE5F0E7DC4}"
  1381. },
  1382. {
  1383. "m_id": "{C7959E47-99F9-489A-AE58-6AA429A6A062}"
  1384. }
  1385. ],
  1386. "prettyClassName": "TransformBus"
  1387. }
  1388. }
  1389. },
  1390. {
  1391. "Id": {
  1392. "id": 2832353204371
  1393. },
  1394. "Name": "SC-Node(TimeDelayNodeableNode)",
  1395. "Components": {
  1396. "Component_[13629047650291668316]": {
  1397. "$type": "TimeDelayNodeableNode",
  1398. "Id": 13629047650291668316,
  1399. "Slots": [
  1400. {
  1401. "id": {
  1402. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  1403. },
  1404. "contracts": [
  1405. {
  1406. "$type": "SlotTypeContract"
  1407. }
  1408. ],
  1409. "slotName": "Start",
  1410. "DisplayGroup": {
  1411. "Value": 2675529103
  1412. },
  1413. "Descriptor": {
  1414. "ConnectionType": 1,
  1415. "SlotType": 1
  1416. }
  1417. },
  1418. {
  1419. "id": {
  1420. "m_id": "{C228BEF0-9BD6-4ED1-A3BD-F77785650B5E}"
  1421. },
  1422. "contracts": [
  1423. {
  1424. "$type": "SlotTypeContract"
  1425. }
  1426. ],
  1427. "slotName": "Delay",
  1428. "toolTip": "The amount of time to delay before the Done is signalled.",
  1429. "DisplayGroup": {
  1430. "Value": 2675529103
  1431. },
  1432. "Descriptor": {
  1433. "ConnectionType": 1,
  1434. "SlotType": 2
  1435. },
  1436. "DataType": 1,
  1437. "IsReference": true,
  1438. "VariableReference": {
  1439. "m_id": "{4E2645FE-845E-4BB7-9CD8-F4517153C0D6}"
  1440. }
  1441. },
  1442. {
  1443. "id": {
  1444. "m_id": "{07BD0CEB-D137-471F-B580-EE734A56D02E}"
  1445. },
  1446. "contracts": [
  1447. {
  1448. "$type": "SlotTypeContract"
  1449. }
  1450. ],
  1451. "slotName": "On Start",
  1452. "DisplayGroup": {
  1453. "Value": 2675529103
  1454. },
  1455. "Descriptor": {
  1456. "ConnectionType": 2,
  1457. "SlotType": 1
  1458. }
  1459. },
  1460. {
  1461. "id": {
  1462. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  1463. },
  1464. "contracts": [
  1465. {
  1466. "$type": "SlotTypeContract"
  1467. }
  1468. ],
  1469. "slotName": "Done",
  1470. "toolTip": "Signaled after waiting for the specified amount of times.",
  1471. "DisplayGroup": {
  1472. "Value": 271442091
  1473. },
  1474. "Descriptor": {
  1475. "ConnectionType": 2,
  1476. "SlotType": 1
  1477. },
  1478. "IsLatent": true
  1479. }
  1480. ],
  1481. "Datums": [
  1482. {
  1483. "isOverloadedStorage": false,
  1484. "scriptCanvasType": {
  1485. "m_type": 3
  1486. },
  1487. "isNullPointer": false,
  1488. "$type": "double",
  1489. "value": 0.25,
  1490. "label": "Delay"
  1491. }
  1492. ],
  1493. "nodeable": {
  1494. "m_timeUnits": 2
  1495. },
  1496. "slotExecutionMap": {
  1497. "ins": [
  1498. {
  1499. "_slotId": {
  1500. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  1501. },
  1502. "_inputs": [
  1503. {
  1504. "_slotId": {
  1505. "m_id": "{C228BEF0-9BD6-4ED1-A3BD-F77785650B5E}"
  1506. }
  1507. }
  1508. ],
  1509. "_outs": [
  1510. {
  1511. "_slotId": {
  1512. "m_id": "{07BD0CEB-D137-471F-B580-EE734A56D02E}"
  1513. },
  1514. "_name": "On Start"
  1515. }
  1516. ]
  1517. }
  1518. ],
  1519. "latents": [
  1520. {
  1521. "_slotId": {
  1522. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  1523. },
  1524. "_name": "Done"
  1525. }
  1526. ]
  1527. }
  1528. }
  1529. }
  1530. },
  1531. {
  1532. "Id": {
  1533. "id": 2858123008147
  1534. },
  1535. "Name": "SC-Node(TimeDelayNodeableNode)",
  1536. "Components": {
  1537. "Component_[13629047650291668316]": {
  1538. "$type": "TimeDelayNodeableNode",
  1539. "Id": 13629047650291668316,
  1540. "Slots": [
  1541. {
  1542. "id": {
  1543. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  1544. },
  1545. "contracts": [
  1546. {
  1547. "$type": "SlotTypeContract"
  1548. }
  1549. ],
  1550. "slotName": "Start",
  1551. "DisplayGroup": {
  1552. "Value": 2675529103
  1553. },
  1554. "Descriptor": {
  1555. "ConnectionType": 1,
  1556. "SlotType": 1
  1557. }
  1558. },
  1559. {
  1560. "id": {
  1561. "m_id": "{C228BEF0-9BD6-4ED1-A3BD-F77785650B5E}"
  1562. },
  1563. "contracts": [
  1564. {
  1565. "$type": "SlotTypeContract"
  1566. }
  1567. ],
  1568. "slotName": "Delay",
  1569. "toolTip": "The amount of time to delay before the Done is signalled.",
  1570. "DisplayGroup": {
  1571. "Value": 2675529103
  1572. },
  1573. "Descriptor": {
  1574. "ConnectionType": 1,
  1575. "SlotType": 2
  1576. },
  1577. "DataType": 1,
  1578. "IsReference": true,
  1579. "VariableReference": {
  1580. "m_id": "{4E2645FE-845E-4BB7-9CD8-F4517153C0D6}"
  1581. }
  1582. },
  1583. {
  1584. "id": {
  1585. "m_id": "{07BD0CEB-D137-471F-B580-EE734A56D02E}"
  1586. },
  1587. "contracts": [
  1588. {
  1589. "$type": "SlotTypeContract"
  1590. }
  1591. ],
  1592. "slotName": "On Start",
  1593. "DisplayGroup": {
  1594. "Value": 2675529103
  1595. },
  1596. "Descriptor": {
  1597. "ConnectionType": 2,
  1598. "SlotType": 1
  1599. }
  1600. },
  1601. {
  1602. "id": {
  1603. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  1604. },
  1605. "contracts": [
  1606. {
  1607. "$type": "SlotTypeContract"
  1608. }
  1609. ],
  1610. "slotName": "Done",
  1611. "toolTip": "Signaled after waiting for the specified amount of times.",
  1612. "DisplayGroup": {
  1613. "Value": 271442091
  1614. },
  1615. "Descriptor": {
  1616. "ConnectionType": 2,
  1617. "SlotType": 1
  1618. },
  1619. "IsLatent": true
  1620. }
  1621. ],
  1622. "Datums": [
  1623. {
  1624. "isOverloadedStorage": false,
  1625. "scriptCanvasType": {
  1626. "m_type": 3
  1627. },
  1628. "isNullPointer": false,
  1629. "$type": "double",
  1630. "value": 0.25,
  1631. "label": "Delay"
  1632. }
  1633. ],
  1634. "nodeable": {
  1635. "m_timeUnits": 2
  1636. },
  1637. "slotExecutionMap": {
  1638. "ins": [
  1639. {
  1640. "_slotId": {
  1641. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  1642. },
  1643. "_inputs": [
  1644. {
  1645. "_slotId": {
  1646. "m_id": "{C228BEF0-9BD6-4ED1-A3BD-F77785650B5E}"
  1647. }
  1648. }
  1649. ],
  1650. "_outs": [
  1651. {
  1652. "_slotId": {
  1653. "m_id": "{07BD0CEB-D137-471F-B580-EE734A56D02E}"
  1654. },
  1655. "_name": "On Start"
  1656. }
  1657. ]
  1658. }
  1659. ],
  1660. "latents": [
  1661. {
  1662. "_slotId": {
  1663. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  1664. },
  1665. "_name": "Done"
  1666. }
  1667. ]
  1668. }
  1669. }
  1670. }
  1671. },
  1672. {
  1673. "Id": {
  1674. "id": 2746453858451
  1675. },
  1676. "Name": "SC-Node(SetLocalY)",
  1677. "Components": {
  1678. "Component_[13773046698524963016]": {
  1679. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1680. "Id": 13773046698524963016,
  1681. "Slots": [
  1682. {
  1683. "id": {
  1684. "m_id": "{9F301984-E452-48B7-B823-23F855F95942}"
  1685. },
  1686. "contracts": [
  1687. {
  1688. "$type": "SlotTypeContract"
  1689. }
  1690. ],
  1691. "slotName": "EntityId: 0",
  1692. "Descriptor": {
  1693. "ConnectionType": 1,
  1694. "SlotType": 2
  1695. },
  1696. "DataType": 1
  1697. },
  1698. {
  1699. "id": {
  1700. "m_id": "{64AD59BA-7A3B-4624-9579-131421FB8B2F}"
  1701. },
  1702. "contracts": [
  1703. {
  1704. "$type": "SlotTypeContract"
  1705. }
  1706. ],
  1707. "slotName": "Number: 1",
  1708. "Descriptor": {
  1709. "ConnectionType": 1,
  1710. "SlotType": 2
  1711. },
  1712. "DataType": 1
  1713. },
  1714. {
  1715. "id": {
  1716. "m_id": "{CA2DEB4A-7DAB-4779-AE44-C21BA206D85F}"
  1717. },
  1718. "contracts": [
  1719. {
  1720. "$type": "SlotTypeContract"
  1721. }
  1722. ],
  1723. "slotName": "In",
  1724. "Descriptor": {
  1725. "ConnectionType": 1,
  1726. "SlotType": 1
  1727. }
  1728. },
  1729. {
  1730. "id": {
  1731. "m_id": "{6C451AA5-012B-4BB2-B2C6-23272FC6A86A}"
  1732. },
  1733. "contracts": [
  1734. {
  1735. "$type": "SlotTypeContract"
  1736. }
  1737. ],
  1738. "slotName": "Out",
  1739. "Descriptor": {
  1740. "ConnectionType": 2,
  1741. "SlotType": 1
  1742. }
  1743. }
  1744. ],
  1745. "Datums": [
  1746. {
  1747. "isOverloadedStorage": false,
  1748. "scriptCanvasType": {
  1749. "m_type": 1
  1750. },
  1751. "isNullPointer": false,
  1752. "$type": "EntityId",
  1753. "value": {
  1754. "id": 2901262558
  1755. },
  1756. "label": "Source"
  1757. },
  1758. {
  1759. "isOverloadedStorage": false,
  1760. "scriptCanvasType": {
  1761. "m_type": 3
  1762. },
  1763. "isNullPointer": false,
  1764. "$type": "double",
  1765. "value": 0.0,
  1766. "label": "Y"
  1767. }
  1768. ],
  1769. "methodType": 0,
  1770. "methodName": "SetLocalY",
  1771. "className": "TransformBus",
  1772. "resultSlotIDs": [
  1773. {}
  1774. ],
  1775. "inputSlots": [
  1776. {
  1777. "m_id": "{9F301984-E452-48B7-B823-23F855F95942}"
  1778. },
  1779. {
  1780. "m_id": "{64AD59BA-7A3B-4624-9579-131421FB8B2F}"
  1781. }
  1782. ],
  1783. "prettyClassName": "TransformBus"
  1784. }
  1785. }
  1786. },
  1787. {
  1788. "Id": {
  1789. "id": 2759338760339
  1790. },
  1791. "Name": "SC Node(SetVariable)",
  1792. "Components": {
  1793. "Component_[13780411382279482546]": {
  1794. "$type": "SetVariableNode",
  1795. "Id": 13780411382279482546,
  1796. "Slots": [
  1797. {
  1798. "id": {
  1799. "m_id": "{B5914F26-A92F-47D3-9B42-C8D357E9B42B}"
  1800. },
  1801. "contracts": [
  1802. {
  1803. "$type": "SlotTypeContract"
  1804. }
  1805. ],
  1806. "slotName": "In",
  1807. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  1808. "Descriptor": {
  1809. "ConnectionType": 1,
  1810. "SlotType": 1
  1811. }
  1812. },
  1813. {
  1814. "id": {
  1815. "m_id": "{956F4684-DFA4-483D-B99B-541F8140A1F0}"
  1816. },
  1817. "contracts": [
  1818. {
  1819. "$type": "SlotTypeContract"
  1820. }
  1821. ],
  1822. "slotName": "Out",
  1823. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1824. "Descriptor": {
  1825. "ConnectionType": 2,
  1826. "SlotType": 1
  1827. }
  1828. },
  1829. {
  1830. "id": {
  1831. "m_id": "{346CCC18-2771-4439-896D-1DC9EF8C1515}"
  1832. },
  1833. "contracts": [
  1834. {
  1835. "$type": "SlotTypeContract"
  1836. }
  1837. ],
  1838. "slotName": "Boolean",
  1839. "Descriptor": {
  1840. "ConnectionType": 1,
  1841. "SlotType": 2
  1842. },
  1843. "DataType": 1
  1844. },
  1845. {
  1846. "id": {
  1847. "m_id": "{BF2B4CCC-A5BD-4F86-AAC1-62718972EB8A}"
  1848. },
  1849. "contracts": [
  1850. {
  1851. "$type": "SlotTypeContract"
  1852. }
  1853. ],
  1854. "slotName": "Boolean",
  1855. "DisplayDataType": {
  1856. "m_type": 0
  1857. },
  1858. "Descriptor": {
  1859. "ConnectionType": 2,
  1860. "SlotType": 2
  1861. },
  1862. "DataType": 1
  1863. }
  1864. ],
  1865. "Datums": [
  1866. {
  1867. "isOverloadedStorage": false,
  1868. "scriptCanvasType": {
  1869. "m_type": 0
  1870. },
  1871. "isNullPointer": false,
  1872. "$type": "bool",
  1873. "value": false,
  1874. "label": "Boolean"
  1875. }
  1876. ],
  1877. "m_variableId": {
  1878. "m_id": "{37CEFCB9-5ED0-44BE-BEF4-205F14024AA1}"
  1879. },
  1880. "m_variableDataInSlotId": {
  1881. "m_id": "{346CCC18-2771-4439-896D-1DC9EF8C1515}"
  1882. },
  1883. "m_variableDataOutSlotId": {
  1884. "m_id": "{BF2B4CCC-A5BD-4F86-AAC1-62718972EB8A}"
  1885. }
  1886. }
  1887. }
  1888. },
  1889. {
  1890. "Id": {
  1891. "id": 2776518629523
  1892. },
  1893. "Name": "SC-Node(Start)",
  1894. "Components": {
  1895. "Component_[13792702699480806350]": {
  1896. "$type": "Start",
  1897. "Id": 13792702699480806350,
  1898. "Slots": [
  1899. {
  1900. "id": {
  1901. "m_id": "{DD7AF2DD-9096-4DB0-B440-FBD32B6D42EF}"
  1902. },
  1903. "contracts": [
  1904. {
  1905. "$type": "SlotTypeContract"
  1906. }
  1907. ],
  1908. "slotName": "Out",
  1909. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1910. "Descriptor": {
  1911. "ConnectionType": 2,
  1912. "SlotType": 1
  1913. }
  1914. }
  1915. ]
  1916. }
  1917. }
  1918. },
  1919. {
  1920. "Id": {
  1921. "id": 2793698498707
  1922. },
  1923. "Name": "SC-Node(Gate)",
  1924. "Components": {
  1925. "Component_[14683350961509674984]": {
  1926. "$type": "Gate",
  1927. "Id": 14683350961509674984,
  1928. "Slots": [
  1929. {
  1930. "id": {
  1931. "m_id": "{864EBA26-FC23-4C4A-8002-684E57C7E771}"
  1932. },
  1933. "contracts": [
  1934. {
  1935. "$type": "SlotTypeContract"
  1936. }
  1937. ],
  1938. "slotName": "Condition",
  1939. "toolTip": "If true the node will signal the Output and proceed execution",
  1940. "Descriptor": {
  1941. "ConnectionType": 1,
  1942. "SlotType": 2
  1943. },
  1944. "DataType": 1,
  1945. "IsReference": true,
  1946. "VariableReference": {
  1947. "m_id": "{37CEFCB9-5ED0-44BE-BEF4-205F14024AA1}"
  1948. }
  1949. },
  1950. {
  1951. "id": {
  1952. "m_id": "{CD6202C2-A6D0-48F3-9969-ADDC488003DA}"
  1953. },
  1954. "contracts": [
  1955. {
  1956. "$type": "SlotTypeContract"
  1957. }
  1958. ],
  1959. "slotName": "In",
  1960. "toolTip": "Input signal",
  1961. "Descriptor": {
  1962. "ConnectionType": 1,
  1963. "SlotType": 1
  1964. }
  1965. },
  1966. {
  1967. "id": {
  1968. "m_id": "{3DD6AFBA-EEAE-4F94-AB99-C5D648F12F47}"
  1969. },
  1970. "contracts": [
  1971. {
  1972. "$type": "SlotTypeContract"
  1973. }
  1974. ],
  1975. "slotName": "True",
  1976. "toolTip": "Signaled if the condition provided evaluates to true.",
  1977. "Descriptor": {
  1978. "ConnectionType": 2,
  1979. "SlotType": 1
  1980. }
  1981. },
  1982. {
  1983. "id": {
  1984. "m_id": "{FDD26CC5-A735-46E8-8AE4-1AAD63639AC0}"
  1985. },
  1986. "contracts": [
  1987. {
  1988. "$type": "SlotTypeContract"
  1989. }
  1990. ],
  1991. "slotName": "False",
  1992. "toolTip": "Signaled if the condition provided evaluates to false.",
  1993. "Descriptor": {
  1994. "ConnectionType": 2,
  1995. "SlotType": 1
  1996. }
  1997. }
  1998. ],
  1999. "Datums": [
  2000. {
  2001. "isOverloadedStorage": false,
  2002. "scriptCanvasType": {
  2003. "m_type": 0
  2004. },
  2005. "isNullPointer": false,
  2006. "$type": "bool",
  2007. "value": true,
  2008. "label": "Condition"
  2009. }
  2010. ]
  2011. }
  2012. }
  2013. },
  2014. {
  2015. "Id": {
  2016. "id": 2810878367891
  2017. },
  2018. "Name": "SC-Node(TimerNodeableNode)",
  2019. "Components": {
  2020. "Component_[15248089134306629282]": {
  2021. "$type": "TimerNodeableNode",
  2022. "Id": 15248089134306629282,
  2023. "Slots": [
  2024. {
  2025. "id": {
  2026. "m_id": "{0B0A7B02-BE8C-4F42-A22D-EA2D791EB534}"
  2027. },
  2028. "contracts": [
  2029. {
  2030. "$type": "SlotTypeContract"
  2031. }
  2032. ],
  2033. "slotName": "Start",
  2034. "toolTip": "Starts the timer",
  2035. "DisplayGroup": {
  2036. "Value": 2675529103
  2037. },
  2038. "Descriptor": {
  2039. "ConnectionType": 1,
  2040. "SlotType": 1
  2041. }
  2042. },
  2043. {
  2044. "id": {
  2045. "m_id": "{03F5AAA0-271E-4181-ACB0-8F6A87EB3A07}"
  2046. },
  2047. "contracts": [
  2048. {
  2049. "$type": "SlotTypeContract"
  2050. }
  2051. ],
  2052. "slotName": "On Start",
  2053. "toolTip": "Starts the timer",
  2054. "DisplayGroup": {
  2055. "Value": 2675529103
  2056. },
  2057. "Descriptor": {
  2058. "ConnectionType": 2,
  2059. "SlotType": 1
  2060. }
  2061. },
  2062. {
  2063. "id": {
  2064. "m_id": "{984A5DBA-9ECB-49B8-A9B3-F079E4391349}"
  2065. },
  2066. "contracts": [
  2067. {
  2068. "$type": "SlotTypeContract"
  2069. }
  2070. ],
  2071. "slotName": "Stop",
  2072. "toolTip": "Stops the timer",
  2073. "DisplayGroup": {
  2074. "Value": 3109426870
  2075. },
  2076. "Descriptor": {
  2077. "ConnectionType": 1,
  2078. "SlotType": 1
  2079. }
  2080. },
  2081. {
  2082. "id": {
  2083. "m_id": "{40F85477-9F6B-4FF7-AFBA-017F0896A560}"
  2084. },
  2085. "contracts": [
  2086. {
  2087. "$type": "SlotTypeContract"
  2088. }
  2089. ],
  2090. "slotName": "On Stop",
  2091. "toolTip": "Stops the timer",
  2092. "DisplayGroup": {
  2093. "Value": 3109426870
  2094. },
  2095. "Descriptor": {
  2096. "ConnectionType": 2,
  2097. "SlotType": 1
  2098. }
  2099. },
  2100. {
  2101. "id": {
  2102. "m_id": "{EDA32541-913F-4E11-8165-9445523D10CF}"
  2103. },
  2104. "contracts": [
  2105. {
  2106. "$type": "SlotTypeContract"
  2107. }
  2108. ],
  2109. "slotName": "On Tick",
  2110. "toolTip": "Signaled at each tick while the timer is in operation.",
  2111. "DisplayGroup": {
  2112. "Value": 608626060
  2113. },
  2114. "Descriptor": {
  2115. "ConnectionType": 2,
  2116. "SlotType": 1
  2117. },
  2118. "IsLatent": true
  2119. },
  2120. {
  2121. "id": {
  2122. "m_id": "{E1B24130-48B2-4F0E-B40D-40FF92503802}"
  2123. },
  2124. "contracts": [
  2125. {
  2126. "$type": "SlotTypeContract"
  2127. }
  2128. ],
  2129. "slotName": "Milliseconds",
  2130. "toolTip": "The amount of time that has elapsed since the timer started in milliseconds.",
  2131. "DisplayDataType": {
  2132. "m_type": 3
  2133. },
  2134. "DisplayGroup": {
  2135. "Value": 608626060
  2136. },
  2137. "Descriptor": {
  2138. "ConnectionType": 2,
  2139. "SlotType": 2
  2140. },
  2141. "DataType": 1
  2142. },
  2143. {
  2144. "id": {
  2145. "m_id": "{F426417E-AB1A-4686-9894-655568B1DAC1}"
  2146. },
  2147. "contracts": [
  2148. {
  2149. "$type": "SlotTypeContract"
  2150. }
  2151. ],
  2152. "slotName": "Seconds",
  2153. "toolTip": "The amount of time that has elapsed since the timer started in seconds.",
  2154. "DisplayDataType": {
  2155. "m_type": 3
  2156. },
  2157. "DisplayGroup": {
  2158. "Value": 608626060
  2159. },
  2160. "Descriptor": {
  2161. "ConnectionType": 2,
  2162. "SlotType": 2
  2163. },
  2164. "DataType": 1
  2165. }
  2166. ],
  2167. "slotExecutionMap": {
  2168. "ins": [
  2169. {
  2170. "_slotId": {
  2171. "m_id": "{0B0A7B02-BE8C-4F42-A22D-EA2D791EB534}"
  2172. },
  2173. "_outs": [
  2174. {
  2175. "_slotId": {
  2176. "m_id": "{03F5AAA0-271E-4181-ACB0-8F6A87EB3A07}"
  2177. },
  2178. "_name": "On Start"
  2179. }
  2180. ]
  2181. },
  2182. {
  2183. "_slotId": {
  2184. "m_id": "{984A5DBA-9ECB-49B8-A9B3-F079E4391349}"
  2185. },
  2186. "_outs": [
  2187. {
  2188. "_slotId": {
  2189. "m_id": "{40F85477-9F6B-4FF7-AFBA-017F0896A560}"
  2190. },
  2191. "_name": "On Stop"
  2192. }
  2193. ]
  2194. }
  2195. ],
  2196. "latents": [
  2197. {
  2198. "_slotId": {
  2199. "m_id": "{EDA32541-913F-4E11-8165-9445523D10CF}"
  2200. },
  2201. "_name": "On Tick",
  2202. "_outputs": [
  2203. {
  2204. "_slotId": {
  2205. "m_id": "{E1B24130-48B2-4F0E-B40D-40FF92503802}"
  2206. }
  2207. },
  2208. {
  2209. "_slotId": {
  2210. "m_id": "{F426417E-AB1A-4686-9894-655568B1DAC1}"
  2211. }
  2212. }
  2213. ]
  2214. }
  2215. ]
  2216. }
  2217. }
  2218. }
  2219. },
  2220. {
  2221. "Id": {
  2222. "id": 2828058237075
  2223. },
  2224. "Name": "SC-Node(NodeableNodeOverloadedLerp)",
  2225. "Components": {
  2226. "Component_[15891336899564261983]": {
  2227. "$type": "NodeableNodeOverloadedLerp",
  2228. "Id": 15891336899564261983,
  2229. "Slots": [
  2230. {
  2231. "id": {
  2232. "m_id": "{82315C63-B7BB-447C-A47D-0709D5D3836A}"
  2233. },
  2234. "contracts": [
  2235. {
  2236. "$type": "SlotTypeContract"
  2237. }
  2238. ],
  2239. "slotName": "In",
  2240. "toolTip": "Starts the lerp action from the beginning.",
  2241. "DisplayGroup": {
  2242. "Value": 1609338446
  2243. },
  2244. "Descriptor": {
  2245. "ConnectionType": 1,
  2246. "SlotType": 1
  2247. }
  2248. },
  2249. {
  2250. "id": {
  2251. "m_id": "{BF95D8DC-5347-4323-841E-0475F49B5CF5}"
  2252. },
  2253. "DynamicTypeOverride": 1,
  2254. "contracts": [
  2255. {
  2256. "$type": "SlotTypeContract"
  2257. },
  2258. {
  2259. "$type": "OverloadContract"
  2260. }
  2261. ],
  2262. "slotName": "Start",
  2263. "toolTip": "The initial value of linear interpolation",
  2264. "DisplayDataType": {
  2265. "m_type": 8
  2266. },
  2267. "DisplayGroup": {
  2268. "Value": 1609338446
  2269. },
  2270. "Descriptor": {
  2271. "ConnectionType": 1,
  2272. "SlotType": 2
  2273. },
  2274. "DynamicGroup": {
  2275. "Value": 1656092830
  2276. },
  2277. "DataType": 1
  2278. },
  2279. {
  2280. "id": {
  2281. "m_id": "{ED6E789F-899A-4914-9469-98D87B8987AA}"
  2282. },
  2283. "DynamicTypeOverride": 1,
  2284. "contracts": [
  2285. {
  2286. "$type": "SlotTypeContract"
  2287. }
  2288. ],
  2289. "slotName": "Stop",
  2290. "toolTip": "The final value of linear interpolation",
  2291. "DisplayDataType": {
  2292. "m_type": 8
  2293. },
  2294. "DisplayGroup": {
  2295. "Value": 1609338446
  2296. },
  2297. "Descriptor": {
  2298. "ConnectionType": 1,
  2299. "SlotType": 2
  2300. },
  2301. "DynamicGroup": {
  2302. "Value": 1656092830
  2303. },
  2304. "DataType": 1,
  2305. "IsReference": true,
  2306. "VariableReference": {
  2307. "m_id": "{48FD0F1D-469F-4B55-AF0E-0352D17854B9}"
  2308. }
  2309. },
  2310. {
  2311. "id": {
  2312. "m_id": "{701E1BBF-A927-4784-AC0A-D0AFA3BAFE6D}"
  2313. },
  2314. "DynamicTypeOverride": 1,
  2315. "contracts": [
  2316. {
  2317. "$type": "SlotTypeContract"
  2318. }
  2319. ],
  2320. "slotName": "Speed",
  2321. "toolTip": "The speed at which to lerp between the start and stop. Zero entries.",
  2322. "DisplayDataType": {
  2323. "m_type": 8
  2324. },
  2325. "DisplayGroup": {
  2326. "Value": 1609338446
  2327. },
  2328. "Descriptor": {
  2329. "ConnectionType": 1,
  2330. "SlotType": 2
  2331. },
  2332. "DynamicGroup": {
  2333. "Value": 1656092830
  2334. },
  2335. "DataType": 1
  2336. },
  2337. {
  2338. "id": {
  2339. "m_id": "{C989E7DF-CFAA-45BC-88B1-DE1FCD0A8F01}"
  2340. },
  2341. "contracts": [
  2342. {
  2343. "$type": "SlotTypeContract"
  2344. }
  2345. ],
  2346. "slotName": "Maximum Duration",
  2347. "toolTip": "The time, in seconds, it will take to complete the specified lerp. Negative value implies no limit, 0 implies instant.",
  2348. "DisplayDataType": {
  2349. "m_type": 3
  2350. },
  2351. "DisplayGroup": {
  2352. "Value": 1609338446
  2353. },
  2354. "Descriptor": {
  2355. "ConnectionType": 1,
  2356. "SlotType": 2
  2357. },
  2358. "DataType": 1
  2359. },
  2360. {
  2361. "id": {
  2362. "m_id": "{C7EA6CC1-DB0E-4513-BB28-2387B116E8F8}"
  2363. },
  2364. "contracts": [
  2365. {
  2366. "$type": "SlotTypeContract"
  2367. }
  2368. ],
  2369. "slotName": "Out",
  2370. "toolTip": "Executes immediately after the lerp action is started.",
  2371. "DisplayGroup": {
  2372. "Value": 1609338446
  2373. },
  2374. "Descriptor": {
  2375. "ConnectionType": 2,
  2376. "SlotType": 1
  2377. }
  2378. },
  2379. {
  2380. "id": {
  2381. "m_id": "{BC1C22FD-4058-450B-BC76-8C3F54A08BB7}"
  2382. },
  2383. "contracts": [
  2384. {
  2385. "$type": "SlotTypeContract"
  2386. }
  2387. ],
  2388. "slotName": "Cancel",
  2389. "toolTip": "Stops the lerp action immediately.",
  2390. "DisplayGroup": {
  2391. "Value": 1444332914
  2392. },
  2393. "Descriptor": {
  2394. "ConnectionType": 1,
  2395. "SlotType": 1
  2396. }
  2397. },
  2398. {
  2399. "id": {
  2400. "m_id": "{1417203B-71AD-49F4-88C2-9187D0844E29}"
  2401. },
  2402. "contracts": [
  2403. {
  2404. "$type": "SlotTypeContract"
  2405. }
  2406. ],
  2407. "slotName": "Canceled",
  2408. "toolTip": "Executes immediately after the operation is canceled.",
  2409. "DisplayGroup": {
  2410. "Value": 1444332914
  2411. },
  2412. "Descriptor": {
  2413. "ConnectionType": 2,
  2414. "SlotType": 1
  2415. }
  2416. },
  2417. {
  2418. "id": {
  2419. "m_id": "{33918A75-20E6-4C0C-92ED-4546579C3564}"
  2420. },
  2421. "contracts": [
  2422. {
  2423. "$type": "SlotTypeContract"
  2424. }
  2425. ],
  2426. "slotName": "Tick",
  2427. "toolTip": "Signaled at each step of the lerp.",
  2428. "DisplayGroup": {
  2429. "Value": 380606668
  2430. },
  2431. "Descriptor": {
  2432. "ConnectionType": 2,
  2433. "SlotType": 1
  2434. },
  2435. "IsLatent": true
  2436. },
  2437. {
  2438. "id": {
  2439. "m_id": "{D2FF4163-32A9-4B57-B603-9CC9BD54F7D3}"
  2440. },
  2441. "DynamicTypeOverride": 1,
  2442. "contracts": [
  2443. {
  2444. "$type": "SlotTypeContract"
  2445. }
  2446. ],
  2447. "slotName": "Step",
  2448. "toolTip": "The value of the current step of the lerp",
  2449. "DisplayDataType": {
  2450. "m_type": 8
  2451. },
  2452. "DisplayGroup": {
  2453. "Value": 380606668
  2454. },
  2455. "Descriptor": {
  2456. "ConnectionType": 2,
  2457. "SlotType": 2
  2458. },
  2459. "DynamicGroup": {
  2460. "Value": 1656092830
  2461. },
  2462. "DataType": 1
  2463. },
  2464. {
  2465. "id": {
  2466. "m_id": "{30CF1DF0-F009-431A-886C-0706EAF62617}"
  2467. },
  2468. "contracts": [
  2469. {
  2470. "$type": "SlotTypeContract"
  2471. }
  2472. ],
  2473. "slotName": "Percent",
  2474. "toolTip": "The percentage of the way the through the lerp on this tick.",
  2475. "DisplayDataType": {
  2476. "m_type": 3
  2477. },
  2478. "DisplayGroup": {
  2479. "Value": 380606668
  2480. },
  2481. "Descriptor": {
  2482. "ConnectionType": 2,
  2483. "SlotType": 2
  2484. },
  2485. "DataType": 1
  2486. },
  2487. {
  2488. "id": {
  2489. "m_id": "{EBDD54FD-F8A6-4CEB-AD2F-A862F4BA16D5}"
  2490. },
  2491. "contracts": [
  2492. {
  2493. "$type": "SlotTypeContract"
  2494. }
  2495. ],
  2496. "slotName": "Lerp Complete",
  2497. "toolTip": "Signaled after the last Tick, when the lerp is complete",
  2498. "DisplayGroup": {
  2499. "Value": 3732921724
  2500. },
  2501. "Descriptor": {
  2502. "ConnectionType": 2,
  2503. "SlotType": 1
  2504. },
  2505. "IsLatent": true
  2506. }
  2507. ],
  2508. "Datums": [
  2509. {
  2510. "isOverloadedStorage": false,
  2511. "scriptCanvasType": {
  2512. "m_type": 8
  2513. },
  2514. "isNullPointer": false,
  2515. "$type": "Vector3",
  2516. "value": [
  2517. 0.0,
  2518. 0.0,
  2519. 0.0
  2520. ],
  2521. "label": "Start"
  2522. },
  2523. {
  2524. "isOverloadedStorage": false,
  2525. "scriptCanvasType": {
  2526. "m_type": 8
  2527. },
  2528. "isNullPointer": false,
  2529. "$type": "Vector3",
  2530. "value": [
  2531. 0.0,
  2532. 0.0,
  2533. 0.0
  2534. ],
  2535. "label": "Stop"
  2536. },
  2537. {
  2538. "isOverloadedStorage": false,
  2539. "scriptCanvasType": {
  2540. "m_type": 8
  2541. },
  2542. "isNullPointer": false,
  2543. "$type": "Vector3",
  2544. "value": [
  2545. 1.0,
  2546. 1.0,
  2547. 1.0
  2548. ],
  2549. "label": "Speed"
  2550. },
  2551. {
  2552. "isOverloadedStorage": false,
  2553. "scriptCanvasType": {
  2554. "m_type": 3
  2555. },
  2556. "isNullPointer": false,
  2557. "$type": "double",
  2558. "value": 5.0,
  2559. "label": "Maximum Duration"
  2560. }
  2561. ],
  2562. "nodeable": {
  2563. "$type": "LerpBetweenNodeable<Vector3>"
  2564. },
  2565. "slotExecutionMap": {
  2566. "ins": [
  2567. {
  2568. "_slotId": {
  2569. "m_id": "{82315C63-B7BB-447C-A47D-0709D5D3836A}"
  2570. },
  2571. "_inputs": [
  2572. {
  2573. "_slotId": {
  2574. "m_id": "{BF95D8DC-5347-4323-841E-0475F49B5CF5}"
  2575. }
  2576. },
  2577. {
  2578. "_slotId": {
  2579. "m_id": "{ED6E789F-899A-4914-9469-98D87B8987AA}"
  2580. }
  2581. },
  2582. {
  2583. "_slotId": {
  2584. "m_id": "{701E1BBF-A927-4784-AC0A-D0AFA3BAFE6D}"
  2585. }
  2586. },
  2587. {
  2588. "_slotId": {
  2589. "m_id": "{C989E7DF-CFAA-45BC-88B1-DE1FCD0A8F01}"
  2590. }
  2591. }
  2592. ],
  2593. "_outs": [
  2594. {
  2595. "_slotId": {
  2596. "m_id": "{C7EA6CC1-DB0E-4513-BB28-2387B116E8F8}"
  2597. },
  2598. "_name": "Out"
  2599. }
  2600. ]
  2601. },
  2602. {
  2603. "_slotId": {
  2604. "m_id": "{BC1C22FD-4058-450B-BC76-8C3F54A08BB7}"
  2605. },
  2606. "_outs": [
  2607. {
  2608. "_slotId": {
  2609. "m_id": "{1417203B-71AD-49F4-88C2-9187D0844E29}"
  2610. },
  2611. "_name": "Canceled"
  2612. }
  2613. ]
  2614. }
  2615. ],
  2616. "latents": [
  2617. {
  2618. "_slotId": {
  2619. "m_id": "{33918A75-20E6-4C0C-92ED-4546579C3564}"
  2620. },
  2621. "_name": "Tick",
  2622. "_outputs": [
  2623. {
  2624. "_slotId": {
  2625. "m_id": "{D2FF4163-32A9-4B57-B603-9CC9BD54F7D3}"
  2626. }
  2627. },
  2628. {
  2629. "_slotId": {
  2630. "m_id": "{30CF1DF0-F009-431A-886C-0706EAF62617}"
  2631. }
  2632. }
  2633. ]
  2634. },
  2635. {
  2636. "_slotId": {
  2637. "m_id": "{EBDD54FD-F8A6-4CEB-AD2F-A862F4BA16D5}"
  2638. },
  2639. "_name": "Lerp Complete"
  2640. }
  2641. ]
  2642. }
  2643. }
  2644. }
  2645. },
  2646. {
  2647. "Id": {
  2648. "id": 2853828040851
  2649. },
  2650. "Name": "SC-Node(DelayNodeableNode)",
  2651. "Components": {
  2652. "Component_[16013263950682151583]": {
  2653. "$type": "DelayNodeableNode",
  2654. "Id": 16013263950682151583,
  2655. "Slots": [
  2656. {
  2657. "id": {
  2658. "m_id": "{42B04036-31F6-4317-B722-2111AC11DE81}"
  2659. },
  2660. "contracts": [
  2661. {
  2662. "$type": "SlotTypeContract"
  2663. }
  2664. ],
  2665. "slotName": "Start",
  2666. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  2667. "DisplayGroup": {
  2668. "Value": 2675529103
  2669. },
  2670. "Descriptor": {
  2671. "ConnectionType": 1,
  2672. "SlotType": 1
  2673. }
  2674. },
  2675. {
  2676. "id": {
  2677. "m_id": "{42838B64-0C5D-4089-932D-B66ABB8ED738}"
  2678. },
  2679. "contracts": [
  2680. {
  2681. "$type": "SlotTypeContract"
  2682. }
  2683. ],
  2684. "slotName": "Start: Time",
  2685. "toolTip": "Amount of time to delay, in seconds.",
  2686. "DisplayGroup": {
  2687. "Value": 2675529103
  2688. },
  2689. "Descriptor": {
  2690. "ConnectionType": 1,
  2691. "SlotType": 2
  2692. },
  2693. "DataType": 1
  2694. },
  2695. {
  2696. "id": {
  2697. "m_id": "{069E1875-8BD8-4AF7-ACF8-7F87E1E62259}"
  2698. },
  2699. "contracts": [
  2700. {
  2701. "$type": "SlotTypeContract"
  2702. }
  2703. ],
  2704. "slotName": "Start: Loop",
  2705. "toolTip": "If true, the delay will restart after triggering the Out slot.",
  2706. "DisplayGroup": {
  2707. "Value": 2675529103
  2708. },
  2709. "Descriptor": {
  2710. "ConnectionType": 1,
  2711. "SlotType": 2
  2712. },
  2713. "DataType": 1
  2714. },
  2715. {
  2716. "id": {
  2717. "m_id": "{C46B98C0-38B8-43C8-A993-A3128E8CB20C}"
  2718. },
  2719. "contracts": [
  2720. {
  2721. "$type": "SlotTypeContract"
  2722. }
  2723. ],
  2724. "slotName": "Start: Hold",
  2725. "toolTip": "Amount of time to wait before restarting, in seconds.",
  2726. "DisplayGroup": {
  2727. "Value": 2675529103
  2728. },
  2729. "Descriptor": {
  2730. "ConnectionType": 1,
  2731. "SlotType": 2
  2732. },
  2733. "DataType": 1,
  2734. "IsReference": true,
  2735. "VariableReference": {
  2736. "m_id": "{A011B2C7-1B70-40E6-911D-12E7CC4676F1}"
  2737. }
  2738. },
  2739. {
  2740. "id": {
  2741. "m_id": "{803D3BB4-710B-4EDA-BB79-AE87562FBD28}"
  2742. },
  2743. "contracts": [
  2744. {
  2745. "$type": "SlotTypeContract"
  2746. }
  2747. ],
  2748. "slotName": "On Start",
  2749. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  2750. "DisplayGroup": {
  2751. "Value": 2675529103
  2752. },
  2753. "Descriptor": {
  2754. "ConnectionType": 2,
  2755. "SlotType": 1
  2756. }
  2757. },
  2758. {
  2759. "id": {
  2760. "m_id": "{9622A1B1-2AC1-4E33-9A26-650EF8F4C76D}"
  2761. },
  2762. "contracts": [
  2763. {
  2764. "$type": "SlotTypeContract"
  2765. }
  2766. ],
  2767. "slotName": "Reset",
  2768. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  2769. "DisplayGroup": {
  2770. "Value": 1352515405
  2771. },
  2772. "Descriptor": {
  2773. "ConnectionType": 1,
  2774. "SlotType": 1
  2775. }
  2776. },
  2777. {
  2778. "id": {
  2779. "m_id": "{04157F3A-266B-46C5-9CA8-869BCA5FE455}"
  2780. },
  2781. "contracts": [
  2782. {
  2783. "$type": "SlotTypeContract"
  2784. }
  2785. ],
  2786. "slotName": "Reset: Time",
  2787. "toolTip": "Amount of time to delay, in seconds.",
  2788. "DisplayGroup": {
  2789. "Value": 1352515405
  2790. },
  2791. "Descriptor": {
  2792. "ConnectionType": 1,
  2793. "SlotType": 2
  2794. },
  2795. "DataType": 1
  2796. },
  2797. {
  2798. "id": {
  2799. "m_id": "{0C95FC40-2FA0-4B6B-9763-173B4C70C12F}"
  2800. },
  2801. "contracts": [
  2802. {
  2803. "$type": "SlotTypeContract"
  2804. }
  2805. ],
  2806. "slotName": "Reset: Loop",
  2807. "toolTip": "If true, the delay will restart after triggering the Out slot.",
  2808. "DisplayGroup": {
  2809. "Value": 1352515405
  2810. },
  2811. "Descriptor": {
  2812. "ConnectionType": 1,
  2813. "SlotType": 2
  2814. },
  2815. "DataType": 1
  2816. },
  2817. {
  2818. "id": {
  2819. "m_id": "{1C90AACF-B1AE-4707-9F56-224531E7BF32}"
  2820. },
  2821. "contracts": [
  2822. {
  2823. "$type": "SlotTypeContract"
  2824. }
  2825. ],
  2826. "slotName": "Reset: Hold",
  2827. "toolTip": "Amount of time to wait before restarting, in seconds.",
  2828. "DisplayGroup": {
  2829. "Value": 1352515405
  2830. },
  2831. "Descriptor": {
  2832. "ConnectionType": 1,
  2833. "SlotType": 2
  2834. },
  2835. "DataType": 1
  2836. },
  2837. {
  2838. "id": {
  2839. "m_id": "{053F839C-E9FB-4A77-B9C2-33058A03AE10}"
  2840. },
  2841. "contracts": [
  2842. {
  2843. "$type": "SlotTypeContract"
  2844. }
  2845. ],
  2846. "slotName": "On Reset",
  2847. "toolTip": "When signaled, execution is delayed at this node according to the specified properties.",
  2848. "DisplayGroup": {
  2849. "Value": 1352515405
  2850. },
  2851. "Descriptor": {
  2852. "ConnectionType": 2,
  2853. "SlotType": 1
  2854. }
  2855. },
  2856. {
  2857. "id": {
  2858. "m_id": "{A70FBADC-CB5F-47B8-ABBB-C426E1818F22}"
  2859. },
  2860. "contracts": [
  2861. {
  2862. "$type": "SlotTypeContract"
  2863. }
  2864. ],
  2865. "slotName": "Cancel",
  2866. "toolTip": "Cancels the current delay.",
  2867. "DisplayGroup": {
  2868. "Value": 1444332914
  2869. },
  2870. "Descriptor": {
  2871. "ConnectionType": 1,
  2872. "SlotType": 1
  2873. }
  2874. },
  2875. {
  2876. "id": {
  2877. "m_id": "{6A6662F5-1558-4919-9963-D4474BFD6E15}"
  2878. },
  2879. "contracts": [
  2880. {
  2881. "$type": "SlotTypeContract"
  2882. }
  2883. ],
  2884. "slotName": "On Cancel",
  2885. "toolTip": "Cancels the current delay.",
  2886. "DisplayGroup": {
  2887. "Value": 1444332914
  2888. },
  2889. "Descriptor": {
  2890. "ConnectionType": 2,
  2891. "SlotType": 1
  2892. }
  2893. },
  2894. {
  2895. "id": {
  2896. "m_id": "{1145CFE8-3394-490F-8DDD-5F39CA9362AC}"
  2897. },
  2898. "contracts": [
  2899. {
  2900. "$type": "SlotTypeContract"
  2901. }
  2902. ],
  2903. "slotName": "Done",
  2904. "toolTip": "Signaled when the delay reaches zero.",
  2905. "DisplayGroup": {
  2906. "Value": 271442091
  2907. },
  2908. "Descriptor": {
  2909. "ConnectionType": 2,
  2910. "SlotType": 1
  2911. },
  2912. "IsLatent": true
  2913. },
  2914. {
  2915. "id": {
  2916. "m_id": "{A920C68F-C40F-41B9-918C-F5D70D92BC9D}"
  2917. },
  2918. "contracts": [
  2919. {
  2920. "$type": "SlotTypeContract"
  2921. }
  2922. ],
  2923. "slotName": "Elapsed",
  2924. "toolTip": "The amount of time that has elapsed since the delay began.",
  2925. "DisplayDataType": {
  2926. "m_type": 3
  2927. },
  2928. "DisplayGroup": {
  2929. "Value": 271442091
  2930. },
  2931. "Descriptor": {
  2932. "ConnectionType": 2,
  2933. "SlotType": 2
  2934. },
  2935. "DataType": 1
  2936. }
  2937. ],
  2938. "Datums": [
  2939. {
  2940. "isOverloadedStorage": false,
  2941. "scriptCanvasType": {
  2942. "m_type": 3
  2943. },
  2944. "isNullPointer": false,
  2945. "$type": "double",
  2946. "value": 0.0,
  2947. "label": "Start: Time"
  2948. },
  2949. {
  2950. "isOverloadedStorage": false,
  2951. "scriptCanvasType": {
  2952. "m_type": 0
  2953. },
  2954. "isNullPointer": false,
  2955. "$type": "bool",
  2956. "value": true,
  2957. "label": "Start: Loop"
  2958. },
  2959. {
  2960. "isOverloadedStorage": false,
  2961. "scriptCanvasType": {
  2962. "m_type": 3
  2963. },
  2964. "isNullPointer": false,
  2965. "$type": "double",
  2966. "value": 1.0,
  2967. "label": "Start: Hold"
  2968. },
  2969. {
  2970. "isOverloadedStorage": false,
  2971. "scriptCanvasType": {
  2972. "m_type": 3
  2973. },
  2974. "isNullPointer": false,
  2975. "$type": "double",
  2976. "value": 0.0,
  2977. "label": "Reset: Time"
  2978. },
  2979. {
  2980. "isOverloadedStorage": false,
  2981. "scriptCanvasType": {
  2982. "m_type": 0
  2983. },
  2984. "isNullPointer": false,
  2985. "$type": "bool",
  2986. "value": false,
  2987. "label": "Reset: Loop"
  2988. },
  2989. {
  2990. "isOverloadedStorage": false,
  2991. "scriptCanvasType": {
  2992. "m_type": 3
  2993. },
  2994. "isNullPointer": false,
  2995. "$type": "double",
  2996. "value": 0.0,
  2997. "label": "Reset: Hold"
  2998. }
  2999. ],
  3000. "slotExecutionMap": {
  3001. "ins": [
  3002. {
  3003. "_slotId": {
  3004. "m_id": "{42B04036-31F6-4317-B722-2111AC11DE81}"
  3005. },
  3006. "_inputs": [
  3007. {
  3008. "_slotId": {
  3009. "m_id": "{42838B64-0C5D-4089-932D-B66ABB8ED738}"
  3010. }
  3011. },
  3012. {
  3013. "_slotId": {
  3014. "m_id": "{069E1875-8BD8-4AF7-ACF8-7F87E1E62259}"
  3015. }
  3016. },
  3017. {
  3018. "_slotId": {
  3019. "m_id": "{C46B98C0-38B8-43C8-A993-A3128E8CB20C}"
  3020. }
  3021. }
  3022. ],
  3023. "_outs": [
  3024. {
  3025. "_slotId": {
  3026. "m_id": "{803D3BB4-710B-4EDA-BB79-AE87562FBD28}"
  3027. },
  3028. "_name": "On Start"
  3029. }
  3030. ]
  3031. },
  3032. {
  3033. "_slotId": {
  3034. "m_id": "{9622A1B1-2AC1-4E33-9A26-650EF8F4C76D}"
  3035. },
  3036. "_inputs": [
  3037. {
  3038. "_slotId": {
  3039. "m_id": "{04157F3A-266B-46C5-9CA8-869BCA5FE455}"
  3040. }
  3041. },
  3042. {
  3043. "_slotId": {
  3044. "m_id": "{0C95FC40-2FA0-4B6B-9763-173B4C70C12F}"
  3045. }
  3046. },
  3047. {
  3048. "_slotId": {
  3049. "m_id": "{1C90AACF-B1AE-4707-9F56-224531E7BF32}"
  3050. }
  3051. }
  3052. ],
  3053. "_outs": [
  3054. {
  3055. "_slotId": {
  3056. "m_id": "{053F839C-E9FB-4A77-B9C2-33058A03AE10}"
  3057. },
  3058. "_name": "On Reset"
  3059. }
  3060. ]
  3061. },
  3062. {
  3063. "_slotId": {
  3064. "m_id": "{A70FBADC-CB5F-47B8-ABBB-C426E1818F22}"
  3065. },
  3066. "_outs": [
  3067. {
  3068. "_slotId": {
  3069. "m_id": "{6A6662F5-1558-4919-9963-D4474BFD6E15}"
  3070. },
  3071. "_name": "On Cancel"
  3072. }
  3073. ]
  3074. }
  3075. ],
  3076. "latents": [
  3077. {
  3078. "_slotId": {
  3079. "m_id": "{1145CFE8-3394-490F-8DDD-5F39CA9362AC}"
  3080. },
  3081. "_name": "Done",
  3082. "_outputs": [
  3083. {
  3084. "_slotId": {
  3085. "m_id": "{A920C68F-C40F-41B9-918C-F5D70D92BC9D}"
  3086. }
  3087. }
  3088. ]
  3089. }
  3090. ]
  3091. }
  3092. }
  3093. }
  3094. },
  3095. {
  3096. "Id": {
  3097. "id": 2742158891155
  3098. },
  3099. "Name": "SC-Node(GetLocalY)",
  3100. "Components": {
  3101. "Component_[17327932432026870082]": {
  3102. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3103. "Id": 17327932432026870082,
  3104. "Slots": [
  3105. {
  3106. "id": {
  3107. "m_id": "{1430CD76-97B1-4753-ABB0-C47B88F9106A}"
  3108. },
  3109. "contracts": [
  3110. {
  3111. "$type": "SlotTypeContract"
  3112. }
  3113. ],
  3114. "slotName": "EntityId",
  3115. "Descriptor": {
  3116. "ConnectionType": 1,
  3117. "SlotType": 2
  3118. },
  3119. "DataType": 1
  3120. },
  3121. {
  3122. "id": {
  3123. "m_id": "{3AA2BC0D-421E-4C67-88E7-F80DFD98A680}"
  3124. },
  3125. "contracts": [
  3126. {
  3127. "$type": "SlotTypeContract"
  3128. }
  3129. ],
  3130. "slotName": "In",
  3131. "Descriptor": {
  3132. "ConnectionType": 1,
  3133. "SlotType": 1
  3134. }
  3135. },
  3136. {
  3137. "id": {
  3138. "m_id": "{4E7C9B92-BDCC-414D-BE6B-62610DC8ABFF}"
  3139. },
  3140. "contracts": [
  3141. {
  3142. "$type": "SlotTypeContract"
  3143. }
  3144. ],
  3145. "slotName": "Out",
  3146. "Descriptor": {
  3147. "ConnectionType": 2,
  3148. "SlotType": 1
  3149. }
  3150. },
  3151. {
  3152. "id": {
  3153. "m_id": "{4EDB1363-57FE-463E-9B91-5FD694DDAE28}"
  3154. },
  3155. "contracts": [
  3156. {
  3157. "$type": "SlotTypeContract"
  3158. }
  3159. ],
  3160. "slotName": "Number",
  3161. "DisplayDataType": {
  3162. "m_type": 3
  3163. },
  3164. "Descriptor": {
  3165. "ConnectionType": 2,
  3166. "SlotType": 2
  3167. },
  3168. "DataType": 1
  3169. }
  3170. ],
  3171. "Datums": [
  3172. {
  3173. "isOverloadedStorage": false,
  3174. "scriptCanvasType": {
  3175. "m_type": 1
  3176. },
  3177. "isNullPointer": false,
  3178. "$type": "EntityId",
  3179. "value": {
  3180. "id": 2901262558
  3181. },
  3182. "label": "EntityId"
  3183. }
  3184. ],
  3185. "methodType": 0,
  3186. "methodName": "GetLocalY",
  3187. "className": "TransformBus",
  3188. "resultSlotIDs": [
  3189. {}
  3190. ],
  3191. "inputSlots": [
  3192. {
  3193. "m_id": "{1430CD76-97B1-4753-ABB0-C47B88F9106A}"
  3194. }
  3195. ],
  3196. "prettyClassName": "TransformBus"
  3197. }
  3198. }
  3199. },
  3200. {
  3201. "Id": {
  3202. "id": 2755043793043
  3203. },
  3204. "Name": "SC-Node(DestroyGameEntityAndDescendants)",
  3205. "Components": {
  3206. "Component_[2336585968862281156]": {
  3207. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3208. "Id": 2336585968862281156,
  3209. "Slots": [
  3210. {
  3211. "id": {
  3212. "m_id": "{DBBD4CAF-C150-4049-B845-5BA96BF3514B}"
  3213. },
  3214. "contracts": [
  3215. {
  3216. "$type": "SlotTypeContract"
  3217. }
  3218. ],
  3219. "slotName": "EntityId",
  3220. "Descriptor": {
  3221. "ConnectionType": 1,
  3222. "SlotType": 2
  3223. },
  3224. "DataType": 1
  3225. },
  3226. {
  3227. "id": {
  3228. "m_id": "{6E344E8D-7DA8-4F7B-ADA6-C349C5112DB4}"
  3229. },
  3230. "contracts": [
  3231. {
  3232. "$type": "SlotTypeContract"
  3233. }
  3234. ],
  3235. "slotName": "In",
  3236. "Descriptor": {
  3237. "ConnectionType": 1,
  3238. "SlotType": 1
  3239. }
  3240. },
  3241. {
  3242. "id": {
  3243. "m_id": "{C570D1B0-F60D-4205-BBF8-824A18F72ADB}"
  3244. },
  3245. "contracts": [
  3246. {
  3247. "$type": "SlotTypeContract"
  3248. }
  3249. ],
  3250. "slotName": "Out",
  3251. "Descriptor": {
  3252. "ConnectionType": 2,
  3253. "SlotType": 1
  3254. }
  3255. }
  3256. ],
  3257. "Datums": [
  3258. {
  3259. "isOverloadedStorage": false,
  3260. "scriptCanvasType": {
  3261. "m_type": 1
  3262. },
  3263. "isNullPointer": false,
  3264. "$type": "EntityId",
  3265. "value": {
  3266. "id": 2901262558
  3267. },
  3268. "label": "Entity Id"
  3269. }
  3270. ],
  3271. "methodType": 0,
  3272. "methodName": "DestroyGameEntityAndDescendants",
  3273. "className": "GameEntityContextRequestBus",
  3274. "resultSlotIDs": [
  3275. {}
  3276. ],
  3277. "inputSlots": [
  3278. {
  3279. "m_id": "{DBBD4CAF-C150-4049-B845-5BA96BF3514B}"
  3280. }
  3281. ],
  3282. "prettyClassName": "GameEntityContextRequestBus"
  3283. }
  3284. }
  3285. },
  3286. {
  3287. "Id": {
  3288. "id": 64439364098195
  3289. },
  3290. "Name": "SC-Node(Print)",
  3291. "Components": {
  3292. "Component_[3525878551791389836]": {
  3293. "$type": "Print",
  3294. "Id": 3525878551791389836,
  3295. "Slots": [
  3296. {
  3297. "id": {
  3298. "m_id": "{8ED97A21-2DA1-4035-B176-95A69BF53AB9}"
  3299. },
  3300. "contracts": [
  3301. {
  3302. "$type": "SlotTypeContract"
  3303. }
  3304. ],
  3305. "slotName": "In",
  3306. "toolTip": "Input signal",
  3307. "Descriptor": {
  3308. "ConnectionType": 1,
  3309. "SlotType": 1
  3310. }
  3311. },
  3312. {
  3313. "id": {
  3314. "m_id": "{56FBD637-C717-4064-8A19-889FB367B52C}"
  3315. },
  3316. "DynamicTypeOverride": 3,
  3317. "contracts": [
  3318. {
  3319. "$type": "SlotTypeContract"
  3320. }
  3321. ],
  3322. "slotName": "Value",
  3323. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  3324. "DisplayDataType": {
  3325. "m_type": 8
  3326. },
  3327. "DisplayGroup": {
  3328. "Value": 1015031923
  3329. },
  3330. "Descriptor": {
  3331. "ConnectionType": 1,
  3332. "SlotType": 2
  3333. },
  3334. "DataType": 1,
  3335. "IsReference": true,
  3336. "VariableReference": {
  3337. "m_id": "{48FD0F1D-469F-4B55-AF0E-0352D17854B9}"
  3338. }
  3339. },
  3340. {
  3341. "id": {
  3342. "m_id": "{29B7992B-A663-4465-BD39-4CE13146247E}"
  3343. },
  3344. "contracts": [
  3345. {
  3346. "$type": "SlotTypeContract"
  3347. }
  3348. ],
  3349. "slotName": "Out",
  3350. "Descriptor": {
  3351. "ConnectionType": 2,
  3352. "SlotType": 1
  3353. }
  3354. }
  3355. ],
  3356. "Datums": [
  3357. {
  3358. "isOverloadedStorage": false,
  3359. "scriptCanvasType": {
  3360. "m_type": 8
  3361. },
  3362. "isNullPointer": false,
  3363. "$type": "Vector3",
  3364. "value": [
  3365. 0.0,
  3366. 0.0,
  3367. 0.0
  3368. ],
  3369. "label": "Value"
  3370. }
  3371. ],
  3372. "m_format": "Player Pos{Value}",
  3373. "m_arrayBindingMap": [
  3374. {
  3375. "Key": 1,
  3376. "Value": {
  3377. "m_id": "{56FBD637-C717-4064-8A19-889FB367B52C}"
  3378. }
  3379. }
  3380. ],
  3381. "m_unresolvedString": [
  3382. "Player Pos",
  3383. {}
  3384. ],
  3385. "m_formatSlotMap": {
  3386. "Value": {
  3387. "m_id": "{56FBD637-C717-4064-8A19-889FB367B52C}"
  3388. }
  3389. }
  3390. }
  3391. }
  3392. },
  3393. {
  3394. "Id": {
  3395. "id": 2772223662227
  3396. },
  3397. "Name": "SC-Node(GetWorldTranslation)",
  3398. "Components": {
  3399. "Component_[3537017085182102639]": {
  3400. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3401. "Id": 3537017085182102639,
  3402. "Slots": [
  3403. {
  3404. "id": {
  3405. "m_id": "{3AF56E1A-5798-4417-944F-BCEF7427CBC8}"
  3406. },
  3407. "contracts": [
  3408. {
  3409. "$type": "SlotTypeContract"
  3410. }
  3411. ],
  3412. "slotName": "EntityId",
  3413. "Descriptor": {
  3414. "ConnectionType": 1,
  3415. "SlotType": 2
  3416. },
  3417. "DataType": 1
  3418. },
  3419. {
  3420. "id": {
  3421. "m_id": "{7B369E3A-63BC-419A-BE99-2BAB02EC88D2}"
  3422. },
  3423. "contracts": [
  3424. {
  3425. "$type": "SlotTypeContract"
  3426. }
  3427. ],
  3428. "slotName": "In",
  3429. "Descriptor": {
  3430. "ConnectionType": 1,
  3431. "SlotType": 1
  3432. }
  3433. },
  3434. {
  3435. "id": {
  3436. "m_id": "{1819D7C0-849E-4D00-B053-11D2562678FA}"
  3437. },
  3438. "contracts": [
  3439. {
  3440. "$type": "SlotTypeContract"
  3441. }
  3442. ],
  3443. "slotName": "Out",
  3444. "Descriptor": {
  3445. "ConnectionType": 2,
  3446. "SlotType": 1
  3447. }
  3448. },
  3449. {
  3450. "id": {
  3451. "m_id": "{BBFFF237-7E25-4948-A898-27EC2B5CFC47}"
  3452. },
  3453. "contracts": [
  3454. {
  3455. "$type": "SlotTypeContract"
  3456. }
  3457. ],
  3458. "slotName": "Vector3",
  3459. "DisplayDataType": {
  3460. "m_type": 8
  3461. },
  3462. "Descriptor": {
  3463. "ConnectionType": 2,
  3464. "SlotType": 2
  3465. },
  3466. "DataType": 1
  3467. }
  3468. ],
  3469. "Datums": [
  3470. {
  3471. "isOverloadedStorage": false,
  3472. "scriptCanvasType": {
  3473. "m_type": 1
  3474. },
  3475. "isNullPointer": false,
  3476. "$type": "EntityId",
  3477. "value": {
  3478. "id": 2901262558
  3479. },
  3480. "label": "EntityId"
  3481. }
  3482. ],
  3483. "methodType": 0,
  3484. "methodName": "GetWorldTranslation",
  3485. "className": "TransformBus",
  3486. "resultSlotIDs": [
  3487. {}
  3488. ],
  3489. "inputSlots": [
  3490. {
  3491. "m_id": "{3AF56E1A-5798-4417-944F-BCEF7427CBC8}"
  3492. }
  3493. ],
  3494. "prettyClassName": "TransformBus"
  3495. }
  3496. }
  3497. },
  3498. {
  3499. "Id": {
  3500. "id": 2789403531411
  3501. },
  3502. "Name": "SC-Node(GetWorldTranslation)",
  3503. "Components": {
  3504. "Component_[3537017085182102639]": {
  3505. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3506. "Id": 3537017085182102639,
  3507. "Slots": [
  3508. {
  3509. "id": {
  3510. "m_id": "{3AF56E1A-5798-4417-944F-BCEF7427CBC8}"
  3511. },
  3512. "contracts": [
  3513. {
  3514. "$type": "SlotTypeContract"
  3515. }
  3516. ],
  3517. "slotName": "EntityId",
  3518. "Descriptor": {
  3519. "ConnectionType": 1,
  3520. "SlotType": 2
  3521. },
  3522. "DataType": 1,
  3523. "IsReference": true,
  3524. "VariableReference": {
  3525. "m_id": "{0972CFBE-B68B-4884-BE5F-C98D41ECFC9D}"
  3526. }
  3527. },
  3528. {
  3529. "id": {
  3530. "m_id": "{7B369E3A-63BC-419A-BE99-2BAB02EC88D2}"
  3531. },
  3532. "contracts": [
  3533. {
  3534. "$type": "SlotTypeContract"
  3535. }
  3536. ],
  3537. "slotName": "In",
  3538. "Descriptor": {
  3539. "ConnectionType": 1,
  3540. "SlotType": 1
  3541. }
  3542. },
  3543. {
  3544. "id": {
  3545. "m_id": "{1819D7C0-849E-4D00-B053-11D2562678FA}"
  3546. },
  3547. "contracts": [
  3548. {
  3549. "$type": "SlotTypeContract"
  3550. }
  3551. ],
  3552. "slotName": "Out",
  3553. "Descriptor": {
  3554. "ConnectionType": 2,
  3555. "SlotType": 1
  3556. }
  3557. },
  3558. {
  3559. "id": {
  3560. "m_id": "{BBFFF237-7E25-4948-A898-27EC2B5CFC47}"
  3561. },
  3562. "contracts": [
  3563. {
  3564. "$type": "SlotTypeContract"
  3565. }
  3566. ],
  3567. "slotName": "Vector3",
  3568. "DisplayDataType": {
  3569. "m_type": 8
  3570. },
  3571. "Descriptor": {
  3572. "ConnectionType": 2,
  3573. "SlotType": 2
  3574. },
  3575. "DataType": 1
  3576. }
  3577. ],
  3578. "Datums": [
  3579. {
  3580. "isOverloadedStorage": false,
  3581. "scriptCanvasType": {
  3582. "m_type": 1
  3583. },
  3584. "isNullPointer": false,
  3585. "$type": "EntityId",
  3586. "value": {
  3587. "id": 2901262558
  3588. },
  3589. "label": "EntityId"
  3590. }
  3591. ],
  3592. "methodType": 0,
  3593. "methodName": "GetWorldTranslation",
  3594. "className": "TransformBus",
  3595. "resultSlotIDs": [
  3596. {}
  3597. ],
  3598. "inputSlots": [
  3599. {
  3600. "m_id": "{3AF56E1A-5798-4417-944F-BCEF7427CBC8}"
  3601. }
  3602. ],
  3603. "prettyClassName": "TransformBus"
  3604. }
  3605. }
  3606. },
  3607. {
  3608. "Id": {
  3609. "id": 2806583400595
  3610. },
  3611. "Name": "SC-Node(Once)",
  3612. "Components": {
  3613. "Component_[4014396980863231164]": {
  3614. "$type": "Once",
  3615. "Id": 4014396980863231164,
  3616. "Slots": [
  3617. {
  3618. "id": {
  3619. "m_id": "{BF6F50FC-2E19-4D99-9A0A-BF715F4516B8}"
  3620. },
  3621. "contracts": [
  3622. {
  3623. "$type": "SlotTypeContract"
  3624. }
  3625. ],
  3626. "slotName": "In",
  3627. "toolTip": "Input signal",
  3628. "Descriptor": {
  3629. "ConnectionType": 1,
  3630. "SlotType": 1
  3631. }
  3632. },
  3633. {
  3634. "id": {
  3635. "m_id": "{24CC5C06-FAE9-4A2E-A580-D07E1B5B5FEB}"
  3636. },
  3637. "contracts": [
  3638. {
  3639. "$type": "SlotTypeContract"
  3640. }
  3641. ],
  3642. "slotName": "Reset",
  3643. "toolTip": "Reset signal",
  3644. "Descriptor": {
  3645. "ConnectionType": 1,
  3646. "SlotType": 1
  3647. }
  3648. },
  3649. {
  3650. "id": {
  3651. "m_id": "{029B8EBB-A501-4060-84B7-982CA42E8862}"
  3652. },
  3653. "contracts": [
  3654. {
  3655. "$type": "SlotTypeContract"
  3656. }
  3657. ],
  3658. "slotName": "Out",
  3659. "toolTip": "Output signal",
  3660. "Descriptor": {
  3661. "ConnectionType": 2,
  3662. "SlotType": 1
  3663. }
  3664. },
  3665. {
  3666. "id": {
  3667. "m_id": "{36DAE3A7-E71A-40A6-99D0-61FCD2059B04}"
  3668. },
  3669. "contracts": [
  3670. {
  3671. "$type": "SlotTypeContract"
  3672. }
  3673. ],
  3674. "slotName": "On Reset",
  3675. "toolTip": "Triggered when Reset",
  3676. "Descriptor": {
  3677. "ConnectionType": 2,
  3678. "SlotType": 1
  3679. }
  3680. }
  3681. ]
  3682. }
  3683. }
  3684. },
  3685. {
  3686. "Id": {
  3687. "id": 2823763269779
  3688. },
  3689. "Name": "SendScriptEvent",
  3690. "Components": {
  3691. "Component_[5017694457770660095]": {
  3692. "$type": "SendScriptEvent",
  3693. "Id": 5017694457770660095,
  3694. "Slots": [
  3695. {
  3696. "id": {
  3697. "m_id": "{AB25C1A3-C1B6-4963-838A-2844BA4FD75B}"
  3698. },
  3699. "contracts": [
  3700. {
  3701. "$type": "SlotTypeContract"
  3702. }
  3703. ],
  3704. "slotName": "In",
  3705. "toolTip": "Fires the specified ScriptEvent when signaled",
  3706. "Descriptor": {
  3707. "ConnectionType": 1,
  3708. "SlotType": 1
  3709. }
  3710. },
  3711. {
  3712. "id": {
  3713. "m_id": "{0FD98B24-8314-4018-8B86-C8CFE626D5E7}"
  3714. },
  3715. "contracts": [
  3716. {
  3717. "$type": "SlotTypeContract"
  3718. }
  3719. ],
  3720. "slotName": "Out",
  3721. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  3722. "Descriptor": {
  3723. "ConnectionType": 2,
  3724. "SlotType": 1
  3725. }
  3726. },
  3727. {
  3728. "id": {
  3729. "m_id": "{EFA2BBA2-3BC2-4D5C-ACB5-C52F1554DAE0}"
  3730. },
  3731. "contracts": [
  3732. {
  3733. "$type": "SlotTypeContract"
  3734. }
  3735. ],
  3736. "slotName": "points",
  3737. "toolTip": "number",
  3738. "Descriptor": {
  3739. "ConnectionType": 1,
  3740. "SlotType": 2
  3741. },
  3742. "DataType": 1
  3743. }
  3744. ],
  3745. "Datums": [
  3746. {
  3747. "isOverloadedStorage": false,
  3748. "scriptCanvasType": {
  3749. "m_type": 3
  3750. },
  3751. "isNullPointer": false,
  3752. "$type": "double",
  3753. "value": 1.0,
  3754. "label": "points"
  3755. }
  3756. ],
  3757. "m_version": 2,
  3758. "m_eventSlotMapping": {
  3759. "{1186D5E6-008C-4E06-8532-F92C3F862637}": {
  3760. "m_id": "{EFA2BBA2-3BC2-4D5C-ACB5-C52F1554DAE0}"
  3761. }
  3762. },
  3763. "m_scriptEventAssetId": {
  3764. "guid": "{EA32B32F-E7F2-54B3-AB8A-5A35DA2F7382}"
  3765. },
  3766. "m_asset": {
  3767. "assetId": {
  3768. "guid": "{EA32B32F-E7F2-54B3-AB8A-5A35DA2F7382}"
  3769. },
  3770. "loadBehavior": "PreLoad",
  3771. "assetHint": "assets/scripts/miss_enemy.scriptevents"
  3772. },
  3773. "m_busId": {
  3774. "Value": 252663028
  3775. },
  3776. "m_eventId": {
  3777. "Value": 51699281
  3778. }
  3779. }
  3780. }
  3781. },
  3782. {
  3783. "Id": {
  3784. "id": 2849533073555
  3785. },
  3786. "Name": "SC Node(SetVariable)",
  3787. "Components": {
  3788. "Component_[5287478739738138147]": {
  3789. "$type": "SetVariableNode",
  3790. "Id": 5287478739738138147,
  3791. "Slots": [
  3792. {
  3793. "id": {
  3794. "m_id": "{595EAA49-E6EC-45DC-ACCC-404051DD3DDB}"
  3795. },
  3796. "contracts": [
  3797. {
  3798. "$type": "SlotTypeContract"
  3799. }
  3800. ],
  3801. "slotName": "In",
  3802. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  3803. "Descriptor": {
  3804. "ConnectionType": 1,
  3805. "SlotType": 1
  3806. }
  3807. },
  3808. {
  3809. "id": {
  3810. "m_id": "{E065F630-66D5-4541-B7ED-DE8BB2A05C2D}"
  3811. },
  3812. "contracts": [
  3813. {
  3814. "$type": "SlotTypeContract"
  3815. }
  3816. ],
  3817. "slotName": "Out",
  3818. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  3819. "Descriptor": {
  3820. "ConnectionType": 2,
  3821. "SlotType": 1
  3822. }
  3823. },
  3824. {
  3825. "id": {
  3826. "m_id": "{A334E91D-1460-4247-94FD-EE9C91CFE871}"
  3827. },
  3828. "contracts": [
  3829. {
  3830. "$type": "SlotTypeContract"
  3831. }
  3832. ],
  3833. "slotName": "Boolean",
  3834. "Descriptor": {
  3835. "ConnectionType": 1,
  3836. "SlotType": 2
  3837. },
  3838. "DataType": 1
  3839. },
  3840. {
  3841. "id": {
  3842. "m_id": "{26414D45-E72C-4DED-9CD2-F3053DCE0EFA}"
  3843. },
  3844. "contracts": [
  3845. {
  3846. "$type": "SlotTypeContract"
  3847. }
  3848. ],
  3849. "slotName": "Boolean",
  3850. "DisplayDataType": {
  3851. "m_type": 0
  3852. },
  3853. "Descriptor": {
  3854. "ConnectionType": 2,
  3855. "SlotType": 2
  3856. },
  3857. "DataType": 1
  3858. }
  3859. ],
  3860. "Datums": [
  3861. {
  3862. "isOverloadedStorage": false,
  3863. "scriptCanvasType": {
  3864. "m_type": 0
  3865. },
  3866. "isNullPointer": false,
  3867. "$type": "bool",
  3868. "value": true,
  3869. "label": "Boolean"
  3870. }
  3871. ],
  3872. "m_variableId": {
  3873. "m_id": "{D07BD694-2B84-4642-9C98-F10B823207AF}"
  3874. },
  3875. "m_variableDataInSlotId": {
  3876. "m_id": "{A334E91D-1460-4247-94FD-EE9C91CFE871}"
  3877. },
  3878. "m_variableDataOutSlotId": {
  3879. "m_id": "{26414D45-E72C-4DED-9CD2-F3053DCE0EFA}"
  3880. }
  3881. }
  3882. }
  3883. },
  3884. {
  3885. "Id": {
  3886. "id": 2737863923859
  3887. },
  3888. "Name": "SC-Node(Gate)",
  3889. "Components": {
  3890. "Component_[681382770975820388]": {
  3891. "$type": "Gate",
  3892. "Id": 681382770975820388,
  3893. "Slots": [
  3894. {
  3895. "id": {
  3896. "m_id": "{FDDC70B6-E0FB-438A-8BA0-ABC55A5305E5}"
  3897. },
  3898. "contracts": [
  3899. {
  3900. "$type": "SlotTypeContract"
  3901. }
  3902. ],
  3903. "slotName": "Condition",
  3904. "toolTip": "If true the node will signal the Output and proceed execution",
  3905. "Descriptor": {
  3906. "ConnectionType": 1,
  3907. "SlotType": 2
  3908. },
  3909. "DataType": 1,
  3910. "IsReference": true,
  3911. "VariableReference": {
  3912. "m_id": "{37CEFCB9-5ED0-44BE-BEF4-205F14024AA1}"
  3913. }
  3914. },
  3915. {
  3916. "id": {
  3917. "m_id": "{16186E99-61D5-429D-BEC3-D2FCDE3EE840}"
  3918. },
  3919. "contracts": [
  3920. {
  3921. "$type": "SlotTypeContract"
  3922. }
  3923. ],
  3924. "slotName": "In",
  3925. "toolTip": "Input signal",
  3926. "Descriptor": {
  3927. "ConnectionType": 1,
  3928. "SlotType": 1
  3929. }
  3930. },
  3931. {
  3932. "id": {
  3933. "m_id": "{A9F18769-E852-4DED-97F9-141996A9123B}"
  3934. },
  3935. "contracts": [
  3936. {
  3937. "$type": "SlotTypeContract"
  3938. }
  3939. ],
  3940. "slotName": "True",
  3941. "toolTip": "Signaled if the condition provided evaluates to true.",
  3942. "Descriptor": {
  3943. "ConnectionType": 2,
  3944. "SlotType": 1
  3945. }
  3946. },
  3947. {
  3948. "id": {
  3949. "m_id": "{EC4BC430-4165-4E0E-A789-17C64473E7C1}"
  3950. },
  3951. "contracts": [
  3952. {
  3953. "$type": "SlotTypeContract"
  3954. }
  3955. ],
  3956. "slotName": "False",
  3957. "toolTip": "Signaled if the condition provided evaluates to false.",
  3958. "Descriptor": {
  3959. "ConnectionType": 2,
  3960. "SlotType": 1
  3961. }
  3962. }
  3963. ],
  3964. "Datums": [
  3965. {
  3966. "isOverloadedStorage": false,
  3967. "scriptCanvasType": {
  3968. "m_type": 0
  3969. },
  3970. "isNullPointer": false,
  3971. "$type": "bool",
  3972. "value": false,
  3973. "label": "Condition"
  3974. }
  3975. ]
  3976. }
  3977. }
  3978. },
  3979. {
  3980. "Id": {
  3981. "id": 2750748825747
  3982. },
  3983. "Name": "SC-Node(ScriptCanvas_MathRandoms_RandomInteger)",
  3984. "Components": {
  3985. "Component_[6843972782670461516]": {
  3986. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3987. "Id": 6843972782670461516,
  3988. "Slots": [
  3989. {
  3990. "id": {
  3991. "m_id": "{070BA545-AE46-45C7-B48B-476C0418CB61}"
  3992. },
  3993. "contracts": [
  3994. {
  3995. "$type": "SlotTypeContract"
  3996. }
  3997. ],
  3998. "slotName": "MinValue",
  3999. "Descriptor": {
  4000. "ConnectionType": 1,
  4001. "SlotType": 2
  4002. },
  4003. "DataType": 1
  4004. },
  4005. {
  4006. "id": {
  4007. "m_id": "{CD61F3CB-9AAD-44DE-898A-7D4ACDDFAB7D}"
  4008. },
  4009. "contracts": [
  4010. {
  4011. "$type": "SlotTypeContract"
  4012. }
  4013. ],
  4014. "slotName": "MaxValue",
  4015. "Descriptor": {
  4016. "ConnectionType": 1,
  4017. "SlotType": 2
  4018. },
  4019. "DataType": 1
  4020. },
  4021. {
  4022. "id": {
  4023. "m_id": "{E50D405F-60EE-442D-BC27-321D5A2D3928}"
  4024. },
  4025. "contracts": [
  4026. {
  4027. "$type": "SlotTypeContract"
  4028. }
  4029. ],
  4030. "slotName": "In",
  4031. "Descriptor": {
  4032. "ConnectionType": 1,
  4033. "SlotType": 1
  4034. }
  4035. },
  4036. {
  4037. "id": {
  4038. "m_id": "{9DE95E33-A849-4515-8732-1D58DE3EAC55}"
  4039. },
  4040. "contracts": [
  4041. {
  4042. "$type": "SlotTypeContract"
  4043. }
  4044. ],
  4045. "slotName": "Out",
  4046. "Descriptor": {
  4047. "ConnectionType": 2,
  4048. "SlotType": 1
  4049. }
  4050. },
  4051. {
  4052. "id": {
  4053. "m_id": "{4C7CB9EA-54C7-4FA1-812D-7F31807E57F6}"
  4054. },
  4055. "contracts": [
  4056. {
  4057. "$type": "SlotTypeContract"
  4058. }
  4059. ],
  4060. "slotName": "Number",
  4061. "DisplayDataType": {
  4062. "m_type": 3
  4063. },
  4064. "Descriptor": {
  4065. "ConnectionType": 2,
  4066. "SlotType": 2
  4067. },
  4068. "DataType": 1
  4069. }
  4070. ],
  4071. "Datums": [
  4072. {
  4073. "isOverloadedStorage": false,
  4074. "scriptCanvasType": {
  4075. "m_type": 3
  4076. },
  4077. "isNullPointer": false,
  4078. "$type": "double",
  4079. "value": 3.0,
  4080. "label": "Min Value"
  4081. },
  4082. {
  4083. "isOverloadedStorage": false,
  4084. "scriptCanvasType": {
  4085. "m_type": 3
  4086. },
  4087. "isNullPointer": false,
  4088. "$type": "double",
  4089. "value": 30.0,
  4090. "label": "Max Value"
  4091. }
  4092. ],
  4093. "methodType": 1,
  4094. "methodName": "ScriptCanvas_MathRandoms_RandomInteger",
  4095. "resultSlotIDs": [
  4096. {}
  4097. ],
  4098. "inputSlots": [
  4099. {
  4100. "m_id": "{070BA545-AE46-45C7-B48B-476C0418CB61}"
  4101. },
  4102. {
  4103. "m_id": "{CD61F3CB-9AAD-44DE-898A-7D4ACDDFAB7D}"
  4104. }
  4105. ],
  4106. "prettyClassName": "ScriptCanvas_MathRandoms_RandomInteger"
  4107. }
  4108. }
  4109. },
  4110. {
  4111. "Id": {
  4112. "id": 2763633727635
  4113. },
  4114. "Name": "SC-Node(SetWorldTranslation)",
  4115. "Components": {
  4116. "Component_[7525842578955652229]": {
  4117. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  4118. "Id": 7525842578955652229,
  4119. "Slots": [
  4120. {
  4121. "id": {
  4122. "m_id": "{84BF5346-6AE8-4568-9A9B-2EEAB14CA852}"
  4123. },
  4124. "contracts": [
  4125. {
  4126. "$type": "SlotTypeContract"
  4127. }
  4128. ],
  4129. "slotName": "EntityId: 0",
  4130. "Descriptor": {
  4131. "ConnectionType": 1,
  4132. "SlotType": 2
  4133. },
  4134. "DataType": 1
  4135. },
  4136. {
  4137. "id": {
  4138. "m_id": "{B8216E83-A8E7-4620-8219-B645C83D5A8A}"
  4139. },
  4140. "contracts": [
  4141. {
  4142. "$type": "SlotTypeContract"
  4143. }
  4144. ],
  4145. "slotName": "Vector3: 1",
  4146. "Descriptor": {
  4147. "ConnectionType": 1,
  4148. "SlotType": 2
  4149. },
  4150. "DataType": 1
  4151. },
  4152. {
  4153. "id": {
  4154. "m_id": "{7498B5BA-6B64-4C40-A81B-C3C21E62A0E1}"
  4155. },
  4156. "contracts": [
  4157. {
  4158. "$type": "SlotTypeContract"
  4159. }
  4160. ],
  4161. "slotName": "In",
  4162. "Descriptor": {
  4163. "ConnectionType": 1,
  4164. "SlotType": 1
  4165. }
  4166. },
  4167. {
  4168. "id": {
  4169. "m_id": "{E99DDD29-6918-410A-AA6B-6211A63ED2C2}"
  4170. },
  4171. "contracts": [
  4172. {
  4173. "$type": "SlotTypeContract"
  4174. }
  4175. ],
  4176. "slotName": "Out",
  4177. "Descriptor": {
  4178. "ConnectionType": 2,
  4179. "SlotType": 1
  4180. }
  4181. }
  4182. ],
  4183. "Datums": [
  4184. {
  4185. "isOverloadedStorage": false,
  4186. "scriptCanvasType": {
  4187. "m_type": 1
  4188. },
  4189. "isNullPointer": false,
  4190. "$type": "EntityId",
  4191. "value": {
  4192. "id": 2901262558
  4193. },
  4194. "label": "Source"
  4195. },
  4196. {
  4197. "isOverloadedStorage": false,
  4198. "scriptCanvasType": {
  4199. "m_type": 8
  4200. },
  4201. "isNullPointer": false,
  4202. "$type": "Vector3",
  4203. "value": [
  4204. 0.0,
  4205. 0.0,
  4206. 0.0
  4207. ],
  4208. "label": "World Translation"
  4209. }
  4210. ],
  4211. "methodType": 0,
  4212. "methodName": "SetWorldTranslation",
  4213. "className": "TransformBus",
  4214. "resultSlotIDs": [
  4215. {}
  4216. ],
  4217. "inputSlots": [
  4218. {
  4219. "m_id": "{84BF5346-6AE8-4568-9A9B-2EEAB14CA852}"
  4220. },
  4221. {
  4222. "m_id": "{B8216E83-A8E7-4620-8219-B645C83D5A8A}"
  4223. }
  4224. ],
  4225. "prettyClassName": "TransformBus"
  4226. }
  4227. }
  4228. },
  4229. {
  4230. "Id": {
  4231. "id": 2780813596819
  4232. },
  4233. "Name": "SC-Node(GetLocalX)",
  4234. "Components": {
  4235. "Component_[7595699548668385351]": {
  4236. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  4237. "Id": 7595699548668385351,
  4238. "Slots": [
  4239. {
  4240. "id": {
  4241. "m_id": "{B72F29B4-09B6-4653-BA9A-3024ACC95E47}"
  4242. },
  4243. "contracts": [
  4244. {
  4245. "$type": "SlotTypeContract"
  4246. }
  4247. ],
  4248. "slotName": "EntityId",
  4249. "Descriptor": {
  4250. "ConnectionType": 1,
  4251. "SlotType": 2
  4252. },
  4253. "DataType": 1
  4254. },
  4255. {
  4256. "id": {
  4257. "m_id": "{1B0004F9-5E39-4C16-B16D-02ADA39E2B0B}"
  4258. },
  4259. "contracts": [
  4260. {
  4261. "$type": "SlotTypeContract"
  4262. }
  4263. ],
  4264. "slotName": "In",
  4265. "Descriptor": {
  4266. "ConnectionType": 1,
  4267. "SlotType": 1
  4268. }
  4269. },
  4270. {
  4271. "id": {
  4272. "m_id": "{D1D1A4CC-7B41-4DBB-8055-E9B1BC2E8EB9}"
  4273. },
  4274. "contracts": [
  4275. {
  4276. "$type": "SlotTypeContract"
  4277. }
  4278. ],
  4279. "slotName": "Out",
  4280. "Descriptor": {
  4281. "ConnectionType": 2,
  4282. "SlotType": 1
  4283. }
  4284. },
  4285. {
  4286. "id": {
  4287. "m_id": "{E767568E-5A01-4D37-AFA0-2BCAB1F2C774}"
  4288. },
  4289. "contracts": [
  4290. {
  4291. "$type": "SlotTypeContract"
  4292. }
  4293. ],
  4294. "slotName": "Number",
  4295. "DisplayDataType": {
  4296. "m_type": 3
  4297. },
  4298. "Descriptor": {
  4299. "ConnectionType": 2,
  4300. "SlotType": 2
  4301. },
  4302. "DataType": 1
  4303. }
  4304. ],
  4305. "Datums": [
  4306. {
  4307. "isOverloadedStorage": false,
  4308. "scriptCanvasType": {
  4309. "m_type": 1
  4310. },
  4311. "isNullPointer": false,
  4312. "$type": "EntityId",
  4313. "value": {
  4314. "id": 2901262558
  4315. },
  4316. "label": "EntityId"
  4317. }
  4318. ],
  4319. "methodType": 0,
  4320. "methodName": "GetLocalX",
  4321. "className": "TransformBus",
  4322. "resultSlotIDs": [
  4323. {}
  4324. ],
  4325. "inputSlots": [
  4326. {
  4327. "m_id": "{B72F29B4-09B6-4653-BA9A-3024ACC95E47}"
  4328. }
  4329. ],
  4330. "prettyClassName": "TransformBus"
  4331. }
  4332. }
  4333. },
  4334. {
  4335. "Id": {
  4336. "id": 2797993466003
  4337. },
  4338. "Name": "SC-Node(OperatorAdd)",
  4339. "Components": {
  4340. "Component_[7768394499170709752]": {
  4341. "$type": "OperatorAdd",
  4342. "Id": 7768394499170709752,
  4343. "Slots": [
  4344. {
  4345. "id": {
  4346. "m_id": "{FCD2C008-57D7-4EF2-BD71-7B729EF29B4A}"
  4347. },
  4348. "contracts": [
  4349. {
  4350. "$type": "SlotTypeContract"
  4351. }
  4352. ],
  4353. "slotName": "In",
  4354. "Descriptor": {
  4355. "ConnectionType": 1,
  4356. "SlotType": 1
  4357. }
  4358. },
  4359. {
  4360. "id": {
  4361. "m_id": "{EC446C5F-6E72-4EA5-84B1-008667C4D033}"
  4362. },
  4363. "contracts": [
  4364. {
  4365. "$type": "SlotTypeContract"
  4366. }
  4367. ],
  4368. "slotName": "Out",
  4369. "Descriptor": {
  4370. "ConnectionType": 2,
  4371. "SlotType": 1
  4372. }
  4373. },
  4374. {
  4375. "id": {
  4376. "m_id": "{0525AD14-19A6-4E18-86DD-DB0DC90C350F}"
  4377. },
  4378. "DynamicTypeOverride": 3,
  4379. "contracts": [
  4380. {
  4381. "$type": "SlotTypeContract"
  4382. },
  4383. {
  4384. "$type": "MathOperatorContract",
  4385. "NativeTypes": [
  4386. {
  4387. "m_type": 3
  4388. },
  4389. {
  4390. "m_type": 6
  4391. },
  4392. {
  4393. "m_type": 8
  4394. },
  4395. {
  4396. "m_type": 9
  4397. },
  4398. {
  4399. "m_type": 10
  4400. },
  4401. {
  4402. "m_type": 11
  4403. },
  4404. {
  4405. "m_type": 12
  4406. },
  4407. {
  4408. "m_type": 14
  4409. },
  4410. {
  4411. "m_type": 15
  4412. }
  4413. ]
  4414. }
  4415. ],
  4416. "slotName": "Number 0",
  4417. "toolTip": "An operand to use in performing the specified Operation",
  4418. "DisplayDataType": {
  4419. "m_type": 3
  4420. },
  4421. "DisplayGroup": {
  4422. "Value": 1114760223
  4423. },
  4424. "Descriptor": {
  4425. "ConnectionType": 1,
  4426. "SlotType": 2
  4427. },
  4428. "DynamicGroup": {
  4429. "Value": 1114760223
  4430. },
  4431. "DataType": 1
  4432. },
  4433. {
  4434. "id": {
  4435. "m_id": "{BE9A9F18-B360-418F-907F-3DA03B31D525}"
  4436. },
  4437. "DynamicTypeOverride": 3,
  4438. "contracts": [
  4439. {
  4440. "$type": "SlotTypeContract"
  4441. },
  4442. {
  4443. "$type": "MathOperatorContract",
  4444. "NativeTypes": [
  4445. {
  4446. "m_type": 3
  4447. },
  4448. {
  4449. "m_type": 6
  4450. },
  4451. {
  4452. "m_type": 8
  4453. },
  4454. {
  4455. "m_type": 9
  4456. },
  4457. {
  4458. "m_type": 10
  4459. },
  4460. {
  4461. "m_type": 11
  4462. },
  4463. {
  4464. "m_type": 12
  4465. },
  4466. {
  4467. "m_type": 14
  4468. },
  4469. {
  4470. "m_type": 15
  4471. }
  4472. ]
  4473. }
  4474. ],
  4475. "slotName": "Number 1",
  4476. "toolTip": "An operand to use in performing the specified Operation",
  4477. "DisplayDataType": {
  4478. "m_type": 3
  4479. },
  4480. "DisplayGroup": {
  4481. "Value": 1114760223
  4482. },
  4483. "Descriptor": {
  4484. "ConnectionType": 1,
  4485. "SlotType": 2
  4486. },
  4487. "DynamicGroup": {
  4488. "Value": 1114760223
  4489. },
  4490. "DataType": 1,
  4491. "IsReference": true,
  4492. "VariableReference": {
  4493. "m_id": "{AEB37DA8-130D-4F00-8E4B-0132F846DEE6}"
  4494. }
  4495. },
  4496. {
  4497. "id": {
  4498. "m_id": "{74A16208-3C34-45B6-8202-CDF66D8A7E96}"
  4499. },
  4500. "DynamicTypeOverride": 3,
  4501. "contracts": [
  4502. {
  4503. "$type": "SlotTypeContract"
  4504. },
  4505. {
  4506. "$type": "MathOperatorContract",
  4507. "NativeTypes": [
  4508. {
  4509. "m_type": 3
  4510. },
  4511. {
  4512. "m_type": 6
  4513. },
  4514. {
  4515. "m_type": 8
  4516. },
  4517. {
  4518. "m_type": 9
  4519. },
  4520. {
  4521. "m_type": 10
  4522. },
  4523. {
  4524. "m_type": 11
  4525. },
  4526. {
  4527. "m_type": 12
  4528. },
  4529. {
  4530. "m_type": 14
  4531. },
  4532. {
  4533. "m_type": 15
  4534. }
  4535. ]
  4536. }
  4537. ],
  4538. "slotName": "Result",
  4539. "toolTip": "The result of the specified operation",
  4540. "DisplayDataType": {
  4541. "m_type": 3
  4542. },
  4543. "DisplayGroup": {
  4544. "Value": 1114760223
  4545. },
  4546. "Descriptor": {
  4547. "ConnectionType": 2,
  4548. "SlotType": 2
  4549. },
  4550. "DynamicGroup": {
  4551. "Value": 1114760223
  4552. },
  4553. "DataType": 1
  4554. }
  4555. ],
  4556. "Datums": [
  4557. {
  4558. "isOverloadedStorage": false,
  4559. "scriptCanvasType": {
  4560. "m_type": 3
  4561. },
  4562. "isNullPointer": false,
  4563. "$type": "double",
  4564. "value": 0.0,
  4565. "label": "Number 0"
  4566. },
  4567. {
  4568. "isOverloadedStorage": false,
  4569. "scriptCanvasType": {
  4570. "m_type": 3
  4571. },
  4572. "isNullPointer": false,
  4573. "$type": "double",
  4574. "value": 1.0,
  4575. "label": "Number 1"
  4576. }
  4577. ]
  4578. }
  4579. }
  4580. },
  4581. {
  4582. "Id": {
  4583. "id": 2815173335187
  4584. },
  4585. "Name": "SC Node(SetVariable)",
  4586. "Components": {
  4587. "Component_[8055904075185414838]": {
  4588. "$type": "SetVariableNode",
  4589. "Id": 8055904075185414838,
  4590. "Slots": [
  4591. {
  4592. "id": {
  4593. "m_id": "{97D52FD4-5AD1-4B0A-A387-215464070823}"
  4594. },
  4595. "contracts": [
  4596. {
  4597. "$type": "SlotTypeContract"
  4598. }
  4599. ],
  4600. "slotName": "In",
  4601. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  4602. "Descriptor": {
  4603. "ConnectionType": 1,
  4604. "SlotType": 1
  4605. }
  4606. },
  4607. {
  4608. "id": {
  4609. "m_id": "{C51FDB68-5538-4C80-9780-1443DFB19147}"
  4610. },
  4611. "contracts": [
  4612. {
  4613. "$type": "SlotTypeContract"
  4614. }
  4615. ],
  4616. "slotName": "Out",
  4617. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  4618. "Descriptor": {
  4619. "ConnectionType": 2,
  4620. "SlotType": 1
  4621. }
  4622. },
  4623. {
  4624. "id": {
  4625. "m_id": "{880E2E7C-D4A5-484A-AB95-06B60377895F}"
  4626. },
  4627. "contracts": [
  4628. {
  4629. "$type": "SlotTypeContract"
  4630. }
  4631. ],
  4632. "slotName": "Boolean",
  4633. "Descriptor": {
  4634. "ConnectionType": 1,
  4635. "SlotType": 2
  4636. },
  4637. "DataType": 1
  4638. },
  4639. {
  4640. "id": {
  4641. "m_id": "{2A0BC860-2BBA-4106-804B-22CE94D949E9}"
  4642. },
  4643. "contracts": [
  4644. {
  4645. "$type": "SlotTypeContract"
  4646. }
  4647. ],
  4648. "slotName": "Boolean",
  4649. "DisplayDataType": {
  4650. "m_type": 0
  4651. },
  4652. "Descriptor": {
  4653. "ConnectionType": 2,
  4654. "SlotType": 2
  4655. },
  4656. "DataType": 1
  4657. }
  4658. ],
  4659. "Datums": [
  4660. {
  4661. "isOverloadedStorage": false,
  4662. "scriptCanvasType": {
  4663. "m_type": 0
  4664. },
  4665. "isNullPointer": false,
  4666. "$type": "bool",
  4667. "value": true,
  4668. "label": "Boolean"
  4669. }
  4670. ],
  4671. "m_variableId": {
  4672. "m_id": "{37CEFCB9-5ED0-44BE-BEF4-205F14024AA1}"
  4673. },
  4674. "m_variableDataInSlotId": {
  4675. "m_id": "{880E2E7C-D4A5-484A-AB95-06B60377895F}"
  4676. },
  4677. "m_variableDataOutSlotId": {
  4678. "m_id": "{2A0BC860-2BBA-4106-804B-22CE94D949E9}"
  4679. }
  4680. }
  4681. }
  4682. },
  4683. {
  4684. "Id": {
  4685. "id": 2840943138963
  4686. },
  4687. "Name": "SC-Node(Gate)",
  4688. "Components": {
  4689. "Component_[8282075956736741887]": {
  4690. "$type": "Gate",
  4691. "Id": 8282075956736741887,
  4692. "Slots": [
  4693. {
  4694. "id": {
  4695. "m_id": "{CDBD23DD-C31B-4196-90F2-A0E178BC8AE3}"
  4696. },
  4697. "contracts": [
  4698. {
  4699. "$type": "SlotTypeContract"
  4700. }
  4701. ],
  4702. "slotName": "Condition",
  4703. "toolTip": "If true the node will signal the Output and proceed execution",
  4704. "Descriptor": {
  4705. "ConnectionType": 1,
  4706. "SlotType": 2
  4707. },
  4708. "DataType": 1,
  4709. "IsReference": true,
  4710. "VariableReference": {
  4711. "m_id": "{D07BD694-2B84-4642-9C98-F10B823207AF}"
  4712. }
  4713. },
  4714. {
  4715. "id": {
  4716. "m_id": "{46DD192B-98AE-4BC1-B283-AA0E03C27C57}"
  4717. },
  4718. "contracts": [
  4719. {
  4720. "$type": "SlotTypeContract"
  4721. }
  4722. ],
  4723. "slotName": "In",
  4724. "toolTip": "Input signal",
  4725. "Descriptor": {
  4726. "ConnectionType": 1,
  4727. "SlotType": 1
  4728. }
  4729. },
  4730. {
  4731. "id": {
  4732. "m_id": "{86E4BB1F-58E3-4A81-81D3-9B49F3BB03EF}"
  4733. },
  4734. "contracts": [
  4735. {
  4736. "$type": "SlotTypeContract"
  4737. }
  4738. ],
  4739. "slotName": "True",
  4740. "toolTip": "Signaled if the condition provided evaluates to true.",
  4741. "Descriptor": {
  4742. "ConnectionType": 2,
  4743. "SlotType": 1
  4744. }
  4745. },
  4746. {
  4747. "id": {
  4748. "m_id": "{C4C3A859-F702-4237-B45B-95D152D3F8B7}"
  4749. },
  4750. "contracts": [
  4751. {
  4752. "$type": "SlotTypeContract"
  4753. }
  4754. ],
  4755. "slotName": "False",
  4756. "toolTip": "Signaled if the condition provided evaluates to false.",
  4757. "Descriptor": {
  4758. "ConnectionType": 2,
  4759. "SlotType": 1
  4760. }
  4761. }
  4762. ],
  4763. "Datums": [
  4764. {
  4765. "isOverloadedStorage": false,
  4766. "scriptCanvasType": {
  4767. "m_type": 0
  4768. },
  4769. "isNullPointer": false,
  4770. "$type": "bool",
  4771. "value": false,
  4772. "label": "Condition"
  4773. }
  4774. ]
  4775. }
  4776. }
  4777. },
  4778. {
  4779. "Id": {
  4780. "id": 2836648171667
  4781. },
  4782. "Name": "SC-Node(OperatorSub)",
  4783. "Components": {
  4784. "Component_[980812130649902196]": {
  4785. "$type": "OperatorSub",
  4786. "Id": 980812130649902196,
  4787. "Slots": [
  4788. {
  4789. "id": {
  4790. "m_id": "{AB302ED6-E317-4429-AC48-9CD9305488AC}"
  4791. },
  4792. "contracts": [
  4793. {
  4794. "$type": "SlotTypeContract"
  4795. }
  4796. ],
  4797. "slotName": "In",
  4798. "Descriptor": {
  4799. "ConnectionType": 1,
  4800. "SlotType": 1
  4801. }
  4802. },
  4803. {
  4804. "id": {
  4805. "m_id": "{FA022EE0-4305-418D-B936-037DCFC4AE36}"
  4806. },
  4807. "contracts": [
  4808. {
  4809. "$type": "SlotTypeContract"
  4810. }
  4811. ],
  4812. "slotName": "Out",
  4813. "Descriptor": {
  4814. "ConnectionType": 2,
  4815. "SlotType": 1
  4816. }
  4817. },
  4818. {
  4819. "id": {
  4820. "m_id": "{A67055D6-062B-48A9-9EAF-CF5F080ACDCA}"
  4821. },
  4822. "DynamicTypeOverride": 3,
  4823. "contracts": [
  4824. {
  4825. "$type": "SlotTypeContract"
  4826. },
  4827. {
  4828. "$type": "MathOperatorContract",
  4829. "NativeTypes": [
  4830. {
  4831. "m_type": 3
  4832. },
  4833. {
  4834. "m_type": 8
  4835. },
  4836. {
  4837. "m_type": 9
  4838. },
  4839. {
  4840. "m_type": 10
  4841. },
  4842. {
  4843. "m_type": 12
  4844. },
  4845. {
  4846. "m_type": 14
  4847. },
  4848. {
  4849. "m_type": 15
  4850. }
  4851. ]
  4852. }
  4853. ],
  4854. "slotName": "Number 0",
  4855. "toolTip": "An operand to use in performing the specified Operation",
  4856. "DisplayDataType": {
  4857. "m_type": 3
  4858. },
  4859. "DisplayGroup": {
  4860. "Value": 1114760223
  4861. },
  4862. "Descriptor": {
  4863. "ConnectionType": 1,
  4864. "SlotType": 2
  4865. },
  4866. "DynamicGroup": {
  4867. "Value": 1114760223
  4868. },
  4869. "DataType": 1
  4870. },
  4871. {
  4872. "id": {
  4873. "m_id": "{213A35FD-E86F-489A-B6DF-DD3863F8EC62}"
  4874. },
  4875. "DynamicTypeOverride": 3,
  4876. "contracts": [
  4877. {
  4878. "$type": "SlotTypeContract"
  4879. },
  4880. {
  4881. "$type": "MathOperatorContract",
  4882. "NativeTypes": [
  4883. {
  4884. "m_type": 3
  4885. },
  4886. {
  4887. "m_type": 8
  4888. },
  4889. {
  4890. "m_type": 9
  4891. },
  4892. {
  4893. "m_type": 10
  4894. },
  4895. {
  4896. "m_type": 12
  4897. },
  4898. {
  4899. "m_type": 14
  4900. },
  4901. {
  4902. "m_type": 15
  4903. }
  4904. ]
  4905. }
  4906. ],
  4907. "slotName": "Number 1",
  4908. "toolTip": "An operand to use in performing the specified Operation",
  4909. "DisplayDataType": {
  4910. "m_type": 3
  4911. },
  4912. "DisplayGroup": {
  4913. "Value": 1114760223
  4914. },
  4915. "Descriptor": {
  4916. "ConnectionType": 1,
  4917. "SlotType": 2
  4918. },
  4919. "DynamicGroup": {
  4920. "Value": 1114760223
  4921. },
  4922. "DataType": 1,
  4923. "IsReference": true,
  4924. "VariableReference": {
  4925. "m_id": "{AEB37DA8-130D-4F00-8E4B-0132F846DEE6}"
  4926. }
  4927. },
  4928. {
  4929. "id": {
  4930. "m_id": "{87CE502F-DA50-45CD-9317-7D1F58BB8987}"
  4931. },
  4932. "DynamicTypeOverride": 3,
  4933. "contracts": [
  4934. {
  4935. "$type": "SlotTypeContract"
  4936. },
  4937. {
  4938. "$type": "MathOperatorContract",
  4939. "NativeTypes": [
  4940. {
  4941. "m_type": 3
  4942. },
  4943. {
  4944. "m_type": 8
  4945. },
  4946. {
  4947. "m_type": 9
  4948. },
  4949. {
  4950. "m_type": 10
  4951. },
  4952. {
  4953. "m_type": 12
  4954. },
  4955. {
  4956. "m_type": 14
  4957. },
  4958. {
  4959. "m_type": 15
  4960. }
  4961. ]
  4962. }
  4963. ],
  4964. "slotName": "Result",
  4965. "toolTip": "The result of the specified operation",
  4966. "DisplayDataType": {
  4967. "m_type": 3
  4968. },
  4969. "DisplayGroup": {
  4970. "Value": 1114760223
  4971. },
  4972. "Descriptor": {
  4973. "ConnectionType": 2,
  4974. "SlotType": 2
  4975. },
  4976. "DynamicGroup": {
  4977. "Value": 1114760223
  4978. },
  4979. "DataType": 1
  4980. }
  4981. ],
  4982. "Datums": [
  4983. {
  4984. "isOverloadedStorage": false,
  4985. "scriptCanvasType": {
  4986. "m_type": 3
  4987. },
  4988. "isNullPointer": false,
  4989. "$type": "double",
  4990. "value": 0.0,
  4991. "label": "Number 0"
  4992. },
  4993. {
  4994. "isOverloadedStorage": false,
  4995. "scriptCanvasType": {
  4996. "m_type": 3
  4997. },
  4998. "isNullPointer": false,
  4999. "$type": "double",
  5000. "value": 0.0,
  5001. "label": "Number 1"
  5002. }
  5003. ]
  5004. }
  5005. }
  5006. },
  5007. {
  5008. "Id": {
  5009. "id": 2862417975443
  5010. },
  5011. "Name": "SC-Node(OperatorSub)",
  5012. "Components": {
  5013. "Component_[980812130649902196]": {
  5014. "$type": "OperatorSub",
  5015. "Id": 980812130649902196,
  5016. "Slots": [
  5017. {
  5018. "id": {
  5019. "m_id": "{AB302ED6-E317-4429-AC48-9CD9305488AC}"
  5020. },
  5021. "contracts": [
  5022. {
  5023. "$type": "SlotTypeContract"
  5024. }
  5025. ],
  5026. "slotName": "In",
  5027. "Descriptor": {
  5028. "ConnectionType": 1,
  5029. "SlotType": 1
  5030. }
  5031. },
  5032. {
  5033. "id": {
  5034. "m_id": "{FA022EE0-4305-418D-B936-037DCFC4AE36}"
  5035. },
  5036. "contracts": [
  5037. {
  5038. "$type": "SlotTypeContract"
  5039. }
  5040. ],
  5041. "slotName": "Out",
  5042. "Descriptor": {
  5043. "ConnectionType": 2,
  5044. "SlotType": 1
  5045. }
  5046. },
  5047. {
  5048. "id": {
  5049. "m_id": "{A67055D6-062B-48A9-9EAF-CF5F080ACDCA}"
  5050. },
  5051. "DynamicTypeOverride": 3,
  5052. "contracts": [
  5053. {
  5054. "$type": "SlotTypeContract"
  5055. },
  5056. {
  5057. "$type": "MathOperatorContract",
  5058. "NativeTypes": [
  5059. {
  5060. "m_type": 3
  5061. },
  5062. {
  5063. "m_type": 8
  5064. },
  5065. {
  5066. "m_type": 9
  5067. },
  5068. {
  5069. "m_type": 10
  5070. },
  5071. {
  5072. "m_type": 12
  5073. },
  5074. {
  5075. "m_type": 14
  5076. },
  5077. {
  5078. "m_type": 15
  5079. }
  5080. ]
  5081. }
  5082. ],
  5083. "slotName": "Number 0",
  5084. "toolTip": "An operand to use in performing the specified Operation",
  5085. "DisplayDataType": {
  5086. "m_type": 3
  5087. },
  5088. "DisplayGroup": {
  5089. "Value": 1114760223
  5090. },
  5091. "Descriptor": {
  5092. "ConnectionType": 1,
  5093. "SlotType": 2
  5094. },
  5095. "DynamicGroup": {
  5096. "Value": 1114760223
  5097. },
  5098. "DataType": 1
  5099. },
  5100. {
  5101. "id": {
  5102. "m_id": "{213A35FD-E86F-489A-B6DF-DD3863F8EC62}"
  5103. },
  5104. "DynamicTypeOverride": 3,
  5105. "contracts": [
  5106. {
  5107. "$type": "SlotTypeContract"
  5108. },
  5109. {
  5110. "$type": "MathOperatorContract",
  5111. "NativeTypes": [
  5112. {
  5113. "m_type": 3
  5114. },
  5115. {
  5116. "m_type": 8
  5117. },
  5118. {
  5119. "m_type": 9
  5120. },
  5121. {
  5122. "m_type": 10
  5123. },
  5124. {
  5125. "m_type": 12
  5126. },
  5127. {
  5128. "m_type": 14
  5129. },
  5130. {
  5131. "m_type": 15
  5132. }
  5133. ]
  5134. }
  5135. ],
  5136. "slotName": "Number 1",
  5137. "toolTip": "An operand to use in performing the specified Operation",
  5138. "DisplayDataType": {
  5139. "m_type": 3
  5140. },
  5141. "DisplayGroup": {
  5142. "Value": 1114760223
  5143. },
  5144. "Descriptor": {
  5145. "ConnectionType": 1,
  5146. "SlotType": 2
  5147. },
  5148. "DynamicGroup": {
  5149. "Value": 1114760223
  5150. },
  5151. "DataType": 1,
  5152. "IsReference": true,
  5153. "VariableReference": {
  5154. "m_id": "{295F3476-4E49-47B6-9C8A-8DF6E19C8A16}"
  5155. }
  5156. },
  5157. {
  5158. "id": {
  5159. "m_id": "{87CE502F-DA50-45CD-9317-7D1F58BB8987}"
  5160. },
  5161. "DynamicTypeOverride": 3,
  5162. "contracts": [
  5163. {
  5164. "$type": "SlotTypeContract"
  5165. },
  5166. {
  5167. "$type": "MathOperatorContract",
  5168. "NativeTypes": [
  5169. {
  5170. "m_type": 3
  5171. },
  5172. {
  5173. "m_type": 8
  5174. },
  5175. {
  5176. "m_type": 9
  5177. },
  5178. {
  5179. "m_type": 10
  5180. },
  5181. {
  5182. "m_type": 12
  5183. },
  5184. {
  5185. "m_type": 14
  5186. },
  5187. {
  5188. "m_type": 15
  5189. }
  5190. ]
  5191. }
  5192. ],
  5193. "slotName": "Result",
  5194. "toolTip": "The result of the specified operation",
  5195. "DisplayDataType": {
  5196. "m_type": 3
  5197. },
  5198. "DisplayGroup": {
  5199. "Value": 1114760223
  5200. },
  5201. "Descriptor": {
  5202. "ConnectionType": 2,
  5203. "SlotType": 2
  5204. },
  5205. "DynamicGroup": {
  5206. "Value": 1114760223
  5207. },
  5208. "DataType": 1
  5209. }
  5210. ],
  5211. "Datums": [
  5212. {
  5213. "isOverloadedStorage": false,
  5214. "scriptCanvasType": {
  5215. "m_type": 3
  5216. },
  5217. "isNullPointer": false,
  5218. "$type": "double",
  5219. "value": 0.1,
  5220. "label": "Number 0"
  5221. },
  5222. {
  5223. "isOverloadedStorage": false,
  5224. "scriptCanvasType": {
  5225. "m_type": 3
  5226. },
  5227. "isNullPointer": false,
  5228. "$type": "double",
  5229. "value": 0.0,
  5230. "label": "Number 1"
  5231. }
  5232. ]
  5233. }
  5234. }
  5235. }
  5236. ],
  5237. "m_connections": [
  5238. {
  5239. "Id": {
  5240. "id": 2866712942739
  5241. },
  5242. "Name": "srcEndpoint=(GetLocalX: Out), destEndpoint=(Add (+): In)",
  5243. "Components": {
  5244. "Component_[6424092636742729242]": {
  5245. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5246. "Id": 6424092636742729242,
  5247. "sourceEndpoint": {
  5248. "nodeId": {
  5249. "id": 2780813596819
  5250. },
  5251. "slotId": {
  5252. "m_id": "{D1D1A4CC-7B41-4DBB-8055-E9B1BC2E8EB9}"
  5253. }
  5254. },
  5255. "targetEndpoint": {
  5256. "nodeId": {
  5257. "id": 2797993466003
  5258. },
  5259. "slotId": {
  5260. "m_id": "{FCD2C008-57D7-4EF2-BD71-7B729EF29B4A}"
  5261. }
  5262. }
  5263. }
  5264. }
  5265. },
  5266. {
  5267. "Id": {
  5268. "id": 2871007910035
  5269. },
  5270. "Name": "srcEndpoint=(GetLocalX: Number), destEndpoint=(Add (+): Value 0)",
  5271. "Components": {
  5272. "Component_[2714642115343590878]": {
  5273. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5274. "Id": 2714642115343590878,
  5275. "sourceEndpoint": {
  5276. "nodeId": {
  5277. "id": 2780813596819
  5278. },
  5279. "slotId": {
  5280. "m_id": "{E767568E-5A01-4D37-AFA0-2BCAB1F2C774}"
  5281. }
  5282. },
  5283. "targetEndpoint": {
  5284. "nodeId": {
  5285. "id": 2797993466003
  5286. },
  5287. "slotId": {
  5288. "m_id": "{0525AD14-19A6-4E18-86DD-DB0DC90C350F}"
  5289. }
  5290. }
  5291. }
  5292. }
  5293. },
  5294. {
  5295. "Id": {
  5296. "id": 2875302877331
  5297. },
  5298. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(SetLocalX: In)",
  5299. "Components": {
  5300. "Component_[9582411510250162355]": {
  5301. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5302. "Id": 9582411510250162355,
  5303. "sourceEndpoint": {
  5304. "nodeId": {
  5305. "id": 2797993466003
  5306. },
  5307. "slotId": {
  5308. "m_id": "{EC446C5F-6E72-4EA5-84B1-008667C4D033}"
  5309. }
  5310. },
  5311. "targetEndpoint": {
  5312. "nodeId": {
  5313. "id": 2845238106259
  5314. },
  5315. "slotId": {
  5316. "m_id": "{0F0B182A-0098-4AF8-A170-D6F092E8AE39}"
  5317. }
  5318. }
  5319. }
  5320. }
  5321. },
  5322. {
  5323. "Id": {
  5324. "id": 2879597844627
  5325. },
  5326. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(SetLocalX: Number: 1)",
  5327. "Components": {
  5328. "Component_[66159433915877089]": {
  5329. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5330. "Id": 66159433915877089,
  5331. "sourceEndpoint": {
  5332. "nodeId": {
  5333. "id": 2797993466003
  5334. },
  5335. "slotId": {
  5336. "m_id": "{74A16208-3C34-45B6-8202-CDF66D8A7E96}"
  5337. }
  5338. },
  5339. "targetEndpoint": {
  5340. "nodeId": {
  5341. "id": 2845238106259
  5342. },
  5343. "slotId": {
  5344. "m_id": "{C7959E47-99F9-489A-AE58-6AA429A6A062}"
  5345. }
  5346. }
  5347. }
  5348. }
  5349. },
  5350. {
  5351. "Id": {
  5352. "id": 2883892811923
  5353. },
  5354. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Timer: Start)",
  5355. "Components": {
  5356. "Component_[13600595606121834590]": {
  5357. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5358. "Id": 13600595606121834590,
  5359. "sourceEndpoint": {
  5360. "nodeId": {
  5361. "id": 2776518629523
  5362. },
  5363. "slotId": {
  5364. "m_id": "{DD7AF2DD-9096-4DB0-B440-FBD32B6D42EF}"
  5365. }
  5366. },
  5367. "targetEndpoint": {
  5368. "nodeId": {
  5369. "id": 2810878367891
  5370. },
  5371. "slotId": {
  5372. "m_id": "{0B0A7B02-BE8C-4F42-A22D-EA2D791EB534}"
  5373. }
  5374. }
  5375. }
  5376. }
  5377. },
  5378. {
  5379. "Id": {
  5380. "id": 2888187779219
  5381. },
  5382. "Name": "srcEndpoint=(Delay: Done), destEndpoint=(GetLocalX: In)",
  5383. "Components": {
  5384. "Component_[11271083397821714978]": {
  5385. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5386. "Id": 11271083397821714978,
  5387. "sourceEndpoint": {
  5388. "nodeId": {
  5389. "id": 2853828040851
  5390. },
  5391. "slotId": {
  5392. "m_id": "{1145CFE8-3394-490F-8DDD-5F39CA9362AC}"
  5393. }
  5394. },
  5395. "targetEndpoint": {
  5396. "nodeId": {
  5397. "id": 2780813596819
  5398. },
  5399. "slotId": {
  5400. "m_id": "{1B0004F9-5E39-4C16-B16D-02ADA39E2B0B}"
  5401. }
  5402. }
  5403. }
  5404. }
  5405. },
  5406. {
  5407. "Id": {
  5408. "id": 2892482746515
  5409. },
  5410. "Name": "srcEndpoint=(If: True), destEndpoint=(Add (+): In)",
  5411. "Components": {
  5412. "Component_[16039375209644540541]": {
  5413. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5414. "Id": 16039375209644540541,
  5415. "sourceEndpoint": {
  5416. "nodeId": {
  5417. "id": 2737863923859
  5418. },
  5419. "slotId": {
  5420. "m_id": "{A9F18769-E852-4DED-97F9-141996A9123B}"
  5421. }
  5422. },
  5423. "targetEndpoint": {
  5424. "nodeId": {
  5425. "id": 2797993466003
  5426. },
  5427. "slotId": {
  5428. "m_id": "{FCD2C008-57D7-4EF2-BD71-7B729EF29B4A}"
  5429. }
  5430. }
  5431. }
  5432. }
  5433. },
  5434. {
  5435. "Id": {
  5436. "id": 2896777713811
  5437. },
  5438. "Name": "srcEndpoint=(If: False), destEndpoint=(Subtract (-): In)",
  5439. "Components": {
  5440. "Component_[12721040412569966336]": {
  5441. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5442. "Id": 12721040412569966336,
  5443. "sourceEndpoint": {
  5444. "nodeId": {
  5445. "id": 2737863923859
  5446. },
  5447. "slotId": {
  5448. "m_id": "{EC4BC430-4165-4E0E-A789-17C64473E7C1}"
  5449. }
  5450. },
  5451. "targetEndpoint": {
  5452. "nodeId": {
  5453. "id": 2836648171667
  5454. },
  5455. "slotId": {
  5456. "m_id": "{AB302ED6-E317-4429-AC48-9CD9305488AC}"
  5457. }
  5458. }
  5459. }
  5460. }
  5461. },
  5462. {
  5463. "Id": {
  5464. "id": 2901072681107
  5465. },
  5466. "Name": "srcEndpoint=(GetLocalX: Number), destEndpoint=(Subtract (-): Number 0)",
  5467. "Components": {
  5468. "Component_[15683029631455432799]": {
  5469. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5470. "Id": 15683029631455432799,
  5471. "sourceEndpoint": {
  5472. "nodeId": {
  5473. "id": 2780813596819
  5474. },
  5475. "slotId": {
  5476. "m_id": "{E767568E-5A01-4D37-AFA0-2BCAB1F2C774}"
  5477. }
  5478. },
  5479. "targetEndpoint": {
  5480. "nodeId": {
  5481. "id": 2836648171667
  5482. },
  5483. "slotId": {
  5484. "m_id": "{A67055D6-062B-48A9-9EAF-CF5F080ACDCA}"
  5485. }
  5486. }
  5487. }
  5488. }
  5489. },
  5490. {
  5491. "Id": {
  5492. "id": 2905367648403
  5493. },
  5494. "Name": "srcEndpoint=(GetLocalX: Out), destEndpoint=(If: In)",
  5495. "Components": {
  5496. "Component_[14361831565580286213]": {
  5497. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5498. "Id": 14361831565580286213,
  5499. "sourceEndpoint": {
  5500. "nodeId": {
  5501. "id": 2780813596819
  5502. },
  5503. "slotId": {
  5504. "m_id": "{D1D1A4CC-7B41-4DBB-8055-E9B1BC2E8EB9}"
  5505. }
  5506. },
  5507. "targetEndpoint": {
  5508. "nodeId": {
  5509. "id": 2737863923859
  5510. },
  5511. "slotId": {
  5512. "m_id": "{16186E99-61D5-429D-BEC3-D2FCDE3EE840}"
  5513. }
  5514. }
  5515. }
  5516. }
  5517. },
  5518. {
  5519. "Id": {
  5520. "id": 2909662615699
  5521. },
  5522. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(Set Variable: In)",
  5523. "Components": {
  5524. "Component_[5035179315275537343]": {
  5525. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5526. "Id": 5035179315275537343,
  5527. "sourceEndpoint": {
  5528. "nodeId": {
  5529. "id": 2832353204371
  5530. },
  5531. "slotId": {
  5532. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  5533. }
  5534. },
  5535. "targetEndpoint": {
  5536. "nodeId": {
  5537. "id": 2815173335187
  5538. },
  5539. "slotId": {
  5540. "m_id": "{97D52FD4-5AD1-4B0A-A387-215464070823}"
  5541. }
  5542. }
  5543. }
  5544. }
  5545. },
  5546. {
  5547. "Id": {
  5548. "id": 2913957582995
  5549. },
  5550. "Name": "srcEndpoint=(If: False), destEndpoint=(TimeDelay: Start)",
  5551. "Components": {
  5552. "Component_[4280411162760498453]": {
  5553. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5554. "Id": 4280411162760498453,
  5555. "sourceEndpoint": {
  5556. "nodeId": {
  5557. "id": 2793698498707
  5558. },
  5559. "slotId": {
  5560. "m_id": "{FDD26CC5-A735-46E8-8AE4-1AAD63639AC0}"
  5561. }
  5562. },
  5563. "targetEndpoint": {
  5564. "nodeId": {
  5565. "id": 2832353204371
  5566. },
  5567. "slotId": {
  5568. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  5569. }
  5570. }
  5571. }
  5572. }
  5573. },
  5574. {
  5575. "Id": {
  5576. "id": 2918252550291
  5577. },
  5578. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(Set Variable: In)",
  5579. "Components": {
  5580. "Component_[6270257195549237545]": {
  5581. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5582. "Id": 6270257195549237545,
  5583. "sourceEndpoint": {
  5584. "nodeId": {
  5585. "id": 2858123008147
  5586. },
  5587. "slotId": {
  5588. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  5589. }
  5590. },
  5591. "targetEndpoint": {
  5592. "nodeId": {
  5593. "id": 2759338760339
  5594. },
  5595. "slotId": {
  5596. "m_id": "{B5914F26-A92F-47D3-9B42-C8D357E9B42B}"
  5597. }
  5598. }
  5599. }
  5600. }
  5601. },
  5602. {
  5603. "Id": {
  5604. "id": 2922547517587
  5605. },
  5606. "Name": "srcEndpoint=(If: True), destEndpoint=(TimeDelay: Start)",
  5607. "Components": {
  5608. "Component_[7352184042860207772]": {
  5609. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5610. "Id": 7352184042860207772,
  5611. "sourceEndpoint": {
  5612. "nodeId": {
  5613. "id": 2793698498707
  5614. },
  5615. "slotId": {
  5616. "m_id": "{3DD6AFBA-EEAE-4F94-AB99-C5D648F12F47}"
  5617. }
  5618. },
  5619. "targetEndpoint": {
  5620. "nodeId": {
  5621. "id": 2858123008147
  5622. },
  5623. "slotId": {
  5624. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  5625. }
  5626. }
  5627. }
  5628. }
  5629. },
  5630. {
  5631. "Id": {
  5632. "id": 2926842484883
  5633. },
  5634. "Name": "srcEndpoint=(Subtract (-): Out), destEndpoint=(SetLocalX: In)",
  5635. "Components": {
  5636. "Component_[2631357478650396715]": {
  5637. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5638. "Id": 2631357478650396715,
  5639. "sourceEndpoint": {
  5640. "nodeId": {
  5641. "id": 2836648171667
  5642. },
  5643. "slotId": {
  5644. "m_id": "{FA022EE0-4305-418D-B936-037DCFC4AE36}"
  5645. }
  5646. },
  5647. "targetEndpoint": {
  5648. "nodeId": {
  5649. "id": 2845238106259
  5650. },
  5651. "slotId": {
  5652. "m_id": "{0F0B182A-0098-4AF8-A170-D6F092E8AE39}"
  5653. }
  5654. }
  5655. }
  5656. }
  5657. },
  5658. {
  5659. "Id": {
  5660. "id": 2931137452179
  5661. },
  5662. "Name": "srcEndpoint=(Subtract (-): Result), destEndpoint=(SetLocalX: Number: 1)",
  5663. "Components": {
  5664. "Component_[6804938183731545323]": {
  5665. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5666. "Id": 6804938183731545323,
  5667. "sourceEndpoint": {
  5668. "nodeId": {
  5669. "id": 2836648171667
  5670. },
  5671. "slotId": {
  5672. "m_id": "{87CE502F-DA50-45CD-9317-7D1F58BB8987}"
  5673. }
  5674. },
  5675. "targetEndpoint": {
  5676. "nodeId": {
  5677. "id": 2845238106259
  5678. },
  5679. "slotId": {
  5680. "m_id": "{C7959E47-99F9-489A-AE58-6AA429A6A062}"
  5681. }
  5682. }
  5683. }
  5684. }
  5685. },
  5686. {
  5687. "Id": {
  5688. "id": 2935432419475
  5689. },
  5690. "Name": "srcEndpoint=(GetLocalY: Out), destEndpoint=(Subtract (-): In)",
  5691. "Components": {
  5692. "Component_[9318286724616506083]": {
  5693. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5694. "Id": 9318286724616506083,
  5695. "sourceEndpoint": {
  5696. "nodeId": {
  5697. "id": 2742158891155
  5698. },
  5699. "slotId": {
  5700. "m_id": "{4E7C9B92-BDCC-414D-BE6B-62610DC8ABFF}"
  5701. }
  5702. },
  5703. "targetEndpoint": {
  5704. "nodeId": {
  5705. "id": 2862417975443
  5706. },
  5707. "slotId": {
  5708. "m_id": "{AB302ED6-E317-4429-AC48-9CD9305488AC}"
  5709. }
  5710. }
  5711. }
  5712. }
  5713. },
  5714. {
  5715. "Id": {
  5716. "id": 2939727386771
  5717. },
  5718. "Name": "srcEndpoint=(Subtract (-): Out), destEndpoint=(SetLocalY: In)",
  5719. "Components": {
  5720. "Component_[4394443994384263263]": {
  5721. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5722. "Id": 4394443994384263263,
  5723. "sourceEndpoint": {
  5724. "nodeId": {
  5725. "id": 2862417975443
  5726. },
  5727. "slotId": {
  5728. "m_id": "{FA022EE0-4305-418D-B936-037DCFC4AE36}"
  5729. }
  5730. },
  5731. "targetEndpoint": {
  5732. "nodeId": {
  5733. "id": 2746453858451
  5734. },
  5735. "slotId": {
  5736. "m_id": "{CA2DEB4A-7DAB-4779-AE44-C21BA206D85F}"
  5737. }
  5738. }
  5739. }
  5740. }
  5741. },
  5742. {
  5743. "Id": {
  5744. "id": 2944022354067
  5745. },
  5746. "Name": "srcEndpoint=(Subtract (-): Result), destEndpoint=(SetLocalY: Number: 1)",
  5747. "Components": {
  5748. "Component_[13576342342997747063]": {
  5749. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5750. "Id": 13576342342997747063,
  5751. "sourceEndpoint": {
  5752. "nodeId": {
  5753. "id": 2862417975443
  5754. },
  5755. "slotId": {
  5756. "m_id": "{87CE502F-DA50-45CD-9317-7D1F58BB8987}"
  5757. }
  5758. },
  5759. "targetEndpoint": {
  5760. "nodeId": {
  5761. "id": 2746453858451
  5762. },
  5763. "slotId": {
  5764. "m_id": "{64AD59BA-7A3B-4624-9579-131421FB8B2F}"
  5765. }
  5766. }
  5767. }
  5768. }
  5769. },
  5770. {
  5771. "Id": {
  5772. "id": 2948317321363
  5773. },
  5774. "Name": "srcEndpoint=(SetLocalY: Out), destEndpoint=(If: In)",
  5775. "Components": {
  5776. "Component_[9531014350537661722]": {
  5777. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5778. "Id": 9531014350537661722,
  5779. "sourceEndpoint": {
  5780. "nodeId": {
  5781. "id": 2746453858451
  5782. },
  5783. "slotId": {
  5784. "m_id": "{6C451AA5-012B-4BB2-B2C6-23272FC6A86A}"
  5785. }
  5786. },
  5787. "targetEndpoint": {
  5788. "nodeId": {
  5789. "id": 2793698498707
  5790. },
  5791. "slotId": {
  5792. "m_id": "{CD6202C2-A6D0-48F3-9969-ADDC488003DA}"
  5793. }
  5794. }
  5795. }
  5796. }
  5797. },
  5798. {
  5799. "Id": {
  5800. "id": 2952612288659
  5801. },
  5802. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(GetLocalY: In)",
  5803. "Components": {
  5804. "Component_[15339826675737162060]": {
  5805. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5806. "Id": 15339826675737162060,
  5807. "sourceEndpoint": {
  5808. "nodeId": {
  5809. "id": 2759338760339
  5810. },
  5811. "slotId": {
  5812. "m_id": "{956F4684-DFA4-483D-B99B-541F8140A1F0}"
  5813. }
  5814. },
  5815. "targetEndpoint": {
  5816. "nodeId": {
  5817. "id": 2742158891155
  5818. },
  5819. "slotId": {
  5820. "m_id": "{3AA2BC0D-421E-4C67-88E7-F80DFD98A680}"
  5821. }
  5822. }
  5823. }
  5824. }
  5825. },
  5826. {
  5827. "Id": {
  5828. "id": 2956907255955
  5829. },
  5830. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(GetLocalY: In)",
  5831. "Components": {
  5832. "Component_[1306641820709462954]": {
  5833. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5834. "Id": 1306641820709462954,
  5835. "sourceEndpoint": {
  5836. "nodeId": {
  5837. "id": 2815173335187
  5838. },
  5839. "slotId": {
  5840. "m_id": "{C51FDB68-5538-4C80-9780-1443DFB19147}"
  5841. }
  5842. },
  5843. "targetEndpoint": {
  5844. "nodeId": {
  5845. "id": 2742158891155
  5846. },
  5847. "slotId": {
  5848. "m_id": "{3AA2BC0D-421E-4C67-88E7-F80DFD98A680}"
  5849. }
  5850. }
  5851. }
  5852. }
  5853. },
  5854. {
  5855. "Id": {
  5856. "id": 2961202223251
  5857. },
  5858. "Name": "srcEndpoint=(Delay: Done), destEndpoint=(If: In)",
  5859. "Components": {
  5860. "Component_[2685928229041724960]": {
  5861. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5862. "Id": 2685928229041724960,
  5863. "sourceEndpoint": {
  5864. "nodeId": {
  5865. "id": 2802288433299
  5866. },
  5867. "slotId": {
  5868. "m_id": "{14C8C8BD-20A2-49C8-861A-841AC4BC626B}"
  5869. }
  5870. },
  5871. "targetEndpoint": {
  5872. "nodeId": {
  5873. "id": 2793698498707
  5874. },
  5875. "slotId": {
  5876. "m_id": "{CD6202C2-A6D0-48F3-9969-ADDC488003DA}"
  5877. }
  5878. }
  5879. }
  5880. }
  5881. },
  5882. {
  5883. "Id": {
  5884. "id": 2965497190547
  5885. },
  5886. "Name": "srcEndpoint=(GetLocalY: Number), destEndpoint=(Subtract (-): Number 0)",
  5887. "Components": {
  5888. "Component_[11243867798690269431]": {
  5889. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5890. "Id": 11243867798690269431,
  5891. "sourceEndpoint": {
  5892. "nodeId": {
  5893. "id": 2742158891155
  5894. },
  5895. "slotId": {
  5896. "m_id": "{4EDB1363-57FE-463E-9B91-5FD694DDAE28}"
  5897. }
  5898. },
  5899. "targetEndpoint": {
  5900. "nodeId": {
  5901. "id": 2862417975443
  5902. },
  5903. "slotId": {
  5904. "m_id": "{A67055D6-062B-48A9-9EAF-CF5F080ACDCA}"
  5905. }
  5906. }
  5907. }
  5908. }
  5909. },
  5910. {
  5911. "Id": {
  5912. "id": 2969792157843
  5913. },
  5914. "Name": "srcEndpoint=(GetWorldTranslation: Out), destEndpoint=(Lerp Between: In)",
  5915. "Components": {
  5916. "Component_[13294667426050463587]": {
  5917. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5918. "Id": 13294667426050463587,
  5919. "sourceEndpoint": {
  5920. "nodeId": {
  5921. "id": 2772223662227
  5922. },
  5923. "slotId": {
  5924. "m_id": "{1819D7C0-849E-4D00-B053-11D2562678FA}"
  5925. }
  5926. },
  5927. "targetEndpoint": {
  5928. "nodeId": {
  5929. "id": 2828058237075
  5930. },
  5931. "slotId": {
  5932. "m_id": "{82315C63-B7BB-447C-A47D-0709D5D3836A}"
  5933. }
  5934. }
  5935. }
  5936. }
  5937. },
  5938. {
  5939. "Id": {
  5940. "id": 2974087125139
  5941. },
  5942. "Name": "srcEndpoint=(GetWorldTranslation: Vector3), destEndpoint=(Lerp Between: Start)",
  5943. "Components": {
  5944. "Component_[17904392410827989164]": {
  5945. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5946. "Id": 17904392410827989164,
  5947. "sourceEndpoint": {
  5948. "nodeId": {
  5949. "id": 2772223662227
  5950. },
  5951. "slotId": {
  5952. "m_id": "{BBFFF237-7E25-4948-A898-27EC2B5CFC47}"
  5953. }
  5954. },
  5955. "targetEndpoint": {
  5956. "nodeId": {
  5957. "id": 2828058237075
  5958. },
  5959. "slotId": {
  5960. "m_id": "{BF95D8DC-5347-4323-841E-0475F49B5CF5}"
  5961. }
  5962. }
  5963. }
  5964. }
  5965. },
  5966. {
  5967. "Id": {
  5968. "id": 2978382092435
  5969. },
  5970. "Name": "srcEndpoint=(Lerp Between: Tick), destEndpoint=(SetWorldTranslation: In)",
  5971. "Components": {
  5972. "Component_[17614004590540487938]": {
  5973. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5974. "Id": 17614004590540487938,
  5975. "sourceEndpoint": {
  5976. "nodeId": {
  5977. "id": 2828058237075
  5978. },
  5979. "slotId": {
  5980. "m_id": "{33918A75-20E6-4C0C-92ED-4546579C3564}"
  5981. }
  5982. },
  5983. "targetEndpoint": {
  5984. "nodeId": {
  5985. "id": 2763633727635
  5986. },
  5987. "slotId": {
  5988. "m_id": "{7498B5BA-6B64-4C40-A81B-C3C21E62A0E1}"
  5989. }
  5990. }
  5991. }
  5992. }
  5993. },
  5994. {
  5995. "Id": {
  5996. "id": 2982677059731
  5997. },
  5998. "Name": "srcEndpoint=(Lerp Between: Step), destEndpoint=(SetWorldTranslation: Vector3: 1)",
  5999. "Components": {
  6000. "Component_[11799687457666817273]": {
  6001. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6002. "Id": 11799687457666817273,
  6003. "sourceEndpoint": {
  6004. "nodeId": {
  6005. "id": 2828058237075
  6006. },
  6007. "slotId": {
  6008. "m_id": "{D2FF4163-32A9-4B57-B603-9CC9BD54F7D3}"
  6009. }
  6010. },
  6011. "targetEndpoint": {
  6012. "nodeId": {
  6013. "id": 2763633727635
  6014. },
  6015. "slotId": {
  6016. "m_id": "{B8216E83-A8E7-4620-8219-B645C83D5A8A}"
  6017. }
  6018. }
  6019. }
  6020. }
  6021. },
  6022. {
  6023. "Id": {
  6024. "id": 2986972027027
  6025. },
  6026. "Name": "srcEndpoint=(If: False), destEndpoint=(Delay: Start)",
  6027. "Components": {
  6028. "Component_[8150368406931683397]": {
  6029. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6030. "Id": 8150368406931683397,
  6031. "sourceEndpoint": {
  6032. "nodeId": {
  6033. "id": 2840943138963
  6034. },
  6035. "slotId": {
  6036. "m_id": "{C4C3A859-F702-4237-B45B-95D152D3F8B7}"
  6037. }
  6038. },
  6039. "targetEndpoint": {
  6040. "nodeId": {
  6041. "id": 2853828040851
  6042. },
  6043. "slotId": {
  6044. "m_id": "{42B04036-31F6-4317-B722-2111AC11DE81}"
  6045. }
  6046. }
  6047. }
  6048. }
  6049. },
  6050. {
  6051. "Id": {
  6052. "id": 2991266994323
  6053. },
  6054. "Name": "srcEndpoint=(If: False), destEndpoint=(Delay: Start)",
  6055. "Components": {
  6056. "Component_[7213143572192223188]": {
  6057. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6058. "Id": 7213143572192223188,
  6059. "sourceEndpoint": {
  6060. "nodeId": {
  6061. "id": 2840943138963
  6062. },
  6063. "slotId": {
  6064. "m_id": "{C4C3A859-F702-4237-B45B-95D152D3F8B7}"
  6065. }
  6066. },
  6067. "targetEndpoint": {
  6068. "nodeId": {
  6069. "id": 2802288433299
  6070. },
  6071. "slotId": {
  6072. "m_id": "{61F539E2-A361-4136-9073-6D9344BCAFBA}"
  6073. }
  6074. }
  6075. }
  6076. }
  6077. },
  6078. {
  6079. "Id": {
  6080. "id": 2995561961619
  6081. },
  6082. "Name": "srcEndpoint=(Timer: On Tick), destEndpoint=(If: In)",
  6083. "Components": {
  6084. "Component_[4696448078213172023]": {
  6085. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6086. "Id": 4696448078213172023,
  6087. "sourceEndpoint": {
  6088. "nodeId": {
  6089. "id": 2810878367891
  6090. },
  6091. "slotId": {
  6092. "m_id": "{EDA32541-913F-4E11-8165-9445523D10CF}"
  6093. }
  6094. },
  6095. "targetEndpoint": {
  6096. "nodeId": {
  6097. "id": 2840943138963
  6098. },
  6099. "slotId": {
  6100. "m_id": "{46DD192B-98AE-4BC1-B283-AA0E03C27C57}"
  6101. }
  6102. }
  6103. }
  6104. }
  6105. },
  6106. {
  6107. "Id": {
  6108. "id": 2999856928915
  6109. },
  6110. "Name": "srcEndpoint=(ScriptCanvas_MathRandoms_RandomInteger: Number), destEndpoint=(Delay: Start: Hold)",
  6111. "Components": {
  6112. "Component_[11340567045090614529]": {
  6113. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6114. "Id": 11340567045090614529,
  6115. "sourceEndpoint": {
  6116. "nodeId": {
  6117. "id": 2750748825747
  6118. },
  6119. "slotId": {
  6120. "m_id": "{4C7CB9EA-54C7-4FA1-812D-7F31807E57F6}"
  6121. }
  6122. },
  6123. "targetEndpoint": {
  6124. "nodeId": {
  6125. "id": 2785108564115
  6126. },
  6127. "slotId": {
  6128. "m_id": "{570B358B-AB31-446D-BC72-D84E92F33DF0}"
  6129. }
  6130. }
  6131. }
  6132. }
  6133. },
  6134. {
  6135. "Id": {
  6136. "id": 3004151896211
  6137. },
  6138. "Name": "srcEndpoint=(Timer: On Start), destEndpoint=(ScriptCanvas_MathRandoms_RandomInteger: In)",
  6139. "Components": {
  6140. "Component_[56503683027533007]": {
  6141. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6142. "Id": 56503683027533007,
  6143. "sourceEndpoint": {
  6144. "nodeId": {
  6145. "id": 2810878367891
  6146. },
  6147. "slotId": {
  6148. "m_id": "{03F5AAA0-271E-4181-ACB0-8F6A87EB3A07}"
  6149. }
  6150. },
  6151. "targetEndpoint": {
  6152. "nodeId": {
  6153. "id": 2750748825747
  6154. },
  6155. "slotId": {
  6156. "m_id": "{E50D405F-60EE-442D-BC27-321D5A2D3928}"
  6157. }
  6158. }
  6159. }
  6160. }
  6161. },
  6162. {
  6163. "Id": {
  6164. "id": 3008446863507
  6165. },
  6166. "Name": "srcEndpoint=(ScriptCanvas_MathRandoms_RandomInteger: Out), destEndpoint=(Set Variable: In)",
  6167. "Components": {
  6168. "Component_[14487438006822484069]": {
  6169. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6170. "Id": 14487438006822484069,
  6171. "sourceEndpoint": {
  6172. "nodeId": {
  6173. "id": 2750748825747
  6174. },
  6175. "slotId": {
  6176. "m_id": "{9DE95E33-A849-4515-8732-1D58DE3EAC55}"
  6177. }
  6178. },
  6179. "targetEndpoint": {
  6180. "nodeId": {
  6181. "id": 2849533073555
  6182. },
  6183. "slotId": {
  6184. "m_id": "{595EAA49-E6EC-45DC-ACCC-404051DD3DDB}"
  6185. }
  6186. }
  6187. }
  6188. }
  6189. },
  6190. {
  6191. "Id": {
  6192. "id": 3012741830803
  6193. },
  6194. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Delay: Start)",
  6195. "Components": {
  6196. "Component_[4387826236249291433]": {
  6197. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6198. "Id": 4387826236249291433,
  6199. "sourceEndpoint": {
  6200. "nodeId": {
  6201. "id": 2849533073555
  6202. },
  6203. "slotId": {
  6204. "m_id": "{E065F630-66D5-4541-B7ED-DE8BB2A05C2D}"
  6205. }
  6206. },
  6207. "targetEndpoint": {
  6208. "nodeId": {
  6209. "id": 2785108564115
  6210. },
  6211. "slotId": {
  6212. "m_id": "{61F539E2-A361-4136-9073-6D9344BCAFBA}"
  6213. }
  6214. }
  6215. }
  6216. }
  6217. },
  6218. {
  6219. "Id": {
  6220. "id": 3017036798099
  6221. },
  6222. "Name": "srcEndpoint=(ScriptCanvas_MathRandoms_RandomInteger: Number), destEndpoint=(Delay: Start: Time)",
  6223. "Components": {
  6224. "Component_[9618660640253391031]": {
  6225. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6226. "Id": 9618660640253391031,
  6227. "sourceEndpoint": {
  6228. "nodeId": {
  6229. "id": 2750748825747
  6230. },
  6231. "slotId": {
  6232. "m_id": "{4C7CB9EA-54C7-4FA1-812D-7F31807E57F6}"
  6233. }
  6234. },
  6235. "targetEndpoint": {
  6236. "nodeId": {
  6237. "id": 2785108564115
  6238. },
  6239. "slotId": {
  6240. "m_id": "{D41603BE-E9A3-449A-842A-54A7FECBA60B}"
  6241. }
  6242. }
  6243. }
  6244. }
  6245. },
  6246. {
  6247. "Id": {
  6248. "id": 3021331765395
  6249. },
  6250. "Name": "srcEndpoint=(Delay: Done), destEndpoint=(GetWorldTranslation: In)",
  6251. "Components": {
  6252. "Component_[6313831690517998752]": {
  6253. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6254. "Id": 6313831690517998752,
  6255. "sourceEndpoint": {
  6256. "nodeId": {
  6257. "id": 2785108564115
  6258. },
  6259. "slotId": {
  6260. "m_id": "{14C8C8BD-20A2-49C8-861A-841AC4BC626B}"
  6261. }
  6262. },
  6263. "targetEndpoint": {
  6264. "nodeId": {
  6265. "id": 2789403531411
  6266. },
  6267. "slotId": {
  6268. "m_id": "{7B369E3A-63BC-419A-BE99-2BAB02EC88D2}"
  6269. }
  6270. }
  6271. }
  6272. }
  6273. },
  6274. {
  6275. "Id": {
  6276. "id": 3025626732691
  6277. },
  6278. "Name": "srcEndpoint=(GetWorldTranslation: Vector3), destEndpoint=(Add (+): Value 0)",
  6279. "Components": {
  6280. "Component_[7091333859005493357]": {
  6281. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6282. "Id": 7091333859005493357,
  6283. "sourceEndpoint": {
  6284. "nodeId": {
  6285. "id": 2789403531411
  6286. },
  6287. "slotId": {
  6288. "m_id": "{BBFFF237-7E25-4948-A898-27EC2B5CFC47}"
  6289. }
  6290. },
  6291. "targetEndpoint": {
  6292. "nodeId": {
  6293. "id": 2819468302483
  6294. },
  6295. "slotId": {
  6296. "m_id": "{8AB5A9E2-2D24-4CA0-90DD-CA5CCEE925FB}"
  6297. }
  6298. }
  6299. }
  6300. }
  6301. },
  6302. {
  6303. "Id": {
  6304. "id": 3029921699987
  6305. },
  6306. "Name": "srcEndpoint=(GetWorldTranslation: Out), destEndpoint=(Add (+): In)",
  6307. "Components": {
  6308. "Component_[7975029250340561825]": {
  6309. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6310. "Id": 7975029250340561825,
  6311. "sourceEndpoint": {
  6312. "nodeId": {
  6313. "id": 2789403531411
  6314. },
  6315. "slotId": {
  6316. "m_id": "{1819D7C0-849E-4D00-B053-11D2562678FA}"
  6317. }
  6318. },
  6319. "targetEndpoint": {
  6320. "nodeId": {
  6321. "id": 2819468302483
  6322. },
  6323. "slotId": {
  6324. "m_id": "{D1C69C0C-CF12-41DD-B883-8B8C0BD865C2}"
  6325. }
  6326. }
  6327. }
  6328. }
  6329. },
  6330. {
  6331. "Id": {
  6332. "id": 3034216667283
  6333. },
  6334. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(GetWorldTranslation: In)",
  6335. "Components": {
  6336. "Component_[1418424712442343351]": {
  6337. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6338. "Id": 1418424712442343351,
  6339. "sourceEndpoint": {
  6340. "nodeId": {
  6341. "id": 2819468302483
  6342. },
  6343. "slotId": {
  6344. "m_id": "{6FA44DA0-B16D-4E19-9A23-01BC2799ACAF}"
  6345. }
  6346. },
  6347. "targetEndpoint": {
  6348. "nodeId": {
  6349. "id": 2772223662227
  6350. },
  6351. "slotId": {
  6352. "m_id": "{7B369E3A-63BC-419A-BE99-2BAB02EC88D2}"
  6353. }
  6354. }
  6355. }
  6356. }
  6357. },
  6358. {
  6359. "Id": {
  6360. "id": 3038511634579
  6361. },
  6362. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Entity By Tag: In)",
  6363. "Components": {
  6364. "Component_[17249011025636514328]": {
  6365. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6366. "Id": 17249011025636514328,
  6367. "sourceEndpoint": {
  6368. "nodeId": {
  6369. "id": 2776518629523
  6370. },
  6371. "slotId": {
  6372. "m_id": "{DD7AF2DD-9096-4DB0-B440-FBD32B6D42EF}"
  6373. }
  6374. },
  6375. "targetEndpoint": {
  6376. "nodeId": {
  6377. "id": 2767928694931
  6378. },
  6379. "slotId": {
  6380. "m_id": "{5A90C36A-2599-4E3A-B3C4-953E9DB152AA}"
  6381. }
  6382. }
  6383. }
  6384. }
  6385. },
  6386. {
  6387. "Id": {
  6388. "id": 3042806601875
  6389. },
  6390. "Name": "srcEndpoint=(Lerp Between: Lerp Complete), destEndpoint=(DestroyGameEntityAndDescendants: In)",
  6391. "Components": {
  6392. "Component_[14615052712170525634]": {
  6393. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6394. "Id": 14615052712170525634,
  6395. "sourceEndpoint": {
  6396. "nodeId": {
  6397. "id": 2828058237075
  6398. },
  6399. "slotId": {
  6400. "m_id": "{EBDD54FD-F8A6-4CEB-AD2F-A862F4BA16D5}"
  6401. }
  6402. },
  6403. "targetEndpoint": {
  6404. "nodeId": {
  6405. "id": 2755043793043
  6406. },
  6407. "slotId": {
  6408. "m_id": "{6E344E8D-7DA8-4F7B-ADA6-C349C5112DB4}"
  6409. }
  6410. }
  6411. }
  6412. }
  6413. },
  6414. {
  6415. "Id": {
  6416. "id": 3047101569171
  6417. },
  6418. "Name": "srcEndpoint=(Lerp Between: Lerp Complete), destEndpoint=(Once: In)",
  6419. "Components": {
  6420. "Component_[10420935293197944961]": {
  6421. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6422. "Id": 10420935293197944961,
  6423. "sourceEndpoint": {
  6424. "nodeId": {
  6425. "id": 2828058237075
  6426. },
  6427. "slotId": {
  6428. "m_id": "{EBDD54FD-F8A6-4CEB-AD2F-A862F4BA16D5}"
  6429. }
  6430. },
  6431. "targetEndpoint": {
  6432. "nodeId": {
  6433. "id": 2806583400595
  6434. },
  6435. "slotId": {
  6436. "m_id": "{BF6F50FC-2E19-4D99-9A0A-BF715F4516B8}"
  6437. }
  6438. }
  6439. }
  6440. }
  6441. },
  6442. {
  6443. "Id": {
  6444. "id": 3051396536467
  6445. },
  6446. "Name": "srcEndpoint=(Once: Out), destEndpoint=(Send Script Event: In)",
  6447. "Components": {
  6448. "Component_[10046953359189868501]": {
  6449. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6450. "Id": 10046953359189868501,
  6451. "sourceEndpoint": {
  6452. "nodeId": {
  6453. "id": 2806583400595
  6454. },
  6455. "slotId": {
  6456. "m_id": "{029B8EBB-A501-4060-84B7-982CA42E8862}"
  6457. }
  6458. },
  6459. "targetEndpoint": {
  6460. "nodeId": {
  6461. "id": 2823763269779
  6462. },
  6463. "slotId": {
  6464. "m_id": "{AB25C1A3-C1B6-4963-838A-2844BA4FD75B}"
  6465. }
  6466. }
  6467. }
  6468. }
  6469. },
  6470. {
  6471. "Id": {
  6472. "id": 67707834210451
  6473. },
  6474. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Print: In)",
  6475. "Components": {
  6476. "Component_[10295687380521497627]": {
  6477. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6478. "Id": 10295687380521497627,
  6479. "sourceEndpoint": {
  6480. "nodeId": {
  6481. "id": 2819468302483
  6482. },
  6483. "slotId": {
  6484. "m_id": "{6FA44DA0-B16D-4E19-9A23-01BC2799ACAF}"
  6485. }
  6486. },
  6487. "targetEndpoint": {
  6488. "nodeId": {
  6489. "id": 64439364098195
  6490. },
  6491. "slotId": {
  6492. "m_id": "{8ED97A21-2DA1-4035-B176-95A69BF53AB9}"
  6493. }
  6494. }
  6495. }
  6496. }
  6497. }
  6498. ],
  6499. "m_scriptEventAssets": [
  6500. [
  6501. {
  6502. "id": 2823763269779
  6503. },
  6504. {}
  6505. ]
  6506. ]
  6507. },
  6508. "versionData": {
  6509. "_grammarVersion": 1,
  6510. "_runtimeVersion": 1,
  6511. "_fileVersion": 1
  6512. },
  6513. "m_variableCounter": 11,
  6514. "GraphCanvasData": [
  6515. {
  6516. "Key": {
  6517. "id": 2733568956563
  6518. },
  6519. "Value": {
  6520. "ComponentData": {
  6521. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  6522. "$type": "SceneComponentSaveData",
  6523. "Constructs": [
  6524. {
  6525. "Type": 3,
  6526. "DataContainer": {
  6527. "ComponentData": {
  6528. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6529. "$type": "NodeSaveData"
  6530. },
  6531. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6532. "$type": "CommentNodeTextSaveData",
  6533. "Comment": "Random_Fly_Attack",
  6534. "BackgroundColor": [
  6535. 0.9800000190734863,
  6536. 0.9700000286102295,
  6537. 0.6499999761581421
  6538. ],
  6539. "FontSettings": {
  6540. "PixelSize": 16
  6541. }
  6542. },
  6543. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  6544. "$type": "NodeGroupFrameComponentSaveData",
  6545. "DisplayHeight": 1963.0,
  6546. "DisplayWidth": 1840.0,
  6547. "PersistentGroupedId": [
  6548. "{269BD328-125C-4650-BFF4-82284CB5243E}",
  6549. "{CABB0780-F5B6-4997-A5BD-9597C4630936}",
  6550. "{9A895CB8-EF62-499D-964F-DFC4DEC3FCDD}",
  6551. "{5FC36AC2-58D7-48E5-9D2D-7C33C43475C8}",
  6552. "{6E2CC46F-4ADA-4A3F-8665-4C054B7DC0DD}",
  6553. "{7BDCF527-6D53-48C3-9CFA-5289E6720C0A}",
  6554. "{CBA00057-75E4-443E-8B85-0397124BBF08}",
  6555. "{0C4C590D-F728-471B-A41F-653C22E5D44C}",
  6556. "{BC8A3E2D-CF7A-44CC-B994-E73BDEA5389A}",
  6557. "{F982A261-6AB6-4479-960D-A079F0E74F80}",
  6558. "{B58ECF66-E26C-4738-A07F-A7000DA46757}",
  6559. "{9F14340A-D433-49F5-8148-3CCA191B6924}",
  6560. "{EE9821F4-6E54-4D54-BED0-3B51721C0AC9}"
  6561. ]
  6562. },
  6563. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6564. "$type": "GeometrySaveData",
  6565. "Position": [
  6566. -2760.0,
  6567. -460.0
  6568. ]
  6569. },
  6570. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6571. "$type": "StylingComponentSaveData"
  6572. },
  6573. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6574. "$type": "PersistentIdComponentSaveData",
  6575. "PersistentId": "{2F5171D9-E9FB-43A1-B72A-A880DD4A7149}"
  6576. }
  6577. }
  6578. }
  6579. },
  6580. {
  6581. "Type": 3,
  6582. "DataContainer": {
  6583. "ComponentData": {
  6584. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6585. "$type": "NodeSaveData"
  6586. },
  6587. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6588. "$type": "CommentNodeTextSaveData",
  6589. "Comment": "Row Back and Forth Delay",
  6590. "BackgroundColor": [
  6591. 0.9800000190734863,
  6592. 0.9700000286102295,
  6593. 0.6499999761581421
  6594. ],
  6595. "FontSettings": {
  6596. "PixelSize": 16
  6597. }
  6598. },
  6599. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  6600. "$type": "NodeGroupFrameComponentSaveData",
  6601. "DisplayHeight": 840.0,
  6602. "DisplayWidth": 2000.0,
  6603. "PersistentGroupedId": [
  6604. "{7EA8BAC1-5809-4D82-B340-5662EECD7CCC}",
  6605. "{98041F4E-27E5-4E87-847E-EC306FBCE65F}",
  6606. "{08170F68-F407-451F-BACF-BE1254C835BA}",
  6607. "{8CF9A195-A9FE-48F4-A1BC-530BE6062FB1}",
  6608. "{26974EFC-59C1-478B-BEEA-E5ECF97CC0C4}",
  6609. "{E447F769-8AF8-4C3E-B1F9-42A15BEB11A6}",
  6610. "{6B7827E3-976B-41A6-817C-A55391896EA6}",
  6611. "{A9E7F500-F1EE-4304-9BB5-9BB1CBCF7161}"
  6612. ]
  6613. },
  6614. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6615. "$type": "GeometrySaveData",
  6616. "Position": [
  6617. -320.0,
  6618. -180.0
  6619. ]
  6620. },
  6621. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6622. "$type": "StylingComponentSaveData"
  6623. },
  6624. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6625. "$type": "PersistentIdComponentSaveData",
  6626. "PersistentId": "{DC0BE475-AF71-4AAB-B140-159EA325DDA2}"
  6627. }
  6628. }
  6629. }
  6630. },
  6631. {
  6632. "Type": 3,
  6633. "DataContainer": {
  6634. "ComponentData": {
  6635. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6636. "$type": "NodeSaveData"
  6637. },
  6638. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6639. "$type": "CommentNodeTextSaveData",
  6640. "Comment": "Move Back and Forth",
  6641. "BackgroundColor": [
  6642. 0.9800000190734863,
  6643. 0.9700000286102295,
  6644. 0.6499999761581421
  6645. ],
  6646. "FontSettings": {
  6647. "PixelSize": 16
  6648. }
  6649. },
  6650. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  6651. "$type": "NodeGroupFrameComponentSaveData",
  6652. "DisplayHeight": 563.0,
  6653. "DisplayWidth": 1920.0,
  6654. "PersistentGroupedId": [
  6655. "{74968F84-2C1E-4346-85E9-515EF8784765}",
  6656. "{3AB09AFF-0D30-4CFC-90A4-3944F922EB10}",
  6657. "{BCE7F148-FA0C-452E-9C20-82F84EBE6BCB}",
  6658. "{D7B6030F-16F6-43BC-A900-5C9E8C7989CF}",
  6659. "{B4B0318C-F1ED-445C-9E22-F020C81535CC}",
  6660. "{4CE2B44B-7C12-44A9-8B83-C1730B3DE2C7}"
  6661. ]
  6662. },
  6663. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6664. "$type": "GeometrySaveData",
  6665. "Position": [
  6666. -720.0,
  6667. -880.0
  6668. ]
  6669. },
  6670. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6671. "$type": "StylingComponentSaveData"
  6672. },
  6673. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6674. "$type": "PersistentIdComponentSaveData",
  6675. "PersistentId": "{53D6CB9B-6231-4BDC-9403-E40B6C96DC73}"
  6676. }
  6677. }
  6678. }
  6679. }
  6680. ],
  6681. "ViewParams": {
  6682. "Scale": 0.6979298654620272,
  6683. "AnchorX": -2970.21240234375,
  6684. "AnchorY": 455.6331787109375
  6685. }
  6686. }
  6687. }
  6688. }
  6689. },
  6690. {
  6691. "Key": {
  6692. "id": 2737863923859
  6693. },
  6694. "Value": {
  6695. "ComponentData": {
  6696. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6697. "$type": "NodeSaveData"
  6698. },
  6699. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6700. "$type": "GeneralNodeTitleComponentSaveData",
  6701. "PaletteOverride": "LogicNodeTitlePalette"
  6702. },
  6703. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6704. "$type": "GeometrySaveData",
  6705. "Position": [
  6706. -100.0,
  6707. -520.0
  6708. ]
  6709. },
  6710. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6711. "$type": "StylingComponentSaveData"
  6712. },
  6713. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6714. "$type": "PersistentIdComponentSaveData",
  6715. "PersistentId": "{4CE2B44B-7C12-44A9-8B83-C1730B3DE2C7}"
  6716. }
  6717. }
  6718. }
  6719. },
  6720. {
  6721. "Key": {
  6722. "id": 2742158891155
  6723. },
  6724. "Value": {
  6725. "ComponentData": {
  6726. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6727. "$type": "NodeSaveData"
  6728. },
  6729. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6730. "$type": "GeneralNodeTitleComponentSaveData",
  6731. "PaletteOverride": "MethodNodeTitlePalette"
  6732. },
  6733. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6734. "$type": "GeometrySaveData",
  6735. "Position": [
  6736. 580.0,
  6737. 300.0
  6738. ]
  6739. },
  6740. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6741. "$type": "StylingComponentSaveData",
  6742. "SubStyle": ".method"
  6743. },
  6744. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6745. "$type": "PersistentIdComponentSaveData",
  6746. "PersistentId": "{A9E7F500-F1EE-4304-9BB5-9BB1CBCF7161}"
  6747. }
  6748. }
  6749. }
  6750. },
  6751. {
  6752. "Key": {
  6753. "id": 2746453858451
  6754. },
  6755. "Value": {
  6756. "ComponentData": {
  6757. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6758. "$type": "NodeSaveData"
  6759. },
  6760. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6761. "$type": "GeneralNodeTitleComponentSaveData",
  6762. "PaletteOverride": "MethodNodeTitlePalette"
  6763. },
  6764. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6765. "$type": "GeometrySaveData",
  6766. "Position": [
  6767. 1340.0,
  6768. 280.0
  6769. ]
  6770. },
  6771. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6772. "$type": "StylingComponentSaveData",
  6773. "SubStyle": ".method"
  6774. },
  6775. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6776. "$type": "PersistentIdComponentSaveData",
  6777. "PersistentId": "{6B7827E3-976B-41A6-817C-A55391896EA6}"
  6778. }
  6779. }
  6780. }
  6781. },
  6782. {
  6783. "Key": {
  6784. "id": 2750748825747
  6785. },
  6786. "Value": {
  6787. "ComponentData": {
  6788. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6789. "$type": "NodeSaveData"
  6790. },
  6791. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6792. "$type": "GeneralNodeTitleComponentSaveData",
  6793. "PaletteOverride": "MethodNodeTitlePalette"
  6794. },
  6795. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6796. "$type": "GeometrySaveData",
  6797. "Position": [
  6798. -2740.0,
  6799. 20.0
  6800. ]
  6801. },
  6802. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6803. "$type": "StylingComponentSaveData",
  6804. "SubStyle": ".method"
  6805. },
  6806. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6807. "$type": "PersistentIdComponentSaveData",
  6808. "PersistentId": "{5FC36AC2-58D7-48E5-9D2D-7C33C43475C8}"
  6809. }
  6810. }
  6811. }
  6812. },
  6813. {
  6814. "Key": {
  6815. "id": 2755043793043
  6816. },
  6817. "Value": {
  6818. "ComponentData": {
  6819. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6820. "$type": "NodeSaveData"
  6821. },
  6822. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6823. "$type": "GeneralNodeTitleComponentSaveData",
  6824. "PaletteOverride": "MethodNodeTitlePalette"
  6825. },
  6826. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6827. "$type": "GeometrySaveData",
  6828. "Position": [
  6829. -1740.0,
  6830. 1340.0
  6831. ]
  6832. },
  6833. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6834. "$type": "StylingComponentSaveData",
  6835. "SubStyle": ".method"
  6836. },
  6837. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6838. "$type": "PersistentIdComponentSaveData",
  6839. "PersistentId": "{CABB0780-F5B6-4997-A5BD-9597C4630936}"
  6840. }
  6841. }
  6842. }
  6843. },
  6844. {
  6845. "Key": {
  6846. "id": 2759338760339
  6847. },
  6848. "Value": {
  6849. "ComponentData": {
  6850. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6851. "$type": "NodeSaveData"
  6852. },
  6853. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6854. "$type": "GeneralNodeTitleComponentSaveData",
  6855. "PaletteOverride": "SetVariableNodeTitlePalette"
  6856. },
  6857. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6858. "$type": "GeometrySaveData",
  6859. "Position": [
  6860. 200.0,
  6861. 220.0
  6862. ]
  6863. },
  6864. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6865. "$type": "StylingComponentSaveData",
  6866. "SubStyle": ".setVariable"
  6867. },
  6868. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6869. "$type": "PersistentIdComponentSaveData",
  6870. "PersistentId": "{8CF9A195-A9FE-48F4-A1BC-530BE6062FB1}"
  6871. }
  6872. }
  6873. }
  6874. },
  6875. {
  6876. "Key": {
  6877. "id": 2763633727635
  6878. },
  6879. "Value": {
  6880. "ComponentData": {
  6881. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6882. "$type": "NodeSaveData"
  6883. },
  6884. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6885. "$type": "GeneralNodeTitleComponentSaveData",
  6886. "PaletteOverride": "MethodNodeTitlePalette"
  6887. },
  6888. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6889. "$type": "GeometrySaveData",
  6890. "Position": [
  6891. -2100.0,
  6892. 1100.0
  6893. ]
  6894. },
  6895. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6896. "$type": "StylingComponentSaveData",
  6897. "SubStyle": ".method"
  6898. },
  6899. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6900. "$type": "PersistentIdComponentSaveData",
  6901. "PersistentId": "{BC8A3E2D-CF7A-44CC-B994-E73BDEA5389A}"
  6902. }
  6903. }
  6904. }
  6905. },
  6906. {
  6907. "Key": {
  6908. "id": 2767928694931
  6909. },
  6910. "Value": {
  6911. "ComponentData": {
  6912. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6913. "$type": "NodeSaveData"
  6914. },
  6915. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6916. "$type": "GeneralNodeTitleComponentSaveData",
  6917. "PaletteOverride": "MethodNodeTitlePalette"
  6918. },
  6919. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6920. "$type": "GeometrySaveData",
  6921. "Position": [
  6922. -2180.0,
  6923. -1020.0
  6924. ]
  6925. },
  6926. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6927. "$type": "StylingComponentSaveData",
  6928. "SubStyle": ".method"
  6929. },
  6930. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6931. "$type": "PersistentIdComponentSaveData",
  6932. "PersistentId": "{D6FEEAA0-EFDB-4E3B-AE34-C49A272C6CF8}"
  6933. }
  6934. }
  6935. }
  6936. },
  6937. {
  6938. "Key": {
  6939. "id": 2772223662227
  6940. },
  6941. "Value": {
  6942. "ComponentData": {
  6943. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6944. "$type": "NodeSaveData"
  6945. },
  6946. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6947. "$type": "GeneralNodeTitleComponentSaveData",
  6948. "PaletteOverride": "MethodNodeTitlePalette"
  6949. },
  6950. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6951. "$type": "GeometrySaveData",
  6952. "Position": [
  6953. -1740.0,
  6954. 780.0
  6955. ]
  6956. },
  6957. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6958. "$type": "StylingComponentSaveData",
  6959. "SubStyle": ".method"
  6960. },
  6961. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6962. "$type": "PersistentIdComponentSaveData",
  6963. "PersistentId": "{9A895CB8-EF62-499D-964F-DFC4DEC3FCDD}"
  6964. }
  6965. }
  6966. }
  6967. },
  6968. {
  6969. "Key": {
  6970. "id": 2776518629523
  6971. },
  6972. "Value": {
  6973. "ComponentData": {
  6974. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6975. "$type": "NodeSaveData"
  6976. },
  6977. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6978. "$type": "GeneralNodeTitleComponentSaveData",
  6979. "PaletteOverride": "TimeNodeTitlePalette"
  6980. },
  6981. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6982. "$type": "GeometrySaveData",
  6983. "Position": [
  6984. -2340.0,
  6985. -860.0
  6986. ]
  6987. },
  6988. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6989. "$type": "StylingComponentSaveData"
  6990. },
  6991. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6992. "$type": "PersistentIdComponentSaveData",
  6993. "PersistentId": "{BEED9B60-3C80-4792-9AC2-15B1EC36466E}"
  6994. }
  6995. }
  6996. }
  6997. },
  6998. {
  6999. "Key": {
  7000. "id": 2780813596819
  7001. },
  7002. "Value": {
  7003. "ComponentData": {
  7004. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7005. "$type": "NodeSaveData"
  7006. },
  7007. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7008. "$type": "GeneralNodeTitleComponentSaveData",
  7009. "PaletteOverride": "MethodNodeTitlePalette"
  7010. },
  7011. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7012. "$type": "GeometrySaveData",
  7013. "Position": [
  7014. -180.0,
  7015. -740.0
  7016. ]
  7017. },
  7018. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7019. "$type": "StylingComponentSaveData",
  7020. "SubStyle": ".method"
  7021. },
  7022. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7023. "$type": "PersistentIdComponentSaveData",
  7024. "PersistentId": "{B4B0318C-F1ED-445C-9E22-F020C81535CC}"
  7025. }
  7026. }
  7027. }
  7028. },
  7029. {
  7030. "Key": {
  7031. "id": 2785108564115
  7032. },
  7033. "Value": {
  7034. "ComponentData": {
  7035. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7036. "$type": "NodeSaveData"
  7037. },
  7038. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7039. "$type": "GeneralNodeTitleComponentSaveData",
  7040. "PaletteOverride": "TimeNodeTitlePalette"
  7041. },
  7042. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7043. "$type": "GeometrySaveData",
  7044. "Position": [
  7045. -2300.0,
  7046. 80.0
  7047. ]
  7048. },
  7049. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7050. "$type": "StylingComponentSaveData"
  7051. },
  7052. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7053. "$type": "PersistentIdComponentSaveData",
  7054. "PersistentId": "{B58ECF66-E26C-4738-A07F-A7000DA46757}"
  7055. }
  7056. }
  7057. }
  7058. },
  7059. {
  7060. "Key": {
  7061. "id": 2789403531411
  7062. },
  7063. "Value": {
  7064. "ComponentData": {
  7065. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7066. "$type": "NodeSaveData"
  7067. },
  7068. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7069. "$type": "GeneralNodeTitleComponentSaveData",
  7070. "PaletteOverride": "MethodNodeTitlePalette"
  7071. },
  7072. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7073. "$type": "GeometrySaveData",
  7074. "Position": [
  7075. -2300.0,
  7076. 560.0
  7077. ]
  7078. },
  7079. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7080. "$type": "StylingComponentSaveData",
  7081. "SubStyle": ".method"
  7082. },
  7083. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7084. "$type": "PersistentIdComponentSaveData",
  7085. "PersistentId": "{0C4C590D-F728-471B-A41F-653C22E5D44C}"
  7086. }
  7087. }
  7088. }
  7089. },
  7090. {
  7091. "Key": {
  7092. "id": 2793698498707
  7093. },
  7094. "Value": {
  7095. "ComponentData": {
  7096. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7097. "$type": "NodeSaveData"
  7098. },
  7099. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7100. "$type": "GeneralNodeTitleComponentSaveData",
  7101. "PaletteOverride": "LogicNodeTitlePalette"
  7102. },
  7103. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7104. "$type": "GeometrySaveData",
  7105. "Position": [
  7106. -260.0,
  7107. -100.0
  7108. ]
  7109. },
  7110. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7111. "$type": "StylingComponentSaveData"
  7112. },
  7113. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7114. "$type": "PersistentIdComponentSaveData",
  7115. "PersistentId": "{08170F68-F407-451F-BACF-BE1254C835BA}"
  7116. }
  7117. }
  7118. }
  7119. },
  7120. {
  7121. "Key": {
  7122. "id": 2797993466003
  7123. },
  7124. "Value": {
  7125. "ComponentData": {
  7126. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7127. "$type": "NodeSaveData"
  7128. },
  7129. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7130. "$type": "GeneralNodeTitleComponentSaveData",
  7131. "PaletteOverride": "MathNodeTitlePalette"
  7132. },
  7133. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7134. "$type": "GeometrySaveData",
  7135. "Position": [
  7136. 340.0,
  7137. -760.0
  7138. ]
  7139. },
  7140. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7141. "$type": "StylingComponentSaveData"
  7142. },
  7143. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7144. "$type": "PersistentIdComponentSaveData",
  7145. "PersistentId": "{D7B6030F-16F6-43BC-A900-5C9E8C7989CF}"
  7146. }
  7147. }
  7148. }
  7149. },
  7150. {
  7151. "Key": {
  7152. "id": 2802288433299
  7153. },
  7154. "Value": {
  7155. "ComponentData": {
  7156. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7157. "$type": "NodeSaveData"
  7158. },
  7159. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7160. "$type": "GeneralNodeTitleComponentSaveData",
  7161. "PaletteOverride": "TimeNodeTitlePalette"
  7162. },
  7163. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7164. "$type": "GeometrySaveData",
  7165. "Position": [
  7166. -780.0,
  7167. -180.0
  7168. ]
  7169. },
  7170. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7171. "$type": "StylingComponentSaveData"
  7172. },
  7173. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7174. "$type": "PersistentIdComponentSaveData",
  7175. "PersistentId": "{19A81171-68DC-4EA1-AFD2-D591E44566F8}"
  7176. }
  7177. }
  7178. }
  7179. },
  7180. {
  7181. "Key": {
  7182. "id": 2806583400595
  7183. },
  7184. "Value": {
  7185. "ComponentData": {
  7186. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7187. "$type": "NodeSaveData"
  7188. },
  7189. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7190. "$type": "GeneralNodeTitleComponentSaveData",
  7191. "PaletteOverride": "LogicNodeTitlePalette"
  7192. },
  7193. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7194. "$type": "GeometrySaveData",
  7195. "Position": [
  7196. -1600.0,
  7197. 1040.0
  7198. ]
  7199. },
  7200. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7201. "$type": "StylingComponentSaveData"
  7202. },
  7203. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7204. "$type": "PersistentIdComponentSaveData",
  7205. "PersistentId": "{7BDCF527-6D53-48C3-9CFA-5289E6720C0A}"
  7206. }
  7207. }
  7208. }
  7209. },
  7210. {
  7211. "Key": {
  7212. "id": 2810878367891
  7213. },
  7214. "Value": {
  7215. "ComponentData": {
  7216. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7217. "$type": "NodeSaveData"
  7218. },
  7219. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7220. "$type": "GeneralNodeTitleComponentSaveData",
  7221. "PaletteOverride": "TimeNodeTitlePalette"
  7222. },
  7223. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7224. "$type": "GeometrySaveData",
  7225. "Position": [
  7226. -2380.0,
  7227. -400.0
  7228. ]
  7229. },
  7230. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7231. "$type": "StylingComponentSaveData"
  7232. },
  7233. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7234. "$type": "PersistentIdComponentSaveData",
  7235. "PersistentId": "{6E2CC46F-4ADA-4A3F-8665-4C054B7DC0DD}"
  7236. }
  7237. }
  7238. }
  7239. },
  7240. {
  7241. "Key": {
  7242. "id": 2815173335187
  7243. },
  7244. "Value": {
  7245. "ComponentData": {
  7246. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7247. "$type": "NodeSaveData"
  7248. },
  7249. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7250. "$type": "GeneralNodeTitleComponentSaveData",
  7251. "PaletteOverride": "SetVariableNodeTitlePalette"
  7252. },
  7253. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7254. "$type": "GeometrySaveData",
  7255. "Position": [
  7256. 200.0,
  7257. 460.0
  7258. ]
  7259. },
  7260. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7261. "$type": "StylingComponentSaveData",
  7262. "SubStyle": ".setVariable"
  7263. },
  7264. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7265. "$type": "PersistentIdComponentSaveData",
  7266. "PersistentId": "{E447F769-8AF8-4C3E-B1F9-42A15BEB11A6}"
  7267. }
  7268. }
  7269. }
  7270. },
  7271. {
  7272. "Key": {
  7273. "id": 2819468302483
  7274. },
  7275. "Value": {
  7276. "ComponentData": {
  7277. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7278. "$type": "NodeSaveData"
  7279. },
  7280. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7281. "$type": "GeneralNodeTitleComponentSaveData",
  7282. "PaletteOverride": "MathNodeTitlePalette"
  7283. },
  7284. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7285. "$type": "GeometrySaveData",
  7286. "Position": [
  7287. -2460.0,
  7288. 780.0
  7289. ]
  7290. },
  7291. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7292. "$type": "StylingComponentSaveData"
  7293. },
  7294. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7295. "$type": "PersistentIdComponentSaveData",
  7296. "PersistentId": "{CBA00057-75E4-443E-8B85-0397124BBF08}"
  7297. }
  7298. }
  7299. }
  7300. },
  7301. {
  7302. "Key": {
  7303. "id": 2823763269779
  7304. },
  7305. "Value": {
  7306. "ComponentData": {
  7307. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7308. "$type": "NodeSaveData"
  7309. },
  7310. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7311. "$type": "GeneralNodeTitleComponentSaveData",
  7312. "PaletteOverride": "MethodNodeTitlePalette"
  7313. },
  7314. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7315. "$type": "GeometrySaveData",
  7316. "Position": [
  7317. -1340.0,
  7318. 1180.0
  7319. ]
  7320. },
  7321. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7322. "$type": "StylingComponentSaveData",
  7323. "SubStyle": ".method"
  7324. },
  7325. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7326. "$type": "PersistentIdComponentSaveData",
  7327. "PersistentId": "{269BD328-125C-4650-BFF4-82284CB5243E}"
  7328. }
  7329. }
  7330. }
  7331. },
  7332. {
  7333. "Key": {
  7334. "id": 2828058237075
  7335. },
  7336. "Value": {
  7337. "ComponentData": {
  7338. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7339. "$type": "NodeSaveData"
  7340. },
  7341. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7342. "$type": "GeneralNodeTitleComponentSaveData",
  7343. "PaletteOverride": "MathNodeTitlePalette"
  7344. },
  7345. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7346. "$type": "GeometrySaveData",
  7347. "Position": [
  7348. -2700.0,
  7349. 1040.0
  7350. ]
  7351. },
  7352. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7353. "$type": "StylingComponentSaveData"
  7354. },
  7355. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7356. "$type": "PersistentIdComponentSaveData",
  7357. "PersistentId": "{9F14340A-D433-49F5-8148-3CCA191B6924}"
  7358. }
  7359. }
  7360. }
  7361. },
  7362. {
  7363. "Key": {
  7364. "id": 2832353204371
  7365. },
  7366. "Value": {
  7367. "ComponentData": {
  7368. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7369. "$type": "NodeSaveData"
  7370. },
  7371. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7372. "$type": "GeneralNodeTitleComponentSaveData",
  7373. "PaletteOverride": "TimeNodeTitlePalette"
  7374. },
  7375. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7376. "$type": "GeometrySaveData",
  7377. "Position": [
  7378. -280.0,
  7379. 400.0
  7380. ]
  7381. },
  7382. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7383. "$type": "StylingComponentSaveData"
  7384. },
  7385. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7386. "$type": "PersistentIdComponentSaveData",
  7387. "PersistentId": "{26974EFC-59C1-478B-BEEA-E5ECF97CC0C4}"
  7388. }
  7389. }
  7390. }
  7391. },
  7392. {
  7393. "Key": {
  7394. "id": 2836648171667
  7395. },
  7396. "Value": {
  7397. "ComponentData": {
  7398. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7399. "$type": "NodeSaveData"
  7400. },
  7401. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7402. "$type": "GeneralNodeTitleComponentSaveData",
  7403. "PaletteOverride": "MathNodeTitlePalette"
  7404. },
  7405. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7406. "$type": "GeometrySaveData",
  7407. "Position": [
  7408. 340.0,
  7409. -540.0
  7410. ]
  7411. },
  7412. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7413. "$type": "StylingComponentSaveData"
  7414. },
  7415. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7416. "$type": "PersistentIdComponentSaveData",
  7417. "PersistentId": "{74968F84-2C1E-4346-85E9-515EF8784765}"
  7418. }
  7419. }
  7420. }
  7421. },
  7422. {
  7423. "Key": {
  7424. "id": 2840943138963
  7425. },
  7426. "Value": {
  7427. "ComponentData": {
  7428. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7429. "$type": "NodeSaveData"
  7430. },
  7431. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7432. "$type": "GeneralNodeTitleComponentSaveData",
  7433. "PaletteOverride": "LogicNodeTitlePalette"
  7434. },
  7435. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7436. "$type": "GeometrySaveData",
  7437. "Position": [
  7438. -1460.0,
  7439. -940.0
  7440. ]
  7441. },
  7442. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7443. "$type": "StylingComponentSaveData"
  7444. },
  7445. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7446. "$type": "PersistentIdComponentSaveData",
  7447. "PersistentId": "{66A9994A-327E-4F14-A5DD-DBEA665D73B7}"
  7448. }
  7449. }
  7450. }
  7451. },
  7452. {
  7453. "Key": {
  7454. "id": 2845238106259
  7455. },
  7456. "Value": {
  7457. "ComponentData": {
  7458. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7459. "$type": "NodeSaveData"
  7460. },
  7461. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7462. "$type": "GeneralNodeTitleComponentSaveData",
  7463. "PaletteOverride": "MethodNodeTitlePalette"
  7464. },
  7465. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7466. "$type": "GeometrySaveData",
  7467. "Position": [
  7468. 900.0,
  7469. -700.0
  7470. ]
  7471. },
  7472. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7473. "$type": "StylingComponentSaveData",
  7474. "SubStyle": ".method"
  7475. },
  7476. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7477. "$type": "PersistentIdComponentSaveData",
  7478. "PersistentId": "{3AB09AFF-0D30-4CFC-90A4-3944F922EB10}"
  7479. }
  7480. }
  7481. }
  7482. },
  7483. {
  7484. "Key": {
  7485. "id": 2849533073555
  7486. },
  7487. "Value": {
  7488. "ComponentData": {
  7489. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7490. "$type": "NodeSaveData"
  7491. },
  7492. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7493. "$type": "GeneralNodeTitleComponentSaveData",
  7494. "PaletteOverride": "SetVariableNodeTitlePalette"
  7495. },
  7496. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7497. "$type": "GeometrySaveData",
  7498. "Position": [
  7499. -2380.0,
  7500. -100.0
  7501. ]
  7502. },
  7503. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7504. "$type": "StylingComponentSaveData",
  7505. "SubStyle": ".setVariable"
  7506. },
  7507. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7508. "$type": "PersistentIdComponentSaveData",
  7509. "PersistentId": "{F982A261-6AB6-4479-960D-A079F0E74F80}"
  7510. }
  7511. }
  7512. }
  7513. },
  7514. {
  7515. "Key": {
  7516. "id": 2853828040851
  7517. },
  7518. "Value": {
  7519. "ComponentData": {
  7520. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7521. "$type": "NodeSaveData"
  7522. },
  7523. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7524. "$type": "GeneralNodeTitleComponentSaveData",
  7525. "PaletteOverride": "TimeNodeTitlePalette"
  7526. },
  7527. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7528. "$type": "GeometrySaveData",
  7529. "Position": [
  7530. -700.0,
  7531. -820.0
  7532. ]
  7533. },
  7534. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7535. "$type": "StylingComponentSaveData"
  7536. },
  7537. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7538. "$type": "PersistentIdComponentSaveData",
  7539. "PersistentId": "{BCE7F148-FA0C-452E-9C20-82F84EBE6BCB}"
  7540. }
  7541. }
  7542. }
  7543. },
  7544. {
  7545. "Key": {
  7546. "id": 2858123008147
  7547. },
  7548. "Value": {
  7549. "ComponentData": {
  7550. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7551. "$type": "NodeSaveData"
  7552. },
  7553. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7554. "$type": "GeneralNodeTitleComponentSaveData",
  7555. "PaletteOverride": "TimeNodeTitlePalette"
  7556. },
  7557. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7558. "$type": "GeometrySaveData",
  7559. "Position": [
  7560. -260.0,
  7561. 140.0
  7562. ]
  7563. },
  7564. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7565. "$type": "StylingComponentSaveData"
  7566. },
  7567. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7568. "$type": "PersistentIdComponentSaveData",
  7569. "PersistentId": "{98041F4E-27E5-4E87-847E-EC306FBCE65F}"
  7570. }
  7571. }
  7572. }
  7573. },
  7574. {
  7575. "Key": {
  7576. "id": 2862417975443
  7577. },
  7578. "Value": {
  7579. "ComponentData": {
  7580. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7581. "$type": "NodeSaveData"
  7582. },
  7583. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7584. "$type": "GeneralNodeTitleComponentSaveData",
  7585. "PaletteOverride": "MathNodeTitlePalette"
  7586. },
  7587. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7588. "$type": "GeometrySaveData",
  7589. "Position": [
  7590. 900.0,
  7591. 280.0
  7592. ]
  7593. },
  7594. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7595. "$type": "StylingComponentSaveData"
  7596. },
  7597. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7598. "$type": "PersistentIdComponentSaveData",
  7599. "PersistentId": "{7EA8BAC1-5809-4D82-B340-5662EECD7CCC}"
  7600. }
  7601. }
  7602. }
  7603. },
  7604. {
  7605. "Key": {
  7606. "id": 64439364098195
  7607. },
  7608. "Value": {
  7609. "ComponentData": {
  7610. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7611. "$type": "NodeSaveData"
  7612. },
  7613. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7614. "$type": "GeneralNodeTitleComponentSaveData",
  7615. "PaletteOverride": "StringNodeTitlePalette"
  7616. },
  7617. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7618. "$type": "GeometrySaveData",
  7619. "Position": [
  7620. -1220.0,
  7621. 700.0
  7622. ]
  7623. },
  7624. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7625. "$type": "StylingComponentSaveData"
  7626. },
  7627. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7628. "$type": "PersistentIdComponentSaveData",
  7629. "PersistentId": "{EE9821F4-6E54-4D54-BED0-3B51721C0AC9}"
  7630. }
  7631. }
  7632. }
  7633. }
  7634. ],
  7635. "CRCCacheMap": [
  7636. {
  7637. "Key": {
  7638. "Value": 2551806565
  7639. },
  7640. "Value": {
  7641. "String": "Player",
  7642. "Count": 1
  7643. }
  7644. }
  7645. ],
  7646. "StatisticsHelper": {
  7647. "InstanceCounter": [
  7648. {
  7649. "Key": 1244476766431948410,
  7650. "Value": 2
  7651. },
  7652. {
  7653. "Key": 1717163657523457561,
  7654. "Value": 1
  7655. },
  7656. {
  7657. "Key": 4199610336680704683,
  7658. "Value": 1
  7659. },
  7660. {
  7661. "Key": 5235960430898951644,
  7662. "Value": 3
  7663. },
  7664. {
  7665. "Key": 6462358712820489356,
  7666. "Value": 2
  7667. },
  7668. {
  7669. "Key": 7441743364271812807,
  7670. "Value": 1
  7671. },
  7672. {
  7673. "Key": 8233714554903076331,
  7674. "Value": 1
  7675. },
  7676. {
  7677. "Key": 8452971738487658154,
  7678. "Value": 3
  7679. },
  7680. {
  7681. "Key": 10684225535275896474,
  7682. "Value": 1
  7683. },
  7684. {
  7685. "Key": 12248403948959255581,
  7686. "Value": 1
  7687. },
  7688. {
  7689. "Key": 12381032459025456226,
  7690. "Value": 2
  7691. },
  7692. {
  7693. "Key": 12699620372290465376,
  7694. "Value": 1
  7695. },
  7696. {
  7697. "Key": 13774516197139363424,
  7698. "Value": 1
  7699. },
  7700. {
  7701. "Key": 13774516455168433199,
  7702. "Value": 1
  7703. },
  7704. {
  7705. "Key": 13774516554593898264,
  7706. "Value": 1
  7707. },
  7708. {
  7709. "Key": 13774516554878574510,
  7710. "Value": 1
  7711. },
  7712. {
  7713. "Key": 13774516554886911373,
  7714. "Value": 1
  7715. },
  7716. {
  7717. "Key": 13774516556399355685,
  7718. "Value": 2
  7719. },
  7720. {
  7721. "Key": 13774516556776238733,
  7722. "Value": 1
  7723. },
  7724. {
  7725. "Key": 13774516556994280983,
  7726. "Value": 1
  7727. },
  7728. {
  7729. "Key": 17097710658241841501,
  7730. "Value": 1
  7731. },
  7732. {
  7733. "Key": 17746292506071718793,
  7734. "Value": 2
  7735. }
  7736. ]
  7737. }
  7738. },
  7739. "Component_[6418849966703290231]": {
  7740. "$type": "EditorGraphVariableManagerComponent",
  7741. "Id": 6418849966703290231,
  7742. "m_variableData": {
  7743. "m_nameVariableMap": [
  7744. {
  7745. "Key": {
  7746. "m_id": "{0972CFBE-B68B-4884-BE5F-C98D41ECFC9D}"
  7747. },
  7748. "Value": {
  7749. "Datum": {
  7750. "isOverloadedStorage": false,
  7751. "scriptCanvasType": {
  7752. "m_type": 1
  7753. },
  7754. "isNullPointer": false,
  7755. "$type": "EntityId",
  7756. "value": {
  7757. "id": 2901262558
  7758. }
  7759. },
  7760. "VariableId": {
  7761. "m_id": "{0972CFBE-B68B-4884-BE5F-C98D41ECFC9D}"
  7762. },
  7763. "VariableName": "Player"
  7764. }
  7765. },
  7766. {
  7767. "Key": {
  7768. "m_id": "{295F3476-4E49-47B6-9C8A-8DF6E19C8A16}"
  7769. },
  7770. "Value": {
  7771. "Datum": {
  7772. "isOverloadedStorage": false,
  7773. "scriptCanvasType": {
  7774. "m_type": 3
  7775. },
  7776. "isNullPointer": false,
  7777. "$type": "double",
  7778. "value": 0.0
  7779. },
  7780. "VariableId": {
  7781. "m_id": "{295F3476-4E49-47B6-9C8A-8DF6E19C8A16}"
  7782. },
  7783. "VariableName": "MoveY",
  7784. "InitialValueSource": 1
  7785. }
  7786. },
  7787. {
  7788. "Key": {
  7789. "m_id": "{37CEFCB9-5ED0-44BE-BEF4-205F14024AA1}"
  7790. },
  7791. "Value": {
  7792. "Datum": {
  7793. "isOverloadedStorage": false,
  7794. "scriptCanvasType": {
  7795. "m_type": 0
  7796. },
  7797. "isNullPointer": false,
  7798. "$type": "bool",
  7799. "value": true
  7800. },
  7801. "VariableId": {
  7802. "m_id": "{37CEFCB9-5ED0-44BE-BEF4-205F14024AA1}"
  7803. },
  7804. "VariableName": "rowmove"
  7805. }
  7806. },
  7807. {
  7808. "Key": {
  7809. "m_id": "{48FD0F1D-469F-4B55-AF0E-0352D17854B9}"
  7810. },
  7811. "Value": {
  7812. "Datum": {
  7813. "isOverloadedStorage": false,
  7814. "scriptCanvasType": {
  7815. "m_type": 8
  7816. },
  7817. "isNullPointer": false,
  7818. "$type": "Vector3",
  7819. "value": [
  7820. 0.0,
  7821. 0.0,
  7822. 0.0
  7823. ]
  7824. },
  7825. "VariableId": {
  7826. "m_id": "{48FD0F1D-469F-4B55-AF0E-0352D17854B9}"
  7827. },
  7828. "VariableName": "PlayerPosition"
  7829. }
  7830. },
  7831. {
  7832. "Key": {
  7833. "m_id": "{4E2645FE-845E-4BB7-9CD8-F4517153C0D6}"
  7834. },
  7835. "Value": {
  7836. "Datum": {
  7837. "isOverloadedStorage": false,
  7838. "scriptCanvasType": {
  7839. "m_type": 3
  7840. },
  7841. "isNullPointer": false,
  7842. "$type": "double",
  7843. "value": 0.0
  7844. },
  7845. "VariableId": {
  7846. "m_id": "{4E2645FE-845E-4BB7-9CD8-F4517153C0D6}"
  7847. },
  7848. "VariableName": "ResetRowTime",
  7849. "InitialValueSource": 1
  7850. }
  7851. },
  7852. {
  7853. "Key": {
  7854. "m_id": "{A011B2C7-1B70-40E6-911D-12E7CC4676F1}"
  7855. },
  7856. "Value": {
  7857. "Datum": {
  7858. "isOverloadedStorage": false,
  7859. "scriptCanvasType": {
  7860. "m_type": 3
  7861. },
  7862. "isNullPointer": false,
  7863. "$type": "double",
  7864. "value": 0.0
  7865. },
  7866. "VariableId": {
  7867. "m_id": "{A011B2C7-1B70-40E6-911D-12E7CC4676F1}"
  7868. },
  7869. "VariableName": "DelayX",
  7870. "InitialValueSource": 1
  7871. }
  7872. },
  7873. {
  7874. "Key": {
  7875. "m_id": "{AEB37DA8-130D-4F00-8E4B-0132F846DEE6}"
  7876. },
  7877. "Value": {
  7878. "Datum": {
  7879. "isOverloadedStorage": false,
  7880. "scriptCanvasType": {
  7881. "m_type": 3
  7882. },
  7883. "isNullPointer": false,
  7884. "$type": "double",
  7885. "value": 0.0
  7886. },
  7887. "VariableId": {
  7888. "m_id": "{AEB37DA8-130D-4F00-8E4B-0132F846DEE6}"
  7889. },
  7890. "VariableName": "MoveX",
  7891. "InitialValueSource": 1
  7892. }
  7893. },
  7894. {
  7895. "Key": {
  7896. "m_id": "{D07BD694-2B84-4642-9C98-F10B823207AF}"
  7897. },
  7898. "Value": {
  7899. "Datum": {
  7900. "isOverloadedStorage": false,
  7901. "scriptCanvasType": {
  7902. "m_type": 0
  7903. },
  7904. "isNullPointer": false,
  7905. "$type": "bool",
  7906. "value": false
  7907. },
  7908. "VariableId": {
  7909. "m_id": "{D07BD694-2B84-4642-9C98-F10B823207AF}"
  7910. },
  7911. "VariableName": "Attacking"
  7912. }
  7913. }
  7914. ]
  7915. }
  7916. }
  7917. }
  7918. }
  7919. }
  7920. }