2
0

PlayerController.scriptcanvas 727 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 205036883815010
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[17711125431935386719]": {
  13. "$type": "EditorGraph",
  14. "Id": 17711125431935386719,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 205178617735778
  20. },
  21. "Name": "SC-Node(ScriptCanvas_Vector3Functions_MultiplyByNumber)",
  22. "Components": {
  23. "Component_[10164662792141945366]": {
  24. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  25. "Id": 10164662792141945366,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{B426079D-5EC4-401D-847F-B56A08D5D149}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "Source",
  37. "Descriptor": {
  38. "ConnectionType": 1,
  39. "SlotType": 2
  40. },
  41. "DataType": 1
  42. },
  43. {
  44. "id": {
  45. "m_id": "{68EBD83B-50D6-4D3E-B169-7E1920A30FDD}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "Multiplier",
  53. "Descriptor": {
  54. "ConnectionType": 1,
  55. "SlotType": 2
  56. },
  57. "DataType": 1
  58. },
  59. {
  60. "id": {
  61. "m_id": "{C1B72CBF-A387-4B8A-AE72-888B43395268}"
  62. },
  63. "contracts": [
  64. {
  65. "$type": "SlotTypeContract"
  66. }
  67. ],
  68. "slotName": "In",
  69. "Descriptor": {
  70. "ConnectionType": 1,
  71. "SlotType": 1
  72. }
  73. },
  74. {
  75. "id": {
  76. "m_id": "{7F65A50C-C32E-4115-B327-6785FC9F1C39}"
  77. },
  78. "contracts": [
  79. {
  80. "$type": "SlotTypeContract"
  81. }
  82. ],
  83. "slotName": "Out",
  84. "Descriptor": {
  85. "ConnectionType": 2,
  86. "SlotType": 1
  87. }
  88. },
  89. {
  90. "id": {
  91. "m_id": "{86FFFDE8-0F05-48E7-B789-C09FAF69C8EB}"
  92. },
  93. "contracts": [
  94. {
  95. "$type": "SlotTypeContract"
  96. }
  97. ],
  98. "slotName": "Vector3",
  99. "DisplayDataType": {
  100. "m_type": 8
  101. },
  102. "Descriptor": {
  103. "ConnectionType": 2,
  104. "SlotType": 2
  105. },
  106. "DataType": 1
  107. }
  108. ],
  109. "Datums": [
  110. {
  111. "isOverloadedStorage": false,
  112. "scriptCanvasType": {
  113. "m_type": 8
  114. },
  115. "isNullPointer": false,
  116. "$type": "Vector3",
  117. "value": [
  118. 0.0,
  119. 0.0,
  120. 0.0
  121. ],
  122. "label": "Source"
  123. },
  124. {
  125. "isOverloadedStorage": false,
  126. "scriptCanvasType": {
  127. "m_type": 3
  128. },
  129. "isNullPointer": false,
  130. "$type": "double",
  131. "value": 0.25,
  132. "label": "Multiplier"
  133. }
  134. ],
  135. "methodType": 1,
  136. "methodName": "ScriptCanvas_Vector3Functions_MultiplyByNumber",
  137. "resultSlotIDs": [
  138. {}
  139. ],
  140. "inputSlots": [
  141. {
  142. "m_id": "{B426079D-5EC4-401D-847F-B56A08D5D149}"
  143. },
  144. {
  145. "m_id": "{68EBD83B-50D6-4D3E-B169-7E1920A30FDD}"
  146. }
  147. ],
  148. "prettyClassName": "ScriptCanvas_Vector3Functions_MultiplyByNumber"
  149. }
  150. }
  151. },
  152. {
  153. "Id": {
  154. "id": 205221567408738
  155. },
  156. "Name": "SC-Node(GetWorldX)",
  157. "Components": {
  158. "Component_[10244521390222050405]": {
  159. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  160. "Id": 10244521390222050405,
  161. "Slots": [
  162. {
  163. "id": {
  164. "m_id": "{08DEC1DE-D997-40F4-BA43-B445D0A33A2F}"
  165. },
  166. "contracts": [
  167. {
  168. "$type": "SlotTypeContract"
  169. }
  170. ],
  171. "slotName": "EntityId",
  172. "Descriptor": {
  173. "ConnectionType": 1,
  174. "SlotType": 2
  175. },
  176. "DataType": 1
  177. },
  178. {
  179. "id": {
  180. "m_id": "{57AC76D8-1610-4418-BCC5-CF91F7D69137}"
  181. },
  182. "contracts": [
  183. {
  184. "$type": "SlotTypeContract"
  185. }
  186. ],
  187. "slotName": "In",
  188. "Descriptor": {
  189. "ConnectionType": 1,
  190. "SlotType": 1
  191. }
  192. },
  193. {
  194. "id": {
  195. "m_id": "{3255924E-A751-4010-9AD3-3F4940326D7D}"
  196. },
  197. "contracts": [
  198. {
  199. "$type": "SlotTypeContract"
  200. }
  201. ],
  202. "slotName": "Out",
  203. "Descriptor": {
  204. "ConnectionType": 2,
  205. "SlotType": 1
  206. }
  207. },
  208. {
  209. "id": {
  210. "m_id": "{663F8E91-3927-41F4-A939-911F796A97C3}"
  211. },
  212. "contracts": [
  213. {
  214. "$type": "SlotTypeContract"
  215. }
  216. ],
  217. "slotName": "Number",
  218. "DisplayDataType": {
  219. "m_type": 3
  220. },
  221. "Descriptor": {
  222. "ConnectionType": 2,
  223. "SlotType": 2
  224. },
  225. "DataType": 1
  226. }
  227. ],
  228. "Datums": [
  229. {
  230. "isOverloadedStorage": false,
  231. "scriptCanvasType": {
  232. "m_type": 1
  233. },
  234. "isNullPointer": false,
  235. "$type": "EntityId",
  236. "value": {
  237. "id": 2901262558
  238. },
  239. "label": "EntityId"
  240. }
  241. ],
  242. "methodType": 0,
  243. "methodName": "GetWorldX",
  244. "className": "TransformBus",
  245. "resultSlotIDs": [
  246. {}
  247. ],
  248. "inputSlots": [
  249. {
  250. "m_id": "{08DEC1DE-D997-40F4-BA43-B445D0A33A2F}"
  251. }
  252. ],
  253. "prettyClassName": "TransformBus"
  254. }
  255. }
  256. },
  257. {
  258. "Id": {
  259. "id": 205109898259042
  260. },
  261. "Name": "SC-Node(DestroyGameEntityAndDescendants)",
  262. "Components": {
  263. "Component_[10326181694490596834]": {
  264. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  265. "Id": 10326181694490596834,
  266. "Slots": [
  267. {
  268. "id": {
  269. "m_id": "{04809021-C0F5-4620-B6DC-347A3B3B2D89}"
  270. },
  271. "contracts": [
  272. {
  273. "$type": "SlotTypeContract"
  274. }
  275. ],
  276. "slotName": "EntityId",
  277. "Descriptor": {
  278. "ConnectionType": 1,
  279. "SlotType": 2
  280. },
  281. "DataType": 1
  282. },
  283. {
  284. "id": {
  285. "m_id": "{59D3D51A-3F3A-4544-9480-0C6D1DBD6A9A}"
  286. },
  287. "contracts": [
  288. {
  289. "$type": "SlotTypeContract"
  290. }
  291. ],
  292. "slotName": "In",
  293. "Descriptor": {
  294. "ConnectionType": 1,
  295. "SlotType": 1
  296. }
  297. },
  298. {
  299. "id": {
  300. "m_id": "{6B15472C-3695-43B2-9A02-FBAACB510563}"
  301. },
  302. "contracts": [
  303. {
  304. "$type": "SlotTypeContract"
  305. }
  306. ],
  307. "slotName": "Out",
  308. "Descriptor": {
  309. "ConnectionType": 2,
  310. "SlotType": 1
  311. }
  312. }
  313. ],
  314. "Datums": [
  315. {
  316. "isOverloadedStorage": false,
  317. "scriptCanvasType": {
  318. "m_type": 1
  319. },
  320. "isNullPointer": false,
  321. "$type": "EntityId",
  322. "value": {
  323. "id": 2901262558
  324. },
  325. "label": "Entity Id"
  326. }
  327. ],
  328. "methodType": 0,
  329. "methodName": "DestroyGameEntityAndDescendants",
  330. "className": "GameEntityContextRequestBus",
  331. "resultSlotIDs": [
  332. {}
  333. ],
  334. "inputSlots": [
  335. {
  336. "m_id": "{04809021-C0F5-4620-B6DC-347A3B3B2D89}"
  337. }
  338. ],
  339. "prettyClassName": "GameEntityContextRequestBus"
  340. }
  341. }
  342. },
  343. {
  344. "Id": {
  345. "id": 205139963030114
  346. },
  347. "Name": "SC-Node(Get First Element)",
  348. "Components": {
  349. "Component_[10404657540683925746]": {
  350. "$type": "MethodOverloaded",
  351. "Id": 10404657540683925746,
  352. "Slots": [
  353. {
  354. "id": {
  355. "m_id": "{F7634FA4-F7EF-4A56-BDA2-B91715D3E35C}"
  356. },
  357. "DynamicTypeOverride": 2,
  358. "contracts": [
  359. {
  360. "$type": "SlotTypeContract"
  361. },
  362. {
  363. "$type": "OverloadContract"
  364. }
  365. ],
  366. "slotName": "Container",
  367. "toolTip": "The container to get the first element from",
  368. "DisplayDataType": {
  369. "m_type": 4,
  370. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  371. },
  372. "Descriptor": {
  373. "ConnectionType": 1,
  374. "SlotType": 2
  375. },
  376. "DataType": 1
  377. },
  378. {
  379. "id": {
  380. "m_id": "{567C18C4-7477-432D-BB1B-7A8576B8A89D}"
  381. },
  382. "contracts": [
  383. {
  384. "$type": "SlotTypeContract"
  385. }
  386. ],
  387. "slotName": "In",
  388. "Descriptor": {
  389. "ConnectionType": 1,
  390. "SlotType": 1
  391. }
  392. },
  393. {
  394. "id": {
  395. "m_id": "{9394FD8F-333C-490B-88F1-28FA6390000D}"
  396. },
  397. "contracts": [
  398. {
  399. "$type": "SlotTypeContract"
  400. }
  401. ],
  402. "slotName": "Out",
  403. "Descriptor": {
  404. "ConnectionType": 2,
  405. "SlotType": 1
  406. }
  407. },
  408. {
  409. "id": {
  410. "m_id": "{BA170BDD-5CAD-4A79-A052-FFB9059A65CB}"
  411. },
  412. "contracts": [
  413. {
  414. "$type": "SlotTypeContract"
  415. }
  416. ],
  417. "slotName": "Empty",
  418. "Descriptor": {
  419. "ConnectionType": 2,
  420. "SlotType": 1
  421. }
  422. },
  423. {
  424. "id": {
  425. "m_id": "{ED5D3E44-6097-4858-B428-57053E0359A5}"
  426. },
  427. "DynamicTypeOverride": 1,
  428. "contracts": [
  429. {
  430. "$type": "SlotTypeContract"
  431. },
  432. {
  433. "$type": "OverloadContract"
  434. }
  435. ],
  436. "slotName": "Value",
  437. "DisplayDataType": {
  438. "m_type": 1
  439. },
  440. "Descriptor": {
  441. "ConnectionType": 2,
  442. "SlotType": 2
  443. },
  444. "DataType": 1
  445. }
  446. ],
  447. "Datums": [
  448. {
  449. "isOverloadedStorage": false,
  450. "scriptCanvasType": {
  451. "m_type": 4,
  452. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  453. },
  454. "isNullPointer": false,
  455. "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector<EntityId, allocator>",
  456. "label": "Container"
  457. }
  458. ],
  459. "methodType": 2,
  460. "methodName": "Get First Element",
  461. "className": "AZStd::vector<EntityId, allocator>",
  462. "inputSlots": [
  463. {
  464. "m_id": "{F7634FA4-F7EF-4A56-BDA2-B91715D3E35C}"
  465. }
  466. ],
  467. "orderedInputSlotIds": [
  468. {
  469. "m_id": "{F7634FA4-F7EF-4A56-BDA2-B91715D3E35C}"
  470. }
  471. ],
  472. "outputSlotIds": [
  473. {
  474. "m_id": "{ED5D3E44-6097-4858-B428-57053E0359A5}"
  475. }
  476. ]
  477. }
  478. }
  479. },
  480. {
  481. "Id": {
  482. "id": 205165732833890
  483. },
  484. "Name": "SC Node(SetVariable)",
  485. "Components": {
  486. "Component_[10726739468848616291]": {
  487. "$type": "SetVariableNode",
  488. "Id": 10726739468848616291,
  489. "Slots": [
  490. {
  491. "id": {
  492. "m_id": "{60C5B9A0-3ECF-4E16-9138-5F6E9C41ECD5}"
  493. },
  494. "contracts": [
  495. {
  496. "$type": "SlotTypeContract"
  497. }
  498. ],
  499. "slotName": "In",
  500. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  501. "Descriptor": {
  502. "ConnectionType": 1,
  503. "SlotType": 1
  504. }
  505. },
  506. {
  507. "id": {
  508. "m_id": "{5DF141E2-C036-4BD5-961F-6FB0604EECDF}"
  509. },
  510. "contracts": [
  511. {
  512. "$type": "SlotTypeContract"
  513. }
  514. ],
  515. "slotName": "Out",
  516. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  517. "Descriptor": {
  518. "ConnectionType": 2,
  519. "SlotType": 1
  520. }
  521. },
  522. {
  523. "id": {
  524. "m_id": "{B79BF25E-8993-463F-A16A-4090C9B5681F}"
  525. },
  526. "contracts": [
  527. {
  528. "$type": "SlotTypeContract"
  529. }
  530. ],
  531. "slotName": "Vector3",
  532. "Descriptor": {
  533. "ConnectionType": 1,
  534. "SlotType": 2
  535. },
  536. "DataType": 1
  537. },
  538. {
  539. "id": {
  540. "m_id": "{7F60B6B6-4CEA-4597-AFE0-E8ACF500C5AC}"
  541. },
  542. "contracts": [
  543. {
  544. "$type": "SlotTypeContract"
  545. }
  546. ],
  547. "slotName": "Vector3",
  548. "DisplayDataType": {
  549. "m_type": 8
  550. },
  551. "Descriptor": {
  552. "ConnectionType": 2,
  553. "SlotType": 2
  554. },
  555. "DataType": 1
  556. },
  557. {
  558. "id": {
  559. "m_id": "{3EFB2B70-E842-4001-B411-CB33E28108FB}"
  560. },
  561. "contracts": [
  562. {
  563. "$type": "SlotTypeContract"
  564. }
  565. ],
  566. "slotName": "X",
  567. "DisplayDataType": {
  568. "m_type": 3
  569. },
  570. "Descriptor": {
  571. "ConnectionType": 2,
  572. "SlotType": 2
  573. },
  574. "DataType": 1
  575. },
  576. {
  577. "id": {
  578. "m_id": "{FD12257C-EA9D-459E-9D12-774C1378C222}"
  579. },
  580. "contracts": [
  581. {
  582. "$type": "SlotTypeContract"
  583. }
  584. ],
  585. "slotName": "Y",
  586. "DisplayDataType": {
  587. "m_type": 3
  588. },
  589. "Descriptor": {
  590. "ConnectionType": 2,
  591. "SlotType": 2
  592. },
  593. "DataType": 1
  594. },
  595. {
  596. "id": {
  597. "m_id": "{FB8DC56A-FC94-4208-9ADC-ED40DA06EA38}"
  598. },
  599. "contracts": [
  600. {
  601. "$type": "SlotTypeContract"
  602. }
  603. ],
  604. "slotName": "Z",
  605. "DisplayDataType": {
  606. "m_type": 3
  607. },
  608. "Descriptor": {
  609. "ConnectionType": 2,
  610. "SlotType": 2
  611. },
  612. "DataType": 1
  613. }
  614. ],
  615. "Datums": [
  616. {
  617. "isOverloadedStorage": false,
  618. "scriptCanvasType": {
  619. "m_type": 8
  620. },
  621. "isNullPointer": false,
  622. "$type": "Vector3",
  623. "value": [
  624. 0.0,
  625. 0.0,
  626. 0.0
  627. ],
  628. "label": "Vector3"
  629. }
  630. ],
  631. "m_variableId": {
  632. "m_id": "{8A5DE15B-660D-4623-8D53-3386676D5C3D}"
  633. },
  634. "m_variableDataInSlotId": {
  635. "m_id": "{B79BF25E-8993-463F-A16A-4090C9B5681F}"
  636. },
  637. "m_variableDataOutSlotId": {
  638. "m_id": "{7F60B6B6-4CEA-4597-AFE0-E8ACF500C5AC}"
  639. },
  640. "m_propertyAccounts": [
  641. {
  642. "m_propertySlotId": {
  643. "m_id": "{3EFB2B70-E842-4001-B411-CB33E28108FB}"
  644. },
  645. "m_propertyType": {
  646. "m_type": 3
  647. },
  648. "m_propertyName": "x"
  649. },
  650. {
  651. "m_propertySlotId": {
  652. "m_id": "{FD12257C-EA9D-459E-9D12-774C1378C222}"
  653. },
  654. "m_propertyType": {
  655. "m_type": 3
  656. },
  657. "m_propertyName": "y"
  658. },
  659. {
  660. "m_propertySlotId": {
  661. "m_id": "{FB8DC56A-FC94-4208-9ADC-ED40DA06EA38}"
  662. },
  663. "m_propertyType": {
  664. "m_type": 3
  665. },
  666. "m_propertyName": "z"
  667. }
  668. ]
  669. }
  670. }
  671. },
  672. {
  673. "Id": {
  674. "id": 205208682506850
  675. },
  676. "Name": "SC-EventNode(On Trigger Enter event)",
  677. "Components": {
  678. "Component_[10742971828396599795]": {
  679. "$type": "AzEventHandler",
  680. "Id": 10742971828396599795,
  681. "Slots": [
  682. {
  683. "id": {
  684. "m_id": "{E4CEB4DE-1F8C-47C3-8890-225629A06A90}"
  685. },
  686. "contracts": [
  687. {
  688. "$type": "SlotTypeContract"
  689. },
  690. {
  691. "$type": "ConnectionLimitContract",
  692. "limit": 1
  693. },
  694. {
  695. "$type": "RestrictedNodeContract",
  696. "m_nodeId": {
  697. "id": 205191502637666
  698. }
  699. }
  700. ],
  701. "slotName": "Connect",
  702. "toolTip": "Connect the AZ Event to this AZ Event Handler.",
  703. "Descriptor": {
  704. "ConnectionType": 1,
  705. "SlotType": 1
  706. }
  707. },
  708. {
  709. "id": {
  710. "m_id": "{B8B6588C-434A-4F16-B2B9-935E87575344}"
  711. },
  712. "contracts": [
  713. {
  714. "$type": "SlotTypeContract"
  715. }
  716. ],
  717. "slotName": "Disconnect",
  718. "toolTip": "Disconnect current AZ Event from this AZ Event Handler.",
  719. "Descriptor": {
  720. "ConnectionType": 1,
  721. "SlotType": 1
  722. }
  723. },
  724. {
  725. "id": {
  726. "m_id": "{7F1CF4AB-A27B-4D08-B89A-BBF7F95A5C8E}"
  727. },
  728. "contracts": [
  729. {
  730. "$type": "SlotTypeContract"
  731. }
  732. ],
  733. "slotName": "On Connected",
  734. "toolTip": "Signaled when a connection has taken place.",
  735. "Descriptor": {
  736. "ConnectionType": 2,
  737. "SlotType": 1
  738. }
  739. },
  740. {
  741. "id": {
  742. "m_id": "{56CC86DB-5A2A-4EAF-8AC3-56D510ACF254}"
  743. },
  744. "contracts": [
  745. {
  746. "$type": "SlotTypeContract"
  747. }
  748. ],
  749. "slotName": "On Disconnected",
  750. "toolTip": "Signaled when this event handler is disconnected.",
  751. "Descriptor": {
  752. "ConnectionType": 2,
  753. "SlotType": 1
  754. }
  755. },
  756. {
  757. "id": {
  758. "m_id": "{A0B7A193-4374-4A20-AE2C-A32E23FBF4DA}"
  759. },
  760. "contracts": [
  761. {
  762. "$type": "SlotTypeContract"
  763. }
  764. ],
  765. "slotName": "OnEvent",
  766. "toolTip": "Triggered when the AZ Event invokes Signal() function.",
  767. "Descriptor": {
  768. "ConnectionType": 2,
  769. "SlotType": 1
  770. },
  771. "IsLatent": true
  772. },
  773. {
  774. "id": {
  775. "m_id": "{F2143D85-338E-4713-9E8F-E1898B6BFF3A}"
  776. },
  777. "contracts": [
  778. {
  779. "$type": "SlotTypeContract"
  780. }
  781. ],
  782. "slotName": "Simulated Body Handle",
  783. "DisplayDataType": {
  784. "m_type": 4,
  785. "m_azType": "{53C0CD3E-D0FC-5D90-9E9B-EF364D430B08}"
  786. },
  787. "Descriptor": {
  788. "ConnectionType": 2,
  789. "SlotType": 2
  790. },
  791. "DataType": 1
  792. },
  793. {
  794. "id": {
  795. "m_id": "{165727BE-6501-4870-9F21-7A157443D6BC}"
  796. },
  797. "contracts": [
  798. {
  799. "$type": "SlotTypeContract"
  800. }
  801. ],
  802. "slotName": "Trigger Event",
  803. "DisplayDataType": {
  804. "m_type": 4,
  805. "m_azType": "{7A0851A3-2CBD-4A03-85D5-1C40221E7F61}"
  806. },
  807. "Descriptor": {
  808. "ConnectionType": 2,
  809. "SlotType": 2
  810. },
  811. "DataType": 1
  812. },
  813. {
  814. "id": {
  815. "m_id": "{74B0E325-D857-49F2-846A-84590403405C}"
  816. },
  817. "contracts": [
  818. {
  819. "$type": "SlotTypeContract"
  820. },
  821. {
  822. "$type": "ConnectionLimitContract",
  823. "limit": 1
  824. },
  825. {
  826. "$type": "RestrictedNodeContract",
  827. "m_nodeId": {
  828. "id": 205191502637666
  829. }
  830. }
  831. ],
  832. "slotName": "On Trigger Enter event",
  833. "Descriptor": {
  834. "ConnectionType": 1,
  835. "SlotType": 2
  836. },
  837. "DataType": 1
  838. }
  839. ],
  840. "Datums": [
  841. {
  842. "scriptCanvasType": {
  843. "m_type": 4,
  844. "m_azType": "{C00D2478-E0F3-57A3-AB60-A04DFC515016}"
  845. },
  846. "isNullPointer": true,
  847. "label": "On Trigger Enter event"
  848. }
  849. ],
  850. "m_azEventEntry": {
  851. "AzEventEntryData_v0": {
  852. "eventName": "On Trigger Enter event",
  853. "parameterSlotIds": [
  854. {
  855. "m_id": "{F2143D85-338E-4713-9E8F-E1898B6BFF3A}"
  856. },
  857. {
  858. "m_id": "{165727BE-6501-4870-9F21-7A157443D6BC}"
  859. }
  860. ],
  861. "azEventInputSlotId": {
  862. "m_id": "{74B0E325-D857-49F2-846A-84590403405C}"
  863. }
  864. }
  865. }
  866. }
  867. }
  868. },
  869. {
  870. "Id": {
  871. "id": 205251632179810
  872. },
  873. "Name": "SC-Node(InputHandlerNodeableNode)",
  874. "Components": {
  875. "Component_[11235666371066936476]": {
  876. "$type": "InputHandlerNodeableNode",
  877. "Id": 11235666371066936476,
  878. "Slots": [
  879. {
  880. "id": {
  881. "m_id": "{03511306-25FD-4AE1-9D02-06828EDBC45E}"
  882. },
  883. "contracts": [
  884. {
  885. "$type": "SlotTypeContract"
  886. }
  887. ],
  888. "slotName": "Connect Event",
  889. "toolTip": "Connect to input event name as defined in an input binding asset.",
  890. "DisplayGroup": {
  891. "Value": 2173756817
  892. },
  893. "Descriptor": {
  894. "ConnectionType": 1,
  895. "SlotType": 1
  896. }
  897. },
  898. {
  899. "id": {
  900. "m_id": "{4AA7975E-FB9B-4136-950F-1D8E2740ED6A}"
  901. },
  902. "contracts": [
  903. {
  904. "$type": "SlotTypeContract"
  905. }
  906. ],
  907. "slotName": "Event Name",
  908. "toolTip": "Event name as defined in an input binding asset. Example 'Fireball'.",
  909. "DisplayGroup": {
  910. "Value": 2173756817
  911. },
  912. "Descriptor": {
  913. "ConnectionType": 1,
  914. "SlotType": 2
  915. },
  916. "DataType": 1
  917. },
  918. {
  919. "id": {
  920. "m_id": "{6351919B-95FE-4527-9B0E-30D6E6E6D1F3}"
  921. },
  922. "contracts": [
  923. {
  924. "$type": "SlotTypeContract"
  925. }
  926. ],
  927. "slotName": "On Connect Event",
  928. "toolTip": "Connect to input event name as defined in an input binding asset.",
  929. "DisplayGroup": {
  930. "Value": 2173756817
  931. },
  932. "Descriptor": {
  933. "ConnectionType": 2,
  934. "SlotType": 1
  935. }
  936. },
  937. {
  938. "id": {
  939. "m_id": "{559646A4-99C5-45F4-BE33-3B2DC935BECC}"
  940. },
  941. "contracts": [
  942. {
  943. "$type": "SlotTypeContract"
  944. }
  945. ],
  946. "slotName": "Pressed",
  947. "toolTip": "Signaled when the input event begins.",
  948. "DisplayGroup": {
  949. "Value": 458537082
  950. },
  951. "Descriptor": {
  952. "ConnectionType": 2,
  953. "SlotType": 1
  954. },
  955. "IsLatent": true
  956. },
  957. {
  958. "id": {
  959. "m_id": "{4E9CA61E-B866-4517-BBDE-92B6FA3C83F6}"
  960. },
  961. "contracts": [
  962. {
  963. "$type": "SlotTypeContract"
  964. }
  965. ],
  966. "slotName": "value",
  967. "DisplayDataType": {
  968. "m_type": 3
  969. },
  970. "DisplayGroup": {
  971. "Value": 458537082
  972. },
  973. "Descriptor": {
  974. "ConnectionType": 2,
  975. "SlotType": 2
  976. },
  977. "DataType": 1
  978. },
  979. {
  980. "id": {
  981. "m_id": "{DA9AA08F-57DD-4E02-8CF4-4466BC9B4ACF}"
  982. },
  983. "contracts": [
  984. {
  985. "$type": "SlotTypeContract"
  986. }
  987. ],
  988. "slotName": "Held",
  989. "toolTip": "Signaled while the input event is active.",
  990. "DisplayGroup": {
  991. "Value": 308119761
  992. },
  993. "Descriptor": {
  994. "ConnectionType": 2,
  995. "SlotType": 1
  996. },
  997. "IsLatent": true
  998. },
  999. {
  1000. "id": {
  1001. "m_id": "{19DBECFA-F776-42CE-A690-8CBB006EF169}"
  1002. },
  1003. "contracts": [
  1004. {
  1005. "$type": "SlotTypeContract"
  1006. }
  1007. ],
  1008. "slotName": "Released",
  1009. "toolTip": "Signaled when the input event ends.",
  1010. "DisplayGroup": {
  1011. "Value": 4215628054
  1012. },
  1013. "Descriptor": {
  1014. "ConnectionType": 2,
  1015. "SlotType": 1
  1016. },
  1017. "IsLatent": true
  1018. }
  1019. ],
  1020. "Datums": [
  1021. {
  1022. "isOverloadedStorage": false,
  1023. "scriptCanvasType": {
  1024. "m_type": 5
  1025. },
  1026. "isNullPointer": false,
  1027. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1028. "value": "ShipHorizontal",
  1029. "label": "Event Name"
  1030. }
  1031. ],
  1032. "slotExecutionMap": {
  1033. "ins": [
  1034. {
  1035. "_slotId": {
  1036. "m_id": "{03511306-25FD-4AE1-9D02-06828EDBC45E}"
  1037. },
  1038. "_inputs": [
  1039. {
  1040. "_slotId": {
  1041. "m_id": "{4AA7975E-FB9B-4136-950F-1D8E2740ED6A}"
  1042. }
  1043. }
  1044. ],
  1045. "_outs": [
  1046. {
  1047. "_slotId": {
  1048. "m_id": "{6351919B-95FE-4527-9B0E-30D6E6E6D1F3}"
  1049. },
  1050. "_name": "On Connect Event"
  1051. }
  1052. ]
  1053. }
  1054. ],
  1055. "latents": [
  1056. {
  1057. "_slotId": {
  1058. "m_id": "{559646A4-99C5-45F4-BE33-3B2DC935BECC}"
  1059. },
  1060. "_name": "Pressed",
  1061. "_outputs": [
  1062. {
  1063. "_slotId": {
  1064. "m_id": "{4E9CA61E-B866-4517-BBDE-92B6FA3C83F6}"
  1065. }
  1066. }
  1067. ]
  1068. },
  1069. {
  1070. "_slotId": {
  1071. "m_id": "{DA9AA08F-57DD-4E02-8CF4-4466BC9B4ACF}"
  1072. },
  1073. "_name": "Held",
  1074. "_outputs": [
  1075. {
  1076. "_slotId": {
  1077. "m_id": "{4E9CA61E-B866-4517-BBDE-92B6FA3C83F6}"
  1078. }
  1079. }
  1080. ]
  1081. },
  1082. {
  1083. "_slotId": {
  1084. "m_id": "{19DBECFA-F776-42CE-A690-8CBB006EF169}"
  1085. },
  1086. "_name": "Released",
  1087. "_outputs": [
  1088. {
  1089. "_slotId": {
  1090. "m_id": "{4E9CA61E-B866-4517-BBDE-92B6FA3C83F6}"
  1091. }
  1092. }
  1093. ]
  1094. }
  1095. ]
  1096. }
  1097. }
  1098. }
  1099. },
  1100. {
  1101. "Id": {
  1102. "id": 205058358651490
  1103. },
  1104. "Name": "SC-Node(TimeDelayNodeableNode)",
  1105. "Components": {
  1106. "Component_[11525858546977261117]": {
  1107. "$type": "TimeDelayNodeableNode",
  1108. "Id": 11525858546977261117,
  1109. "Slots": [
  1110. {
  1111. "id": {
  1112. "m_id": "{DDF86724-E0C3-40B7-9CB0-0B6038563971}"
  1113. },
  1114. "contracts": [
  1115. {
  1116. "$type": "SlotTypeContract"
  1117. }
  1118. ],
  1119. "slotName": "Start",
  1120. "DisplayGroup": {
  1121. "Value": 2675529103
  1122. },
  1123. "Descriptor": {
  1124. "ConnectionType": 1,
  1125. "SlotType": 1
  1126. }
  1127. },
  1128. {
  1129. "id": {
  1130. "m_id": "{FA2DF43B-DC03-4655-981C-56380323737D}"
  1131. },
  1132. "contracts": [
  1133. {
  1134. "$type": "SlotTypeContract"
  1135. }
  1136. ],
  1137. "slotName": "Delay",
  1138. "toolTip": "The amount of time to delay before the Done is signalled.",
  1139. "DisplayGroup": {
  1140. "Value": 2675529103
  1141. },
  1142. "Descriptor": {
  1143. "ConnectionType": 1,
  1144. "SlotType": 2
  1145. },
  1146. "DataType": 1,
  1147. "IsReference": true,
  1148. "VariableReference": {
  1149. "m_id": "{43925339-CF93-40BB-8F85-E1BC8ED0A165}"
  1150. }
  1151. },
  1152. {
  1153. "id": {
  1154. "m_id": "{321F3675-2AE9-4C11-A352-22041F613505}"
  1155. },
  1156. "contracts": [
  1157. {
  1158. "$type": "SlotTypeContract"
  1159. }
  1160. ],
  1161. "slotName": "On Start",
  1162. "DisplayGroup": {
  1163. "Value": 2675529103
  1164. },
  1165. "Descriptor": {
  1166. "ConnectionType": 2,
  1167. "SlotType": 1
  1168. }
  1169. },
  1170. {
  1171. "id": {
  1172. "m_id": "{C8EFA3C5-9144-42E7-9CCA-3479B2A54CC1}"
  1173. },
  1174. "contracts": [
  1175. {
  1176. "$type": "SlotTypeContract"
  1177. }
  1178. ],
  1179. "slotName": "Done",
  1180. "toolTip": "Signaled after waiting for the specified amount of times.",
  1181. "DisplayGroup": {
  1182. "Value": 271442091
  1183. },
  1184. "Descriptor": {
  1185. "ConnectionType": 2,
  1186. "SlotType": 1
  1187. },
  1188. "IsLatent": true
  1189. }
  1190. ],
  1191. "Datums": [
  1192. {
  1193. "isOverloadedStorage": false,
  1194. "scriptCanvasType": {
  1195. "m_type": 3
  1196. },
  1197. "isNullPointer": false,
  1198. "$type": "double",
  1199. "value": 0.5,
  1200. "label": "Delay"
  1201. }
  1202. ],
  1203. "nodeable": {
  1204. "m_timeUnits": 2
  1205. },
  1206. "slotExecutionMap": {
  1207. "ins": [
  1208. {
  1209. "_slotId": {
  1210. "m_id": "{DDF86724-E0C3-40B7-9CB0-0B6038563971}"
  1211. },
  1212. "_inputs": [
  1213. {
  1214. "_slotId": {
  1215. "m_id": "{FA2DF43B-DC03-4655-981C-56380323737D}"
  1216. }
  1217. }
  1218. ],
  1219. "_outs": [
  1220. {
  1221. "_slotId": {
  1222. "m_id": "{321F3675-2AE9-4C11-A352-22041F613505}"
  1223. },
  1224. "_name": "On Start"
  1225. }
  1226. ]
  1227. }
  1228. ],
  1229. "latents": [
  1230. {
  1231. "_slotId": {
  1232. "m_id": "{C8EFA3C5-9144-42E7-9CCA-3479B2A54CC1}"
  1233. },
  1234. "_name": "Done"
  1235. }
  1236. ]
  1237. }
  1238. }
  1239. }
  1240. },
  1241. {
  1242. "Id": {
  1243. "id": 205084128455266
  1244. },
  1245. "Name": "SC-Node(TimeDelayNodeableNode)",
  1246. "Components": {
  1247. "Component_[11525858546977261117]": {
  1248. "$type": "TimeDelayNodeableNode",
  1249. "Id": 11525858546977261117,
  1250. "Slots": [
  1251. {
  1252. "id": {
  1253. "m_id": "{DDF86724-E0C3-40B7-9CB0-0B6038563971}"
  1254. },
  1255. "contracts": [
  1256. {
  1257. "$type": "SlotTypeContract"
  1258. }
  1259. ],
  1260. "slotName": "Start",
  1261. "DisplayGroup": {
  1262. "Value": 2675529103
  1263. },
  1264. "Descriptor": {
  1265. "ConnectionType": 1,
  1266. "SlotType": 1
  1267. }
  1268. },
  1269. {
  1270. "id": {
  1271. "m_id": "{FA2DF43B-DC03-4655-981C-56380323737D}"
  1272. },
  1273. "contracts": [
  1274. {
  1275. "$type": "SlotTypeContract"
  1276. }
  1277. ],
  1278. "slotName": "Delay",
  1279. "toolTip": "The amount of time to delay before the Done is signalled.",
  1280. "DisplayGroup": {
  1281. "Value": 2675529103
  1282. },
  1283. "Descriptor": {
  1284. "ConnectionType": 1,
  1285. "SlotType": 2
  1286. },
  1287. "DataType": 1,
  1288. "IsReference": true,
  1289. "VariableReference": {
  1290. "m_id": "{43925339-CF93-40BB-8F85-E1BC8ED0A165}"
  1291. }
  1292. },
  1293. {
  1294. "id": {
  1295. "m_id": "{321F3675-2AE9-4C11-A352-22041F613505}"
  1296. },
  1297. "contracts": [
  1298. {
  1299. "$type": "SlotTypeContract"
  1300. }
  1301. ],
  1302. "slotName": "On Start",
  1303. "DisplayGroup": {
  1304. "Value": 2675529103
  1305. },
  1306. "Descriptor": {
  1307. "ConnectionType": 2,
  1308. "SlotType": 1
  1309. }
  1310. },
  1311. {
  1312. "id": {
  1313. "m_id": "{C8EFA3C5-9144-42E7-9CCA-3479B2A54CC1}"
  1314. },
  1315. "contracts": [
  1316. {
  1317. "$type": "SlotTypeContract"
  1318. }
  1319. ],
  1320. "slotName": "Done",
  1321. "toolTip": "Signaled after waiting for the specified amount of times.",
  1322. "DisplayGroup": {
  1323. "Value": 271442091
  1324. },
  1325. "Descriptor": {
  1326. "ConnectionType": 2,
  1327. "SlotType": 1
  1328. },
  1329. "IsLatent": true
  1330. }
  1331. ],
  1332. "Datums": [
  1333. {
  1334. "isOverloadedStorage": false,
  1335. "scriptCanvasType": {
  1336. "m_type": 3
  1337. },
  1338. "isNullPointer": false,
  1339. "$type": "double",
  1340. "value": 0.5,
  1341. "label": "Delay"
  1342. }
  1343. ],
  1344. "nodeable": {
  1345. "m_timeUnits": 2
  1346. },
  1347. "slotExecutionMap": {
  1348. "ins": [
  1349. {
  1350. "_slotId": {
  1351. "m_id": "{DDF86724-E0C3-40B7-9CB0-0B6038563971}"
  1352. },
  1353. "_inputs": [
  1354. {
  1355. "_slotId": {
  1356. "m_id": "{FA2DF43B-DC03-4655-981C-56380323737D}"
  1357. }
  1358. }
  1359. ],
  1360. "_outs": [
  1361. {
  1362. "_slotId": {
  1363. "m_id": "{321F3675-2AE9-4C11-A352-22041F613505}"
  1364. },
  1365. "_name": "On Start"
  1366. }
  1367. ]
  1368. }
  1369. ],
  1370. "latents": [
  1371. {
  1372. "_slotId": {
  1373. "m_id": "{C8EFA3C5-9144-42E7-9CCA-3479B2A54CC1}"
  1374. },
  1375. "_name": "Done"
  1376. }
  1377. ]
  1378. }
  1379. }
  1380. }
  1381. },
  1382. {
  1383. "Id": {
  1384. "id": 205101308324450
  1385. },
  1386. "Name": "SC-Node(SetPropertyValueFloat)",
  1387. "Components": {
  1388. "Component_[11656005100578822455]": {
  1389. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1390. "Id": 11656005100578822455,
  1391. "Slots": [
  1392. {
  1393. "id": {
  1394. "m_id": "{5F63C282-9FC4-47D2-8FF1-C7A2CDE38F3F}"
  1395. },
  1396. "contracts": [
  1397. {
  1398. "$type": "SlotTypeContract"
  1399. }
  1400. ],
  1401. "slotName": "EntityId: 0",
  1402. "Descriptor": {
  1403. "ConnectionType": 1,
  1404. "SlotType": 2
  1405. },
  1406. "DataType": 1
  1407. },
  1408. {
  1409. "id": {
  1410. "m_id": "{8B0AF461-040B-475B-A410-A9F83719A16F}"
  1411. },
  1412. "contracts": [
  1413. {
  1414. "$type": "SlotTypeContract"
  1415. }
  1416. ],
  1417. "slotName": "MaterialAssignmentId: 1",
  1418. "Descriptor": {
  1419. "ConnectionType": 1,
  1420. "SlotType": 2
  1421. },
  1422. "DataType": 1,
  1423. "IsReference": true,
  1424. "VariableReference": {
  1425. "m_id": "{0970AC74-9D9A-4530-AD75-BB4A5E839FA5}"
  1426. }
  1427. },
  1428. {
  1429. "id": {
  1430. "m_id": "{59EA1D87-2D27-4F84-AF0A-BC94840CD646}"
  1431. },
  1432. "contracts": [
  1433. {
  1434. "$type": "SlotTypeContract"
  1435. }
  1436. ],
  1437. "slotName": "String: 2",
  1438. "Descriptor": {
  1439. "ConnectionType": 1,
  1440. "SlotType": 2
  1441. },
  1442. "DataType": 1
  1443. },
  1444. {
  1445. "id": {
  1446. "m_id": "{45D7878F-5B0D-41D7-AAD7-E530E71EBDC6}"
  1447. },
  1448. "contracts": [
  1449. {
  1450. "$type": "SlotTypeContract"
  1451. }
  1452. ],
  1453. "slotName": "Number: 3",
  1454. "Descriptor": {
  1455. "ConnectionType": 1,
  1456. "SlotType": 2
  1457. },
  1458. "DataType": 1
  1459. },
  1460. {
  1461. "id": {
  1462. "m_id": "{1257B79C-471D-4DDD-B333-63A465CE8908}"
  1463. },
  1464. "contracts": [
  1465. {
  1466. "$type": "SlotTypeContract"
  1467. }
  1468. ],
  1469. "slotName": "In",
  1470. "Descriptor": {
  1471. "ConnectionType": 1,
  1472. "SlotType": 1
  1473. }
  1474. },
  1475. {
  1476. "id": {
  1477. "m_id": "{CEA76E92-C5C3-4FB4-A38E-6519840EC557}"
  1478. },
  1479. "contracts": [
  1480. {
  1481. "$type": "SlotTypeContract"
  1482. }
  1483. ],
  1484. "slotName": "Out",
  1485. "Descriptor": {
  1486. "ConnectionType": 2,
  1487. "SlotType": 1
  1488. }
  1489. }
  1490. ],
  1491. "Datums": [
  1492. {
  1493. "isOverloadedStorage": false,
  1494. "scriptCanvasType": {
  1495. "m_type": 1
  1496. },
  1497. "isNullPointer": false,
  1498. "$type": "EntityId",
  1499. "value": {
  1500. "id": 2901262558
  1501. },
  1502. "label": "Source"
  1503. },
  1504. {
  1505. "isOverloadedStorage": false,
  1506. "scriptCanvasType": {
  1507. "m_type": 4,
  1508. "m_azType": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}"
  1509. },
  1510. "isNullPointer": false,
  1511. "$type": "AZ::Render::MaterialAssignmentId",
  1512. "label": "Material Assignment Id"
  1513. },
  1514. {
  1515. "isOverloadedStorage": false,
  1516. "scriptCanvasType": {
  1517. "m_type": 5
  1518. },
  1519. "isNullPointer": false,
  1520. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1521. "value": "emissive.intensity",
  1522. "label": "Property Id"
  1523. },
  1524. {
  1525. "isOverloadedStorage": false,
  1526. "scriptCanvasType": {
  1527. "m_type": 3
  1528. },
  1529. "isNullPointer": false,
  1530. "$type": "double",
  1531. "value": 0.0,
  1532. "label": "Property Value"
  1533. }
  1534. ],
  1535. "methodType": 0,
  1536. "methodName": "SetPropertyValueFloat",
  1537. "className": "MaterialComponentRequestBus",
  1538. "resultSlotIDs": [
  1539. {}
  1540. ],
  1541. "inputSlots": [
  1542. {
  1543. "m_id": "{5F63C282-9FC4-47D2-8FF1-C7A2CDE38F3F}"
  1544. },
  1545. {
  1546. "m_id": "{8B0AF461-040B-475B-A410-A9F83719A16F}"
  1547. },
  1548. {
  1549. "m_id": "{59EA1D87-2D27-4F84-AF0A-BC94840CD646}"
  1550. },
  1551. {
  1552. "m_id": "{45D7878F-5B0D-41D7-AAD7-E530E71EBDC6}"
  1553. }
  1554. ],
  1555. "prettyClassName": "MaterialComponentRequestBus"
  1556. }
  1557. }
  1558. },
  1559. {
  1560. "Id": {
  1561. "id": 205131373095522
  1562. },
  1563. "Name": "SC-Node(SetPropertyValueFloat)",
  1564. "Components": {
  1565. "Component_[11656005100578822455]": {
  1566. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1567. "Id": 11656005100578822455,
  1568. "Slots": [
  1569. {
  1570. "id": {
  1571. "m_id": "{5F63C282-9FC4-47D2-8FF1-C7A2CDE38F3F}"
  1572. },
  1573. "contracts": [
  1574. {
  1575. "$type": "SlotTypeContract"
  1576. }
  1577. ],
  1578. "slotName": "EntityId: 0",
  1579. "Descriptor": {
  1580. "ConnectionType": 1,
  1581. "SlotType": 2
  1582. },
  1583. "DataType": 1
  1584. },
  1585. {
  1586. "id": {
  1587. "m_id": "{8B0AF461-040B-475B-A410-A9F83719A16F}"
  1588. },
  1589. "contracts": [
  1590. {
  1591. "$type": "SlotTypeContract"
  1592. }
  1593. ],
  1594. "slotName": "MaterialAssignmentId: 1",
  1595. "Descriptor": {
  1596. "ConnectionType": 1,
  1597. "SlotType": 2
  1598. },
  1599. "DataType": 1,
  1600. "IsReference": true,
  1601. "VariableReference": {
  1602. "m_id": "{0970AC74-9D9A-4530-AD75-BB4A5E839FA5}"
  1603. }
  1604. },
  1605. {
  1606. "id": {
  1607. "m_id": "{59EA1D87-2D27-4F84-AF0A-BC94840CD646}"
  1608. },
  1609. "contracts": [
  1610. {
  1611. "$type": "SlotTypeContract"
  1612. }
  1613. ],
  1614. "slotName": "String: 2",
  1615. "Descriptor": {
  1616. "ConnectionType": 1,
  1617. "SlotType": 2
  1618. },
  1619. "DataType": 1
  1620. },
  1621. {
  1622. "id": {
  1623. "m_id": "{45D7878F-5B0D-41D7-AAD7-E530E71EBDC6}"
  1624. },
  1625. "contracts": [
  1626. {
  1627. "$type": "SlotTypeContract"
  1628. }
  1629. ],
  1630. "slotName": "Number: 3",
  1631. "Descriptor": {
  1632. "ConnectionType": 1,
  1633. "SlotType": 2
  1634. },
  1635. "DataType": 1
  1636. },
  1637. {
  1638. "id": {
  1639. "m_id": "{1257B79C-471D-4DDD-B333-63A465CE8908}"
  1640. },
  1641. "contracts": [
  1642. {
  1643. "$type": "SlotTypeContract"
  1644. }
  1645. ],
  1646. "slotName": "In",
  1647. "Descriptor": {
  1648. "ConnectionType": 1,
  1649. "SlotType": 1
  1650. }
  1651. },
  1652. {
  1653. "id": {
  1654. "m_id": "{CEA76E92-C5C3-4FB4-A38E-6519840EC557}"
  1655. },
  1656. "contracts": [
  1657. {
  1658. "$type": "SlotTypeContract"
  1659. }
  1660. ],
  1661. "slotName": "Out",
  1662. "Descriptor": {
  1663. "ConnectionType": 2,
  1664. "SlotType": 1
  1665. }
  1666. }
  1667. ],
  1668. "Datums": [
  1669. {
  1670. "isOverloadedStorage": false,
  1671. "scriptCanvasType": {
  1672. "m_type": 1
  1673. },
  1674. "isNullPointer": false,
  1675. "$type": "EntityId",
  1676. "value": {
  1677. "id": 2901262558
  1678. },
  1679. "label": "Source"
  1680. },
  1681. {
  1682. "isOverloadedStorage": false,
  1683. "scriptCanvasType": {
  1684. "m_type": 4,
  1685. "m_azType": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}"
  1686. },
  1687. "isNullPointer": false,
  1688. "$type": "AZ::Render::MaterialAssignmentId",
  1689. "label": "Material Assignment Id"
  1690. },
  1691. {
  1692. "isOverloadedStorage": false,
  1693. "scriptCanvasType": {
  1694. "m_type": 5
  1695. },
  1696. "isNullPointer": false,
  1697. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1698. "value": "emissive.intensity",
  1699. "label": "Property Id"
  1700. },
  1701. {
  1702. "isOverloadedStorage": false,
  1703. "scriptCanvasType": {
  1704. "m_type": 3
  1705. },
  1706. "isNullPointer": false,
  1707. "$type": "double",
  1708. "value": 1.0,
  1709. "label": "Property Value"
  1710. }
  1711. ],
  1712. "methodType": 0,
  1713. "methodName": "SetPropertyValueFloat",
  1714. "className": "MaterialComponentRequestBus",
  1715. "resultSlotIDs": [
  1716. {}
  1717. ],
  1718. "inputSlots": [
  1719. {
  1720. "m_id": "{5F63C282-9FC4-47D2-8FF1-C7A2CDE38F3F}"
  1721. },
  1722. {
  1723. "m_id": "{8B0AF461-040B-475B-A410-A9F83719A16F}"
  1724. },
  1725. {
  1726. "m_id": "{59EA1D87-2D27-4F84-AF0A-BC94840CD646}"
  1727. },
  1728. {
  1729. "m_id": "{45D7878F-5B0D-41D7-AAD7-E530E71EBDC6}"
  1730. }
  1731. ],
  1732. "prettyClassName": "MaterialComponentRequestBus"
  1733. }
  1734. }
  1735. },
  1736. {
  1737. "Id": {
  1738. "id": 205157142899298
  1739. },
  1740. "Name": "SC-Node(SetPropertyValueFloat)",
  1741. "Components": {
  1742. "Component_[11656005100578822455]": {
  1743. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1744. "Id": 11656005100578822455,
  1745. "Slots": [
  1746. {
  1747. "id": {
  1748. "m_id": "{5F63C282-9FC4-47D2-8FF1-C7A2CDE38F3F}"
  1749. },
  1750. "contracts": [
  1751. {
  1752. "$type": "SlotTypeContract"
  1753. }
  1754. ],
  1755. "slotName": "EntityId: 0",
  1756. "Descriptor": {
  1757. "ConnectionType": 1,
  1758. "SlotType": 2
  1759. },
  1760. "DataType": 1
  1761. },
  1762. {
  1763. "id": {
  1764. "m_id": "{8B0AF461-040B-475B-A410-A9F83719A16F}"
  1765. },
  1766. "contracts": [
  1767. {
  1768. "$type": "SlotTypeContract"
  1769. }
  1770. ],
  1771. "slotName": "MaterialAssignmentId: 1",
  1772. "Descriptor": {
  1773. "ConnectionType": 1,
  1774. "SlotType": 2
  1775. },
  1776. "DataType": 1,
  1777. "IsReference": true,
  1778. "VariableReference": {
  1779. "m_id": "{0970AC74-9D9A-4530-AD75-BB4A5E839FA5}"
  1780. }
  1781. },
  1782. {
  1783. "id": {
  1784. "m_id": "{59EA1D87-2D27-4F84-AF0A-BC94840CD646}"
  1785. },
  1786. "contracts": [
  1787. {
  1788. "$type": "SlotTypeContract"
  1789. }
  1790. ],
  1791. "slotName": "String: 2",
  1792. "Descriptor": {
  1793. "ConnectionType": 1,
  1794. "SlotType": 2
  1795. },
  1796. "DataType": 1
  1797. },
  1798. {
  1799. "id": {
  1800. "m_id": "{45D7878F-5B0D-41D7-AAD7-E530E71EBDC6}"
  1801. },
  1802. "contracts": [
  1803. {
  1804. "$type": "SlotTypeContract"
  1805. }
  1806. ],
  1807. "slotName": "Number: 3",
  1808. "Descriptor": {
  1809. "ConnectionType": 1,
  1810. "SlotType": 2
  1811. },
  1812. "DataType": 1
  1813. },
  1814. {
  1815. "id": {
  1816. "m_id": "{1257B79C-471D-4DDD-B333-63A465CE8908}"
  1817. },
  1818. "contracts": [
  1819. {
  1820. "$type": "SlotTypeContract"
  1821. }
  1822. ],
  1823. "slotName": "In",
  1824. "Descriptor": {
  1825. "ConnectionType": 1,
  1826. "SlotType": 1
  1827. }
  1828. },
  1829. {
  1830. "id": {
  1831. "m_id": "{CEA76E92-C5C3-4FB4-A38E-6519840EC557}"
  1832. },
  1833. "contracts": [
  1834. {
  1835. "$type": "SlotTypeContract"
  1836. }
  1837. ],
  1838. "slotName": "Out",
  1839. "Descriptor": {
  1840. "ConnectionType": 2,
  1841. "SlotType": 1
  1842. }
  1843. }
  1844. ],
  1845. "Datums": [
  1846. {
  1847. "isOverloadedStorage": false,
  1848. "scriptCanvasType": {
  1849. "m_type": 1
  1850. },
  1851. "isNullPointer": false,
  1852. "$type": "EntityId",
  1853. "value": {
  1854. "id": 2901262558
  1855. },
  1856. "label": "Source"
  1857. },
  1858. {
  1859. "isOverloadedStorage": false,
  1860. "scriptCanvasType": {
  1861. "m_type": 4,
  1862. "m_azType": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}"
  1863. },
  1864. "isNullPointer": false,
  1865. "$type": "AZ::Render::MaterialAssignmentId",
  1866. "label": "Material Assignment Id"
  1867. },
  1868. {
  1869. "isOverloadedStorage": false,
  1870. "scriptCanvasType": {
  1871. "m_type": 5
  1872. },
  1873. "isNullPointer": false,
  1874. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1875. "value": "emissive.intensity",
  1876. "label": "Property Id"
  1877. },
  1878. {
  1879. "isOverloadedStorage": false,
  1880. "scriptCanvasType": {
  1881. "m_type": 3
  1882. },
  1883. "isNullPointer": false,
  1884. "$type": "double",
  1885. "value": 1.0,
  1886. "label": "Property Value"
  1887. }
  1888. ],
  1889. "methodType": 0,
  1890. "methodName": "SetPropertyValueFloat",
  1891. "className": "MaterialComponentRequestBus",
  1892. "resultSlotIDs": [
  1893. {}
  1894. ],
  1895. "inputSlots": [
  1896. {
  1897. "m_id": "{5F63C282-9FC4-47D2-8FF1-C7A2CDE38F3F}"
  1898. },
  1899. {
  1900. "m_id": "{8B0AF461-040B-475B-A410-A9F83719A16F}"
  1901. },
  1902. {
  1903. "m_id": "{59EA1D87-2D27-4F84-AF0A-BC94840CD646}"
  1904. },
  1905. {
  1906. "m_id": "{45D7878F-5B0D-41D7-AAD7-E530E71EBDC6}"
  1907. }
  1908. ],
  1909. "prettyClassName": "MaterialComponentRequestBus"
  1910. }
  1911. }
  1912. },
  1913. {
  1914. "Id": {
  1915. "id": 205049768716898
  1916. },
  1917. "Name": "SC-Node(SetVisibility)",
  1918. "Components": {
  1919. "Component_[11683467762349841672]": {
  1920. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1921. "Id": 11683467762349841672,
  1922. "Slots": [
  1923. {
  1924. "id": {
  1925. "m_id": "{E5000583-AB25-4862-ABB0-61D10DD7A5FB}"
  1926. },
  1927. "contracts": [
  1928. {
  1929. "$type": "SlotTypeContract"
  1930. }
  1931. ],
  1932. "slotName": "EntityId: 0",
  1933. "Descriptor": {
  1934. "ConnectionType": 1,
  1935. "SlotType": 2
  1936. },
  1937. "DataType": 1
  1938. },
  1939. {
  1940. "id": {
  1941. "m_id": "{6AE33C33-6191-4009-BDAC-23724AA41E4C}"
  1942. },
  1943. "contracts": [
  1944. {
  1945. "$type": "SlotTypeContract"
  1946. }
  1947. ],
  1948. "slotName": "Boolean: 1",
  1949. "Descriptor": {
  1950. "ConnectionType": 1,
  1951. "SlotType": 2
  1952. },
  1953. "DataType": 1
  1954. },
  1955. {
  1956. "id": {
  1957. "m_id": "{F1064DA2-C654-4B9A-8CE1-4ED93C883AC0}"
  1958. },
  1959. "contracts": [
  1960. {
  1961. "$type": "SlotTypeContract"
  1962. }
  1963. ],
  1964. "slotName": "In",
  1965. "Descriptor": {
  1966. "ConnectionType": 1,
  1967. "SlotType": 1
  1968. }
  1969. },
  1970. {
  1971. "id": {
  1972. "m_id": "{3892A138-98BF-4209-A377-943B2601C809}"
  1973. },
  1974. "contracts": [
  1975. {
  1976. "$type": "SlotTypeContract"
  1977. }
  1978. ],
  1979. "slotName": "Out",
  1980. "Descriptor": {
  1981. "ConnectionType": 2,
  1982. "SlotType": 1
  1983. }
  1984. }
  1985. ],
  1986. "Datums": [
  1987. {
  1988. "isOverloadedStorage": false,
  1989. "scriptCanvasType": {
  1990. "m_type": 1
  1991. },
  1992. "isNullPointer": false,
  1993. "$type": "EntityId",
  1994. "value": {
  1995. "id": 2901262558
  1996. },
  1997. "label": "Source"
  1998. },
  1999. {
  2000. "isOverloadedStorage": false,
  2001. "scriptCanvasType": {
  2002. "m_type": 0
  2003. },
  2004. "isNullPointer": false,
  2005. "$type": "bool",
  2006. "value": true,
  2007. "label": "Boolean: 1"
  2008. }
  2009. ],
  2010. "methodType": 0,
  2011. "methodName": "SetVisibility",
  2012. "className": "RenderMeshComponentRequestBus",
  2013. "resultSlotIDs": [
  2014. {}
  2015. ],
  2016. "inputSlots": [
  2017. {
  2018. "m_id": "{E5000583-AB25-4862-ABB0-61D10DD7A5FB}"
  2019. },
  2020. {
  2021. "m_id": "{6AE33C33-6191-4009-BDAC-23724AA41E4C}"
  2022. }
  2023. ],
  2024. "prettyClassName": "RenderMeshComponentRequestBus"
  2025. }
  2026. }
  2027. },
  2028. {
  2029. "Id": {
  2030. "id": 205075538520674
  2031. },
  2032. "Name": "SC-Node(FindParameterName)",
  2033. "Components": {
  2034. "Component_[11880405692873094605]": {
  2035. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2036. "Id": 11880405692873094605,
  2037. "Slots": [
  2038. {
  2039. "id": {
  2040. "m_id": "{AF443DA4-8EFB-440A-A347-F21C66EA9A07}"
  2041. },
  2042. "contracts": [
  2043. {
  2044. "$type": "SlotTypeContract"
  2045. }
  2046. ],
  2047. "slotName": "EntityId: 0",
  2048. "Descriptor": {
  2049. "ConnectionType": 1,
  2050. "SlotType": 2
  2051. },
  2052. "DataType": 1
  2053. },
  2054. {
  2055. "id": {
  2056. "m_id": "{846CA5A2-03A7-4BF6-A097-3ABC5103CF18}"
  2057. },
  2058. "contracts": [
  2059. {
  2060. "$type": "SlotTypeContract"
  2061. }
  2062. ],
  2063. "slotName": "Number: 1",
  2064. "Descriptor": {
  2065. "ConnectionType": 1,
  2066. "SlotType": 2
  2067. },
  2068. "DataType": 1
  2069. },
  2070. {
  2071. "id": {
  2072. "m_id": "{B203DF5C-D528-42C1-BF0E-0729E5AC9A5A}"
  2073. },
  2074. "contracts": [
  2075. {
  2076. "$type": "SlotTypeContract"
  2077. }
  2078. ],
  2079. "slotName": "In",
  2080. "Descriptor": {
  2081. "ConnectionType": 1,
  2082. "SlotType": 1
  2083. }
  2084. },
  2085. {
  2086. "id": {
  2087. "m_id": "{50824E8F-FC54-4F13-A546-7AB1AC14CBFB}"
  2088. },
  2089. "contracts": [
  2090. {
  2091. "$type": "SlotTypeContract"
  2092. }
  2093. ],
  2094. "slotName": "Out",
  2095. "Descriptor": {
  2096. "ConnectionType": 2,
  2097. "SlotType": 1
  2098. }
  2099. },
  2100. {
  2101. "id": {
  2102. "m_id": "{9AA4E389-7875-4332-8758-94DFCCF4DF42}"
  2103. },
  2104. "contracts": [
  2105. {
  2106. "$type": "SlotTypeContract"
  2107. }
  2108. ],
  2109. "slotName": "String",
  2110. "DisplayDataType": {
  2111. "m_type": 5
  2112. },
  2113. "Descriptor": {
  2114. "ConnectionType": 2,
  2115. "SlotType": 2
  2116. },
  2117. "DataType": 1
  2118. }
  2119. ],
  2120. "Datums": [
  2121. {
  2122. "isOverloadedStorage": false,
  2123. "scriptCanvasType": {
  2124. "m_type": 1
  2125. },
  2126. "isNullPointer": false,
  2127. "$type": "EntityId",
  2128. "value": {
  2129. "id": 2901262558
  2130. },
  2131. "label": "Source"
  2132. },
  2133. {
  2134. "isOverloadedStorage": false,
  2135. "scriptCanvasType": {
  2136. "m_type": 3
  2137. },
  2138. "isNullPointer": false,
  2139. "$type": "double",
  2140. "value": 0.0,
  2141. "label": "Parameter Index"
  2142. }
  2143. ],
  2144. "methodType": 0,
  2145. "methodName": "FindParameterName",
  2146. "className": "AnimGraphComponentRequestBus",
  2147. "resultSlotIDs": [
  2148. {}
  2149. ],
  2150. "inputSlots": [
  2151. {
  2152. "m_id": "{AF443DA4-8EFB-440A-A347-F21C66EA9A07}"
  2153. },
  2154. {
  2155. "m_id": "{846CA5A2-03A7-4BF6-A097-3ABC5103CF18}"
  2156. }
  2157. ],
  2158. "prettyClassName": "AnimGraphComponentRequestBus"
  2159. }
  2160. }
  2161. },
  2162. {
  2163. "Id": {
  2164. "id": 205191502637666
  2165. },
  2166. "Name": "SC-Node(GetOnTriggerEnterEvent)",
  2167. "Components": {
  2168. "Component_[12297550672200413849]": {
  2169. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2170. "Id": 12297550672200413849,
  2171. "Slots": [
  2172. {
  2173. "id": {
  2174. "m_id": "{B0845A72-9AE3-47A6-AC71-EDD89B611ABE}"
  2175. },
  2176. "contracts": [
  2177. {
  2178. "$type": "SlotTypeContract"
  2179. }
  2180. ],
  2181. "slotName": "EntityId",
  2182. "Descriptor": {
  2183. "ConnectionType": 1,
  2184. "SlotType": 2
  2185. },
  2186. "DataType": 1
  2187. },
  2188. {
  2189. "id": {
  2190. "m_id": "{48408F6E-6010-4696-AB56-7FF5E0F7F527}"
  2191. },
  2192. "contracts": [
  2193. {
  2194. "$type": "SlotTypeContract"
  2195. }
  2196. ],
  2197. "slotName": "In",
  2198. "Descriptor": {
  2199. "ConnectionType": 1,
  2200. "SlotType": 1
  2201. }
  2202. },
  2203. {
  2204. "id": {
  2205. "m_id": "{F5627DEC-0826-4C5C-BAE8-CFB5787C6988}"
  2206. },
  2207. "contracts": [
  2208. {
  2209. "$type": "SlotTypeContract"
  2210. }
  2211. ],
  2212. "slotName": "Out",
  2213. "Descriptor": {
  2214. "ConnectionType": 2,
  2215. "SlotType": 1
  2216. }
  2217. },
  2218. {
  2219. "id": {
  2220. "m_id": "{39EEF333-BBCB-4171-AD3A-439412C5D9D3}"
  2221. },
  2222. "contracts": [
  2223. {
  2224. "$type": "SlotTypeContract"
  2225. }
  2226. ],
  2227. "slotName": "Event<AZStd::tuple<Crc32, int>, const TriggerEvent&>",
  2228. "DisplayDataType": {
  2229. "m_type": 4,
  2230. "m_azType": "{C00D2478-E0F3-57A3-AB60-A04DFC515016}"
  2231. },
  2232. "Descriptor": {
  2233. "ConnectionType": 2,
  2234. "SlotType": 2
  2235. },
  2236. "DataType": 1
  2237. }
  2238. ],
  2239. "Datums": [
  2240. {
  2241. "isOverloadedStorage": false,
  2242. "scriptCanvasType": {
  2243. "m_type": 1
  2244. },
  2245. "isNullPointer": false,
  2246. "$type": "EntityId",
  2247. "value": {
  2248. "id": 2901262558
  2249. },
  2250. "label": "Entity Id"
  2251. }
  2252. ],
  2253. "methodType": 2,
  2254. "methodName": "GetOnTriggerEnterEvent",
  2255. "className": "SimulatedBody",
  2256. "resultSlotIDs": [
  2257. {}
  2258. ],
  2259. "inputSlots": [
  2260. {
  2261. "m_id": "{B0845A72-9AE3-47A6-AC71-EDD89B611ABE}"
  2262. }
  2263. ],
  2264. "prettyClassName": "SimulatedBody"
  2265. }
  2266. }
  2267. },
  2268. {
  2269. "Id": {
  2270. "id": 205187207670370
  2271. },
  2272. "Name": "SC-Node(GetPropertyValueFloat)",
  2273. "Components": {
  2274. "Component_[12628050305237436434]": {
  2275. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2276. "Id": 12628050305237436434,
  2277. "Slots": [
  2278. {
  2279. "id": {
  2280. "m_id": "{CA531DE0-05B7-41A9-87A5-34994C3ABCC6}"
  2281. },
  2282. "contracts": [
  2283. {
  2284. "$type": "SlotTypeContract"
  2285. }
  2286. ],
  2287. "slotName": "EntityId: 0",
  2288. "Descriptor": {
  2289. "ConnectionType": 1,
  2290. "SlotType": 2
  2291. },
  2292. "DataType": 1
  2293. },
  2294. {
  2295. "id": {
  2296. "m_id": "{BBD8FAF7-9C89-4E7E-B332-8E084339C7F1}"
  2297. },
  2298. "contracts": [
  2299. {
  2300. "$type": "SlotTypeContract"
  2301. }
  2302. ],
  2303. "slotName": "MaterialAssignmentId: 1",
  2304. "Descriptor": {
  2305. "ConnectionType": 1,
  2306. "SlotType": 2
  2307. },
  2308. "DataType": 1,
  2309. "IsReference": true,
  2310. "VariableReference": {
  2311. "m_id": "{0970AC74-9D9A-4530-AD75-BB4A5E839FA5}"
  2312. }
  2313. },
  2314. {
  2315. "id": {
  2316. "m_id": "{37BC9A16-8114-4F36-BEFA-C27D48D00696}"
  2317. },
  2318. "contracts": [
  2319. {
  2320. "$type": "SlotTypeContract"
  2321. }
  2322. ],
  2323. "slotName": "String: 2",
  2324. "Descriptor": {
  2325. "ConnectionType": 1,
  2326. "SlotType": 2
  2327. },
  2328. "DataType": 1
  2329. },
  2330. {
  2331. "id": {
  2332. "m_id": "{9B0C5124-3B4A-41AF-9BF9-22EA0DED3EAF}"
  2333. },
  2334. "contracts": [
  2335. {
  2336. "$type": "SlotTypeContract"
  2337. }
  2338. ],
  2339. "slotName": "In",
  2340. "Descriptor": {
  2341. "ConnectionType": 1,
  2342. "SlotType": 1
  2343. }
  2344. },
  2345. {
  2346. "id": {
  2347. "m_id": "{B28BAE5E-1946-4E1C-BD17-1AF90190001D}"
  2348. },
  2349. "contracts": [
  2350. {
  2351. "$type": "SlotTypeContract"
  2352. }
  2353. ],
  2354. "slotName": "Out",
  2355. "Descriptor": {
  2356. "ConnectionType": 2,
  2357. "SlotType": 1
  2358. }
  2359. },
  2360. {
  2361. "id": {
  2362. "m_id": "{1D158A0E-D327-4C74-B5E0-DB87C399942E}"
  2363. },
  2364. "contracts": [
  2365. {
  2366. "$type": "SlotTypeContract"
  2367. }
  2368. ],
  2369. "slotName": "Number",
  2370. "DisplayDataType": {
  2371. "m_type": 3
  2372. },
  2373. "Descriptor": {
  2374. "ConnectionType": 2,
  2375. "SlotType": 2
  2376. },
  2377. "DataType": 1
  2378. }
  2379. ],
  2380. "Datums": [
  2381. {
  2382. "isOverloadedStorage": false,
  2383. "scriptCanvasType": {
  2384. "m_type": 1
  2385. },
  2386. "isNullPointer": false,
  2387. "$type": "EntityId",
  2388. "value": {
  2389. "id": 2901262558
  2390. },
  2391. "label": "Source"
  2392. },
  2393. {
  2394. "isOverloadedStorage": false,
  2395. "scriptCanvasType": {
  2396. "m_type": 4,
  2397. "m_azType": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}"
  2398. },
  2399. "isNullPointer": false,
  2400. "$type": "AZ::Render::MaterialAssignmentId",
  2401. "label": "Material Assignment Id"
  2402. },
  2403. {
  2404. "isOverloadedStorage": false,
  2405. "scriptCanvasType": {
  2406. "m_type": 5
  2407. },
  2408. "isNullPointer": false,
  2409. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2410. "value": "emissive.intensity",
  2411. "label": "Property Id"
  2412. }
  2413. ],
  2414. "methodType": 0,
  2415. "methodName": "GetPropertyValueFloat",
  2416. "className": "MaterialComponentRequestBus",
  2417. "resultSlotIDs": [
  2418. {}
  2419. ],
  2420. "inputSlots": [
  2421. {
  2422. "m_id": "{CA531DE0-05B7-41A9-87A5-34994C3ABCC6}"
  2423. },
  2424. {
  2425. "m_id": "{BBD8FAF7-9C89-4E7E-B332-8E084339C7F1}"
  2426. },
  2427. {
  2428. "m_id": "{37BC9A16-8114-4F36-BEFA-C27D48D00696}"
  2429. }
  2430. ],
  2431. "prettyClassName": "MaterialComponentRequestBus"
  2432. }
  2433. }
  2434. },
  2435. {
  2436. "Id": {
  2437. "id": 205234452310626
  2438. },
  2439. "Name": "SC-Node(GetPropertyValueFloat)",
  2440. "Components": {
  2441. "Component_[12628050305237436434]": {
  2442. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2443. "Id": 12628050305237436434,
  2444. "Slots": [
  2445. {
  2446. "id": {
  2447. "m_id": "{CA531DE0-05B7-41A9-87A5-34994C3ABCC6}"
  2448. },
  2449. "contracts": [
  2450. {
  2451. "$type": "SlotTypeContract"
  2452. }
  2453. ],
  2454. "slotName": "EntityId: 0",
  2455. "Descriptor": {
  2456. "ConnectionType": 1,
  2457. "SlotType": 2
  2458. },
  2459. "DataType": 1
  2460. },
  2461. {
  2462. "id": {
  2463. "m_id": "{BBD8FAF7-9C89-4E7E-B332-8E084339C7F1}"
  2464. },
  2465. "contracts": [
  2466. {
  2467. "$type": "SlotTypeContract"
  2468. }
  2469. ],
  2470. "slotName": "MaterialAssignmentId: 1",
  2471. "Descriptor": {
  2472. "ConnectionType": 1,
  2473. "SlotType": 2
  2474. },
  2475. "DataType": 1,
  2476. "IsReference": true,
  2477. "VariableReference": {
  2478. "m_id": "{0970AC74-9D9A-4530-AD75-BB4A5E839FA5}"
  2479. }
  2480. },
  2481. {
  2482. "id": {
  2483. "m_id": "{37BC9A16-8114-4F36-BEFA-C27D48D00696}"
  2484. },
  2485. "contracts": [
  2486. {
  2487. "$type": "SlotTypeContract"
  2488. }
  2489. ],
  2490. "slotName": "String: 2",
  2491. "Descriptor": {
  2492. "ConnectionType": 1,
  2493. "SlotType": 2
  2494. },
  2495. "DataType": 1
  2496. },
  2497. {
  2498. "id": {
  2499. "m_id": "{9B0C5124-3B4A-41AF-9BF9-22EA0DED3EAF}"
  2500. },
  2501. "contracts": [
  2502. {
  2503. "$type": "SlotTypeContract"
  2504. }
  2505. ],
  2506. "slotName": "In",
  2507. "Descriptor": {
  2508. "ConnectionType": 1,
  2509. "SlotType": 1
  2510. }
  2511. },
  2512. {
  2513. "id": {
  2514. "m_id": "{B28BAE5E-1946-4E1C-BD17-1AF90190001D}"
  2515. },
  2516. "contracts": [
  2517. {
  2518. "$type": "SlotTypeContract"
  2519. }
  2520. ],
  2521. "slotName": "Out",
  2522. "Descriptor": {
  2523. "ConnectionType": 2,
  2524. "SlotType": 1
  2525. }
  2526. },
  2527. {
  2528. "id": {
  2529. "m_id": "{1D158A0E-D327-4C74-B5E0-DB87C399942E}"
  2530. },
  2531. "contracts": [
  2532. {
  2533. "$type": "SlotTypeContract"
  2534. }
  2535. ],
  2536. "slotName": "Number",
  2537. "DisplayDataType": {
  2538. "m_type": 3
  2539. },
  2540. "Descriptor": {
  2541. "ConnectionType": 2,
  2542. "SlotType": 2
  2543. },
  2544. "DataType": 1
  2545. }
  2546. ],
  2547. "Datums": [
  2548. {
  2549. "isOverloadedStorage": false,
  2550. "scriptCanvasType": {
  2551. "m_type": 1
  2552. },
  2553. "isNullPointer": false,
  2554. "$type": "EntityId",
  2555. "value": {
  2556. "id": 2901262558
  2557. },
  2558. "label": "Source"
  2559. },
  2560. {
  2561. "isOverloadedStorage": false,
  2562. "scriptCanvasType": {
  2563. "m_type": 4,
  2564. "m_azType": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}"
  2565. },
  2566. "isNullPointer": false,
  2567. "$type": "AZ::Render::MaterialAssignmentId",
  2568. "label": "Material Assignment Id"
  2569. },
  2570. {
  2571. "isOverloadedStorage": false,
  2572. "scriptCanvasType": {
  2573. "m_type": 5
  2574. },
  2575. "isNullPointer": false,
  2576. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2577. "value": "emissive.intensity",
  2578. "label": "Property Id"
  2579. }
  2580. ],
  2581. "methodType": 0,
  2582. "methodName": "GetPropertyValueFloat",
  2583. "className": "MaterialComponentRequestBus",
  2584. "resultSlotIDs": [
  2585. {}
  2586. ],
  2587. "inputSlots": [
  2588. {
  2589. "m_id": "{CA531DE0-05B7-41A9-87A5-34994C3ABCC6}"
  2590. },
  2591. {
  2592. "m_id": "{BBD8FAF7-9C89-4E7E-B332-8E084339C7F1}"
  2593. },
  2594. {
  2595. "m_id": "{37BC9A16-8114-4F36-BEFA-C27D48D00696}"
  2596. }
  2597. ],
  2598. "prettyClassName": "MaterialComponentRequestBus"
  2599. }
  2600. }
  2601. },
  2602. {
  2603. "Id": {
  2604. "id": 205230157343330
  2605. },
  2606. "Name": "SC-Node(GetOtherEntityId)",
  2607. "Components": {
  2608. "Component_[13419357425088029883]": {
  2609. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2610. "Id": 13419357425088029883,
  2611. "Slots": [
  2612. {
  2613. "id": {
  2614. "m_id": "{C0388CC3-D291-4FA5-B9DD-BF27D839B80D}"
  2615. },
  2616. "contracts": [
  2617. {
  2618. "$type": "SlotTypeContract"
  2619. }
  2620. ],
  2621. "slotName": "TriggerEvent",
  2622. "Descriptor": {
  2623. "ConnectionType": 1,
  2624. "SlotType": 2
  2625. },
  2626. "DataType": 1
  2627. },
  2628. {
  2629. "id": {
  2630. "m_id": "{9C56543D-1F31-43FD-A857-FA9DF965988C}"
  2631. },
  2632. "contracts": [
  2633. {
  2634. "$type": "SlotTypeContract"
  2635. }
  2636. ],
  2637. "slotName": "In",
  2638. "Descriptor": {
  2639. "ConnectionType": 1,
  2640. "SlotType": 1
  2641. }
  2642. },
  2643. {
  2644. "id": {
  2645. "m_id": "{8D209C09-308C-41B9-965F-7FBB1DD3168B}"
  2646. },
  2647. "contracts": [
  2648. {
  2649. "$type": "SlotTypeContract"
  2650. }
  2651. ],
  2652. "slotName": "Out",
  2653. "Descriptor": {
  2654. "ConnectionType": 2,
  2655. "SlotType": 1
  2656. }
  2657. },
  2658. {
  2659. "id": {
  2660. "m_id": "{E088DA06-A36D-444B-8506-145BC39E4ABE}"
  2661. },
  2662. "contracts": [
  2663. {
  2664. "$type": "SlotTypeContract"
  2665. }
  2666. ],
  2667. "slotName": "EntityId",
  2668. "DisplayDataType": {
  2669. "m_type": 1
  2670. },
  2671. "Descriptor": {
  2672. "ConnectionType": 2,
  2673. "SlotType": 2
  2674. },
  2675. "DataType": 1
  2676. }
  2677. ],
  2678. "Datums": [
  2679. {
  2680. "isOverloadedStorage": false,
  2681. "scriptCanvasType": {
  2682. "m_type": 4,
  2683. "m_azType": "{7A0851A3-2CBD-4A03-85D5-1C40221E7F61}"
  2684. },
  2685. "isNullPointer": false,
  2686. "$type": "TriggerEvent",
  2687. "label": "Trigger Event"
  2688. }
  2689. ],
  2690. "methodType": 2,
  2691. "methodName": "GetOtherEntityId",
  2692. "className": "TriggerEvent",
  2693. "resultSlotIDs": [
  2694. {}
  2695. ],
  2696. "inputSlots": [
  2697. {
  2698. "m_id": "{C0388CC3-D291-4FA5-B9DD-BF27D839B80D}"
  2699. }
  2700. ],
  2701. "prettyClassName": "TriggerEvent"
  2702. }
  2703. }
  2704. },
  2705. {
  2706. "Id": {
  2707. "id": 205041178782306
  2708. },
  2709. "Name": "SC-Node(SpawnNodeableNode)",
  2710. "Components": {
  2711. "Component_[14368227923351849397]": {
  2712. "$type": "SpawnNodeableNode",
  2713. "Id": 14368227923351849397,
  2714. "Slots": [
  2715. {
  2716. "id": {
  2717. "m_id": "{B50C3923-7222-415C-AC7F-C9168B0D2A6E}"
  2718. },
  2719. "contracts": [
  2720. {
  2721. "$type": "SlotTypeContract"
  2722. }
  2723. ],
  2724. "slotName": "Request Spawn",
  2725. "DisplayGroup": {
  2726. "Value": 929942742
  2727. },
  2728. "Descriptor": {
  2729. "ConnectionType": 1,
  2730. "SlotType": 1
  2731. }
  2732. },
  2733. {
  2734. "id": {
  2735. "m_id": "{D3CF3CEE-976D-4784-B9D1-B822E23B3151}"
  2736. },
  2737. "contracts": [
  2738. {
  2739. "$type": "SlotTypeContract"
  2740. }
  2741. ],
  2742. "slotName": "SpawnTicket",
  2743. "toolTip": "Ticket instance assosiated with spawnable asset.",
  2744. "DisplayGroup": {
  2745. "Value": 929942742
  2746. },
  2747. "Descriptor": {
  2748. "ConnectionType": 1,
  2749. "SlotType": 2
  2750. },
  2751. "DataType": 1
  2752. },
  2753. {
  2754. "id": {
  2755. "m_id": "{99275FD7-2EEC-4B0F-B7B2-C38A31B16805}"
  2756. },
  2757. "contracts": [
  2758. {
  2759. "$type": "SlotTypeContract"
  2760. }
  2761. ],
  2762. "slotName": "ParentId",
  2763. "toolTip": "Optional parent to assign spawned container entity to.",
  2764. "DisplayGroup": {
  2765. "Value": 929942742
  2766. },
  2767. "Descriptor": {
  2768. "ConnectionType": 1,
  2769. "SlotType": 2
  2770. },
  2771. "DataType": 1
  2772. },
  2773. {
  2774. "id": {
  2775. "m_id": "{B8E8900A-A63E-45C4-9149-D39AA669671D}"
  2776. },
  2777. "contracts": [
  2778. {
  2779. "$type": "SlotTypeContract"
  2780. }
  2781. ],
  2782. "slotName": "Local Translation",
  2783. "toolTip": "Position to spawn.",
  2784. "DisplayGroup": {
  2785. "Value": 929942742
  2786. },
  2787. "Descriptor": {
  2788. "ConnectionType": 1,
  2789. "SlotType": 2
  2790. },
  2791. "DataType": 1
  2792. },
  2793. {
  2794. "id": {
  2795. "m_id": "{243F1C9F-9354-4E8D-9614-477DF34EDC97}"
  2796. },
  2797. "contracts": [
  2798. {
  2799. "$type": "SlotTypeContract"
  2800. }
  2801. ],
  2802. "slotName": "Local Rotation",
  2803. "toolTip": "Rotation of spawn (in degrees).",
  2804. "DisplayGroup": {
  2805. "Value": 929942742
  2806. },
  2807. "Descriptor": {
  2808. "ConnectionType": 1,
  2809. "SlotType": 2
  2810. },
  2811. "DataType": 1
  2812. },
  2813. {
  2814. "id": {
  2815. "m_id": "{923F5EEF-211A-49EB-AF09-BA270A9FE20C}"
  2816. },
  2817. "contracts": [
  2818. {
  2819. "$type": "SlotTypeContract"
  2820. }
  2821. ],
  2822. "slotName": "Local Scale",
  2823. "toolTip": "Scale of spawn.",
  2824. "DisplayGroup": {
  2825. "Value": 929942742
  2826. },
  2827. "Descriptor": {
  2828. "ConnectionType": 1,
  2829. "SlotType": 2
  2830. },
  2831. "DataType": 1
  2832. },
  2833. {
  2834. "id": {
  2835. "m_id": "{0BEA134B-6165-4599-A262-B92AAD2D1B48}"
  2836. },
  2837. "contracts": [
  2838. {
  2839. "$type": "SlotTypeContract"
  2840. }
  2841. ],
  2842. "slotName": "Spawn Requested",
  2843. "DisplayGroup": {
  2844. "Value": 929942742
  2845. },
  2846. "Descriptor": {
  2847. "ConnectionType": 2,
  2848. "SlotType": 1
  2849. }
  2850. },
  2851. {
  2852. "id": {
  2853. "m_id": "{4C969CA1-BBE1-4836-A4DD-F21C0AF936C1}"
  2854. },
  2855. "contracts": [
  2856. {
  2857. "$type": "SlotTypeContract"
  2858. }
  2859. ],
  2860. "slotName": "On Spawn Completed",
  2861. "toolTip": "Called when spawning entities is completed.",
  2862. "DisplayGroup": {
  2863. "Value": 3165055374
  2864. },
  2865. "Descriptor": {
  2866. "ConnectionType": 2,
  2867. "SlotType": 1
  2868. },
  2869. "IsLatent": true
  2870. },
  2871. {
  2872. "id": {
  2873. "m_id": "{1DD35C5E-3870-415D-BB38-3599240965A3}"
  2874. },
  2875. "contracts": [
  2876. {
  2877. "$type": "SlotTypeContract"
  2878. }
  2879. ],
  2880. "slotName": "SpawnTicketOut",
  2881. "toolTip": "Ticket instance of the spawn result.",
  2882. "DisplayDataType": {
  2883. "m_type": 4,
  2884. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  2885. },
  2886. "DisplayGroup": {
  2887. "Value": 3165055374
  2888. },
  2889. "Descriptor": {
  2890. "ConnectionType": 2,
  2891. "SlotType": 2
  2892. },
  2893. "DataType": 1
  2894. },
  2895. {
  2896. "id": {
  2897. "m_id": "{D4C52C15-CB2F-4A27-811A-9DC697B18B98}"
  2898. },
  2899. "contracts": [
  2900. {
  2901. "$type": "SlotTypeContract"
  2902. }
  2903. ],
  2904. "slotName": "SpawnedEntitiesList",
  2905. "toolTip": "List of spawned entities sorted by hierarchy with the root being first.",
  2906. "DisplayDataType": {
  2907. "m_type": 4,
  2908. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2909. },
  2910. "DisplayGroup": {
  2911. "Value": 3165055374
  2912. },
  2913. "Descriptor": {
  2914. "ConnectionType": 2,
  2915. "SlotType": 2
  2916. },
  2917. "DataType": 1
  2918. }
  2919. ],
  2920. "Datums": [
  2921. {
  2922. "isOverloadedStorage": false,
  2923. "scriptCanvasType": {
  2924. "m_type": 4,
  2925. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  2926. },
  2927. "isNullPointer": false,
  2928. "$type": "AzFramework::EntitySpawnTicket",
  2929. "label": "SpawnTicket"
  2930. },
  2931. {
  2932. "isOverloadedStorage": false,
  2933. "scriptCanvasType": {
  2934. "m_type": 1
  2935. },
  2936. "isNullPointer": false,
  2937. "$type": "EntityId",
  2938. "value": {
  2939. "id": 2901262558
  2940. },
  2941. "label": "ParentId"
  2942. },
  2943. {
  2944. "isOverloadedStorage": false,
  2945. "scriptCanvasType": {
  2946. "m_type": 8
  2947. },
  2948. "isNullPointer": false,
  2949. "$type": "Vector3",
  2950. "value": [
  2951. 0.0,
  2952. 2.0,
  2953. 15.0
  2954. ],
  2955. "label": "Local Translation"
  2956. },
  2957. {
  2958. "isOverloadedStorage": false,
  2959. "scriptCanvasType": {
  2960. "m_type": 8
  2961. },
  2962. "isNullPointer": false,
  2963. "$type": "Vector3",
  2964. "value": [
  2965. 0.0,
  2966. 0.0,
  2967. 0.0
  2968. ],
  2969. "label": "Local Rotation"
  2970. },
  2971. {
  2972. "isOverloadedStorage": false,
  2973. "scriptCanvasType": {
  2974. "m_type": 3
  2975. },
  2976. "isNullPointer": false,
  2977. "$type": "double",
  2978. "value": 1.0,
  2979. "label": "Local Scale"
  2980. }
  2981. ],
  2982. "slotExecutionMap": {
  2983. "ins": [
  2984. {
  2985. "_slotId": {
  2986. "m_id": "{B50C3923-7222-415C-AC7F-C9168B0D2A6E}"
  2987. },
  2988. "_inputs": [
  2989. {
  2990. "_slotId": {
  2991. "m_id": "{D3CF3CEE-976D-4784-B9D1-B822E23B3151}"
  2992. }
  2993. },
  2994. {
  2995. "_slotId": {
  2996. "m_id": "{99275FD7-2EEC-4B0F-B7B2-C38A31B16805}"
  2997. }
  2998. },
  2999. {
  3000. "_slotId": {
  3001. "m_id": "{B8E8900A-A63E-45C4-9149-D39AA669671D}"
  3002. }
  3003. },
  3004. {
  3005. "_slotId": {
  3006. "m_id": "{243F1C9F-9354-4E8D-9614-477DF34EDC97}"
  3007. }
  3008. },
  3009. {
  3010. "_slotId": {
  3011. "m_id": "{923F5EEF-211A-49EB-AF09-BA270A9FE20C}"
  3012. }
  3013. }
  3014. ],
  3015. "_outs": [
  3016. {
  3017. "_slotId": {
  3018. "m_id": "{0BEA134B-6165-4599-A262-B92AAD2D1B48}"
  3019. },
  3020. "_name": "Spawn Requested"
  3021. }
  3022. ]
  3023. }
  3024. ],
  3025. "latents": [
  3026. {
  3027. "_slotId": {
  3028. "m_id": "{4C969CA1-BBE1-4836-A4DD-F21C0AF936C1}"
  3029. },
  3030. "_name": "On Spawn Completed",
  3031. "_outputs": [
  3032. {
  3033. "_slotId": {
  3034. "m_id": "{1DD35C5E-3870-415D-BB38-3599240965A3}"
  3035. }
  3036. },
  3037. {
  3038. "_slotId": {
  3039. "m_id": "{D4C52C15-CB2F-4A27-811A-9DC697B18B98}"
  3040. }
  3041. }
  3042. ]
  3043. }
  3044. ]
  3045. }
  3046. }
  3047. }
  3048. },
  3049. {
  3050. "Id": {
  3051. "id": 205066948586082
  3052. },
  3053. "Name": "SC-Node(MoveEntity)",
  3054. "Components": {
  3055. "Component_[14545499052089635611]": {
  3056. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3057. "Id": 14545499052089635611,
  3058. "Slots": [
  3059. {
  3060. "id": {
  3061. "m_id": "{3CF32B30-2A93-4B49-B2C5-0245ED9CDE6A}"
  3062. },
  3063. "contracts": [
  3064. {
  3065. "$type": "SlotTypeContract"
  3066. }
  3067. ],
  3068. "slotName": "EntityId: 0",
  3069. "Descriptor": {
  3070. "ConnectionType": 1,
  3071. "SlotType": 2
  3072. },
  3073. "DataType": 1
  3074. },
  3075. {
  3076. "id": {
  3077. "m_id": "{E8236739-8CB8-43F8-B92C-6E1C3CB3A42B}"
  3078. },
  3079. "contracts": [
  3080. {
  3081. "$type": "SlotTypeContract"
  3082. }
  3083. ],
  3084. "slotName": "Vector3: 1",
  3085. "Descriptor": {
  3086. "ConnectionType": 1,
  3087. "SlotType": 2
  3088. },
  3089. "DataType": 1
  3090. },
  3091. {
  3092. "id": {
  3093. "m_id": "{2F505C66-BD98-422A-93DF-3541566F650A}"
  3094. },
  3095. "contracts": [
  3096. {
  3097. "$type": "SlotTypeContract"
  3098. }
  3099. ],
  3100. "slotName": "In",
  3101. "Descriptor": {
  3102. "ConnectionType": 1,
  3103. "SlotType": 1
  3104. }
  3105. },
  3106. {
  3107. "id": {
  3108. "m_id": "{9AF848F4-5E89-43B8-AEEA-C41ED5021F21}"
  3109. },
  3110. "contracts": [
  3111. {
  3112. "$type": "SlotTypeContract"
  3113. }
  3114. ],
  3115. "slotName": "Out",
  3116. "Descriptor": {
  3117. "ConnectionType": 2,
  3118. "SlotType": 1
  3119. }
  3120. }
  3121. ],
  3122. "Datums": [
  3123. {
  3124. "isOverloadedStorage": false,
  3125. "scriptCanvasType": {
  3126. "m_type": 1
  3127. },
  3128. "isNullPointer": false,
  3129. "$type": "EntityId",
  3130. "value": {
  3131. "id": 2901262558
  3132. },
  3133. "label": "Source"
  3134. },
  3135. {
  3136. "isOverloadedStorage": false,
  3137. "scriptCanvasType": {
  3138. "m_type": 8
  3139. },
  3140. "isNullPointer": false,
  3141. "$type": "Vector3",
  3142. "value": [
  3143. 0.0,
  3144. 0.0,
  3145. 0.0
  3146. ],
  3147. "label": "Offset"
  3148. }
  3149. ],
  3150. "methodType": 0,
  3151. "methodName": "MoveEntity",
  3152. "className": "TransformBus",
  3153. "resultSlotIDs": [
  3154. {}
  3155. ],
  3156. "inputSlots": [
  3157. {
  3158. "m_id": "{3CF32B30-2A93-4B49-B2C5-0245ED9CDE6A}"
  3159. },
  3160. {
  3161. "m_id": "{E8236739-8CB8-43F8-B92C-6E1C3CB3A42B}"
  3162. }
  3163. ],
  3164. "prettyClassName": "TransformBus"
  3165. }
  3166. }
  3167. },
  3168. {
  3169. "Id": {
  3170. "id": 205092718389858
  3171. },
  3172. "Name": "SC-Node(InputHandlerNodeableNode)",
  3173. "Components": {
  3174. "Component_[14602314020942162445]": {
  3175. "$type": "InputHandlerNodeableNode",
  3176. "Id": 14602314020942162445,
  3177. "Slots": [
  3178. {
  3179. "id": {
  3180. "m_id": "{1B5DD7A8-A4DF-4662-9A73-196DD4A17389}"
  3181. },
  3182. "contracts": [
  3183. {
  3184. "$type": "SlotTypeContract"
  3185. }
  3186. ],
  3187. "slotName": "Connect Event",
  3188. "toolTip": "Connect to input event name as defined in an input binding asset.",
  3189. "DisplayGroup": {
  3190. "Value": 2173756817
  3191. },
  3192. "Descriptor": {
  3193. "ConnectionType": 1,
  3194. "SlotType": 1
  3195. }
  3196. },
  3197. {
  3198. "id": {
  3199. "m_id": "{D936A5CC-ADC9-4C58-80AD-FEF7544A55DA}"
  3200. },
  3201. "contracts": [
  3202. {
  3203. "$type": "SlotTypeContract"
  3204. }
  3205. ],
  3206. "slotName": "Event Name",
  3207. "toolTip": "Event name as defined in an input binding asset. Example 'Fireball'.",
  3208. "DisplayGroup": {
  3209. "Value": 2173756817
  3210. },
  3211. "Descriptor": {
  3212. "ConnectionType": 1,
  3213. "SlotType": 2
  3214. },
  3215. "DataType": 1
  3216. },
  3217. {
  3218. "id": {
  3219. "m_id": "{5053BA0B-A0BF-4D4B-A97B-CCB1B77D1A2B}"
  3220. },
  3221. "contracts": [
  3222. {
  3223. "$type": "SlotTypeContract"
  3224. }
  3225. ],
  3226. "slotName": "On Connect Event",
  3227. "toolTip": "Connect to input event name as defined in an input binding asset.",
  3228. "DisplayGroup": {
  3229. "Value": 2173756817
  3230. },
  3231. "Descriptor": {
  3232. "ConnectionType": 2,
  3233. "SlotType": 1
  3234. }
  3235. },
  3236. {
  3237. "id": {
  3238. "m_id": "{B39B5ACE-0894-4FA8-9F8F-8F68B4EA34DD}"
  3239. },
  3240. "contracts": [
  3241. {
  3242. "$type": "SlotTypeContract"
  3243. }
  3244. ],
  3245. "slotName": "Pressed",
  3246. "toolTip": "Signaled when the input event begins.",
  3247. "DisplayGroup": {
  3248. "Value": 458537082
  3249. },
  3250. "Descriptor": {
  3251. "ConnectionType": 2,
  3252. "SlotType": 1
  3253. },
  3254. "IsLatent": true
  3255. },
  3256. {
  3257. "id": {
  3258. "m_id": "{0A33156D-DD04-4403-A9C5-254A8E232E71}"
  3259. },
  3260. "contracts": [
  3261. {
  3262. "$type": "SlotTypeContract"
  3263. }
  3264. ],
  3265. "slotName": "value",
  3266. "DisplayDataType": {
  3267. "m_type": 3
  3268. },
  3269. "DisplayGroup": {
  3270. "Value": 458537082
  3271. },
  3272. "Descriptor": {
  3273. "ConnectionType": 2,
  3274. "SlotType": 2
  3275. },
  3276. "DataType": 1
  3277. },
  3278. {
  3279. "id": {
  3280. "m_id": "{486AA4D9-4609-47BA-A586-59ACB202D7E2}"
  3281. },
  3282. "contracts": [
  3283. {
  3284. "$type": "SlotTypeContract"
  3285. }
  3286. ],
  3287. "slotName": "Held",
  3288. "toolTip": "Signaled while the input event is active.",
  3289. "DisplayGroup": {
  3290. "Value": 308119761
  3291. },
  3292. "Descriptor": {
  3293. "ConnectionType": 2,
  3294. "SlotType": 1
  3295. },
  3296. "IsLatent": true
  3297. },
  3298. {
  3299. "id": {
  3300. "m_id": "{23B42CEA-C280-45AA-9F67-637F63B291BA}"
  3301. },
  3302. "contracts": [
  3303. {
  3304. "$type": "SlotTypeContract"
  3305. }
  3306. ],
  3307. "slotName": "Released",
  3308. "toolTip": "Signaled when the input event ends.",
  3309. "DisplayGroup": {
  3310. "Value": 4215628054
  3311. },
  3312. "Descriptor": {
  3313. "ConnectionType": 2,
  3314. "SlotType": 1
  3315. },
  3316. "IsLatent": true
  3317. }
  3318. ],
  3319. "Datums": [
  3320. {
  3321. "isOverloadedStorage": false,
  3322. "scriptCanvasType": {
  3323. "m_type": 5
  3324. },
  3325. "isNullPointer": false,
  3326. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  3327. "value": "Fire",
  3328. "label": "Event Name"
  3329. }
  3330. ],
  3331. "slotExecutionMap": {
  3332. "ins": [
  3333. {
  3334. "_slotId": {
  3335. "m_id": "{1B5DD7A8-A4DF-4662-9A73-196DD4A17389}"
  3336. },
  3337. "_inputs": [
  3338. {
  3339. "_slotId": {
  3340. "m_id": "{D936A5CC-ADC9-4C58-80AD-FEF7544A55DA}"
  3341. }
  3342. }
  3343. ],
  3344. "_outs": [
  3345. {
  3346. "_slotId": {
  3347. "m_id": "{5053BA0B-A0BF-4D4B-A97B-CCB1B77D1A2B}"
  3348. },
  3349. "_name": "On Connect Event"
  3350. }
  3351. ]
  3352. }
  3353. ],
  3354. "latents": [
  3355. {
  3356. "_slotId": {
  3357. "m_id": "{B39B5ACE-0894-4FA8-9F8F-8F68B4EA34DD}"
  3358. },
  3359. "_name": "Pressed",
  3360. "_outputs": [
  3361. {
  3362. "_slotId": {
  3363. "m_id": "{0A33156D-DD04-4403-A9C5-254A8E232E71}"
  3364. }
  3365. }
  3366. ]
  3367. },
  3368. {
  3369. "_slotId": {
  3370. "m_id": "{486AA4D9-4609-47BA-A586-59ACB202D7E2}"
  3371. },
  3372. "_name": "Held",
  3373. "_outputs": [
  3374. {
  3375. "_slotId": {
  3376. "m_id": "{0A33156D-DD04-4403-A9C5-254A8E232E71}"
  3377. }
  3378. }
  3379. ]
  3380. },
  3381. {
  3382. "_slotId": {
  3383. "m_id": "{23B42CEA-C280-45AA-9F67-637F63B291BA}"
  3384. },
  3385. "_name": "Released",
  3386. "_outputs": [
  3387. {
  3388. "_slotId": {
  3389. "m_id": "{0A33156D-DD04-4403-A9C5-254A8E232E71}"
  3390. }
  3391. }
  3392. ]
  3393. }
  3394. ]
  3395. }
  3396. }
  3397. }
  3398. },
  3399. {
  3400. "Id": {
  3401. "id": 205122783160930
  3402. },
  3403. "Name": "SC-Node(Start)",
  3404. "Components": {
  3405. "Component_[14727842258713974234]": {
  3406. "$type": "Start",
  3407. "Id": 14727842258713974234,
  3408. "Slots": [
  3409. {
  3410. "id": {
  3411. "m_id": "{725DADA0-F5C3-44A6-995B-E4CEC74D62A2}"
  3412. },
  3413. "contracts": [
  3414. {
  3415. "$type": "SlotTypeContract"
  3416. }
  3417. ],
  3418. "slotName": "Out",
  3419. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  3420. "Descriptor": {
  3421. "ConnectionType": 2,
  3422. "SlotType": 1
  3423. }
  3424. }
  3425. ]
  3426. }
  3427. }
  3428. },
  3429. {
  3430. "Id": {
  3431. "id": 205148552964706
  3432. },
  3433. "Name": "SC-Node(OperatorAdd)",
  3434. "Components": {
  3435. "Component_[14992112252265498185]": {
  3436. "$type": "OperatorAdd",
  3437. "Id": 14992112252265498185,
  3438. "Slots": [
  3439. {
  3440. "id": {
  3441. "m_id": "{0ADF1456-02F4-4B06-9E86-CB1A21AE2B62}"
  3442. },
  3443. "contracts": [
  3444. {
  3445. "$type": "SlotTypeContract"
  3446. }
  3447. ],
  3448. "slotName": "In",
  3449. "Descriptor": {
  3450. "ConnectionType": 1,
  3451. "SlotType": 1
  3452. }
  3453. },
  3454. {
  3455. "id": {
  3456. "m_id": "{DF1841FD-C2D2-42BB-A0F1-09D0AA8299E3}"
  3457. },
  3458. "contracts": [
  3459. {
  3460. "$type": "SlotTypeContract"
  3461. }
  3462. ],
  3463. "slotName": "Out",
  3464. "Descriptor": {
  3465. "ConnectionType": 2,
  3466. "SlotType": 1
  3467. }
  3468. },
  3469. {
  3470. "id": {
  3471. "m_id": "{70E6CDF0-5323-45F7-8D04-61A6304DF852}"
  3472. },
  3473. "DynamicTypeOverride": 3,
  3474. "contracts": [
  3475. {
  3476. "$type": "SlotTypeContract"
  3477. },
  3478. {
  3479. "$type": "MathOperatorContract",
  3480. "NativeTypes": [
  3481. {
  3482. "m_type": 3
  3483. },
  3484. {
  3485. "m_type": 6
  3486. },
  3487. {
  3488. "m_type": 8
  3489. },
  3490. {
  3491. "m_type": 9
  3492. },
  3493. {
  3494. "m_type": 10
  3495. },
  3496. {
  3497. "m_type": 11
  3498. },
  3499. {
  3500. "m_type": 12
  3501. },
  3502. {
  3503. "m_type": 14
  3504. },
  3505. {
  3506. "m_type": 15
  3507. }
  3508. ]
  3509. }
  3510. ],
  3511. "slotName": "Number 0",
  3512. "toolTip": "An operand to use in performing the specified Operation",
  3513. "DisplayDataType": {
  3514. "m_type": 3
  3515. },
  3516. "DisplayGroup": {
  3517. "Value": 1114760223
  3518. },
  3519. "Descriptor": {
  3520. "ConnectionType": 1,
  3521. "SlotType": 2
  3522. },
  3523. "DynamicGroup": {
  3524. "Value": 1114760223
  3525. },
  3526. "DataType": 1
  3527. },
  3528. {
  3529. "id": {
  3530. "m_id": "{31890621-040A-4693-BC65-3D7489746B4D}"
  3531. },
  3532. "DynamicTypeOverride": 3,
  3533. "contracts": [
  3534. {
  3535. "$type": "SlotTypeContract"
  3536. },
  3537. {
  3538. "$type": "MathOperatorContract",
  3539. "NativeTypes": [
  3540. {
  3541. "m_type": 3
  3542. },
  3543. {
  3544. "m_type": 6
  3545. },
  3546. {
  3547. "m_type": 8
  3548. },
  3549. {
  3550. "m_type": 9
  3551. },
  3552. {
  3553. "m_type": 10
  3554. },
  3555. {
  3556. "m_type": 11
  3557. },
  3558. {
  3559. "m_type": 12
  3560. },
  3561. {
  3562. "m_type": 14
  3563. },
  3564. {
  3565. "m_type": 15
  3566. }
  3567. ]
  3568. }
  3569. ],
  3570. "slotName": "Number 1",
  3571. "toolTip": "An operand to use in performing the specified Operation",
  3572. "DisplayDataType": {
  3573. "m_type": 3
  3574. },
  3575. "DisplayGroup": {
  3576. "Value": 1114760223
  3577. },
  3578. "Descriptor": {
  3579. "ConnectionType": 1,
  3580. "SlotType": 2
  3581. },
  3582. "DynamicGroup": {
  3583. "Value": 1114760223
  3584. },
  3585. "DataType": 1
  3586. },
  3587. {
  3588. "id": {
  3589. "m_id": "{67C8CCA1-7FE8-4419-B3FD-6D489C633C66}"
  3590. },
  3591. "DynamicTypeOverride": 3,
  3592. "contracts": [
  3593. {
  3594. "$type": "SlotTypeContract"
  3595. },
  3596. {
  3597. "$type": "MathOperatorContract",
  3598. "NativeTypes": [
  3599. {
  3600. "m_type": 3
  3601. },
  3602. {
  3603. "m_type": 6
  3604. },
  3605. {
  3606. "m_type": 8
  3607. },
  3608. {
  3609. "m_type": 9
  3610. },
  3611. {
  3612. "m_type": 10
  3613. },
  3614. {
  3615. "m_type": 11
  3616. },
  3617. {
  3618. "m_type": 12
  3619. },
  3620. {
  3621. "m_type": 14
  3622. },
  3623. {
  3624. "m_type": 15
  3625. }
  3626. ]
  3627. }
  3628. ],
  3629. "slotName": "Result",
  3630. "toolTip": "The result of the specified operation",
  3631. "DisplayDataType": {
  3632. "m_type": 3
  3633. },
  3634. "DisplayGroup": {
  3635. "Value": 1114760223
  3636. },
  3637. "Descriptor": {
  3638. "ConnectionType": 2,
  3639. "SlotType": 2
  3640. },
  3641. "DynamicGroup": {
  3642. "Value": 1114760223
  3643. },
  3644. "DataType": 1
  3645. }
  3646. ],
  3647. "Datums": [
  3648. {
  3649. "isOverloadedStorage": false,
  3650. "scriptCanvasType": {
  3651. "m_type": 3
  3652. },
  3653. "isNullPointer": false,
  3654. "$type": "double",
  3655. "value": 0.0,
  3656. "label": "Number 0"
  3657. },
  3658. {
  3659. "isOverloadedStorage": false,
  3660. "scriptCanvasType": {
  3661. "m_type": 3
  3662. },
  3663. "isNullPointer": false,
  3664. "$type": "double",
  3665. "value": -0.25,
  3666. "label": "Number 1"
  3667. }
  3668. ]
  3669. }
  3670. }
  3671. },
  3672. {
  3673. "Id": {
  3674. "id": 205174322768482
  3675. },
  3676. "Name": "SC-Node(OperatorAdd)",
  3677. "Components": {
  3678. "Component_[14992112252265498185]": {
  3679. "$type": "OperatorAdd",
  3680. "Id": 14992112252265498185,
  3681. "Slots": [
  3682. {
  3683. "id": {
  3684. "m_id": "{0ADF1456-02F4-4B06-9E86-CB1A21AE2B62}"
  3685. },
  3686. "contracts": [
  3687. {
  3688. "$type": "SlotTypeContract"
  3689. }
  3690. ],
  3691. "slotName": "In",
  3692. "Descriptor": {
  3693. "ConnectionType": 1,
  3694. "SlotType": 1
  3695. }
  3696. },
  3697. {
  3698. "id": {
  3699. "m_id": "{DF1841FD-C2D2-42BB-A0F1-09D0AA8299E3}"
  3700. },
  3701. "contracts": [
  3702. {
  3703. "$type": "SlotTypeContract"
  3704. }
  3705. ],
  3706. "slotName": "Out",
  3707. "Descriptor": {
  3708. "ConnectionType": 2,
  3709. "SlotType": 1
  3710. }
  3711. },
  3712. {
  3713. "id": {
  3714. "m_id": "{70E6CDF0-5323-45F7-8D04-61A6304DF852}"
  3715. },
  3716. "DynamicTypeOverride": 3,
  3717. "contracts": [
  3718. {
  3719. "$type": "SlotTypeContract"
  3720. },
  3721. {
  3722. "$type": "MathOperatorContract",
  3723. "NativeTypes": [
  3724. {
  3725. "m_type": 3
  3726. },
  3727. {
  3728. "m_type": 6
  3729. },
  3730. {
  3731. "m_type": 8
  3732. },
  3733. {
  3734. "m_type": 9
  3735. },
  3736. {
  3737. "m_type": 10
  3738. },
  3739. {
  3740. "m_type": 11
  3741. },
  3742. {
  3743. "m_type": 12
  3744. },
  3745. {
  3746. "m_type": 14
  3747. },
  3748. {
  3749. "m_type": 15
  3750. }
  3751. ]
  3752. }
  3753. ],
  3754. "slotName": "Number 0",
  3755. "toolTip": "An operand to use in performing the specified Operation",
  3756. "DisplayDataType": {
  3757. "m_type": 3
  3758. },
  3759. "DisplayGroup": {
  3760. "Value": 1114760223
  3761. },
  3762. "Descriptor": {
  3763. "ConnectionType": 1,
  3764. "SlotType": 2
  3765. },
  3766. "DynamicGroup": {
  3767. "Value": 1114760223
  3768. },
  3769. "DataType": 1
  3770. },
  3771. {
  3772. "id": {
  3773. "m_id": "{31890621-040A-4693-BC65-3D7489746B4D}"
  3774. },
  3775. "DynamicTypeOverride": 3,
  3776. "contracts": [
  3777. {
  3778. "$type": "SlotTypeContract"
  3779. },
  3780. {
  3781. "$type": "MathOperatorContract",
  3782. "NativeTypes": [
  3783. {
  3784. "m_type": 3
  3785. },
  3786. {
  3787. "m_type": 6
  3788. },
  3789. {
  3790. "m_type": 8
  3791. },
  3792. {
  3793. "m_type": 9
  3794. },
  3795. {
  3796. "m_type": 10
  3797. },
  3798. {
  3799. "m_type": 11
  3800. },
  3801. {
  3802. "m_type": 12
  3803. },
  3804. {
  3805. "m_type": 14
  3806. },
  3807. {
  3808. "m_type": 15
  3809. }
  3810. ]
  3811. }
  3812. ],
  3813. "slotName": "Number 1",
  3814. "toolTip": "An operand to use in performing the specified Operation",
  3815. "DisplayDataType": {
  3816. "m_type": 3
  3817. },
  3818. "DisplayGroup": {
  3819. "Value": 1114760223
  3820. },
  3821. "Descriptor": {
  3822. "ConnectionType": 1,
  3823. "SlotType": 2
  3824. },
  3825. "DynamicGroup": {
  3826. "Value": 1114760223
  3827. },
  3828. "DataType": 1
  3829. },
  3830. {
  3831. "id": {
  3832. "m_id": "{67C8CCA1-7FE8-4419-B3FD-6D489C633C66}"
  3833. },
  3834. "DynamicTypeOverride": 3,
  3835. "contracts": [
  3836. {
  3837. "$type": "SlotTypeContract"
  3838. },
  3839. {
  3840. "$type": "MathOperatorContract",
  3841. "NativeTypes": [
  3842. {
  3843. "m_type": 3
  3844. },
  3845. {
  3846. "m_type": 6
  3847. },
  3848. {
  3849. "m_type": 8
  3850. },
  3851. {
  3852. "m_type": 9
  3853. },
  3854. {
  3855. "m_type": 10
  3856. },
  3857. {
  3858. "m_type": 11
  3859. },
  3860. {
  3861. "m_type": 12
  3862. },
  3863. {
  3864. "m_type": 14
  3865. },
  3866. {
  3867. "m_type": 15
  3868. }
  3869. ]
  3870. }
  3871. ],
  3872. "slotName": "Result",
  3873. "toolTip": "The result of the specified operation",
  3874. "DisplayDataType": {
  3875. "m_type": 3
  3876. },
  3877. "DisplayGroup": {
  3878. "Value": 1114760223
  3879. },
  3880. "Descriptor": {
  3881. "ConnectionType": 2,
  3882. "SlotType": 2
  3883. },
  3884. "DynamicGroup": {
  3885. "Value": 1114760223
  3886. },
  3887. "DataType": 1
  3888. }
  3889. ],
  3890. "Datums": [
  3891. {
  3892. "isOverloadedStorage": false,
  3893. "scriptCanvasType": {
  3894. "m_type": 3
  3895. },
  3896. "isNullPointer": false,
  3897. "$type": "double",
  3898. "value": 0.0,
  3899. "label": "Number 0"
  3900. },
  3901. {
  3902. "isOverloadedStorage": false,
  3903. "scriptCanvasType": {
  3904. "m_type": 3
  3905. },
  3906. "isNullPointer": false,
  3907. "$type": "double",
  3908. "value": 0.25,
  3909. "label": "Number 1"
  3910. }
  3911. ]
  3912. }
  3913. }
  3914. },
  3915. {
  3916. "Id": {
  3917. "id": 205217272441442
  3918. },
  3919. "Name": "SC Node(GetVariable)",
  3920. "Components": {
  3921. "Component_[1548889640253206508]": {
  3922. "$type": "GetVariableNode",
  3923. "Id": 1548889640253206508,
  3924. "Slots": [
  3925. {
  3926. "id": {
  3927. "m_id": "{CD7F607C-B629-404A-B0BC-56356B525E1A}"
  3928. },
  3929. "contracts": [
  3930. {
  3931. "$type": "SlotTypeContract"
  3932. }
  3933. ],
  3934. "slotName": "In",
  3935. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  3936. "Descriptor": {
  3937. "ConnectionType": 1,
  3938. "SlotType": 1
  3939. }
  3940. },
  3941. {
  3942. "id": {
  3943. "m_id": "{A0724C63-2562-460A-9561-61DC5F04DC2A}"
  3944. },
  3945. "contracts": [
  3946. {
  3947. "$type": "SlotTypeContract"
  3948. }
  3949. ],
  3950. "slotName": "Out",
  3951. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  3952. "Descriptor": {
  3953. "ConnectionType": 2,
  3954. "SlotType": 1
  3955. }
  3956. },
  3957. {
  3958. "id": {
  3959. "m_id": "{A6178C26-D92C-4EF2-8A2A-016EB649E6B8}"
  3960. },
  3961. "contracts": [
  3962. {
  3963. "$type": "SlotTypeContract"
  3964. }
  3965. ],
  3966. "slotName": "Vector3",
  3967. "DisplayDataType": {
  3968. "m_type": 8
  3969. },
  3970. "Descriptor": {
  3971. "ConnectionType": 2,
  3972. "SlotType": 2
  3973. },
  3974. "DataType": 1
  3975. },
  3976. {
  3977. "id": {
  3978. "m_id": "{3EE07142-6597-4B89-AA09-BB438D1E49B2}"
  3979. },
  3980. "contracts": [
  3981. {
  3982. "$type": "SlotTypeContract"
  3983. }
  3984. ],
  3985. "slotName": "X",
  3986. "DisplayDataType": {
  3987. "m_type": 3
  3988. },
  3989. "Descriptor": {
  3990. "ConnectionType": 2,
  3991. "SlotType": 2
  3992. },
  3993. "DataType": 1
  3994. },
  3995. {
  3996. "id": {
  3997. "m_id": "{BD4F59AE-9DBE-4D16-A61A-4C3B8C96A416}"
  3998. },
  3999. "contracts": [
  4000. {
  4001. "$type": "SlotTypeContract"
  4002. }
  4003. ],
  4004. "slotName": "Y",
  4005. "DisplayDataType": {
  4006. "m_type": 3
  4007. },
  4008. "Descriptor": {
  4009. "ConnectionType": 2,
  4010. "SlotType": 2
  4011. },
  4012. "DataType": 1
  4013. },
  4014. {
  4015. "id": {
  4016. "m_id": "{A3255A96-3D1A-4CD0-AC79-926CAE935BB8}"
  4017. },
  4018. "contracts": [
  4019. {
  4020. "$type": "SlotTypeContract"
  4021. }
  4022. ],
  4023. "slotName": "Z",
  4024. "DisplayDataType": {
  4025. "m_type": 3
  4026. },
  4027. "Descriptor": {
  4028. "ConnectionType": 2,
  4029. "SlotType": 2
  4030. },
  4031. "DataType": 1
  4032. }
  4033. ],
  4034. "m_variableId": {
  4035. "m_id": "{8A5DE15B-660D-4623-8D53-3386676D5C3D}"
  4036. },
  4037. "m_variableDataOutSlotId": {
  4038. "m_id": "{A6178C26-D92C-4EF2-8A2A-016EB649E6B8}"
  4039. },
  4040. "m_propertyAccounts": [
  4041. {
  4042. "m_propertySlotId": {
  4043. "m_id": "{3EE07142-6597-4B89-AA09-BB438D1E49B2}"
  4044. },
  4045. "m_propertyType": {
  4046. "m_type": 3
  4047. },
  4048. "m_propertyName": "x"
  4049. },
  4050. {
  4051. "m_propertySlotId": {
  4052. "m_id": "{BD4F59AE-9DBE-4D16-A61A-4C3B8C96A416}"
  4053. },
  4054. "m_propertyType": {
  4055. "m_type": 3
  4056. },
  4057. "m_propertyName": "y"
  4058. },
  4059. {
  4060. "m_propertySlotId": {
  4061. "m_id": "{A3255A96-3D1A-4CD0-AC79-926CAE935BB8}"
  4062. },
  4063. "m_propertyType": {
  4064. "m_type": 3
  4065. },
  4066. "m_propertyName": "z"
  4067. }
  4068. ]
  4069. }
  4070. }
  4071. },
  4072. {
  4073. "Id": {
  4074. "id": 205114193226338
  4075. },
  4076. "Name": "SC-Node(CreateSpawnTicketNodeableNode)",
  4077. "Components": {
  4078. "Component_[16452319209411884434]": {
  4079. "$type": "CreateSpawnTicketNodeableNode",
  4080. "Id": 16452319209411884434,
  4081. "Slots": [
  4082. {
  4083. "id": {
  4084. "m_id": "{147421EE-8A83-49F0-9CA7-3EB758BAD3CE}"
  4085. },
  4086. "contracts": [
  4087. {
  4088. "$type": "SlotTypeContract"
  4089. }
  4090. ],
  4091. "slotName": "Create Ticket",
  4092. "DisplayGroup": {
  4093. "Value": 3070342103
  4094. },
  4095. "Descriptor": {
  4096. "ConnectionType": 1,
  4097. "SlotType": 1
  4098. }
  4099. },
  4100. {
  4101. "id": {
  4102. "m_id": "{5A015A34-E085-4FD1-8448-053BE86F61AF}"
  4103. },
  4104. "contracts": [
  4105. {
  4106. "$type": "SlotTypeContract"
  4107. }
  4108. ],
  4109. "slotName": "Prefab",
  4110. "toolTip": "Prefab source asset to spawn",
  4111. "DisplayGroup": {
  4112. "Value": 3070342103
  4113. },
  4114. "Descriptor": {
  4115. "ConnectionType": 1,
  4116. "SlotType": 2
  4117. },
  4118. "DataType": 1,
  4119. "IsReference": true,
  4120. "VariableReference": {
  4121. "m_id": "{FC2E6666-DD26-4D43-850C-DAA86DBEB1CE}"
  4122. }
  4123. },
  4124. {
  4125. "id": {
  4126. "m_id": "{1CA3DD5C-6905-4835-A5CC-441CBC79C444}"
  4127. },
  4128. "contracts": [
  4129. {
  4130. "$type": "SlotTypeContract"
  4131. }
  4132. ],
  4133. "slotName": "Ticket Created",
  4134. "DisplayGroup": {
  4135. "Value": 3070342103
  4136. },
  4137. "Descriptor": {
  4138. "ConnectionType": 2,
  4139. "SlotType": 1
  4140. }
  4141. },
  4142. {
  4143. "id": {
  4144. "m_id": "{D66B9024-E92E-4DE9-8385-882EF4F0D6B4}"
  4145. },
  4146. "contracts": [
  4147. {
  4148. "$type": "SlotTypeContract"
  4149. }
  4150. ],
  4151. "slotName": "SpawnTicket",
  4152. "DisplayDataType": {
  4153. "m_type": 4,
  4154. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  4155. },
  4156. "DisplayGroup": {
  4157. "Value": 3070342103
  4158. },
  4159. "Descriptor": {
  4160. "ConnectionType": 2,
  4161. "SlotType": 2
  4162. },
  4163. "DataType": 1
  4164. }
  4165. ],
  4166. "Datums": [
  4167. {
  4168. "isOverloadedStorage": false,
  4169. "scriptCanvasType": {
  4170. "m_type": 4,
  4171. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  4172. },
  4173. "isNullPointer": false,
  4174. "$type": "AzFramework::Scripts::SpawnableScriptAssetRef",
  4175. "label": "Prefab"
  4176. }
  4177. ],
  4178. "slotExecutionMap": {
  4179. "ins": [
  4180. {
  4181. "_slotId": {
  4182. "m_id": "{147421EE-8A83-49F0-9CA7-3EB758BAD3CE}"
  4183. },
  4184. "_inputs": [
  4185. {
  4186. "_slotId": {
  4187. "m_id": "{5A015A34-E085-4FD1-8448-053BE86F61AF}"
  4188. }
  4189. }
  4190. ],
  4191. "_outs": [
  4192. {
  4193. "_slotId": {
  4194. "m_id": "{1CA3DD5C-6905-4835-A5CC-441CBC79C444}"
  4195. },
  4196. "_name": "Ticket Created",
  4197. "_outputs": [
  4198. {
  4199. "_slotId": {
  4200. "m_id": "{D66B9024-E92E-4DE9-8385-882EF4F0D6B4}"
  4201. }
  4202. }
  4203. ]
  4204. }
  4205. ]
  4206. }
  4207. ]
  4208. }
  4209. }
  4210. }
  4211. },
  4212. {
  4213. "Id": {
  4214. "id": 205144257997410
  4215. },
  4216. "Name": "EBusEventHandler",
  4217. "Components": {
  4218. "Component_[16824060875672336721]": {
  4219. "$type": "EBusEventHandler",
  4220. "Id": 16824060875672336721,
  4221. "Slots": [
  4222. {
  4223. "id": {
  4224. "m_id": "{4FA55252-AB2F-46A1-86AB-6DE662A7B379}"
  4225. },
  4226. "contracts": [
  4227. {
  4228. "$type": "SlotTypeContract"
  4229. }
  4230. ],
  4231. "slotName": "Connect",
  4232. "toolTip": "Connect this event handler to the specified entity.",
  4233. "Descriptor": {
  4234. "ConnectionType": 1,
  4235. "SlotType": 1
  4236. }
  4237. },
  4238. {
  4239. "id": {
  4240. "m_id": "{F3A65911-91ED-42FF-A930-126448660EDF}"
  4241. },
  4242. "contracts": [
  4243. {
  4244. "$type": "SlotTypeContract"
  4245. }
  4246. ],
  4247. "slotName": "Disconnect",
  4248. "toolTip": "Disconnect this event handler.",
  4249. "Descriptor": {
  4250. "ConnectionType": 1,
  4251. "SlotType": 1
  4252. }
  4253. },
  4254. {
  4255. "id": {
  4256. "m_id": "{10FE8D0F-BFE8-41AE-8CD0-D1D67F6AEAF2}"
  4257. },
  4258. "contracts": [
  4259. {
  4260. "$type": "SlotTypeContract"
  4261. }
  4262. ],
  4263. "slotName": "OnConnected",
  4264. "toolTip": "Signaled when a connection has taken place.",
  4265. "Descriptor": {
  4266. "ConnectionType": 2,
  4267. "SlotType": 1
  4268. }
  4269. },
  4270. {
  4271. "id": {
  4272. "m_id": "{D72F2C2A-EEE5-40D6-AA44-3B686F36B01F}"
  4273. },
  4274. "contracts": [
  4275. {
  4276. "$type": "SlotTypeContract"
  4277. }
  4278. ],
  4279. "slotName": "OnDisconnected",
  4280. "toolTip": "Signaled when this event handler is disconnected.",
  4281. "Descriptor": {
  4282. "ConnectionType": 2,
  4283. "SlotType": 1
  4284. }
  4285. },
  4286. {
  4287. "id": {
  4288. "m_id": "{59674D83-E765-477D-B664-2C6C4CD7C678}"
  4289. },
  4290. "contracts": [
  4291. {
  4292. "$type": "SlotTypeContract"
  4293. }
  4294. ],
  4295. "slotName": "OnFailure",
  4296. "toolTip": "Signaled when it is not possible to connect this handler.",
  4297. "Descriptor": {
  4298. "ConnectionType": 2,
  4299. "SlotType": 1
  4300. }
  4301. },
  4302. {
  4303. "id": {
  4304. "m_id": "{CA3CE2AF-28FA-44D2-A71E-5C1A17A74AA7}"
  4305. },
  4306. "contracts": [
  4307. {
  4308. "$type": "SlotTypeContract"
  4309. }
  4310. ],
  4311. "slotName": "Number",
  4312. "DisplayDataType": {
  4313. "m_type": 3
  4314. },
  4315. "Descriptor": {
  4316. "ConnectionType": 2,
  4317. "SlotType": 2
  4318. },
  4319. "DataType": 1
  4320. },
  4321. {
  4322. "id": {
  4323. "m_id": "{FEC11180-6892-499A-84B2-6CFC33E89511}"
  4324. },
  4325. "contracts": [
  4326. {
  4327. "$type": "SlotTypeContract"
  4328. }
  4329. ],
  4330. "slotName": "ScriptTimePoint",
  4331. "DisplayDataType": {
  4332. "m_type": 4,
  4333. "m_azType": "{4C0F6AD4-0D4F-4354-AD4A-0C01E948245C}"
  4334. },
  4335. "Descriptor": {
  4336. "ConnectionType": 2,
  4337. "SlotType": 2
  4338. },
  4339. "DataType": 1
  4340. },
  4341. {
  4342. "id": {
  4343. "m_id": "{A3551E44-A96F-4D8F-96B1-B073F2B89AE6}"
  4344. },
  4345. "contracts": [
  4346. {
  4347. "$type": "SlotTypeContract"
  4348. }
  4349. ],
  4350. "slotName": "ExecutionSlot:OnTick",
  4351. "Descriptor": {
  4352. "ConnectionType": 2,
  4353. "SlotType": 1
  4354. },
  4355. "IsLatent": true
  4356. },
  4357. {
  4358. "id": {
  4359. "m_id": "{F0C575F2-EFE0-4B5E-994A-12151FF02866}"
  4360. },
  4361. "contracts": [
  4362. {
  4363. "$type": "SlotTypeContract"
  4364. }
  4365. ],
  4366. "slotName": "Number",
  4367. "Descriptor": {
  4368. "ConnectionType": 1,
  4369. "SlotType": 2
  4370. },
  4371. "DataType": 1
  4372. },
  4373. {
  4374. "id": {
  4375. "m_id": "{8ED888FD-E5A1-4DD3-A83E-847D644E50F1}"
  4376. },
  4377. "contracts": [
  4378. {
  4379. "$type": "SlotTypeContract"
  4380. }
  4381. ],
  4382. "slotName": "ExecutionSlot:GetTickOrder",
  4383. "Descriptor": {
  4384. "ConnectionType": 2,
  4385. "SlotType": 1
  4386. },
  4387. "IsLatent": true
  4388. }
  4389. ],
  4390. "Datums": [
  4391. {
  4392. "isOverloadedStorage": false,
  4393. "scriptCanvasType": {
  4394. "m_type": 3
  4395. },
  4396. "isNullPointer": false,
  4397. "$type": "double",
  4398. "value": 0.0,
  4399. "label": "Number"
  4400. }
  4401. ],
  4402. "m_eventMap": [
  4403. {
  4404. "Key": {
  4405. "Value": 1502188240
  4406. },
  4407. "Value": {
  4408. "m_eventName": "OnTick",
  4409. "m_eventId": {
  4410. "Value": 1502188240
  4411. },
  4412. "m_eventSlotId": {
  4413. "m_id": "{A3551E44-A96F-4D8F-96B1-B073F2B89AE6}"
  4414. },
  4415. "m_parameterSlotIds": [
  4416. {
  4417. "m_id": "{CA3CE2AF-28FA-44D2-A71E-5C1A17A74AA7}"
  4418. },
  4419. {
  4420. "m_id": "{FEC11180-6892-499A-84B2-6CFC33E89511}"
  4421. }
  4422. ],
  4423. "m_numExpectedArguments": 2
  4424. }
  4425. },
  4426. {
  4427. "Key": {
  4428. "Value": 1890826333
  4429. },
  4430. "Value": {
  4431. "m_eventName": "GetTickOrder",
  4432. "m_eventId": {
  4433. "Value": 1890826333
  4434. },
  4435. "m_eventSlotId": {
  4436. "m_id": "{8ED888FD-E5A1-4DD3-A83E-847D644E50F1}"
  4437. },
  4438. "m_resultSlotId": {
  4439. "m_id": "{F0C575F2-EFE0-4B5E-994A-12151FF02866}"
  4440. }
  4441. }
  4442. }
  4443. ],
  4444. "m_ebusName": "TickBus",
  4445. "m_busId": {
  4446. "Value": 1209186864
  4447. },
  4448. "m_autoConnectToGraphOwner": false
  4449. }
  4450. }
  4451. },
  4452. {
  4453. "Id": {
  4454. "id": 205170027801186
  4455. },
  4456. "Name": "SC-Node(SetWorldTranslation)",
  4457. "Components": {
  4458. "Component_[16864275898609946010]": {
  4459. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  4460. "Id": 16864275898609946010,
  4461. "Slots": [
  4462. {
  4463. "id": {
  4464. "m_id": "{093A5ACA-A520-4FD5-B557-659CBE809B6B}"
  4465. },
  4466. "contracts": [
  4467. {
  4468. "$type": "SlotTypeContract"
  4469. }
  4470. ],
  4471. "slotName": "EntityId: 0",
  4472. "Descriptor": {
  4473. "ConnectionType": 1,
  4474. "SlotType": 2
  4475. },
  4476. "DataType": 1
  4477. },
  4478. {
  4479. "id": {
  4480. "m_id": "{54D44074-9F72-4BE8-AD85-36BB8C61E752}"
  4481. },
  4482. "contracts": [
  4483. {
  4484. "$type": "SlotTypeContract"
  4485. }
  4486. ],
  4487. "slotName": "Vector3: 1",
  4488. "Descriptor": {
  4489. "ConnectionType": 1,
  4490. "SlotType": 2
  4491. },
  4492. "DataType": 1
  4493. },
  4494. {
  4495. "id": {
  4496. "m_id": "{3AA76B11-62F7-4B93-A885-A0DB2D955E3E}"
  4497. },
  4498. "contracts": [
  4499. {
  4500. "$type": "SlotTypeContract"
  4501. }
  4502. ],
  4503. "slotName": "In",
  4504. "Descriptor": {
  4505. "ConnectionType": 1,
  4506. "SlotType": 1
  4507. }
  4508. },
  4509. {
  4510. "id": {
  4511. "m_id": "{B7C33B57-5683-41AF-8036-A10A22AC410D}"
  4512. },
  4513. "contracts": [
  4514. {
  4515. "$type": "SlotTypeContract"
  4516. }
  4517. ],
  4518. "slotName": "Out",
  4519. "Descriptor": {
  4520. "ConnectionType": 2,
  4521. "SlotType": 1
  4522. }
  4523. }
  4524. ],
  4525. "Datums": [
  4526. {
  4527. "isOverloadedStorage": false,
  4528. "scriptCanvasType": {
  4529. "m_type": 1
  4530. },
  4531. "isNullPointer": false,
  4532. "$type": "EntityId",
  4533. "value": {
  4534. "id": 2901262558
  4535. },
  4536. "label": "Source"
  4537. },
  4538. {
  4539. "isOverloadedStorage": false,
  4540. "scriptCanvasType": {
  4541. "m_type": 8
  4542. },
  4543. "isNullPointer": false,
  4544. "$type": "Vector3",
  4545. "value": [
  4546. 0.0,
  4547. 0.0,
  4548. 0.0
  4549. ],
  4550. "label": "World Translation"
  4551. }
  4552. ],
  4553. "methodType": 0,
  4554. "methodName": "SetWorldTranslation",
  4555. "className": "TransformBus",
  4556. "resultSlotIDs": [
  4557. {}
  4558. ],
  4559. "inputSlots": [
  4560. {
  4561. "m_id": "{093A5ACA-A520-4FD5-B557-659CBE809B6B}"
  4562. },
  4563. {
  4564. "m_id": "{54D44074-9F72-4BE8-AD85-36BB8C61E752}"
  4565. }
  4566. ],
  4567. "prettyClassName": "TransformBus"
  4568. }
  4569. }
  4570. },
  4571. {
  4572. "Id": {
  4573. "id": 205212977474146
  4574. },
  4575. "Name": "SendScriptEvent",
  4576. "Components": {
  4577. "Component_[17625914398080251960]": {
  4578. "$type": "SendScriptEvent",
  4579. "Id": 17625914398080251960,
  4580. "Slots": [
  4581. {
  4582. "id": {
  4583. "m_id": "{F684B5F4-3DA7-466B-A7BC-8D80F8BB41A8}"
  4584. },
  4585. "contracts": [
  4586. {
  4587. "$type": "SlotTypeContract"
  4588. }
  4589. ],
  4590. "slotName": "In",
  4591. "toolTip": "Fires the specified ScriptEvent when signaled",
  4592. "Descriptor": {
  4593. "ConnectionType": 1,
  4594. "SlotType": 1
  4595. }
  4596. },
  4597. {
  4598. "id": {
  4599. "m_id": "{06F00A2E-D13B-4557-B30E-0421BBC54609}"
  4600. },
  4601. "contracts": [
  4602. {
  4603. "$type": "SlotTypeContract"
  4604. }
  4605. ],
  4606. "slotName": "Out",
  4607. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  4608. "Descriptor": {
  4609. "ConnectionType": 2,
  4610. "SlotType": 1
  4611. }
  4612. },
  4613. {
  4614. "id": {
  4615. "m_id": "{721BDB35-022C-4BFA-B3B7-988264900558}"
  4616. },
  4617. "contracts": [
  4618. {
  4619. "$type": "SlotTypeContract"
  4620. }
  4621. ],
  4622. "slotName": "Damage",
  4623. "toolTip": "Damage",
  4624. "Descriptor": {
  4625. "ConnectionType": 1,
  4626. "SlotType": 2
  4627. },
  4628. "DataType": 1
  4629. }
  4630. ],
  4631. "Datums": [
  4632. {
  4633. "isOverloadedStorage": false,
  4634. "scriptCanvasType": {
  4635. "m_type": 3
  4636. },
  4637. "isNullPointer": false,
  4638. "$type": "double",
  4639. "value": 1.0,
  4640. "label": "Damage"
  4641. }
  4642. ],
  4643. "m_version": 2,
  4644. "m_eventSlotMapping": {
  4645. "{4B342165-C064-43DF-8870-EF4A07E64911}": {
  4646. "m_id": "{721BDB35-022C-4BFA-B3B7-988264900558}"
  4647. }
  4648. },
  4649. "m_scriptEventAssetId": {
  4650. "guid": "{5F97B557-13D8-5B31-A051-6281EBD57E7D}"
  4651. },
  4652. "m_asset": {
  4653. "assetId": {
  4654. "guid": "{5F97B557-13D8-5B31-A051-6281EBD57E7D}"
  4655. },
  4656. "loadBehavior": "PreLoad",
  4657. "assetHint": "assets/scripts/hit_player.scriptevents"
  4658. },
  4659. "m_busId": {
  4660. "Value": 2082030698
  4661. },
  4662. "m_eventId": {
  4663. "Value": 758516007
  4664. }
  4665. }
  4666. }
  4667. },
  4668. {
  4669. "Id": {
  4670. "id": 205062653618786
  4671. },
  4672. "Name": "EBusEventHandler",
  4673. "Components": {
  4674. "Component_[2554315713272923673]": {
  4675. "$type": "EBusEventHandler",
  4676. "Id": 2554315713272923673,
  4677. "Slots": [
  4678. {
  4679. "id": {
  4680. "m_id": "{E76B1615-72A3-44F7-B4AB-5E9A182A064D}"
  4681. },
  4682. "contracts": [
  4683. {
  4684. "$type": "SlotTypeContract"
  4685. }
  4686. ],
  4687. "slotName": "Connect",
  4688. "toolTip": "Connect this event handler to the specified entity.",
  4689. "Descriptor": {
  4690. "ConnectionType": 1,
  4691. "SlotType": 1
  4692. }
  4693. },
  4694. {
  4695. "id": {
  4696. "m_id": "{362D17D5-81C9-4F10-85A8-B28129E8DE47}"
  4697. },
  4698. "contracts": [
  4699. {
  4700. "$type": "SlotTypeContract"
  4701. }
  4702. ],
  4703. "slotName": "Disconnect",
  4704. "toolTip": "Disconnect this event handler.",
  4705. "Descriptor": {
  4706. "ConnectionType": 1,
  4707. "SlotType": 1
  4708. }
  4709. },
  4710. {
  4711. "id": {
  4712. "m_id": "{60E684FA-D8CD-4E27-9879-0233293ECD6C}"
  4713. },
  4714. "contracts": [
  4715. {
  4716. "$type": "SlotTypeContract"
  4717. }
  4718. ],
  4719. "slotName": "OnConnected",
  4720. "toolTip": "Signaled when a connection has taken place.",
  4721. "Descriptor": {
  4722. "ConnectionType": 2,
  4723. "SlotType": 1
  4724. }
  4725. },
  4726. {
  4727. "id": {
  4728. "m_id": "{22B3515C-7D28-4827-AC1C-AF08F5AD04DB}"
  4729. },
  4730. "contracts": [
  4731. {
  4732. "$type": "SlotTypeContract"
  4733. }
  4734. ],
  4735. "slotName": "OnDisconnected",
  4736. "toolTip": "Signaled when this event handler is disconnected.",
  4737. "Descriptor": {
  4738. "ConnectionType": 2,
  4739. "SlotType": 1
  4740. }
  4741. },
  4742. {
  4743. "id": {
  4744. "m_id": "{90C9A5C9-A207-421B-874D-6C75C89BD4D5}"
  4745. },
  4746. "contracts": [
  4747. {
  4748. "$type": "SlotTypeContract"
  4749. }
  4750. ],
  4751. "slotName": "OnFailure",
  4752. "toolTip": "Signaled when it is not possible to connect this handler.",
  4753. "Descriptor": {
  4754. "ConnectionType": 2,
  4755. "SlotType": 1
  4756. }
  4757. },
  4758. {
  4759. "id": {
  4760. "m_id": "{38C5C140-B83B-4856-B8EF-009B7BA2F867}"
  4761. },
  4762. "contracts": [
  4763. {
  4764. "$type": "SlotTypeContract"
  4765. }
  4766. ],
  4767. "slotName": "Source",
  4768. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  4769. "Descriptor": {
  4770. "ConnectionType": 1,
  4771. "SlotType": 2
  4772. },
  4773. "DataType": 1
  4774. },
  4775. {
  4776. "id": {
  4777. "m_id": "{1F50BE14-9DF3-47C4-BB19-0E413355398D}"
  4778. },
  4779. "contracts": [
  4780. {
  4781. "$type": "SlotTypeContract"
  4782. }
  4783. ],
  4784. "slotName": "Invalid BehaviorContext::Class name",
  4785. "DisplayDataType": {
  4786. "m_type": 4,
  4787. "m_azType": "{2CC86AA2-AFC0-434B-A317-B102FD02E76D}"
  4788. },
  4789. "Descriptor": {
  4790. "ConnectionType": 2,
  4791. "SlotType": 2
  4792. },
  4793. "DataType": 1
  4794. },
  4795. {
  4796. "id": {
  4797. "m_id": "{27401DB0-B373-485B-B8FB-4505B933FE05}"
  4798. },
  4799. "contracts": [
  4800. {
  4801. "$type": "SlotTypeContract"
  4802. }
  4803. ],
  4804. "slotName": "ExecutionSlot:OnAnimGraphInstanceCreated",
  4805. "Descriptor": {
  4806. "ConnectionType": 2,
  4807. "SlotType": 1
  4808. },
  4809. "IsLatent": true
  4810. },
  4811. {
  4812. "id": {
  4813. "m_id": "{ABC50818-9985-4508-A98E-75E8E62D5465}"
  4814. },
  4815. "contracts": [
  4816. {
  4817. "$type": "SlotTypeContract"
  4818. }
  4819. ],
  4820. "slotName": "Invalid BehaviorContext::Class name",
  4821. "DisplayDataType": {
  4822. "m_type": 4,
  4823. "m_azType": "{2CC86AA2-AFC0-434B-A317-B102FD02E76D}"
  4824. },
  4825. "Descriptor": {
  4826. "ConnectionType": 2,
  4827. "SlotType": 2
  4828. },
  4829. "DataType": 1
  4830. },
  4831. {
  4832. "id": {
  4833. "m_id": "{77D07F0B-0B2D-4159-8066-18680E525226}"
  4834. },
  4835. "contracts": [
  4836. {
  4837. "$type": "SlotTypeContract"
  4838. }
  4839. ],
  4840. "slotName": "ExecutionSlot:OnAnimGraphInstanceDestroyed",
  4841. "Descriptor": {
  4842. "ConnectionType": 2,
  4843. "SlotType": 1
  4844. },
  4845. "IsLatent": true
  4846. },
  4847. {
  4848. "id": {
  4849. "m_id": "{DDD9CB81-914B-46C3-9A6D-09F9EDDFD2E6}"
  4850. },
  4851. "contracts": [
  4852. {
  4853. "$type": "SlotTypeContract"
  4854. }
  4855. ],
  4856. "slotName": "Invalid BehaviorContext::Class name",
  4857. "DisplayDataType": {
  4858. "m_type": 4,
  4859. "m_azType": "{2CC86AA2-AFC0-434B-A317-B102FD02E76D}"
  4860. },
  4861. "Descriptor": {
  4862. "ConnectionType": 2,
  4863. "SlotType": 2
  4864. },
  4865. "DataType": 1
  4866. },
  4867. {
  4868. "id": {
  4869. "m_id": "{491433A8-F253-46A1-B72F-4072E7B9B480}"
  4870. },
  4871. "contracts": [
  4872. {
  4873. "$type": "SlotTypeContract"
  4874. }
  4875. ],
  4876. "slotName": "Number",
  4877. "DisplayDataType": {
  4878. "m_type": 3
  4879. },
  4880. "Descriptor": {
  4881. "ConnectionType": 2,
  4882. "SlotType": 2
  4883. },
  4884. "DataType": 1
  4885. },
  4886. {
  4887. "id": {
  4888. "m_id": "{800CC9C5-C6ED-4CF0-8C3B-D399D3F841CC}"
  4889. },
  4890. "contracts": [
  4891. {
  4892. "$type": "SlotTypeContract"
  4893. }
  4894. ],
  4895. "slotName": "Number",
  4896. "DisplayDataType": {
  4897. "m_type": 3
  4898. },
  4899. "Descriptor": {
  4900. "ConnectionType": 2,
  4901. "SlotType": 2
  4902. },
  4903. "DataType": 1
  4904. },
  4905. {
  4906. "id": {
  4907. "m_id": "{7FB6A93A-7E72-4DC8-970F-4068B12F8A44}"
  4908. },
  4909. "contracts": [
  4910. {
  4911. "$type": "SlotTypeContract"
  4912. }
  4913. ],
  4914. "slotName": "Number",
  4915. "DisplayDataType": {
  4916. "m_type": 3
  4917. },
  4918. "Descriptor": {
  4919. "ConnectionType": 2,
  4920. "SlotType": 2
  4921. },
  4922. "DataType": 1
  4923. },
  4924. {
  4925. "id": {
  4926. "m_id": "{0FCBE81C-CBE9-49BD-9BB5-18C4C070A6C7}"
  4927. },
  4928. "contracts": [
  4929. {
  4930. "$type": "SlotTypeContract"
  4931. }
  4932. ],
  4933. "slotName": "ExecutionSlot:OnAnimGraphFloatParameterChanged",
  4934. "Descriptor": {
  4935. "ConnectionType": 2,
  4936. "SlotType": 1
  4937. },
  4938. "IsLatent": true
  4939. },
  4940. {
  4941. "id": {
  4942. "m_id": "{432466FE-6F9F-4F0D-8611-4ADC57EFADB8}"
  4943. },
  4944. "contracts": [
  4945. {
  4946. "$type": "SlotTypeContract"
  4947. }
  4948. ],
  4949. "slotName": "Invalid BehaviorContext::Class name",
  4950. "DisplayDataType": {
  4951. "m_type": 4,
  4952. "m_azType": "{2CC86AA2-AFC0-434B-A317-B102FD02E76D}"
  4953. },
  4954. "Descriptor": {
  4955. "ConnectionType": 2,
  4956. "SlotType": 2
  4957. },
  4958. "DataType": 1
  4959. },
  4960. {
  4961. "id": {
  4962. "m_id": "{93FD49CF-508D-491F-A57F-11EB3649CEF4}"
  4963. },
  4964. "contracts": [
  4965. {
  4966. "$type": "SlotTypeContract"
  4967. }
  4968. ],
  4969. "slotName": "Number",
  4970. "DisplayDataType": {
  4971. "m_type": 3
  4972. },
  4973. "Descriptor": {
  4974. "ConnectionType": 2,
  4975. "SlotType": 2
  4976. },
  4977. "DataType": 1
  4978. },
  4979. {
  4980. "id": {
  4981. "m_id": "{52C25943-0664-4B06-990A-D382E88A486F}"
  4982. },
  4983. "contracts": [
  4984. {
  4985. "$type": "SlotTypeContract"
  4986. }
  4987. ],
  4988. "slotName": "Boolean",
  4989. "DisplayDataType": {
  4990. "m_type": 0
  4991. },
  4992. "Descriptor": {
  4993. "ConnectionType": 2,
  4994. "SlotType": 2
  4995. },
  4996. "DataType": 1
  4997. },
  4998. {
  4999. "id": {
  5000. "m_id": "{DA93E250-DC99-41A5-B960-1EEC4F4FFEBE}"
  5001. },
  5002. "contracts": [
  5003. {
  5004. "$type": "SlotTypeContract"
  5005. }
  5006. ],
  5007. "slotName": "Boolean",
  5008. "DisplayDataType": {
  5009. "m_type": 0
  5010. },
  5011. "Descriptor": {
  5012. "ConnectionType": 2,
  5013. "SlotType": 2
  5014. },
  5015. "DataType": 1
  5016. },
  5017. {
  5018. "id": {
  5019. "m_id": "{37E861E8-4F46-496A-9AC6-D023504C3A88}"
  5020. },
  5021. "contracts": [
  5022. {
  5023. "$type": "SlotTypeContract"
  5024. }
  5025. ],
  5026. "slotName": "ExecutionSlot:OnAnimGraphBoolParameterChanged",
  5027. "Descriptor": {
  5028. "ConnectionType": 2,
  5029. "SlotType": 1
  5030. },
  5031. "IsLatent": true
  5032. },
  5033. {
  5034. "id": {
  5035. "m_id": "{9440523E-65F1-4E87-9808-0E5CA46E8D76}"
  5036. },
  5037. "contracts": [
  5038. {
  5039. "$type": "SlotTypeContract"
  5040. }
  5041. ],
  5042. "slotName": "Invalid BehaviorContext::Class name",
  5043. "DisplayDataType": {
  5044. "m_type": 4,
  5045. "m_azType": "{2CC86AA2-AFC0-434B-A317-B102FD02E76D}"
  5046. },
  5047. "Descriptor": {
  5048. "ConnectionType": 2,
  5049. "SlotType": 2
  5050. },
  5051. "DataType": 1
  5052. },
  5053. {
  5054. "id": {
  5055. "m_id": "{CC44A328-55B6-4051-9ED4-EC8A777424A5}"
  5056. },
  5057. "contracts": [
  5058. {
  5059. "$type": "SlotTypeContract"
  5060. }
  5061. ],
  5062. "slotName": "Number",
  5063. "DisplayDataType": {
  5064. "m_type": 3
  5065. },
  5066. "Descriptor": {
  5067. "ConnectionType": 2,
  5068. "SlotType": 2
  5069. },
  5070. "DataType": 1
  5071. },
  5072. {
  5073. "id": {
  5074. "m_id": "{46445C11-1638-477A-9632-8E83A444420D}"
  5075. },
  5076. "contracts": [
  5077. {
  5078. "$type": "SlotTypeContract"
  5079. }
  5080. ],
  5081. "slotName": "String",
  5082. "DisplayDataType": {
  5083. "m_type": 5
  5084. },
  5085. "Descriptor": {
  5086. "ConnectionType": 2,
  5087. "SlotType": 2
  5088. },
  5089. "DataType": 1
  5090. },
  5091. {
  5092. "id": {
  5093. "m_id": "{14CAE8FD-7235-4B6A-9471-E6215D21FF98}"
  5094. },
  5095. "contracts": [
  5096. {
  5097. "$type": "SlotTypeContract"
  5098. }
  5099. ],
  5100. "slotName": "String",
  5101. "DisplayDataType": {
  5102. "m_type": 5
  5103. },
  5104. "Descriptor": {
  5105. "ConnectionType": 2,
  5106. "SlotType": 2
  5107. },
  5108. "DataType": 1
  5109. },
  5110. {
  5111. "id": {
  5112. "m_id": "{FEDF1539-F901-473D-BFE2-B6E71E2ACE6A}"
  5113. },
  5114. "contracts": [
  5115. {
  5116. "$type": "SlotTypeContract"
  5117. }
  5118. ],
  5119. "slotName": "ExecutionSlot:OnAnimGraphStringParameterChanged",
  5120. "Descriptor": {
  5121. "ConnectionType": 2,
  5122. "SlotType": 1
  5123. },
  5124. "IsLatent": true
  5125. },
  5126. {
  5127. "id": {
  5128. "m_id": "{B8FB9B54-87E9-41DA-9FB3-5857467B2B3A}"
  5129. },
  5130. "contracts": [
  5131. {
  5132. "$type": "SlotTypeContract"
  5133. }
  5134. ],
  5135. "slotName": "Invalid BehaviorContext::Class name",
  5136. "DisplayDataType": {
  5137. "m_type": 4,
  5138. "m_azType": "{2CC86AA2-AFC0-434B-A317-B102FD02E76D}"
  5139. },
  5140. "Descriptor": {
  5141. "ConnectionType": 2,
  5142. "SlotType": 2
  5143. },
  5144. "DataType": 1
  5145. },
  5146. {
  5147. "id": {
  5148. "m_id": "{D13A49B3-368E-4B0F-944F-8FF5D982163B}"
  5149. },
  5150. "contracts": [
  5151. {
  5152. "$type": "SlotTypeContract"
  5153. }
  5154. ],
  5155. "slotName": "Number",
  5156. "DisplayDataType": {
  5157. "m_type": 3
  5158. },
  5159. "Descriptor": {
  5160. "ConnectionType": 2,
  5161. "SlotType": 2
  5162. },
  5163. "DataType": 1
  5164. },
  5165. {
  5166. "id": {
  5167. "m_id": "{21A7BABA-04F6-4819-9D82-C2D1AB0CE617}"
  5168. },
  5169. "contracts": [
  5170. {
  5171. "$type": "SlotTypeContract"
  5172. }
  5173. ],
  5174. "slotName": "Vector2",
  5175. "DisplayDataType": {
  5176. "m_type": 9
  5177. },
  5178. "Descriptor": {
  5179. "ConnectionType": 2,
  5180. "SlotType": 2
  5181. },
  5182. "DataType": 1
  5183. },
  5184. {
  5185. "id": {
  5186. "m_id": "{7FCDDCDA-DE4F-42BB-8DF4-C4C7906E1804}"
  5187. },
  5188. "contracts": [
  5189. {
  5190. "$type": "SlotTypeContract"
  5191. }
  5192. ],
  5193. "slotName": "Vector2",
  5194. "DisplayDataType": {
  5195. "m_type": 9
  5196. },
  5197. "Descriptor": {
  5198. "ConnectionType": 2,
  5199. "SlotType": 2
  5200. },
  5201. "DataType": 1
  5202. },
  5203. {
  5204. "id": {
  5205. "m_id": "{85E301BD-8CA0-4D6B-83E2-2B871D75BF48}"
  5206. },
  5207. "contracts": [
  5208. {
  5209. "$type": "SlotTypeContract"
  5210. }
  5211. ],
  5212. "slotName": "ExecutionSlot:OnAnimGraphVector2ParameterChanged",
  5213. "Descriptor": {
  5214. "ConnectionType": 2,
  5215. "SlotType": 1
  5216. },
  5217. "IsLatent": true
  5218. },
  5219. {
  5220. "id": {
  5221. "m_id": "{ECF09CEB-8F55-4D12-A721-912C4364CB44}"
  5222. },
  5223. "contracts": [
  5224. {
  5225. "$type": "SlotTypeContract"
  5226. }
  5227. ],
  5228. "slotName": "Invalid BehaviorContext::Class name",
  5229. "DisplayDataType": {
  5230. "m_type": 4,
  5231. "m_azType": "{2CC86AA2-AFC0-434B-A317-B102FD02E76D}"
  5232. },
  5233. "Descriptor": {
  5234. "ConnectionType": 2,
  5235. "SlotType": 2
  5236. },
  5237. "DataType": 1
  5238. },
  5239. {
  5240. "id": {
  5241. "m_id": "{E443870C-D23C-457C-BC3D-8A511470E2AF}"
  5242. },
  5243. "contracts": [
  5244. {
  5245. "$type": "SlotTypeContract"
  5246. }
  5247. ],
  5248. "slotName": "Number",
  5249. "DisplayDataType": {
  5250. "m_type": 3
  5251. },
  5252. "Descriptor": {
  5253. "ConnectionType": 2,
  5254. "SlotType": 2
  5255. },
  5256. "DataType": 1
  5257. },
  5258. {
  5259. "id": {
  5260. "m_id": "{2284F0FE-4B7A-4326-B832-77EAE2544127}"
  5261. },
  5262. "contracts": [
  5263. {
  5264. "$type": "SlotTypeContract"
  5265. }
  5266. ],
  5267. "slotName": "Vector3",
  5268. "DisplayDataType": {
  5269. "m_type": 8
  5270. },
  5271. "Descriptor": {
  5272. "ConnectionType": 2,
  5273. "SlotType": 2
  5274. },
  5275. "DataType": 1
  5276. },
  5277. {
  5278. "id": {
  5279. "m_id": "{983BEDB9-BF90-47A8-ACB6-C5900A067FE1}"
  5280. },
  5281. "contracts": [
  5282. {
  5283. "$type": "SlotTypeContract"
  5284. }
  5285. ],
  5286. "slotName": "Vector3",
  5287. "DisplayDataType": {
  5288. "m_type": 8
  5289. },
  5290. "Descriptor": {
  5291. "ConnectionType": 2,
  5292. "SlotType": 2
  5293. },
  5294. "DataType": 1
  5295. },
  5296. {
  5297. "id": {
  5298. "m_id": "{6B0BDA3B-F5A4-40B8-9538-D4A09901A8F2}"
  5299. },
  5300. "contracts": [
  5301. {
  5302. "$type": "SlotTypeContract"
  5303. }
  5304. ],
  5305. "slotName": "ExecutionSlot:OnAnimGraphVector3ParameterChanged",
  5306. "Descriptor": {
  5307. "ConnectionType": 2,
  5308. "SlotType": 1
  5309. },
  5310. "IsLatent": true
  5311. },
  5312. {
  5313. "id": {
  5314. "m_id": "{2EEF3759-5DE8-4C33-8CD0-F2EF8C3F0C81}"
  5315. },
  5316. "contracts": [
  5317. {
  5318. "$type": "SlotTypeContract"
  5319. }
  5320. ],
  5321. "slotName": "Invalid BehaviorContext::Class name",
  5322. "DisplayDataType": {
  5323. "m_type": 4,
  5324. "m_azType": "{2CC86AA2-AFC0-434B-A317-B102FD02E76D}"
  5325. },
  5326. "Descriptor": {
  5327. "ConnectionType": 2,
  5328. "SlotType": 2
  5329. },
  5330. "DataType": 1
  5331. },
  5332. {
  5333. "id": {
  5334. "m_id": "{8AE1A042-8CB7-4EA8-92E7-5C8CBF77A241}"
  5335. },
  5336. "contracts": [
  5337. {
  5338. "$type": "SlotTypeContract"
  5339. }
  5340. ],
  5341. "slotName": "Number",
  5342. "DisplayDataType": {
  5343. "m_type": 3
  5344. },
  5345. "Descriptor": {
  5346. "ConnectionType": 2,
  5347. "SlotType": 2
  5348. },
  5349. "DataType": 1
  5350. },
  5351. {
  5352. "id": {
  5353. "m_id": "{1870CF2F-223F-4BCC-B84A-95720BD0DFB6}"
  5354. },
  5355. "contracts": [
  5356. {
  5357. "$type": "SlotTypeContract"
  5358. }
  5359. ],
  5360. "slotName": "Quaternion",
  5361. "DisplayDataType": {
  5362. "m_type": 6
  5363. },
  5364. "Descriptor": {
  5365. "ConnectionType": 2,
  5366. "SlotType": 2
  5367. },
  5368. "DataType": 1
  5369. },
  5370. {
  5371. "id": {
  5372. "m_id": "{A78FDC4C-08D6-4471-B251-E9657BFAB3CA}"
  5373. },
  5374. "contracts": [
  5375. {
  5376. "$type": "SlotTypeContract"
  5377. }
  5378. ],
  5379. "slotName": "Quaternion",
  5380. "DisplayDataType": {
  5381. "m_type": 6
  5382. },
  5383. "Descriptor": {
  5384. "ConnectionType": 2,
  5385. "SlotType": 2
  5386. },
  5387. "DataType": 1
  5388. },
  5389. {
  5390. "id": {
  5391. "m_id": "{919AC1F1-8477-4AFB-AA3D-01C2B77ECABA}"
  5392. },
  5393. "contracts": [
  5394. {
  5395. "$type": "SlotTypeContract"
  5396. }
  5397. ],
  5398. "slotName": "ExecutionSlot:OnAnimGraphRotationParameterChanged",
  5399. "Descriptor": {
  5400. "ConnectionType": 2,
  5401. "SlotType": 1
  5402. },
  5403. "IsLatent": true
  5404. }
  5405. ],
  5406. "Datums": [
  5407. {
  5408. "isOverloadedStorage": false,
  5409. "scriptCanvasType": {
  5410. "m_type": 1
  5411. },
  5412. "isNullPointer": false,
  5413. "$type": "EntityId",
  5414. "value": {
  5415. "id": 2901262558
  5416. },
  5417. "label": "Source"
  5418. }
  5419. ],
  5420. "m_eventMap": [
  5421. {
  5422. "Key": {
  5423. "Value": 703749646
  5424. },
  5425. "Value": {
  5426. "m_eventName": "OnAnimGraphStringParameterChanged",
  5427. "m_eventId": {
  5428. "Value": 703749646
  5429. },
  5430. "m_eventSlotId": {
  5431. "m_id": "{FEDF1539-F901-473D-BFE2-B6E71E2ACE6A}"
  5432. },
  5433. "m_parameterSlotIds": [
  5434. {
  5435. "m_id": "{9440523E-65F1-4E87-9808-0E5CA46E8D76}"
  5436. },
  5437. {
  5438. "m_id": "{CC44A328-55B6-4051-9ED4-EC8A777424A5}"
  5439. },
  5440. {
  5441. "m_id": "{46445C11-1638-477A-9632-8E83A444420D}"
  5442. },
  5443. {
  5444. "m_id": "{14CAE8FD-7235-4B6A-9471-E6215D21FF98}"
  5445. }
  5446. ],
  5447. "m_numExpectedArguments": 4
  5448. }
  5449. },
  5450. {
  5451. "Key": {
  5452. "Value": 1328288867
  5453. },
  5454. "Value": {
  5455. "m_eventName": "OnAnimGraphVector3ParameterChanged",
  5456. "m_eventId": {
  5457. "Value": 1328288867
  5458. },
  5459. "m_eventSlotId": {
  5460. "m_id": "{6B0BDA3B-F5A4-40B8-9538-D4A09901A8F2}"
  5461. },
  5462. "m_parameterSlotIds": [
  5463. {
  5464. "m_id": "{ECF09CEB-8F55-4D12-A721-912C4364CB44}"
  5465. },
  5466. {
  5467. "m_id": "{E443870C-D23C-457C-BC3D-8A511470E2AF}"
  5468. },
  5469. {
  5470. "m_id": "{2284F0FE-4B7A-4326-B832-77EAE2544127}"
  5471. },
  5472. {
  5473. "m_id": "{983BEDB9-BF90-47A8-ACB6-C5900A067FE1}"
  5474. }
  5475. ],
  5476. "m_numExpectedArguments": 4
  5477. }
  5478. },
  5479. {
  5480. "Key": {
  5481. "Value": 1391623175
  5482. },
  5483. "Value": {
  5484. "m_eventName": "OnAnimGraphInstanceDestroyed",
  5485. "m_eventId": {
  5486. "Value": 1391623175
  5487. },
  5488. "m_eventSlotId": {
  5489. "m_id": "{77D07F0B-0B2D-4159-8066-18680E525226}"
  5490. },
  5491. "m_parameterSlotIds": [
  5492. {
  5493. "m_id": "{ABC50818-9985-4508-A98E-75E8E62D5465}"
  5494. }
  5495. ],
  5496. "m_numExpectedArguments": 1
  5497. }
  5498. },
  5499. {
  5500. "Key": {
  5501. "Value": 1701524722
  5502. },
  5503. "Value": {
  5504. "m_eventName": "OnAnimGraphBoolParameterChanged",
  5505. "m_eventId": {
  5506. "Value": 1701524722
  5507. },
  5508. "m_eventSlotId": {
  5509. "m_id": "{37E861E8-4F46-496A-9AC6-D023504C3A88}"
  5510. },
  5511. "m_parameterSlotIds": [
  5512. {
  5513. "m_id": "{432466FE-6F9F-4F0D-8611-4ADC57EFADB8}"
  5514. },
  5515. {
  5516. "m_id": "{93FD49CF-508D-491F-A57F-11EB3649CEF4}"
  5517. },
  5518. {
  5519. "m_id": "{52C25943-0664-4B06-990A-D382E88A486F}"
  5520. },
  5521. {
  5522. "m_id": "{DA93E250-DC99-41A5-B960-1EEC4F4FFEBE}"
  5523. }
  5524. ],
  5525. "m_numExpectedArguments": 4
  5526. }
  5527. },
  5528. {
  5529. "Key": {
  5530. "Value": 1923500160
  5531. },
  5532. "Value": {
  5533. "m_eventName": "OnAnimGraphFloatParameterChanged",
  5534. "m_eventId": {
  5535. "Value": 1923500160
  5536. },
  5537. "m_eventSlotId": {
  5538. "m_id": "{0FCBE81C-CBE9-49BD-9BB5-18C4C070A6C7}"
  5539. },
  5540. "m_parameterSlotIds": [
  5541. {
  5542. "m_id": "{DDD9CB81-914B-46C3-9A6D-09F9EDDFD2E6}"
  5543. },
  5544. {
  5545. "m_id": "{491433A8-F253-46A1-B72F-4072E7B9B480}"
  5546. },
  5547. {
  5548. "m_id": "{800CC9C5-C6ED-4CF0-8C3B-D399D3F841CC}"
  5549. },
  5550. {
  5551. "m_id": "{7FB6A93A-7E72-4DC8-970F-4068B12F8A44}"
  5552. }
  5553. ],
  5554. "m_numExpectedArguments": 4
  5555. }
  5556. },
  5557. {
  5558. "Key": {
  5559. "Value": 2316710472
  5560. },
  5561. "Value": {
  5562. "m_eventName": "OnAnimGraphInstanceCreated",
  5563. "m_eventId": {
  5564. "Value": 2316710472
  5565. },
  5566. "m_eventSlotId": {
  5567. "m_id": "{27401DB0-B373-485B-B8FB-4505B933FE05}"
  5568. },
  5569. "m_parameterSlotIds": [
  5570. {
  5571. "m_id": "{1F50BE14-9DF3-47C4-BB19-0E413355398D}"
  5572. }
  5573. ],
  5574. "m_numExpectedArguments": 1
  5575. }
  5576. },
  5577. {
  5578. "Key": {
  5579. "Value": 3364544288
  5580. },
  5581. "Value": {
  5582. "m_eventName": "OnAnimGraphVector2ParameterChanged",
  5583. "m_eventId": {
  5584. "Value": 3364544288
  5585. },
  5586. "m_eventSlotId": {
  5587. "m_id": "{85E301BD-8CA0-4D6B-83E2-2B871D75BF48}"
  5588. },
  5589. "m_parameterSlotIds": [
  5590. {
  5591. "m_id": "{B8FB9B54-87E9-41DA-9FB3-5857467B2B3A}"
  5592. },
  5593. {
  5594. "m_id": "{D13A49B3-368E-4B0F-944F-8FF5D982163B}"
  5595. },
  5596. {
  5597. "m_id": "{21A7BABA-04F6-4819-9D82-C2D1AB0CE617}"
  5598. },
  5599. {
  5600. "m_id": "{7FCDDCDA-DE4F-42BB-8DF4-C4C7906E1804}"
  5601. }
  5602. ],
  5603. "m_numExpectedArguments": 4
  5604. }
  5605. },
  5606. {
  5607. "Key": {
  5608. "Value": 4078192285
  5609. },
  5610. "Value": {
  5611. "m_eventName": "OnAnimGraphRotationParameterChanged",
  5612. "m_eventId": {
  5613. "Value": 4078192285
  5614. },
  5615. "m_eventSlotId": {
  5616. "m_id": "{919AC1F1-8477-4AFB-AA3D-01C2B77ECABA}"
  5617. },
  5618. "m_parameterSlotIds": [
  5619. {
  5620. "m_id": "{2EEF3759-5DE8-4C33-8CD0-F2EF8C3F0C81}"
  5621. },
  5622. {
  5623. "m_id": "{8AE1A042-8CB7-4EA8-92E7-5C8CBF77A241}"
  5624. },
  5625. {
  5626. "m_id": "{1870CF2F-223F-4BCC-B84A-95720BD0DFB6}"
  5627. },
  5628. {
  5629. "m_id": "{A78FDC4C-08D6-4471-B251-E9657BFAB3CA}"
  5630. }
  5631. ],
  5632. "m_numExpectedArguments": 4
  5633. }
  5634. }
  5635. ],
  5636. "m_ebusName": "AnimGraphComponentNotificationBus",
  5637. "m_busId": {
  5638. "Value": 1145433572
  5639. },
  5640. "m_autoConnectToGraphOwner": false
  5641. }
  5642. }
  5643. },
  5644. {
  5645. "Id": {
  5646. "id": 205088423422562
  5647. },
  5648. "Name": "ReceiveScriptEvent",
  5649. "Components": {
  5650. "Component_[2798670033784069617]": {
  5651. "$type": "ReceiveScriptEvent",
  5652. "Id": 2798670033784069617,
  5653. "Slots": [
  5654. {
  5655. "id": {
  5656. "m_id": "{BA5932AC-727D-48FC-9401-D456442EA6D0}"
  5657. },
  5658. "contracts": [
  5659. {
  5660. "$type": "SlotTypeContract"
  5661. }
  5662. ],
  5663. "slotName": "Connect",
  5664. "toolTip": "Connect this event handler to the specified entity.",
  5665. "Descriptor": {
  5666. "ConnectionType": 1,
  5667. "SlotType": 1
  5668. }
  5669. },
  5670. {
  5671. "id": {
  5672. "m_id": "{1F89084C-D86C-4D3D-BD76-D0688DF8130F}"
  5673. },
  5674. "contracts": [
  5675. {
  5676. "$type": "SlotTypeContract"
  5677. }
  5678. ],
  5679. "slotName": "Disconnect",
  5680. "toolTip": "Disconnect this event handler.",
  5681. "Descriptor": {
  5682. "ConnectionType": 1,
  5683. "SlotType": 1
  5684. }
  5685. },
  5686. {
  5687. "id": {
  5688. "m_id": "{F4A3623B-2CE1-4A30-AD73-D2AB32180A49}"
  5689. },
  5690. "contracts": [
  5691. {
  5692. "$type": "SlotTypeContract"
  5693. }
  5694. ],
  5695. "slotName": "OnConnected",
  5696. "toolTip": "Signaled when a connection has taken place.",
  5697. "Descriptor": {
  5698. "ConnectionType": 2,
  5699. "SlotType": 1
  5700. }
  5701. },
  5702. {
  5703. "id": {
  5704. "m_id": "{E67ACBC7-17C5-4A09-841C-79C47C4BF434}"
  5705. },
  5706. "contracts": [
  5707. {
  5708. "$type": "SlotTypeContract"
  5709. }
  5710. ],
  5711. "slotName": "OnDisconnected",
  5712. "toolTip": "Signaled when this event handler is disconnected.",
  5713. "Descriptor": {
  5714. "ConnectionType": 2,
  5715. "SlotType": 1
  5716. }
  5717. },
  5718. {
  5719. "id": {
  5720. "m_id": "{EFE36322-59AE-488C-AE5B-56364D348DEF}"
  5721. },
  5722. "contracts": [
  5723. {
  5724. "$type": "SlotTypeContract"
  5725. }
  5726. ],
  5727. "slotName": "OnFailure",
  5728. "toolTip": "Signaled when it is not possible to connect this handler.",
  5729. "Descriptor": {
  5730. "ConnectionType": 2,
  5731. "SlotType": 1
  5732. }
  5733. },
  5734. {
  5735. "id": {
  5736. "m_id": "{0A581612-BC39-429E-A014-926A390365BD}"
  5737. },
  5738. "contracts": [
  5739. {
  5740. "$type": "SlotTypeContract"
  5741. }
  5742. ],
  5743. "slotName": "ExecutionSlot:PlayerSelfDestuct",
  5744. "Descriptor": {
  5745. "ConnectionType": 2,
  5746. "SlotType": 1
  5747. },
  5748. "IsLatent": true
  5749. }
  5750. ],
  5751. "m_version": 1,
  5752. "m_eventMap": [
  5753. {
  5754. "Key": {
  5755. "Value": 555733431
  5756. },
  5757. "Value": {
  5758. "m_scriptEventAssetId": {
  5759. "guid": "{CEB347CD-1273-5E10-86E6-ACC7871A746A}"
  5760. },
  5761. "m_eventName": "PlayerSelfDestuct",
  5762. "m_eventSlotId": {
  5763. "m_id": "{0A581612-BC39-429E-A014-926A390365BD}"
  5764. }
  5765. }
  5766. }
  5767. ],
  5768. "m_eventSlotMapping": {
  5769. "{5111CFAF-782F-4BEA-BAFA-20905531679E}": {
  5770. "m_id": "{0A581612-BC39-429E-A014-926A390365BD}"
  5771. }
  5772. },
  5773. "m_scriptEventAssetId": {
  5774. "guid": "{CEB347CD-1273-5E10-86E6-ACC7871A746A}"
  5775. },
  5776. "m_asset": {
  5777. "assetId": {
  5778. "guid": "{CEB347CD-1273-5E10-86E6-ACC7871A746A}"
  5779. },
  5780. "loadBehavior": "PreLoad",
  5781. "assetHint": "assets/scripts/player_self_destuct.scriptevents"
  5782. },
  5783. "m_autoConnectToGraphOwner": false
  5784. }
  5785. }
  5786. },
  5787. {
  5788. "Id": {
  5789. "id": 205105603291746
  5790. },
  5791. "Name": "SC-Node(Print)",
  5792. "Components": {
  5793. "Component_[3088701214836310617]": {
  5794. "$type": "Print",
  5795. "Id": 3088701214836310617,
  5796. "Slots": [
  5797. {
  5798. "id": {
  5799. "m_id": "{4EB6E90B-D0AF-4327-AA82-E6BBFF304A8C}"
  5800. },
  5801. "contracts": [
  5802. {
  5803. "$type": "SlotTypeContract"
  5804. }
  5805. ],
  5806. "slotName": "In",
  5807. "toolTip": "Input signal",
  5808. "Descriptor": {
  5809. "ConnectionType": 1,
  5810. "SlotType": 1
  5811. }
  5812. },
  5813. {
  5814. "id": {
  5815. "m_id": "{B31A59BC-32F5-43C6-BCBD-8933C8521826}"
  5816. },
  5817. "contracts": [
  5818. {
  5819. "$type": "SlotTypeContract"
  5820. }
  5821. ],
  5822. "slotName": "Out",
  5823. "Descriptor": {
  5824. "ConnectionType": 2,
  5825. "SlotType": 1
  5826. }
  5827. }
  5828. ],
  5829. "m_format": "I am hit",
  5830. "m_unresolvedString": [
  5831. "I am hit"
  5832. ]
  5833. }
  5834. }
  5835. },
  5836. {
  5837. "Id": {
  5838. "id": 205135668062818
  5839. },
  5840. "Name": "SC Node(GetVariable)",
  5841. "Components": {
  5842. "Component_[3495401825643620073]": {
  5843. "$type": "GetVariableNode",
  5844. "Id": 3495401825643620073,
  5845. "Slots": [
  5846. {
  5847. "id": {
  5848. "m_id": "{943402EC-B15F-4C50-A03D-83C178F2CD74}"
  5849. },
  5850. "contracts": [
  5851. {
  5852. "$type": "SlotTypeContract"
  5853. }
  5854. ],
  5855. "slotName": "In",
  5856. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  5857. "Descriptor": {
  5858. "ConnectionType": 1,
  5859. "SlotType": 1
  5860. }
  5861. },
  5862. {
  5863. "id": {
  5864. "m_id": "{09773181-4A9B-4DB0-B992-671B13B771D7}"
  5865. },
  5866. "contracts": [
  5867. {
  5868. "$type": "SlotTypeContract"
  5869. }
  5870. ],
  5871. "slotName": "Out",
  5872. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  5873. "Descriptor": {
  5874. "ConnectionType": 2,
  5875. "SlotType": 1
  5876. }
  5877. },
  5878. {
  5879. "id": {
  5880. "m_id": "{ACA47E6F-C9D5-4FC4-9146-D4C74DB0A490}"
  5881. },
  5882. "contracts": [
  5883. {
  5884. "$type": "SlotTypeContract"
  5885. }
  5886. ],
  5887. "slotName": "Number",
  5888. "DisplayDataType": {
  5889. "m_type": 3
  5890. },
  5891. "Descriptor": {
  5892. "ConnectionType": 2,
  5893. "SlotType": 2
  5894. },
  5895. "DataType": 1
  5896. }
  5897. ],
  5898. "m_variableId": {
  5899. "m_id": "{58BE141D-C5D3-4B30-991F-7F78E6795F5F}"
  5900. },
  5901. "m_variableDataOutSlotId": {
  5902. "m_id": "{ACA47E6F-C9D5-4FC4-9146-D4C74DB0A490}"
  5903. }
  5904. }
  5905. }
  5906. },
  5907. {
  5908. "Id": {
  5909. "id": 205161437866594
  5910. },
  5911. "Name": "SC-Node(SetNamedParameterBool)",
  5912. "Components": {
  5913. "Component_[377424995687642237]": {
  5914. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  5915. "Id": 377424995687642237,
  5916. "Slots": [
  5917. {
  5918. "id": {
  5919. "m_id": "{E8B27A30-13AB-4C81-8970-9606345AD807}"
  5920. },
  5921. "contracts": [
  5922. {
  5923. "$type": "SlotTypeContract"
  5924. }
  5925. ],
  5926. "slotName": "EntityId: 0",
  5927. "Descriptor": {
  5928. "ConnectionType": 1,
  5929. "SlotType": 2
  5930. },
  5931. "DataType": 1
  5932. },
  5933. {
  5934. "id": {
  5935. "m_id": "{E9B243EA-77E9-48A7-AF5E-4C5920B392FC}"
  5936. },
  5937. "contracts": [
  5938. {
  5939. "$type": "SlotTypeContract"
  5940. }
  5941. ],
  5942. "slotName": "String: 1",
  5943. "Descriptor": {
  5944. "ConnectionType": 1,
  5945. "SlotType": 2
  5946. },
  5947. "DataType": 1
  5948. },
  5949. {
  5950. "id": {
  5951. "m_id": "{38550458-6048-4A4C-B641-32401B99E870}"
  5952. },
  5953. "contracts": [
  5954. {
  5955. "$type": "SlotTypeContract"
  5956. }
  5957. ],
  5958. "slotName": "Boolean: 2",
  5959. "Descriptor": {
  5960. "ConnectionType": 1,
  5961. "SlotType": 2
  5962. },
  5963. "DataType": 1
  5964. },
  5965. {
  5966. "id": {
  5967. "m_id": "{2B4B9BFE-18FA-4780-A79F-57497B5F160C}"
  5968. },
  5969. "contracts": [
  5970. {
  5971. "$type": "SlotTypeContract"
  5972. }
  5973. ],
  5974. "slotName": "In",
  5975. "Descriptor": {
  5976. "ConnectionType": 1,
  5977. "SlotType": 1
  5978. }
  5979. },
  5980. {
  5981. "id": {
  5982. "m_id": "{A4B0A135-A7E6-4BE6-99F3-F10FD4AAD7C1}"
  5983. },
  5984. "contracts": [
  5985. {
  5986. "$type": "SlotTypeContract"
  5987. }
  5988. ],
  5989. "slotName": "Out",
  5990. "Descriptor": {
  5991. "ConnectionType": 2,
  5992. "SlotType": 1
  5993. }
  5994. }
  5995. ],
  5996. "Datums": [
  5997. {
  5998. "isOverloadedStorage": false,
  5999. "scriptCanvasType": {
  6000. "m_type": 1
  6001. },
  6002. "isNullPointer": false,
  6003. "$type": "EntityId",
  6004. "value": {
  6005. "id": 2901262558
  6006. },
  6007. "label": "Source"
  6008. },
  6009. {
  6010. "isOverloadedStorage": false,
  6011. "scriptCanvasType": {
  6012. "m_type": 5
  6013. },
  6014. "isNullPointer": false,
  6015. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  6016. "value": "",
  6017. "label": "Name"
  6018. },
  6019. {
  6020. "isOverloadedStorage": false,
  6021. "scriptCanvasType": {
  6022. "m_type": 0
  6023. },
  6024. "isNullPointer": false,
  6025. "$type": "bool",
  6026. "value": true,
  6027. "label": "Value"
  6028. }
  6029. ],
  6030. "methodType": 0,
  6031. "methodName": "SetNamedParameterBool",
  6032. "className": "AnimGraphComponentRequestBus",
  6033. "resultSlotIDs": [
  6034. {}
  6035. ],
  6036. "inputSlots": [
  6037. {
  6038. "m_id": "{E8B27A30-13AB-4C81-8970-9606345AD807}"
  6039. },
  6040. {
  6041. "m_id": "{E9B243EA-77E9-48A7-AF5E-4C5920B392FC}"
  6042. },
  6043. {
  6044. "m_id": "{38550458-6048-4A4C-B641-32401B99E870}"
  6045. }
  6046. ],
  6047. "prettyClassName": "AnimGraphComponentRequestBus"
  6048. }
  6049. }
  6050. },
  6051. {
  6052. "Id": {
  6053. "id": 205204387539554
  6054. },
  6055. "Name": "SC-Node(ScriptCanvas_Vector3Functions_FromValues)",
  6056. "Components": {
  6057. "Component_[4103434210175670193]": {
  6058. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  6059. "Id": 4103434210175670193,
  6060. "Slots": [
  6061. {
  6062. "id": {
  6063. "m_id": "{F59958B8-DE63-42E4-A0B5-4F520AFF0184}"
  6064. },
  6065. "contracts": [
  6066. {
  6067. "$type": "SlotTypeContract"
  6068. }
  6069. ],
  6070. "slotName": "X",
  6071. "Descriptor": {
  6072. "ConnectionType": 1,
  6073. "SlotType": 2
  6074. },
  6075. "DataType": 1
  6076. },
  6077. {
  6078. "id": {
  6079. "m_id": "{C4C55CBC-FE2E-4439-8A0A-A41CBD20D762}"
  6080. },
  6081. "contracts": [
  6082. {
  6083. "$type": "SlotTypeContract"
  6084. }
  6085. ],
  6086. "slotName": "Y",
  6087. "Descriptor": {
  6088. "ConnectionType": 1,
  6089. "SlotType": 2
  6090. },
  6091. "DataType": 1
  6092. },
  6093. {
  6094. "id": {
  6095. "m_id": "{A37DC425-EC7A-4E5B-A0A1-2BBD2614430B}"
  6096. },
  6097. "contracts": [
  6098. {
  6099. "$type": "SlotTypeContract"
  6100. }
  6101. ],
  6102. "slotName": "Z",
  6103. "Descriptor": {
  6104. "ConnectionType": 1,
  6105. "SlotType": 2
  6106. },
  6107. "DataType": 1
  6108. },
  6109. {
  6110. "id": {
  6111. "m_id": "{CEB10C54-F786-43F4-90F3-ADE94C778099}"
  6112. },
  6113. "contracts": [
  6114. {
  6115. "$type": "SlotTypeContract"
  6116. }
  6117. ],
  6118. "slotName": "In",
  6119. "Descriptor": {
  6120. "ConnectionType": 1,
  6121. "SlotType": 1
  6122. }
  6123. },
  6124. {
  6125. "id": {
  6126. "m_id": "{93D78606-1E9E-4D48-A86F-E576B0D1FB16}"
  6127. },
  6128. "contracts": [
  6129. {
  6130. "$type": "SlotTypeContract"
  6131. }
  6132. ],
  6133. "slotName": "Out",
  6134. "Descriptor": {
  6135. "ConnectionType": 2,
  6136. "SlotType": 1
  6137. }
  6138. },
  6139. {
  6140. "id": {
  6141. "m_id": "{475F7C72-5859-4D7A-A19C-11B273242D39}"
  6142. },
  6143. "contracts": [
  6144. {
  6145. "$type": "SlotTypeContract"
  6146. }
  6147. ],
  6148. "slotName": "Vector3",
  6149. "DisplayDataType": {
  6150. "m_type": 8
  6151. },
  6152. "Descriptor": {
  6153. "ConnectionType": 2,
  6154. "SlotType": 2
  6155. },
  6156. "DataType": 1
  6157. }
  6158. ],
  6159. "Datums": [
  6160. {
  6161. "isOverloadedStorage": false,
  6162. "scriptCanvasType": {
  6163. "m_type": 3
  6164. },
  6165. "isNullPointer": false,
  6166. "$type": "double",
  6167. "value": 0.0,
  6168. "label": "X"
  6169. },
  6170. {
  6171. "isOverloadedStorage": false,
  6172. "scriptCanvasType": {
  6173. "m_type": 3
  6174. },
  6175. "isNullPointer": false,
  6176. "$type": "double",
  6177. "value": 0.0,
  6178. "label": "Y"
  6179. },
  6180. {
  6181. "isOverloadedStorage": false,
  6182. "scriptCanvasType": {
  6183. "m_type": 3
  6184. },
  6185. "isNullPointer": false,
  6186. "$type": "double",
  6187. "value": 0.0,
  6188. "label": "Z"
  6189. }
  6190. ],
  6191. "methodType": 1,
  6192. "methodName": "ScriptCanvas_Vector3Functions_FromValues",
  6193. "resultSlotIDs": [
  6194. {}
  6195. ],
  6196. "inputSlots": [
  6197. {
  6198. "m_id": "{F59958B8-DE63-42E4-A0B5-4F520AFF0184}"
  6199. },
  6200. {
  6201. "m_id": "{C4C55CBC-FE2E-4439-8A0A-A41CBD20D762}"
  6202. },
  6203. {
  6204. "m_id": "{A37DC425-EC7A-4E5B-A0A1-2BBD2614430B}"
  6205. }
  6206. ],
  6207. "prettyClassName": "ScriptCanvas_Vector3Functions_FromValues"
  6208. }
  6209. }
  6210. },
  6211. {
  6212. "Id": {
  6213. "id": 205247337212514
  6214. },
  6215. "Name": "SC-Node(GetWorldTranslation)",
  6216. "Components": {
  6217. "Component_[5173898941176896604]": {
  6218. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  6219. "Id": 5173898941176896604,
  6220. "Slots": [
  6221. {
  6222. "id": {
  6223. "m_id": "{AAD3FC96-D2ED-4B30-A549-E7E51216B10A}"
  6224. },
  6225. "contracts": [
  6226. {
  6227. "$type": "SlotTypeContract"
  6228. }
  6229. ],
  6230. "slotName": "EntityId",
  6231. "Descriptor": {
  6232. "ConnectionType": 1,
  6233. "SlotType": 2
  6234. },
  6235. "DataType": 1,
  6236. "IsReference": true,
  6237. "VariableReference": {
  6238. "m_id": "{32C8E951-DCFC-49AF-AF3F-C587EBB1D4D8}"
  6239. }
  6240. },
  6241. {
  6242. "id": {
  6243. "m_id": "{8B75FD2F-8C48-4A2A-99E9-530EB3097725}"
  6244. },
  6245. "contracts": [
  6246. {
  6247. "$type": "SlotTypeContract"
  6248. }
  6249. ],
  6250. "slotName": "In",
  6251. "Descriptor": {
  6252. "ConnectionType": 1,
  6253. "SlotType": 1
  6254. }
  6255. },
  6256. {
  6257. "id": {
  6258. "m_id": "{D41B17D0-299A-4B55-AED4-0B1DC307DAC2}"
  6259. },
  6260. "contracts": [
  6261. {
  6262. "$type": "SlotTypeContract"
  6263. }
  6264. ],
  6265. "slotName": "Out",
  6266. "Descriptor": {
  6267. "ConnectionType": 2,
  6268. "SlotType": 1
  6269. }
  6270. },
  6271. {
  6272. "id": {
  6273. "m_id": "{30113703-568B-4BF9-8E1C-C1F9B4CD5BBD}"
  6274. },
  6275. "contracts": [
  6276. {
  6277. "$type": "SlotTypeContract"
  6278. }
  6279. ],
  6280. "slotName": "Vector3",
  6281. "DisplayDataType": {
  6282. "m_type": 8
  6283. },
  6284. "Descriptor": {
  6285. "ConnectionType": 2,
  6286. "SlotType": 2
  6287. },
  6288. "DataType": 1
  6289. }
  6290. ],
  6291. "Datums": [
  6292. {
  6293. "isOverloadedStorage": false,
  6294. "scriptCanvasType": {
  6295. "m_type": 1
  6296. },
  6297. "isNullPointer": false,
  6298. "$type": "EntityId",
  6299. "value": {
  6300. "id": 2901262558
  6301. },
  6302. "label": "EntityId"
  6303. }
  6304. ],
  6305. "methodType": 0,
  6306. "methodName": "GetWorldTranslation",
  6307. "className": "TransformBus",
  6308. "resultSlotIDs": [
  6309. {}
  6310. ],
  6311. "inputSlots": [
  6312. {
  6313. "m_id": "{AAD3FC96-D2ED-4B30-A549-E7E51216B10A}"
  6314. }
  6315. ],
  6316. "prettyClassName": "TransformBus"
  6317. }
  6318. }
  6319. },
  6320. {
  6321. "Id": {
  6322. "id": 205054063684194
  6323. },
  6324. "Name": "SC-Node(GetEntityName)",
  6325. "Components": {
  6326. "Component_[5972774512254976446]": {
  6327. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  6328. "Id": 5972774512254976446,
  6329. "Slots": [
  6330. {
  6331. "id": {
  6332. "m_id": "{9642D11A-7285-48ED-991F-30CCA7DDC196}"
  6333. },
  6334. "contracts": [
  6335. {
  6336. "$type": "SlotTypeContract"
  6337. }
  6338. ],
  6339. "slotName": "EntityId",
  6340. "Descriptor": {
  6341. "ConnectionType": 1,
  6342. "SlotType": 2
  6343. },
  6344. "DataType": 1,
  6345. "IsReference": true,
  6346. "VariableReference": {
  6347. "m_id": "{32C8E951-DCFC-49AF-AF3F-C587EBB1D4D8}"
  6348. }
  6349. },
  6350. {
  6351. "id": {
  6352. "m_id": "{575F2840-DB94-4943-9EF1-6A67B78C7436}"
  6353. },
  6354. "contracts": [
  6355. {
  6356. "$type": "SlotTypeContract"
  6357. }
  6358. ],
  6359. "slotName": "In",
  6360. "Descriptor": {
  6361. "ConnectionType": 1,
  6362. "SlotType": 1
  6363. }
  6364. },
  6365. {
  6366. "id": {
  6367. "m_id": "{1698062C-8070-44AE-97E0-FCC2B13D9829}"
  6368. },
  6369. "contracts": [
  6370. {
  6371. "$type": "SlotTypeContract"
  6372. }
  6373. ],
  6374. "slotName": "Out",
  6375. "Descriptor": {
  6376. "ConnectionType": 2,
  6377. "SlotType": 1
  6378. }
  6379. },
  6380. {
  6381. "id": {
  6382. "m_id": "{C68797EA-C138-4C92-B8EC-592F5D121445}"
  6383. },
  6384. "contracts": [
  6385. {
  6386. "$type": "SlotTypeContract"
  6387. }
  6388. ],
  6389. "slotName": "String",
  6390. "DisplayDataType": {
  6391. "m_type": 5
  6392. },
  6393. "Descriptor": {
  6394. "ConnectionType": 2,
  6395. "SlotType": 2
  6396. },
  6397. "DataType": 1
  6398. }
  6399. ],
  6400. "Datums": [
  6401. {
  6402. "isOverloadedStorage": false,
  6403. "scriptCanvasType": {
  6404. "m_type": 1
  6405. },
  6406. "isNullPointer": false,
  6407. "$type": "EntityId",
  6408. "value": {
  6409. "id": 2901262558
  6410. },
  6411. "label": "Entity Id"
  6412. }
  6413. ],
  6414. "methodType": 0,
  6415. "methodName": "GetEntityName",
  6416. "className": "GameEntityContextRequestBus",
  6417. "resultSlotIDs": [
  6418. {}
  6419. ],
  6420. "inputSlots": [
  6421. {
  6422. "m_id": "{9642D11A-7285-48ED-991F-30CCA7DDC196}"
  6423. }
  6424. ],
  6425. "prettyClassName": "GameEntityContextRequestBus"
  6426. }
  6427. }
  6428. },
  6429. {
  6430. "Id": {
  6431. "id": 205079833487970
  6432. },
  6433. "Name": "SC-Node(FindMaterialAssignmentId)",
  6434. "Components": {
  6435. "Component_[6627748269891712050]": {
  6436. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  6437. "Id": 6627748269891712050,
  6438. "Slots": [
  6439. {
  6440. "id": {
  6441. "m_id": "{C4ED2255-EA5A-4480-9A88-8F8CC9183FF8}"
  6442. },
  6443. "contracts": [
  6444. {
  6445. "$type": "SlotTypeContract"
  6446. }
  6447. ],
  6448. "slotName": "EntityId: 0",
  6449. "Descriptor": {
  6450. "ConnectionType": 1,
  6451. "SlotType": 2
  6452. },
  6453. "DataType": 1
  6454. },
  6455. {
  6456. "id": {
  6457. "m_id": "{50374BC3-2085-433C-9638-17846EB88719}"
  6458. },
  6459. "contracts": [
  6460. {
  6461. "$type": "SlotTypeContract"
  6462. }
  6463. ],
  6464. "slotName": "Number: 1",
  6465. "Descriptor": {
  6466. "ConnectionType": 1,
  6467. "SlotType": 2
  6468. },
  6469. "DataType": 1
  6470. },
  6471. {
  6472. "id": {
  6473. "m_id": "{CE5BEAA3-A371-4C8D-BAB9-9DA38C3AA332}"
  6474. },
  6475. "contracts": [
  6476. {
  6477. "$type": "SlotTypeContract"
  6478. }
  6479. ],
  6480. "slotName": "String: 2",
  6481. "Descriptor": {
  6482. "ConnectionType": 1,
  6483. "SlotType": 2
  6484. },
  6485. "DataType": 1,
  6486. "IsReference": true,
  6487. "VariableReference": {
  6488. "m_id": "{5F1BB2F8-8C64-4894-99E1-41647EC30167}"
  6489. }
  6490. },
  6491. {
  6492. "id": {
  6493. "m_id": "{5B91F410-7BD8-44C1-B94C-0608D1DBD8C0}"
  6494. },
  6495. "contracts": [
  6496. {
  6497. "$type": "SlotTypeContract"
  6498. }
  6499. ],
  6500. "slotName": "In",
  6501. "Descriptor": {
  6502. "ConnectionType": 1,
  6503. "SlotType": 1
  6504. }
  6505. },
  6506. {
  6507. "id": {
  6508. "m_id": "{BDEA51F0-9399-4AB3-BDBE-536173065D8C}"
  6509. },
  6510. "contracts": [
  6511. {
  6512. "$type": "SlotTypeContract"
  6513. }
  6514. ],
  6515. "slotName": "Out",
  6516. "Descriptor": {
  6517. "ConnectionType": 2,
  6518. "SlotType": 1
  6519. }
  6520. },
  6521. {
  6522. "id": {
  6523. "m_id": "{486D2D21-1B85-4FD5-B6E5-EA8EB6094680}"
  6524. },
  6525. "contracts": [
  6526. {
  6527. "$type": "SlotTypeContract"
  6528. }
  6529. ],
  6530. "slotName": "MaterialAssignmentId",
  6531. "DisplayDataType": {
  6532. "m_type": 4,
  6533. "m_azType": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}"
  6534. },
  6535. "Descriptor": {
  6536. "ConnectionType": 2,
  6537. "SlotType": 2
  6538. },
  6539. "DataType": 1,
  6540. "IsReference": true,
  6541. "VariableReference": {
  6542. "m_id": "{0970AC74-9D9A-4530-AD75-BB4A5E839FA5}"
  6543. }
  6544. }
  6545. ],
  6546. "Datums": [
  6547. {
  6548. "isOverloadedStorage": false,
  6549. "scriptCanvasType": {
  6550. "m_type": 1
  6551. },
  6552. "isNullPointer": false,
  6553. "$type": "EntityId",
  6554. "value": {
  6555. "id": 2901262558
  6556. },
  6557. "label": "Source"
  6558. },
  6559. {
  6560. "isOverloadedStorage": false,
  6561. "scriptCanvasType": {
  6562. "m_type": 3
  6563. },
  6564. "isNullPointer": false,
  6565. "$type": "double",
  6566. "value": -1.0,
  6567. "label": "LOD Index"
  6568. },
  6569. {
  6570. "isOverloadedStorage": false,
  6571. "scriptCanvasType": {
  6572. "m_type": 5
  6573. },
  6574. "isNullPointer": false,
  6575. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  6576. "value": "TeleScreenMAT",
  6577. "label": "Label Search String"
  6578. }
  6579. ],
  6580. "methodType": 0,
  6581. "methodName": "FindMaterialAssignmentId",
  6582. "className": "MaterialComponentRequestBus",
  6583. "resultSlotIDs": [
  6584. {}
  6585. ],
  6586. "inputSlots": [
  6587. {
  6588. "m_id": "{C4ED2255-EA5A-4480-9A88-8F8CC9183FF8}"
  6589. },
  6590. {
  6591. "m_id": "{50374BC3-2085-433C-9638-17846EB88719}"
  6592. },
  6593. {
  6594. "m_id": "{CE5BEAA3-A371-4C8D-BAB9-9DA38C3AA332}"
  6595. }
  6596. ],
  6597. "prettyClassName": "MaterialComponentRequestBus"
  6598. }
  6599. }
  6600. },
  6601. {
  6602. "Id": {
  6603. "id": 205195797604962
  6604. },
  6605. "Name": "EBusEventHandler",
  6606. "Components": {
  6607. "Component_[7038708053291790146]": {
  6608. "$type": "EBusEventHandler",
  6609. "Id": 7038708053291790146,
  6610. "Slots": [
  6611. {
  6612. "id": {
  6613. "m_id": "{82BDCC06-DFD4-4901-9397-5DBB409FA174}"
  6614. },
  6615. "contracts": [
  6616. {
  6617. "$type": "SlotTypeContract"
  6618. }
  6619. ],
  6620. "slotName": "Connect",
  6621. "toolTip": "Connect this event handler to the specified entity.",
  6622. "Descriptor": {
  6623. "ConnectionType": 1,
  6624. "SlotType": 1
  6625. }
  6626. },
  6627. {
  6628. "id": {
  6629. "m_id": "{4B57CBC1-3A65-4D5B-81CB-129645239A64}"
  6630. },
  6631. "contracts": [
  6632. {
  6633. "$type": "SlotTypeContract"
  6634. }
  6635. ],
  6636. "slotName": "Disconnect",
  6637. "toolTip": "Disconnect this event handler.",
  6638. "Descriptor": {
  6639. "ConnectionType": 1,
  6640. "SlotType": 1
  6641. }
  6642. },
  6643. {
  6644. "id": {
  6645. "m_id": "{6D49D33D-C363-4992-98B0-6B38B5296259}"
  6646. },
  6647. "contracts": [
  6648. {
  6649. "$type": "SlotTypeContract"
  6650. }
  6651. ],
  6652. "slotName": "OnConnected",
  6653. "toolTip": "Signaled when a connection has taken place.",
  6654. "Descriptor": {
  6655. "ConnectionType": 2,
  6656. "SlotType": 1
  6657. }
  6658. },
  6659. {
  6660. "id": {
  6661. "m_id": "{98070861-8544-42E1-8C90-0B0B1B78A379}"
  6662. },
  6663. "contracts": [
  6664. {
  6665. "$type": "SlotTypeContract"
  6666. }
  6667. ],
  6668. "slotName": "OnDisconnected",
  6669. "toolTip": "Signaled when this event handler is disconnected.",
  6670. "Descriptor": {
  6671. "ConnectionType": 2,
  6672. "SlotType": 1
  6673. }
  6674. },
  6675. {
  6676. "id": {
  6677. "m_id": "{F089DF19-5C4B-4A37-9DA3-259B3D747F21}"
  6678. },
  6679. "contracts": [
  6680. {
  6681. "$type": "SlotTypeContract"
  6682. }
  6683. ],
  6684. "slotName": "OnFailure",
  6685. "toolTip": "Signaled when it is not possible to connect this handler.",
  6686. "Descriptor": {
  6687. "ConnectionType": 2,
  6688. "SlotType": 1
  6689. }
  6690. },
  6691. {
  6692. "id": {
  6693. "m_id": "{48FE3B36-3B73-4348-8C3C-DD12EDF24AFB}"
  6694. },
  6695. "contracts": [
  6696. {
  6697. "$type": "SlotTypeContract"
  6698. }
  6699. ],
  6700. "slotName": "Source",
  6701. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  6702. "Descriptor": {
  6703. "ConnectionType": 1,
  6704. "SlotType": 2
  6705. },
  6706. "DataType": 1
  6707. },
  6708. {
  6709. "id": {
  6710. "m_id": "{AA1717A1-1755-4D77-9F6F-D766F169A140}"
  6711. },
  6712. "contracts": [
  6713. {
  6714. "$type": "SlotTypeContract"
  6715. }
  6716. ],
  6717. "slotName": "EntityId",
  6718. "DisplayDataType": {
  6719. "m_type": 1
  6720. },
  6721. "Descriptor": {
  6722. "ConnectionType": 2,
  6723. "SlotType": 2
  6724. },
  6725. "DataType": 1
  6726. },
  6727. {
  6728. "id": {
  6729. "m_id": "{139F2DFB-F0DB-47EA-95FC-EDB39BA22FB7}"
  6730. },
  6731. "contracts": [
  6732. {
  6733. "$type": "SlotTypeContract"
  6734. }
  6735. ],
  6736. "slotName": "ExecutionSlot:OnEntityActivated",
  6737. "Descriptor": {
  6738. "ConnectionType": 2,
  6739. "SlotType": 1
  6740. },
  6741. "IsLatent": true
  6742. },
  6743. {
  6744. "id": {
  6745. "m_id": "{547C720C-C103-42E5-B287-851530C20734}"
  6746. },
  6747. "contracts": [
  6748. {
  6749. "$type": "SlotTypeContract"
  6750. }
  6751. ],
  6752. "slotName": "EntityId",
  6753. "DisplayDataType": {
  6754. "m_type": 1
  6755. },
  6756. "Descriptor": {
  6757. "ConnectionType": 2,
  6758. "SlotType": 2
  6759. },
  6760. "DataType": 1
  6761. },
  6762. {
  6763. "id": {
  6764. "m_id": "{0B6FBC28-3BA0-4FF6-B37D-ABCCBEF8ABE8}"
  6765. },
  6766. "contracts": [
  6767. {
  6768. "$type": "SlotTypeContract"
  6769. }
  6770. ],
  6771. "slotName": "ExecutionSlot:OnEntityDeactivated",
  6772. "Descriptor": {
  6773. "ConnectionType": 2,
  6774. "SlotType": 1
  6775. },
  6776. "IsLatent": true
  6777. }
  6778. ],
  6779. "Datums": [
  6780. {
  6781. "isOverloadedStorage": false,
  6782. "scriptCanvasType": {
  6783. "m_type": 1
  6784. },
  6785. "isNullPointer": false,
  6786. "$type": "EntityId",
  6787. "value": {
  6788. "id": 2901262558
  6789. },
  6790. "label": "Source"
  6791. }
  6792. ],
  6793. "m_eventMap": [
  6794. {
  6795. "Key": {
  6796. "Value": 245425936
  6797. },
  6798. "Value": {
  6799. "m_eventName": "OnEntityActivated",
  6800. "m_eventId": {
  6801. "Value": 245425936
  6802. },
  6803. "m_eventSlotId": {
  6804. "m_id": "{139F2DFB-F0DB-47EA-95FC-EDB39BA22FB7}"
  6805. },
  6806. "m_parameterSlotIds": [
  6807. {
  6808. "m_id": "{AA1717A1-1755-4D77-9F6F-D766F169A140}"
  6809. }
  6810. ],
  6811. "m_numExpectedArguments": 1
  6812. }
  6813. },
  6814. {
  6815. "Key": {
  6816. "Value": 4273369222
  6817. },
  6818. "Value": {
  6819. "m_eventName": "OnEntityDeactivated",
  6820. "m_eventId": {
  6821. "Value": 4273369222
  6822. },
  6823. "m_eventSlotId": {
  6824. "m_id": "{0B6FBC28-3BA0-4FF6-B37D-ABCCBEF8ABE8}"
  6825. },
  6826. "m_parameterSlotIds": [
  6827. {
  6828. "m_id": "{547C720C-C103-42E5-B287-851530C20734}"
  6829. }
  6830. ],
  6831. "m_numExpectedArguments": 1
  6832. }
  6833. }
  6834. ],
  6835. "m_ebusName": "EntityBus",
  6836. "m_busId": {
  6837. "Value": 3358774020
  6838. },
  6839. "m_autoConnectToGraphOwner": false
  6840. }
  6841. }
  6842. },
  6843. {
  6844. "Id": {
  6845. "id": 205238747277922
  6846. },
  6847. "Name": "SC-Node(SetWorldX)",
  6848. "Components": {
  6849. "Component_[7175994332586123647]": {
  6850. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  6851. "Id": 7175994332586123647,
  6852. "Slots": [
  6853. {
  6854. "id": {
  6855. "m_id": "{3B600874-0F0D-4F6F-B84A-56C7FE93ACF2}"
  6856. },
  6857. "contracts": [
  6858. {
  6859. "$type": "SlotTypeContract"
  6860. }
  6861. ],
  6862. "slotName": "EntityId: 0",
  6863. "Descriptor": {
  6864. "ConnectionType": 1,
  6865. "SlotType": 2
  6866. },
  6867. "DataType": 1
  6868. },
  6869. {
  6870. "id": {
  6871. "m_id": "{A4A2F92B-1F07-403C-8C4B-B6148944FBBB}"
  6872. },
  6873. "contracts": [
  6874. {
  6875. "$type": "SlotTypeContract"
  6876. }
  6877. ],
  6878. "slotName": "Number: 1",
  6879. "Descriptor": {
  6880. "ConnectionType": 1,
  6881. "SlotType": 2
  6882. },
  6883. "DataType": 1
  6884. },
  6885. {
  6886. "id": {
  6887. "m_id": "{84ADA613-EB77-4DE7-8F5C-09457ED2638D}"
  6888. },
  6889. "contracts": [
  6890. {
  6891. "$type": "SlotTypeContract"
  6892. }
  6893. ],
  6894. "slotName": "In",
  6895. "Descriptor": {
  6896. "ConnectionType": 1,
  6897. "SlotType": 1
  6898. }
  6899. },
  6900. {
  6901. "id": {
  6902. "m_id": "{1E554576-EBF6-4827-9922-CD0E32DD26C0}"
  6903. },
  6904. "contracts": [
  6905. {
  6906. "$type": "SlotTypeContract"
  6907. }
  6908. ],
  6909. "slotName": "Out",
  6910. "Descriptor": {
  6911. "ConnectionType": 2,
  6912. "SlotType": 1
  6913. }
  6914. }
  6915. ],
  6916. "Datums": [
  6917. {
  6918. "isOverloadedStorage": false,
  6919. "scriptCanvasType": {
  6920. "m_type": 1
  6921. },
  6922. "isNullPointer": false,
  6923. "$type": "EntityId",
  6924. "value": {
  6925. "id": 2901262558
  6926. },
  6927. "label": "Source"
  6928. },
  6929. {
  6930. "isOverloadedStorage": false,
  6931. "scriptCanvasType": {
  6932. "m_type": 3
  6933. },
  6934. "isNullPointer": false,
  6935. "$type": "double",
  6936. "value": 0.0,
  6937. "label": "X"
  6938. }
  6939. ],
  6940. "methodType": 0,
  6941. "methodName": "SetWorldX",
  6942. "className": "TransformBus",
  6943. "resultSlotIDs": [
  6944. {}
  6945. ],
  6946. "inputSlots": [
  6947. {
  6948. "m_id": "{3B600874-0F0D-4F6F-B84A-56C7FE93ACF2}"
  6949. },
  6950. {
  6951. "m_id": "{A4A2F92B-1F07-403C-8C4B-B6148944FBBB}"
  6952. }
  6953. ],
  6954. "prettyClassName": "TransformBus"
  6955. }
  6956. }
  6957. },
  6958. {
  6959. "Id": {
  6960. "id": 205045473749602
  6961. },
  6962. "Name": "SC-Node(SetWorldY)",
  6963. "Components": {
  6964. "Component_[7286058841037029159]": {
  6965. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  6966. "Id": 7286058841037029159,
  6967. "Slots": [
  6968. {
  6969. "id": {
  6970. "m_id": "{4791D6FD-8B35-4F36-A3E9-96098134A857}"
  6971. },
  6972. "contracts": [
  6973. {
  6974. "$type": "SlotTypeContract"
  6975. }
  6976. ],
  6977. "slotName": "EntityId: 0",
  6978. "Descriptor": {
  6979. "ConnectionType": 1,
  6980. "SlotType": 2
  6981. },
  6982. "DataType": 1
  6983. },
  6984. {
  6985. "id": {
  6986. "m_id": "{20E44564-11BA-438B-A28E-BB3F23ED8251}"
  6987. },
  6988. "contracts": [
  6989. {
  6990. "$type": "SlotTypeContract"
  6991. }
  6992. ],
  6993. "slotName": "Number: 1",
  6994. "Descriptor": {
  6995. "ConnectionType": 1,
  6996. "SlotType": 2
  6997. },
  6998. "DataType": 1,
  6999. "IsReference": true,
  7000. "VariableReference": {
  7001. "m_id": "{10B9A1D7-C4D3-45DB-A2AF-AA1DA3B91E0E}"
  7002. }
  7003. },
  7004. {
  7005. "id": {
  7006. "m_id": "{9C7C56F8-8A29-4783-97A7-74E491D8C42A}"
  7007. },
  7008. "contracts": [
  7009. {
  7010. "$type": "SlotTypeContract"
  7011. }
  7012. ],
  7013. "slotName": "In",
  7014. "Descriptor": {
  7015. "ConnectionType": 1,
  7016. "SlotType": 1
  7017. }
  7018. },
  7019. {
  7020. "id": {
  7021. "m_id": "{306DA2FE-DFF6-4F77-A700-1957E1F1B399}"
  7022. },
  7023. "contracts": [
  7024. {
  7025. "$type": "SlotTypeContract"
  7026. }
  7027. ],
  7028. "slotName": "Out",
  7029. "Descriptor": {
  7030. "ConnectionType": 2,
  7031. "SlotType": 1
  7032. }
  7033. }
  7034. ],
  7035. "Datums": [
  7036. {
  7037. "isOverloadedStorage": false,
  7038. "scriptCanvasType": {
  7039. "m_type": 1
  7040. },
  7041. "isNullPointer": false,
  7042. "$type": "EntityId",
  7043. "value": {
  7044. "id": 2901262558
  7045. },
  7046. "label": "Source"
  7047. },
  7048. {
  7049. "isOverloadedStorage": false,
  7050. "scriptCanvasType": {
  7051. "m_type": 3
  7052. },
  7053. "isNullPointer": false,
  7054. "$type": "double",
  7055. "value": 0.0,
  7056. "label": "Y"
  7057. }
  7058. ],
  7059. "methodType": 0,
  7060. "methodName": "SetWorldY",
  7061. "className": "TransformBus",
  7062. "resultSlotIDs": [
  7063. {}
  7064. ],
  7065. "inputSlots": [
  7066. {
  7067. "m_id": "{4791D6FD-8B35-4F36-A3E9-96098134A857}"
  7068. },
  7069. {
  7070. "m_id": "{20E44564-11BA-438B-A28E-BB3F23ED8251}"
  7071. }
  7072. ],
  7073. "prettyClassName": "TransformBus"
  7074. }
  7075. }
  7076. },
  7077. {
  7078. "Id": {
  7079. "id": 205071243553378
  7080. },
  7081. "Name": "SC-Node(GetLocalTranslation)",
  7082. "Components": {
  7083. "Component_[7422712610282257483]": {
  7084. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  7085. "Id": 7422712610282257483,
  7086. "Slots": [
  7087. {
  7088. "id": {
  7089. "m_id": "{771AD9CF-C347-4249-820F-DE7F225331A1}"
  7090. },
  7091. "contracts": [
  7092. {
  7093. "$type": "SlotTypeContract"
  7094. }
  7095. ],
  7096. "slotName": "EntityId",
  7097. "Descriptor": {
  7098. "ConnectionType": 1,
  7099. "SlotType": 2
  7100. },
  7101. "DataType": 1,
  7102. "IsReference": true,
  7103. "VariableReference": {
  7104. "m_id": "{32C8E951-DCFC-49AF-AF3F-C587EBB1D4D8}"
  7105. }
  7106. },
  7107. {
  7108. "id": {
  7109. "m_id": "{9F6C90EA-1C89-4E46-B369-4C70EBBA3D2C}"
  7110. },
  7111. "contracts": [
  7112. {
  7113. "$type": "SlotTypeContract"
  7114. }
  7115. ],
  7116. "slotName": "In",
  7117. "Descriptor": {
  7118. "ConnectionType": 1,
  7119. "SlotType": 1
  7120. }
  7121. },
  7122. {
  7123. "id": {
  7124. "m_id": "{B4A5BBC5-A3F0-4D6A-B9A8-2966BCD3C739}"
  7125. },
  7126. "contracts": [
  7127. {
  7128. "$type": "SlotTypeContract"
  7129. }
  7130. ],
  7131. "slotName": "Out",
  7132. "Descriptor": {
  7133. "ConnectionType": 2,
  7134. "SlotType": 1
  7135. }
  7136. },
  7137. {
  7138. "id": {
  7139. "m_id": "{66FADACE-50E5-4C82-9ECF-4A068D7A4AFA}"
  7140. },
  7141. "contracts": [
  7142. {
  7143. "$type": "SlotTypeContract"
  7144. }
  7145. ],
  7146. "slotName": "Vector3",
  7147. "DisplayDataType": {
  7148. "m_type": 8
  7149. },
  7150. "Descriptor": {
  7151. "ConnectionType": 2,
  7152. "SlotType": 2
  7153. },
  7154. "DataType": 1
  7155. }
  7156. ],
  7157. "Datums": [
  7158. {
  7159. "isOverloadedStorage": false,
  7160. "scriptCanvasType": {
  7161. "m_type": 1
  7162. },
  7163. "isNullPointer": false,
  7164. "$type": "EntityId",
  7165. "value": {
  7166. "id": 2901262558
  7167. },
  7168. "label": "EntityId"
  7169. }
  7170. ],
  7171. "methodType": 0,
  7172. "methodName": "GetLocalTranslation",
  7173. "className": "TransformBus",
  7174. "resultSlotIDs": [
  7175. {}
  7176. ],
  7177. "inputSlots": [
  7178. {
  7179. "m_id": "{771AD9CF-C347-4249-820F-DE7F225331A1}"
  7180. }
  7181. ],
  7182. "prettyClassName": "TransformBus"
  7183. }
  7184. }
  7185. },
  7186. {
  7187. "Id": {
  7188. "id": 205127078128226
  7189. },
  7190. "Name": "SC-Node(Clamp)",
  7191. "Components": {
  7192. "Component_[8240606161619029392]": {
  7193. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  7194. "Id": 8240606161619029392,
  7195. "Slots": [
  7196. {
  7197. "id": {
  7198. "m_id": "{DE7886A7-5CD7-4DC7-84C0-CAA7CEB46B87}"
  7199. },
  7200. "contracts": [
  7201. {
  7202. "$type": "SlotTypeContract"
  7203. }
  7204. ],
  7205. "slotName": "Number: 0",
  7206. "Descriptor": {
  7207. "ConnectionType": 1,
  7208. "SlotType": 2
  7209. },
  7210. "DataType": 1
  7211. },
  7212. {
  7213. "id": {
  7214. "m_id": "{817E7E87-B37E-4090-88D4-6AA702488BFD}"
  7215. },
  7216. "contracts": [
  7217. {
  7218. "$type": "SlotTypeContract"
  7219. }
  7220. ],
  7221. "slotName": "Number: 1",
  7222. "Descriptor": {
  7223. "ConnectionType": 1,
  7224. "SlotType": 2
  7225. },
  7226. "DataType": 1,
  7227. "IsReference": true,
  7228. "VariableReference": {
  7229. "m_id": "{9143AB42-1D02-4627-AB8A-813A1C2EA65A}"
  7230. }
  7231. },
  7232. {
  7233. "id": {
  7234. "m_id": "{CB1998F3-66FB-4152-9AF2-DD83D5CD1304}"
  7235. },
  7236. "contracts": [
  7237. {
  7238. "$type": "SlotTypeContract"
  7239. }
  7240. ],
  7241. "slotName": "Number: 2",
  7242. "Descriptor": {
  7243. "ConnectionType": 1,
  7244. "SlotType": 2
  7245. },
  7246. "DataType": 1,
  7247. "IsReference": true,
  7248. "VariableReference": {
  7249. "m_id": "{6FFD6AB6-927D-439D-BA73-63A49426F440}"
  7250. }
  7251. },
  7252. {
  7253. "id": {
  7254. "m_id": "{34CAB309-D66B-412D-A460-4198916236C2}"
  7255. },
  7256. "contracts": [
  7257. {
  7258. "$type": "SlotTypeContract"
  7259. }
  7260. ],
  7261. "slotName": "In",
  7262. "Descriptor": {
  7263. "ConnectionType": 1,
  7264. "SlotType": 1
  7265. }
  7266. },
  7267. {
  7268. "id": {
  7269. "m_id": "{0739B83D-7768-4152-9381-E283CE3C479F}"
  7270. },
  7271. "contracts": [
  7272. {
  7273. "$type": "SlotTypeContract"
  7274. }
  7275. ],
  7276. "slotName": "Out",
  7277. "Descriptor": {
  7278. "ConnectionType": 2,
  7279. "SlotType": 1
  7280. }
  7281. },
  7282. {
  7283. "id": {
  7284. "m_id": "{0143B585-16B3-46FB-9F4B-F82BB8ABCB09}"
  7285. },
  7286. "contracts": [
  7287. {
  7288. "$type": "SlotTypeContract"
  7289. }
  7290. ],
  7291. "slotName": "Number",
  7292. "DisplayDataType": {
  7293. "m_type": 3
  7294. },
  7295. "Descriptor": {
  7296. "ConnectionType": 2,
  7297. "SlotType": 2
  7298. },
  7299. "DataType": 1
  7300. }
  7301. ],
  7302. "Datums": [
  7303. {
  7304. "isOverloadedStorage": false,
  7305. "scriptCanvasType": {
  7306. "m_type": 3
  7307. },
  7308. "isNullPointer": false,
  7309. "$type": "double",
  7310. "value": 0.0,
  7311. "label": "Value"
  7312. },
  7313. {
  7314. "isOverloadedStorage": false,
  7315. "scriptCanvasType": {
  7316. "m_type": 3
  7317. },
  7318. "isNullPointer": false,
  7319. "$type": "double",
  7320. "value": -54.0,
  7321. "label": "Number: 1"
  7322. },
  7323. {
  7324. "isOverloadedStorage": false,
  7325. "scriptCanvasType": {
  7326. "m_type": 3
  7327. },
  7328. "isNullPointer": false,
  7329. "$type": "double",
  7330. "value": 54.0,
  7331. "label": "Number: 2"
  7332. }
  7333. ],
  7334. "methodType": 2,
  7335. "methodName": "Clamp",
  7336. "className": "Math",
  7337. "resultSlotIDs": [
  7338. {}
  7339. ],
  7340. "inputSlots": [
  7341. {
  7342. "m_id": "{DE7886A7-5CD7-4DC7-84C0-CAA7CEB46B87}"
  7343. },
  7344. {
  7345. "m_id": "{817E7E87-B37E-4090-88D4-6AA702488BFD}"
  7346. },
  7347. {
  7348. "m_id": "{CB1998F3-66FB-4152-9AF2-DD83D5CD1304}"
  7349. }
  7350. ],
  7351. "prettyClassName": "Math"
  7352. }
  7353. }
  7354. },
  7355. {
  7356. "Id": {
  7357. "id": 205152847932002
  7358. },
  7359. "Name": "SC-Node(ScriptCanvas_Vector3Functions_MultiplyByNumber)",
  7360. "Components": {
  7361. "Component_[8591998218335985678]": {
  7362. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  7363. "Id": 8591998218335985678,
  7364. "Slots": [
  7365. {
  7366. "id": {
  7367. "m_id": "{BD6C2932-F596-4677-BE76-08E6B8D95F4B}"
  7368. },
  7369. "contracts": [
  7370. {
  7371. "$type": "SlotTypeContract"
  7372. }
  7373. ],
  7374. "slotName": "Source",
  7375. "Descriptor": {
  7376. "ConnectionType": 1,
  7377. "SlotType": 2
  7378. },
  7379. "DataType": 1
  7380. },
  7381. {
  7382. "id": {
  7383. "m_id": "{EC718D34-50BB-4B11-AE45-20B6CB612861}"
  7384. },
  7385. "contracts": [
  7386. {
  7387. "$type": "SlotTypeContract"
  7388. }
  7389. ],
  7390. "slotName": "Multiplier",
  7391. "Descriptor": {
  7392. "ConnectionType": 1,
  7393. "SlotType": 2
  7394. },
  7395. "DataType": 1
  7396. },
  7397. {
  7398. "id": {
  7399. "m_id": "{27EFAE22-85A3-456E-8373-A60E37691585}"
  7400. },
  7401. "contracts": [
  7402. {
  7403. "$type": "SlotTypeContract"
  7404. }
  7405. ],
  7406. "slotName": "In",
  7407. "Descriptor": {
  7408. "ConnectionType": 1,
  7409. "SlotType": 1
  7410. }
  7411. },
  7412. {
  7413. "id": {
  7414. "m_id": "{11371474-DEF6-4E31-A343-8BFDC84BCE6C}"
  7415. },
  7416. "contracts": [
  7417. {
  7418. "$type": "SlotTypeContract"
  7419. }
  7420. ],
  7421. "slotName": "Out",
  7422. "Descriptor": {
  7423. "ConnectionType": 2,
  7424. "SlotType": 1
  7425. }
  7426. },
  7427. {
  7428. "id": {
  7429. "m_id": "{302C9B43-7F5E-4697-8122-76ECEB25D01A}"
  7430. },
  7431. "contracts": [
  7432. {
  7433. "$type": "SlotTypeContract"
  7434. }
  7435. ],
  7436. "slotName": "Vector3",
  7437. "DisplayDataType": {
  7438. "m_type": 8
  7439. },
  7440. "Descriptor": {
  7441. "ConnectionType": 2,
  7442. "SlotType": 2
  7443. },
  7444. "DataType": 1
  7445. }
  7446. ],
  7447. "Datums": [
  7448. {
  7449. "isOverloadedStorage": false,
  7450. "scriptCanvasType": {
  7451. "m_type": 8
  7452. },
  7453. "isNullPointer": false,
  7454. "$type": "Vector3",
  7455. "value": [
  7456. 0.0,
  7457. 0.0,
  7458. 0.0
  7459. ],
  7460. "label": "Source"
  7461. },
  7462. {
  7463. "isOverloadedStorage": false,
  7464. "scriptCanvasType": {
  7465. "m_type": 3
  7466. },
  7467. "isNullPointer": false,
  7468. "$type": "double",
  7469. "value": 0.0,
  7470. "label": "Multiplier"
  7471. }
  7472. ],
  7473. "methodType": 1,
  7474. "methodName": "ScriptCanvas_Vector3Functions_MultiplyByNumber",
  7475. "resultSlotIDs": [
  7476. {}
  7477. ],
  7478. "inputSlots": [
  7479. {
  7480. "m_id": "{BD6C2932-F596-4677-BE76-08E6B8D95F4B}"
  7481. },
  7482. {
  7483. "m_id": "{EC718D34-50BB-4B11-AE45-20B6CB612861}"
  7484. }
  7485. ],
  7486. "prettyClassName": "ScriptCanvas_Vector3Functions_MultiplyByNumber"
  7487. }
  7488. }
  7489. },
  7490. {
  7491. "Id": {
  7492. "id": 205182912703074
  7493. },
  7494. "Name": "SC-Node(TimerNodeableNode)",
  7495. "Components": {
  7496. "Component_[8771857071920539926]": {
  7497. "$type": "TimerNodeableNode",
  7498. "Id": 8771857071920539926,
  7499. "Slots": [
  7500. {
  7501. "id": {
  7502. "m_id": "{0D63785C-FEB6-401E-94C8-25D180AF1A9A}"
  7503. },
  7504. "contracts": [
  7505. {
  7506. "$type": "SlotTypeContract"
  7507. }
  7508. ],
  7509. "slotName": "Start",
  7510. "toolTip": "Starts the timer",
  7511. "DisplayGroup": {
  7512. "Value": 2675529103
  7513. },
  7514. "Descriptor": {
  7515. "ConnectionType": 1,
  7516. "SlotType": 1
  7517. }
  7518. },
  7519. {
  7520. "id": {
  7521. "m_id": "{ADEB20CC-068D-45DF-BC99-E445EDFFB45D}"
  7522. },
  7523. "contracts": [
  7524. {
  7525. "$type": "SlotTypeContract"
  7526. }
  7527. ],
  7528. "slotName": "On Start",
  7529. "toolTip": "Starts the timer",
  7530. "DisplayGroup": {
  7531. "Value": 2675529103
  7532. },
  7533. "Descriptor": {
  7534. "ConnectionType": 2,
  7535. "SlotType": 1
  7536. }
  7537. },
  7538. {
  7539. "id": {
  7540. "m_id": "{D51F0125-5BEB-4ADC-94EF-A3F789588DE5}"
  7541. },
  7542. "contracts": [
  7543. {
  7544. "$type": "SlotTypeContract"
  7545. }
  7546. ],
  7547. "slotName": "Stop",
  7548. "toolTip": "Stops the timer",
  7549. "DisplayGroup": {
  7550. "Value": 3109426870
  7551. },
  7552. "Descriptor": {
  7553. "ConnectionType": 1,
  7554. "SlotType": 1
  7555. }
  7556. },
  7557. {
  7558. "id": {
  7559. "m_id": "{6C46B1DF-4E76-4739-9058-3C7421679943}"
  7560. },
  7561. "contracts": [
  7562. {
  7563. "$type": "SlotTypeContract"
  7564. }
  7565. ],
  7566. "slotName": "On Stop",
  7567. "toolTip": "Stops the timer",
  7568. "DisplayGroup": {
  7569. "Value": 3109426870
  7570. },
  7571. "Descriptor": {
  7572. "ConnectionType": 2,
  7573. "SlotType": 1
  7574. }
  7575. },
  7576. {
  7577. "id": {
  7578. "m_id": "{86C3CCDB-1D88-4341-88D2-D32575E6D6D5}"
  7579. },
  7580. "contracts": [
  7581. {
  7582. "$type": "SlotTypeContract"
  7583. }
  7584. ],
  7585. "slotName": "On Tick",
  7586. "toolTip": "Signaled at each tick while the timer is in operation.",
  7587. "DisplayGroup": {
  7588. "Value": 608626060
  7589. },
  7590. "Descriptor": {
  7591. "ConnectionType": 2,
  7592. "SlotType": 1
  7593. },
  7594. "IsLatent": true
  7595. },
  7596. {
  7597. "id": {
  7598. "m_id": "{8172AD6B-14E9-4F13-BF95-F51CF73C293E}"
  7599. },
  7600. "contracts": [
  7601. {
  7602. "$type": "SlotTypeContract"
  7603. }
  7604. ],
  7605. "slotName": "Milliseconds",
  7606. "toolTip": "The amount of time that has elapsed since the timer started in milliseconds.",
  7607. "DisplayDataType": {
  7608. "m_type": 3
  7609. },
  7610. "DisplayGroup": {
  7611. "Value": 608626060
  7612. },
  7613. "Descriptor": {
  7614. "ConnectionType": 2,
  7615. "SlotType": 2
  7616. },
  7617. "DataType": 1
  7618. },
  7619. {
  7620. "id": {
  7621. "m_id": "{B03A83F9-3484-414B-8DBE-99744FC52981}"
  7622. },
  7623. "contracts": [
  7624. {
  7625. "$type": "SlotTypeContract"
  7626. }
  7627. ],
  7628. "slotName": "Seconds",
  7629. "toolTip": "The amount of time that has elapsed since the timer started in seconds.",
  7630. "DisplayDataType": {
  7631. "m_type": 3
  7632. },
  7633. "DisplayGroup": {
  7634. "Value": 608626060
  7635. },
  7636. "Descriptor": {
  7637. "ConnectionType": 2,
  7638. "SlotType": 2
  7639. },
  7640. "DataType": 1
  7641. }
  7642. ],
  7643. "slotExecutionMap": {
  7644. "ins": [
  7645. {
  7646. "_slotId": {
  7647. "m_id": "{0D63785C-FEB6-401E-94C8-25D180AF1A9A}"
  7648. },
  7649. "_outs": [
  7650. {
  7651. "_slotId": {
  7652. "m_id": "{ADEB20CC-068D-45DF-BC99-E445EDFFB45D}"
  7653. },
  7654. "_name": "On Start"
  7655. }
  7656. ]
  7657. },
  7658. {
  7659. "_slotId": {
  7660. "m_id": "{D51F0125-5BEB-4ADC-94EF-A3F789588DE5}"
  7661. },
  7662. "_outs": [
  7663. {
  7664. "_slotId": {
  7665. "m_id": "{6C46B1DF-4E76-4739-9058-3C7421679943}"
  7666. },
  7667. "_name": "On Stop"
  7668. }
  7669. ]
  7670. }
  7671. ],
  7672. "latents": [
  7673. {
  7674. "_slotId": {
  7675. "m_id": "{86C3CCDB-1D88-4341-88D2-D32575E6D6D5}"
  7676. },
  7677. "_name": "On Tick",
  7678. "_outputs": [
  7679. {
  7680. "_slotId": {
  7681. "m_id": "{8172AD6B-14E9-4F13-BF95-F51CF73C293E}"
  7682. }
  7683. },
  7684. {
  7685. "_slotId": {
  7686. "m_id": "{B03A83F9-3484-414B-8DBE-99744FC52981}"
  7687. }
  7688. }
  7689. ]
  7690. }
  7691. ]
  7692. }
  7693. }
  7694. }
  7695. },
  7696. {
  7697. "Id": {
  7698. "id": 205225862376034
  7699. },
  7700. "Name": "SC-Node(TimerNodeableNode)",
  7701. "Components": {
  7702. "Component_[8771857071920539926]": {
  7703. "$type": "TimerNodeableNode",
  7704. "Id": 8771857071920539926,
  7705. "Slots": [
  7706. {
  7707. "id": {
  7708. "m_id": "{0D63785C-FEB6-401E-94C8-25D180AF1A9A}"
  7709. },
  7710. "contracts": [
  7711. {
  7712. "$type": "SlotTypeContract"
  7713. }
  7714. ],
  7715. "slotName": "Start",
  7716. "toolTip": "Starts the timer",
  7717. "DisplayGroup": {
  7718. "Value": 2675529103
  7719. },
  7720. "Descriptor": {
  7721. "ConnectionType": 1,
  7722. "SlotType": 1
  7723. }
  7724. },
  7725. {
  7726. "id": {
  7727. "m_id": "{ADEB20CC-068D-45DF-BC99-E445EDFFB45D}"
  7728. },
  7729. "contracts": [
  7730. {
  7731. "$type": "SlotTypeContract"
  7732. }
  7733. ],
  7734. "slotName": "On Start",
  7735. "toolTip": "Starts the timer",
  7736. "DisplayGroup": {
  7737. "Value": 2675529103
  7738. },
  7739. "Descriptor": {
  7740. "ConnectionType": 2,
  7741. "SlotType": 1
  7742. }
  7743. },
  7744. {
  7745. "id": {
  7746. "m_id": "{D51F0125-5BEB-4ADC-94EF-A3F789588DE5}"
  7747. },
  7748. "contracts": [
  7749. {
  7750. "$type": "SlotTypeContract"
  7751. }
  7752. ],
  7753. "slotName": "Stop",
  7754. "toolTip": "Stops the timer",
  7755. "DisplayGroup": {
  7756. "Value": 3109426870
  7757. },
  7758. "Descriptor": {
  7759. "ConnectionType": 1,
  7760. "SlotType": 1
  7761. }
  7762. },
  7763. {
  7764. "id": {
  7765. "m_id": "{6C46B1DF-4E76-4739-9058-3C7421679943}"
  7766. },
  7767. "contracts": [
  7768. {
  7769. "$type": "SlotTypeContract"
  7770. }
  7771. ],
  7772. "slotName": "On Stop",
  7773. "toolTip": "Stops the timer",
  7774. "DisplayGroup": {
  7775. "Value": 3109426870
  7776. },
  7777. "Descriptor": {
  7778. "ConnectionType": 2,
  7779. "SlotType": 1
  7780. }
  7781. },
  7782. {
  7783. "id": {
  7784. "m_id": "{86C3CCDB-1D88-4341-88D2-D32575E6D6D5}"
  7785. },
  7786. "contracts": [
  7787. {
  7788. "$type": "SlotTypeContract"
  7789. }
  7790. ],
  7791. "slotName": "On Tick",
  7792. "toolTip": "Signaled at each tick while the timer is in operation.",
  7793. "DisplayGroup": {
  7794. "Value": 608626060
  7795. },
  7796. "Descriptor": {
  7797. "ConnectionType": 2,
  7798. "SlotType": 1
  7799. },
  7800. "IsLatent": true
  7801. },
  7802. {
  7803. "id": {
  7804. "m_id": "{8172AD6B-14E9-4F13-BF95-F51CF73C293E}"
  7805. },
  7806. "contracts": [
  7807. {
  7808. "$type": "SlotTypeContract"
  7809. }
  7810. ],
  7811. "slotName": "Milliseconds",
  7812. "toolTip": "The amount of time that has elapsed since the timer started in milliseconds.",
  7813. "DisplayDataType": {
  7814. "m_type": 3
  7815. },
  7816. "DisplayGroup": {
  7817. "Value": 608626060
  7818. },
  7819. "Descriptor": {
  7820. "ConnectionType": 2,
  7821. "SlotType": 2
  7822. },
  7823. "DataType": 1
  7824. },
  7825. {
  7826. "id": {
  7827. "m_id": "{B03A83F9-3484-414B-8DBE-99744FC52981}"
  7828. },
  7829. "contracts": [
  7830. {
  7831. "$type": "SlotTypeContract"
  7832. }
  7833. ],
  7834. "slotName": "Seconds",
  7835. "toolTip": "The amount of time that has elapsed since the timer started in seconds.",
  7836. "DisplayDataType": {
  7837. "m_type": 3
  7838. },
  7839. "DisplayGroup": {
  7840. "Value": 608626060
  7841. },
  7842. "Descriptor": {
  7843. "ConnectionType": 2,
  7844. "SlotType": 2
  7845. },
  7846. "DataType": 1
  7847. }
  7848. ],
  7849. "slotExecutionMap": {
  7850. "ins": [
  7851. {
  7852. "_slotId": {
  7853. "m_id": "{0D63785C-FEB6-401E-94C8-25D180AF1A9A}"
  7854. },
  7855. "_outs": [
  7856. {
  7857. "_slotId": {
  7858. "m_id": "{ADEB20CC-068D-45DF-BC99-E445EDFFB45D}"
  7859. },
  7860. "_name": "On Start"
  7861. }
  7862. ]
  7863. },
  7864. {
  7865. "_slotId": {
  7866. "m_id": "{D51F0125-5BEB-4ADC-94EF-A3F789588DE5}"
  7867. },
  7868. "_outs": [
  7869. {
  7870. "_slotId": {
  7871. "m_id": "{6C46B1DF-4E76-4739-9058-3C7421679943}"
  7872. },
  7873. "_name": "On Stop"
  7874. }
  7875. ]
  7876. }
  7877. ],
  7878. "latents": [
  7879. {
  7880. "_slotId": {
  7881. "m_id": "{86C3CCDB-1D88-4341-88D2-D32575E6D6D5}"
  7882. },
  7883. "_name": "On Tick",
  7884. "_outputs": [
  7885. {
  7886. "_slotId": {
  7887. "m_id": "{8172AD6B-14E9-4F13-BF95-F51CF73C293E}"
  7888. }
  7889. },
  7890. {
  7891. "_slotId": {
  7892. "m_id": "{B03A83F9-3484-414B-8DBE-99744FC52981}"
  7893. }
  7894. }
  7895. ]
  7896. }
  7897. ]
  7898. }
  7899. }
  7900. }
  7901. },
  7902. {
  7903. "Id": {
  7904. "id": 205118488193634
  7905. },
  7906. "Name": "SC Node(SetVariable)",
  7907. "Components": {
  7908. "Component_[940263578933491125]": {
  7909. "$type": "SetVariableNode",
  7910. "Id": 940263578933491125,
  7911. "Slots": [
  7912. {
  7913. "id": {
  7914. "m_id": "{F20C5790-E530-4CB9-943E-41026D612C95}"
  7915. },
  7916. "contracts": [
  7917. {
  7918. "$type": "SlotTypeContract"
  7919. }
  7920. ],
  7921. "slotName": "In",
  7922. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  7923. "Descriptor": {
  7924. "ConnectionType": 1,
  7925. "SlotType": 1
  7926. }
  7927. },
  7928. {
  7929. "id": {
  7930. "m_id": "{55DE242F-DC1D-4C4A-991E-B341C8E37D89}"
  7931. },
  7932. "contracts": [
  7933. {
  7934. "$type": "SlotTypeContract"
  7935. }
  7936. ],
  7937. "slotName": "Out",
  7938. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  7939. "Descriptor": {
  7940. "ConnectionType": 2,
  7941. "SlotType": 1
  7942. }
  7943. },
  7944. {
  7945. "id": {
  7946. "m_id": "{FEC8936B-8F6D-4C9C-8A89-209292FDE05F}"
  7947. },
  7948. "contracts": [
  7949. {
  7950. "$type": "SlotTypeContract"
  7951. }
  7952. ],
  7953. "slotName": "Vector3",
  7954. "Descriptor": {
  7955. "ConnectionType": 1,
  7956. "SlotType": 2
  7957. },
  7958. "DataType": 1
  7959. },
  7960. {
  7961. "id": {
  7962. "m_id": "{FACA4BAB-F918-4352-94A3-05C8CCAF5004}"
  7963. },
  7964. "contracts": [
  7965. {
  7966. "$type": "SlotTypeContract"
  7967. }
  7968. ],
  7969. "slotName": "Vector3",
  7970. "DisplayDataType": {
  7971. "m_type": 8
  7972. },
  7973. "Descriptor": {
  7974. "ConnectionType": 2,
  7975. "SlotType": 2
  7976. },
  7977. "DataType": 1
  7978. },
  7979. {
  7980. "id": {
  7981. "m_id": "{7083D045-8919-4533-B49A-1EC215567FCE}"
  7982. },
  7983. "contracts": [
  7984. {
  7985. "$type": "SlotTypeContract"
  7986. }
  7987. ],
  7988. "slotName": "X",
  7989. "DisplayDataType": {
  7990. "m_type": 3
  7991. },
  7992. "Descriptor": {
  7993. "ConnectionType": 2,
  7994. "SlotType": 2
  7995. },
  7996. "DataType": 1
  7997. },
  7998. {
  7999. "id": {
  8000. "m_id": "{87321D7F-A5F7-45FD-BAFD-902ED9EF4663}"
  8001. },
  8002. "contracts": [
  8003. {
  8004. "$type": "SlotTypeContract"
  8005. }
  8006. ],
  8007. "slotName": "Y",
  8008. "DisplayDataType": {
  8009. "m_type": 3
  8010. },
  8011. "Descriptor": {
  8012. "ConnectionType": 2,
  8013. "SlotType": 2
  8014. },
  8015. "DataType": 1
  8016. },
  8017. {
  8018. "id": {
  8019. "m_id": "{1CA0F8FD-9680-4228-9921-448C0436C9CC}"
  8020. },
  8021. "contracts": [
  8022. {
  8023. "$type": "SlotTypeContract"
  8024. }
  8025. ],
  8026. "slotName": "Z",
  8027. "DisplayDataType": {
  8028. "m_type": 3
  8029. },
  8030. "Descriptor": {
  8031. "ConnectionType": 2,
  8032. "SlotType": 2
  8033. },
  8034. "DataType": 1
  8035. }
  8036. ],
  8037. "Datums": [
  8038. {
  8039. "isOverloadedStorage": false,
  8040. "scriptCanvasType": {
  8041. "m_type": 8
  8042. },
  8043. "isNullPointer": false,
  8044. "$type": "Vector3",
  8045. "value": [
  8046. 0.0,
  8047. 0.0,
  8048. 0.0
  8049. ],
  8050. "label": "Vector3"
  8051. }
  8052. ],
  8053. "m_variableId": {
  8054. "m_id": "{8A5DE15B-660D-4623-8D53-3386676D5C3D}"
  8055. },
  8056. "m_variableDataInSlotId": {
  8057. "m_id": "{FEC8936B-8F6D-4C9C-8A89-209292FDE05F}"
  8058. },
  8059. "m_variableDataOutSlotId": {
  8060. "m_id": "{FACA4BAB-F918-4352-94A3-05C8CCAF5004}"
  8061. },
  8062. "m_propertyAccounts": [
  8063. {
  8064. "m_propertySlotId": {
  8065. "m_id": "{7083D045-8919-4533-B49A-1EC215567FCE}"
  8066. },
  8067. "m_propertyType": {
  8068. "m_type": 3
  8069. },
  8070. "m_propertyName": "x"
  8071. },
  8072. {
  8073. "m_propertySlotId": {
  8074. "m_id": "{87321D7F-A5F7-45FD-BAFD-902ED9EF4663}"
  8075. },
  8076. "m_propertyType": {
  8077. "m_type": 3
  8078. },
  8079. "m_propertyName": "y"
  8080. },
  8081. {
  8082. "m_propertySlotId": {
  8083. "m_id": "{1CA0F8FD-9680-4228-9921-448C0436C9CC}"
  8084. },
  8085. "m_propertyType": {
  8086. "m_type": 3
  8087. },
  8088. "m_propertyName": "z"
  8089. }
  8090. ]
  8091. }
  8092. }
  8093. }
  8094. ],
  8095. "m_connections": [
  8096. {
  8097. "Id": {
  8098. "id": 205260222114402
  8099. },
  8100. "Name": "srcEndpoint=(InputHandler: value), destEndpoint=(ScriptCanvas_Vector3Functions_FromValues: X)",
  8101. "Components": {
  8102. "Component_[5009922772622886357]": {
  8103. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8104. "Id": 5009922772622886357,
  8105. "sourceEndpoint": {
  8106. "nodeId": {
  8107. "id": 205251632179810
  8108. },
  8109. "slotId": {
  8110. "m_id": "{4E9CA61E-B866-4517-BBDE-92B6FA3C83F6}"
  8111. }
  8112. },
  8113. "targetEndpoint": {
  8114. "nodeId": {
  8115. "id": 205204387539554
  8116. },
  8117. "slotId": {
  8118. "m_id": "{F59958B8-DE63-42E4-A0B5-4F520AFF0184}"
  8119. }
  8120. }
  8121. }
  8122. }
  8123. },
  8124. {
  8125. "Id": {
  8126. "id": 205264517081698
  8127. },
  8128. "Name": "srcEndpoint=(InputHandler: Pressed), destEndpoint=(ScriptCanvas_Vector3Functions_FromValues: In)",
  8129. "Components": {
  8130. "Component_[3823511558539926100]": {
  8131. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8132. "Id": 3823511558539926100,
  8133. "sourceEndpoint": {
  8134. "nodeId": {
  8135. "id": 205251632179810
  8136. },
  8137. "slotId": {
  8138. "m_id": "{559646A4-99C5-45F4-BE33-3B2DC935BECC}"
  8139. }
  8140. },
  8141. "targetEndpoint": {
  8142. "nodeId": {
  8143. "id": 205204387539554
  8144. },
  8145. "slotId": {
  8146. "m_id": "{CEB10C54-F786-43F4-90F3-ADE94C778099}"
  8147. }
  8148. }
  8149. }
  8150. }
  8151. },
  8152. {
  8153. "Id": {
  8154. "id": 205268812048994
  8155. },
  8156. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: In)",
  8157. "Components": {
  8158. "Component_[1353605087954288973]": {
  8159. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8160. "Id": 1353605087954288973,
  8161. "sourceEndpoint": {
  8162. "nodeId": {
  8163. "id": 205135668062818
  8164. },
  8165. "slotId": {
  8166. "m_id": "{09773181-4A9B-4DB0-B992-671B13B771D7}"
  8167. }
  8168. },
  8169. "targetEndpoint": {
  8170. "nodeId": {
  8171. "id": 205152847932002
  8172. },
  8173. "slotId": {
  8174. "m_id": "{27EFAE22-85A3-456E-8373-A60E37691585}"
  8175. }
  8176. }
  8177. }
  8178. }
  8179. },
  8180. {
  8181. "Id": {
  8182. "id": 205273107016290
  8183. },
  8184. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Multiplier)",
  8185. "Components": {
  8186. "Component_[10845364388827104532]": {
  8187. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8188. "Id": 10845364388827104532,
  8189. "sourceEndpoint": {
  8190. "nodeId": {
  8191. "id": 205135668062818
  8192. },
  8193. "slotId": {
  8194. "m_id": "{ACA47E6F-C9D5-4FC4-9146-D4C74DB0A490}"
  8195. }
  8196. },
  8197. "targetEndpoint": {
  8198. "nodeId": {
  8199. "id": 205152847932002
  8200. },
  8201. "slotId": {
  8202. "m_id": "{EC718D34-50BB-4B11-AE45-20B6CB612861}"
  8203. }
  8204. }
  8205. }
  8206. }
  8207. },
  8208. {
  8209. "Id": {
  8210. "id": 205277401983586
  8211. },
  8212. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Out), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: In)",
  8213. "Components": {
  8214. "Component_[12377714998193607165]": {
  8215. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8216. "Id": 12377714998193607165,
  8217. "sourceEndpoint": {
  8218. "nodeId": {
  8219. "id": 205152847932002
  8220. },
  8221. "slotId": {
  8222. "m_id": "{11371474-DEF6-4E31-A343-8BFDC84BCE6C}"
  8223. }
  8224. },
  8225. "targetEndpoint": {
  8226. "nodeId": {
  8227. "id": 205178617735778
  8228. },
  8229. "slotId": {
  8230. "m_id": "{C1B72CBF-A387-4B8A-AE72-888B43395268}"
  8231. }
  8232. }
  8233. }
  8234. }
  8235. },
  8236. {
  8237. "Id": {
  8238. "id": 205281696950882
  8239. },
  8240. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Vector3), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Source)",
  8241. "Components": {
  8242. "Component_[17090450812708830804]": {
  8243. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8244. "Id": 17090450812708830804,
  8245. "sourceEndpoint": {
  8246. "nodeId": {
  8247. "id": 205152847932002
  8248. },
  8249. "slotId": {
  8250. "m_id": "{302C9B43-7F5E-4697-8122-76ECEB25D01A}"
  8251. }
  8252. },
  8253. "targetEndpoint": {
  8254. "nodeId": {
  8255. "id": 205178617735778
  8256. },
  8257. "slotId": {
  8258. "m_id": "{B426079D-5EC4-401D-847F-B56A08D5D149}"
  8259. }
  8260. }
  8261. }
  8262. }
  8263. },
  8264. {
  8265. "Id": {
  8266. "id": 205285991918178
  8267. },
  8268. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Out), destEndpoint=(MoveEntity: In)",
  8269. "Components": {
  8270. "Component_[11991641906822616911]": {
  8271. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8272. "Id": 11991641906822616911,
  8273. "sourceEndpoint": {
  8274. "nodeId": {
  8275. "id": 205178617735778
  8276. },
  8277. "slotId": {
  8278. "m_id": "{7F65A50C-C32E-4115-B327-6785FC9F1C39}"
  8279. }
  8280. },
  8281. "targetEndpoint": {
  8282. "nodeId": {
  8283. "id": 205066948586082
  8284. },
  8285. "slotId": {
  8286. "m_id": "{2F505C66-BD98-422A-93DF-3541566F650A}"
  8287. }
  8288. }
  8289. }
  8290. }
  8291. },
  8292. {
  8293. "Id": {
  8294. "id": 205290286885474
  8295. },
  8296. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Vector3), destEndpoint=(MoveEntity: Vector3: 1)",
  8297. "Components": {
  8298. "Component_[4167301345952607276]": {
  8299. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8300. "Id": 4167301345952607276,
  8301. "sourceEndpoint": {
  8302. "nodeId": {
  8303. "id": 205178617735778
  8304. },
  8305. "slotId": {
  8306. "m_id": "{86FFFDE8-0F05-48E7-B789-C09FAF69C8EB}"
  8307. }
  8308. },
  8309. "targetEndpoint": {
  8310. "nodeId": {
  8311. "id": 205066948586082
  8312. },
  8313. "slotId": {
  8314. "m_id": "{E8236739-8CB8-43F8-B92C-6E1C3CB3A42B}"
  8315. }
  8316. }
  8317. }
  8318. }
  8319. },
  8320. {
  8321. "Id": {
  8322. "id": 205294581852770
  8323. },
  8324. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_FromValues: Out), destEndpoint=(Set Variable: In)",
  8325. "Components": {
  8326. "Component_[4326662479601631270]": {
  8327. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8328. "Id": 4326662479601631270,
  8329. "sourceEndpoint": {
  8330. "nodeId": {
  8331. "id": 205204387539554
  8332. },
  8333. "slotId": {
  8334. "m_id": "{93D78606-1E9E-4D48-A86F-E576B0D1FB16}"
  8335. }
  8336. },
  8337. "targetEndpoint": {
  8338. "nodeId": {
  8339. "id": 205118488193634
  8340. },
  8341. "slotId": {
  8342. "m_id": "{F20C5790-E530-4CB9-943E-41026D612C95}"
  8343. }
  8344. }
  8345. }
  8346. }
  8347. },
  8348. {
  8349. "Id": {
  8350. "id": 205298876820066
  8351. },
  8352. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_FromValues: Vector3), destEndpoint=(Set Variable: Vector3)",
  8353. "Components": {
  8354. "Component_[7305311248899304280]": {
  8355. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8356. "Id": 7305311248899304280,
  8357. "sourceEndpoint": {
  8358. "nodeId": {
  8359. "id": 205204387539554
  8360. },
  8361. "slotId": {
  8362. "m_id": "{475F7C72-5859-4D7A-A19C-11B273242D39}"
  8363. }
  8364. },
  8365. "targetEndpoint": {
  8366. "nodeId": {
  8367. "id": 205118488193634
  8368. },
  8369. "slotId": {
  8370. "m_id": "{FEC8936B-8F6D-4C9C-8A89-209292FDE05F}"
  8371. }
  8372. }
  8373. }
  8374. }
  8375. },
  8376. {
  8377. "Id": {
  8378. "id": 205303171787362
  8379. },
  8380. "Name": "srcEndpoint=(InputHandler: Held), destEndpoint=(ScriptCanvas_Vector3Functions_FromValues: In)",
  8381. "Components": {
  8382. "Component_[10030325371322957801]": {
  8383. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8384. "Id": 10030325371322957801,
  8385. "sourceEndpoint": {
  8386. "nodeId": {
  8387. "id": 205251632179810
  8388. },
  8389. "slotId": {
  8390. "m_id": "{DA9AA08F-57DD-4E02-8CF4-4466BC9B4ACF}"
  8391. }
  8392. },
  8393. "targetEndpoint": {
  8394. "nodeId": {
  8395. "id": 205204387539554
  8396. },
  8397. "slotId": {
  8398. "m_id": "{CEB10C54-F786-43F4-90F3-ADE94C778099}"
  8399. }
  8400. }
  8401. }
  8402. }
  8403. },
  8404. {
  8405. "Id": {
  8406. "id": 205307466754658
  8407. },
  8408. "Name": "srcEndpoint=(InputHandler: Released), destEndpoint=(Set Variable: In)",
  8409. "Components": {
  8410. "Component_[12207541993443269872]": {
  8411. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8412. "Id": 12207541993443269872,
  8413. "sourceEndpoint": {
  8414. "nodeId": {
  8415. "id": 205251632179810
  8416. },
  8417. "slotId": {
  8418. "m_id": "{19DBECFA-F776-42CE-A690-8CBB006EF169}"
  8419. }
  8420. },
  8421. "targetEndpoint": {
  8422. "nodeId": {
  8423. "id": 205165732833890
  8424. },
  8425. "slotId": {
  8426. "m_id": "{60C5B9A0-3ECF-4E16-9138-5F6E9C41ECD5}"
  8427. }
  8428. }
  8429. }
  8430. }
  8431. },
  8432. {
  8433. "Id": {
  8434. "id": 205311761721954
  8435. },
  8436. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Get Variable: In)",
  8437. "Components": {
  8438. "Component_[4458618000323944108]": {
  8439. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8440. "Id": 4458618000323944108,
  8441. "sourceEndpoint": {
  8442. "nodeId": {
  8443. "id": 205217272441442
  8444. },
  8445. "slotId": {
  8446. "m_id": "{A0724C63-2562-460A-9561-61DC5F04DC2A}"
  8447. }
  8448. },
  8449. "targetEndpoint": {
  8450. "nodeId": {
  8451. "id": 205135668062818
  8452. },
  8453. "slotId": {
  8454. "m_id": "{943402EC-B15F-4C50-A03D-83C178F2CD74}"
  8455. }
  8456. }
  8457. }
  8458. }
  8459. },
  8460. {
  8461. "Id": {
  8462. "id": 205316056689250
  8463. },
  8464. "Name": "srcEndpoint=(Get Variable: Vector3), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Source)",
  8465. "Components": {
  8466. "Component_[13851526599303079582]": {
  8467. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8468. "Id": 13851526599303079582,
  8469. "sourceEndpoint": {
  8470. "nodeId": {
  8471. "id": 205217272441442
  8472. },
  8473. "slotId": {
  8474. "m_id": "{A6178C26-D92C-4EF2-8A2A-016EB649E6B8}"
  8475. }
  8476. },
  8477. "targetEndpoint": {
  8478. "nodeId": {
  8479. "id": 205152847932002
  8480. },
  8481. "slotId": {
  8482. "m_id": "{BD6C2932-F596-4677-BE76-08E6B8D95F4B}"
  8483. }
  8484. }
  8485. }
  8486. }
  8487. },
  8488. {
  8489. "Id": {
  8490. "id": 205320351656546
  8491. },
  8492. "Name": "srcEndpoint=(TickBus Handler: Number), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Multiplier)",
  8493. "Components": {
  8494. "Component_[1831640119817233679]": {
  8495. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8496. "Id": 1831640119817233679,
  8497. "sourceEndpoint": {
  8498. "nodeId": {
  8499. "id": 205144257997410
  8500. },
  8501. "slotId": {
  8502. "m_id": "{CA3CE2AF-28FA-44D2-A71E-5C1A17A74AA7}"
  8503. }
  8504. },
  8505. "targetEndpoint": {
  8506. "nodeId": {
  8507. "id": 205178617735778
  8508. },
  8509. "slotId": {
  8510. "m_id": "{68EBD83B-50D6-4D3E-B169-7E1920A30FDD}"
  8511. }
  8512. }
  8513. }
  8514. }
  8515. },
  8516. {
  8517. "Id": {
  8518. "id": 205324646623842
  8519. },
  8520. "Name": "srcEndpoint=(TickBus Handler: ExecutionSlot:OnTick), destEndpoint=(Get Variable: In)",
  8521. "Components": {
  8522. "Component_[8130072006467934388]": {
  8523. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8524. "Id": 8130072006467934388,
  8525. "sourceEndpoint": {
  8526. "nodeId": {
  8527. "id": 205144257997410
  8528. },
  8529. "slotId": {
  8530. "m_id": "{A3551E44-A96F-4D8F-96B1-B073F2B89AE6}"
  8531. }
  8532. },
  8533. "targetEndpoint": {
  8534. "nodeId": {
  8535. "id": 205217272441442
  8536. },
  8537. "slotId": {
  8538. "m_id": "{CD7F607C-B629-404A-B0BC-56356B525E1A}"
  8539. }
  8540. }
  8541. }
  8542. }
  8543. },
  8544. {
  8545. "Id": {
  8546. "id": 205328941591138
  8547. },
  8548. "Name": "srcEndpoint=(MoveEntity: Out), destEndpoint=(GetWorldX: In)",
  8549. "Components": {
  8550. "Component_[17064158163786848169]": {
  8551. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8552. "Id": 17064158163786848169,
  8553. "sourceEndpoint": {
  8554. "nodeId": {
  8555. "id": 205066948586082
  8556. },
  8557. "slotId": {
  8558. "m_id": "{9AF848F4-5E89-43B8-AEEA-C41ED5021F21}"
  8559. }
  8560. },
  8561. "targetEndpoint": {
  8562. "nodeId": {
  8563. "id": 205221567408738
  8564. },
  8565. "slotId": {
  8566. "m_id": "{57AC76D8-1610-4418-BCC5-CF91F7D69137}"
  8567. }
  8568. }
  8569. }
  8570. }
  8571. },
  8572. {
  8573. "Id": {
  8574. "id": 205333236558434
  8575. },
  8576. "Name": "srcEndpoint=(GetWorldX: Number), destEndpoint=(Clamp: Number: 0)",
  8577. "Components": {
  8578. "Component_[11564437165768410728]": {
  8579. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8580. "Id": 11564437165768410728,
  8581. "sourceEndpoint": {
  8582. "nodeId": {
  8583. "id": 205221567408738
  8584. },
  8585. "slotId": {
  8586. "m_id": "{663F8E91-3927-41F4-A939-911F796A97C3}"
  8587. }
  8588. },
  8589. "targetEndpoint": {
  8590. "nodeId": {
  8591. "id": 205127078128226
  8592. },
  8593. "slotId": {
  8594. "m_id": "{DE7886A7-5CD7-4DC7-84C0-CAA7CEB46B87}"
  8595. }
  8596. }
  8597. }
  8598. }
  8599. },
  8600. {
  8601. "Id": {
  8602. "id": 205337531525730
  8603. },
  8604. "Name": "srcEndpoint=(GetWorldX: Out), destEndpoint=(Clamp: In)",
  8605. "Components": {
  8606. "Component_[4123578144661537584]": {
  8607. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8608. "Id": 4123578144661537584,
  8609. "sourceEndpoint": {
  8610. "nodeId": {
  8611. "id": 205221567408738
  8612. },
  8613. "slotId": {
  8614. "m_id": "{3255924E-A751-4010-9AD3-3F4940326D7D}"
  8615. }
  8616. },
  8617. "targetEndpoint": {
  8618. "nodeId": {
  8619. "id": 205127078128226
  8620. },
  8621. "slotId": {
  8622. "m_id": "{34CAB309-D66B-412D-A460-4198916236C2}"
  8623. }
  8624. }
  8625. }
  8626. }
  8627. },
  8628. {
  8629. "Id": {
  8630. "id": 205341826493026
  8631. },
  8632. "Name": "srcEndpoint=(Clamp: Out), destEndpoint=(SetWorldX: In)",
  8633. "Components": {
  8634. "Component_[7134567709084005631]": {
  8635. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8636. "Id": 7134567709084005631,
  8637. "sourceEndpoint": {
  8638. "nodeId": {
  8639. "id": 205127078128226
  8640. },
  8641. "slotId": {
  8642. "m_id": "{0739B83D-7768-4152-9381-E283CE3C479F}"
  8643. }
  8644. },
  8645. "targetEndpoint": {
  8646. "nodeId": {
  8647. "id": 205238747277922
  8648. },
  8649. "slotId": {
  8650. "m_id": "{84ADA613-EB77-4DE7-8F5C-09457ED2638D}"
  8651. }
  8652. }
  8653. }
  8654. }
  8655. },
  8656. {
  8657. "Id": {
  8658. "id": 205346121460322
  8659. },
  8660. "Name": "srcEndpoint=(Clamp: Number), destEndpoint=(SetWorldX: Number: 1)",
  8661. "Components": {
  8662. "Component_[12592801793805121081]": {
  8663. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8664. "Id": 12592801793805121081,
  8665. "sourceEndpoint": {
  8666. "nodeId": {
  8667. "id": 205127078128226
  8668. },
  8669. "slotId": {
  8670. "m_id": "{0143B585-16B3-46FB-9F4B-F82BB8ABCB09}"
  8671. }
  8672. },
  8673. "targetEndpoint": {
  8674. "nodeId": {
  8675. "id": 205238747277922
  8676. },
  8677. "slotId": {
  8678. "m_id": "{A4A2F92B-1F07-403C-8C4B-B6148944FBBB}"
  8679. }
  8680. }
  8681. }
  8682. }
  8683. },
  8684. {
  8685. "Id": {
  8686. "id": 205350416427618
  8687. },
  8688. "Name": "srcEndpoint=(InputHandler: On Connect Event), destEndpoint=(SetWorldY: In)",
  8689. "Components": {
  8690. "Component_[2043647913394380202]": {
  8691. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8692. "Id": 2043647913394380202,
  8693. "sourceEndpoint": {
  8694. "nodeId": {
  8695. "id": 205251632179810
  8696. },
  8697. "slotId": {
  8698. "m_id": "{6351919B-95FE-4527-9B0E-30D6E6E6D1F3}"
  8699. }
  8700. },
  8701. "targetEndpoint": {
  8702. "nodeId": {
  8703. "id": 205045473749602
  8704. },
  8705. "slotId": {
  8706. "m_id": "{9C7C56F8-8A29-4783-97A7-74E491D8C42A}"
  8707. }
  8708. }
  8709. }
  8710. }
  8711. },
  8712. {
  8713. "Id": {
  8714. "id": 205354711394914
  8715. },
  8716. "Name": "srcEndpoint=(InputHandler: Pressed), destEndpoint=(CreateSpawnTicket: Create Ticket)",
  8717. "Components": {
  8718. "Component_[11038145364549630290]": {
  8719. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8720. "Id": 11038145364549630290,
  8721. "sourceEndpoint": {
  8722. "nodeId": {
  8723. "id": 205092718389858
  8724. },
  8725. "slotId": {
  8726. "m_id": "{B39B5ACE-0894-4FA8-9F8F-8F68B4EA34DD}"
  8727. }
  8728. },
  8729. "targetEndpoint": {
  8730. "nodeId": {
  8731. "id": 205114193226338
  8732. },
  8733. "slotId": {
  8734. "m_id": "{147421EE-8A83-49F0-9CA7-3EB758BAD3CE}"
  8735. }
  8736. }
  8737. }
  8738. }
  8739. },
  8740. {
  8741. "Id": {
  8742. "id": 205359006362210
  8743. },
  8744. "Name": "srcEndpoint=(InputHandler: Pressed), destEndpoint=(GetEntityName: In)",
  8745. "Components": {
  8746. "Component_[10352064406267562899]": {
  8747. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8748. "Id": 10352064406267562899,
  8749. "sourceEndpoint": {
  8750. "nodeId": {
  8751. "id": 205092718389858
  8752. },
  8753. "slotId": {
  8754. "m_id": "{B39B5ACE-0894-4FA8-9F8F-8F68B4EA34DD}"
  8755. }
  8756. },
  8757. "targetEndpoint": {
  8758. "nodeId": {
  8759. "id": 205054063684194
  8760. },
  8761. "slotId": {
  8762. "m_id": "{575F2840-DB94-4943-9EF1-6A67B78C7436}"
  8763. }
  8764. }
  8765. }
  8766. }
  8767. },
  8768. {
  8769. "Id": {
  8770. "id": 205363301329506
  8771. },
  8772. "Name": "srcEndpoint=(Get First Element: Value), destEndpoint=(SetWorldTranslation: EntityId: 0)",
  8773. "Components": {
  8774. "Component_[17422319608027629720]": {
  8775. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8776. "Id": 17422319608027629720,
  8777. "sourceEndpoint": {
  8778. "nodeId": {
  8779. "id": 205139963030114
  8780. },
  8781. "slotId": {
  8782. "m_id": "{ED5D3E44-6097-4858-B428-57053E0359A5}"
  8783. }
  8784. },
  8785. "targetEndpoint": {
  8786. "nodeId": {
  8787. "id": 205170027801186
  8788. },
  8789. "slotId": {
  8790. "m_id": "{093A5ACA-A520-4FD5-B557-659CBE809B6B}"
  8791. }
  8792. }
  8793. }
  8794. }
  8795. },
  8796. {
  8797. "Id": {
  8798. "id": 205367596296802
  8799. },
  8800. "Name": "srcEndpoint=(Get First Element: Out), destEndpoint=(GetWorldTranslation: In)",
  8801. "Components": {
  8802. "Component_[381344419872972421]": {
  8803. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8804. "Id": 381344419872972421,
  8805. "sourceEndpoint": {
  8806. "nodeId": {
  8807. "id": 205139963030114
  8808. },
  8809. "slotId": {
  8810. "m_id": "{9394FD8F-333C-490B-88F1-28FA6390000D}"
  8811. }
  8812. },
  8813. "targetEndpoint": {
  8814. "nodeId": {
  8815. "id": 205247337212514
  8816. },
  8817. "slotId": {
  8818. "m_id": "{8B75FD2F-8C48-4A2A-99E9-530EB3097725}"
  8819. }
  8820. }
  8821. }
  8822. }
  8823. },
  8824. {
  8825. "Id": {
  8826. "id": 205371891264098
  8827. },
  8828. "Name": "srcEndpoint=(GetWorldTranslation: Out), destEndpoint=(SetWorldTranslation: In)",
  8829. "Components": {
  8830. "Component_[10342715412350904010]": {
  8831. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8832. "Id": 10342715412350904010,
  8833. "sourceEndpoint": {
  8834. "nodeId": {
  8835. "id": 205247337212514
  8836. },
  8837. "slotId": {
  8838. "m_id": "{D41B17D0-299A-4B55-AED4-0B1DC307DAC2}"
  8839. }
  8840. },
  8841. "targetEndpoint": {
  8842. "nodeId": {
  8843. "id": 205170027801186
  8844. },
  8845. "slotId": {
  8846. "m_id": "{3AA76B11-62F7-4B93-A885-A0DB2D955E3E}"
  8847. }
  8848. }
  8849. }
  8850. }
  8851. },
  8852. {
  8853. "Id": {
  8854. "id": 205376186231394
  8855. },
  8856. "Name": "srcEndpoint=(GetWorldTranslation: Vector3), destEndpoint=(SetWorldTranslation: Vector3: 1)",
  8857. "Components": {
  8858. "Component_[84411604184709675]": {
  8859. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8860. "Id": 84411604184709675,
  8861. "sourceEndpoint": {
  8862. "nodeId": {
  8863. "id": 205247337212514
  8864. },
  8865. "slotId": {
  8866. "m_id": "{30113703-568B-4BF9-8E1C-C1F9B4CD5BBD}"
  8867. }
  8868. },
  8869. "targetEndpoint": {
  8870. "nodeId": {
  8871. "id": 205170027801186
  8872. },
  8873. "slotId": {
  8874. "m_id": "{54D44074-9F72-4BE8-AD85-36BB8C61E752}"
  8875. }
  8876. }
  8877. }
  8878. }
  8879. },
  8880. {
  8881. "Id": {
  8882. "id": 205380481198690
  8883. },
  8884. "Name": "srcEndpoint=(Spawn: On Spawn Completed), destEndpoint=(Get First Element: In)",
  8885. "Components": {
  8886. "Component_[11909709196303663750]": {
  8887. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8888. "Id": 11909709196303663750,
  8889. "sourceEndpoint": {
  8890. "nodeId": {
  8891. "id": 205041178782306
  8892. },
  8893. "slotId": {
  8894. "m_id": "{4C969CA1-BBE1-4836-A4DD-F21C0AF936C1}"
  8895. }
  8896. },
  8897. "targetEndpoint": {
  8898. "nodeId": {
  8899. "id": 205139963030114
  8900. },
  8901. "slotId": {
  8902. "m_id": "{567C18C4-7477-432D-BB1B-7A8576B8A89D}"
  8903. }
  8904. }
  8905. }
  8906. }
  8907. },
  8908. {
  8909. "Id": {
  8910. "id": 205384776165986
  8911. },
  8912. "Name": "srcEndpoint=(Spawn: SpawnedEntitiesList), destEndpoint=(Get First Element: Container)",
  8913. "Components": {
  8914. "Component_[6880657300545807635]": {
  8915. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8916. "Id": 6880657300545807635,
  8917. "sourceEndpoint": {
  8918. "nodeId": {
  8919. "id": 205041178782306
  8920. },
  8921. "slotId": {
  8922. "m_id": "{D4C52C15-CB2F-4A27-811A-9DC697B18B98}"
  8923. }
  8924. },
  8925. "targetEndpoint": {
  8926. "nodeId": {
  8927. "id": 205139963030114
  8928. },
  8929. "slotId": {
  8930. "m_id": "{F7634FA4-F7EF-4A56-BDA2-B91715D3E35C}"
  8931. }
  8932. }
  8933. }
  8934. }
  8935. },
  8936. {
  8937. "Id": {
  8938. "id": 205389071133282
  8939. },
  8940. "Name": "srcEndpoint=(CreateSpawnTicket: SpawnTicket), destEndpoint=(Spawn: SpawnTicket)",
  8941. "Components": {
  8942. "Component_[735257142520821329]": {
  8943. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8944. "Id": 735257142520821329,
  8945. "sourceEndpoint": {
  8946. "nodeId": {
  8947. "id": 205114193226338
  8948. },
  8949. "slotId": {
  8950. "m_id": "{D66B9024-E92E-4DE9-8385-882EF4F0D6B4}"
  8951. }
  8952. },
  8953. "targetEndpoint": {
  8954. "nodeId": {
  8955. "id": 205041178782306
  8956. },
  8957. "slotId": {
  8958. "m_id": "{D3CF3CEE-976D-4784-B9D1-B822E23B3151}"
  8959. }
  8960. }
  8961. }
  8962. }
  8963. },
  8964. {
  8965. "Id": {
  8966. "id": 205393366100578
  8967. },
  8968. "Name": "srcEndpoint=(GetPropertyValueFloat: Number), destEndpoint=(Add (+): Number 0)",
  8969. "Components": {
  8970. "Component_[10212901584801507117]": {
  8971. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8972. "Id": 10212901584801507117,
  8973. "sourceEndpoint": {
  8974. "nodeId": {
  8975. "id": 205234452310626
  8976. },
  8977. "slotId": {
  8978. "m_id": "{1D158A0E-D327-4C74-B5E0-DB87C399942E}"
  8979. }
  8980. },
  8981. "targetEndpoint": {
  8982. "nodeId": {
  8983. "id": 205174322768482
  8984. },
  8985. "slotId": {
  8986. "m_id": "{70E6CDF0-5323-45F7-8D04-61A6304DF852}"
  8987. }
  8988. }
  8989. }
  8990. }
  8991. },
  8992. {
  8993. "Id": {
  8994. "id": 205397661067874
  8995. },
  8996. "Name": "srcEndpoint=(GetOnTriggerEnterEvent: Event<AZStd::tuple<Crc32, int>, const TriggerEvent&>), destEndpoint=(On Trigger Enter event: On Trigger Enter event)",
  8997. "Components": {
  8998. "Component_[2164251950824516809]": {
  8999. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9000. "Id": 2164251950824516809,
  9001. "sourceEndpoint": {
  9002. "nodeId": {
  9003. "id": 205191502637666
  9004. },
  9005. "slotId": {
  9006. "m_id": "{39EEF333-BBCB-4171-AD3A-439412C5D9D3}"
  9007. }
  9008. },
  9009. "targetEndpoint": {
  9010. "nodeId": {
  9011. "id": 205208682506850
  9012. },
  9013. "slotId": {
  9014. "m_id": "{74B0E325-D857-49F2-846A-84590403405C}"
  9015. }
  9016. }
  9017. }
  9018. }
  9019. },
  9020. {
  9021. "Id": {
  9022. "id": 205401956035170
  9023. },
  9024. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(Timer: Stop)",
  9025. "Components": {
  9026. "Component_[5346981191588284721]": {
  9027. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9028. "Id": 5346981191588284721,
  9029. "sourceEndpoint": {
  9030. "nodeId": {
  9031. "id": 205058358651490
  9032. },
  9033. "slotId": {
  9034. "m_id": "{C8EFA3C5-9144-42E7-9CCA-3479B2A54CC1}"
  9035. }
  9036. },
  9037. "targetEndpoint": {
  9038. "nodeId": {
  9039. "id": 205225862376034
  9040. },
  9041. "slotId": {
  9042. "m_id": "{D51F0125-5BEB-4ADC-94EF-A3F789588DE5}"
  9043. }
  9044. }
  9045. }
  9046. }
  9047. },
  9048. {
  9049. "Id": {
  9050. "id": 205406251002466
  9051. },
  9052. "Name": "srcEndpoint=(FindMaterialAssignmentId: Out), destEndpoint=(TimeDelay: Start)",
  9053. "Components": {
  9054. "Component_[9948375937520361223]": {
  9055. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9056. "Id": 9948375937520361223,
  9057. "sourceEndpoint": {
  9058. "nodeId": {
  9059. "id": 205079833487970
  9060. },
  9061. "slotId": {
  9062. "m_id": "{BDEA51F0-9399-4AB3-BDBE-536173065D8C}"
  9063. }
  9064. },
  9065. "targetEndpoint": {
  9066. "nodeId": {
  9067. "id": 205058358651490
  9068. },
  9069. "slotId": {
  9070. "m_id": "{DDF86724-E0C3-40B7-9CB0-0B6038563971}"
  9071. }
  9072. }
  9073. }
  9074. }
  9075. },
  9076. {
  9077. "Id": {
  9078. "id": 205410545969762
  9079. },
  9080. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(SetPropertyValueFloat: In)",
  9081. "Components": {
  9082. "Component_[12668668533321029324]": {
  9083. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9084. "Id": 12668668533321029324,
  9085. "sourceEndpoint": {
  9086. "nodeId": {
  9087. "id": 205174322768482
  9088. },
  9089. "slotId": {
  9090. "m_id": "{DF1841FD-C2D2-42BB-A0F1-09D0AA8299E3}"
  9091. }
  9092. },
  9093. "targetEndpoint": {
  9094. "nodeId": {
  9095. "id": 205157142899298
  9096. },
  9097. "slotId": {
  9098. "m_id": "{1257B79C-471D-4DDD-B333-63A465CE8908}"
  9099. }
  9100. }
  9101. }
  9102. }
  9103. },
  9104. {
  9105. "Id": {
  9106. "id": 205414840937058
  9107. },
  9108. "Name": "srcEndpoint=(Timer: On Tick), destEndpoint=(GetPropertyValueFloat: In)",
  9109. "Components": {
  9110. "Component_[17620562572425442151]": {
  9111. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9112. "Id": 17620562572425442151,
  9113. "sourceEndpoint": {
  9114. "nodeId": {
  9115. "id": 205225862376034
  9116. },
  9117. "slotId": {
  9118. "m_id": "{86C3CCDB-1D88-4341-88D2-D32575E6D6D5}"
  9119. }
  9120. },
  9121. "targetEndpoint": {
  9122. "nodeId": {
  9123. "id": 205234452310626
  9124. },
  9125. "slotId": {
  9126. "m_id": "{9B0C5124-3B4A-41AF-9BF9-22EA0DED3EAF}"
  9127. }
  9128. }
  9129. }
  9130. }
  9131. },
  9132. {
  9133. "Id": {
  9134. "id": 205419135904354
  9135. },
  9136. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(SetPropertyValueFloat: Number: 3)",
  9137. "Components": {
  9138. "Component_[8762468417571572728]": {
  9139. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9140. "Id": 8762468417571572728,
  9141. "sourceEndpoint": {
  9142. "nodeId": {
  9143. "id": 205174322768482
  9144. },
  9145. "slotId": {
  9146. "m_id": "{67C8CCA1-7FE8-4419-B3FD-6D489C633C66}"
  9147. }
  9148. },
  9149. "targetEndpoint": {
  9150. "nodeId": {
  9151. "id": 205157142899298
  9152. },
  9153. "slotId": {
  9154. "m_id": "{45D7878F-5B0D-41D7-AAD7-E530E71EBDC6}"
  9155. }
  9156. }
  9157. }
  9158. }
  9159. },
  9160. {
  9161. "Id": {
  9162. "id": 205423430871650
  9163. },
  9164. "Name": "srcEndpoint=(TimeDelay: On Start), destEndpoint=(Timer: Start)",
  9165. "Components": {
  9166. "Component_[15201543126175990422]": {
  9167. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9168. "Id": 15201543126175990422,
  9169. "sourceEndpoint": {
  9170. "nodeId": {
  9171. "id": 205058358651490
  9172. },
  9173. "slotId": {
  9174. "m_id": "{321F3675-2AE9-4C11-A352-22041F613505}"
  9175. }
  9176. },
  9177. "targetEndpoint": {
  9178. "nodeId": {
  9179. "id": 205225862376034
  9180. },
  9181. "slotId": {
  9182. "m_id": "{0D63785C-FEB6-401E-94C8-25D180AF1A9A}"
  9183. }
  9184. }
  9185. }
  9186. }
  9187. },
  9188. {
  9189. "Id": {
  9190. "id": 205427725838946
  9191. },
  9192. "Name": "srcEndpoint=(GetPropertyValueFloat: Out), destEndpoint=(Add (+): In)",
  9193. "Components": {
  9194. "Component_[17276086819545256946]": {
  9195. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9196. "Id": 17276086819545256946,
  9197. "sourceEndpoint": {
  9198. "nodeId": {
  9199. "id": 205234452310626
  9200. },
  9201. "slotId": {
  9202. "m_id": "{B28BAE5E-1946-4E1C-BD17-1AF90190001D}"
  9203. }
  9204. },
  9205. "targetEndpoint": {
  9206. "nodeId": {
  9207. "id": 205174322768482
  9208. },
  9209. "slotId": {
  9210. "m_id": "{0ADF1456-02F4-4B06-9E86-CB1A21AE2B62}"
  9211. }
  9212. }
  9213. }
  9214. }
  9215. },
  9216. {
  9217. "Id": {
  9218. "id": 205432020806242
  9219. },
  9220. "Name": "srcEndpoint=(GetOnTriggerEnterEvent: Out), destEndpoint=(On Trigger Enter event: Connect)",
  9221. "Components": {
  9222. "Component_[10311558362689621588]": {
  9223. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9224. "Id": 10311558362689621588,
  9225. "sourceEndpoint": {
  9226. "nodeId": {
  9227. "id": 205191502637666
  9228. },
  9229. "slotId": {
  9230. "m_id": "{F5627DEC-0826-4C5C-BAE8-CFB5787C6988}"
  9231. }
  9232. },
  9233. "targetEndpoint": {
  9234. "nodeId": {
  9235. "id": 205208682506850
  9236. },
  9237. "slotId": {
  9238. "m_id": "{E4CEB4DE-1F8C-47C3-8890-225629A06A90}"
  9239. }
  9240. }
  9241. }
  9242. }
  9243. },
  9244. {
  9245. "Id": {
  9246. "id": 205436315773538
  9247. },
  9248. "Name": "srcEndpoint=(On Trigger Enter event: OnEvent), destEndpoint=(FindMaterialAssignmentId: In)",
  9249. "Components": {
  9250. "Component_[7201074998529666051]": {
  9251. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9252. "Id": 7201074998529666051,
  9253. "sourceEndpoint": {
  9254. "nodeId": {
  9255. "id": 205208682506850
  9256. },
  9257. "slotId": {
  9258. "m_id": "{A0B7A193-4374-4A20-AE2C-A32E23FBF4DA}"
  9259. }
  9260. },
  9261. "targetEndpoint": {
  9262. "nodeId": {
  9263. "id": 205079833487970
  9264. },
  9265. "slotId": {
  9266. "m_id": "{5B91F410-7BD8-44C1-B94C-0608D1DBD8C0}"
  9267. }
  9268. }
  9269. }
  9270. }
  9271. },
  9272. {
  9273. "Id": {
  9274. "id": 205440610740834
  9275. },
  9276. "Name": "srcEndpoint=(GetPropertyValueFloat: Out), destEndpoint=(Add (+): In)",
  9277. "Components": {
  9278. "Component_[7063941487362431922]": {
  9279. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9280. "Id": 7063941487362431922,
  9281. "sourceEndpoint": {
  9282. "nodeId": {
  9283. "id": 205187207670370
  9284. },
  9285. "slotId": {
  9286. "m_id": "{B28BAE5E-1946-4E1C-BD17-1AF90190001D}"
  9287. }
  9288. },
  9289. "targetEndpoint": {
  9290. "nodeId": {
  9291. "id": 205148552964706
  9292. },
  9293. "slotId": {
  9294. "m_id": "{0ADF1456-02F4-4B06-9E86-CB1A21AE2B62}"
  9295. }
  9296. }
  9297. }
  9298. }
  9299. },
  9300. {
  9301. "Id": {
  9302. "id": 205444905708130
  9303. },
  9304. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(SetPropertyValueFloat: In)",
  9305. "Components": {
  9306. "Component_[14138574814963298661]": {
  9307. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9308. "Id": 14138574814963298661,
  9309. "sourceEndpoint": {
  9310. "nodeId": {
  9311. "id": 205148552964706
  9312. },
  9313. "slotId": {
  9314. "m_id": "{DF1841FD-C2D2-42BB-A0F1-09D0AA8299E3}"
  9315. }
  9316. },
  9317. "targetEndpoint": {
  9318. "nodeId": {
  9319. "id": 205131373095522
  9320. },
  9321. "slotId": {
  9322. "m_id": "{1257B79C-471D-4DDD-B333-63A465CE8908}"
  9323. }
  9324. }
  9325. }
  9326. }
  9327. },
  9328. {
  9329. "Id": {
  9330. "id": 205449200675426
  9331. },
  9332. "Name": "srcEndpoint=(GetPropertyValueFloat: Number), destEndpoint=(Add (+): Number 0)",
  9333. "Components": {
  9334. "Component_[5979344004586186435]": {
  9335. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9336. "Id": 5979344004586186435,
  9337. "sourceEndpoint": {
  9338. "nodeId": {
  9339. "id": 205187207670370
  9340. },
  9341. "slotId": {
  9342. "m_id": "{1D158A0E-D327-4C74-B5E0-DB87C399942E}"
  9343. }
  9344. },
  9345. "targetEndpoint": {
  9346. "nodeId": {
  9347. "id": 205148552964706
  9348. },
  9349. "slotId": {
  9350. "m_id": "{70E6CDF0-5323-45F7-8D04-61A6304DF852}"
  9351. }
  9352. }
  9353. }
  9354. }
  9355. },
  9356. {
  9357. "Id": {
  9358. "id": 205453495642722
  9359. },
  9360. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(SetPropertyValueFloat: Number: 3)",
  9361. "Components": {
  9362. "Component_[2836311086703378230]": {
  9363. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9364. "Id": 2836311086703378230,
  9365. "sourceEndpoint": {
  9366. "nodeId": {
  9367. "id": 205148552964706
  9368. },
  9369. "slotId": {
  9370. "m_id": "{67C8CCA1-7FE8-4419-B3FD-6D489C633C66}"
  9371. }
  9372. },
  9373. "targetEndpoint": {
  9374. "nodeId": {
  9375. "id": 205131373095522
  9376. },
  9377. "slotId": {
  9378. "m_id": "{45D7878F-5B0D-41D7-AAD7-E530E71EBDC6}"
  9379. }
  9380. }
  9381. }
  9382. }
  9383. },
  9384. {
  9385. "Id": {
  9386. "id": 205457790610018
  9387. },
  9388. "Name": "srcEndpoint=(Timer: On Stop), destEndpoint=(TimeDelay: Start)",
  9389. "Components": {
  9390. "Component_[2951489466086376468]": {
  9391. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9392. "Id": 2951489466086376468,
  9393. "sourceEndpoint": {
  9394. "nodeId": {
  9395. "id": 205225862376034
  9396. },
  9397. "slotId": {
  9398. "m_id": "{6C46B1DF-4E76-4739-9058-3C7421679943}"
  9399. }
  9400. },
  9401. "targetEndpoint": {
  9402. "nodeId": {
  9403. "id": 205084128455266
  9404. },
  9405. "slotId": {
  9406. "m_id": "{DDF86724-E0C3-40B7-9CB0-0B6038563971}"
  9407. }
  9408. }
  9409. }
  9410. }
  9411. },
  9412. {
  9413. "Id": {
  9414. "id": 205462085577314
  9415. },
  9416. "Name": "srcEndpoint=(TimeDelay: On Start), destEndpoint=(Timer: Start)",
  9417. "Components": {
  9418. "Component_[6281901196651903487]": {
  9419. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9420. "Id": 6281901196651903487,
  9421. "sourceEndpoint": {
  9422. "nodeId": {
  9423. "id": 205084128455266
  9424. },
  9425. "slotId": {
  9426. "m_id": "{321F3675-2AE9-4C11-A352-22041F613505}"
  9427. }
  9428. },
  9429. "targetEndpoint": {
  9430. "nodeId": {
  9431. "id": 205182912703074
  9432. },
  9433. "slotId": {
  9434. "m_id": "{0D63785C-FEB6-401E-94C8-25D180AF1A9A}"
  9435. }
  9436. }
  9437. }
  9438. }
  9439. },
  9440. {
  9441. "Id": {
  9442. "id": 205466380544610
  9443. },
  9444. "Name": "srcEndpoint=(Timer: On Tick), destEndpoint=(GetPropertyValueFloat: In)",
  9445. "Components": {
  9446. "Component_[4827665247498216287]": {
  9447. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9448. "Id": 4827665247498216287,
  9449. "sourceEndpoint": {
  9450. "nodeId": {
  9451. "id": 205182912703074
  9452. },
  9453. "slotId": {
  9454. "m_id": "{86C3CCDB-1D88-4341-88D2-D32575E6D6D5}"
  9455. }
  9456. },
  9457. "targetEndpoint": {
  9458. "nodeId": {
  9459. "id": 205187207670370
  9460. },
  9461. "slotId": {
  9462. "m_id": "{9B0C5124-3B4A-41AF-9BF9-22EA0DED3EAF}"
  9463. }
  9464. }
  9465. }
  9466. }
  9467. },
  9468. {
  9469. "Id": {
  9470. "id": 205470675511906
  9471. },
  9472. "Name": "srcEndpoint=(Timer: On Stop), destEndpoint=(SetPropertyValueFloat: In)",
  9473. "Components": {
  9474. "Component_[14356512614885216337]": {
  9475. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9476. "Id": 14356512614885216337,
  9477. "sourceEndpoint": {
  9478. "nodeId": {
  9479. "id": 205182912703074
  9480. },
  9481. "slotId": {
  9482. "m_id": "{6C46B1DF-4E76-4739-9058-3C7421679943}"
  9483. }
  9484. },
  9485. "targetEndpoint": {
  9486. "nodeId": {
  9487. "id": 205101308324450
  9488. },
  9489. "slotId": {
  9490. "m_id": "{1257B79C-471D-4DDD-B333-63A465CE8908}"
  9491. }
  9492. }
  9493. }
  9494. }
  9495. },
  9496. {
  9497. "Id": {
  9498. "id": 205474970479202
  9499. },
  9500. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(Timer: Stop)",
  9501. "Components": {
  9502. "Component_[11436456304255413889]": {
  9503. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9504. "Id": 11436456304255413889,
  9505. "sourceEndpoint": {
  9506. "nodeId": {
  9507. "id": 205084128455266
  9508. },
  9509. "slotId": {
  9510. "m_id": "{C8EFA3C5-9144-42E7-9CCA-3479B2A54CC1}"
  9511. }
  9512. },
  9513. "targetEndpoint": {
  9514. "nodeId": {
  9515. "id": 205182912703074
  9516. },
  9517. "slotId": {
  9518. "m_id": "{D51F0125-5BEB-4ADC-94EF-A3F789588DE5}"
  9519. }
  9520. }
  9521. }
  9522. }
  9523. },
  9524. {
  9525. "Id": {
  9526. "id": 205483560413794
  9527. },
  9528. "Name": "srcEndpoint=(On Trigger Enter event: OnEvent), destEndpoint=(Send Script Event: In)",
  9529. "Components": {
  9530. "Component_[3610324122344310444]": {
  9531. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9532. "Id": 3610324122344310444,
  9533. "sourceEndpoint": {
  9534. "nodeId": {
  9535. "id": 205208682506850
  9536. },
  9537. "slotId": {
  9538. "m_id": "{A0B7A193-4374-4A20-AE2C-A32E23FBF4DA}"
  9539. }
  9540. },
  9541. "targetEndpoint": {
  9542. "nodeId": {
  9543. "id": 205212977474146
  9544. },
  9545. "slotId": {
  9546. "m_id": "{F684B5F4-3DA7-466B-A7BC-8D80F8BB41A8}"
  9547. }
  9548. }
  9549. }
  9550. }
  9551. },
  9552. {
  9553. "Id": {
  9554. "id": 205513625184866
  9555. },
  9556. "Name": "srcEndpoint=(On Trigger Enter event: Trigger Event), destEndpoint=(GetOtherEntityId: TriggerEvent)",
  9557. "Components": {
  9558. "Component_[12147607412797778171]": {
  9559. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9560. "Id": 12147607412797778171,
  9561. "sourceEndpoint": {
  9562. "nodeId": {
  9563. "id": 205208682506850
  9564. },
  9565. "slotId": {
  9566. "m_id": "{165727BE-6501-4870-9F21-7A157443D6BC}"
  9567. }
  9568. },
  9569. "targetEndpoint": {
  9570. "nodeId": {
  9571. "id": 205230157343330
  9572. },
  9573. "slotId": {
  9574. "m_id": "{C0388CC3-D291-4FA5-B9DD-BF27D839B80D}"
  9575. }
  9576. }
  9577. }
  9578. }
  9579. },
  9580. {
  9581. "Id": {
  9582. "id": 205517920152162
  9583. },
  9584. "Name": "srcEndpoint=(On Trigger Enter event: OnEvent), destEndpoint=(GetOtherEntityId: In)",
  9585. "Components": {
  9586. "Component_[6646811463978493022]": {
  9587. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9588. "Id": 6646811463978493022,
  9589. "sourceEndpoint": {
  9590. "nodeId": {
  9591. "id": 205208682506850
  9592. },
  9593. "slotId": {
  9594. "m_id": "{A0B7A193-4374-4A20-AE2C-A32E23FBF4DA}"
  9595. }
  9596. },
  9597. "targetEndpoint": {
  9598. "nodeId": {
  9599. "id": 205230157343330
  9600. },
  9601. "slotId": {
  9602. "m_id": "{9C56543D-1F31-43FD-A857-FA9DF965988C}"
  9603. }
  9604. }
  9605. }
  9606. }
  9607. },
  9608. {
  9609. "Id": {
  9610. "id": 205522215119458
  9611. },
  9612. "Name": "srcEndpoint=(FindMaterialAssignmentId: Out), destEndpoint=(Print: In)",
  9613. "Components": {
  9614. "Component_[15723436153872789225]": {
  9615. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9616. "Id": 15723436153872789225,
  9617. "sourceEndpoint": {
  9618. "nodeId": {
  9619. "id": 205079833487970
  9620. },
  9621. "slotId": {
  9622. "m_id": "{BDEA51F0-9399-4AB3-BDBE-536173065D8C}"
  9623. }
  9624. },
  9625. "targetEndpoint": {
  9626. "nodeId": {
  9627. "id": 205105603291746
  9628. },
  9629. "slotId": {
  9630. "m_id": "{4EB6E90B-D0AF-4327-AA82-E6BBFF304A8C}"
  9631. }
  9632. }
  9633. }
  9634. }
  9635. },
  9636. {
  9637. "Id": {
  9638. "id": 205535100021346
  9639. },
  9640. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(SetVisibility: In)",
  9641. "Components": {
  9642. "Component_[11036105638421487955]": {
  9643. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9644. "Id": 11036105638421487955,
  9645. "sourceEndpoint": {
  9646. "nodeId": {
  9647. "id": 205195797604962
  9648. },
  9649. "slotId": {
  9650. "m_id": "{139F2DFB-F0DB-47EA-95FC-EDB39BA22FB7}"
  9651. }
  9652. },
  9653. "targetEndpoint": {
  9654. "nodeId": {
  9655. "id": 205049768716898
  9656. },
  9657. "slotId": {
  9658. "m_id": "{F1064DA2-C654-4B9A-8CE1-4ED93C883AC0}"
  9659. }
  9660. }
  9661. }
  9662. }
  9663. },
  9664. {
  9665. "Id": {
  9666. "id": 205539394988642
  9667. },
  9668. "Name": "srcEndpoint=(SetVisibility: Out), destEndpoint=(InputHandler: Connect Event)",
  9669. "Components": {
  9670. "Component_[11510590085778590191]": {
  9671. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9672. "Id": 11510590085778590191,
  9673. "sourceEndpoint": {
  9674. "nodeId": {
  9675. "id": 205049768716898
  9676. },
  9677. "slotId": {
  9678. "m_id": "{3892A138-98BF-4209-A377-943B2601C809}"
  9679. }
  9680. },
  9681. "targetEndpoint": {
  9682. "nodeId": {
  9683. "id": 205251632179810
  9684. },
  9685. "slotId": {
  9686. "m_id": "{03511306-25FD-4AE1-9D02-06828EDBC45E}"
  9687. }
  9688. }
  9689. }
  9690. }
  9691. },
  9692. {
  9693. "Id": {
  9694. "id": 205543689955938
  9695. },
  9696. "Name": "srcEndpoint=(AnimGraphComponentNotificationBus Handler: ExecutionSlot:OnAnimGraphInstanceCreated), destEndpoint=(FindParameterName: In)",
  9697. "Components": {
  9698. "Component_[18000281664157843336]": {
  9699. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9700. "Id": 18000281664157843336,
  9701. "sourceEndpoint": {
  9702. "nodeId": {
  9703. "id": 205062653618786
  9704. },
  9705. "slotId": {
  9706. "m_id": "{27401DB0-B373-485B-B8FB-4505B933FE05}"
  9707. }
  9708. },
  9709. "targetEndpoint": {
  9710. "nodeId": {
  9711. "id": 205075538520674
  9712. },
  9713. "slotId": {
  9714. "m_id": "{B203DF5C-D528-42C1-BF0E-0729E5AC9A5A}"
  9715. }
  9716. }
  9717. }
  9718. }
  9719. },
  9720. {
  9721. "Id": {
  9722. "id": 205547984923234
  9723. },
  9724. "Name": "srcEndpoint=(FindParameterName: Out), destEndpoint=(SetNamedParameterBool: In)",
  9725. "Components": {
  9726. "Component_[2277601567998230585]": {
  9727. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9728. "Id": 2277601567998230585,
  9729. "sourceEndpoint": {
  9730. "nodeId": {
  9731. "id": 205075538520674
  9732. },
  9733. "slotId": {
  9734. "m_id": "{50824E8F-FC54-4F13-A546-7AB1AC14CBFB}"
  9735. }
  9736. },
  9737. "targetEndpoint": {
  9738. "nodeId": {
  9739. "id": 205161437866594
  9740. },
  9741. "slotId": {
  9742. "m_id": "{2B4B9BFE-18FA-4780-A79F-57497B5F160C}"
  9743. }
  9744. }
  9745. }
  9746. }
  9747. },
  9748. {
  9749. "Id": {
  9750. "id": 205552279890530
  9751. },
  9752. "Name": "srcEndpoint=(FindParameterName: String), destEndpoint=(SetNamedParameterBool: String: 1)",
  9753. "Components": {
  9754. "Component_[578258418096131220]": {
  9755. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9756. "Id": 578258418096131220,
  9757. "sourceEndpoint": {
  9758. "nodeId": {
  9759. "id": 205075538520674
  9760. },
  9761. "slotId": {
  9762. "m_id": "{9AA4E389-7875-4332-8758-94DFCCF4DF42}"
  9763. }
  9764. },
  9765. "targetEndpoint": {
  9766. "nodeId": {
  9767. "id": 205161437866594
  9768. },
  9769. "slotId": {
  9770. "m_id": "{E9B243EA-77E9-48A7-AF5E-4C5920B392FC}"
  9771. }
  9772. }
  9773. }
  9774. }
  9775. },
  9776. {
  9777. "Id": {
  9778. "id": 205560869825122
  9779. },
  9780. "Name": "srcEndpoint=(CreateSpawnTicket: Ticket Created), destEndpoint=(GetLocalTranslation: In)",
  9781. "Components": {
  9782. "Component_[6642966267600697784]": {
  9783. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9784. "Id": 6642966267600697784,
  9785. "sourceEndpoint": {
  9786. "nodeId": {
  9787. "id": 205114193226338
  9788. },
  9789. "slotId": {
  9790. "m_id": "{1CA3DD5C-6905-4835-A5CC-441CBC79C444}"
  9791. }
  9792. },
  9793. "targetEndpoint": {
  9794. "nodeId": {
  9795. "id": 205071243553378
  9796. },
  9797. "slotId": {
  9798. "m_id": "{9F6C90EA-1C89-4E46-B369-4C70EBBA3D2C}"
  9799. }
  9800. }
  9801. }
  9802. }
  9803. },
  9804. {
  9805. "Id": {
  9806. "id": 205565164792418
  9807. },
  9808. "Name": "srcEndpoint=(GetLocalTranslation: Vector3), destEndpoint=(Spawn: Local Translation)",
  9809. "Components": {
  9810. "Component_[12009238991956714343]": {
  9811. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9812. "Id": 12009238991956714343,
  9813. "sourceEndpoint": {
  9814. "nodeId": {
  9815. "id": 205071243553378
  9816. },
  9817. "slotId": {
  9818. "m_id": "{66FADACE-50E5-4C82-9ECF-4A068D7A4AFA}"
  9819. }
  9820. },
  9821. "targetEndpoint": {
  9822. "nodeId": {
  9823. "id": 205041178782306
  9824. },
  9825. "slotId": {
  9826. "m_id": "{B8E8900A-A63E-45C4-9149-D39AA669671D}"
  9827. }
  9828. }
  9829. }
  9830. }
  9831. },
  9832. {
  9833. "Id": {
  9834. "id": 205569459759714
  9835. },
  9836. "Name": "srcEndpoint=(GetLocalTranslation: Out), destEndpoint=(Spawn: Request Spawn)",
  9837. "Components": {
  9838. "Component_[2295362088989323650]": {
  9839. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9840. "Id": 2295362088989323650,
  9841. "sourceEndpoint": {
  9842. "nodeId": {
  9843. "id": 205071243553378
  9844. },
  9845. "slotId": {
  9846. "m_id": "{B4A5BBC5-A3F0-4D6A-B9A8-2966BCD3C739}"
  9847. }
  9848. },
  9849. "targetEndpoint": {
  9850. "nodeId": {
  9851. "id": 205041178782306
  9852. },
  9853. "slotId": {
  9854. "m_id": "{B50C3923-7222-415C-AC7F-C9168B0D2A6E}"
  9855. }
  9856. }
  9857. }
  9858. }
  9859. },
  9860. {
  9861. "Id": {
  9862. "id": 205573754727010
  9863. },
  9864. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Receive Script Event: Connect)",
  9865. "Components": {
  9866. "Component_[17270654606582379548]": {
  9867. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9868. "Id": 17270654606582379548,
  9869. "sourceEndpoint": {
  9870. "nodeId": {
  9871. "id": 205122783160930
  9872. },
  9873. "slotId": {
  9874. "m_id": "{725DADA0-F5C3-44A6-995B-E4CEC74D62A2}"
  9875. }
  9876. },
  9877. "targetEndpoint": {
  9878. "nodeId": {
  9879. "id": 205088423422562
  9880. },
  9881. "slotId": {
  9882. "m_id": "{BA5932AC-727D-48FC-9401-D456442EA6D0}"
  9883. }
  9884. }
  9885. }
  9886. }
  9887. },
  9888. {
  9889. "Id": {
  9890. "id": 205578049694306
  9891. },
  9892. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:PlayerSelfDestuct), destEndpoint=(DestroyGameEntityAndDescendants: In)",
  9893. "Components": {
  9894. "Component_[11090826250332833895]": {
  9895. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9896. "Id": 11090826250332833895,
  9897. "sourceEndpoint": {
  9898. "nodeId": {
  9899. "id": 205088423422562
  9900. },
  9901. "slotId": {
  9902. "m_id": "{0A581612-BC39-429E-A014-926A390365BD}"
  9903. }
  9904. },
  9905. "targetEndpoint": {
  9906. "nodeId": {
  9907. "id": 205109898259042
  9908. },
  9909. "slotId": {
  9910. "m_id": "{59D3D51A-3F3A-4544-9480-0C6D1DBD6A9A}"
  9911. }
  9912. }
  9913. }
  9914. }
  9915. },
  9916. {
  9917. "Id": {
  9918. "id": 259952335661666
  9919. },
  9920. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(GetOnTriggerEnterEvent: In)",
  9921. "Components": {
  9922. "Component_[9939280848246783125]": {
  9923. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9924. "Id": 9939280848246783125,
  9925. "sourceEndpoint": {
  9926. "nodeId": {
  9927. "id": 205122783160930
  9928. },
  9929. "slotId": {
  9930. "m_id": "{725DADA0-F5C3-44A6-995B-E4CEC74D62A2}"
  9931. }
  9932. },
  9933. "targetEndpoint": {
  9934. "nodeId": {
  9935. "id": 205191502637666
  9936. },
  9937. "slotId": {
  9938. "m_id": "{48408F6E-6010-4696-AB56-7FF5E0F7F527}"
  9939. }
  9940. }
  9941. }
  9942. }
  9943. },
  9944. {
  9945. "Id": {
  9946. "id": 260867163695714
  9947. },
  9948. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(AnimGraphComponentNotificationBus Handler: Connect)",
  9949. "Components": {
  9950. "Component_[13819057648845716696]": {
  9951. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9952. "Id": 13819057648845716696,
  9953. "sourceEndpoint": {
  9954. "nodeId": {
  9955. "id": 205122783160930
  9956. },
  9957. "slotId": {
  9958. "m_id": "{725DADA0-F5C3-44A6-995B-E4CEC74D62A2}"
  9959. }
  9960. },
  9961. "targetEndpoint": {
  9962. "nodeId": {
  9963. "id": 205062653618786
  9964. },
  9965. "slotId": {
  9966. "m_id": "{E76B1615-72A3-44F7-B4AB-5E9A182A064D}"
  9967. }
  9968. }
  9969. }
  9970. }
  9971. },
  9972. {
  9973. "Id": {
  9974. "id": 262121294146146
  9975. },
  9976. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(EntityBus Handler: Connect)",
  9977. "Components": {
  9978. "Component_[8534607191097906824]": {
  9979. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  9980. "Id": 8534607191097906824,
  9981. "sourceEndpoint": {
  9982. "nodeId": {
  9983. "id": 205122783160930
  9984. },
  9985. "slotId": {
  9986. "m_id": "{725DADA0-F5C3-44A6-995B-E4CEC74D62A2}"
  9987. }
  9988. },
  9989. "targetEndpoint": {
  9990. "nodeId": {
  9991. "id": 205195797604962
  9992. },
  9993. "slotId": {
  9994. "m_id": "{82BDCC06-DFD4-4901-9397-5DBB409FA174}"
  9995. }
  9996. }
  9997. }
  9998. }
  9999. },
  10000. {
  10001. "Id": {
  10002. "id": 263487093746274
  10003. },
  10004. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(TickBus Handler: Connect)",
  10005. "Components": {
  10006. "Component_[1461302260323806]": {
  10007. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  10008. "Id": 1461302260323806,
  10009. "sourceEndpoint": {
  10010. "nodeId": {
  10011. "id": 205122783160930
  10012. },
  10013. "slotId": {
  10014. "m_id": "{725DADA0-F5C3-44A6-995B-E4CEC74D62A2}"
  10015. }
  10016. },
  10017. "targetEndpoint": {
  10018. "nodeId": {
  10019. "id": 205144257997410
  10020. },
  10021. "slotId": {
  10022. "m_id": "{4FA55252-AB2F-46A1-86AB-6DE662A7B379}"
  10023. }
  10024. }
  10025. }
  10026. }
  10027. },
  10028. {
  10029. "Id": {
  10030. "id": 266746973923938
  10031. },
  10032. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(InputHandler: Connect Event)",
  10033. "Components": {
  10034. "Component_[1660115764792842724]": {
  10035. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  10036. "Id": 1660115764792842724,
  10037. "sourceEndpoint": {
  10038. "nodeId": {
  10039. "id": 205122783160930
  10040. },
  10041. "slotId": {
  10042. "m_id": "{725DADA0-F5C3-44A6-995B-E4CEC74D62A2}"
  10043. }
  10044. },
  10045. "targetEndpoint": {
  10046. "nodeId": {
  10047. "id": 205092718389858
  10048. },
  10049. "slotId": {
  10050. "m_id": "{1B5DD7A8-A4DF-4662-9A73-196DD4A17389}"
  10051. }
  10052. }
  10053. }
  10054. }
  10055. }
  10056. ],
  10057. "m_scriptEventAssets": [
  10058. [
  10059. {
  10060. "id": 205088423422562
  10061. },
  10062. {}
  10063. ]
  10064. ]
  10065. },
  10066. "versionData": {
  10067. "_grammarVersion": 1,
  10068. "_runtimeVersion": 1,
  10069. "_fileVersion": 1
  10070. },
  10071. "m_variableCounter": 16,
  10072. "GraphCanvasData": [
  10073. {
  10074. "Key": {
  10075. "id": 205036883815010
  10076. },
  10077. "Value": {
  10078. "ComponentData": {
  10079. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  10080. "$type": "SceneComponentSaveData",
  10081. "Constructs": [
  10082. {
  10083. "Type": 3,
  10084. "DataContainer": {
  10085. "ComponentData": {
  10086. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10087. "$type": "NodeSaveData"
  10088. },
  10089. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  10090. "$type": "CommentNodeTextSaveData",
  10091. "Comment": "Hit FX",
  10092. "BackgroundColor": [
  10093. 0.7765011191368103,
  10094. 0.9799954295158386,
  10095. 0.6500037908554077
  10096. ],
  10097. "FontSettings": {
  10098. "PixelSize": 16
  10099. }
  10100. },
  10101. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  10102. "$type": "NodeGroupFrameComponentSaveData",
  10103. "DisplayHeight": 1080.0,
  10104. "DisplayWidth": 4460.0,
  10105. "PersistentGroupedId": [
  10106. "{567CEF1E-0FBF-4CF6-A91C-DFEE4C9E2837}",
  10107. "{E65D5B61-0CF6-4D8F-AA27-48C74C60C7BB}",
  10108. "{B5594735-0DB1-4ECE-8589-B7DDE5202B90}",
  10109. "{4AD03938-CB36-492E-A90F-75663F2C9AE3}",
  10110. "{744C93D2-0116-4CAC-9A47-59D806CFA66F}",
  10111. "{138BDC65-DA5D-409E-901B-A45271635F18}",
  10112. "{D741B7B2-44D7-425F-8A91-8DD4F49F7771}",
  10113. "{63EBDF33-D67D-42D8-95BB-142EBB688924}",
  10114. "{BF57E22A-FDFB-4987-ADAD-57D7802B4EC4}",
  10115. "{91386F1F-B5DC-43BA-A522-F9D37BC7328E}",
  10116. "{34BA4083-D709-4EEB-99D2-39E98861F61E}",
  10117. "{744E58A9-2C57-4FE2-B987-E87B3A340E9A}",
  10118. "{0830C0D7-9947-464E-B307-AD6468509239}",
  10119. "{37ED113D-7A27-4C0C-A366-47010ACAA307}",
  10120. "{2BCFEF70-109B-4CF3-BF00-4C59D764964D}",
  10121. "{FD024DE8-3BA2-4C1A-8334-AE8624F493E1}",
  10122. "{0EF0AFC8-8FA8-4F5E-8FDA-E5EF04BC7F81}"
  10123. ]
  10124. },
  10125. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10126. "$type": "GeometrySaveData",
  10127. "Position": [
  10128. 160.0,
  10129. -820.0
  10130. ]
  10131. },
  10132. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10133. "$type": "StylingComponentSaveData"
  10134. },
  10135. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10136. "$type": "PersistentIdComponentSaveData",
  10137. "PersistentId": "{0D1AC19F-55C6-4C05-9B01-EE2CEE1E5193}"
  10138. }
  10139. }
  10140. }
  10141. },
  10142. {
  10143. "Type": 3,
  10144. "DataContainer": {
  10145. "ComponentData": {
  10146. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10147. "$type": "NodeSaveData"
  10148. },
  10149. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  10150. "$type": "CommentNodeTextSaveData",
  10151. "Comment": "Movement Horizontal",
  10152. "BackgroundColor": [
  10153. 0.9800000190734863,
  10154. 0.9700000286102295,
  10155. 0.6499999761581421
  10156. ],
  10157. "FontSettings": {
  10158. "PixelSize": 16
  10159. }
  10160. },
  10161. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  10162. "$type": "NodeGroupFrameComponentSaveData",
  10163. "DisplayHeight": 823.0,
  10164. "DisplayWidth": 1700.0,
  10165. "PersistentGroupedId": [
  10166. "{DC3BFF4E-D438-4B35-9D9F-FC16229B8710}",
  10167. "{24857116-E526-4EE6-B4DB-B814C88D581D}",
  10168. "{6CB20AA4-8F6C-4610-A725-A771F4469D4C}",
  10169. "{4B1DAF24-66C4-4C23-B2C6-2FFE324F74C9}",
  10170. "{365B4D72-72FE-4684-8171-EE5C09489D79}",
  10171. "{5CA0AD05-3D79-4ACE-A5E6-CF972CE188D6}",
  10172. "{CDBD23AD-E891-4E96-A483-FACAD80DC18B}"
  10173. ]
  10174. },
  10175. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10176. "$type": "GeometrySaveData",
  10177. "Position": [
  10178. 180.0,
  10179. 340.0
  10180. ]
  10181. },
  10182. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10183. "$type": "StylingComponentSaveData"
  10184. },
  10185. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10186. "$type": "PersistentIdComponentSaveData",
  10187. "PersistentId": "{B86960FD-104F-4F87-9A0D-1302CEC31BFB}"
  10188. }
  10189. }
  10190. }
  10191. },
  10192. {
  10193. "Type": 3,
  10194. "DataContainer": {
  10195. "ComponentData": {
  10196. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10197. "$type": "NodeSaveData"
  10198. },
  10199. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  10200. "$type": "CommentNodeTextSaveData",
  10201. "Comment": "Animation",
  10202. "BackgroundColor": [
  10203. 0.9800000190734863,
  10204. 0.9700000286102295,
  10205. 0.6499999761581421
  10206. ],
  10207. "FontSettings": {
  10208. "PixelSize": 16
  10209. }
  10210. },
  10211. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  10212. "$type": "NodeGroupFrameComponentSaveData",
  10213. "DisplayHeight": 420.0,
  10214. "DisplayWidth": 1080.0,
  10215. "PersistentGroupedId": [
  10216. "{DFF0B9D1-2849-439F-990F-EBDA457CA78D}",
  10217. "{8C126FDD-F03E-42BA-8F51-4C2490000BF5}",
  10218. "{C8DD7A98-6225-47CD-A14E-02547CEDBE90}"
  10219. ]
  10220. },
  10221. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10222. "$type": "GeometrySaveData",
  10223. "Position": [
  10224. -1160.0,
  10225. -1140.0
  10226. ]
  10227. },
  10228. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10229. "$type": "StylingComponentSaveData"
  10230. },
  10231. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10232. "$type": "PersistentIdComponentSaveData",
  10233. "PersistentId": "{9EA6841A-E1EC-4E9B-9FE6-E3538CE16309}"
  10234. }
  10235. }
  10236. }
  10237. },
  10238. {
  10239. "Type": 3,
  10240. "DataContainer": {
  10241. "ComponentData": {
  10242. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10243. "$type": "NodeSaveData"
  10244. },
  10245. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  10246. "$type": "CommentNodeTextSaveData",
  10247. "Comment": "New Group",
  10248. "BackgroundColor": [
  10249. 0.9800000190734863,
  10250. 0.9700000286102295,
  10251. 0.6499999761581421
  10252. ],
  10253. "FontSettings": {
  10254. "PixelSize": 16
  10255. }
  10256. },
  10257. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  10258. "$type": "NodeGroupFrameComponentSaveData",
  10259. "DisplayHeight": 423.0,
  10260. "DisplayWidth": 2880.0,
  10261. "PersistentGroupedId": [
  10262. "{A812408B-DB46-4768-8CC1-FF4973743F35}",
  10263. "{C31DA8DA-64F9-495C-84B6-95453663998B}",
  10264. "{DE1F7DA7-4484-47F8-9119-3F09153DBDD7}",
  10265. "{CB7F3370-F1E2-4696-A29F-C4CC910326F4}",
  10266. "{E26BB349-84FF-4017-9C18-7B1CB78E19A3}",
  10267. "{E8030118-08F5-412B-9A20-3D7610EDBA81}",
  10268. "{965CB25E-5027-4A87-8029-761A9D772A1A}",
  10269. "{64A784B5-EF31-46EE-AD9D-6ABBDE2B3C3E}",
  10270. "{01703180-1799-40AA-B8AC-BB0A09B6ADD5}"
  10271. ]
  10272. },
  10273. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10274. "$type": "GeometrySaveData",
  10275. "Position": [
  10276. 200.0,
  10277. 1200.0
  10278. ]
  10279. },
  10280. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10281. "$type": "StylingComponentSaveData"
  10282. },
  10283. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10284. "$type": "PersistentIdComponentSaveData",
  10285. "PersistentId": "{EF95756E-8562-4F44-98B9-8B193767531D}"
  10286. }
  10287. }
  10288. }
  10289. },
  10290. {
  10291. "Type": 3,
  10292. "DataContainer": {
  10293. "ComponentData": {
  10294. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10295. "$type": "NodeSaveData"
  10296. },
  10297. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  10298. "$type": "CommentNodeTextSaveData",
  10299. "Comment": "Fire Rocket",
  10300. "BackgroundColor": [
  10301. 0.9800000190734863,
  10302. 0.9700000286102295,
  10303. 0.6499999761581421
  10304. ],
  10305. "FontSettings": {
  10306. "PixelSize": 16
  10307. }
  10308. },
  10309. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  10310. "$type": "NodeGroupFrameComponentSaveData",
  10311. "DisplayHeight": 690.0,
  10312. "DisplayWidth": 3080.0,
  10313. "PersistentGroupedId": [
  10314. "{3519E0FB-B49A-43EF-B57E-9C1B21BD72D4}",
  10315. "{2D4D757D-38C5-4766-A97F-AF5E116D6946}",
  10316. "{8F6A06F3-D5F8-4173-B5E0-508797FE6DE2}",
  10317. "{F479F3D6-ACB3-44F9-81FA-22C9A082E9E9}",
  10318. "{59693DA3-BD0D-4868-A54A-6515FCFF83E4}",
  10319. "{B8841A6C-1583-45C1-B819-EE499841282D}",
  10320. "{81B2F860-81F1-4D08-9A46-F6D2192E711A}",
  10321. "{54E212F5-64CC-4591-950C-56E3BC7268DD}"
  10322. ]
  10323. },
  10324. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10325. "$type": "GeometrySaveData",
  10326. "Position": [
  10327. 180.0,
  10328. 1700.0
  10329. ]
  10330. },
  10331. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10332. "$type": "StylingComponentSaveData"
  10333. },
  10334. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10335. "$type": "PersistentIdComponentSaveData",
  10336. "PersistentId": "{CF8CB31D-7920-4776-ADDC-21D8F0C3A289}"
  10337. }
  10338. }
  10339. }
  10340. }
  10341. ],
  10342. "ViewParams": {
  10343. "Scale": 0.5377283150871451,
  10344. "AnchorX": -2149.784423828125,
  10345. "AnchorY": -5.579025745391846
  10346. }
  10347. }
  10348. }
  10349. }
  10350. },
  10351. {
  10352. "Key": {
  10353. "id": 205041178782306
  10354. },
  10355. "Value": {
  10356. "ComponentData": {
  10357. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10358. "$type": "NodeSaveData"
  10359. },
  10360. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10361. "$type": "GeneralNodeTitleComponentSaveData",
  10362. "PaletteOverride": "DefaultNodeTitlePalette"
  10363. },
  10364. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10365. "$type": "GeometrySaveData",
  10366. "Position": [
  10367. 1420.0,
  10368. 1980.0
  10369. ]
  10370. },
  10371. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10372. "$type": "StylingComponentSaveData"
  10373. },
  10374. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10375. "$type": "PersistentIdComponentSaveData",
  10376. "PersistentId": "{2D4D757D-38C5-4766-A97F-AF5E116D6946}"
  10377. }
  10378. }
  10379. }
  10380. },
  10381. {
  10382. "Key": {
  10383. "id": 205045473749602
  10384. },
  10385. "Value": {
  10386. "ComponentData": {
  10387. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10388. "$type": "NodeSaveData"
  10389. },
  10390. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10391. "$type": "GeneralNodeTitleComponentSaveData",
  10392. "PaletteOverride": "MethodNodeTitlePalette"
  10393. },
  10394. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10395. "$type": "GeometrySaveData",
  10396. "Position": [
  10397. 1180.0,
  10398. 400.0
  10399. ]
  10400. },
  10401. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10402. "$type": "StylingComponentSaveData",
  10403. "SubStyle": ".method"
  10404. },
  10405. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10406. "$type": "PersistentIdComponentSaveData",
  10407. "PersistentId": "{5CA0AD05-3D79-4ACE-A5E6-CF972CE188D6}"
  10408. }
  10409. }
  10410. }
  10411. },
  10412. {
  10413. "Key": {
  10414. "id": 205049768716898
  10415. },
  10416. "Value": {
  10417. "ComponentData": {
  10418. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10419. "$type": "NodeSaveData"
  10420. },
  10421. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10422. "$type": "GeneralNodeTitleComponentSaveData",
  10423. "PaletteOverride": "MethodNodeTitlePalette"
  10424. },
  10425. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10426. "$type": "GeometrySaveData",
  10427. "Position": [
  10428. 540.0,
  10429. 420.0
  10430. ]
  10431. },
  10432. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10433. "$type": "StylingComponentSaveData",
  10434. "SubStyle": ".method"
  10435. },
  10436. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10437. "$type": "PersistentIdComponentSaveData",
  10438. "PersistentId": "{CDBD23AD-E891-4E96-A483-FACAD80DC18B}"
  10439. }
  10440. }
  10441. }
  10442. },
  10443. {
  10444. "Key": {
  10445. "id": 205054063684194
  10446. },
  10447. "Value": {
  10448. "ComponentData": {
  10449. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10450. "$type": "NodeSaveData"
  10451. },
  10452. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10453. "$type": "GeneralNodeTitleComponentSaveData",
  10454. "PaletteOverride": "MethodNodeTitlePalette"
  10455. },
  10456. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10457. "$type": "GeometrySaveData",
  10458. "Position": [
  10459. 920.0,
  10460. 2000.0
  10461. ]
  10462. },
  10463. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10464. "$type": "StylingComponentSaveData",
  10465. "SubStyle": ".method"
  10466. },
  10467. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10468. "$type": "PersistentIdComponentSaveData",
  10469. "PersistentId": "{8F6A06F3-D5F8-4173-B5E0-508797FE6DE2}"
  10470. }
  10471. }
  10472. }
  10473. },
  10474. {
  10475. "Key": {
  10476. "id": 205058358651490
  10477. },
  10478. "Value": {
  10479. "ComponentData": {
  10480. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10481. "$type": "NodeSaveData"
  10482. },
  10483. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10484. "$type": "GeneralNodeTitleComponentSaveData",
  10485. "PaletteOverride": "TimeNodeTitlePalette"
  10486. },
  10487. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10488. "$type": "GeometrySaveData",
  10489. "Position": [
  10490. 1660.0,
  10491. -700.0
  10492. ]
  10493. },
  10494. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10495. "$type": "StylingComponentSaveData"
  10496. },
  10497. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10498. "$type": "PersistentIdComponentSaveData",
  10499. "PersistentId": "{2BCFEF70-109B-4CF3-BF00-4C59D764964D}"
  10500. }
  10501. }
  10502. }
  10503. },
  10504. {
  10505. "Key": {
  10506. "id": 205062653618786
  10507. },
  10508. "Value": {
  10509. "ComponentData": {
  10510. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10511. "$type": "NodeSaveData"
  10512. },
  10513. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10514. "$type": "GeometrySaveData",
  10515. "Position": [
  10516. -1140.0,
  10517. -1080.0
  10518. ]
  10519. },
  10520. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  10521. "$type": "EBusHandlerNodeDescriptorSaveData",
  10522. "EventIds": [
  10523. {
  10524. "Value": 2316710472
  10525. }
  10526. ]
  10527. },
  10528. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10529. "$type": "StylingComponentSaveData"
  10530. },
  10531. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10532. "$type": "PersistentIdComponentSaveData",
  10533. "PersistentId": "{8C126FDD-F03E-42BA-8F51-4C2490000BF5}"
  10534. }
  10535. }
  10536. }
  10537. },
  10538. {
  10539. "Key": {
  10540. "id": 205066948586082
  10541. },
  10542. "Value": {
  10543. "ComponentData": {
  10544. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10545. "$type": "NodeSaveData"
  10546. },
  10547. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10548. "$type": "GeneralNodeTitleComponentSaveData",
  10549. "PaletteOverride": "MethodNodeTitlePalette"
  10550. },
  10551. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10552. "$type": "GeometrySaveData",
  10553. "Position": [
  10554. 1700.0,
  10555. 1300.0
  10556. ]
  10557. },
  10558. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10559. "$type": "StylingComponentSaveData",
  10560. "SubStyle": ".method"
  10561. },
  10562. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10563. "$type": "PersistentIdComponentSaveData",
  10564. "PersistentId": "{E26BB349-84FF-4017-9C18-7B1CB78E19A3}"
  10565. }
  10566. }
  10567. }
  10568. },
  10569. {
  10570. "Key": {
  10571. "id": 205071243553378
  10572. },
  10573. "Value": {
  10574. "ComponentData": {
  10575. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10576. "$type": "NodeSaveData"
  10577. },
  10578. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10579. "$type": "GeneralNodeTitleComponentSaveData",
  10580. "PaletteOverride": "MethodNodeTitlePalette"
  10581. },
  10582. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10583. "$type": "GeometrySaveData",
  10584. "Position": [
  10585. 1420.0,
  10586. 1800.0
  10587. ]
  10588. },
  10589. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10590. "$type": "StylingComponentSaveData",
  10591. "SubStyle": ".method"
  10592. },
  10593. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10594. "$type": "PersistentIdComponentSaveData",
  10595. "PersistentId": "{81B2F860-81F1-4D08-9A46-F6D2192E711A}"
  10596. }
  10597. }
  10598. }
  10599. },
  10600. {
  10601. "Key": {
  10602. "id": 205075538520674
  10603. },
  10604. "Value": {
  10605. "ComponentData": {
  10606. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10607. "$type": "NodeSaveData"
  10608. },
  10609. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10610. "$type": "GeneralNodeTitleComponentSaveData",
  10611. "PaletteOverride": "MethodNodeTitlePalette"
  10612. },
  10613. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10614. "$type": "GeometrySaveData",
  10615. "Position": [
  10616. -820.0,
  10617. -960.0
  10618. ]
  10619. },
  10620. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10621. "$type": "StylingComponentSaveData",
  10622. "SubStyle": ".method"
  10623. },
  10624. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10625. "$type": "PersistentIdComponentSaveData",
  10626. "PersistentId": "{DFF0B9D1-2849-439F-990F-EBDA457CA78D}"
  10627. }
  10628. }
  10629. }
  10630. },
  10631. {
  10632. "Key": {
  10633. "id": 205079833487970
  10634. },
  10635. "Value": {
  10636. "ComponentData": {
  10637. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10638. "$type": "NodeSaveData"
  10639. },
  10640. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10641. "$type": "GeneralNodeTitleComponentSaveData",
  10642. "PaletteOverride": "MethodNodeTitlePalette"
  10643. },
  10644. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10645. "$type": "GeometrySaveData",
  10646. "Position": [
  10647. 1060.0,
  10648. -660.0
  10649. ]
  10650. },
  10651. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10652. "$type": "StylingComponentSaveData",
  10653. "SubStyle": ".method"
  10654. },
  10655. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10656. "$type": "PersistentIdComponentSaveData",
  10657. "PersistentId": "{0830C0D7-9947-464E-B307-AD6468509239}"
  10658. }
  10659. }
  10660. }
  10661. },
  10662. {
  10663. "Key": {
  10664. "id": 205084128455266
  10665. },
  10666. "Value": {
  10667. "ComponentData": {
  10668. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10669. "$type": "NodeSaveData"
  10670. },
  10671. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10672. "$type": "GeneralNodeTitleComponentSaveData",
  10673. "PaletteOverride": "TimeNodeTitlePalette"
  10674. },
  10675. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10676. "$type": "GeometrySaveData",
  10677. "Position": [
  10678. 2000.0,
  10679. -140.0
  10680. ]
  10681. },
  10682. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10683. "$type": "StylingComponentSaveData"
  10684. },
  10685. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10686. "$type": "PersistentIdComponentSaveData",
  10687. "PersistentId": "{91386F1F-B5DC-43BA-A522-F9D37BC7328E}"
  10688. }
  10689. }
  10690. }
  10691. },
  10692. {
  10693. "Key": {
  10694. "id": 205088423422562
  10695. },
  10696. "Value": {
  10697. "ComponentData": {
  10698. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10699. "$type": "NodeSaveData"
  10700. },
  10701. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10702. "$type": "GeometrySaveData",
  10703. "Position": [
  10704. -1260.0,
  10705. 620.0
  10706. ]
  10707. },
  10708. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10709. "$type": "StylingComponentSaveData"
  10710. },
  10711. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10712. "$type": "PersistentIdComponentSaveData",
  10713. "PersistentId": "{2D80B07A-2450-4877-9E87-88D07A8FC566}"
  10714. },
  10715. "{D8BBE799-7E4D-495A-B69A-1E3940670891}": {
  10716. "$type": "ScriptEventReceiverHandlerNodeDescriptorSaveData",
  10717. "EventNames": [
  10718. [
  10719. {
  10720. "Value": 555733431
  10721. },
  10722. "PlayerSelfDestuct"
  10723. ]
  10724. ]
  10725. }
  10726. }
  10727. }
  10728. },
  10729. {
  10730. "Key": {
  10731. "id": 205092718389858
  10732. },
  10733. "Value": {
  10734. "ComponentData": {
  10735. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10736. "$type": "NodeSaveData"
  10737. },
  10738. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10739. "$type": "GeneralNodeTitleComponentSaveData",
  10740. "PaletteOverride": "DefaultNodeTitlePalette"
  10741. },
  10742. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10743. "$type": "GeometrySaveData",
  10744. "Position": [
  10745. 240.0,
  10746. 1840.0
  10747. ]
  10748. },
  10749. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10750. "$type": "StylingComponentSaveData"
  10751. },
  10752. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10753. "$type": "PersistentIdComponentSaveData",
  10754. "PersistentId": "{B8841A6C-1583-45C1-B819-EE499841282D}"
  10755. }
  10756. }
  10757. }
  10758. },
  10759. {
  10760. "Key": {
  10761. "id": 205101308324450
  10762. },
  10763. "Value": {
  10764. "ComponentData": {
  10765. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10766. "$type": "NodeSaveData"
  10767. },
  10768. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10769. "$type": "GeneralNodeTitleComponentSaveData",
  10770. "PaletteOverride": "MethodNodeTitlePalette"
  10771. },
  10772. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10773. "$type": "GeometrySaveData",
  10774. "Position": [
  10775. 2880.0,
  10776. -120.0
  10777. ]
  10778. },
  10779. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10780. "$type": "StylingComponentSaveData",
  10781. "SubStyle": ".method"
  10782. },
  10783. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10784. "$type": "PersistentIdComponentSaveData",
  10785. "PersistentId": "{34BA4083-D709-4EEB-99D2-39E98861F61E}"
  10786. }
  10787. }
  10788. }
  10789. },
  10790. {
  10791. "Key": {
  10792. "id": 205105603291746
  10793. },
  10794. "Value": {
  10795. "ComponentData": {
  10796. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10797. "$type": "NodeSaveData"
  10798. },
  10799. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10800. "$type": "GeneralNodeTitleComponentSaveData",
  10801. "PaletteOverride": "StringNodeTitlePalette"
  10802. },
  10803. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10804. "$type": "GeometrySaveData",
  10805. "Position": [
  10806. 1680.0,
  10807. -440.0
  10808. ]
  10809. },
  10810. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10811. "$type": "StylingComponentSaveData"
  10812. },
  10813. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10814. "$type": "PersistentIdComponentSaveData",
  10815. "PersistentId": "{BF57E22A-FDFB-4987-ADAD-57D7802B4EC4}"
  10816. }
  10817. }
  10818. }
  10819. },
  10820. {
  10821. "Key": {
  10822. "id": 205109898259042
  10823. },
  10824. "Value": {
  10825. "ComponentData": {
  10826. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10827. "$type": "NodeSaveData"
  10828. },
  10829. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10830. "$type": "GeneralNodeTitleComponentSaveData",
  10831. "PaletteOverride": "MethodNodeTitlePalette"
  10832. },
  10833. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10834. "$type": "GeometrySaveData",
  10835. "Position": [
  10836. -1180.0,
  10837. 940.0
  10838. ]
  10839. },
  10840. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10841. "$type": "StylingComponentSaveData",
  10842. "SubStyle": ".method"
  10843. },
  10844. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10845. "$type": "PersistentIdComponentSaveData",
  10846. "PersistentId": "{070F3C94-E91B-43BB-9659-F792B5433252}"
  10847. }
  10848. }
  10849. }
  10850. },
  10851. {
  10852. "Key": {
  10853. "id": 205114193226338
  10854. },
  10855. "Value": {
  10856. "ComponentData": {
  10857. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10858. "$type": "NodeSaveData"
  10859. },
  10860. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10861. "$type": "GeneralNodeTitleComponentSaveData",
  10862. "PaletteOverride": "DefaultNodeTitlePalette"
  10863. },
  10864. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10865. "$type": "GeometrySaveData",
  10866. "Position": [
  10867. 900.0,
  10868. 1820.0
  10869. ]
  10870. },
  10871. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10872. "$type": "StylingComponentSaveData"
  10873. },
  10874. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10875. "$type": "PersistentIdComponentSaveData",
  10876. "PersistentId": "{3519E0FB-B49A-43EF-B57E-9C1B21BD72D4}"
  10877. }
  10878. }
  10879. }
  10880. },
  10881. {
  10882. "Key": {
  10883. "id": 205118488193634
  10884. },
  10885. "Value": {
  10886. "ComponentData": {
  10887. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10888. "$type": "NodeSaveData"
  10889. },
  10890. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10891. "$type": "GeneralNodeTitleComponentSaveData",
  10892. "PaletteOverride": "SetVariableNodeTitlePalette"
  10893. },
  10894. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10895. "$type": "GeometrySaveData",
  10896. "Position": [
  10897. 1580.0,
  10898. 620.0
  10899. ]
  10900. },
  10901. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10902. "$type": "StylingComponentSaveData",
  10903. "SubStyle": ".setVariable"
  10904. },
  10905. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10906. "$type": "PersistentIdComponentSaveData",
  10907. "PersistentId": "{6CB20AA4-8F6C-4610-A725-A771F4469D4C}"
  10908. }
  10909. }
  10910. }
  10911. },
  10912. {
  10913. "Key": {
  10914. "id": 205122783160930
  10915. },
  10916. "Value": {
  10917. "ComponentData": {
  10918. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10919. "$type": "NodeSaveData"
  10920. },
  10921. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10922. "$type": "GeneralNodeTitleComponentSaveData",
  10923. "PaletteOverride": "TimeNodeTitlePalette"
  10924. },
  10925. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10926. "$type": "GeometrySaveData",
  10927. "Position": [
  10928. -1000.0,
  10929. 160.0
  10930. ]
  10931. },
  10932. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10933. "$type": "StylingComponentSaveData"
  10934. },
  10935. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10936. "$type": "PersistentIdComponentSaveData",
  10937. "PersistentId": "{0A678932-5AC5-4003-B81B-5003DE62CA11}"
  10938. }
  10939. }
  10940. }
  10941. },
  10942. {
  10943. "Key": {
  10944. "id": 205127078128226
  10945. },
  10946. "Value": {
  10947. "ComponentData": {
  10948. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10949. "$type": "NodeSaveData"
  10950. },
  10951. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10952. "$type": "GeneralNodeTitleComponentSaveData",
  10953. "PaletteOverride": "MethodNodeTitlePalette"
  10954. },
  10955. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10956. "$type": "GeometrySaveData",
  10957. "Position": [
  10958. 2340.0,
  10959. 1300.0
  10960. ]
  10961. },
  10962. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10963. "$type": "StylingComponentSaveData",
  10964. "SubStyle": ".method"
  10965. },
  10966. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10967. "$type": "PersistentIdComponentSaveData",
  10968. "PersistentId": "{DE1F7DA7-4484-47F8-9119-3F09153DBDD7}"
  10969. }
  10970. }
  10971. }
  10972. },
  10973. {
  10974. "Key": {
  10975. "id": 205131373095522
  10976. },
  10977. "Value": {
  10978. "ComponentData": {
  10979. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10980. "$type": "NodeSaveData"
  10981. },
  10982. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10983. "$type": "GeneralNodeTitleComponentSaveData",
  10984. "PaletteOverride": "MethodNodeTitlePalette"
  10985. },
  10986. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10987. "$type": "GeometrySaveData",
  10988. "Position": [
  10989. 3720.0,
  10990. -400.0
  10991. ]
  10992. },
  10993. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10994. "$type": "StylingComponentSaveData",
  10995. "SubStyle": ".method"
  10996. },
  10997. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10998. "$type": "PersistentIdComponentSaveData",
  10999. "PersistentId": "{0EF0AFC8-8FA8-4F5E-8FDA-E5EF04BC7F81}"
  11000. }
  11001. }
  11002. }
  11003. },
  11004. {
  11005. "Key": {
  11006. "id": 205135668062818
  11007. },
  11008. "Value": {
  11009. "ComponentData": {
  11010. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11011. "$type": "NodeSaveData"
  11012. },
  11013. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11014. "$type": "GeneralNodeTitleComponentSaveData",
  11015. "PaletteOverride": "GetVariableNodeTitlePalette"
  11016. },
  11017. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11018. "$type": "GeometrySaveData",
  11019. "Position": [
  11020. 860.0,
  11021. 1320.0
  11022. ]
  11023. },
  11024. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11025. "$type": "StylingComponentSaveData",
  11026. "SubStyle": ".getVariable"
  11027. },
  11028. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11029. "$type": "PersistentIdComponentSaveData",
  11030. "PersistentId": "{E8030118-08F5-412B-9A20-3D7610EDBA81}"
  11031. }
  11032. }
  11033. }
  11034. },
  11035. {
  11036. "Key": {
  11037. "id": 205139963030114
  11038. },
  11039. "Value": {
  11040. "ComponentData": {
  11041. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11042. "$type": "NodeSaveData"
  11043. },
  11044. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11045. "$type": "GeneralNodeTitleComponentSaveData",
  11046. "PaletteOverride": "MethodNodeTitlePalette"
  11047. },
  11048. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11049. "$type": "GeometrySaveData",
  11050. "Position": [
  11051. 2100.0,
  11052. 2180.0
  11053. ]
  11054. },
  11055. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11056. "$type": "StylingComponentSaveData",
  11057. "SubStyle": ".method"
  11058. },
  11059. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11060. "$type": "PersistentIdComponentSaveData",
  11061. "PersistentId": "{59693DA3-BD0D-4868-A54A-6515FCFF83E4}"
  11062. }
  11063. }
  11064. }
  11065. },
  11066. {
  11067. "Key": {
  11068. "id": 205144257997410
  11069. },
  11070. "Value": {
  11071. "ComponentData": {
  11072. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11073. "$type": "NodeSaveData"
  11074. },
  11075. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11076. "$type": "GeometrySaveData",
  11077. "Position": [
  11078. 220.0,
  11079. 1260.0
  11080. ]
  11081. },
  11082. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  11083. "$type": "EBusHandlerNodeDescriptorSaveData",
  11084. "EventIds": [
  11085. {
  11086. "Value": 1502188240
  11087. }
  11088. ]
  11089. },
  11090. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11091. "$type": "StylingComponentSaveData"
  11092. },
  11093. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11094. "$type": "PersistentIdComponentSaveData",
  11095. "PersistentId": "{C31DA8DA-64F9-495C-84B6-95453663998B}"
  11096. }
  11097. }
  11098. }
  11099. },
  11100. {
  11101. "Key": {
  11102. "id": 205148552964706
  11103. },
  11104. "Value": {
  11105. "ComponentData": {
  11106. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11107. "$type": "NodeSaveData"
  11108. },
  11109. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11110. "$type": "GeneralNodeTitleComponentSaveData",
  11111. "PaletteOverride": "MathNodeTitlePalette"
  11112. },
  11113. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11114. "$type": "GeometrySaveData",
  11115. "Position": [
  11116. 3420.0,
  11117. -360.0
  11118. ]
  11119. },
  11120. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11121. "$type": "StylingComponentSaveData"
  11122. },
  11123. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11124. "$type": "PersistentIdComponentSaveData",
  11125. "PersistentId": "{744E58A9-2C57-4FE2-B987-E87B3A340E9A}"
  11126. }
  11127. }
  11128. }
  11129. },
  11130. {
  11131. "Key": {
  11132. "id": 205152847932002
  11133. },
  11134. "Value": {
  11135. "ComponentData": {
  11136. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11137. "$type": "NodeSaveData"
  11138. },
  11139. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11140. "$type": "GeneralNodeTitleComponentSaveData",
  11141. "PaletteOverride": "MethodNodeTitlePalette"
  11142. },
  11143. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11144. "$type": "GeometrySaveData",
  11145. "Position": [
  11146. 1060.0,
  11147. 1300.0
  11148. ]
  11149. },
  11150. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11151. "$type": "StylingComponentSaveData",
  11152. "SubStyle": ".method"
  11153. },
  11154. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11155. "$type": "PersistentIdComponentSaveData",
  11156. "PersistentId": "{64A784B5-EF31-46EE-AD9D-6ABBDE2B3C3E}"
  11157. }
  11158. }
  11159. }
  11160. },
  11161. {
  11162. "Key": {
  11163. "id": 205157142899298
  11164. },
  11165. "Value": {
  11166. "ComponentData": {
  11167. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11168. "$type": "NodeSaveData"
  11169. },
  11170. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11171. "$type": "GeneralNodeTitleComponentSaveData",
  11172. "PaletteOverride": "MethodNodeTitlePalette"
  11173. },
  11174. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11175. "$type": "GeometrySaveData",
  11176. "Position": [
  11177. 3720.0,
  11178. -640.0
  11179. ]
  11180. },
  11181. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11182. "$type": "StylingComponentSaveData",
  11183. "SubStyle": ".method"
  11184. },
  11185. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11186. "$type": "PersistentIdComponentSaveData",
  11187. "PersistentId": "{D741B7B2-44D7-425F-8A91-8DD4F49F7771}"
  11188. }
  11189. }
  11190. }
  11191. },
  11192. {
  11193. "Key": {
  11194. "id": 205161437866594
  11195. },
  11196. "Value": {
  11197. "ComponentData": {
  11198. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11199. "$type": "NodeSaveData"
  11200. },
  11201. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11202. "$type": "GeneralNodeTitleComponentSaveData",
  11203. "PaletteOverride": "MethodNodeTitlePalette"
  11204. },
  11205. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11206. "$type": "GeometrySaveData",
  11207. "Position": [
  11208. -380.0,
  11209. -960.0
  11210. ]
  11211. },
  11212. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11213. "$type": "StylingComponentSaveData",
  11214. "SubStyle": ".method"
  11215. },
  11216. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11217. "$type": "PersistentIdComponentSaveData",
  11218. "PersistentId": "{C8DD7A98-6225-47CD-A14E-02547CEDBE90}"
  11219. }
  11220. }
  11221. }
  11222. },
  11223. {
  11224. "Key": {
  11225. "id": 205165732833890
  11226. },
  11227. "Value": {
  11228. "ComponentData": {
  11229. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11230. "$type": "NodeSaveData"
  11231. },
  11232. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11233. "$type": "GeneralNodeTitleComponentSaveData",
  11234. "PaletteOverride": "SetVariableNodeTitlePalette"
  11235. },
  11236. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11237. "$type": "GeometrySaveData",
  11238. "Position": [
  11239. 1160.0,
  11240. 900.0
  11241. ]
  11242. },
  11243. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11244. "$type": "StylingComponentSaveData",
  11245. "SubStyle": ".setVariable"
  11246. },
  11247. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11248. "$type": "PersistentIdComponentSaveData",
  11249. "PersistentId": "{DC3BFF4E-D438-4B35-9D9F-FC16229B8710}"
  11250. }
  11251. }
  11252. }
  11253. },
  11254. {
  11255. "Key": {
  11256. "id": 205170027801186
  11257. },
  11258. "Value": {
  11259. "ComponentData": {
  11260. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11261. "$type": "NodeSaveData"
  11262. },
  11263. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11264. "$type": "GeneralNodeTitleComponentSaveData",
  11265. "PaletteOverride": "MethodNodeTitlePalette"
  11266. },
  11267. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11268. "$type": "GeometrySaveData",
  11269. "Position": [
  11270. 2900.0,
  11271. 2140.0
  11272. ]
  11273. },
  11274. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11275. "$type": "StylingComponentSaveData",
  11276. "SubStyle": ".method"
  11277. },
  11278. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11279. "$type": "PersistentIdComponentSaveData",
  11280. "PersistentId": "{54E212F5-64CC-4591-950C-56E3BC7268DD}"
  11281. }
  11282. }
  11283. }
  11284. },
  11285. {
  11286. "Key": {
  11287. "id": 205174322768482
  11288. },
  11289. "Value": {
  11290. "ComponentData": {
  11291. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11292. "$type": "NodeSaveData"
  11293. },
  11294. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11295. "$type": "GeneralNodeTitleComponentSaveData",
  11296. "PaletteOverride": "MathNodeTitlePalette"
  11297. },
  11298. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11299. "$type": "GeometrySaveData",
  11300. "Position": [
  11301. 3420.0,
  11302. -600.0
  11303. ]
  11304. },
  11305. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11306. "$type": "StylingComponentSaveData"
  11307. },
  11308. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11309. "$type": "PersistentIdComponentSaveData",
  11310. "PersistentId": "{744C93D2-0116-4CAC-9A47-59D806CFA66F}"
  11311. }
  11312. }
  11313. }
  11314. },
  11315. {
  11316. "Key": {
  11317. "id": 205178617735778
  11318. },
  11319. "Value": {
  11320. "ComponentData": {
  11321. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11322. "$type": "NodeSaveData"
  11323. },
  11324. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11325. "$type": "GeneralNodeTitleComponentSaveData",
  11326. "PaletteOverride": "MethodNodeTitlePalette"
  11327. },
  11328. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11329. "$type": "GeometrySaveData",
  11330. "Position": [
  11331. 1380.0,
  11332. 1300.0
  11333. ]
  11334. },
  11335. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11336. "$type": "StylingComponentSaveData",
  11337. "SubStyle": ".method"
  11338. },
  11339. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11340. "$type": "PersistentIdComponentSaveData",
  11341. "PersistentId": "{CB7F3370-F1E2-4696-A29F-C4CC910326F4}"
  11342. }
  11343. }
  11344. }
  11345. },
  11346. {
  11347. "Key": {
  11348. "id": 205182912703074
  11349. },
  11350. "Value": {
  11351. "ComponentData": {
  11352. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11353. "$type": "NodeSaveData"
  11354. },
  11355. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11356. "$type": "GeneralNodeTitleComponentSaveData",
  11357. "PaletteOverride": "TimeNodeTitlePalette"
  11358. },
  11359. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11360. "$type": "GeometrySaveData",
  11361. "Position": [
  11362. 2480.0,
  11363. -180.0
  11364. ]
  11365. },
  11366. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11367. "$type": "StylingComponentSaveData"
  11368. },
  11369. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11370. "$type": "PersistentIdComponentSaveData",
  11371. "PersistentId": "{567CEF1E-0FBF-4CF6-A91C-DFEE4C9E2837}"
  11372. }
  11373. }
  11374. }
  11375. },
  11376. {
  11377. "Key": {
  11378. "id": 205187207670370
  11379. },
  11380. "Value": {
  11381. "ComponentData": {
  11382. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11383. "$type": "NodeSaveData"
  11384. },
  11385. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11386. "$type": "GeneralNodeTitleComponentSaveData",
  11387. "PaletteOverride": "MethodNodeTitlePalette"
  11388. },
  11389. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11390. "$type": "GeometrySaveData",
  11391. "Position": [
  11392. 2840.0,
  11393. -360.0
  11394. ]
  11395. },
  11396. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11397. "$type": "StylingComponentSaveData",
  11398. "SubStyle": ".method"
  11399. },
  11400. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11401. "$type": "PersistentIdComponentSaveData",
  11402. "PersistentId": "{FD024DE8-3BA2-4C1A-8334-AE8624F493E1}"
  11403. }
  11404. }
  11405. }
  11406. },
  11407. {
  11408. "Key": {
  11409. "id": 205191502637666
  11410. },
  11411. "Value": {
  11412. "ComponentData": {
  11413. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11414. "$type": "NodeSaveData"
  11415. },
  11416. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11417. "$type": "GeneralNodeTitleComponentSaveData",
  11418. "PaletteOverride": "MethodNodeTitlePalette"
  11419. },
  11420. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11421. "$type": "GeometrySaveData",
  11422. "Position": [
  11423. 180.0,
  11424. -660.0
  11425. ]
  11426. },
  11427. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11428. "$type": "StylingComponentSaveData",
  11429. "SubStyle": ".method"
  11430. },
  11431. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11432. "$type": "PersistentIdComponentSaveData",
  11433. "PersistentId": "{138BDC65-DA5D-409E-901B-A45271635F18}"
  11434. }
  11435. }
  11436. }
  11437. },
  11438. {
  11439. "Key": {
  11440. "id": 205195797604962
  11441. },
  11442. "Value": {
  11443. "ComponentData": {
  11444. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11445. "$type": "NodeSaveData"
  11446. },
  11447. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11448. "$type": "GeometrySaveData",
  11449. "Position": [
  11450. 200.0,
  11451. 620.0
  11452. ]
  11453. },
  11454. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  11455. "$type": "EBusHandlerNodeDescriptorSaveData",
  11456. "EventIds": [
  11457. {
  11458. "Value": 245425936
  11459. }
  11460. ]
  11461. },
  11462. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11463. "$type": "StylingComponentSaveData"
  11464. },
  11465. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11466. "$type": "PersistentIdComponentSaveData",
  11467. "PersistentId": "{4B1DAF24-66C4-4C23-B2C6-2FFE324F74C9}"
  11468. }
  11469. }
  11470. }
  11471. },
  11472. {
  11473. "Key": {
  11474. "id": 205204387539554
  11475. },
  11476. "Value": {
  11477. "ComponentData": {
  11478. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11479. "$type": "NodeSaveData"
  11480. },
  11481. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11482. "$type": "GeneralNodeTitleComponentSaveData",
  11483. "PaletteOverride": "MethodNodeTitlePalette"
  11484. },
  11485. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11486. "$type": "GeometrySaveData",
  11487. "Position": [
  11488. 1200.0,
  11489. 620.0
  11490. ]
  11491. },
  11492. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11493. "$type": "StylingComponentSaveData",
  11494. "SubStyle": ".method"
  11495. },
  11496. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11497. "$type": "PersistentIdComponentSaveData",
  11498. "PersistentId": "{24857116-E526-4EE6-B4DB-B814C88D581D}"
  11499. }
  11500. }
  11501. }
  11502. },
  11503. {
  11504. "Key": {
  11505. "id": 205208682506850
  11506. },
  11507. "Value": {
  11508. "ComponentData": {
  11509. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11510. "$type": "NodeSaveData"
  11511. },
  11512. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11513. "$type": "GeneralNodeTitleComponentSaveData",
  11514. "PaletteOverride": "HandlerNodeTitlePalette"
  11515. },
  11516. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11517. "$type": "GeometrySaveData",
  11518. "Position": [
  11519. 620.0,
  11520. -700.0
  11521. ]
  11522. },
  11523. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11524. "$type": "StylingComponentSaveData",
  11525. "SubStyle": ".azeventhandler"
  11526. },
  11527. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11528. "$type": "PersistentIdComponentSaveData",
  11529. "PersistentId": "{B5594735-0DB1-4ECE-8589-B7DDE5202B90}"
  11530. }
  11531. }
  11532. }
  11533. },
  11534. {
  11535. "Key": {
  11536. "id": 205212977474146
  11537. },
  11538. "Value": {
  11539. "ComponentData": {
  11540. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11541. "$type": "NodeSaveData"
  11542. },
  11543. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11544. "$type": "GeneralNodeTitleComponentSaveData",
  11545. "PaletteOverride": "MethodNodeTitlePalette"
  11546. },
  11547. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11548. "$type": "GeometrySaveData",
  11549. "Position": [
  11550. 480.0,
  11551. -420.0
  11552. ]
  11553. },
  11554. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11555. "$type": "StylingComponentSaveData",
  11556. "SubStyle": ".method"
  11557. },
  11558. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11559. "$type": "PersistentIdComponentSaveData",
  11560. "PersistentId": "{4AD03938-CB36-492E-A90F-75663F2C9AE3}"
  11561. }
  11562. }
  11563. }
  11564. },
  11565. {
  11566. "Key": {
  11567. "id": 205217272441442
  11568. },
  11569. "Value": {
  11570. "ComponentData": {
  11571. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11572. "$type": "NodeSaveData"
  11573. },
  11574. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11575. "$type": "GeneralNodeTitleComponentSaveData",
  11576. "PaletteOverride": "GetVariableNodeTitlePalette"
  11577. },
  11578. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11579. "$type": "GeometrySaveData",
  11580. "Position": [
  11581. 540.0,
  11582. 1320.0
  11583. ]
  11584. },
  11585. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11586. "$type": "StylingComponentSaveData",
  11587. "SubStyle": ".getVariable"
  11588. },
  11589. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11590. "$type": "PersistentIdComponentSaveData",
  11591. "PersistentId": "{01703180-1799-40AA-B8AC-BB0A09B6ADD5}"
  11592. }
  11593. }
  11594. }
  11595. },
  11596. {
  11597. "Key": {
  11598. "id": 205221567408738
  11599. },
  11600. "Value": {
  11601. "ComponentData": {
  11602. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11603. "$type": "NodeSaveData"
  11604. },
  11605. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11606. "$type": "GeneralNodeTitleComponentSaveData",
  11607. "PaletteOverride": "MethodNodeTitlePalette"
  11608. },
  11609. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11610. "$type": "GeometrySaveData",
  11611. "Position": [
  11612. 2000.0,
  11613. 1300.0
  11614. ]
  11615. },
  11616. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11617. "$type": "StylingComponentSaveData",
  11618. "SubStyle": ".method"
  11619. },
  11620. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11621. "$type": "PersistentIdComponentSaveData",
  11622. "PersistentId": "{A812408B-DB46-4768-8CC1-FF4973743F35}"
  11623. }
  11624. }
  11625. }
  11626. },
  11627. {
  11628. "Key": {
  11629. "id": 205225862376034
  11630. },
  11631. "Value": {
  11632. "ComponentData": {
  11633. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11634. "$type": "NodeSaveData"
  11635. },
  11636. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11637. "$type": "GeneralNodeTitleComponentSaveData",
  11638. "PaletteOverride": "TimeNodeTitlePalette"
  11639. },
  11640. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11641. "$type": "GeometrySaveData",
  11642. "Position": [
  11643. 2280.0,
  11644. -680.0
  11645. ]
  11646. },
  11647. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11648. "$type": "StylingComponentSaveData"
  11649. },
  11650. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11651. "$type": "PersistentIdComponentSaveData",
  11652. "PersistentId": "{E65D5B61-0CF6-4D8F-AA27-48C74C60C7BB}"
  11653. }
  11654. }
  11655. }
  11656. },
  11657. {
  11658. "Key": {
  11659. "id": 205230157343330
  11660. },
  11661. "Value": {
  11662. "ComponentData": {
  11663. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11664. "$type": "NodeSaveData"
  11665. },
  11666. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11667. "$type": "GeneralNodeTitleComponentSaveData",
  11668. "PaletteOverride": "MethodNodeTitlePalette"
  11669. },
  11670. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11671. "$type": "GeometrySaveData",
  11672. "Position": [
  11673. 860.0,
  11674. -400.0
  11675. ]
  11676. },
  11677. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11678. "$type": "StylingComponentSaveData",
  11679. "SubStyle": ".method"
  11680. },
  11681. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11682. "$type": "PersistentIdComponentSaveData",
  11683. "PersistentId": "{63EBDF33-D67D-42D8-95BB-142EBB688924}"
  11684. }
  11685. }
  11686. }
  11687. },
  11688. {
  11689. "Key": {
  11690. "id": 205234452310626
  11691. },
  11692. "Value": {
  11693. "ComponentData": {
  11694. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11695. "$type": "NodeSaveData"
  11696. },
  11697. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11698. "$type": "GeneralNodeTitleComponentSaveData",
  11699. "PaletteOverride": "MethodNodeTitlePalette"
  11700. },
  11701. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11702. "$type": "GeometrySaveData",
  11703. "Position": [
  11704. 2840.0,
  11705. -600.0
  11706. ]
  11707. },
  11708. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11709. "$type": "StylingComponentSaveData",
  11710. "SubStyle": ".method"
  11711. },
  11712. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11713. "$type": "PersistentIdComponentSaveData",
  11714. "PersistentId": "{37ED113D-7A27-4C0C-A366-47010ACAA307}"
  11715. }
  11716. }
  11717. }
  11718. },
  11719. {
  11720. "Key": {
  11721. "id": 205238747277922
  11722. },
  11723. "Value": {
  11724. "ComponentData": {
  11725. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11726. "$type": "NodeSaveData"
  11727. },
  11728. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11729. "$type": "GeneralNodeTitleComponentSaveData",
  11730. "PaletteOverride": "MethodNodeTitlePalette"
  11731. },
  11732. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11733. "$type": "GeometrySaveData",
  11734. "Position": [
  11735. 2780.0,
  11736. 1300.0
  11737. ]
  11738. },
  11739. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11740. "$type": "StylingComponentSaveData",
  11741. "SubStyle": ".method"
  11742. },
  11743. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11744. "$type": "PersistentIdComponentSaveData",
  11745. "PersistentId": "{965CB25E-5027-4A87-8029-761A9D772A1A}"
  11746. }
  11747. }
  11748. }
  11749. },
  11750. {
  11751. "Key": {
  11752. "id": 205247337212514
  11753. },
  11754. "Value": {
  11755. "ComponentData": {
  11756. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11757. "$type": "NodeSaveData"
  11758. },
  11759. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11760. "$type": "GeneralNodeTitleComponentSaveData",
  11761. "PaletteOverride": "MethodNodeTitlePalette"
  11762. },
  11763. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11764. "$type": "GeometrySaveData",
  11765. "Position": [
  11766. 2440.0,
  11767. 2160.0
  11768. ]
  11769. },
  11770. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11771. "$type": "StylingComponentSaveData",
  11772. "SubStyle": ".method"
  11773. },
  11774. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11775. "$type": "PersistentIdComponentSaveData",
  11776. "PersistentId": "{F479F3D6-ACB3-44F9-81FA-22C9A082E9E9}"
  11777. }
  11778. }
  11779. }
  11780. },
  11781. {
  11782. "Key": {
  11783. "id": 205251632179810
  11784. },
  11785. "Value": {
  11786. "ComponentData": {
  11787. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  11788. "$type": "NodeSaveData"
  11789. },
  11790. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  11791. "$type": "GeneralNodeTitleComponentSaveData",
  11792. "PaletteOverride": "DefaultNodeTitlePalette"
  11793. },
  11794. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  11795. "$type": "GeometrySaveData",
  11796. "Position": [
  11797. 600.0,
  11798. 640.0
  11799. ]
  11800. },
  11801. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  11802. "$type": "StylingComponentSaveData"
  11803. },
  11804. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  11805. "$type": "PersistentIdComponentSaveData",
  11806. "PersistentId": "{365B4D72-72FE-4684-8171-EE5C09489D79}"
  11807. }
  11808. }
  11809. }
  11810. }
  11811. ],
  11812. "StatisticsHelper": {
  11813. "InstanceCounter": [
  11814. {
  11815. "Key": 1014541492674260157,
  11816. "Value": 1
  11817. },
  11818. {
  11819. "Key": 1244476766431948410,
  11820. "Value": 2
  11821. },
  11822. {
  11823. "Key": 1678857273815730126,
  11824. "Value": 1
  11825. },
  11826. {
  11827. "Key": 2970552779286763396,
  11828. "Value": 1
  11829. },
  11830. {
  11831. "Key": 3951080074688564703,
  11832. "Value": 2
  11833. },
  11834. {
  11835. "Key": 4199610336680704683,
  11836. "Value": 1
  11837. },
  11838. {
  11839. "Key": 4847610523576971761,
  11840. "Value": 1
  11841. },
  11842. {
  11843. "Key": 4901577655475582318,
  11844. "Value": 1
  11845. },
  11846. {
  11847. "Key": 5842116761103598202,
  11848. "Value": 1
  11849. },
  11850. {
  11851. "Key": 5842117397464793690,
  11852. "Value": 1
  11853. },
  11854. {
  11855. "Key": 5842117451819972883,
  11856. "Value": 1
  11857. },
  11858. {
  11859. "Key": 5861614550114279934,
  11860. "Value": 1
  11861. },
  11862. {
  11863. "Key": 6085082255528869526,
  11864. "Value": 1
  11865. },
  11866. {
  11867. "Key": 6462358712820489356,
  11868. "Value": 2
  11869. },
  11870. {
  11871. "Key": 7413323401356093379,
  11872. "Value": 2
  11873. },
  11874. {
  11875. "Key": 8233714554903076331,
  11876. "Value": 2
  11877. },
  11878. {
  11879. "Key": 8450383060567235143,
  11880. "Value": 1
  11881. },
  11882. {
  11883. "Key": 10684225535275896474,
  11884. "Value": 1
  11885. },
  11886. {
  11887. "Key": 11406045330943018107,
  11888. "Value": 2
  11889. },
  11890. {
  11891. "Key": 12248403034912577242,
  11892. "Value": 1
  11893. },
  11894. {
  11895. "Key": 13474049605028069597,
  11896. "Value": 1
  11897. },
  11898. {
  11899. "Key": 13774516196858047560,
  11900. "Value": 1
  11901. },
  11902. {
  11903. "Key": 13774516197139363424,
  11904. "Value": 1
  11905. },
  11906. {
  11907. "Key": 13774516334454446558,
  11908. "Value": 3
  11909. },
  11910. {
  11911. "Key": 13774516335388765984,
  11912. "Value": 1
  11913. },
  11914. {
  11915. "Key": 13774516337063542771,
  11916. "Value": 1
  11917. },
  11918. {
  11919. "Key": 13774516337792258019,
  11920. "Value": 2
  11921. },
  11922. {
  11923. "Key": 13774516342083117963,
  11924. "Value": 1
  11925. },
  11926. {
  11927. "Key": 13774516392372178953,
  11928. "Value": 1
  11929. },
  11930. {
  11931. "Key": 13774516543072966145,
  11932. "Value": 1
  11933. },
  11934. {
  11935. "Key": 13774516553491424915,
  11936. "Value": 1
  11937. },
  11938. {
  11939. "Key": 13774516553782671260,
  11940. "Value": 1
  11941. },
  11942. {
  11943. "Key": 13774516554399058174,
  11944. "Value": 1
  11945. },
  11946. {
  11947. "Key": 13774516554886911373,
  11948. "Value": 1
  11949. },
  11950. {
  11951. "Key": 13774516556300749906,
  11952. "Value": 1
  11953. },
  11954. {
  11955. "Key": 13774516556399355685,
  11956. "Value": 1
  11957. },
  11958. {
  11959. "Key": 17303872809747583722,
  11960. "Value": 1
  11961. },
  11962. {
  11963. "Key": 18241264047515562404,
  11964. "Value": 1
  11965. }
  11966. ]
  11967. }
  11968. },
  11969. "Component_[8067948064689587705]": {
  11970. "$type": "EditorGraphVariableManagerComponent",
  11971. "Id": 8067948064689587705,
  11972. "m_variableData": {
  11973. "m_nameVariableMap": [
  11974. {
  11975. "Key": {
  11976. "m_id": "{0970AC74-9D9A-4530-AD75-BB4A5E839FA5}"
  11977. },
  11978. "Value": {
  11979. "Datum": {
  11980. "isOverloadedStorage": false,
  11981. "scriptCanvasType": {
  11982. "m_type": 4,
  11983. "m_azType": "{EB603581-4654-4C17-B6DE-AE61E79EDA97}"
  11984. },
  11985. "isNullPointer": false,
  11986. "$type": "AZ::Render::MaterialAssignmentId"
  11987. },
  11988. "VariableId": {
  11989. "m_id": "{0970AC74-9D9A-4530-AD75-BB4A5E839FA5}"
  11990. },
  11991. "VariableName": "Mat",
  11992. "InitialValueSource": 1
  11993. }
  11994. },
  11995. {
  11996. "Key": {
  11997. "m_id": "{10B9A1D7-C4D3-45DB-A2AF-AA1DA3B91E0E}"
  11998. },
  11999. "Value": {
  12000. "Datum": {
  12001. "isOverloadedStorage": false,
  12002. "scriptCanvasType": {
  12003. "m_type": 3
  12004. },
  12005. "isNullPointer": false,
  12006. "$type": "double",
  12007. "value": -22.0
  12008. },
  12009. "VariableId": {
  12010. "m_id": "{10B9A1D7-C4D3-45DB-A2AF-AA1DA3B91E0E}"
  12011. },
  12012. "VariableName": "ShipStartY"
  12013. }
  12014. },
  12015. {
  12016. "Key": {
  12017. "m_id": "{32C8E951-DCFC-49AF-AF3F-C587EBB1D4D8}"
  12018. },
  12019. "Value": {
  12020. "Datum": {
  12021. "isOverloadedStorage": false,
  12022. "scriptCanvasType": {
  12023. "m_type": 1
  12024. },
  12025. "isNullPointer": false,
  12026. "$type": "EntityId",
  12027. "value": {
  12028. "id": 4294967295
  12029. }
  12030. },
  12031. "VariableId": {
  12032. "m_id": "{32C8E951-DCFC-49AF-AF3F-C587EBB1D4D8}"
  12033. },
  12034. "VariableName": "FirePoint_Entity",
  12035. "InitialValueSource": 1
  12036. }
  12037. },
  12038. {
  12039. "Key": {
  12040. "m_id": "{43925339-CF93-40BB-8F85-E1BC8ED0A165}"
  12041. },
  12042. "Value": {
  12043. "Datum": {
  12044. "isOverloadedStorage": false,
  12045. "scriptCanvasType": {
  12046. "m_type": 3
  12047. },
  12048. "isNullPointer": false,
  12049. "$type": "double",
  12050. "value": 0.0
  12051. },
  12052. "VariableId": {
  12053. "m_id": "{43925339-CF93-40BB-8F85-E1BC8ED0A165}"
  12054. },
  12055. "VariableName": "HitFXDelay",
  12056. "InitialValueSource": 1
  12057. }
  12058. },
  12059. {
  12060. "Key": {
  12061. "m_id": "{58BE141D-C5D3-4B30-991F-7F78E6795F5F}"
  12062. },
  12063. "Value": {
  12064. "Datum": {
  12065. "isOverloadedStorage": false,
  12066. "scriptCanvasType": {
  12067. "m_type": 3
  12068. },
  12069. "isNullPointer": false,
  12070. "$type": "double",
  12071. "value": 25.0
  12072. },
  12073. "VariableId": {
  12074. "m_id": "{58BE141D-C5D3-4B30-991F-7F78E6795F5F}"
  12075. },
  12076. "VariableName": "Speed",
  12077. "InitialValueSource": 1
  12078. }
  12079. },
  12080. {
  12081. "Key": {
  12082. "m_id": "{5F1BB2F8-8C64-4894-99E1-41647EC30167}"
  12083. },
  12084. "Value": {
  12085. "Datum": {
  12086. "isOverloadedStorage": false,
  12087. "scriptCanvasType": {
  12088. "m_type": 5
  12089. },
  12090. "isNullPointer": false,
  12091. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  12092. "value": "Loopy_mat"
  12093. },
  12094. "VariableId": {
  12095. "m_id": "{5F1BB2F8-8C64-4894-99E1-41647EC30167}"
  12096. },
  12097. "VariableName": "MaterialName",
  12098. "InitialValueSource": 1
  12099. }
  12100. },
  12101. {
  12102. "Key": {
  12103. "m_id": "{6FFD6AB6-927D-439D-BA73-63A49426F440}"
  12104. },
  12105. "Value": {
  12106. "Datum": {
  12107. "isOverloadedStorage": false,
  12108. "scriptCanvasType": {
  12109. "m_type": 3
  12110. },
  12111. "isNullPointer": false,
  12112. "$type": "double",
  12113. "value": 45.0
  12114. },
  12115. "VariableId": {
  12116. "m_id": "{6FFD6AB6-927D-439D-BA73-63A49426F440}"
  12117. },
  12118. "VariableName": "WorldMaxX"
  12119. }
  12120. },
  12121. {
  12122. "Key": {
  12123. "m_id": "{8A5DE15B-660D-4623-8D53-3386676D5C3D}"
  12124. },
  12125. "Value": {
  12126. "Datum": {
  12127. "isOverloadedStorage": false,
  12128. "scriptCanvasType": {
  12129. "m_type": 8
  12130. },
  12131. "isNullPointer": false,
  12132. "$type": "Vector3",
  12133. "value": [
  12134. 0.0,
  12135. 0.0,
  12136. 0.0
  12137. ]
  12138. },
  12139. "VariableId": {
  12140. "m_id": "{8A5DE15B-660D-4623-8D53-3386676D5C3D}"
  12141. },
  12142. "VariableName": "InputVector"
  12143. }
  12144. },
  12145. {
  12146. "Key": {
  12147. "m_id": "{9143AB42-1D02-4627-AB8A-813A1C2EA65A}"
  12148. },
  12149. "Value": {
  12150. "Datum": {
  12151. "isOverloadedStorage": false,
  12152. "scriptCanvasType": {
  12153. "m_type": 3
  12154. },
  12155. "isNullPointer": false,
  12156. "$type": "double",
  12157. "value": -45.0
  12158. },
  12159. "VariableId": {
  12160. "m_id": "{9143AB42-1D02-4627-AB8A-813A1C2EA65A}"
  12161. },
  12162. "VariableName": "WorldMinX"
  12163. }
  12164. },
  12165. {
  12166. "Key": {
  12167. "m_id": "{EE90593E-7D3C-40C6-AA28-CED18C73DAAC}"
  12168. },
  12169. "Value": {
  12170. "Datum": {
  12171. "isOverloadedStorage": false,
  12172. "scriptCanvasType": {
  12173. "m_type": 8
  12174. },
  12175. "isNullPointer": false,
  12176. "$type": "Vector3",
  12177. "value": [
  12178. 0.0,
  12179. 0.0,
  12180. 0.0
  12181. ]
  12182. },
  12183. "VariableId": {
  12184. "m_id": "{EE90593E-7D3C-40C6-AA28-CED18C73DAAC}"
  12185. },
  12186. "VariableName": "FirePoint"
  12187. }
  12188. },
  12189. {
  12190. "Key": {
  12191. "m_id": "{FC2E6666-DD26-4D43-850C-DAA86DBEB1CE}"
  12192. },
  12193. "Value": {
  12194. "Datum": {
  12195. "isOverloadedStorage": false,
  12196. "scriptCanvasType": {
  12197. "m_type": 4,
  12198. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  12199. },
  12200. "isNullPointer": false,
  12201. "$type": "AzFramework::Scripts::SpawnableScriptAssetRef",
  12202. "value": {
  12203. "asset": {
  12204. "assetId": {
  12205. "guid": "{9656F745-F36B-596C-961E-1D4878C34E07}",
  12206. "subId": 232105045
  12207. },
  12208. "assetHint": "prefabs/rocket.spawnable"
  12209. }
  12210. }
  12211. },
  12212. "VariableId": {
  12213. "m_id": "{FC2E6666-DD26-4D43-850C-DAA86DBEB1CE}"
  12214. },
  12215. "VariableName": "RocketPrefab"
  12216. }
  12217. }
  12218. ]
  12219. }
  12220. }
  12221. }
  12222. }
  12223. }
  12224. }