ShieldGeneratorRoundEffects.scriptcanvas 497 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 96042450349155
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[11160628054323819719]": {
  13. "$type": "EditorGraph",
  14. "Id": 11160628054323819719,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 96085400022115
  20. },
  21. "Name": "SC-Node(SendHealthDelta)",
  22. "Components": {
  23. "Component_[11064970348954301982]": {
  24. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  25. "Id": 11064970348954301982,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{826634BA-EA61-4303-905A-B339161B3290}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "Source",
  37. "toolTip": "The Source containing the NetworkHealthComponentController",
  38. "Descriptor": {
  39. "ConnectionType": 1,
  40. "SlotType": 2
  41. },
  42. "DataType": 1
  43. },
  44. {
  45. "id": {
  46. "m_id": "{58F991AE-DB95-4113-8450-837E0334156A}"
  47. },
  48. "contracts": [
  49. {
  50. "$type": "SlotTypeContract"
  51. }
  52. ],
  53. "slotName": "deltaHealth",
  54. "Descriptor": {
  55. "ConnectionType": 1,
  56. "SlotType": 2
  57. },
  58. "DataType": 1
  59. },
  60. {
  61. "id": {
  62. "m_id": "{2A66DB40-3148-4EF5-A964-A9A96E1CD7CC}"
  63. },
  64. "contracts": [
  65. {
  66. "$type": "SlotTypeContract"
  67. }
  68. ],
  69. "slotName": "In",
  70. "Descriptor": {
  71. "ConnectionType": 1,
  72. "SlotType": 1
  73. }
  74. },
  75. {
  76. "id": {
  77. "m_id": "{1350CE9A-F669-4401-B3E6-59DF4B7F3207}"
  78. },
  79. "contracts": [
  80. {
  81. "$type": "SlotTypeContract"
  82. }
  83. ],
  84. "slotName": "Out",
  85. "Descriptor": {
  86. "ConnectionType": 2,
  87. "SlotType": 1
  88. }
  89. }
  90. ],
  91. "Datums": [
  92. {
  93. "isOverloadedStorage": false,
  94. "scriptCanvasType": {
  95. "m_type": 1
  96. },
  97. "isNullPointer": false,
  98. "$type": "EntityId",
  99. "value": {
  100. "id": 2901262558
  101. },
  102. "label": "Source"
  103. },
  104. {
  105. "isOverloadedStorage": false,
  106. "scriptCanvasType": {
  107. "m_type": 3
  108. },
  109. "isNullPointer": false,
  110. "$type": "double",
  111. "value": 0.0,
  112. "label": "deltaHealth"
  113. }
  114. ],
  115. "methodType": 2,
  116. "methodName": "SendHealthDelta",
  117. "className": "NetworkHealthComponent",
  118. "resultSlotIDs": [
  119. {}
  120. ],
  121. "inputSlots": [
  122. {
  123. "m_id": "{826634BA-EA61-4303-905A-B339161B3290}"
  124. },
  125. {
  126. "m_id": "{58F991AE-DB95-4113-8450-837E0334156A}"
  127. }
  128. ],
  129. "prettyClassName": "NetworkHealthComponent"
  130. }
  131. }
  132. },
  133. {
  134. "Id": {
  135. "id": 96106874858595
  136. },
  137. "Name": "SC-Node(Play)",
  138. "Components": {
  139. "Component_[11557435530160431313]": {
  140. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  141. "Id": 11557435530160431313,
  142. "Slots": [
  143. {
  144. "id": {
  145. "m_id": "{BE3E2DE1-2504-4899-8690-B863839A37E1}"
  146. },
  147. "contracts": [
  148. {
  149. "$type": "SlotTypeContract"
  150. }
  151. ],
  152. "slotName": "EntityId",
  153. "Descriptor": {
  154. "ConnectionType": 1,
  155. "SlotType": 2
  156. },
  157. "DataType": 1
  158. },
  159. {
  160. "id": {
  161. "m_id": "{17AABFC3-9DB6-4688-AEF6-0A077B4DA52F}"
  162. },
  163. "contracts": [
  164. {
  165. "$type": "SlotTypeContract"
  166. }
  167. ],
  168. "slotName": "In",
  169. "Descriptor": {
  170. "ConnectionType": 1,
  171. "SlotType": 1
  172. }
  173. },
  174. {
  175. "id": {
  176. "m_id": "{7BE08EF7-43C1-4305-8CC5-DB8C645FDB79}"
  177. },
  178. "contracts": [
  179. {
  180. "$type": "SlotTypeContract"
  181. }
  182. ],
  183. "slotName": "Out",
  184. "Descriptor": {
  185. "ConnectionType": 2,
  186. "SlotType": 1
  187. }
  188. }
  189. ],
  190. "Datums": [
  191. {
  192. "isOverloadedStorage": false,
  193. "scriptCanvasType": {
  194. "m_type": 1
  195. },
  196. "isNullPointer": false,
  197. "$type": "EntityId",
  198. "value": {
  199. "id": 2901262558
  200. },
  201. "label": "EntityId"
  202. }
  203. ],
  204. "methodType": 0,
  205. "methodName": "Play",
  206. "className": "AudioTriggerComponentRequestBus",
  207. "resultSlotIDs": [
  208. {}
  209. ],
  210. "inputSlots": [
  211. {
  212. "m_id": "{BE3E2DE1-2504-4899-8690-B863839A37E1}"
  213. }
  214. ],
  215. "prettyClassName": "AudioTriggerComponentRequestBus"
  216. }
  217. }
  218. },
  219. {
  220. "Id": {
  221. "id": 96128349695075
  222. },
  223. "Name": "SC-Node(Get roundtime remaining in seconds)",
  224. "Components": {
  225. "Component_[12094561718900844794]": {
  226. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  227. "Id": 12094561718900844794,
  228. "Slots": [
  229. {
  230. "id": {
  231. "m_id": "{CCE1D877-B290-45B3-930C-194FE9A15C75}"
  232. },
  233. "contracts": [
  234. {
  235. "$type": "SlotTypeContract"
  236. }
  237. ],
  238. "slotName": "In",
  239. "Descriptor": {
  240. "ConnectionType": 1,
  241. "SlotType": 1
  242. }
  243. },
  244. {
  245. "id": {
  246. "m_id": "{2B2A0094-F04A-4B38-9BA6-3611CFA82722}"
  247. },
  248. "contracts": [
  249. {
  250. "$type": "SlotTypeContract"
  251. }
  252. ],
  253. "slotName": "Out",
  254. "Descriptor": {
  255. "ConnectionType": 2,
  256. "SlotType": 1
  257. }
  258. },
  259. {
  260. "id": {
  261. "m_id": "{15A44D1E-C210-4946-90B2-0E470EBE9B21}"
  262. },
  263. "contracts": [
  264. {
  265. "$type": "SlotTypeContract"
  266. }
  267. ],
  268. "slotName": "Number",
  269. "DisplayDataType": {
  270. "m_type": 3
  271. },
  272. "Descriptor": {
  273. "ConnectionType": 2,
  274. "SlotType": 2
  275. },
  276. "DataType": 1
  277. }
  278. ],
  279. "methodType": 0,
  280. "methodName": "Get roundtime remaining in seconds",
  281. "className": "Network Match Component Requests",
  282. "resultSlotIDs": [
  283. {}
  284. ],
  285. "prettyClassName": "Network Match Component Requests"
  286. }
  287. }
  288. },
  289. {
  290. "Id": {
  291. "id": 96149824531555
  292. },
  293. "Name": "SC-Node(OperatorSub)",
  294. "Components": {
  295. "Component_[12562782193830491321]": {
  296. "$type": "OperatorSub",
  297. "Id": 12562782193830491321,
  298. "Slots": [
  299. {
  300. "id": {
  301. "m_id": "{3B2A67B1-E829-4718-BAA5-D967D05024DC}"
  302. },
  303. "contracts": [
  304. {
  305. "$type": "SlotTypeContract"
  306. }
  307. ],
  308. "slotName": "In",
  309. "Descriptor": {
  310. "ConnectionType": 1,
  311. "SlotType": 1
  312. }
  313. },
  314. {
  315. "id": {
  316. "m_id": "{9B011A4A-683C-4FB4-9275-2D99F3856EB4}"
  317. },
  318. "contracts": [
  319. {
  320. "$type": "SlotTypeContract"
  321. }
  322. ],
  323. "slotName": "Out",
  324. "Descriptor": {
  325. "ConnectionType": 2,
  326. "SlotType": 1
  327. }
  328. },
  329. {
  330. "id": {
  331. "m_id": "{E6B04C80-B4F1-4ABA-BD25-4F74BEA5FB2B}"
  332. },
  333. "DynamicTypeOverride": 3,
  334. "contracts": [
  335. {
  336. "$type": "SlotTypeContract"
  337. },
  338. {
  339. "$type": "MathOperatorContract",
  340. "NativeTypes": [
  341. {
  342. "m_type": 3
  343. },
  344. {
  345. "m_type": 8
  346. },
  347. {
  348. "m_type": 9
  349. },
  350. {
  351. "m_type": 10
  352. },
  353. {
  354. "m_type": 12
  355. },
  356. {
  357. "m_type": 14
  358. },
  359. {
  360. "m_type": 15
  361. }
  362. ]
  363. }
  364. ],
  365. "slotName": "Number 0",
  366. "toolTip": "An operand to use in performing the specified Operation",
  367. "DisplayDataType": {
  368. "m_type": 3
  369. },
  370. "DisplayGroup": {
  371. "Value": 1114760223
  372. },
  373. "Descriptor": {
  374. "ConnectionType": 1,
  375. "SlotType": 2
  376. },
  377. "DynamicGroup": {
  378. "Value": 1114760223
  379. },
  380. "DataType": 1
  381. },
  382. {
  383. "id": {
  384. "m_id": "{C26DE57E-38D1-4C23-AE50-A4C4D96386E9}"
  385. },
  386. "DynamicTypeOverride": 3,
  387. "contracts": [
  388. {
  389. "$type": "SlotTypeContract"
  390. },
  391. {
  392. "$type": "MathOperatorContract",
  393. "NativeTypes": [
  394. {
  395. "m_type": 3
  396. },
  397. {
  398. "m_type": 8
  399. },
  400. {
  401. "m_type": 9
  402. },
  403. {
  404. "m_type": 10
  405. },
  406. {
  407. "m_type": 12
  408. },
  409. {
  410. "m_type": 14
  411. },
  412. {
  413. "m_type": 15
  414. }
  415. ]
  416. }
  417. ],
  418. "slotName": "Number 1",
  419. "toolTip": "An operand to use in performing the specified Operation",
  420. "DisplayDataType": {
  421. "m_type": 3
  422. },
  423. "DisplayGroup": {
  424. "Value": 1114760223
  425. },
  426. "Descriptor": {
  427. "ConnectionType": 1,
  428. "SlotType": 2
  429. },
  430. "DynamicGroup": {
  431. "Value": 1114760223
  432. },
  433. "DataType": 1
  434. },
  435. {
  436. "id": {
  437. "m_id": "{BFC7CDF9-3492-4F91-BB15-BD2F322ECAA6}"
  438. },
  439. "DynamicTypeOverride": 3,
  440. "contracts": [
  441. {
  442. "$type": "SlotTypeContract"
  443. },
  444. {
  445. "$type": "MathOperatorContract",
  446. "NativeTypes": [
  447. {
  448. "m_type": 3
  449. },
  450. {
  451. "m_type": 8
  452. },
  453. {
  454. "m_type": 9
  455. },
  456. {
  457. "m_type": 10
  458. },
  459. {
  460. "m_type": 12
  461. },
  462. {
  463. "m_type": 14
  464. },
  465. {
  466. "m_type": 15
  467. }
  468. ]
  469. }
  470. ],
  471. "slotName": "Result",
  472. "toolTip": "The result of the specified operation",
  473. "DisplayDataType": {
  474. "m_type": 3
  475. },
  476. "DisplayGroup": {
  477. "Value": 1114760223
  478. },
  479. "Descriptor": {
  480. "ConnectionType": 2,
  481. "SlotType": 2
  482. },
  483. "DynamicGroup": {
  484. "Value": 1114760223
  485. },
  486. "DataType": 1
  487. }
  488. ],
  489. "Datums": [
  490. {
  491. "isOverloadedStorage": false,
  492. "scriptCanvasType": {
  493. "m_type": 3
  494. },
  495. "isNullPointer": false,
  496. "$type": "double",
  497. "value": 0.0,
  498. "label": "Number 0"
  499. },
  500. {
  501. "isOverloadedStorage": false,
  502. "scriptCanvasType": {
  503. "m_type": 3
  504. },
  505. "isNullPointer": false,
  506. "$type": "double",
  507. "value": 0.0,
  508. "label": "Number 1"
  509. }
  510. ]
  511. }
  512. }
  513. },
  514. {
  515. "Id": {
  516. "id": 96175594335331
  517. },
  518. "Name": "SC Node(GetVariable)",
  519. "Components": {
  520. "Component_[12745312475591137093]": {
  521. "$type": "GetVariableNode",
  522. "Id": 12745312475591137093,
  523. "Slots": [
  524. {
  525. "id": {
  526. "m_id": "{5A1FECD5-E6CD-4410-8AAE-D5F1AC44EC11}"
  527. },
  528. "contracts": [
  529. {
  530. "$type": "SlotTypeContract"
  531. }
  532. ],
  533. "slotName": "In",
  534. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  535. "Descriptor": {
  536. "ConnectionType": 1,
  537. "SlotType": 1
  538. }
  539. },
  540. {
  541. "id": {
  542. "m_id": "{DBDCD0C7-9D67-49B0-9DC9-F22FE798C993}"
  543. },
  544. "contracts": [
  545. {
  546. "$type": "SlotTypeContract"
  547. }
  548. ],
  549. "slotName": "Out",
  550. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  551. "Descriptor": {
  552. "ConnectionType": 2,
  553. "SlotType": 1
  554. }
  555. },
  556. {
  557. "id": {
  558. "m_id": "{6B946166-57A0-47C1-91E2-FB4477FCD43C}"
  559. },
  560. "contracts": [
  561. {
  562. "$type": "SlotTypeContract"
  563. }
  564. ],
  565. "slotName": "Number",
  566. "DisplayDataType": {
  567. "m_type": 3
  568. },
  569. "Descriptor": {
  570. "ConnectionType": 2,
  571. "SlotType": 2
  572. },
  573. "DataType": 1
  574. }
  575. ],
  576. "m_variableId": {
  577. "m_id": "{49D86E32-DA58-44F9-BA7C-B384E2A3C3F6}"
  578. },
  579. "m_variableDataOutSlotId": {
  580. "m_id": "{6B946166-57A0-47C1-91E2-FB4477FCD43C}"
  581. }
  582. }
  583. }
  584. },
  585. {
  586. "Id": {
  587. "id": 96162709433443
  588. },
  589. "Name": "SC-Node(OperatorDiv)",
  590. "Components": {
  591. "Component_[13961927566005064086]": {
  592. "$type": "OperatorDiv",
  593. "Id": 13961927566005064086,
  594. "Slots": [
  595. {
  596. "id": {
  597. "m_id": "{54ED2D32-B0BE-4CF3-A80C-6576AB6B0752}"
  598. },
  599. "contracts": [
  600. {
  601. "$type": "SlotTypeContract"
  602. }
  603. ],
  604. "slotName": "In",
  605. "Descriptor": {
  606. "ConnectionType": 1,
  607. "SlotType": 1
  608. }
  609. },
  610. {
  611. "id": {
  612. "m_id": "{BD8B529F-C462-4C21-9C81-0EC595D028CA}"
  613. },
  614. "contracts": [
  615. {
  616. "$type": "SlotTypeContract"
  617. }
  618. ],
  619. "slotName": "Out",
  620. "Descriptor": {
  621. "ConnectionType": 2,
  622. "SlotType": 1
  623. }
  624. },
  625. {
  626. "id": {
  627. "m_id": "{39EED2EE-2287-4727-8E42-C31022194D77}"
  628. },
  629. "DynamicTypeOverride": 3,
  630. "contracts": [
  631. {
  632. "$type": "SlotTypeContract"
  633. },
  634. {
  635. "$type": "MathOperatorContract",
  636. "OperatorType": "Divide",
  637. "NativeTypes": [
  638. {
  639. "m_type": 3
  640. },
  641. {
  642. "m_type": 8
  643. },
  644. {
  645. "m_type": 9
  646. },
  647. {
  648. "m_type": 10
  649. }
  650. ]
  651. }
  652. ],
  653. "slotName": "Number 0",
  654. "toolTip": "An operand to use in performing the specified Operation",
  655. "DisplayDataType": {
  656. "m_type": 3
  657. },
  658. "DisplayGroup": {
  659. "Value": 1114760223
  660. },
  661. "Descriptor": {
  662. "ConnectionType": 1,
  663. "SlotType": 2
  664. },
  665. "DynamicGroup": {
  666. "Value": 1114760223
  667. },
  668. "DataType": 1
  669. },
  670. {
  671. "id": {
  672. "m_id": "{8CA38FEF-56BA-4CA3-AA18-E523E0324A45}"
  673. },
  674. "DynamicTypeOverride": 3,
  675. "contracts": [
  676. {
  677. "$type": "SlotTypeContract"
  678. },
  679. {
  680. "$type": "MathOperatorContract",
  681. "OperatorType": "Divide",
  682. "NativeTypes": [
  683. {
  684. "m_type": 3
  685. },
  686. {
  687. "m_type": 8
  688. },
  689. {
  690. "m_type": 9
  691. },
  692. {
  693. "m_type": 10
  694. }
  695. ]
  696. }
  697. ],
  698. "slotName": "Number 1",
  699. "toolTip": "An operand to use in performing the specified Operation",
  700. "DisplayDataType": {
  701. "m_type": 3
  702. },
  703. "DisplayGroup": {
  704. "Value": 1114760223
  705. },
  706. "Descriptor": {
  707. "ConnectionType": 1,
  708. "SlotType": 2
  709. },
  710. "DynamicGroup": {
  711. "Value": 1114760223
  712. },
  713. "DataType": 1
  714. },
  715. {
  716. "id": {
  717. "m_id": "{B2ADB827-4DE6-428F-8F82-605E3F115C4A}"
  718. },
  719. "DynamicTypeOverride": 3,
  720. "contracts": [
  721. {
  722. "$type": "SlotTypeContract"
  723. },
  724. {
  725. "$type": "MathOperatorContract",
  726. "OperatorType": "Divide",
  727. "NativeTypes": [
  728. {
  729. "m_type": 3
  730. },
  731. {
  732. "m_type": 8
  733. },
  734. {
  735. "m_type": 9
  736. },
  737. {
  738. "m_type": 10
  739. }
  740. ]
  741. }
  742. ],
  743. "slotName": "Result",
  744. "toolTip": "The result of the specified operation",
  745. "DisplayDataType": {
  746. "m_type": 3
  747. },
  748. "DisplayGroup": {
  749. "Value": 1114760223
  750. },
  751. "Descriptor": {
  752. "ConnectionType": 2,
  753. "SlotType": 2
  754. },
  755. "DynamicGroup": {
  756. "Value": 1114760223
  757. },
  758. "DataType": 1
  759. }
  760. ],
  761. "Datums": [
  762. {
  763. "isOverloadedStorage": false,
  764. "scriptCanvasType": {
  765. "m_type": 3
  766. },
  767. "isNullPointer": false,
  768. "$type": "double",
  769. "value": 0.0,
  770. "label": "Number 0"
  771. },
  772. {
  773. "isOverloadedStorage": false,
  774. "scriptCanvasType": {
  775. "m_type": 3
  776. },
  777. "isNullPointer": false,
  778. "$type": "double",
  779. "value": 0.0,
  780. "label": "Number 1"
  781. }
  782. ]
  783. }
  784. }
  785. },
  786. {
  787. "Id": {
  788. "id": 96188479237219
  789. },
  790. "Name": "SC-Node(TimeDelayNodeableNode)",
  791. "Components": {
  792. "Component_[1459506393940049065]": {
  793. "$type": "TimeDelayNodeableNode",
  794. "Id": 1459506393940049065,
  795. "Slots": [
  796. {
  797. "id": {
  798. "m_id": "{55A8F169-29BB-44FA-A449-96A8CAB4C607}"
  799. },
  800. "contracts": [
  801. {
  802. "$type": "SlotTypeContract"
  803. }
  804. ],
  805. "slotName": "Start",
  806. "DisplayGroup": {
  807. "Value": 2675529103
  808. },
  809. "Descriptor": {
  810. "ConnectionType": 1,
  811. "SlotType": 1
  812. }
  813. },
  814. {
  815. "id": {
  816. "m_id": "{4AA8D284-0E4C-44D9-B087-E17C1357601F}"
  817. },
  818. "contracts": [
  819. {
  820. "$type": "SlotTypeContract"
  821. }
  822. ],
  823. "slotName": "Delay",
  824. "toolTip": "The amount of time to delay before the Done is signalled.",
  825. "DisplayGroup": {
  826. "Value": 2675529103
  827. },
  828. "Descriptor": {
  829. "ConnectionType": 1,
  830. "SlotType": 2
  831. },
  832. "DataType": 1
  833. },
  834. {
  835. "id": {
  836. "m_id": "{5FE2A773-1434-466A-9BAE-8222C0B38F05}"
  837. },
  838. "contracts": [
  839. {
  840. "$type": "SlotTypeContract"
  841. }
  842. ],
  843. "slotName": "On Start",
  844. "DisplayGroup": {
  845. "Value": 2675529103
  846. },
  847. "Descriptor": {
  848. "ConnectionType": 2,
  849. "SlotType": 1
  850. }
  851. },
  852. {
  853. "id": {
  854. "m_id": "{F5937F73-42FA-4E16-BC35-C57F877C62D1}"
  855. },
  856. "contracts": [
  857. {
  858. "$type": "SlotTypeContract"
  859. }
  860. ],
  861. "slotName": "Done",
  862. "toolTip": "Signaled after waiting for the specified amount of times.",
  863. "DisplayGroup": {
  864. "Value": 271442091
  865. },
  866. "Descriptor": {
  867. "ConnectionType": 2,
  868. "SlotType": 1
  869. },
  870. "IsLatent": true
  871. }
  872. ],
  873. "Datums": [
  874. {
  875. "isOverloadedStorage": false,
  876. "scriptCanvasType": {
  877. "m_type": 3
  878. },
  879. "isNullPointer": false,
  880. "$type": "double",
  881. "value": 0.75,
  882. "label": "Delay"
  883. }
  884. ],
  885. "nodeable": {
  886. "m_timeUnits": 2
  887. },
  888. "slotExecutionMap": {
  889. "ins": [
  890. {
  891. "_slotId": {
  892. "m_id": "{55A8F169-29BB-44FA-A449-96A8CAB4C607}"
  893. },
  894. "_inputs": [
  895. {
  896. "_slotId": {
  897. "m_id": "{4AA8D284-0E4C-44D9-B087-E17C1357601F}"
  898. }
  899. }
  900. ],
  901. "_outs": [
  902. {
  903. "_slotId": {
  904. "m_id": "{5FE2A773-1434-466A-9BAE-8222C0B38F05}"
  905. },
  906. "_name": "On Start"
  907. }
  908. ]
  909. }
  910. ],
  911. "latents": [
  912. {
  913. "_slotId": {
  914. "m_id": "{F5937F73-42FA-4E16-BC35-C57F877C62D1}"
  915. },
  916. "_name": "Done"
  917. }
  918. ]
  919. }
  920. }
  921. }
  922. },
  923. {
  924. "Id": {
  925. "id": 96055335251043
  926. },
  927. "Name": "SC Node(GetVariable)",
  928. "Components": {
  929. "Component_[1532956742937829440]": {
  930. "$type": "GetVariableNode",
  931. "Id": 1532956742937829440,
  932. "Slots": [
  933. {
  934. "id": {
  935. "m_id": "{9694EBDC-E053-4D7C-A13C-DDDF60534604}"
  936. },
  937. "contracts": [
  938. {
  939. "$type": "SlotTypeContract"
  940. }
  941. ],
  942. "slotName": "In",
  943. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  944. "Descriptor": {
  945. "ConnectionType": 1,
  946. "SlotType": 1
  947. }
  948. },
  949. {
  950. "id": {
  951. "m_id": "{BC191F77-AE00-4246-866E-65E2C34A52B7}"
  952. },
  953. "contracts": [
  954. {
  955. "$type": "SlotTypeContract"
  956. }
  957. ],
  958. "slotName": "Out",
  959. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  960. "Descriptor": {
  961. "ConnectionType": 2,
  962. "SlotType": 1
  963. }
  964. },
  965. {
  966. "id": {
  967. "m_id": "{0FBC7B23-8910-4810-BB0B-322FDF13B678}"
  968. },
  969. "contracts": [
  970. {
  971. "$type": "SlotTypeContract"
  972. }
  973. ],
  974. "slotName": "Number",
  975. "DisplayDataType": {
  976. "m_type": 3
  977. },
  978. "Descriptor": {
  979. "ConnectionType": 2,
  980. "SlotType": 2
  981. },
  982. "DataType": 1
  983. }
  984. ],
  985. "m_variableId": {
  986. "m_id": "{95843EC3-D528-453B-940D-9E78061CCE0F}"
  987. },
  988. "m_variableDataOutSlotId": {
  989. "m_id": "{0FBC7B23-8910-4810-BB0B-322FDF13B678}"
  990. }
  991. }
  992. }
  993. },
  994. {
  995. "Id": {
  996. "id": 96072515120227
  997. },
  998. "Name": "SC-Node(SpawnDecal)",
  999. "Components": {
  1000. "Component_[15451471737821840539]": {
  1001. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1002. "Id": 15451471737821840539,
  1003. "Slots": [
  1004. {
  1005. "id": {
  1006. "m_id": "{DB61774C-D56B-49C9-B35C-33E5A3F2A7A5}"
  1007. },
  1008. "contracts": [
  1009. {
  1010. "$type": "SlotTypeContract"
  1011. }
  1012. ],
  1013. "slotName": "Uuid: 0",
  1014. "Descriptor": {
  1015. "ConnectionType": 1,
  1016. "SlotType": 2
  1017. },
  1018. "DataType": 1
  1019. },
  1020. {
  1021. "id": {
  1022. "m_id": "{99DA4AF9-0E5C-4F89-86A4-EBDCF4DD2183}"
  1023. },
  1024. "contracts": [
  1025. {
  1026. "$type": "SlotTypeContract"
  1027. }
  1028. ],
  1029. "slotName": "Transform: 1",
  1030. "Descriptor": {
  1031. "ConnectionType": 1,
  1032. "SlotType": 2
  1033. },
  1034. "DataType": 1
  1035. },
  1036. {
  1037. "id": {
  1038. "m_id": "{1A9B2127-A517-471E-A9E5-265FBCA519A1}"
  1039. },
  1040. "contracts": [
  1041. {
  1042. "$type": "SlotTypeContract"
  1043. }
  1044. ],
  1045. "slotName": "SpawnDecalConfig: 2",
  1046. "Descriptor": {
  1047. "ConnectionType": 1,
  1048. "SlotType": 2
  1049. },
  1050. "DataType": 1
  1051. },
  1052. {
  1053. "id": {
  1054. "m_id": "{2BE5BE1F-344E-46C4-98E7-0EEDBCB52134}"
  1055. },
  1056. "contracts": [
  1057. {
  1058. "$type": "SlotTypeContract"
  1059. }
  1060. ],
  1061. "slotName": "In",
  1062. "Descriptor": {
  1063. "ConnectionType": 1,
  1064. "SlotType": 1
  1065. }
  1066. },
  1067. {
  1068. "id": {
  1069. "m_id": "{984BE376-7E35-4EDE-879B-F0241B07E0C0}"
  1070. },
  1071. "contracts": [
  1072. {
  1073. "$type": "SlotTypeContract"
  1074. }
  1075. ],
  1076. "slotName": "Out",
  1077. "Descriptor": {
  1078. "ConnectionType": 2,
  1079. "SlotType": 1
  1080. }
  1081. }
  1082. ],
  1083. "Datums": [
  1084. {
  1085. "isOverloadedStorage": false,
  1086. "scriptCanvasType": {
  1087. "m_type": 4,
  1088. "m_azType": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}"
  1089. },
  1090. "isNullPointer": false,
  1091. "$type": "AZ::Uuid",
  1092. "value": "{00000000-0000-0000-0000-000000000000}",
  1093. "label": "Source"
  1094. },
  1095. {
  1096. "isOverloadedStorage": false,
  1097. "scriptCanvasType": {
  1098. "m_type": 7
  1099. },
  1100. "isNullPointer": false,
  1101. "$type": "Transform",
  1102. "value": {
  1103. "Translation": [
  1104. 0.0,
  1105. 0.0,
  1106. 0.0
  1107. ],
  1108. "Rotation": [
  1109. 0.0,
  1110. 0.0,
  1111. 0.0,
  1112. 1.0
  1113. ],
  1114. "Scale": 1.0
  1115. },
  1116. "label": "Transform: 1"
  1117. },
  1118. {
  1119. "isOverloadedStorage": false,
  1120. "scriptCanvasType": {
  1121. "m_type": 4,
  1122. "m_azType": "{FC3DA616-174B-48FD-9BFB-BC277132FB47}"
  1123. },
  1124. "isNullPointer": false,
  1125. "$type": "MultiplayerSample::SpawnDecalConfig",
  1126. "label": "SpawnDecalConfig: 2"
  1127. }
  1128. ],
  1129. "methodType": 0,
  1130. "methodName": "SpawnDecal",
  1131. "className": "RequestBus",
  1132. "resultSlotIDs": [
  1133. {}
  1134. ],
  1135. "inputSlots": [
  1136. {
  1137. "m_id": "{DB61774C-D56B-49C9-B35C-33E5A3F2A7A5}"
  1138. },
  1139. {
  1140. "m_id": "{99DA4AF9-0E5C-4F89-86A4-EBDCF4DD2183}"
  1141. },
  1142. {
  1143. "m_id": "{1A9B2127-A517-471E-A9E5-265FBCA519A1}"
  1144. }
  1145. ],
  1146. "prettyClassName": "RequestBus"
  1147. }
  1148. }
  1149. },
  1150. {
  1151. "Id": {
  1152. "id": 96093989956707
  1153. },
  1154. "Name": "SC-Node(ForEach)",
  1155. "Components": {
  1156. "Component_[15610079122495424320]": {
  1157. "$type": "ForEach",
  1158. "Id": 15610079122495424320,
  1159. "Slots": [
  1160. {
  1161. "id": {
  1162. "m_id": "{0CDB3DDC-0074-4488-B713-2548D6D8C60A}"
  1163. },
  1164. "DynamicTypeOverride": 2,
  1165. "contracts": [
  1166. {
  1167. "$type": "SlotTypeContract"
  1168. }
  1169. ],
  1170. "slotName": "Source",
  1171. "DisplayDataType": {
  1172. "m_type": 4,
  1173. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  1174. },
  1175. "Descriptor": {
  1176. "ConnectionType": 1,
  1177. "SlotType": 2
  1178. },
  1179. "DynamicGroup": {
  1180. "Value": 3089028177
  1181. },
  1182. "DataType": 1
  1183. },
  1184. {
  1185. "id": {
  1186. "m_id": "{EB9B11B1-39CA-4277-BF41-DFD255249B86}"
  1187. },
  1188. "contracts": [
  1189. {
  1190. "$type": "SlotTypeContract"
  1191. }
  1192. ],
  1193. "slotName": "In",
  1194. "toolTip": "Signaled upon node entry",
  1195. "Descriptor": {
  1196. "ConnectionType": 1,
  1197. "SlotType": 1
  1198. }
  1199. },
  1200. {
  1201. "id": {
  1202. "m_id": "{91A53261-C566-49B1-BAEB-E4E525C31596}"
  1203. },
  1204. "contracts": [
  1205. {
  1206. "$type": "SlotTypeContract"
  1207. }
  1208. ],
  1209. "slotName": "Break",
  1210. "toolTip": "Stops the iteration when signaled",
  1211. "Descriptor": {
  1212. "ConnectionType": 1,
  1213. "SlotType": 1
  1214. }
  1215. },
  1216. {
  1217. "id": {
  1218. "m_id": "{2AE5D9C0-EF80-425B-B638-CA841696C639}"
  1219. },
  1220. "contracts": [
  1221. {
  1222. "$type": "SlotTypeContract"
  1223. }
  1224. ],
  1225. "slotName": "Each",
  1226. "toolTip": "Signalled after each element of the container",
  1227. "Descriptor": {
  1228. "ConnectionType": 2,
  1229. "SlotType": 1
  1230. }
  1231. },
  1232. {
  1233. "id": {
  1234. "m_id": "{AA5FE66E-83E6-48E0-9E51-0CE86002BAF4}"
  1235. },
  1236. "contracts": [
  1237. {
  1238. "$type": "SlotTypeContract"
  1239. }
  1240. ],
  1241. "slotName": "Finished",
  1242. "toolTip": "The container has been fully iterated over",
  1243. "Descriptor": {
  1244. "ConnectionType": 2,
  1245. "SlotType": 1
  1246. }
  1247. },
  1248. {
  1249. "id": {
  1250. "m_id": "{F7CA733F-2FEC-42F2-A297-B6FE88B3F97C}"
  1251. },
  1252. "contracts": [
  1253. {
  1254. "$type": "SlotTypeContract"
  1255. }
  1256. ],
  1257. "slotName": "EntityId",
  1258. "DisplayDataType": {
  1259. "m_type": 1
  1260. },
  1261. "Descriptor": {
  1262. "ConnectionType": 2,
  1263. "SlotType": 2
  1264. },
  1265. "DataType": 1
  1266. }
  1267. ],
  1268. "Datums": [
  1269. {
  1270. "scriptCanvasType": {
  1271. "m_type": 4,
  1272. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  1273. },
  1274. "isNullPointer": false,
  1275. "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector<EntityId, allocator>",
  1276. "label": "Source"
  1277. }
  1278. ],
  1279. "m_sourceSlot": {
  1280. "m_id": "{0CDB3DDC-0074-4488-B713-2548D6D8C60A}"
  1281. },
  1282. "m_previousTypeId": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}",
  1283. "m_propertySlots": [
  1284. {
  1285. "m_propertySlotId": {
  1286. "m_id": "{F7CA733F-2FEC-42F2-A297-B6FE88B3F97C}"
  1287. },
  1288. "m_propertyType": {
  1289. "m_type": 1
  1290. },
  1291. "m_propertyName": "EntityId"
  1292. }
  1293. ]
  1294. }
  1295. }
  1296. },
  1297. {
  1298. "Id": {
  1299. "id": 96115464793187
  1300. },
  1301. "Name": "SC-Node(NetworkHealthComponentTypeId::Getter)",
  1302. "Components": {
  1303. "Component_[15851503404628616245]": {
  1304. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1305. "Id": 15851503404628616245,
  1306. "Slots": [
  1307. {
  1308. "id": {
  1309. "m_id": "{285C18A0-4CB7-444D-80AB-A7E66AAB5B07}"
  1310. },
  1311. "contracts": [
  1312. {
  1313. "$type": "SlotTypeContract"
  1314. }
  1315. ],
  1316. "slotName": "In",
  1317. "Descriptor": {
  1318. "ConnectionType": 1,
  1319. "SlotType": 1
  1320. }
  1321. },
  1322. {
  1323. "id": {
  1324. "m_id": "{D21B2B42-7EA6-46BC-91DD-C4A4657F9BE6}"
  1325. },
  1326. "contracts": [
  1327. {
  1328. "$type": "SlotTypeContract"
  1329. }
  1330. ],
  1331. "slotName": "Out",
  1332. "Descriptor": {
  1333. "ConnectionType": 2,
  1334. "SlotType": 1
  1335. }
  1336. },
  1337. {
  1338. "id": {
  1339. "m_id": "{DB1DE106-13B4-40C1-8AC9-FDA1FB47C61E}"
  1340. },
  1341. "contracts": [
  1342. {
  1343. "$type": "SlotTypeContract"
  1344. }
  1345. ],
  1346. "slotName": "Uuid",
  1347. "DisplayDataType": {
  1348. "m_type": 4,
  1349. "m_azType": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}"
  1350. },
  1351. "Descriptor": {
  1352. "ConnectionType": 2,
  1353. "SlotType": 2
  1354. },
  1355. "DataType": 1
  1356. }
  1357. ],
  1358. "methodType": 1,
  1359. "methodName": "NetworkHealthComponentTypeId::Getter",
  1360. "resultSlotIDs": [
  1361. {}
  1362. ],
  1363. "prettyClassName": "NetworkHealthComponentTypeId"
  1364. }
  1365. }
  1366. },
  1367. {
  1368. "Id": {
  1369. "id": 96136939629667
  1370. },
  1371. "Name": "SC-Node(Restart)",
  1372. "Components": {
  1373. "Component_[16508536981566161200]": {
  1374. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1375. "Id": 16508536981566161200,
  1376. "Slots": [
  1377. {
  1378. "id": {
  1379. "m_id": "{95DC8491-CDF7-4619-8848-6980C16AA21C}"
  1380. },
  1381. "contracts": [
  1382. {
  1383. "$type": "SlotTypeContract"
  1384. }
  1385. ],
  1386. "slotName": "EntityId: 0",
  1387. "Descriptor": {
  1388. "ConnectionType": 1,
  1389. "SlotType": 2
  1390. },
  1391. "DataType": 1
  1392. },
  1393. {
  1394. "id": {
  1395. "m_id": "{5F9F9EB7-F0CB-496D-B003-D9AF58CA363F}"
  1396. },
  1397. "contracts": [
  1398. {
  1399. "$type": "SlotTypeContract"
  1400. }
  1401. ],
  1402. "slotName": "Boolean: 1",
  1403. "Descriptor": {
  1404. "ConnectionType": 1,
  1405. "SlotType": 2
  1406. },
  1407. "DataType": 1
  1408. },
  1409. {
  1410. "id": {
  1411. "m_id": "{12AD2A87-2315-4E60-9B2D-06DB244AC4E4}"
  1412. },
  1413. "contracts": [
  1414. {
  1415. "$type": "SlotTypeContract"
  1416. }
  1417. ],
  1418. "slotName": "In",
  1419. "Descriptor": {
  1420. "ConnectionType": 1,
  1421. "SlotType": 1
  1422. }
  1423. },
  1424. {
  1425. "id": {
  1426. "m_id": "{4ACC1BB3-4876-4961-839E-76D1A16ED9B1}"
  1427. },
  1428. "contracts": [
  1429. {
  1430. "$type": "SlotTypeContract"
  1431. }
  1432. ],
  1433. "slotName": "Out",
  1434. "Descriptor": {
  1435. "ConnectionType": 2,
  1436. "SlotType": 1
  1437. }
  1438. },
  1439. {
  1440. "id": {
  1441. "m_id": "{DE47E15A-4549-4A86-917A-EB27DAD0726F}"
  1442. },
  1443. "contracts": [
  1444. {
  1445. "$type": "SlotTypeContract"
  1446. }
  1447. ],
  1448. "slotName": "Boolean",
  1449. "DisplayDataType": {
  1450. "m_type": 0
  1451. },
  1452. "Descriptor": {
  1453. "ConnectionType": 2,
  1454. "SlotType": 2
  1455. },
  1456. "DataType": 1
  1457. }
  1458. ],
  1459. "Datums": [
  1460. {
  1461. "isOverloadedStorage": false,
  1462. "scriptCanvasType": {
  1463. "m_type": 1
  1464. },
  1465. "isNullPointer": false,
  1466. "$type": "EntityId",
  1467. "value": {
  1468. "id": 2901262558
  1469. },
  1470. "label": "Source"
  1471. },
  1472. {
  1473. "isOverloadedStorage": false,
  1474. "scriptCanvasType": {
  1475. "m_type": 0
  1476. },
  1477. "isNullPointer": false,
  1478. "$type": "bool",
  1479. "value": true,
  1480. "label": "Boolean: 1"
  1481. }
  1482. ],
  1483. "methodType": 0,
  1484. "methodName": "Restart",
  1485. "className": "PopcornFXEmitterComponentRequestBus",
  1486. "resultSlotIDs": [
  1487. {}
  1488. ],
  1489. "inputSlots": [
  1490. {
  1491. "m_id": "{95DC8491-CDF7-4619-8848-6980C16AA21C}"
  1492. },
  1493. {
  1494. "m_id": "{5F9F9EB7-F0CB-496D-B003-D9AF58CA363F}"
  1495. }
  1496. ],
  1497. "prettyClassName": "PopcornFXEmitterComponentRequestBus"
  1498. }
  1499. }
  1500. },
  1501. {
  1502. "Id": {
  1503. "id": 96158414466147
  1504. },
  1505. "Name": "EBusEventHandler",
  1506. "Components": {
  1507. "Component_[16839214030351527834]": {
  1508. "$type": "EBusEventHandler",
  1509. "Id": 16839214030351527834,
  1510. "Slots": [
  1511. {
  1512. "id": {
  1513. "m_id": "{E1904266-B3D6-4322-A27B-342E1BCBD916}"
  1514. },
  1515. "contracts": [
  1516. {
  1517. "$type": "SlotTypeContract"
  1518. }
  1519. ],
  1520. "slotName": "Connect",
  1521. "toolTip": "Connect this event handler to the specified entity.",
  1522. "Descriptor": {
  1523. "ConnectionType": 1,
  1524. "SlotType": 1
  1525. }
  1526. },
  1527. {
  1528. "id": {
  1529. "m_id": "{690F53C2-B219-44DC-84D5-538B3C7C3D09}"
  1530. },
  1531. "contracts": [
  1532. {
  1533. "$type": "SlotTypeContract"
  1534. }
  1535. ],
  1536. "slotName": "Disconnect",
  1537. "toolTip": "Disconnect this event handler.",
  1538. "Descriptor": {
  1539. "ConnectionType": 1,
  1540. "SlotType": 1
  1541. }
  1542. },
  1543. {
  1544. "id": {
  1545. "m_id": "{3B581BBC-8DCC-48CC-A0CA-70C9E7974904}"
  1546. },
  1547. "contracts": [
  1548. {
  1549. "$type": "SlotTypeContract"
  1550. }
  1551. ],
  1552. "slotName": "OnConnected",
  1553. "toolTip": "Signaled when a connection has taken place.",
  1554. "Descriptor": {
  1555. "ConnectionType": 2,
  1556. "SlotType": 1
  1557. }
  1558. },
  1559. {
  1560. "id": {
  1561. "m_id": "{F4884871-2536-4FCC-B067-4E41D06D83AF}"
  1562. },
  1563. "contracts": [
  1564. {
  1565. "$type": "SlotTypeContract"
  1566. }
  1567. ],
  1568. "slotName": "OnDisconnected",
  1569. "toolTip": "Signaled when this event handler is disconnected.",
  1570. "Descriptor": {
  1571. "ConnectionType": 2,
  1572. "SlotType": 1
  1573. }
  1574. },
  1575. {
  1576. "id": {
  1577. "m_id": "{CFFC21B0-C3D0-48A9-9BFC-1F8E0E20FDD1}"
  1578. },
  1579. "contracts": [
  1580. {
  1581. "$type": "SlotTypeContract"
  1582. }
  1583. ],
  1584. "slotName": "OnFailure",
  1585. "toolTip": "Signaled when it is not possible to connect this handler.",
  1586. "Descriptor": {
  1587. "ConnectionType": 2,
  1588. "SlotType": 1
  1589. }
  1590. },
  1591. {
  1592. "id": {
  1593. "m_id": "{18839280-F19E-48E0-9DC1-CED01C7F18F0}"
  1594. },
  1595. "contracts": [
  1596. {
  1597. "$type": "SlotTypeContract"
  1598. }
  1599. ],
  1600. "slotName": "Source",
  1601. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  1602. "Descriptor": {
  1603. "ConnectionType": 1,
  1604. "SlotType": 2
  1605. },
  1606. "DataType": 1
  1607. },
  1608. {
  1609. "id": {
  1610. "m_id": "{F1DA8369-9C5B-46F5-A97D-5E9DC0CF4C6B}"
  1611. },
  1612. "contracts": [
  1613. {
  1614. "$type": "SlotTypeContract"
  1615. }
  1616. ],
  1617. "slotName": "EntityId",
  1618. "DisplayDataType": {
  1619. "m_type": 1
  1620. },
  1621. "Descriptor": {
  1622. "ConnectionType": 2,
  1623. "SlotType": 2
  1624. },
  1625. "DataType": 1
  1626. },
  1627. {
  1628. "id": {
  1629. "m_id": "{EFFB2732-B237-4A6C-91F1-0996EF54E53B}"
  1630. },
  1631. "contracts": [
  1632. {
  1633. "$type": "SlotTypeContract"
  1634. }
  1635. ],
  1636. "slotName": "ExecutionSlot:OnEntityActivated",
  1637. "Descriptor": {
  1638. "ConnectionType": 2,
  1639. "SlotType": 1
  1640. },
  1641. "IsLatent": true
  1642. },
  1643. {
  1644. "id": {
  1645. "m_id": "{70B8350F-D2B1-4130-A062-068497069485}"
  1646. },
  1647. "contracts": [
  1648. {
  1649. "$type": "SlotTypeContract"
  1650. }
  1651. ],
  1652. "slotName": "EntityId",
  1653. "DisplayDataType": {
  1654. "m_type": 1
  1655. },
  1656. "Descriptor": {
  1657. "ConnectionType": 2,
  1658. "SlotType": 2
  1659. },
  1660. "DataType": 1
  1661. },
  1662. {
  1663. "id": {
  1664. "m_id": "{2F3A3540-7A73-486D-ABAF-BAB2898482A6}"
  1665. },
  1666. "contracts": [
  1667. {
  1668. "$type": "SlotTypeContract"
  1669. }
  1670. ],
  1671. "slotName": "ExecutionSlot:OnEntityDeactivated",
  1672. "Descriptor": {
  1673. "ConnectionType": 2,
  1674. "SlotType": 1
  1675. },
  1676. "IsLatent": true
  1677. }
  1678. ],
  1679. "Datums": [
  1680. {
  1681. "isOverloadedStorage": false,
  1682. "scriptCanvasType": {
  1683. "m_type": 1
  1684. },
  1685. "isNullPointer": false,
  1686. "$type": "EntityId",
  1687. "value": {
  1688. "id": 2901262558
  1689. },
  1690. "label": "Source"
  1691. }
  1692. ],
  1693. "m_eventMap": [
  1694. {
  1695. "Key": {
  1696. "Value": 245425936
  1697. },
  1698. "Value": {
  1699. "m_eventName": "OnEntityActivated",
  1700. "m_eventId": {
  1701. "Value": 245425936
  1702. },
  1703. "m_eventSlotId": {
  1704. "m_id": "{EFFB2732-B237-4A6C-91F1-0996EF54E53B}"
  1705. },
  1706. "m_parameterSlotIds": [
  1707. {
  1708. "m_id": "{F1DA8369-9C5B-46F5-A97D-5E9DC0CF4C6B}"
  1709. }
  1710. ],
  1711. "m_numExpectedArguments": 1
  1712. }
  1713. },
  1714. {
  1715. "Key": {
  1716. "Value": 4273369222
  1717. },
  1718. "Value": {
  1719. "m_eventName": "OnEntityDeactivated",
  1720. "m_eventId": {
  1721. "Value": 4273369222
  1722. },
  1723. "m_eventSlotId": {
  1724. "m_id": "{2F3A3540-7A73-486D-ABAF-BAB2898482A6}"
  1725. },
  1726. "m_parameterSlotIds": [
  1727. {
  1728. "m_id": "{70B8350F-D2B1-4130-A062-068497069485}"
  1729. }
  1730. ],
  1731. "m_numExpectedArguments": 1
  1732. }
  1733. }
  1734. ],
  1735. "m_ebusName": "EntityBus",
  1736. "m_busId": {
  1737. "Value": 3358774020
  1738. }
  1739. }
  1740. }
  1741. },
  1742. {
  1743. "Id": {
  1744. "id": 96184184269923
  1745. },
  1746. "Name": "SC-Node(TimeDelayNodeableNode)",
  1747. "Components": {
  1748. "Component_[17415283340689610371]": {
  1749. "$type": "TimeDelayNodeableNode",
  1750. "Id": 17415283340689610371,
  1751. "Slots": [
  1752. {
  1753. "id": {
  1754. "m_id": "{81F44DC0-E223-4510-8FCE-C906980B95EC}"
  1755. },
  1756. "contracts": [
  1757. {
  1758. "$type": "SlotTypeContract"
  1759. }
  1760. ],
  1761. "slotName": "Start",
  1762. "DisplayGroup": {
  1763. "Value": 2675529103
  1764. },
  1765. "Descriptor": {
  1766. "ConnectionType": 1,
  1767. "SlotType": 1
  1768. }
  1769. },
  1770. {
  1771. "id": {
  1772. "m_id": "{A8149B16-9388-487C-AE59-044F78DC0D16}"
  1773. },
  1774. "contracts": [
  1775. {
  1776. "$type": "SlotTypeContract"
  1777. }
  1778. ],
  1779. "slotName": "Delay",
  1780. "toolTip": "The amount of time to delay before the Done is signalled.",
  1781. "DisplayGroup": {
  1782. "Value": 2675529103
  1783. },
  1784. "Descriptor": {
  1785. "ConnectionType": 1,
  1786. "SlotType": 2
  1787. },
  1788. "DataType": 1
  1789. },
  1790. {
  1791. "id": {
  1792. "m_id": "{DB7CB286-61E4-42C0-8556-34EF5982809F}"
  1793. },
  1794. "contracts": [
  1795. {
  1796. "$type": "SlotTypeContract"
  1797. }
  1798. ],
  1799. "slotName": "On Start",
  1800. "DisplayGroup": {
  1801. "Value": 2675529103
  1802. },
  1803. "Descriptor": {
  1804. "ConnectionType": 2,
  1805. "SlotType": 1
  1806. }
  1807. },
  1808. {
  1809. "id": {
  1810. "m_id": "{DFD59E82-3AD7-4237-910F-7B5B95B7B8DB}"
  1811. },
  1812. "contracts": [
  1813. {
  1814. "$type": "SlotTypeContract"
  1815. }
  1816. ],
  1817. "slotName": "Done",
  1818. "toolTip": "Signaled after waiting for the specified amount of times.",
  1819. "DisplayGroup": {
  1820. "Value": 271442091
  1821. },
  1822. "Descriptor": {
  1823. "ConnectionType": 2,
  1824. "SlotType": 1
  1825. },
  1826. "IsLatent": true
  1827. }
  1828. ],
  1829. "Datums": [
  1830. {
  1831. "isOverloadedStorage": false,
  1832. "scriptCanvasType": {
  1833. "m_type": 3
  1834. },
  1835. "isNullPointer": false,
  1836. "$type": "double",
  1837. "value": 0.75,
  1838. "label": "Delay"
  1839. }
  1840. ],
  1841. "nodeable": {
  1842. "m_timeUnits": 2
  1843. },
  1844. "slotExecutionMap": {
  1845. "ins": [
  1846. {
  1847. "_slotId": {
  1848. "m_id": "{81F44DC0-E223-4510-8FCE-C906980B95EC}"
  1849. },
  1850. "_inputs": [
  1851. {
  1852. "_slotId": {
  1853. "m_id": "{A8149B16-9388-487C-AE59-044F78DC0D16}"
  1854. }
  1855. }
  1856. ],
  1857. "_outs": [
  1858. {
  1859. "_slotId": {
  1860. "m_id": "{DB7CB286-61E4-42C0-8556-34EF5982809F}"
  1861. },
  1862. "_name": "On Start"
  1863. }
  1864. ]
  1865. }
  1866. ],
  1867. "latents": [
  1868. {
  1869. "_slotId": {
  1870. "m_id": "{DFD59E82-3AD7-4237-910F-7B5B95B7B8DB}"
  1871. },
  1872. "_name": "Done"
  1873. }
  1874. ]
  1875. }
  1876. }
  1877. }
  1878. },
  1879. {
  1880. "Id": {
  1881. "id": 96051040283747
  1882. },
  1883. "Name": "SC-Node(SetAttributeAsFloat)",
  1884. "Components": {
  1885. "Component_[18029935375324893535]": {
  1886. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1887. "Id": 18029935375324893535,
  1888. "Slots": [
  1889. {
  1890. "id": {
  1891. "m_id": "{CF79A9B1-828C-43EE-834B-602F06C6F79F}"
  1892. },
  1893. "contracts": [
  1894. {
  1895. "$type": "SlotTypeContract"
  1896. }
  1897. ],
  1898. "slotName": "EntityId: 0",
  1899. "Descriptor": {
  1900. "ConnectionType": 1,
  1901. "SlotType": 2
  1902. },
  1903. "DataType": 1
  1904. },
  1905. {
  1906. "id": {
  1907. "m_id": "{98DCD577-13AC-4087-9DE7-6F3F3952205A}"
  1908. },
  1909. "contracts": [
  1910. {
  1911. "$type": "SlotTypeContract"
  1912. }
  1913. ],
  1914. "slotName": "Number: 1",
  1915. "Descriptor": {
  1916. "ConnectionType": 1,
  1917. "SlotType": 2
  1918. },
  1919. "DataType": 1
  1920. },
  1921. {
  1922. "id": {
  1923. "m_id": "{05A4C7BD-503F-4012-AB67-EF40A30E245B}"
  1924. },
  1925. "contracts": [
  1926. {
  1927. "$type": "SlotTypeContract"
  1928. }
  1929. ],
  1930. "slotName": "Number: 2",
  1931. "Descriptor": {
  1932. "ConnectionType": 1,
  1933. "SlotType": 2
  1934. },
  1935. "DataType": 1
  1936. },
  1937. {
  1938. "id": {
  1939. "m_id": "{B1D95B86-BBBF-486B-B054-A1A1641A335B}"
  1940. },
  1941. "contracts": [
  1942. {
  1943. "$type": "SlotTypeContract"
  1944. }
  1945. ],
  1946. "slotName": "In",
  1947. "Descriptor": {
  1948. "ConnectionType": 1,
  1949. "SlotType": 1
  1950. }
  1951. },
  1952. {
  1953. "id": {
  1954. "m_id": "{D4261371-8A45-4902-A218-F68BD9E52437}"
  1955. },
  1956. "contracts": [
  1957. {
  1958. "$type": "SlotTypeContract"
  1959. }
  1960. ],
  1961. "slotName": "Out",
  1962. "Descriptor": {
  1963. "ConnectionType": 2,
  1964. "SlotType": 1
  1965. }
  1966. },
  1967. {
  1968. "id": {
  1969. "m_id": "{1F052C0C-5771-4D3D-8349-11666FE8F768}"
  1970. },
  1971. "contracts": [
  1972. {
  1973. "$type": "SlotTypeContract"
  1974. }
  1975. ],
  1976. "slotName": "Boolean",
  1977. "DisplayDataType": {
  1978. "m_type": 0
  1979. },
  1980. "Descriptor": {
  1981. "ConnectionType": 2,
  1982. "SlotType": 2
  1983. },
  1984. "DataType": 1
  1985. }
  1986. ],
  1987. "Datums": [
  1988. {
  1989. "isOverloadedStorage": false,
  1990. "scriptCanvasType": {
  1991. "m_type": 1
  1992. },
  1993. "isNullPointer": false,
  1994. "$type": "EntityId",
  1995. "value": {
  1996. "id": 2901262558
  1997. },
  1998. "label": "Source"
  1999. },
  2000. {
  2001. "isOverloadedStorage": false,
  2002. "scriptCanvasType": {
  2003. "m_type": 3
  2004. },
  2005. "isNullPointer": false,
  2006. "$type": "double",
  2007. "value": 0.0,
  2008. "label": "Number: 1"
  2009. },
  2010. {
  2011. "isOverloadedStorage": false,
  2012. "scriptCanvasType": {
  2013. "m_type": 3
  2014. },
  2015. "isNullPointer": false,
  2016. "$type": "double",
  2017. "value": 0.0,
  2018. "label": "Number: 2"
  2019. }
  2020. ],
  2021. "methodType": 0,
  2022. "methodName": "SetAttributeAsFloat",
  2023. "className": "PopcornFXEmitterComponentRequestBus",
  2024. "resultSlotIDs": [
  2025. {}
  2026. ],
  2027. "inputSlots": [
  2028. {
  2029. "m_id": "{CF79A9B1-828C-43EE-834B-602F06C6F79F}"
  2030. },
  2031. {
  2032. "m_id": "{98DCD577-13AC-4087-9DE7-6F3F3952205A}"
  2033. },
  2034. {
  2035. "m_id": "{05A4C7BD-503F-4012-AB67-EF40A30E245B}"
  2036. }
  2037. ],
  2038. "prettyClassName": "PopcornFXEmitterComponentRequestBus"
  2039. }
  2040. }
  2041. },
  2042. {
  2043. "Id": {
  2044. "id": 96068220152931
  2045. },
  2046. "Name": "SC Node(GetVariable)",
  2047. "Components": {
  2048. "Component_[2152595134877493806]": {
  2049. "$type": "GetVariableNode",
  2050. "Id": 2152595134877493806,
  2051. "Slots": [
  2052. {
  2053. "id": {
  2054. "m_id": "{658E31AF-93CA-43BC-B889-5AC0E0CAAA18}"
  2055. },
  2056. "contracts": [
  2057. {
  2058. "$type": "SlotTypeContract"
  2059. }
  2060. ],
  2061. "slotName": "In",
  2062. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2063. "Descriptor": {
  2064. "ConnectionType": 1,
  2065. "SlotType": 1
  2066. }
  2067. },
  2068. {
  2069. "id": {
  2070. "m_id": "{A5F43AB3-D627-4031-BBE5-9BAC3ACD5F96}"
  2071. },
  2072. "contracts": [
  2073. {
  2074. "$type": "SlotTypeContract"
  2075. }
  2076. ],
  2077. "slotName": "Out",
  2078. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2079. "Descriptor": {
  2080. "ConnectionType": 2,
  2081. "SlotType": 1
  2082. }
  2083. },
  2084. {
  2085. "id": {
  2086. "m_id": "{73D730C0-AACC-4A53-BDB0-FF3BEF90C783}"
  2087. },
  2088. "contracts": [
  2089. {
  2090. "$type": "SlotTypeContract"
  2091. }
  2092. ],
  2093. "slotName": "Number",
  2094. "DisplayDataType": {
  2095. "m_type": 3
  2096. },
  2097. "Descriptor": {
  2098. "ConnectionType": 2,
  2099. "SlotType": 2
  2100. },
  2101. "DataType": 1
  2102. }
  2103. ],
  2104. "m_variableId": {
  2105. "m_id": "{251012C9-C4D6-4FB3-AA03-EB593EE1BFEC}"
  2106. },
  2107. "m_variableDataOutSlotId": {
  2108. "m_id": "{73D730C0-AACC-4A53-BDB0-FF3BEF90C783}"
  2109. }
  2110. }
  2111. }
  2112. },
  2113. {
  2114. "Id": {
  2115. "id": 96089694989411
  2116. },
  2117. "Name": "SC Node(SetVariable)",
  2118. "Components": {
  2119. "Component_[3105850152601227280]": {
  2120. "$type": "SetVariableNode",
  2121. "Id": 3105850152601227280,
  2122. "Slots": [
  2123. {
  2124. "id": {
  2125. "m_id": "{D51F9D1E-3158-41AA-8D7C-0DF1BC60A5A9}"
  2126. },
  2127. "contracts": [
  2128. {
  2129. "$type": "SlotTypeContract"
  2130. }
  2131. ],
  2132. "slotName": "In",
  2133. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  2134. "Descriptor": {
  2135. "ConnectionType": 1,
  2136. "SlotType": 1
  2137. }
  2138. },
  2139. {
  2140. "id": {
  2141. "m_id": "{EDCB4491-C0DE-444E-87A5-DFF4B5FE0576}"
  2142. },
  2143. "contracts": [
  2144. {
  2145. "$type": "SlotTypeContract"
  2146. }
  2147. ],
  2148. "slotName": "Out",
  2149. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  2150. "Descriptor": {
  2151. "ConnectionType": 2,
  2152. "SlotType": 1
  2153. }
  2154. },
  2155. {
  2156. "id": {
  2157. "m_id": "{8DD9C86F-13F4-4170-BEF6-C72E4FF2428A}"
  2158. },
  2159. "contracts": [
  2160. {
  2161. "$type": "SlotTypeContract"
  2162. }
  2163. ],
  2164. "slotName": "Number",
  2165. "Descriptor": {
  2166. "ConnectionType": 1,
  2167. "SlotType": 2
  2168. },
  2169. "DataType": 1
  2170. },
  2171. {
  2172. "id": {
  2173. "m_id": "{0C3892DA-2A5A-4316-A575-6AD2AE6A5187}"
  2174. },
  2175. "contracts": [
  2176. {
  2177. "$type": "SlotTypeContract"
  2178. }
  2179. ],
  2180. "slotName": "Number",
  2181. "DisplayDataType": {
  2182. "m_type": 3
  2183. },
  2184. "Descriptor": {
  2185. "ConnectionType": 2,
  2186. "SlotType": 2
  2187. },
  2188. "DataType": 1
  2189. }
  2190. ],
  2191. "Datums": [
  2192. {
  2193. "isOverloadedStorage": false,
  2194. "scriptCanvasType": {
  2195. "m_type": 3
  2196. },
  2197. "isNullPointer": false,
  2198. "$type": "double",
  2199. "value": 0.0,
  2200. "label": "Number"
  2201. }
  2202. ],
  2203. "m_variableId": {
  2204. "m_id": "{49D86E32-DA58-44F9-BA7C-B384E2A3C3F6}"
  2205. },
  2206. "m_variableDataInSlotId": {
  2207. "m_id": "{8DD9C86F-13F4-4170-BEF6-C72E4FF2428A}"
  2208. },
  2209. "m_variableDataOutSlotId": {
  2210. "m_id": "{0C3892DA-2A5A-4316-A575-6AD2AE6A5187}"
  2211. }
  2212. }
  2213. }
  2214. },
  2215. {
  2216. "Id": {
  2217. "id": 96111169825891
  2218. },
  2219. "Name": "SC-Node(HeartBeatNodeableNode)",
  2220. "Components": {
  2221. "Component_[3226596438234506657]": {
  2222. "$type": "HeartBeatNodeableNode",
  2223. "Id": 3226596438234506657,
  2224. "Slots": [
  2225. {
  2226. "id": {
  2227. "m_id": "{1C12B576-DD9C-4353-B193-FA815C0A38F5}"
  2228. },
  2229. "contracts": [
  2230. {
  2231. "$type": "SlotTypeContract"
  2232. }
  2233. ],
  2234. "slotName": "Start",
  2235. "DisplayGroup": {
  2236. "Value": 2675529103
  2237. },
  2238. "Descriptor": {
  2239. "ConnectionType": 1,
  2240. "SlotType": 1
  2241. }
  2242. },
  2243. {
  2244. "id": {
  2245. "m_id": "{F9CD4D31-71DF-4B5B-9810-B7507F2323FA}"
  2246. },
  2247. "contracts": [
  2248. {
  2249. "$type": "SlotTypeContract"
  2250. }
  2251. ],
  2252. "slotName": "Interval",
  2253. "toolTip": "The amount of time between pulses",
  2254. "DisplayGroup": {
  2255. "Value": 2675529103
  2256. },
  2257. "Descriptor": {
  2258. "ConnectionType": 1,
  2259. "SlotType": 2
  2260. },
  2261. "DataType": 1
  2262. },
  2263. {
  2264. "id": {
  2265. "m_id": "{CDA5025F-DDAC-493E-A966-712FCC2A127E}"
  2266. },
  2267. "contracts": [
  2268. {
  2269. "$type": "SlotTypeContract"
  2270. }
  2271. ],
  2272. "slotName": "On Start",
  2273. "DisplayGroup": {
  2274. "Value": 2675529103
  2275. },
  2276. "Descriptor": {
  2277. "ConnectionType": 2,
  2278. "SlotType": 1
  2279. }
  2280. },
  2281. {
  2282. "id": {
  2283. "m_id": "{823B0917-D173-409F-A208-CE29352A5882}"
  2284. },
  2285. "contracts": [
  2286. {
  2287. "$type": "SlotTypeContract"
  2288. }
  2289. ],
  2290. "slotName": "Stop",
  2291. "DisplayGroup": {
  2292. "Value": 3109426870
  2293. },
  2294. "Descriptor": {
  2295. "ConnectionType": 1,
  2296. "SlotType": 1
  2297. }
  2298. },
  2299. {
  2300. "id": {
  2301. "m_id": "{58B7474D-D078-413A-981F-E11A78E76AC3}"
  2302. },
  2303. "contracts": [
  2304. {
  2305. "$type": "SlotTypeContract"
  2306. }
  2307. ],
  2308. "slotName": "On Stop",
  2309. "DisplayGroup": {
  2310. "Value": 3109426870
  2311. },
  2312. "Descriptor": {
  2313. "ConnectionType": 2,
  2314. "SlotType": 1
  2315. }
  2316. },
  2317. {
  2318. "id": {
  2319. "m_id": "{6BFC526A-79DC-48FF-9B8D-11F44D5F35C9}"
  2320. },
  2321. "contracts": [
  2322. {
  2323. "$type": "SlotTypeContract"
  2324. }
  2325. ],
  2326. "slotName": "Pulse",
  2327. "toolTip": "Signaled at each specified interval.",
  2328. "DisplayGroup": {
  2329. "Value": 454478554
  2330. },
  2331. "Descriptor": {
  2332. "ConnectionType": 2,
  2333. "SlotType": 1
  2334. },
  2335. "IsLatent": true
  2336. }
  2337. ],
  2338. "Datums": [
  2339. {
  2340. "isOverloadedStorage": false,
  2341. "scriptCanvasType": {
  2342. "m_type": 3
  2343. },
  2344. "isNullPointer": false,
  2345. "$type": "double",
  2346. "value": 1.0,
  2347. "label": "Interval"
  2348. }
  2349. ],
  2350. "nodeable": {
  2351. "m_timeUnits": 2
  2352. },
  2353. "slotExecutionMap": {
  2354. "ins": [
  2355. {
  2356. "_slotId": {
  2357. "m_id": "{1C12B576-DD9C-4353-B193-FA815C0A38F5}"
  2358. },
  2359. "_inputs": [
  2360. {
  2361. "_slotId": {
  2362. "m_id": "{F9CD4D31-71DF-4B5B-9810-B7507F2323FA}"
  2363. }
  2364. }
  2365. ],
  2366. "_outs": [
  2367. {
  2368. "_slotId": {
  2369. "m_id": "{CDA5025F-DDAC-493E-A966-712FCC2A127E}"
  2370. },
  2371. "_name": "On Start"
  2372. }
  2373. ]
  2374. },
  2375. {
  2376. "_slotId": {
  2377. "m_id": "{823B0917-D173-409F-A208-CE29352A5882}"
  2378. },
  2379. "_outs": [
  2380. {
  2381. "_slotId": {
  2382. "m_id": "{58B7474D-D078-413A-981F-E11A78E76AC3}"
  2383. },
  2384. "_name": "On Stop"
  2385. }
  2386. ]
  2387. }
  2388. ],
  2389. "latents": [
  2390. {
  2391. "_slotId": {
  2392. "m_id": "{6BFC526A-79DC-48FF-9B8D-11F44D5F35C9}"
  2393. },
  2394. "_name": "Pulse"
  2395. }
  2396. ]
  2397. }
  2398. }
  2399. }
  2400. },
  2401. {
  2402. "Id": {
  2403. "id": 96132644662371
  2404. },
  2405. "Name": "SC Node(GetVariable)",
  2406. "Components": {
  2407. "Component_[3417297956408678714]": {
  2408. "$type": "GetVariableNode",
  2409. "Id": 3417297956408678714,
  2410. "Slots": [
  2411. {
  2412. "id": {
  2413. "m_id": "{20437EF1-B4EE-4E67-8CAA-2C40893C108F}"
  2414. },
  2415. "contracts": [
  2416. {
  2417. "$type": "SlotTypeContract"
  2418. }
  2419. ],
  2420. "slotName": "In",
  2421. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2422. "Descriptor": {
  2423. "ConnectionType": 1,
  2424. "SlotType": 1
  2425. }
  2426. },
  2427. {
  2428. "id": {
  2429. "m_id": "{3F484021-A395-462B-8993-494BFCB709D8}"
  2430. },
  2431. "contracts": [
  2432. {
  2433. "$type": "SlotTypeContract"
  2434. }
  2435. ],
  2436. "slotName": "Out",
  2437. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2438. "Descriptor": {
  2439. "ConnectionType": 2,
  2440. "SlotType": 1
  2441. }
  2442. },
  2443. {
  2444. "id": {
  2445. "m_id": "{CE38269C-DCBC-4B69-82BB-ED46265C189F}"
  2446. },
  2447. "contracts": [
  2448. {
  2449. "$type": "SlotTypeContract"
  2450. }
  2451. ],
  2452. "slotName": "Number",
  2453. "DisplayDataType": {
  2454. "m_type": 3
  2455. },
  2456. "Descriptor": {
  2457. "ConnectionType": 2,
  2458. "SlotType": 2
  2459. },
  2460. "DataType": 1
  2461. }
  2462. ],
  2463. "m_variableId": {
  2464. "m_id": "{8B894CB8-6339-46EC-B608-5D936C76070C}"
  2465. },
  2466. "m_variableDataOutSlotId": {
  2467. "m_id": "{CE38269C-DCBC-4B69-82BB-ED46265C189F}"
  2468. }
  2469. }
  2470. }
  2471. },
  2472. {
  2473. "Id": {
  2474. "id": 96154119498851
  2475. },
  2476. "Name": "SC-Node(GatherEntitiesByComponentSphereNode)",
  2477. "Components": {
  2478. "Component_[3527830048028782077]": {
  2479. "$type": "GatherEntitiesByComponentSphereNode",
  2480. "Id": 3527830048028782077,
  2481. "Slots": [
  2482. {
  2483. "id": {
  2484. "m_id": "{CF2A0398-329B-4A73-8A55-E2A779792D19}"
  2485. },
  2486. "contracts": [
  2487. {
  2488. "$type": "SlotTypeContract"
  2489. }
  2490. ],
  2491. "slotName": "In",
  2492. "toolTip": "Parameters controlling the entity gather",
  2493. "DisplayGroup": {
  2494. "Value": 1609338446
  2495. },
  2496. "Descriptor": {
  2497. "ConnectionType": 1,
  2498. "SlotType": 1
  2499. }
  2500. },
  2501. {
  2502. "id": {
  2503. "m_id": "{7844882A-9533-4DD9-8B4C-D603A2BE64D0}"
  2504. },
  2505. "contracts": [
  2506. {
  2507. "$type": "SlotTypeContract"
  2508. }
  2509. ],
  2510. "slotName": "ComponentId",
  2511. "toolTip": "The typeId of the components to look for.",
  2512. "DisplayGroup": {
  2513. "Value": 1609338446
  2514. },
  2515. "Descriptor": {
  2516. "ConnectionType": 1,
  2517. "SlotType": 2
  2518. },
  2519. "DataType": 1
  2520. },
  2521. {
  2522. "id": {
  2523. "m_id": "{A57C112E-AA49-43F6-BD93-ECD4EA4CF602}"
  2524. },
  2525. "contracts": [
  2526. {
  2527. "$type": "SlotTypeContract"
  2528. }
  2529. ],
  2530. "slotName": "Position",
  2531. "toolTip": "The position of the sphere used to gather.",
  2532. "DisplayGroup": {
  2533. "Value": 1609338446
  2534. },
  2535. "Descriptor": {
  2536. "ConnectionType": 1,
  2537. "SlotType": 2
  2538. },
  2539. "DataType": 1
  2540. },
  2541. {
  2542. "id": {
  2543. "m_id": "{CA21A757-F63C-4A18-ADC6-735DC9A77594}"
  2544. },
  2545. "contracts": [
  2546. {
  2547. "$type": "SlotTypeContract"
  2548. }
  2549. ],
  2550. "slotName": "Radius",
  2551. "toolTip": "The radius of the sphere used to gather.",
  2552. "DisplayGroup": {
  2553. "Value": 1609338446
  2554. },
  2555. "Descriptor": {
  2556. "ConnectionType": 1,
  2557. "SlotType": 2
  2558. },
  2559. "DataType": 1
  2560. },
  2561. {
  2562. "id": {
  2563. "m_id": "{9354E84E-57AD-4964-AF99-CE86A259602E}"
  2564. },
  2565. "contracts": [
  2566. {
  2567. "$type": "SlotTypeContract"
  2568. }
  2569. ],
  2570. "slotName": "On In",
  2571. "toolTip": "Parameters controlling the entity gather",
  2572. "DisplayGroup": {
  2573. "Value": 1609338446
  2574. },
  2575. "Descriptor": {
  2576. "ConnectionType": 2,
  2577. "SlotType": 1
  2578. }
  2579. },
  2580. {
  2581. "id": {
  2582. "m_id": "{7E2ABB2A-EC1E-4F92-8EBA-F6F85DBBD610}"
  2583. },
  2584. "contracts": [
  2585. {
  2586. "$type": "SlotTypeContract"
  2587. }
  2588. ],
  2589. "slotName": "Entities",
  2590. "DisplayDataType": {
  2591. "m_type": 4,
  2592. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2593. },
  2594. "DisplayGroup": {
  2595. "Value": 1609338446
  2596. },
  2597. "Descriptor": {
  2598. "ConnectionType": 2,
  2599. "SlotType": 2
  2600. },
  2601. "DataType": 1
  2602. }
  2603. ],
  2604. "Datums": [
  2605. {
  2606. "isOverloadedStorage": false,
  2607. "scriptCanvasType": {
  2608. "m_type": 4,
  2609. "m_azType": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}"
  2610. },
  2611. "isNullPointer": false,
  2612. "$type": "AZ::Uuid",
  2613. "value": "{00000000-0000-0000-0000-000000000000}",
  2614. "label": "ComponentId"
  2615. },
  2616. {
  2617. "isOverloadedStorage": false,
  2618. "scriptCanvasType": {
  2619. "m_type": 8
  2620. },
  2621. "isNullPointer": false,
  2622. "$type": "Vector3",
  2623. "value": [
  2624. 0.0,
  2625. 0.0,
  2626. 0.0
  2627. ],
  2628. "label": "Position"
  2629. },
  2630. {
  2631. "isOverloadedStorage": false,
  2632. "scriptCanvasType": {
  2633. "m_type": 3
  2634. },
  2635. "isNullPointer": false,
  2636. "$type": "double",
  2637. "value": 0.0,
  2638. "label": "Radius"
  2639. }
  2640. ],
  2641. "slotExecutionMap": {
  2642. "ins": [
  2643. {
  2644. "_slotId": {
  2645. "m_id": "{CF2A0398-329B-4A73-8A55-E2A779792D19}"
  2646. },
  2647. "_inputs": [
  2648. {
  2649. "_slotId": {
  2650. "m_id": "{7844882A-9533-4DD9-8B4C-D603A2BE64D0}"
  2651. }
  2652. },
  2653. {
  2654. "_slotId": {
  2655. "m_id": "{A57C112E-AA49-43F6-BD93-ECD4EA4CF602}"
  2656. }
  2657. },
  2658. {
  2659. "_slotId": {
  2660. "m_id": "{CA21A757-F63C-4A18-ADC6-735DC9A77594}"
  2661. }
  2662. }
  2663. ],
  2664. "_outs": [
  2665. {
  2666. "_slotId": {
  2667. "m_id": "{9354E84E-57AD-4964-AF99-CE86A259602E}"
  2668. },
  2669. "_name": "On In",
  2670. "_outputs": [
  2671. {
  2672. "_slotId": {
  2673. "m_id": "{7E2ABB2A-EC1E-4F92-8EBA-F6F85DBBD610}"
  2674. }
  2675. }
  2676. ]
  2677. }
  2678. ]
  2679. }
  2680. ]
  2681. }
  2682. }
  2683. }
  2684. },
  2685. {
  2686. "Id": {
  2687. "id": 96179889302627
  2688. },
  2689. "Name": "SC-Node(GetWorldTranslation)",
  2690. "Components": {
  2691. "Component_[3947875394199311055]": {
  2692. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2693. "Id": 3947875394199311055,
  2694. "Slots": [
  2695. {
  2696. "id": {
  2697. "m_id": "{2134C2B9-CDCC-45AF-B2E0-7A985C6DD807}"
  2698. },
  2699. "contracts": [
  2700. {
  2701. "$type": "SlotTypeContract"
  2702. }
  2703. ],
  2704. "slotName": "EntityId",
  2705. "Descriptor": {
  2706. "ConnectionType": 1,
  2707. "SlotType": 2
  2708. },
  2709. "DataType": 1
  2710. },
  2711. {
  2712. "id": {
  2713. "m_id": "{52524396-575E-40FC-92F4-42997E414A6A}"
  2714. },
  2715. "contracts": [
  2716. {
  2717. "$type": "SlotTypeContract"
  2718. }
  2719. ],
  2720. "slotName": "In",
  2721. "Descriptor": {
  2722. "ConnectionType": 1,
  2723. "SlotType": 1
  2724. }
  2725. },
  2726. {
  2727. "id": {
  2728. "m_id": "{3B12B534-F3A4-4345-8316-624F6BB70500}"
  2729. },
  2730. "contracts": [
  2731. {
  2732. "$type": "SlotTypeContract"
  2733. }
  2734. ],
  2735. "slotName": "Out",
  2736. "Descriptor": {
  2737. "ConnectionType": 2,
  2738. "SlotType": 1
  2739. }
  2740. },
  2741. {
  2742. "id": {
  2743. "m_id": "{E886274D-9298-449E-A73E-65C41A331710}"
  2744. },
  2745. "contracts": [
  2746. {
  2747. "$type": "SlotTypeContract"
  2748. }
  2749. ],
  2750. "slotName": "Vector3",
  2751. "DisplayDataType": {
  2752. "m_type": 8
  2753. },
  2754. "Descriptor": {
  2755. "ConnectionType": 2,
  2756. "SlotType": 2
  2757. },
  2758. "DataType": 1
  2759. }
  2760. ],
  2761. "Datums": [
  2762. {
  2763. "isOverloadedStorage": false,
  2764. "scriptCanvasType": {
  2765. "m_type": 1
  2766. },
  2767. "isNullPointer": false,
  2768. "$type": "EntityId",
  2769. "value": {
  2770. "id": 2901262558
  2771. },
  2772. "label": "EntityId"
  2773. }
  2774. ],
  2775. "methodType": 0,
  2776. "methodName": "GetWorldTranslation",
  2777. "className": "TransformBus",
  2778. "resultSlotIDs": [
  2779. {}
  2780. ],
  2781. "inputSlots": [
  2782. {
  2783. "m_id": "{2134C2B9-CDCC-45AF-B2E0-7A985C6DD807}"
  2784. }
  2785. ],
  2786. "prettyClassName": "TransformBus"
  2787. }
  2788. }
  2789. },
  2790. {
  2791. "Id": {
  2792. "id": 96046745316451
  2793. },
  2794. "Name": "SC-Node(Get total roundtime in seconds)",
  2795. "Components": {
  2796. "Component_[4296626467069087583]": {
  2797. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2798. "Id": 4296626467069087583,
  2799. "Slots": [
  2800. {
  2801. "id": {
  2802. "m_id": "{A6A33357-D4BA-45DA-9721-95FF88CF07D4}"
  2803. },
  2804. "contracts": [
  2805. {
  2806. "$type": "SlotTypeContract"
  2807. }
  2808. ],
  2809. "slotName": "In",
  2810. "Descriptor": {
  2811. "ConnectionType": 1,
  2812. "SlotType": 1
  2813. }
  2814. },
  2815. {
  2816. "id": {
  2817. "m_id": "{B8F40490-FF66-41EA-B2B1-7D5C7B18AE91}"
  2818. },
  2819. "contracts": [
  2820. {
  2821. "$type": "SlotTypeContract"
  2822. }
  2823. ],
  2824. "slotName": "Out",
  2825. "Descriptor": {
  2826. "ConnectionType": 2,
  2827. "SlotType": 1
  2828. }
  2829. },
  2830. {
  2831. "id": {
  2832. "m_id": "{140F876E-6F1B-494D-82FB-4710230F2DB7}"
  2833. },
  2834. "contracts": [
  2835. {
  2836. "$type": "SlotTypeContract"
  2837. }
  2838. ],
  2839. "slotName": "Number",
  2840. "DisplayDataType": {
  2841. "m_type": 3
  2842. },
  2843. "Descriptor": {
  2844. "ConnectionType": 2,
  2845. "SlotType": 2
  2846. },
  2847. "DataType": 1
  2848. }
  2849. ],
  2850. "methodType": 0,
  2851. "methodName": "Get total roundtime in seconds",
  2852. "className": "Network Match Component Requests",
  2853. "resultSlotIDs": [
  2854. {}
  2855. ],
  2856. "prettyClassName": "Network Match Component Requests"
  2857. }
  2858. }
  2859. },
  2860. {
  2861. "Id": {
  2862. "id": 96063925185635
  2863. },
  2864. "Name": "SC-Node(GetRenderSceneIdByName)",
  2865. "Components": {
  2866. "Component_[5452490247162896746]": {
  2867. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2868. "Id": 5452490247162896746,
  2869. "Slots": [
  2870. {
  2871. "id": {
  2872. "m_id": "{1E38B865-E766-4396-A2BE-F1F9DC63073F}"
  2873. },
  2874. "contracts": [
  2875. {
  2876. "$type": "SlotTypeContract"
  2877. }
  2878. ],
  2879. "slotName": "String",
  2880. "Descriptor": {
  2881. "ConnectionType": 1,
  2882. "SlotType": 2
  2883. },
  2884. "DataType": 1
  2885. },
  2886. {
  2887. "id": {
  2888. "m_id": "{24906429-04AF-4674-AD8F-4C059AAFEC0E}"
  2889. },
  2890. "contracts": [
  2891. {
  2892. "$type": "SlotTypeContract"
  2893. }
  2894. ],
  2895. "slotName": "In",
  2896. "Descriptor": {
  2897. "ConnectionType": 1,
  2898. "SlotType": 1
  2899. }
  2900. },
  2901. {
  2902. "id": {
  2903. "m_id": "{51A62B12-7E10-44D3-8329-E8EC1BA88994}"
  2904. },
  2905. "contracts": [
  2906. {
  2907. "$type": "SlotTypeContract"
  2908. }
  2909. ],
  2910. "slotName": "Out",
  2911. "Descriptor": {
  2912. "ConnectionType": 2,
  2913. "SlotType": 1
  2914. }
  2915. },
  2916. {
  2917. "id": {
  2918. "m_id": "{C93D559F-BC84-446A-AD0F-A29EC77DD894}"
  2919. },
  2920. "contracts": [
  2921. {
  2922. "$type": "SlotTypeContract"
  2923. }
  2924. ],
  2925. "slotName": "Uuid",
  2926. "DisplayDataType": {
  2927. "m_type": 4,
  2928. "m_azType": "{E152C105-A133-4D03-BBF8-3D4B2FBA3E2A}"
  2929. },
  2930. "Descriptor": {
  2931. "ConnectionType": 2,
  2932. "SlotType": 2
  2933. },
  2934. "DataType": 1
  2935. }
  2936. ],
  2937. "Datums": [
  2938. {
  2939. "isOverloadedStorage": false,
  2940. "scriptCanvasType": {
  2941. "m_type": 5
  2942. },
  2943. "isNullPointer": false,
  2944. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2945. "value": "Main",
  2946. "label": "String"
  2947. }
  2948. ],
  2949. "methodType": 1,
  2950. "methodName": "GetRenderSceneIdByName",
  2951. "resultSlotIDs": [
  2952. {}
  2953. ],
  2954. "inputSlots": [
  2955. {
  2956. "m_id": "{1E38B865-E766-4396-A2BE-F1F9DC63073F}"
  2957. }
  2958. ],
  2959. "prettyClassName": "GetRenderSceneIdByName"
  2960. }
  2961. }
  2962. },
  2963. {
  2964. "Id": {
  2965. "id": 96081105054819
  2966. },
  2967. "Name": "SC-Node(OperatorMul)",
  2968. "Components": {
  2969. "Component_[565279294056246877]": {
  2970. "$type": "OperatorMul",
  2971. "Id": 565279294056246877,
  2972. "Slots": [
  2973. {
  2974. "id": {
  2975. "m_id": "{022910D4-2C8C-4275-A984-75BEF5C224BC}"
  2976. },
  2977. "contracts": [
  2978. {
  2979. "$type": "SlotTypeContract"
  2980. }
  2981. ],
  2982. "slotName": "In",
  2983. "Descriptor": {
  2984. "ConnectionType": 1,
  2985. "SlotType": 1
  2986. }
  2987. },
  2988. {
  2989. "id": {
  2990. "m_id": "{062B068C-86AC-4764-925F-43278FB77432}"
  2991. },
  2992. "contracts": [
  2993. {
  2994. "$type": "SlotTypeContract"
  2995. }
  2996. ],
  2997. "slotName": "Out",
  2998. "Descriptor": {
  2999. "ConnectionType": 2,
  3000. "SlotType": 1
  3001. }
  3002. },
  3003. {
  3004. "id": {
  3005. "m_id": "{F8D4704F-06DF-4181-AAF7-75CDDFECCF8B}"
  3006. },
  3007. "DynamicTypeOverride": 3,
  3008. "contracts": [
  3009. {
  3010. "$type": "SlotTypeContract"
  3011. },
  3012. {
  3013. "$type": "MathOperatorContract",
  3014. "OperatorType": "Multiply",
  3015. "NativeTypes": [
  3016. {
  3017. "m_type": 3
  3018. },
  3019. {
  3020. "m_type": 6
  3021. },
  3022. {
  3023. "m_type": 7
  3024. },
  3025. {
  3026. "m_type": 8
  3027. },
  3028. {
  3029. "m_type": 9
  3030. },
  3031. {
  3032. "m_type": 10
  3033. },
  3034. {
  3035. "m_type": 12
  3036. },
  3037. {
  3038. "m_type": 14
  3039. },
  3040. {
  3041. "m_type": 15
  3042. }
  3043. ]
  3044. }
  3045. ],
  3046. "slotName": "Number 0",
  3047. "toolTip": "An operand to use in performing the specified Operation",
  3048. "DisplayDataType": {
  3049. "m_type": 3
  3050. },
  3051. "DisplayGroup": {
  3052. "Value": 1114760223
  3053. },
  3054. "Descriptor": {
  3055. "ConnectionType": 1,
  3056. "SlotType": 2
  3057. },
  3058. "DynamicGroup": {
  3059. "Value": 1114760223
  3060. },
  3061. "DataType": 1
  3062. },
  3063. {
  3064. "id": {
  3065. "m_id": "{E1754BA8-4EFD-4896-AEEE-B6D6D1CB266E}"
  3066. },
  3067. "DynamicTypeOverride": 3,
  3068. "contracts": [
  3069. {
  3070. "$type": "SlotTypeContract"
  3071. },
  3072. {
  3073. "$type": "MathOperatorContract",
  3074. "OperatorType": "Multiply",
  3075. "NativeTypes": [
  3076. {
  3077. "m_type": 3
  3078. },
  3079. {
  3080. "m_type": 6
  3081. },
  3082. {
  3083. "m_type": 7
  3084. },
  3085. {
  3086. "m_type": 8
  3087. },
  3088. {
  3089. "m_type": 9
  3090. },
  3091. {
  3092. "m_type": 10
  3093. },
  3094. {
  3095. "m_type": 12
  3096. },
  3097. {
  3098. "m_type": 14
  3099. },
  3100. {
  3101. "m_type": 15
  3102. }
  3103. ]
  3104. }
  3105. ],
  3106. "slotName": "Number 1",
  3107. "toolTip": "An operand to use in performing the specified Operation",
  3108. "DisplayDataType": {
  3109. "m_type": 3
  3110. },
  3111. "DisplayGroup": {
  3112. "Value": 1114760223
  3113. },
  3114. "Descriptor": {
  3115. "ConnectionType": 1,
  3116. "SlotType": 2
  3117. },
  3118. "DynamicGroup": {
  3119. "Value": 1114760223
  3120. },
  3121. "DataType": 1
  3122. },
  3123. {
  3124. "id": {
  3125. "m_id": "{ED9F794D-8902-460F-84C3-05089CD9E19F}"
  3126. },
  3127. "DynamicTypeOverride": 3,
  3128. "contracts": [
  3129. {
  3130. "$type": "SlotTypeContract"
  3131. },
  3132. {
  3133. "$type": "MathOperatorContract",
  3134. "OperatorType": "Multiply",
  3135. "NativeTypes": [
  3136. {
  3137. "m_type": 3
  3138. },
  3139. {
  3140. "m_type": 6
  3141. },
  3142. {
  3143. "m_type": 7
  3144. },
  3145. {
  3146. "m_type": 8
  3147. },
  3148. {
  3149. "m_type": 9
  3150. },
  3151. {
  3152. "m_type": 10
  3153. },
  3154. {
  3155. "m_type": 12
  3156. },
  3157. {
  3158. "m_type": 14
  3159. },
  3160. {
  3161. "m_type": 15
  3162. }
  3163. ]
  3164. }
  3165. ],
  3166. "slotName": "Result",
  3167. "toolTip": "The result of the specified operation",
  3168. "DisplayDataType": {
  3169. "m_type": 3
  3170. },
  3171. "DisplayGroup": {
  3172. "Value": 1114760223
  3173. },
  3174. "Descriptor": {
  3175. "ConnectionType": 2,
  3176. "SlotType": 2
  3177. },
  3178. "DynamicGroup": {
  3179. "Value": 1114760223
  3180. },
  3181. "DataType": 1
  3182. }
  3183. ],
  3184. "Datums": [
  3185. {
  3186. "isOverloadedStorage": false,
  3187. "scriptCanvasType": {
  3188. "m_type": 3
  3189. },
  3190. "isNullPointer": false,
  3191. "$type": "double",
  3192. "value": 0.0,
  3193. "label": "Number 0"
  3194. },
  3195. {
  3196. "isOverloadedStorage": false,
  3197. "scriptCanvasType": {
  3198. "m_type": 3
  3199. },
  3200. "isNullPointer": false,
  3201. "$type": "double",
  3202. "value": 4.0,
  3203. "label": "Number 1"
  3204. }
  3205. ]
  3206. }
  3207. }
  3208. },
  3209. {
  3210. "Id": {
  3211. "id": 96102579891299
  3212. },
  3213. "Name": "SC Node(SetVariable)",
  3214. "Components": {
  3215. "Component_[5661543983295343501]": {
  3216. "$type": "SetVariableNode",
  3217. "Id": 5661543983295343501,
  3218. "Slots": [
  3219. {
  3220. "id": {
  3221. "m_id": "{FACB7C4C-4B2A-4595-AA51-5C034E1BC755}"
  3222. },
  3223. "contracts": [
  3224. {
  3225. "$type": "SlotTypeContract"
  3226. }
  3227. ],
  3228. "slotName": "In",
  3229. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  3230. "Descriptor": {
  3231. "ConnectionType": 1,
  3232. "SlotType": 1
  3233. }
  3234. },
  3235. {
  3236. "id": {
  3237. "m_id": "{71907774-6AF0-408D-8743-E54C00180806}"
  3238. },
  3239. "contracts": [
  3240. {
  3241. "$type": "SlotTypeContract"
  3242. }
  3243. ],
  3244. "slotName": "Out",
  3245. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  3246. "Descriptor": {
  3247. "ConnectionType": 2,
  3248. "SlotType": 1
  3249. }
  3250. },
  3251. {
  3252. "id": {
  3253. "m_id": "{702918A2-1719-4DDE-9A62-767510EF8DE8}"
  3254. },
  3255. "contracts": [
  3256. {
  3257. "$type": "SlotTypeContract"
  3258. }
  3259. ],
  3260. "slotName": "Number",
  3261. "Descriptor": {
  3262. "ConnectionType": 1,
  3263. "SlotType": 2
  3264. },
  3265. "DataType": 1
  3266. },
  3267. {
  3268. "id": {
  3269. "m_id": "{366A9164-FEDE-4923-8CA0-64ABC616D516}"
  3270. },
  3271. "contracts": [
  3272. {
  3273. "$type": "SlotTypeContract"
  3274. }
  3275. ],
  3276. "slotName": "Number",
  3277. "DisplayDataType": {
  3278. "m_type": 3
  3279. },
  3280. "Descriptor": {
  3281. "ConnectionType": 2,
  3282. "SlotType": 2
  3283. },
  3284. "DataType": 1
  3285. }
  3286. ],
  3287. "Datums": [
  3288. {
  3289. "isOverloadedStorage": false,
  3290. "scriptCanvasType": {
  3291. "m_type": 3
  3292. },
  3293. "isNullPointer": false,
  3294. "$type": "double",
  3295. "value": 4.0,
  3296. "label": "Number"
  3297. }
  3298. ],
  3299. "m_variableId": {
  3300. "m_id": "{49D86E32-DA58-44F9-BA7C-B384E2A3C3F6}"
  3301. },
  3302. "m_variableDataInSlotId": {
  3303. "m_id": "{702918A2-1719-4DDE-9A62-767510EF8DE8}"
  3304. },
  3305. "m_variableDataOutSlotId": {
  3306. "m_id": "{366A9164-FEDE-4923-8CA0-64ABC616D516}"
  3307. }
  3308. }
  3309. }
  3310. },
  3311. {
  3312. "Id": {
  3313. "id": 96124054727779
  3314. },
  3315. "Name": "SC-Node(GetWorldTM)",
  3316. "Components": {
  3317. "Component_[5988313345330550720]": {
  3318. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3319. "Id": 5988313345330550720,
  3320. "Slots": [
  3321. {
  3322. "id": {
  3323. "m_id": "{DC6319BE-A5C0-4CB5-8A9C-97A16413A514}"
  3324. },
  3325. "contracts": [
  3326. {
  3327. "$type": "SlotTypeContract"
  3328. }
  3329. ],
  3330. "slotName": "EntityId",
  3331. "Descriptor": {
  3332. "ConnectionType": 1,
  3333. "SlotType": 2
  3334. },
  3335. "DataType": 1
  3336. },
  3337. {
  3338. "id": {
  3339. "m_id": "{6EFE098C-E769-4915-A01E-9AF7162482C5}"
  3340. },
  3341. "contracts": [
  3342. {
  3343. "$type": "SlotTypeContract"
  3344. }
  3345. ],
  3346. "slotName": "In",
  3347. "Descriptor": {
  3348. "ConnectionType": 1,
  3349. "SlotType": 1
  3350. }
  3351. },
  3352. {
  3353. "id": {
  3354. "m_id": "{FB15926E-DFC5-48CF-900D-62CA02429CA5}"
  3355. },
  3356. "contracts": [
  3357. {
  3358. "$type": "SlotTypeContract"
  3359. }
  3360. ],
  3361. "slotName": "Out",
  3362. "Descriptor": {
  3363. "ConnectionType": 2,
  3364. "SlotType": 1
  3365. }
  3366. },
  3367. {
  3368. "id": {
  3369. "m_id": "{8D79AC78-B808-4E77-A8BE-571635627C25}"
  3370. },
  3371. "contracts": [
  3372. {
  3373. "$type": "SlotTypeContract"
  3374. }
  3375. ],
  3376. "slotName": "Transform",
  3377. "DisplayDataType": {
  3378. "m_type": 7
  3379. },
  3380. "Descriptor": {
  3381. "ConnectionType": 2,
  3382. "SlotType": 2
  3383. },
  3384. "DataType": 1
  3385. }
  3386. ],
  3387. "Datums": [
  3388. {
  3389. "isOverloadedStorage": false,
  3390. "scriptCanvasType": {
  3391. "m_type": 1
  3392. },
  3393. "isNullPointer": false,
  3394. "$type": "EntityId",
  3395. "value": {
  3396. "id": 2901262558
  3397. },
  3398. "label": "EntityId"
  3399. }
  3400. ],
  3401. "methodType": 0,
  3402. "methodName": "GetWorldTM",
  3403. "className": "TransformBus",
  3404. "resultSlotIDs": [
  3405. {}
  3406. ],
  3407. "inputSlots": [
  3408. {
  3409. "m_id": "{DC6319BE-A5C0-4CB5-8A9C-97A16413A514}"
  3410. }
  3411. ],
  3412. "prettyClassName": "TransformBus"
  3413. }
  3414. }
  3415. },
  3416. {
  3417. "Id": {
  3418. "id": 96145529564259
  3419. },
  3420. "Name": "SC-Node(Greater)",
  3421. "Components": {
  3422. "Component_[6356167096070082389]": {
  3423. "$type": "Greater",
  3424. "Id": 6356167096070082389,
  3425. "Slots": [
  3426. {
  3427. "id": {
  3428. "m_id": "{19D103B4-44A9-4D6B-AB90-7DE3221179A6}"
  3429. },
  3430. "contracts": [
  3431. {
  3432. "$type": "SlotTypeContract"
  3433. }
  3434. ],
  3435. "slotName": "Result",
  3436. "DisplayDataType": {
  3437. "m_type": 0
  3438. },
  3439. "Descriptor": {
  3440. "ConnectionType": 2,
  3441. "SlotType": 2
  3442. },
  3443. "DataType": 1
  3444. },
  3445. {
  3446. "id": {
  3447. "m_id": "{94B5DB37-C798-44F1-8E73-684D0291FD98}"
  3448. },
  3449. "contracts": [
  3450. {
  3451. "$type": "SlotTypeContract"
  3452. }
  3453. ],
  3454. "slotName": "In",
  3455. "toolTip": "Signal to perform the evaluation when desired.",
  3456. "Descriptor": {
  3457. "ConnectionType": 1,
  3458. "SlotType": 1
  3459. }
  3460. },
  3461. {
  3462. "id": {
  3463. "m_id": "{FBFBB859-D01E-425B-99F3-CCCB98A592BF}"
  3464. },
  3465. "contracts": [
  3466. {
  3467. "$type": "SlotTypeContract"
  3468. }
  3469. ],
  3470. "slotName": "True",
  3471. "toolTip": "Signaled if the result of the operation is true.",
  3472. "Descriptor": {
  3473. "ConnectionType": 2,
  3474. "SlotType": 1
  3475. }
  3476. },
  3477. {
  3478. "id": {
  3479. "m_id": "{6211CA16-F2DB-4D53-B867-4C7772D0DE49}"
  3480. },
  3481. "contracts": [
  3482. {
  3483. "$type": "SlotTypeContract"
  3484. }
  3485. ],
  3486. "slotName": "False",
  3487. "toolTip": "Signaled if the result of the operation is false.",
  3488. "Descriptor": {
  3489. "ConnectionType": 2,
  3490. "SlotType": 1
  3491. }
  3492. },
  3493. {
  3494. "id": {
  3495. "m_id": "{5B61C8F1-438E-4182-8395-007E83943B58}"
  3496. },
  3497. "DynamicTypeOverride": 3,
  3498. "contracts": [
  3499. {
  3500. "$type": "SlotTypeContract"
  3501. }
  3502. ],
  3503. "slotName": "Value A",
  3504. "DisplayDataType": {
  3505. "m_type": 3
  3506. },
  3507. "Descriptor": {
  3508. "ConnectionType": 1,
  3509. "SlotType": 2
  3510. },
  3511. "DynamicGroup": {
  3512. "Value": 3545012108
  3513. },
  3514. "DataType": 1
  3515. },
  3516. {
  3517. "id": {
  3518. "m_id": "{2A9072F2-DD89-4C97-B586-2CF2641A65FD}"
  3519. },
  3520. "DynamicTypeOverride": 3,
  3521. "contracts": [
  3522. {
  3523. "$type": "SlotTypeContract"
  3524. }
  3525. ],
  3526. "slotName": "Value B",
  3527. "DisplayDataType": {
  3528. "m_type": 3
  3529. },
  3530. "Descriptor": {
  3531. "ConnectionType": 1,
  3532. "SlotType": 2
  3533. },
  3534. "DynamicGroup": {
  3535. "Value": 3545012108
  3536. },
  3537. "DataType": 1
  3538. }
  3539. ],
  3540. "Datums": [
  3541. {
  3542. "isOverloadedStorage": false,
  3543. "scriptCanvasType": {
  3544. "m_type": 3
  3545. },
  3546. "isNullPointer": false,
  3547. "$type": "double",
  3548. "value": 0.0,
  3549. "label": "Value A"
  3550. },
  3551. {
  3552. "isOverloadedStorage": false,
  3553. "scriptCanvasType": {
  3554. "m_type": 3
  3555. },
  3556. "isNullPointer": false,
  3557. "$type": "double",
  3558. "value": 0.0,
  3559. "label": "Value B"
  3560. }
  3561. ]
  3562. }
  3563. }
  3564. },
  3565. {
  3566. "Id": {
  3567. "id": 96171299368035
  3568. },
  3569. "Name": "SC-Node(OperatorMul)",
  3570. "Components": {
  3571. "Component_[7419882615031259809]": {
  3572. "$type": "OperatorMul",
  3573. "Id": 7419882615031259809,
  3574. "Slots": [
  3575. {
  3576. "id": {
  3577. "m_id": "{F58D6529-7AFE-418F-AEFE-914CACBAD143}"
  3578. },
  3579. "contracts": [
  3580. {
  3581. "$type": "SlotTypeContract"
  3582. }
  3583. ],
  3584. "slotName": "In",
  3585. "Descriptor": {
  3586. "ConnectionType": 1,
  3587. "SlotType": 1
  3588. }
  3589. },
  3590. {
  3591. "id": {
  3592. "m_id": "{763D230C-56F0-4819-9369-0D776176DAFB}"
  3593. },
  3594. "contracts": [
  3595. {
  3596. "$type": "SlotTypeContract"
  3597. }
  3598. ],
  3599. "slotName": "Out",
  3600. "Descriptor": {
  3601. "ConnectionType": 2,
  3602. "SlotType": 1
  3603. }
  3604. },
  3605. {
  3606. "id": {
  3607. "m_id": "{C5A8AFC3-C7C2-4DC0-BD52-C596854DDCC2}"
  3608. },
  3609. "DynamicTypeOverride": 3,
  3610. "contracts": [
  3611. {
  3612. "$type": "SlotTypeContract"
  3613. },
  3614. {
  3615. "$type": "MathOperatorContract",
  3616. "OperatorType": "Multiply",
  3617. "NativeTypes": [
  3618. {
  3619. "m_type": 3
  3620. },
  3621. {
  3622. "m_type": 6
  3623. },
  3624. {
  3625. "m_type": 7
  3626. },
  3627. {
  3628. "m_type": 8
  3629. },
  3630. {
  3631. "m_type": 9
  3632. },
  3633. {
  3634. "m_type": 10
  3635. },
  3636. {
  3637. "m_type": 12
  3638. },
  3639. {
  3640. "m_type": 14
  3641. },
  3642. {
  3643. "m_type": 15
  3644. }
  3645. ]
  3646. }
  3647. ],
  3648. "slotName": "Number 0",
  3649. "toolTip": "An operand to use in performing the specified Operation",
  3650. "DisplayDataType": {
  3651. "m_type": 3
  3652. },
  3653. "DisplayGroup": {
  3654. "Value": 1114760223
  3655. },
  3656. "Descriptor": {
  3657. "ConnectionType": 1,
  3658. "SlotType": 2
  3659. },
  3660. "DynamicGroup": {
  3661. "Value": 1114760223
  3662. },
  3663. "DataType": 1
  3664. },
  3665. {
  3666. "id": {
  3667. "m_id": "{2CD56A76-1C54-49A5-8BA0-631E66C0AD84}"
  3668. },
  3669. "DynamicTypeOverride": 3,
  3670. "contracts": [
  3671. {
  3672. "$type": "SlotTypeContract"
  3673. },
  3674. {
  3675. "$type": "MathOperatorContract",
  3676. "OperatorType": "Multiply",
  3677. "NativeTypes": [
  3678. {
  3679. "m_type": 3
  3680. },
  3681. {
  3682. "m_type": 6
  3683. },
  3684. {
  3685. "m_type": 7
  3686. },
  3687. {
  3688. "m_type": 8
  3689. },
  3690. {
  3691. "m_type": 9
  3692. },
  3693. {
  3694. "m_type": 10
  3695. },
  3696. {
  3697. "m_type": 12
  3698. },
  3699. {
  3700. "m_type": 14
  3701. },
  3702. {
  3703. "m_type": 15
  3704. }
  3705. ]
  3706. }
  3707. ],
  3708. "slotName": "Number 1",
  3709. "toolTip": "An operand to use in performing the specified Operation",
  3710. "DisplayDataType": {
  3711. "m_type": 3
  3712. },
  3713. "DisplayGroup": {
  3714. "Value": 1114760223
  3715. },
  3716. "Descriptor": {
  3717. "ConnectionType": 1,
  3718. "SlotType": 2
  3719. },
  3720. "DynamicGroup": {
  3721. "Value": 1114760223
  3722. },
  3723. "DataType": 1
  3724. },
  3725. {
  3726. "id": {
  3727. "m_id": "{C71F6DC6-4CD8-4DAC-8750-614BC8FCAB2C}"
  3728. },
  3729. "DynamicTypeOverride": 3,
  3730. "contracts": [
  3731. {
  3732. "$type": "SlotTypeContract"
  3733. },
  3734. {
  3735. "$type": "MathOperatorContract",
  3736. "OperatorType": "Multiply",
  3737. "NativeTypes": [
  3738. {
  3739. "m_type": 3
  3740. },
  3741. {
  3742. "m_type": 6
  3743. },
  3744. {
  3745. "m_type": 7
  3746. },
  3747. {
  3748. "m_type": 8
  3749. },
  3750. {
  3751. "m_type": 9
  3752. },
  3753. {
  3754. "m_type": 10
  3755. },
  3756. {
  3757. "m_type": 12
  3758. },
  3759. {
  3760. "m_type": 14
  3761. },
  3762. {
  3763. "m_type": 15
  3764. }
  3765. ]
  3766. }
  3767. ],
  3768. "slotName": "Result",
  3769. "toolTip": "The result of the specified operation",
  3770. "DisplayDataType": {
  3771. "m_type": 3
  3772. },
  3773. "DisplayGroup": {
  3774. "Value": 1114760223
  3775. },
  3776. "Descriptor": {
  3777. "ConnectionType": 2,
  3778. "SlotType": 2
  3779. },
  3780. "DynamicGroup": {
  3781. "Value": 1114760223
  3782. },
  3783. "DataType": 1
  3784. }
  3785. ],
  3786. "Datums": [
  3787. {
  3788. "isOverloadedStorage": false,
  3789. "scriptCanvasType": {
  3790. "m_type": 3
  3791. },
  3792. "isNullPointer": false,
  3793. "$type": "double",
  3794. "value": 0.0,
  3795. "label": "Number 0"
  3796. },
  3797. {
  3798. "isOverloadedStorage": false,
  3799. "scriptCanvasType": {
  3800. "m_type": 3
  3801. },
  3802. "isNullPointer": false,
  3803. "$type": "double",
  3804. "value": 28.0,
  3805. "label": "Number 1"
  3806. }
  3807. ]
  3808. }
  3809. }
  3810. },
  3811. {
  3812. "Id": {
  3813. "id": 96167004400739
  3814. },
  3815. "Name": "SC-Node(IfAgentTypeNodeableNode)",
  3816. "Components": {
  3817. "Component_[751488555141653535]": {
  3818. "$type": "IfAgentTypeNodeableNode",
  3819. "Id": 751488555141653535,
  3820. "Slots": [
  3821. {
  3822. "id": {
  3823. "m_id": "{97DFED3B-4B82-4E89-9980-10687A1EC4F9}"
  3824. },
  3825. "contracts": [
  3826. {
  3827. "$type": "SlotTypeContract"
  3828. }
  3829. ],
  3830. "slotName": "In",
  3831. "toolTip": "Branches on agent type",
  3832. "DisplayGroup": {
  3833. "Value": 1609338446
  3834. },
  3835. "Descriptor": {
  3836. "ConnectionType": 1,
  3837. "SlotType": 1
  3838. }
  3839. },
  3840. {
  3841. "id": {
  3842. "m_id": "{CE734BE6-DF29-4758-86A6-247D9AF48AA4}"
  3843. },
  3844. "contracts": [
  3845. {
  3846. "$type": "SlotTypeContract"
  3847. }
  3848. ],
  3849. "slotName": "If Client Type",
  3850. "toolTip": "A Client connected to either a server or host.",
  3851. "DisplayGroup": {
  3852. "Value": 1609338446
  3853. },
  3854. "Descriptor": {
  3855. "ConnectionType": 2,
  3856. "SlotType": 1
  3857. }
  3858. },
  3859. {
  3860. "id": {
  3861. "m_id": "{E0D24ABA-56FB-488A-8C3D-A6DFC4DD5814}"
  3862. },
  3863. "contracts": [
  3864. {
  3865. "$type": "SlotTypeContract"
  3866. }
  3867. ],
  3868. "slotName": "If ClientServer Type",
  3869. "toolTip": "A Client that also hosts and is the authority of the session",
  3870. "DisplayGroup": {
  3871. "Value": 1609338446
  3872. },
  3873. "Descriptor": {
  3874. "ConnectionType": 2,
  3875. "SlotType": 1
  3876. }
  3877. },
  3878. {
  3879. "id": {
  3880. "m_id": "{9F4065C8-AB6E-4A09-AC5C-DAD972C3555F}"
  3881. },
  3882. "contracts": [
  3883. {
  3884. "$type": "SlotTypeContract"
  3885. }
  3886. ],
  3887. "slotName": "If DedicatedServer Type",
  3888. "toolTip": "A Dedicated Server which does not locally host any clients",
  3889. "DisplayGroup": {
  3890. "Value": 1609338446
  3891. },
  3892. "Descriptor": {
  3893. "ConnectionType": 2,
  3894. "SlotType": 1
  3895. }
  3896. },
  3897. {
  3898. "id": {
  3899. "m_id": "{12FD09E5-FE0A-4136-A7DE-3689AD521315}"
  3900. },
  3901. "contracts": [
  3902. {
  3903. "$type": "SlotTypeContract"
  3904. }
  3905. ],
  3906. "slotName": "If Singleplayer",
  3907. "toolTip": "The application is in single player mode",
  3908. "DisplayGroup": {
  3909. "Value": 1609338446
  3910. },
  3911. "Descriptor": {
  3912. "ConnectionType": 2,
  3913. "SlotType": 1
  3914. }
  3915. }
  3916. ],
  3917. "slotExecutionMap": {
  3918. "ins": [
  3919. {
  3920. "_slotId": {
  3921. "m_id": "{97DFED3B-4B82-4E89-9980-10687A1EC4F9}"
  3922. },
  3923. "_outs": [
  3924. {
  3925. "_slotId": {
  3926. "m_id": "{CE734BE6-DF29-4758-86A6-247D9AF48AA4}"
  3927. },
  3928. "_name": "If Client Type"
  3929. },
  3930. {
  3931. "_slotId": {
  3932. "m_id": "{E0D24ABA-56FB-488A-8C3D-A6DFC4DD5814}"
  3933. },
  3934. "_name": "If ClientServer Type"
  3935. },
  3936. {
  3937. "_slotId": {
  3938. "m_id": "{9F4065C8-AB6E-4A09-AC5C-DAD972C3555F}"
  3939. },
  3940. "_name": "If DedicatedServer Type"
  3941. },
  3942. {
  3943. "_slotId": {
  3944. "m_id": "{12FD09E5-FE0A-4136-A7DE-3689AD521315}"
  3945. },
  3946. "_name": "If Singleplayer"
  3947. }
  3948. ]
  3949. }
  3950. ]
  3951. }
  3952. }
  3953. }
  3954. },
  3955. {
  3956. "Id": {
  3957. "id": 96192774204515
  3958. },
  3959. "Name": "SC-Node(IfAgentTypeNodeableNode)",
  3960. "Components": {
  3961. "Component_[751488555141653535]": {
  3962. "$type": "IfAgentTypeNodeableNode",
  3963. "Id": 751488555141653535,
  3964. "Slots": [
  3965. {
  3966. "id": {
  3967. "m_id": "{97DFED3B-4B82-4E89-9980-10687A1EC4F9}"
  3968. },
  3969. "contracts": [
  3970. {
  3971. "$type": "SlotTypeContract"
  3972. }
  3973. ],
  3974. "slotName": "In",
  3975. "toolTip": "Branches on agent type",
  3976. "DisplayGroup": {
  3977. "Value": 1609338446
  3978. },
  3979. "Descriptor": {
  3980. "ConnectionType": 1,
  3981. "SlotType": 1
  3982. }
  3983. },
  3984. {
  3985. "id": {
  3986. "m_id": "{CE734BE6-DF29-4758-86A6-247D9AF48AA4}"
  3987. },
  3988. "contracts": [
  3989. {
  3990. "$type": "SlotTypeContract"
  3991. }
  3992. ],
  3993. "slotName": "If Client Type",
  3994. "toolTip": "A Client connected to either a server or host.",
  3995. "DisplayGroup": {
  3996. "Value": 1609338446
  3997. },
  3998. "Descriptor": {
  3999. "ConnectionType": 2,
  4000. "SlotType": 1
  4001. }
  4002. },
  4003. {
  4004. "id": {
  4005. "m_id": "{E0D24ABA-56FB-488A-8C3D-A6DFC4DD5814}"
  4006. },
  4007. "contracts": [
  4008. {
  4009. "$type": "SlotTypeContract"
  4010. }
  4011. ],
  4012. "slotName": "If ClientServer Type",
  4013. "toolTip": "A Client that also hosts and is the authority of the session",
  4014. "DisplayGroup": {
  4015. "Value": 1609338446
  4016. },
  4017. "Descriptor": {
  4018. "ConnectionType": 2,
  4019. "SlotType": 1
  4020. }
  4021. },
  4022. {
  4023. "id": {
  4024. "m_id": "{9F4065C8-AB6E-4A09-AC5C-DAD972C3555F}"
  4025. },
  4026. "contracts": [
  4027. {
  4028. "$type": "SlotTypeContract"
  4029. }
  4030. ],
  4031. "slotName": "If DedicatedServer Type",
  4032. "toolTip": "A Dedicated Server which does not locally host any clients",
  4033. "DisplayGroup": {
  4034. "Value": 1609338446
  4035. },
  4036. "Descriptor": {
  4037. "ConnectionType": 2,
  4038. "SlotType": 1
  4039. }
  4040. },
  4041. {
  4042. "id": {
  4043. "m_id": "{12FD09E5-FE0A-4136-A7DE-3689AD521315}"
  4044. },
  4045. "contracts": [
  4046. {
  4047. "$type": "SlotTypeContract"
  4048. }
  4049. ],
  4050. "slotName": "If Singleplayer",
  4051. "toolTip": "The application is in single player mode",
  4052. "DisplayGroup": {
  4053. "Value": 1609338446
  4054. },
  4055. "Descriptor": {
  4056. "ConnectionType": 2,
  4057. "SlotType": 1
  4058. }
  4059. }
  4060. ],
  4061. "slotExecutionMap": {
  4062. "ins": [
  4063. {
  4064. "_slotId": {
  4065. "m_id": "{97DFED3B-4B82-4E89-9980-10687A1EC4F9}"
  4066. },
  4067. "_outs": [
  4068. {
  4069. "_slotId": {
  4070. "m_id": "{CE734BE6-DF29-4758-86A6-247D9AF48AA4}"
  4071. },
  4072. "_name": "If Client Type"
  4073. },
  4074. {
  4075. "_slotId": {
  4076. "m_id": "{E0D24ABA-56FB-488A-8C3D-A6DFC4DD5814}"
  4077. },
  4078. "_name": "If ClientServer Type"
  4079. },
  4080. {
  4081. "_slotId": {
  4082. "m_id": "{9F4065C8-AB6E-4A09-AC5C-DAD972C3555F}"
  4083. },
  4084. "_name": "If DedicatedServer Type"
  4085. },
  4086. {
  4087. "_slotId": {
  4088. "m_id": "{12FD09E5-FE0A-4136-A7DE-3689AD521315}"
  4089. },
  4090. "_name": "If Singleplayer"
  4091. }
  4092. ]
  4093. }
  4094. ]
  4095. }
  4096. }
  4097. }
  4098. },
  4099. {
  4100. "Id": {
  4101. "id": 96059630218339
  4102. },
  4103. "Name": "SC Node(GetVariable)",
  4104. "Components": {
  4105. "Component_[8237041769398103837]": {
  4106. "$type": "GetVariableNode",
  4107. "Id": 8237041769398103837,
  4108. "Slots": [
  4109. {
  4110. "id": {
  4111. "m_id": "{FA317AFB-77E7-4859-98B1-BCF8C6E1C9A4}"
  4112. },
  4113. "contracts": [
  4114. {
  4115. "$type": "SlotTypeContract"
  4116. }
  4117. ],
  4118. "slotName": "In",
  4119. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  4120. "Descriptor": {
  4121. "ConnectionType": 1,
  4122. "SlotType": 1
  4123. }
  4124. },
  4125. {
  4126. "id": {
  4127. "m_id": "{5B9913DF-A026-428F-AFB1-5FDDF103DE61}"
  4128. },
  4129. "contracts": [
  4130. {
  4131. "$type": "SlotTypeContract"
  4132. }
  4133. ],
  4134. "slotName": "Out",
  4135. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  4136. "Descriptor": {
  4137. "ConnectionType": 2,
  4138. "SlotType": 1
  4139. }
  4140. },
  4141. {
  4142. "id": {
  4143. "m_id": "{C62D0C16-8D8B-45BC-A87A-4ED208744392}"
  4144. },
  4145. "contracts": [
  4146. {
  4147. "$type": "SlotTypeContract"
  4148. }
  4149. ],
  4150. "slotName": "EntityId",
  4151. "DisplayDataType": {
  4152. "m_type": 1
  4153. },
  4154. "Descriptor": {
  4155. "ConnectionType": 2,
  4156. "SlotType": 2
  4157. },
  4158. "DataType": 1
  4159. }
  4160. ],
  4161. "m_variableId": {
  4162. "m_id": "{F3137783-4DB6-46FD-B1CF-3C8D44D12F72}"
  4163. },
  4164. "m_variableDataOutSlotId": {
  4165. "m_id": "{C62D0C16-8D8B-45BC-A87A-4ED208744392}"
  4166. }
  4167. }
  4168. }
  4169. },
  4170. {
  4171. "Id": {
  4172. "id": 96076810087523
  4173. },
  4174. "Name": "SC-Node(GetAttributeId)",
  4175. "Components": {
  4176. "Component_[8502527627791879717]": {
  4177. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  4178. "Id": 8502527627791879717,
  4179. "Slots": [
  4180. {
  4181. "id": {
  4182. "m_id": "{3950D6A4-FD81-46A8-AE13-65866873782C}"
  4183. },
  4184. "contracts": [
  4185. {
  4186. "$type": "SlotTypeContract"
  4187. }
  4188. ],
  4189. "slotName": "EntityId: 0",
  4190. "Descriptor": {
  4191. "ConnectionType": 1,
  4192. "SlotType": 2
  4193. },
  4194. "DataType": 1
  4195. },
  4196. {
  4197. "id": {
  4198. "m_id": "{5B1D5C2A-369F-45B8-AF6F-DDD4065C0124}"
  4199. },
  4200. "contracts": [
  4201. {
  4202. "$type": "SlotTypeContract"
  4203. }
  4204. ],
  4205. "slotName": "String: 1",
  4206. "Descriptor": {
  4207. "ConnectionType": 1,
  4208. "SlotType": 2
  4209. },
  4210. "DataType": 1
  4211. },
  4212. {
  4213. "id": {
  4214. "m_id": "{B0B6E460-76DB-444B-BAD0-DB610F9C1E8A}"
  4215. },
  4216. "contracts": [
  4217. {
  4218. "$type": "SlotTypeContract"
  4219. }
  4220. ],
  4221. "slotName": "In",
  4222. "Descriptor": {
  4223. "ConnectionType": 1,
  4224. "SlotType": 1
  4225. }
  4226. },
  4227. {
  4228. "id": {
  4229. "m_id": "{BE61B7F2-B504-45AC-BEC9-F9AE0222C70D}"
  4230. },
  4231. "contracts": [
  4232. {
  4233. "$type": "SlotTypeContract"
  4234. }
  4235. ],
  4236. "slotName": "Out",
  4237. "Descriptor": {
  4238. "ConnectionType": 2,
  4239. "SlotType": 1
  4240. }
  4241. },
  4242. {
  4243. "id": {
  4244. "m_id": "{5FCBD72E-6B1A-49B5-87AF-00C487F9F42D}"
  4245. },
  4246. "contracts": [
  4247. {
  4248. "$type": "SlotTypeContract"
  4249. }
  4250. ],
  4251. "slotName": "Number",
  4252. "DisplayDataType": {
  4253. "m_type": 3
  4254. },
  4255. "Descriptor": {
  4256. "ConnectionType": 2,
  4257. "SlotType": 2
  4258. },
  4259. "DataType": 1
  4260. }
  4261. ],
  4262. "Datums": [
  4263. {
  4264. "isOverloadedStorage": false,
  4265. "scriptCanvasType": {
  4266. "m_type": 1
  4267. },
  4268. "isNullPointer": false,
  4269. "$type": "EntityId",
  4270. "value": {
  4271. "id": 2901262558
  4272. },
  4273. "label": "Source"
  4274. },
  4275. {
  4276. "isOverloadedStorage": false,
  4277. "scriptCanvasType": {
  4278. "m_type": 5
  4279. },
  4280. "isNullPointer": false,
  4281. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  4282. "value": "Frequency",
  4283. "label": "String: 1"
  4284. }
  4285. ],
  4286. "methodType": 0,
  4287. "methodName": "GetAttributeId",
  4288. "className": "PopcornFXEmitterComponentRequestBus",
  4289. "resultSlotIDs": [
  4290. {}
  4291. ],
  4292. "inputSlots": [
  4293. {
  4294. "m_id": "{3950D6A4-FD81-46A8-AE13-65866873782C}"
  4295. },
  4296. {
  4297. "m_id": "{5B1D5C2A-369F-45B8-AF6F-DDD4065C0124}"
  4298. }
  4299. ],
  4300. "prettyClassName": "PopcornFXEmitterComponentRequestBus"
  4301. }
  4302. }
  4303. },
  4304. {
  4305. "Id": {
  4306. "id": 96098284924003
  4307. },
  4308. "Name": "SC Node(SetVariable)",
  4309. "Components": {
  4310. "Component_[850739741782770959]": {
  4311. "$type": "SetVariableNode",
  4312. "Id": 850739741782770959,
  4313. "Slots": [
  4314. {
  4315. "id": {
  4316. "m_id": "{945DAAF3-30E9-4A53-A22F-5C93338CBA6E}"
  4317. },
  4318. "contracts": [
  4319. {
  4320. "$type": "SlotTypeContract"
  4321. }
  4322. ],
  4323. "slotName": "In",
  4324. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  4325. "Descriptor": {
  4326. "ConnectionType": 1,
  4327. "SlotType": 1
  4328. }
  4329. },
  4330. {
  4331. "id": {
  4332. "m_id": "{834D4B39-E806-41F0-97EC-C087AAA1E063}"
  4333. },
  4334. "contracts": [
  4335. {
  4336. "$type": "SlotTypeContract"
  4337. }
  4338. ],
  4339. "slotName": "Out",
  4340. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  4341. "Descriptor": {
  4342. "ConnectionType": 2,
  4343. "SlotType": 1
  4344. }
  4345. },
  4346. {
  4347. "id": {
  4348. "m_id": "{B4065D5B-0911-498C-8FEF-C532EBBAFE3F}"
  4349. },
  4350. "contracts": [
  4351. {
  4352. "$type": "SlotTypeContract"
  4353. }
  4354. ],
  4355. "slotName": "Number",
  4356. "Descriptor": {
  4357. "ConnectionType": 1,
  4358. "SlotType": 2
  4359. },
  4360. "DataType": 1
  4361. },
  4362. {
  4363. "id": {
  4364. "m_id": "{FE7A1C5F-9DCC-4FE7-8406-1AA62013FC56}"
  4365. },
  4366. "contracts": [
  4367. {
  4368. "$type": "SlotTypeContract"
  4369. }
  4370. ],
  4371. "slotName": "Number",
  4372. "DisplayDataType": {
  4373. "m_type": 3
  4374. },
  4375. "Descriptor": {
  4376. "ConnectionType": 2,
  4377. "SlotType": 2
  4378. },
  4379. "DataType": 1
  4380. }
  4381. ],
  4382. "Datums": [
  4383. {
  4384. "isOverloadedStorage": false,
  4385. "scriptCanvasType": {
  4386. "m_type": 3
  4387. },
  4388. "isNullPointer": false,
  4389. "$type": "double",
  4390. "value": 4.0,
  4391. "label": "Number"
  4392. }
  4393. ],
  4394. "m_variableId": {
  4395. "m_id": "{49D86E32-DA58-44F9-BA7C-B384E2A3C3F6}"
  4396. },
  4397. "m_variableDataInSlotId": {
  4398. "m_id": "{B4065D5B-0911-498C-8FEF-C532EBBAFE3F}"
  4399. },
  4400. "m_variableDataOutSlotId": {
  4401. "m_id": "{FE7A1C5F-9DCC-4FE7-8406-1AA62013FC56}"
  4402. }
  4403. }
  4404. }
  4405. },
  4406. {
  4407. "Id": {
  4408. "id": 96119759760483
  4409. },
  4410. "Name": "SC Node(GetVariable)",
  4411. "Components": {
  4412. "Component_[9130306911173385403]": {
  4413. "$type": "GetVariableNode",
  4414. "Id": 9130306911173385403,
  4415. "Slots": [
  4416. {
  4417. "id": {
  4418. "m_id": "{30263768-3CA6-4656-A061-9D68B54A53D7}"
  4419. },
  4420. "contracts": [
  4421. {
  4422. "$type": "SlotTypeContract"
  4423. }
  4424. ],
  4425. "slotName": "In",
  4426. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  4427. "Descriptor": {
  4428. "ConnectionType": 1,
  4429. "SlotType": 1
  4430. }
  4431. },
  4432. {
  4433. "id": {
  4434. "m_id": "{69A06D5E-6477-4CDB-A19F-98B832A49F44}"
  4435. },
  4436. "contracts": [
  4437. {
  4438. "$type": "SlotTypeContract"
  4439. }
  4440. ],
  4441. "slotName": "Out",
  4442. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  4443. "Descriptor": {
  4444. "ConnectionType": 2,
  4445. "SlotType": 1
  4446. }
  4447. },
  4448. {
  4449. "id": {
  4450. "m_id": "{42AD5967-38D6-4F71-83B1-01064D60B0E1}"
  4451. },
  4452. "contracts": [
  4453. {
  4454. "$type": "SlotTypeContract"
  4455. }
  4456. ],
  4457. "slotName": "SpawnDecalConfig",
  4458. "DisplayDataType": {
  4459. "m_type": 4,
  4460. "m_azType": "{FC3DA616-174B-48FD-9BFB-BC277132FB47}"
  4461. },
  4462. "Descriptor": {
  4463. "ConnectionType": 2,
  4464. "SlotType": 2
  4465. },
  4466. "DataType": 1
  4467. },
  4468. {
  4469. "id": {
  4470. "m_id": "{0D0555DC-A618-41F5-B1FB-2EE91A610556}"
  4471. },
  4472. "contracts": [
  4473. {
  4474. "$type": "SlotTypeContract"
  4475. }
  4476. ],
  4477. "slotName": "material",
  4478. "DisplayDataType": {
  4479. "m_type": 19
  4480. },
  4481. "Descriptor": {
  4482. "ConnectionType": 2,
  4483. "SlotType": 2
  4484. },
  4485. "DataType": 1
  4486. },
  4487. {
  4488. "id": {
  4489. "m_id": "{90524EFA-82B2-4FA0-A79E-0E6A285D10AC}"
  4490. },
  4491. "contracts": [
  4492. {
  4493. "$type": "SlotTypeContract"
  4494. }
  4495. ],
  4496. "slotName": "fadeInTimeSec",
  4497. "DisplayDataType": {
  4498. "m_type": 3
  4499. },
  4500. "Descriptor": {
  4501. "ConnectionType": 2,
  4502. "SlotType": 2
  4503. },
  4504. "DataType": 1
  4505. },
  4506. {
  4507. "id": {
  4508. "m_id": "{424213DD-00B6-47C8-B2F9-8DE9FF331DDE}"
  4509. },
  4510. "contracts": [
  4511. {
  4512. "$type": "SlotTypeContract"
  4513. }
  4514. ],
  4515. "slotName": "scale",
  4516. "DisplayDataType": {
  4517. "m_type": 3
  4518. },
  4519. "Descriptor": {
  4520. "ConnectionType": 2,
  4521. "SlotType": 2
  4522. },
  4523. "DataType": 1
  4524. },
  4525. {
  4526. "id": {
  4527. "m_id": "{9A691D66-F2E3-4A73-8688-B3937DE7E2CC}"
  4528. },
  4529. "contracts": [
  4530. {
  4531. "$type": "SlotTypeContract"
  4532. }
  4533. ],
  4534. "slotName": "opacity",
  4535. "DisplayDataType": {
  4536. "m_type": 3
  4537. },
  4538. "Descriptor": {
  4539. "ConnectionType": 2,
  4540. "SlotType": 2
  4541. },
  4542. "DataType": 1
  4543. },
  4544. {
  4545. "id": {
  4546. "m_id": "{B4D1EF5B-C8B3-4837-898D-E25A510CAA27}"
  4547. },
  4548. "contracts": [
  4549. {
  4550. "$type": "SlotTypeContract"
  4551. }
  4552. ],
  4553. "slotName": "attenuationAngle",
  4554. "DisplayDataType": {
  4555. "m_type": 3
  4556. },
  4557. "Descriptor": {
  4558. "ConnectionType": 2,
  4559. "SlotType": 2
  4560. },
  4561. "DataType": 1
  4562. },
  4563. {
  4564. "id": {
  4565. "m_id": "{5E235EF3-AC6A-42F8-8F22-9803973D4C7E}"
  4566. },
  4567. "contracts": [
  4568. {
  4569. "$type": "SlotTypeContract"
  4570. }
  4571. ],
  4572. "slotName": "lifeTimeSec",
  4573. "DisplayDataType": {
  4574. "m_type": 3
  4575. },
  4576. "Descriptor": {
  4577. "ConnectionType": 2,
  4578. "SlotType": 2
  4579. },
  4580. "DataType": 1
  4581. },
  4582. {
  4583. "id": {
  4584. "m_id": "{E4624A5D-6614-4580-9CB3-DCC2B4B0313D}"
  4585. },
  4586. "contracts": [
  4587. {
  4588. "$type": "SlotTypeContract"
  4589. }
  4590. ],
  4591. "slotName": "fadeOutTimeSec",
  4592. "DisplayDataType": {
  4593. "m_type": 3
  4594. },
  4595. "Descriptor": {
  4596. "ConnectionType": 2,
  4597. "SlotType": 2
  4598. },
  4599. "DataType": 1
  4600. },
  4601. {
  4602. "id": {
  4603. "m_id": "{D82B7089-F32A-4DB4-881E-CAC25BE6C637}"
  4604. },
  4605. "contracts": [
  4606. {
  4607. "$type": "SlotTypeContract"
  4608. }
  4609. ],
  4610. "slotName": "thickness",
  4611. "DisplayDataType": {
  4612. "m_type": 3
  4613. },
  4614. "Descriptor": {
  4615. "ConnectionType": 2,
  4616. "SlotType": 2
  4617. },
  4618. "DataType": 1
  4619. },
  4620. {
  4621. "id": {
  4622. "m_id": "{05626B2D-B504-4FB2-948B-DAEC6A788147}"
  4623. },
  4624. "contracts": [
  4625. {
  4626. "$type": "SlotTypeContract"
  4627. }
  4628. ],
  4629. "slotName": "sortKey",
  4630. "DisplayDataType": {
  4631. "m_type": 3
  4632. },
  4633. "Descriptor": {
  4634. "ConnectionType": 2,
  4635. "SlotType": 2
  4636. },
  4637. "DataType": 1
  4638. }
  4639. ],
  4640. "m_variableId": {
  4641. "m_id": "{62E2846B-1201-4A3D-9C17-2A85C76998BE}"
  4642. },
  4643. "m_variableDataOutSlotId": {
  4644. "m_id": "{42AD5967-38D6-4F71-83B1-01064D60B0E1}"
  4645. },
  4646. "m_propertyAccounts": [
  4647. {
  4648. "m_propertySlotId": {
  4649. "m_id": "{0D0555DC-A618-41F5-B1FB-2EE91A610556}"
  4650. },
  4651. "m_propertyType": {
  4652. "m_type": 19
  4653. },
  4654. "m_propertyName": "material"
  4655. },
  4656. {
  4657. "m_propertySlotId": {
  4658. "m_id": "{90524EFA-82B2-4FA0-A79E-0E6A285D10AC}"
  4659. },
  4660. "m_propertyType": {
  4661. "m_type": 3
  4662. },
  4663. "m_propertyName": "fadeInTimeSec"
  4664. },
  4665. {
  4666. "m_propertySlotId": {
  4667. "m_id": "{424213DD-00B6-47C8-B2F9-8DE9FF331DDE}"
  4668. },
  4669. "m_propertyType": {
  4670. "m_type": 3
  4671. },
  4672. "m_propertyName": "scale"
  4673. },
  4674. {
  4675. "m_propertySlotId": {
  4676. "m_id": "{9A691D66-F2E3-4A73-8688-B3937DE7E2CC}"
  4677. },
  4678. "m_propertyType": {
  4679. "m_type": 3
  4680. },
  4681. "m_propertyName": "opacity"
  4682. },
  4683. {
  4684. "m_propertySlotId": {
  4685. "m_id": "{B4D1EF5B-C8B3-4837-898D-E25A510CAA27}"
  4686. },
  4687. "m_propertyType": {
  4688. "m_type": 3
  4689. },
  4690. "m_propertyName": "attenuationAngle"
  4691. },
  4692. {
  4693. "m_propertySlotId": {
  4694. "m_id": "{5E235EF3-AC6A-42F8-8F22-9803973D4C7E}"
  4695. },
  4696. "m_propertyType": {
  4697. "m_type": 3
  4698. },
  4699. "m_propertyName": "lifeTimeSec"
  4700. },
  4701. {
  4702. "m_propertySlotId": {
  4703. "m_id": "{E4624A5D-6614-4580-9CB3-DCC2B4B0313D}"
  4704. },
  4705. "m_propertyType": {
  4706. "m_type": 3
  4707. },
  4708. "m_propertyName": "fadeOutTimeSec"
  4709. },
  4710. {
  4711. "m_propertySlotId": {
  4712. "m_id": "{D82B7089-F32A-4DB4-881E-CAC25BE6C637}"
  4713. },
  4714. "m_propertyType": {
  4715. "m_type": 3
  4716. },
  4717. "m_propertyName": "thickness"
  4718. },
  4719. {
  4720. "m_propertySlotId": {
  4721. "m_id": "{05626B2D-B504-4FB2-948B-DAEC6A788147}"
  4722. },
  4723. "m_propertyType": {
  4724. "m_type": 3
  4725. },
  4726. "m_propertyName": "sortKey"
  4727. }
  4728. ]
  4729. }
  4730. }
  4731. },
  4732. {
  4733. "Id": {
  4734. "id": 96141234596963
  4735. },
  4736. "Name": "SC-Node(Mod)",
  4737. "Components": {
  4738. "Component_[919332782026468276]": {
  4739. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  4740. "Id": 919332782026468276,
  4741. "Slots": [
  4742. {
  4743. "id": {
  4744. "m_id": "{37E08DEE-7B7D-4BED-B608-051C02A65BCC}"
  4745. },
  4746. "contracts": [
  4747. {
  4748. "$type": "SlotTypeContract"
  4749. }
  4750. ],
  4751. "slotName": "Number: 0",
  4752. "Descriptor": {
  4753. "ConnectionType": 1,
  4754. "SlotType": 2
  4755. },
  4756. "DataType": 1
  4757. },
  4758. {
  4759. "id": {
  4760. "m_id": "{3F1EEEAD-30CC-4D6B-B7BB-AFF94EF70E3E}"
  4761. },
  4762. "contracts": [
  4763. {
  4764. "$type": "SlotTypeContract"
  4765. }
  4766. ],
  4767. "slotName": "Number: 1",
  4768. "Descriptor": {
  4769. "ConnectionType": 1,
  4770. "SlotType": 2
  4771. },
  4772. "DataType": 1
  4773. },
  4774. {
  4775. "id": {
  4776. "m_id": "{51E478E5-4202-45A0-A8E1-12332D6846F4}"
  4777. },
  4778. "contracts": [
  4779. {
  4780. "$type": "SlotTypeContract"
  4781. }
  4782. ],
  4783. "slotName": "In",
  4784. "Descriptor": {
  4785. "ConnectionType": 1,
  4786. "SlotType": 1
  4787. }
  4788. },
  4789. {
  4790. "id": {
  4791. "m_id": "{EA499506-B635-4EB8-944C-CBA6502A954E}"
  4792. },
  4793. "contracts": [
  4794. {
  4795. "$type": "SlotTypeContract"
  4796. }
  4797. ],
  4798. "slotName": "Out",
  4799. "Descriptor": {
  4800. "ConnectionType": 2,
  4801. "SlotType": 1
  4802. }
  4803. },
  4804. {
  4805. "id": {
  4806. "m_id": "{4A7A16CC-E307-464A-AD51-15B63F1A9BFC}"
  4807. },
  4808. "contracts": [
  4809. {
  4810. "$type": "SlotTypeContract"
  4811. }
  4812. ],
  4813. "slotName": "Number",
  4814. "DisplayDataType": {
  4815. "m_type": 3
  4816. },
  4817. "Descriptor": {
  4818. "ConnectionType": 2,
  4819. "SlotType": 2
  4820. },
  4821. "DataType": 1
  4822. }
  4823. ],
  4824. "Datums": [
  4825. {
  4826. "isOverloadedStorage": false,
  4827. "scriptCanvasType": {
  4828. "m_type": 3
  4829. },
  4830. "isNullPointer": false,
  4831. "$type": "double",
  4832. "value": 0.0,
  4833. "label": "A"
  4834. },
  4835. {
  4836. "isOverloadedStorage": false,
  4837. "scriptCanvasType": {
  4838. "m_type": 3
  4839. },
  4840. "isNullPointer": false,
  4841. "$type": "double",
  4842. "value": 4.0,
  4843. "label": "B"
  4844. }
  4845. ],
  4846. "methodType": 2,
  4847. "methodName": "Mod",
  4848. "className": "Math",
  4849. "resultSlotIDs": [
  4850. {}
  4851. ],
  4852. "inputSlots": [
  4853. {
  4854. "m_id": "{37E08DEE-7B7D-4BED-B608-051C02A65BCC}"
  4855. },
  4856. {
  4857. "m_id": "{3F1EEEAD-30CC-4D6B-B7BB-AFF94EF70E3E}"
  4858. }
  4859. ],
  4860. "prettyClassName": "Math"
  4861. }
  4862. }
  4863. }
  4864. ],
  4865. "m_connections": [
  4866. {
  4867. "Id": {
  4868. "id": 96197069171811
  4869. },
  4870. "Name": "srcEndpoint=(GetAttributeId: Number), destEndpoint=(SetAttributeAsFloat: Number: 1)",
  4871. "Components": {
  4872. "Component_[3631372586840153144]": {
  4873. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4874. "Id": 3631372586840153144,
  4875. "sourceEndpoint": {
  4876. "nodeId": {
  4877. "id": 96076810087523
  4878. },
  4879. "slotId": {
  4880. "m_id": "{5FCBD72E-6B1A-49B5-87AF-00C487F9F42D}"
  4881. }
  4882. },
  4883. "targetEndpoint": {
  4884. "nodeId": {
  4885. "id": 96051040283747
  4886. },
  4887. "slotId": {
  4888. "m_id": "{98DCD577-13AC-4087-9DE7-6F3F3952205A}"
  4889. }
  4890. }
  4891. }
  4892. }
  4893. },
  4894. {
  4895. "Id": {
  4896. "id": 96201364139107
  4897. },
  4898. "Name": "srcEndpoint=(Multiply (*): Out), destEndpoint=(Mod: In)",
  4899. "Components": {
  4900. "Component_[13122921624327002742]": {
  4901. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4902. "Id": 13122921624327002742,
  4903. "sourceEndpoint": {
  4904. "nodeId": {
  4905. "id": 96171299368035
  4906. },
  4907. "slotId": {
  4908. "m_id": "{763D230C-56F0-4819-9369-0D776176DAFB}"
  4909. }
  4910. },
  4911. "targetEndpoint": {
  4912. "nodeId": {
  4913. "id": 96141234596963
  4914. },
  4915. "slotId": {
  4916. "m_id": "{51E478E5-4202-45A0-A8E1-12332D6846F4}"
  4917. }
  4918. }
  4919. }
  4920. }
  4921. },
  4922. {
  4923. "Id": {
  4924. "id": 96205659106403
  4925. },
  4926. "Name": "srcEndpoint=(Get roundtime remaining in seconds: Number), destEndpoint=(Divide (/): Number 0)",
  4927. "Components": {
  4928. "Component_[17984612025253119145]": {
  4929. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4930. "Id": 17984612025253119145,
  4931. "sourceEndpoint": {
  4932. "nodeId": {
  4933. "id": 96128349695075
  4934. },
  4935. "slotId": {
  4936. "m_id": "{15A44D1E-C210-4946-90B2-0E470EBE9B21}"
  4937. }
  4938. },
  4939. "targetEndpoint": {
  4940. "nodeId": {
  4941. "id": 96162709433443
  4942. },
  4943. "slotId": {
  4944. "m_id": "{39EED2EE-2287-4727-8E42-C31022194D77}"
  4945. }
  4946. }
  4947. }
  4948. }
  4949. },
  4950. {
  4951. "Id": {
  4952. "id": 96209954073699
  4953. },
  4954. "Name": "srcEndpoint=(Get roundtime remaining in seconds: Out), destEndpoint=(Get total roundtime in seconds: In)",
  4955. "Components": {
  4956. "Component_[2392199445285643560]": {
  4957. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4958. "Id": 2392199445285643560,
  4959. "sourceEndpoint": {
  4960. "nodeId": {
  4961. "id": 96128349695075
  4962. },
  4963. "slotId": {
  4964. "m_id": "{2B2A0094-F04A-4B38-9BA6-3611CFA82722}"
  4965. }
  4966. },
  4967. "targetEndpoint": {
  4968. "nodeId": {
  4969. "id": 96046745316451
  4970. },
  4971. "slotId": {
  4972. "m_id": "{A6A33357-D4BA-45DA-9721-95FF88CF07D4}"
  4973. }
  4974. }
  4975. }
  4976. }
  4977. },
  4978. {
  4979. "Id": {
  4980. "id": 96214249040995
  4981. },
  4982. "Name": "srcEndpoint=(Multiply (*): Result), destEndpoint=(Mod: Number: 0)",
  4983. "Components": {
  4984. "Component_[8346261065667341900]": {
  4985. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4986. "Id": 8346261065667341900,
  4987. "sourceEndpoint": {
  4988. "nodeId": {
  4989. "id": 96171299368035
  4990. },
  4991. "slotId": {
  4992. "m_id": "{C71F6DC6-4CD8-4DAC-8750-614BC8FCAB2C}"
  4993. }
  4994. },
  4995. "targetEndpoint": {
  4996. "nodeId": {
  4997. "id": 96141234596963
  4998. },
  4999. "slotId": {
  5000. "m_id": "{37E08DEE-7B7D-4BED-B608-051C02A65BCC}"
  5001. }
  5002. }
  5003. }
  5004. }
  5005. },
  5006. {
  5007. "Id": {
  5008. "id": 96218544008291
  5009. },
  5010. "Name": "srcEndpoint=(Get total roundtime in seconds: Out), destEndpoint=(Divide (/): In)",
  5011. "Components": {
  5012. "Component_[13749902543685681044]": {
  5013. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5014. "Id": 13749902543685681044,
  5015. "sourceEndpoint": {
  5016. "nodeId": {
  5017. "id": 96046745316451
  5018. },
  5019. "slotId": {
  5020. "m_id": "{B8F40490-FF66-41EA-B2B1-7D5C7B18AE91}"
  5021. }
  5022. },
  5023. "targetEndpoint": {
  5024. "nodeId": {
  5025. "id": 96162709433443
  5026. },
  5027. "slotId": {
  5028. "m_id": "{54ED2D32-B0BE-4CF3-A80C-6576AB6B0752}"
  5029. }
  5030. }
  5031. }
  5032. }
  5033. },
  5034. {
  5035. "Id": {
  5036. "id": 96222838975587
  5037. },
  5038. "Name": "srcEndpoint=(Get total roundtime in seconds: Number), destEndpoint=(Divide (/): Number 1)",
  5039. "Components": {
  5040. "Component_[16465896439637144109]": {
  5041. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5042. "Id": 16465896439637144109,
  5043. "sourceEndpoint": {
  5044. "nodeId": {
  5045. "id": 96046745316451
  5046. },
  5047. "slotId": {
  5048. "m_id": "{140F876E-6F1B-494D-82FB-4710230F2DB7}"
  5049. }
  5050. },
  5051. "targetEndpoint": {
  5052. "nodeId": {
  5053. "id": 96162709433443
  5054. },
  5055. "slotId": {
  5056. "m_id": "{8CA38FEF-56BA-4CA3-AA18-E523E0324A45}"
  5057. }
  5058. }
  5059. }
  5060. }
  5061. },
  5062. {
  5063. "Id": {
  5064. "id": 96227133942883
  5065. },
  5066. "Name": "srcEndpoint=(IfMultiplayerAgentType: If Client Type), destEndpoint=(GetAttributeId: In)",
  5067. "Components": {
  5068. "Component_[9403500395311412001]": {
  5069. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5070. "Id": 9403500395311412001,
  5071. "sourceEndpoint": {
  5072. "nodeId": {
  5073. "id": 96167004400739
  5074. },
  5075. "slotId": {
  5076. "m_id": "{CE734BE6-DF29-4758-86A6-247D9AF48AA4}"
  5077. }
  5078. },
  5079. "targetEndpoint": {
  5080. "nodeId": {
  5081. "id": 96076810087523
  5082. },
  5083. "slotId": {
  5084. "m_id": "{B0B6E460-76DB-444B-BAD0-DB610F9C1E8A}"
  5085. }
  5086. }
  5087. }
  5088. }
  5089. },
  5090. {
  5091. "Id": {
  5092. "id": 96231428910179
  5093. },
  5094. "Name": "srcEndpoint=(IfMultiplayerAgentType: If ClientServer Type), destEndpoint=(GetAttributeId: In)",
  5095. "Components": {
  5096. "Component_[15531383872528267976]": {
  5097. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5098. "Id": 15531383872528267976,
  5099. "sourceEndpoint": {
  5100. "nodeId": {
  5101. "id": 96167004400739
  5102. },
  5103. "slotId": {
  5104. "m_id": "{E0D24ABA-56FB-488A-8C3D-A6DFC4DD5814}"
  5105. }
  5106. },
  5107. "targetEndpoint": {
  5108. "nodeId": {
  5109. "id": 96076810087523
  5110. },
  5111. "slotId": {
  5112. "m_id": "{B0B6E460-76DB-444B-BAD0-DB610F9C1E8A}"
  5113. }
  5114. }
  5115. }
  5116. }
  5117. },
  5118. {
  5119. "Id": {
  5120. "id": 96235723877475
  5121. },
  5122. "Name": "srcEndpoint=(IfMultiplayerAgentType: If Singleplayer), destEndpoint=(GetAttributeId: In)",
  5123. "Components": {
  5124. "Component_[15734152885570727292]": {
  5125. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5126. "Id": 15734152885570727292,
  5127. "sourceEndpoint": {
  5128. "nodeId": {
  5129. "id": 96167004400739
  5130. },
  5131. "slotId": {
  5132. "m_id": "{12FD09E5-FE0A-4136-A7DE-3689AD521315}"
  5133. }
  5134. },
  5135. "targetEndpoint": {
  5136. "nodeId": {
  5137. "id": 96076810087523
  5138. },
  5139. "slotId": {
  5140. "m_id": "{B0B6E460-76DB-444B-BAD0-DB610F9C1E8A}"
  5141. }
  5142. }
  5143. }
  5144. }
  5145. },
  5146. {
  5147. "Id": {
  5148. "id": 96240018844771
  5149. },
  5150. "Name": "srcEndpoint=(Mod: Number), destEndpoint=(Greater Than (>): Value A)",
  5151. "Components": {
  5152. "Component_[17994989574094265112]": {
  5153. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5154. "Id": 17994989574094265112,
  5155. "sourceEndpoint": {
  5156. "nodeId": {
  5157. "id": 96141234596963
  5158. },
  5159. "slotId": {
  5160. "m_id": "{4A7A16CC-E307-464A-AD51-15B63F1A9BFC}"
  5161. }
  5162. },
  5163. "targetEndpoint": {
  5164. "nodeId": {
  5165. "id": 96145529564259
  5166. },
  5167. "slotId": {
  5168. "m_id": "{5B61C8F1-438E-4182-8395-007E83943B58}"
  5169. }
  5170. }
  5171. }
  5172. }
  5173. },
  5174. {
  5175. "Id": {
  5176. "id": 96244313812067
  5177. },
  5178. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Greater Than (>): Value B)",
  5179. "Components": {
  5180. "Component_[6974616544631859745]": {
  5181. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5182. "Id": 6974616544631859745,
  5183. "sourceEndpoint": {
  5184. "nodeId": {
  5185. "id": 96175594335331
  5186. },
  5187. "slotId": {
  5188. "m_id": "{6B946166-57A0-47C1-91E2-FB4477FCD43C}"
  5189. }
  5190. },
  5191. "targetEndpoint": {
  5192. "nodeId": {
  5193. "id": 96145529564259
  5194. },
  5195. "slotId": {
  5196. "m_id": "{2A9072F2-DD89-4C97-B586-2CF2641A65FD}"
  5197. }
  5198. }
  5199. }
  5200. }
  5201. },
  5202. {
  5203. "Id": {
  5204. "id": 96248608779363
  5205. },
  5206. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Greater Than (>): In)",
  5207. "Components": {
  5208. "Component_[4060417504593206010]": {
  5209. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5210. "Id": 4060417504593206010,
  5211. "sourceEndpoint": {
  5212. "nodeId": {
  5213. "id": 96175594335331
  5214. },
  5215. "slotId": {
  5216. "m_id": "{DBDCD0C7-9D67-49B0-9DC9-F22FE798C993}"
  5217. }
  5218. },
  5219. "targetEndpoint": {
  5220. "nodeId": {
  5221. "id": 96145529564259
  5222. },
  5223. "slotId": {
  5224. "m_id": "{94B5DB37-C798-44F1-8E73-684D0291FD98}"
  5225. }
  5226. }
  5227. }
  5228. }
  5229. },
  5230. {
  5231. "Id": {
  5232. "id": 96252903746659
  5233. },
  5234. "Name": "srcEndpoint=(Mod: Out), destEndpoint=(IfMultiplayerAgentType: In)",
  5235. "Components": {
  5236. "Component_[12132631203436103119]": {
  5237. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5238. "Id": 12132631203436103119,
  5239. "sourceEndpoint": {
  5240. "nodeId": {
  5241. "id": 96141234596963
  5242. },
  5243. "slotId": {
  5244. "m_id": "{EA499506-B635-4EB8-944C-CBA6502A954E}"
  5245. }
  5246. },
  5247. "targetEndpoint": {
  5248. "nodeId": {
  5249. "id": 96167004400739
  5250. },
  5251. "slotId": {
  5252. "m_id": "{97DFED3B-4B82-4E89-9980-10687A1EC4F9}"
  5253. }
  5254. }
  5255. }
  5256. }
  5257. },
  5258. {
  5259. "Id": {
  5260. "id": 96257198713955
  5261. },
  5262. "Name": "srcEndpoint=(GetAttributeId: Out), destEndpoint=(SetAttributeAsFloat: In)",
  5263. "Components": {
  5264. "Component_[1657392596108110994]": {
  5265. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5266. "Id": 1657392596108110994,
  5267. "sourceEndpoint": {
  5268. "nodeId": {
  5269. "id": 96076810087523
  5270. },
  5271. "slotId": {
  5272. "m_id": "{BE61B7F2-B504-45AC-BEC9-F9AE0222C70D}"
  5273. }
  5274. },
  5275. "targetEndpoint": {
  5276. "nodeId": {
  5277. "id": 96051040283747
  5278. },
  5279. "slotId": {
  5280. "m_id": "{B1D95B86-BBBF-486B-B054-A1A1641A335B}"
  5281. }
  5282. }
  5283. }
  5284. }
  5285. },
  5286. {
  5287. "Id": {
  5288. "id": 96261493681251
  5289. },
  5290. "Name": "srcEndpoint=(Mod: Number), destEndpoint=(SetAttributeAsFloat: Number: 2)",
  5291. "Components": {
  5292. "Component_[16706459051664039655]": {
  5293. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5294. "Id": 16706459051664039655,
  5295. "sourceEndpoint": {
  5296. "nodeId": {
  5297. "id": 96141234596963
  5298. },
  5299. "slotId": {
  5300. "m_id": "{4A7A16CC-E307-464A-AD51-15B63F1A9BFC}"
  5301. }
  5302. },
  5303. "targetEndpoint": {
  5304. "nodeId": {
  5305. "id": 96051040283747
  5306. },
  5307. "slotId": {
  5308. "m_id": "{05A4C7BD-503F-4012-AB67-EF40A30E245B}"
  5309. }
  5310. }
  5311. }
  5312. }
  5313. },
  5314. {
  5315. "Id": {
  5316. "id": 96265788648547
  5317. },
  5318. "Name": "srcEndpoint=(HeartBeat: Pulse), destEndpoint=(Get roundtime remaining in seconds: In)",
  5319. "Components": {
  5320. "Component_[8114551859676001282]": {
  5321. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5322. "Id": 8114551859676001282,
  5323. "sourceEndpoint": {
  5324. "nodeId": {
  5325. "id": 96111169825891
  5326. },
  5327. "slotId": {
  5328. "m_id": "{6BFC526A-79DC-48FF-9B8D-11F44D5F35C9}"
  5329. }
  5330. },
  5331. "targetEndpoint": {
  5332. "nodeId": {
  5333. "id": 96128349695075
  5334. },
  5335. "slotId": {
  5336. "m_id": "{CCE1D877-B290-45B3-930C-194FE9A15C75}"
  5337. }
  5338. }
  5339. }
  5340. }
  5341. },
  5342. {
  5343. "Id": {
  5344. "id": 96270083615843
  5345. },
  5346. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(Set Variable: In)",
  5347. "Components": {
  5348. "Component_[14049964353010989624]": {
  5349. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5350. "Id": 14049964353010989624,
  5351. "sourceEndpoint": {
  5352. "nodeId": {
  5353. "id": 96158414466147
  5354. },
  5355. "slotId": {
  5356. "m_id": "{EFFB2732-B237-4A6C-91F1-0996EF54E53B}"
  5357. }
  5358. },
  5359. "targetEndpoint": {
  5360. "nodeId": {
  5361. "id": 96102579891299
  5362. },
  5363. "slotId": {
  5364. "m_id": "{FACB7C4C-4B2A-4595-AA51-5C034E1BC755}"
  5365. }
  5366. }
  5367. }
  5368. }
  5369. },
  5370. {
  5371. "Id": {
  5372. "id": 96274378583139
  5373. },
  5374. "Name": "srcEndpoint=(Greater Than (>): False), destEndpoint=(Set Variable: In)",
  5375. "Components": {
  5376. "Component_[10270014576399529346]": {
  5377. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5378. "Id": 10270014576399529346,
  5379. "sourceEndpoint": {
  5380. "nodeId": {
  5381. "id": 96145529564259
  5382. },
  5383. "slotId": {
  5384. "m_id": "{6211CA16-F2DB-4D53-B867-4C7772D0DE49}"
  5385. }
  5386. },
  5387. "targetEndpoint": {
  5388. "nodeId": {
  5389. "id": 96089694989411
  5390. },
  5391. "slotId": {
  5392. "m_id": "{D51F9D1E-3158-41AA-8D7C-0DF1BC60A5A9}"
  5393. }
  5394. }
  5395. }
  5396. }
  5397. },
  5398. {
  5399. "Id": {
  5400. "id": 96278673550435
  5401. },
  5402. "Name": "srcEndpoint=(Mod: Number), destEndpoint=(Set Variable: Number)",
  5403. "Components": {
  5404. "Component_[13657299905818264725]": {
  5405. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5406. "Id": 13657299905818264725,
  5407. "sourceEndpoint": {
  5408. "nodeId": {
  5409. "id": 96141234596963
  5410. },
  5411. "slotId": {
  5412. "m_id": "{4A7A16CC-E307-464A-AD51-15B63F1A9BFC}"
  5413. }
  5414. },
  5415. "targetEndpoint": {
  5416. "nodeId": {
  5417. "id": 96089694989411
  5418. },
  5419. "slotId": {
  5420. "m_id": "{8DD9C86F-13F4-4170-BEF6-C72E4FF2428A}"
  5421. }
  5422. }
  5423. }
  5424. }
  5425. },
  5426. {
  5427. "Id": {
  5428. "id": 96282968517731
  5429. },
  5430. "Name": "srcEndpoint=(Mod: Out), destEndpoint=(Get Variable: In)",
  5431. "Components": {
  5432. "Component_[8995572168315794171]": {
  5433. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5434. "Id": 8995572168315794171,
  5435. "sourceEndpoint": {
  5436. "nodeId": {
  5437. "id": 96141234596963
  5438. },
  5439. "slotId": {
  5440. "m_id": "{EA499506-B635-4EB8-944C-CBA6502A954E}"
  5441. }
  5442. },
  5443. "targetEndpoint": {
  5444. "nodeId": {
  5445. "id": 96175594335331
  5446. },
  5447. "slotId": {
  5448. "m_id": "{5A1FECD5-E6CD-4410-8AAE-D5F1AC44EC11}"
  5449. }
  5450. }
  5451. }
  5452. }
  5453. },
  5454. {
  5455. "Id": {
  5456. "id": 96287263485027
  5457. },
  5458. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Multiply (*): In)",
  5459. "Components": {
  5460. "Component_[1038098693301472620]": {
  5461. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5462. "Id": 1038098693301472620,
  5463. "sourceEndpoint": {
  5464. "nodeId": {
  5465. "id": 96068220152931
  5466. },
  5467. "slotId": {
  5468. "m_id": "{A5F43AB3-D627-4031-BBE5-9BAC3ACD5F96}"
  5469. }
  5470. },
  5471. "targetEndpoint": {
  5472. "nodeId": {
  5473. "id": 96081105054819
  5474. },
  5475. "slotId": {
  5476. "m_id": "{022910D4-2C8C-4275-A984-75BEF5C224BC}"
  5477. }
  5478. }
  5479. }
  5480. }
  5481. },
  5482. {
  5483. "Id": {
  5484. "id": 96291558452323
  5485. },
  5486. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Multiply (*): Value 0)",
  5487. "Components": {
  5488. "Component_[9040682423048663410]": {
  5489. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5490. "Id": 9040682423048663410,
  5491. "sourceEndpoint": {
  5492. "nodeId": {
  5493. "id": 96068220152931
  5494. },
  5495. "slotId": {
  5496. "m_id": "{73D730C0-AACC-4A53-BDB0-FF3BEF90C783}"
  5497. }
  5498. },
  5499. "targetEndpoint": {
  5500. "nodeId": {
  5501. "id": 96081105054819
  5502. },
  5503. "slotId": {
  5504. "m_id": "{F8D4704F-06DF-4181-AAF7-75CDDFECCF8B}"
  5505. }
  5506. }
  5507. }
  5508. }
  5509. },
  5510. {
  5511. "Id": {
  5512. "id": 96295853419619
  5513. },
  5514. "Name": "srcEndpoint=(Divide (/): Out), destEndpoint=(Get Variable: In)",
  5515. "Components": {
  5516. "Component_[1432987453636084962]": {
  5517. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5518. "Id": 1432987453636084962,
  5519. "sourceEndpoint": {
  5520. "nodeId": {
  5521. "id": 96162709433443
  5522. },
  5523. "slotId": {
  5524. "m_id": "{BD8B529F-C462-4C21-9C81-0EC595D028CA}"
  5525. }
  5526. },
  5527. "targetEndpoint": {
  5528. "nodeId": {
  5529. "id": 96068220152931
  5530. },
  5531. "slotId": {
  5532. "m_id": "{658E31AF-93CA-43BC-B889-5AC0E0CAAA18}"
  5533. }
  5534. }
  5535. }
  5536. }
  5537. },
  5538. {
  5539. "Id": {
  5540. "id": 96300148386915
  5541. },
  5542. "Name": "srcEndpoint=(Multiply (*): Out), destEndpoint=(Multiply (*): In)",
  5543. "Components": {
  5544. "Component_[16039352293474383075]": {
  5545. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5546. "Id": 16039352293474383075,
  5547. "sourceEndpoint": {
  5548. "nodeId": {
  5549. "id": 96081105054819
  5550. },
  5551. "slotId": {
  5552. "m_id": "{062B068C-86AC-4764-925F-43278FB77432}"
  5553. }
  5554. },
  5555. "targetEndpoint": {
  5556. "nodeId": {
  5557. "id": 96171299368035
  5558. },
  5559. "slotId": {
  5560. "m_id": "{F58D6529-7AFE-418F-AEFE-914CACBAD143}"
  5561. }
  5562. }
  5563. }
  5564. }
  5565. },
  5566. {
  5567. "Id": {
  5568. "id": 96304443354211
  5569. },
  5570. "Name": "srcEndpoint=(Multiply (*): Result), destEndpoint=(Multiply (*): Number 0)",
  5571. "Components": {
  5572. "Component_[3928381498303186272]": {
  5573. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5574. "Id": 3928381498303186272,
  5575. "sourceEndpoint": {
  5576. "nodeId": {
  5577. "id": 96081105054819
  5578. },
  5579. "slotId": {
  5580. "m_id": "{ED9F794D-8902-460F-84C3-05089CD9E19F}"
  5581. }
  5582. },
  5583. "targetEndpoint": {
  5584. "nodeId": {
  5585. "id": 96171299368035
  5586. },
  5587. "slotId": {
  5588. "m_id": "{C5A8AFC3-C7C2-4DC0-BD52-C596854DDCC2}"
  5589. }
  5590. }
  5591. }
  5592. }
  5593. },
  5594. {
  5595. "Id": {
  5596. "id": 96308738321507
  5597. },
  5598. "Name": "srcEndpoint=(Divide (/): Result), destEndpoint=(Multiply (*): Number 1)",
  5599. "Components": {
  5600. "Component_[5301294462838338463]": {
  5601. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5602. "Id": 5301294462838338463,
  5603. "sourceEndpoint": {
  5604. "nodeId": {
  5605. "id": 96162709433443
  5606. },
  5607. "slotId": {
  5608. "m_id": "{B2ADB827-4DE6-428F-8F82-605E3F115C4A}"
  5609. }
  5610. },
  5611. "targetEndpoint": {
  5612. "nodeId": {
  5613. "id": 96171299368035
  5614. },
  5615. "slotId": {
  5616. "m_id": "{2CD56A76-1C54-49A5-8BA0-631E66C0AD84}"
  5617. }
  5618. }
  5619. }
  5620. }
  5621. },
  5622. {
  5623. "Id": {
  5624. "id": 96313033288803
  5625. },
  5626. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(HeartBeat: Start)",
  5627. "Components": {
  5628. "Component_[15572122649512184085]": {
  5629. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5630. "Id": 15572122649512184085,
  5631. "sourceEndpoint": {
  5632. "nodeId": {
  5633. "id": 96158414466147
  5634. },
  5635. "slotId": {
  5636. "m_id": "{EFFB2732-B237-4A6C-91F1-0996EF54E53B}"
  5637. }
  5638. },
  5639. "targetEndpoint": {
  5640. "nodeId": {
  5641. "id": 96111169825891
  5642. },
  5643. "slotId": {
  5644. "m_id": "{1C12B576-DD9C-4353-B193-FA815C0A38F5}"
  5645. }
  5646. }
  5647. }
  5648. }
  5649. },
  5650. {
  5651. "Id": {
  5652. "id": 96317328256099
  5653. },
  5654. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(IfMultiplayerAgentType: In)",
  5655. "Components": {
  5656. "Component_[8730329322265170037]": {
  5657. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5658. "Id": 8730329322265170037,
  5659. "sourceEndpoint": {
  5660. "nodeId": {
  5661. "id": 96098284924003
  5662. },
  5663. "slotId": {
  5664. "m_id": "{834D4B39-E806-41F0-97EC-C087AAA1E063}"
  5665. }
  5666. },
  5667. "targetEndpoint": {
  5668. "nodeId": {
  5669. "id": 96192774204515
  5670. },
  5671. "slotId": {
  5672. "m_id": "{97DFED3B-4B82-4E89-9980-10687A1EC4F9}"
  5673. }
  5674. }
  5675. }
  5676. }
  5677. },
  5678. {
  5679. "Id": {
  5680. "id": 96321623223395
  5681. },
  5682. "Name": "srcEndpoint=(IfMultiplayerAgentType: If Client Type), destEndpoint=(Get Variable: In)",
  5683. "Components": {
  5684. "Component_[16847085520853092328]": {
  5685. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5686. "Id": 16847085520853092328,
  5687. "sourceEndpoint": {
  5688. "nodeId": {
  5689. "id": 96192774204515
  5690. },
  5691. "slotId": {
  5692. "m_id": "{CE734BE6-DF29-4758-86A6-247D9AF48AA4}"
  5693. }
  5694. },
  5695. "targetEndpoint": {
  5696. "nodeId": {
  5697. "id": 96059630218339
  5698. },
  5699. "slotId": {
  5700. "m_id": "{FA317AFB-77E7-4859-98B1-BCF8C6E1C9A4}"
  5701. }
  5702. }
  5703. }
  5704. }
  5705. },
  5706. {
  5707. "Id": {
  5708. "id": 96325918190691
  5709. },
  5710. "Name": "srcEndpoint=(IfMultiplayerAgentType: If ClientServer Type), destEndpoint=(Get Variable: In)",
  5711. "Components": {
  5712. "Component_[8278654645524208407]": {
  5713. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5714. "Id": 8278654645524208407,
  5715. "sourceEndpoint": {
  5716. "nodeId": {
  5717. "id": 96192774204515
  5718. },
  5719. "slotId": {
  5720. "m_id": "{E0D24ABA-56FB-488A-8C3D-A6DFC4DD5814}"
  5721. }
  5722. },
  5723. "targetEndpoint": {
  5724. "nodeId": {
  5725. "id": 96059630218339
  5726. },
  5727. "slotId": {
  5728. "m_id": "{FA317AFB-77E7-4859-98B1-BCF8C6E1C9A4}"
  5729. }
  5730. }
  5731. }
  5732. }
  5733. },
  5734. {
  5735. "Id": {
  5736. "id": 96330213157987
  5737. },
  5738. "Name": "srcEndpoint=(IfMultiplayerAgentType: If Singleplayer), destEndpoint=(Get Variable: In)",
  5739. "Components": {
  5740. "Component_[4603947763760275163]": {
  5741. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5742. "Id": 4603947763760275163,
  5743. "sourceEndpoint": {
  5744. "nodeId": {
  5745. "id": 96192774204515
  5746. },
  5747. "slotId": {
  5748. "m_id": "{12FD09E5-FE0A-4136-A7DE-3689AD521315}"
  5749. }
  5750. },
  5751. "targetEndpoint": {
  5752. "nodeId": {
  5753. "id": 96059630218339
  5754. },
  5755. "slotId": {
  5756. "m_id": "{FA317AFB-77E7-4859-98B1-BCF8C6E1C9A4}"
  5757. }
  5758. }
  5759. }
  5760. }
  5761. },
  5762. {
  5763. "Id": {
  5764. "id": 96334508125283
  5765. },
  5766. "Name": "srcEndpoint=(Get Variable: EntityId), destEndpoint=(Play: EntityId)",
  5767. "Components": {
  5768. "Component_[7450176186117282384]": {
  5769. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5770. "Id": 7450176186117282384,
  5771. "sourceEndpoint": {
  5772. "nodeId": {
  5773. "id": 96059630218339
  5774. },
  5775. "slotId": {
  5776. "m_id": "{C62D0C16-8D8B-45BC-A87A-4ED208744392}"
  5777. }
  5778. },
  5779. "targetEndpoint": {
  5780. "nodeId": {
  5781. "id": 96106874858595
  5782. },
  5783. "slotId": {
  5784. "m_id": "{BE3E2DE1-2504-4899-8690-B863839A37E1}"
  5785. }
  5786. }
  5787. }
  5788. }
  5789. },
  5790. {
  5791. "Id": {
  5792. "id": 96338803092579
  5793. },
  5794. "Name": "srcEndpoint=(Get Variable: EntityId), destEndpoint=(Restart: EntityId: 0)",
  5795. "Components": {
  5796. "Component_[17896004437304999211]": {
  5797. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5798. "Id": 17896004437304999211,
  5799. "sourceEndpoint": {
  5800. "nodeId": {
  5801. "id": 96059630218339
  5802. },
  5803. "slotId": {
  5804. "m_id": "{C62D0C16-8D8B-45BC-A87A-4ED208744392}"
  5805. }
  5806. },
  5807. "targetEndpoint": {
  5808. "nodeId": {
  5809. "id": 96136939629667
  5810. },
  5811. "slotId": {
  5812. "m_id": "{95DC8491-CDF7-4619-8848-6980C16AA21C}"
  5813. }
  5814. }
  5815. }
  5816. }
  5817. },
  5818. {
  5819. "Id": {
  5820. "id": 96343098059875
  5821. },
  5822. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Restart: In)",
  5823. "Components": {
  5824. "Component_[8831191551904003745]": {
  5825. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5826. "Id": 8831191551904003745,
  5827. "sourceEndpoint": {
  5828. "nodeId": {
  5829. "id": 96059630218339
  5830. },
  5831. "slotId": {
  5832. "m_id": "{5B9913DF-A026-428F-AFB1-5FDDF103DE61}"
  5833. }
  5834. },
  5835. "targetEndpoint": {
  5836. "nodeId": {
  5837. "id": 96136939629667
  5838. },
  5839. "slotId": {
  5840. "m_id": "{12AD2A87-2315-4E60-9B2D-06DB244AC4E4}"
  5841. }
  5842. }
  5843. }
  5844. }
  5845. },
  5846. {
  5847. "Id": {
  5848. "id": 96347393027171
  5849. },
  5850. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Play: In)",
  5851. "Components": {
  5852. "Component_[1615283111984897269]": {
  5853. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5854. "Id": 1615283111984897269,
  5855. "sourceEndpoint": {
  5856. "nodeId": {
  5857. "id": 96059630218339
  5858. },
  5859. "slotId": {
  5860. "m_id": "{5B9913DF-A026-428F-AFB1-5FDDF103DE61}"
  5861. }
  5862. },
  5863. "targetEndpoint": {
  5864. "nodeId": {
  5865. "id": 96106874858595
  5866. },
  5867. "slotId": {
  5868. "m_id": "{17AABFC3-9DB6-4688-AEF6-0A077B4DA52F}"
  5869. }
  5870. }
  5871. }
  5872. }
  5873. },
  5874. {
  5875. "Id": {
  5876. "id": 96351687994467
  5877. },
  5878. "Name": "srcEndpoint=(Greater Than (>): True), destEndpoint=(Set Variable: In)",
  5879. "Components": {
  5880. "Component_[6203674095643582910]": {
  5881. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5882. "Id": 6203674095643582910,
  5883. "sourceEndpoint": {
  5884. "nodeId": {
  5885. "id": 96145529564259
  5886. },
  5887. "slotId": {
  5888. "m_id": "{FBFBB859-D01E-425B-99F3-CCCB98A592BF}"
  5889. }
  5890. },
  5891. "targetEndpoint": {
  5892. "nodeId": {
  5893. "id": 96098284924003
  5894. },
  5895. "slotId": {
  5896. "m_id": "{945DAAF3-30E9-4A53-A22F-5C93338CBA6E}"
  5897. }
  5898. }
  5899. }
  5900. }
  5901. },
  5902. {
  5903. "Id": {
  5904. "id": 96355982961763
  5905. },
  5906. "Name": "srcEndpoint=(GetWorldTranslation: Out), destEndpoint=(Get Variable: In)",
  5907. "Components": {
  5908. "Component_[13978314399655551480]": {
  5909. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5910. "Id": 13978314399655551480,
  5911. "sourceEndpoint": {
  5912. "nodeId": {
  5913. "id": 96179889302627
  5914. },
  5915. "slotId": {
  5916. "m_id": "{3B12B534-F3A4-4345-8316-624F6BB70500}"
  5917. }
  5918. },
  5919. "targetEndpoint": {
  5920. "nodeId": {
  5921. "id": 96055335251043
  5922. },
  5923. "slotId": {
  5924. "m_id": "{9694EBDC-E053-4D7C-A13C-DDDF60534604}"
  5925. }
  5926. }
  5927. }
  5928. }
  5929. },
  5930. {
  5931. "Id": {
  5932. "id": 96360277929059
  5933. },
  5934. "Name": "srcEndpoint=(For Each: Each), destEndpoint=(Get Variable: In)",
  5935. "Components": {
  5936. "Component_[8082582445022641301]": {
  5937. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5938. "Id": 8082582445022641301,
  5939. "sourceEndpoint": {
  5940. "nodeId": {
  5941. "id": 96093989956707
  5942. },
  5943. "slotId": {
  5944. "m_id": "{2AE5D9C0-EF80-425B-B638-CA841696C639}"
  5945. }
  5946. },
  5947. "targetEndpoint": {
  5948. "nodeId": {
  5949. "id": 96132644662371
  5950. },
  5951. "slotId": {
  5952. "m_id": "{20437EF1-B4EE-4E67-8CAA-2C40893C108F}"
  5953. }
  5954. }
  5955. }
  5956. }
  5957. },
  5958. {
  5959. "Id": {
  5960. "id": 96364572896355
  5961. },
  5962. "Name": "srcEndpoint=(For Each: EntityId), destEndpoint=(SendHealthDelta: Source)",
  5963. "Components": {
  5964. "Component_[13623409625600681696]": {
  5965. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5966. "Id": 13623409625600681696,
  5967. "sourceEndpoint": {
  5968. "nodeId": {
  5969. "id": 96093989956707
  5970. },
  5971. "slotId": {
  5972. "m_id": "{F7CA733F-2FEC-42F2-A297-B6FE88B3F97C}"
  5973. }
  5974. },
  5975. "targetEndpoint": {
  5976. "nodeId": {
  5977. "id": 96085400022115
  5978. },
  5979. "slotId": {
  5980. "m_id": "{826634BA-EA61-4303-905A-B339161B3290}"
  5981. }
  5982. }
  5983. }
  5984. }
  5985. },
  5986. {
  5987. "Id": {
  5988. "id": 96368867863651
  5989. },
  5990. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Subtract (-): In)",
  5991. "Components": {
  5992. "Component_[7175779264265223149]": {
  5993. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5994. "Id": 7175779264265223149,
  5995. "sourceEndpoint": {
  5996. "nodeId": {
  5997. "id": 96132644662371
  5998. },
  5999. "slotId": {
  6000. "m_id": "{3F484021-A395-462B-8993-494BFCB709D8}"
  6001. }
  6002. },
  6003. "targetEndpoint": {
  6004. "nodeId": {
  6005. "id": 96149824531555
  6006. },
  6007. "slotId": {
  6008. "m_id": "{3B2A67B1-E829-4718-BAA5-D967D05024DC}"
  6009. }
  6010. }
  6011. }
  6012. }
  6013. },
  6014. {
  6015. "Id": {
  6016. "id": 96373162830947
  6017. },
  6018. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Subtract (-): Value 1)",
  6019. "Components": {
  6020. "Component_[13291983034613772476]": {
  6021. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6022. "Id": 13291983034613772476,
  6023. "sourceEndpoint": {
  6024. "nodeId": {
  6025. "id": 96132644662371
  6026. },
  6027. "slotId": {
  6028. "m_id": "{CE38269C-DCBC-4B69-82BB-ED46265C189F}"
  6029. }
  6030. },
  6031. "targetEndpoint": {
  6032. "nodeId": {
  6033. "id": 96149824531555
  6034. },
  6035. "slotId": {
  6036. "m_id": "{C26DE57E-38D1-4C23-AE50-A4C4D96386E9}"
  6037. }
  6038. }
  6039. }
  6040. }
  6041. },
  6042. {
  6043. "Id": {
  6044. "id": 96377457798243
  6045. },
  6046. "Name": "srcEndpoint=(Subtract (-): Out), destEndpoint=(SendHealthDelta: In)",
  6047. "Components": {
  6048. "Component_[2936415080084597037]": {
  6049. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6050. "Id": 2936415080084597037,
  6051. "sourceEndpoint": {
  6052. "nodeId": {
  6053. "id": 96149824531555
  6054. },
  6055. "slotId": {
  6056. "m_id": "{9B011A4A-683C-4FB4-9275-2D99F3856EB4}"
  6057. }
  6058. },
  6059. "targetEndpoint": {
  6060. "nodeId": {
  6061. "id": 96085400022115
  6062. },
  6063. "slotId": {
  6064. "m_id": "{2A66DB40-3148-4EF5-A964-A9A96E1CD7CC}"
  6065. }
  6066. }
  6067. }
  6068. }
  6069. },
  6070. {
  6071. "Id": {
  6072. "id": 96381752765539
  6073. },
  6074. "Name": "srcEndpoint=(Subtract (-): Result), destEndpoint=(SendHealthDelta: deltaHealth)",
  6075. "Components": {
  6076. "Component_[7510508210446274316]": {
  6077. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6078. "Id": 7510508210446274316,
  6079. "sourceEndpoint": {
  6080. "nodeId": {
  6081. "id": 96149824531555
  6082. },
  6083. "slotId": {
  6084. "m_id": "{BFC7CDF9-3492-4F91-BB15-BD2F322ECAA6}"
  6085. }
  6086. },
  6087. "targetEndpoint": {
  6088. "nodeId": {
  6089. "id": 96085400022115
  6090. },
  6091. "slotId": {
  6092. "m_id": "{58F991AE-DB95-4113-8450-837E0334156A}"
  6093. }
  6094. }
  6095. }
  6096. }
  6097. },
  6098. {
  6099. "Id": {
  6100. "id": 96386047732835
  6101. },
  6102. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(GetWorldTranslation: In)",
  6103. "Components": {
  6104. "Component_[7122466128899486485]": {
  6105. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6106. "Id": 7122466128899486485,
  6107. "sourceEndpoint": {
  6108. "nodeId": {
  6109. "id": 96184184269923
  6110. },
  6111. "slotId": {
  6112. "m_id": "{DFD59E82-3AD7-4237-910F-7B5B95B7B8DB}"
  6113. }
  6114. },
  6115. "targetEndpoint": {
  6116. "nodeId": {
  6117. "id": 96179889302627
  6118. },
  6119. "slotId": {
  6120. "m_id": "{52524396-575E-40FC-92F4-42997E414A6A}"
  6121. }
  6122. }
  6123. }
  6124. }
  6125. },
  6126. {
  6127. "Id": {
  6128. "id": 96390342700131
  6129. },
  6130. "Name": "srcEndpoint=(IfMultiplayerAgentType: If DedicatedServer Type), destEndpoint=(TimeDelay: Start)",
  6131. "Components": {
  6132. "Component_[13178362915439625379]": {
  6133. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6134. "Id": 13178362915439625379,
  6135. "sourceEndpoint": {
  6136. "nodeId": {
  6137. "id": 96192774204515
  6138. },
  6139. "slotId": {
  6140. "m_id": "{9F4065C8-AB6E-4A09-AC5C-DAD972C3555F}"
  6141. }
  6142. },
  6143. "targetEndpoint": {
  6144. "nodeId": {
  6145. "id": 96184184269923
  6146. },
  6147. "slotId": {
  6148. "m_id": "{81F44DC0-E223-4510-8FCE-C906980B95EC}"
  6149. }
  6150. }
  6151. }
  6152. }
  6153. },
  6154. {
  6155. "Id": {
  6156. "id": 96394637667427
  6157. },
  6158. "Name": "srcEndpoint=(IfMultiplayerAgentType: If ClientServer Type), destEndpoint=(TimeDelay: Start)",
  6159. "Components": {
  6160. "Component_[6336201788782976372]": {
  6161. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6162. "Id": 6336201788782976372,
  6163. "sourceEndpoint": {
  6164. "nodeId": {
  6165. "id": 96192774204515
  6166. },
  6167. "slotId": {
  6168. "m_id": "{E0D24ABA-56FB-488A-8C3D-A6DFC4DD5814}"
  6169. }
  6170. },
  6171. "targetEndpoint": {
  6172. "nodeId": {
  6173. "id": 96184184269923
  6174. },
  6175. "slotId": {
  6176. "m_id": "{81F44DC0-E223-4510-8FCE-C906980B95EC}"
  6177. }
  6178. }
  6179. }
  6180. }
  6181. },
  6182. {
  6183. "Id": {
  6184. "id": 96398932634723
  6185. },
  6186. "Name": "srcEndpoint=(Restart: Out), destEndpoint=(TimeDelay: Start)",
  6187. "Components": {
  6188. "Component_[17599072886696092429]": {
  6189. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6190. "Id": 17599072886696092429,
  6191. "sourceEndpoint": {
  6192. "nodeId": {
  6193. "id": 96136939629667
  6194. },
  6195. "slotId": {
  6196. "m_id": "{4ACC1BB3-4876-4961-839E-76D1A16ED9B1}"
  6197. }
  6198. },
  6199. "targetEndpoint": {
  6200. "nodeId": {
  6201. "id": 96188479237219
  6202. },
  6203. "slotId": {
  6204. "m_id": "{55A8F169-29BB-44FA-A449-96A8CAB4C607}"
  6205. }
  6206. }
  6207. }
  6208. }
  6209. },
  6210. {
  6211. "Id": {
  6212. "id": 96403227602019
  6213. },
  6214. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(GetRenderSceneIdByName: In)",
  6215. "Components": {
  6216. "Component_[7083084457820755759]": {
  6217. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6218. "Id": 7083084457820755759,
  6219. "sourceEndpoint": {
  6220. "nodeId": {
  6221. "id": 96188479237219
  6222. },
  6223. "slotId": {
  6224. "m_id": "{F5937F73-42FA-4E16-BC35-C57F877C62D1}"
  6225. }
  6226. },
  6227. "targetEndpoint": {
  6228. "nodeId": {
  6229. "id": 96063925185635
  6230. },
  6231. "slotId": {
  6232. "m_id": "{24906429-04AF-4674-AD8F-4C059AAFEC0E}"
  6233. }
  6234. }
  6235. }
  6236. }
  6237. },
  6238. {
  6239. "Id": {
  6240. "id": 96407522569315
  6241. },
  6242. "Name": "srcEndpoint=(GetRenderSceneIdByName: Out), destEndpoint=(Get Variable: In)",
  6243. "Components": {
  6244. "Component_[11107871310257551858]": {
  6245. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6246. "Id": 11107871310257551858,
  6247. "sourceEndpoint": {
  6248. "nodeId": {
  6249. "id": 96063925185635
  6250. },
  6251. "slotId": {
  6252. "m_id": "{51A62B12-7E10-44D3-8329-E8EC1BA88994}"
  6253. }
  6254. },
  6255. "targetEndpoint": {
  6256. "nodeId": {
  6257. "id": 96119759760483
  6258. },
  6259. "slotId": {
  6260. "m_id": "{30263768-3CA6-4656-A061-9D68B54A53D7}"
  6261. }
  6262. }
  6263. }
  6264. }
  6265. },
  6266. {
  6267. "Id": {
  6268. "id": 96411817536611
  6269. },
  6270. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(GetWorldTM: In)",
  6271. "Components": {
  6272. "Component_[8343888937682323462]": {
  6273. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6274. "Id": 8343888937682323462,
  6275. "sourceEndpoint": {
  6276. "nodeId": {
  6277. "id": 96119759760483
  6278. },
  6279. "slotId": {
  6280. "m_id": "{69A06D5E-6477-4CDB-A19F-98B832A49F44}"
  6281. }
  6282. },
  6283. "targetEndpoint": {
  6284. "nodeId": {
  6285. "id": 96124054727779
  6286. },
  6287. "slotId": {
  6288. "m_id": "{6EFE098C-E769-4915-A01E-9AF7162482C5}"
  6289. }
  6290. }
  6291. }
  6292. }
  6293. },
  6294. {
  6295. "Id": {
  6296. "id": 96416112503907
  6297. },
  6298. "Name": "srcEndpoint=(GetWorldTM: Out), destEndpoint=(SpawnDecal: In)",
  6299. "Components": {
  6300. "Component_[16595642200122138992]": {
  6301. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6302. "Id": 16595642200122138992,
  6303. "sourceEndpoint": {
  6304. "nodeId": {
  6305. "id": 96124054727779
  6306. },
  6307. "slotId": {
  6308. "m_id": "{FB15926E-DFC5-48CF-900D-62CA02429CA5}"
  6309. }
  6310. },
  6311. "targetEndpoint": {
  6312. "nodeId": {
  6313. "id": 96072515120227
  6314. },
  6315. "slotId": {
  6316. "m_id": "{2BE5BE1F-344E-46C4-98E7-0EEDBCB52134}"
  6317. }
  6318. }
  6319. }
  6320. }
  6321. },
  6322. {
  6323. "Id": {
  6324. "id": 96420407471203
  6325. },
  6326. "Name": "srcEndpoint=(GetWorldTM: Transform), destEndpoint=(SpawnDecal: Transform: 1)",
  6327. "Components": {
  6328. "Component_[17655568693828546326]": {
  6329. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6330. "Id": 17655568693828546326,
  6331. "sourceEndpoint": {
  6332. "nodeId": {
  6333. "id": 96124054727779
  6334. },
  6335. "slotId": {
  6336. "m_id": "{8D79AC78-B808-4E77-A8BE-571635627C25}"
  6337. }
  6338. },
  6339. "targetEndpoint": {
  6340. "nodeId": {
  6341. "id": 96072515120227
  6342. },
  6343. "slotId": {
  6344. "m_id": "{99DA4AF9-0E5C-4F89-86A4-EBDCF4DD2183}"
  6345. }
  6346. }
  6347. }
  6348. }
  6349. },
  6350. {
  6351. "Id": {
  6352. "id": 96424702438499
  6353. },
  6354. "Name": "srcEndpoint=(Get Variable: SpawnDecalConfig), destEndpoint=(SpawnDecal: SpawnDecalConfig: 2)",
  6355. "Components": {
  6356. "Component_[16897753387592284878]": {
  6357. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6358. "Id": 16897753387592284878,
  6359. "sourceEndpoint": {
  6360. "nodeId": {
  6361. "id": 96119759760483
  6362. },
  6363. "slotId": {
  6364. "m_id": "{42AD5967-38D6-4F71-83B1-01064D60B0E1}"
  6365. }
  6366. },
  6367. "targetEndpoint": {
  6368. "nodeId": {
  6369. "id": 96072515120227
  6370. },
  6371. "slotId": {
  6372. "m_id": "{1A9B2127-A517-471E-A9E5-265FBCA519A1}"
  6373. }
  6374. }
  6375. }
  6376. }
  6377. },
  6378. {
  6379. "Id": {
  6380. "id": 96428997405795
  6381. },
  6382. "Name": "srcEndpoint=(GetRenderSceneIdByName: Uuid), destEndpoint=(SpawnDecal: Uuid: 0)",
  6383. "Components": {
  6384. "Component_[18200720317962106136]": {
  6385. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6386. "Id": 18200720317962106136,
  6387. "sourceEndpoint": {
  6388. "nodeId": {
  6389. "id": 96063925185635
  6390. },
  6391. "slotId": {
  6392. "m_id": "{C93D559F-BC84-446A-AD0F-A29EC77DD894}"
  6393. }
  6394. },
  6395. "targetEndpoint": {
  6396. "nodeId": {
  6397. "id": 96072515120227
  6398. },
  6399. "slotId": {
  6400. "m_id": "{DB61774C-D56B-49C9-B35C-33E5A3F2A7A5}"
  6401. }
  6402. }
  6403. }
  6404. }
  6405. },
  6406. {
  6407. "Id": {
  6408. "id": 96433292373091
  6409. },
  6410. "Name": "srcEndpoint=(NetworkHealthComponentTypeId::Getter: Out), destEndpoint=(GatherEntitiesbyComponentSphere: In)",
  6411. "Components": {
  6412. "Component_[17158274068684049730]": {
  6413. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6414. "Id": 17158274068684049730,
  6415. "sourceEndpoint": {
  6416. "nodeId": {
  6417. "id": 96115464793187
  6418. },
  6419. "slotId": {
  6420. "m_id": "{D21B2B42-7EA6-46BC-91DD-C4A4657F9BE6}"
  6421. }
  6422. },
  6423. "targetEndpoint": {
  6424. "nodeId": {
  6425. "id": 96154119498851
  6426. },
  6427. "slotId": {
  6428. "m_id": "{CF2A0398-329B-4A73-8A55-E2A779792D19}"
  6429. }
  6430. }
  6431. }
  6432. }
  6433. },
  6434. {
  6435. "Id": {
  6436. "id": 96437587340387
  6437. },
  6438. "Name": "srcEndpoint=(NetworkHealthComponentTypeId::Getter: Uuid), destEndpoint=(GatherEntitiesbyComponentSphere: ComponentId)",
  6439. "Components": {
  6440. "Component_[8853221410604676761]": {
  6441. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6442. "Id": 8853221410604676761,
  6443. "sourceEndpoint": {
  6444. "nodeId": {
  6445. "id": 96115464793187
  6446. },
  6447. "slotId": {
  6448. "m_id": "{DB1DE106-13B4-40C1-8AC9-FDA1FB47C61E}"
  6449. }
  6450. },
  6451. "targetEndpoint": {
  6452. "nodeId": {
  6453. "id": 96154119498851
  6454. },
  6455. "slotId": {
  6456. "m_id": "{7844882A-9533-4DD9-8B4C-D603A2BE64D0}"
  6457. }
  6458. }
  6459. }
  6460. }
  6461. },
  6462. {
  6463. "Id": {
  6464. "id": 96441882307683
  6465. },
  6466. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(NetworkHealthComponentTypeId::Getter: In)",
  6467. "Components": {
  6468. "Component_[12158945016356031948]": {
  6469. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6470. "Id": 12158945016356031948,
  6471. "sourceEndpoint": {
  6472. "nodeId": {
  6473. "id": 96055335251043
  6474. },
  6475. "slotId": {
  6476. "m_id": "{BC191F77-AE00-4246-866E-65E2C34A52B7}"
  6477. }
  6478. },
  6479. "targetEndpoint": {
  6480. "nodeId": {
  6481. "id": 96115464793187
  6482. },
  6483. "slotId": {
  6484. "m_id": "{285C18A0-4CB7-444D-80AB-A7E66AAB5B07}"
  6485. }
  6486. }
  6487. }
  6488. }
  6489. },
  6490. {
  6491. "Id": {
  6492. "id": 96446177274979
  6493. },
  6494. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(GatherEntitiesbyComponentSphere: Radius)",
  6495. "Components": {
  6496. "Component_[7997393725609151316]": {
  6497. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6498. "Id": 7997393725609151316,
  6499. "sourceEndpoint": {
  6500. "nodeId": {
  6501. "id": 96055335251043
  6502. },
  6503. "slotId": {
  6504. "m_id": "{0FBC7B23-8910-4810-BB0B-322FDF13B678}"
  6505. }
  6506. },
  6507. "targetEndpoint": {
  6508. "nodeId": {
  6509. "id": 96154119498851
  6510. },
  6511. "slotId": {
  6512. "m_id": "{CA21A757-F63C-4A18-ADC6-735DC9A77594}"
  6513. }
  6514. }
  6515. }
  6516. }
  6517. },
  6518. {
  6519. "Id": {
  6520. "id": 96450472242275
  6521. },
  6522. "Name": "srcEndpoint=(GetWorldTranslation: Vector3), destEndpoint=(GatherEntitiesbyComponentSphere: Position)",
  6523. "Components": {
  6524. "Component_[7909373484904155225]": {
  6525. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6526. "Id": 7909373484904155225,
  6527. "sourceEndpoint": {
  6528. "nodeId": {
  6529. "id": 96179889302627
  6530. },
  6531. "slotId": {
  6532. "m_id": "{E886274D-9298-449E-A73E-65C41A331710}"
  6533. }
  6534. },
  6535. "targetEndpoint": {
  6536. "nodeId": {
  6537. "id": 96154119498851
  6538. },
  6539. "slotId": {
  6540. "m_id": "{A57C112E-AA49-43F6-BD93-ECD4EA4CF602}"
  6541. }
  6542. }
  6543. }
  6544. }
  6545. },
  6546. {
  6547. "Id": {
  6548. "id": 96454767209571
  6549. },
  6550. "Name": "srcEndpoint=(GatherEntitiesbyComponentSphere: On In), destEndpoint=(For Each: In)",
  6551. "Components": {
  6552. "Component_[7346047842312635108]": {
  6553. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6554. "Id": 7346047842312635108,
  6555. "sourceEndpoint": {
  6556. "nodeId": {
  6557. "id": 96154119498851
  6558. },
  6559. "slotId": {
  6560. "m_id": "{9354E84E-57AD-4964-AF99-CE86A259602E}"
  6561. }
  6562. },
  6563. "targetEndpoint": {
  6564. "nodeId": {
  6565. "id": 96093989956707
  6566. },
  6567. "slotId": {
  6568. "m_id": "{EB9B11B1-39CA-4277-BF41-DFD255249B86}"
  6569. }
  6570. }
  6571. }
  6572. }
  6573. },
  6574. {
  6575. "Id": {
  6576. "id": 96459062176867
  6577. },
  6578. "Name": "srcEndpoint=(GatherEntitiesbyComponentSphere: Entities), destEndpoint=(For Each: Source)",
  6579. "Components": {
  6580. "Component_[10656391282603553921]": {
  6581. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6582. "Id": 10656391282603553921,
  6583. "sourceEndpoint": {
  6584. "nodeId": {
  6585. "id": 96154119498851
  6586. },
  6587. "slotId": {
  6588. "m_id": "{7E2ABB2A-EC1E-4F92-8EBA-F6F85DBBD610}"
  6589. }
  6590. },
  6591. "targetEndpoint": {
  6592. "nodeId": {
  6593. "id": 96093989956707
  6594. },
  6595. "slotId": {
  6596. "m_id": "{0CDB3DDC-0074-4488-B713-2548D6D8C60A}"
  6597. }
  6598. }
  6599. }
  6600. }
  6601. }
  6602. ]
  6603. },
  6604. "versionData": {
  6605. "_grammarVersion": 1,
  6606. "_runtimeVersion": 1,
  6607. "_fileVersion": 1
  6608. },
  6609. "m_variableCounter": 6,
  6610. "GraphCanvasData": [
  6611. {
  6612. "Key": {
  6613. "id": 96042450349155
  6614. },
  6615. "Value": {
  6616. "ComponentData": {
  6617. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  6618. "$type": "SceneComponentSaveData",
  6619. "Constructs": [
  6620. {
  6621. "Type": 3,
  6622. "DataContainer": {
  6623. "ComponentData": {
  6624. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6625. "$type": "NodeSaveData"
  6626. },
  6627. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6628. "$type": "CommentNodeTextSaveData",
  6629. "Comment": "Detect Explosion",
  6630. "BackgroundColor": [
  6631. 0.9800000190734863,
  6632. 0.9700000286102295,
  6633. 0.6499999761581421
  6634. ],
  6635. "FontSettings": {
  6636. "PixelSize": 16
  6637. }
  6638. },
  6639. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  6640. "$type": "NodeGroupFrameComponentSaveData",
  6641. "DisplayHeight": 523.0,
  6642. "DisplayWidth": 780.0,
  6643. "PersistentGroupedId": [
  6644. "{6E3C9BA2-EADB-4C71-8AA4-CC53CB4FAB33}",
  6645. "{2B9EBF44-553F-414D-A3CF-F6B6A409E36B}",
  6646. "{5F5097FB-0115-4737-BB9F-F2B80DFB16CB}",
  6647. "{9521285E-DB86-41D3-8DC6-701E7C9D1A4A}",
  6648. "{2298D09C-FB6F-49E2-A0FA-45D84357BD16}"
  6649. ]
  6650. },
  6651. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6652. "$type": "GeometrySaveData",
  6653. "Position": [
  6654. 1600.0,
  6655. -540.0
  6656. ]
  6657. },
  6658. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6659. "$type": "StylingComponentSaveData"
  6660. },
  6661. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6662. "$type": "PersistentIdComponentSaveData",
  6663. "PersistentId": "{F9009D09-7245-4983-9D17-02FBBABAC9D2}"
  6664. }
  6665. }
  6666. }
  6667. },
  6668. {
  6669. "Type": 1,
  6670. "DataContainer": {
  6671. "ComponentData": {
  6672. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6673. "$type": "NodeSaveData"
  6674. },
  6675. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6676. "$type": "CommentNodeTextSaveData",
  6677. "Comment": "Divides round time remaining by total round time, so starts at 1 and degrades to zero over the course of the match",
  6678. "BackgroundColor": [
  6679. 0.9800000190734863,
  6680. 0.9700000286102295,
  6681. 0.6499999761581421
  6682. ],
  6683. "FontSettings": {
  6684. "PixelSize": 16
  6685. }
  6686. },
  6687. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6688. "$type": "GeometrySaveData",
  6689. "Position": [
  6690. 40.0,
  6691. -720.0
  6692. ]
  6693. },
  6694. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6695. "$type": "StylingComponentSaveData"
  6696. },
  6697. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6698. "$type": "PersistentIdComponentSaveData",
  6699. "PersistentId": "{CF46CDA7-5437-4A79-AAD0-40B1648BFAB8}"
  6700. }
  6701. }
  6702. }
  6703. },
  6704. {
  6705. "Type": 3,
  6706. "DataContainer": {
  6707. "ComponentData": {
  6708. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6709. "$type": "NodeSaveData"
  6710. },
  6711. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6712. "$type": "CommentNodeTextSaveData",
  6713. "Comment": "Manage Explosion Lifetime",
  6714. "BackgroundColor": [
  6715. 0.9800000190734863,
  6716. 0.9700000286102295,
  6717. 0.6499999761581421
  6718. ],
  6719. "FontSettings": {
  6720. "PixelSize": 16
  6721. }
  6722. },
  6723. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  6724. "$type": "NodeGroupFrameComponentSaveData",
  6725. "DisplayHeight": 483.0,
  6726. "DisplayWidth": 1832.0,
  6727. "PersistentGroupedId": [
  6728. "{C7B00191-EC4B-48E1-9FA6-6489D6F854BA}",
  6729. "{FF431501-A9CE-4930-B038-30649C1D9417}",
  6730. "{7A81309D-4CFF-4582-8C63-CDC64C3261FD}",
  6731. "{623A2ED6-E0CA-4CEE-A07D-144BF3AE7364}",
  6732. "{B6BE430A-F664-4EA7-8855-A5F0E0085B3B}",
  6733. "{CF46CDA7-5437-4A79-AAD0-40B1648BFAB8}",
  6734. "{4CC57266-2B2F-4014-A827-C4D76035061A}",
  6735. "{59667D9C-AADF-4089-87F7-FF671C0AB52C}",
  6736. "{FC6CC91A-BC83-4E64-A33A-97BA107F194E}",
  6737. "{A8BCF9A6-5EB3-4619-9E98-F78FE1325801}"
  6738. ]
  6739. },
  6740. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6741. "$type": "GeometrySaveData",
  6742. "Position": [
  6743. -260.0,
  6744. -780.0
  6745. ]
  6746. },
  6747. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6748. "$type": "StylingComponentSaveData"
  6749. },
  6750. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6751. "$type": "PersistentIdComponentSaveData",
  6752. "PersistentId": "{3DBBE661-9AF9-4940-A5F8-BCE81955093B}"
  6753. }
  6754. }
  6755. }
  6756. },
  6757. {
  6758. "Type": 1,
  6759. "DataContainer": {
  6760. "ComponentData": {
  6761. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6762. "$type": "NodeSaveData"
  6763. },
  6764. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6765. "$type": "CommentNodeTextSaveData",
  6766. "Comment": "Detect when lifetime wraps, that triggers an explosion",
  6767. "BackgroundColor": [
  6768. 0.9800000190734863,
  6769. 0.9700000286102295,
  6770. 0.6499999761581421
  6771. ],
  6772. "FontSettings": {
  6773. "PixelSize": 16
  6774. }
  6775. },
  6776. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6777. "$type": "GeometrySaveData",
  6778. "Position": [
  6779. 1780.0,
  6780. -480.0
  6781. ]
  6782. },
  6783. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6784. "$type": "StylingComponentSaveData"
  6785. },
  6786. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6787. "$type": "PersistentIdComponentSaveData",
  6788. "PersistentId": "{6E3C9BA2-EADB-4C71-8AA4-CC53CB4FAB33}"
  6789. }
  6790. }
  6791. }
  6792. },
  6793. {
  6794. "Type": 3,
  6795. "DataContainer": {
  6796. "ComponentData": {
  6797. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6798. "$type": "NodeSaveData"
  6799. },
  6800. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6801. "$type": "CommentNodeTextSaveData",
  6802. "Comment": "Apply Damage to Players",
  6803. "BackgroundColor": [
  6804. 0.9137254953384399,
  6805. 0.6627451181411743,
  6806. 0.2666666805744171
  6807. ],
  6808. "FontSettings": {
  6809. "PixelSize": 16
  6810. }
  6811. },
  6812. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  6813. "$type": "NodeGroupFrameComponentSaveData",
  6814. "DisplayHeight": 340.0,
  6815. "DisplayWidth": 2860.0,
  6816. "PersistentGroupedId": [
  6817. "{AF65F10A-303E-41B1-9F80-D33D8DE4983A}",
  6818. "{21EBAECA-F098-4351-AF40-A6C27CA3C969}",
  6819. "{E78310D6-B742-4BB2-AAD1-A9B2F8AA67DC}",
  6820. "{AE5956D5-B608-4F81-92D4-17718D1B3DAA}",
  6821. "{301910B6-893E-4EE3-848F-220D41D5B090}",
  6822. "{EB97E6EA-1F3E-4DE5-BAC2-F969E47A12A9}",
  6823. "{05F09E39-C1AF-40CE-8D26-9EE39A529985}",
  6824. "{0C80C305-8AE0-497F-9280-E2240DAFD22E}",
  6825. "{42019F2A-39DA-4BE2-8582-2961061E8F73}"
  6826. ]
  6827. },
  6828. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6829. "$type": "GeometrySaveData",
  6830. "Position": [
  6831. 2840.0,
  6832. -180.0
  6833. ]
  6834. },
  6835. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6836. "$type": "StylingComponentSaveData"
  6837. },
  6838. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6839. "$type": "PersistentIdComponentSaveData",
  6840. "PersistentId": "{CEBE614C-0870-4F60-8873-58A8E5362E9E}"
  6841. }
  6842. }
  6843. }
  6844. },
  6845. {
  6846. "Type": 1,
  6847. "DataContainer": {
  6848. "ComponentData": {
  6849. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6850. "$type": "NodeSaveData"
  6851. },
  6852. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6853. "$type": "CommentNodeTextSaveData",
  6854. "Comment": "Scales from 4xExplodeTimes to 0",
  6855. "BackgroundColor": [
  6856. 0.9800000190734863,
  6857. 0.9700000286102295,
  6858. 0.6499999761581421
  6859. ],
  6860. "FontSettings": {
  6861. "PixelSize": 16
  6862. }
  6863. },
  6864. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6865. "$type": "GeometrySaveData",
  6866. "Position": [
  6867. 960.0,
  6868. -680.0
  6869. ]
  6870. },
  6871. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6872. "$type": "StylingComponentSaveData"
  6873. },
  6874. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6875. "$type": "PersistentIdComponentSaveData",
  6876. "PersistentId": "{FC6CC91A-BC83-4E64-A33A-97BA107F194E}"
  6877. }
  6878. }
  6879. }
  6880. },
  6881. {
  6882. "Type": 3,
  6883. "DataContainer": {
  6884. "ComponentData": {
  6885. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6886. "$type": "NodeSaveData"
  6887. },
  6888. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6889. "$type": "CommentNodeTextSaveData",
  6890. "Comment": "Play Explosion",
  6891. "BackgroundColor": [
  6892. 0.46666666865348816,
  6893. 0.8117647171020508,
  6894. 0.658823549747467
  6895. ],
  6896. "FontSettings": {
  6897. "PixelSize": 16
  6898. }
  6899. },
  6900. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  6901. "$type": "NodeGroupFrameComponentSaveData",
  6902. "DisplayHeight": 500.0,
  6903. "DisplayWidth": 2560.0,
  6904. "PersistentGroupedId": [
  6905. "{3DD5100B-1233-4302-8F8A-F3547F2AC90D}",
  6906. "{F240C86D-E961-4175-9FCE-F176D724F886}",
  6907. "{6BC46CA3-7795-4CD4-8820-DB1367EC1A6C}",
  6908. "{220C00BC-6F1F-44F9-BF0F-C73367191725}",
  6909. "{4FA61549-F0E4-4166-9172-31B59CFB44CE}",
  6910. "{FC53001E-EAC0-40BE-80B6-AAB1C8FF015D}",
  6911. "{A7431116-29C2-4270-B449-BAFAED7C5C37}",
  6912. "{F8BF4548-C827-4C0E-8F87-F399F3100EB0}"
  6913. ]
  6914. },
  6915. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6916. "$type": "GeometrySaveData",
  6917. "Position": [
  6918. 2840.0,
  6919. -720.0
  6920. ]
  6921. },
  6922. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6923. "$type": "StylingComponentSaveData"
  6924. },
  6925. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6926. "$type": "PersistentIdComponentSaveData",
  6927. "PersistentId": "{5E66BB00-4E95-4A9A-9360-C1A765DD1D7B}"
  6928. }
  6929. }
  6930. }
  6931. },
  6932. {
  6933. "Type": 3,
  6934. "DataContainer": {
  6935. "ComponentData": {
  6936. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6937. "$type": "NodeSaveData"
  6938. },
  6939. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6940. "$type": "CommentNodeTextSaveData",
  6941. "Comment": "Update Idle Effects",
  6942. "BackgroundColor": [
  6943. 0.46666666865348816,
  6944. 0.8117647171020508,
  6945. 0.658823549747467
  6946. ],
  6947. "FontSettings": {
  6948. "PixelSize": 16
  6949. }
  6950. },
  6951. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  6952. "$type": "NodeGroupFrameComponentSaveData",
  6953. "DisplayHeight": 283.0,
  6954. "DisplayWidth": 1200.0,
  6955. "PersistentGroupedId": [
  6956. "{52F1A63B-0E5A-4457-B498-B1B84965055B}",
  6957. "{48FAFE51-E62A-4F5E-8D69-749A93AB3E99}",
  6958. "{44C55FFA-6850-416B-91E4-A79D892D4922}"
  6959. ]
  6960. },
  6961. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6962. "$type": "GeometrySaveData",
  6963. "Position": [
  6964. 1600.0,
  6965. -920.0
  6966. ]
  6967. },
  6968. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6969. "$type": "StylingComponentSaveData"
  6970. },
  6971. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6972. "$type": "PersistentIdComponentSaveData",
  6973. "PersistentId": "{2DBBB59E-43A0-4842-952A-D9928769213A}"
  6974. }
  6975. }
  6976. }
  6977. },
  6978. {
  6979. "Type": 1,
  6980. "DataContainer": {
  6981. "ComponentData": {
  6982. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6983. "$type": "NodeSaveData"
  6984. },
  6985. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  6986. "$type": "CommentNodeTextSaveData",
  6987. "Comment": "Mod 4, so value goes from 4 to 0 a total of ExplodeTimes over the course of the match",
  6988. "BackgroundColor": [
  6989. 0.9800000190734863,
  6990. 0.9700000286102295,
  6991. 0.6499999761581421
  6992. ],
  6993. "FontSettings": {
  6994. "PixelSize": 16
  6995. }
  6996. },
  6997. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6998. "$type": "GeometrySaveData",
  6999. "Position": [
  7000. 1240.0,
  7001. -720.0
  7002. ]
  7003. },
  7004. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7005. "$type": "StylingComponentSaveData"
  7006. },
  7007. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7008. "$type": "PersistentIdComponentSaveData",
  7009. "PersistentId": "{7A81309D-4CFF-4582-8C63-CDC64C3261FD}"
  7010. }
  7011. }
  7012. }
  7013. }
  7014. ],
  7015. "ViewParams": {
  7016. "Scale": 0.34757062746676565,
  7017. "AnchorX": -1055.9005126953125,
  7018. "AnchorY": -1743.530517578125
  7019. }
  7020. }
  7021. }
  7022. }
  7023. },
  7024. {
  7025. "Key": {
  7026. "id": 96046745316451
  7027. },
  7028. "Value": {
  7029. "ComponentData": {
  7030. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7031. "$type": "NodeSaveData"
  7032. },
  7033. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7034. "$type": "GeneralNodeTitleComponentSaveData",
  7035. "PaletteOverride": "MethodNodeTitlePalette"
  7036. },
  7037. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7038. "$type": "GeometrySaveData",
  7039. "Position": [
  7040. -240.0,
  7041. -620.0
  7042. ]
  7043. },
  7044. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7045. "$type": "StylingComponentSaveData",
  7046. "SubStyle": ".method"
  7047. },
  7048. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7049. "$type": "PersistentIdComponentSaveData",
  7050. "PersistentId": "{59667D9C-AADF-4089-87F7-FF671C0AB52C}"
  7051. }
  7052. }
  7053. }
  7054. },
  7055. {
  7056. "Key": {
  7057. "id": 96051040283747
  7058. },
  7059. "Value": {
  7060. "ComponentData": {
  7061. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7062. "$type": "NodeSaveData"
  7063. },
  7064. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7065. "$type": "GeneralNodeTitleComponentSaveData",
  7066. "PaletteOverride": "MethodNodeTitlePalette"
  7067. },
  7068. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7069. "$type": "GeometrySaveData",
  7070. "Position": [
  7071. 2360.0,
  7072. -860.0
  7073. ]
  7074. },
  7075. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7076. "$type": "StylingComponentSaveData",
  7077. "SubStyle": ".method"
  7078. },
  7079. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7080. "$type": "PersistentIdComponentSaveData",
  7081. "PersistentId": "{52F1A63B-0E5A-4457-B498-B1B84965055B}"
  7082. }
  7083. }
  7084. }
  7085. },
  7086. {
  7087. "Key": {
  7088. "id": 96055335251043
  7089. },
  7090. "Value": {
  7091. "ComponentData": {
  7092. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7093. "$type": "NodeSaveData"
  7094. },
  7095. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7096. "$type": "GeneralNodeTitleComponentSaveData",
  7097. "PaletteOverride": "GetVariableNodeTitlePalette"
  7098. },
  7099. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7100. "$type": "GeometrySaveData",
  7101. "Position": [
  7102. 3600.0,
  7103. -120.0
  7104. ]
  7105. },
  7106. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7107. "$type": "StylingComponentSaveData",
  7108. "SubStyle": ".getVariable"
  7109. },
  7110. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7111. "$type": "PersistentIdComponentSaveData",
  7112. "PersistentId": "{05F09E39-C1AF-40CE-8D26-9EE39A529985}"
  7113. }
  7114. }
  7115. }
  7116. },
  7117. {
  7118. "Key": {
  7119. "id": 96059630218339
  7120. },
  7121. "Value": {
  7122. "ComponentData": {
  7123. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7124. "$type": "NodeSaveData"
  7125. },
  7126. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7127. "$type": "GeneralNodeTitleComponentSaveData",
  7128. "PaletteOverride": "GetVariableNodeTitlePalette"
  7129. },
  7130. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7131. "$type": "GeometrySaveData",
  7132. "Position": [
  7133. 2860.0,
  7134. -660.0
  7135. ]
  7136. },
  7137. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7138. "$type": "StylingComponentSaveData",
  7139. "SubStyle": ".getVariable"
  7140. },
  7141. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7142. "$type": "PersistentIdComponentSaveData",
  7143. "PersistentId": "{F240C86D-E961-4175-9FCE-F176D724F886}"
  7144. }
  7145. }
  7146. }
  7147. },
  7148. {
  7149. "Key": {
  7150. "id": 96063925185635
  7151. },
  7152. "Value": {
  7153. "ComponentData": {
  7154. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7155. "$type": "NodeSaveData"
  7156. },
  7157. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7158. "$type": "GeneralNodeTitleComponentSaveData",
  7159. "PaletteOverride": "MethodNodeTitlePalette"
  7160. },
  7161. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7162. "$type": "GeometrySaveData",
  7163. "Position": [
  7164. 3900.0,
  7165. -660.0
  7166. ]
  7167. },
  7168. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7169. "$type": "StylingComponentSaveData",
  7170. "SubStyle": ".method"
  7171. },
  7172. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7173. "$type": "PersistentIdComponentSaveData",
  7174. "PersistentId": "{220C00BC-6F1F-44F9-BF0F-C73367191725}"
  7175. }
  7176. }
  7177. }
  7178. },
  7179. {
  7180. "Key": {
  7181. "id": 96068220152931
  7182. },
  7183. "Value": {
  7184. "ComponentData": {
  7185. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7186. "$type": "NodeSaveData"
  7187. },
  7188. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7189. "$type": "GeneralNodeTitleComponentSaveData",
  7190. "PaletteOverride": "GetVariableNodeTitlePalette"
  7191. },
  7192. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7193. "$type": "GeometrySaveData",
  7194. "Position": [
  7195. 360.0,
  7196. -620.0
  7197. ]
  7198. },
  7199. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7200. "$type": "StylingComponentSaveData",
  7201. "SubStyle": ".getVariable"
  7202. },
  7203. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7204. "$type": "PersistentIdComponentSaveData",
  7205. "PersistentId": "{623A2ED6-E0CA-4CEE-A07D-144BF3AE7364}"
  7206. }
  7207. }
  7208. }
  7209. },
  7210. {
  7211. "Key": {
  7212. "id": 96072515120227
  7213. },
  7214. "Value": {
  7215. "ComponentData": {
  7216. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7217. "$type": "NodeSaveData"
  7218. },
  7219. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7220. "$type": "GeneralNodeTitleComponentSaveData",
  7221. "PaletteOverride": "MethodNodeTitlePalette"
  7222. },
  7223. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7224. "$type": "GeometrySaveData",
  7225. "Position": [
  7226. 5100.0,
  7227. -660.0
  7228. ]
  7229. },
  7230. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7231. "$type": "StylingComponentSaveData",
  7232. "SubStyle": ".method"
  7233. },
  7234. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7235. "$type": "PersistentIdComponentSaveData",
  7236. "PersistentId": "{F8BF4548-C827-4C0E-8F87-F399F3100EB0}"
  7237. }
  7238. }
  7239. }
  7240. },
  7241. {
  7242. "Key": {
  7243. "id": 96076810087523
  7244. },
  7245. "Value": {
  7246. "ComponentData": {
  7247. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7248. "$type": "NodeSaveData"
  7249. },
  7250. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7251. "$type": "GeneralNodeTitleComponentSaveData",
  7252. "PaletteOverride": "MethodNodeTitlePalette"
  7253. },
  7254. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7255. "$type": "GeometrySaveData",
  7256. "Position": [
  7257. 1920.0,
  7258. -860.0
  7259. ]
  7260. },
  7261. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7262. "$type": "StylingComponentSaveData",
  7263. "SubStyle": ".method"
  7264. },
  7265. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7266. "$type": "PersistentIdComponentSaveData",
  7267. "PersistentId": "{44C55FFA-6850-416B-91E4-A79D892D4922}"
  7268. }
  7269. }
  7270. }
  7271. },
  7272. {
  7273. "Key": {
  7274. "id": 96081105054819
  7275. },
  7276. "Value": {
  7277. "ComponentData": {
  7278. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7279. "$type": "NodeSaveData"
  7280. },
  7281. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7282. "$type": "GeneralNodeTitleComponentSaveData",
  7283. "PaletteOverride": "MathNodeTitlePalette"
  7284. },
  7285. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7286. "$type": "GeometrySaveData",
  7287. "Position": [
  7288. 660.0,
  7289. -620.0
  7290. ]
  7291. },
  7292. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7293. "$type": "StylingComponentSaveData"
  7294. },
  7295. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7296. "$type": "PersistentIdComponentSaveData",
  7297. "PersistentId": "{FF431501-A9CE-4930-B038-30649C1D9417}"
  7298. }
  7299. }
  7300. }
  7301. },
  7302. {
  7303. "Key": {
  7304. "id": 96085400022115
  7305. },
  7306. "Value": {
  7307. "ComponentData": {
  7308. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7309. "$type": "NodeSaveData"
  7310. },
  7311. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7312. "$type": "GeneralNodeTitleComponentSaveData",
  7313. "PaletteOverride": "MethodNodeTitlePalette"
  7314. },
  7315. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7316. "$type": "GeometrySaveData",
  7317. "Position": [
  7318. 5400.0,
  7319. -80.0
  7320. ]
  7321. },
  7322. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7323. "$type": "StylingComponentSaveData",
  7324. "SubStyle": ".method"
  7325. },
  7326. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7327. "$type": "PersistentIdComponentSaveData",
  7328. "PersistentId": "{AF65F10A-303E-41B1-9F80-D33D8DE4983A}"
  7329. }
  7330. }
  7331. }
  7332. },
  7333. {
  7334. "Key": {
  7335. "id": 96089694989411
  7336. },
  7337. "Value": {
  7338. "ComponentData": {
  7339. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7340. "$type": "NodeSaveData"
  7341. },
  7342. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7343. "$type": "GeneralNodeTitleComponentSaveData",
  7344. "PaletteOverride": "SetVariableNodeTitlePalette"
  7345. },
  7346. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7347. "$type": "GeometrySaveData",
  7348. "Position": [
  7349. 1780.0,
  7350. -180.0
  7351. ]
  7352. },
  7353. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7354. "$type": "StylingComponentSaveData",
  7355. "SubStyle": ".setVariable"
  7356. },
  7357. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7358. "$type": "PersistentIdComponentSaveData",
  7359. "PersistentId": "{9521285E-DB86-41D3-8DC6-701E7C9D1A4A}"
  7360. }
  7361. }
  7362. }
  7363. },
  7364. {
  7365. "Key": {
  7366. "id": 96093989956707
  7367. },
  7368. "Value": {
  7369. "ComponentData": {
  7370. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7371. "$type": "NodeSaveData"
  7372. },
  7373. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7374. "$type": "GeneralNodeTitleComponentSaveData",
  7375. "PaletteOverride": "DefaultNodeTitlePalette"
  7376. },
  7377. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7378. "$type": "GeometrySaveData",
  7379. "Position": [
  7380. 4500.0,
  7381. -80.0
  7382. ]
  7383. },
  7384. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7385. "$type": "StylingComponentSaveData"
  7386. },
  7387. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7388. "$type": "PersistentIdComponentSaveData",
  7389. "PersistentId": "{21EBAECA-F098-4351-AF40-A6C27CA3C969}"
  7390. }
  7391. }
  7392. }
  7393. },
  7394. {
  7395. "Key": {
  7396. "id": 96098284924003
  7397. },
  7398. "Value": {
  7399. "ComponentData": {
  7400. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7401. "$type": "NodeSaveData"
  7402. },
  7403. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7404. "$type": "GeneralNodeTitleComponentSaveData",
  7405. "PaletteOverride": "SetVariableNodeTitlePalette"
  7406. },
  7407. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7408. "$type": "GeometrySaveData",
  7409. "Position": [
  7410. 2080.0,
  7411. -400.0
  7412. ]
  7413. },
  7414. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7415. "$type": "StylingComponentSaveData",
  7416. "SubStyle": ".setVariable"
  7417. },
  7418. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7419. "$type": "PersistentIdComponentSaveData",
  7420. "PersistentId": "{2B9EBF44-553F-414D-A3CF-F6B6A409E36B}"
  7421. }
  7422. }
  7423. }
  7424. },
  7425. {
  7426. "Key": {
  7427. "id": 96102579891299
  7428. },
  7429. "Value": {
  7430. "ComponentData": {
  7431. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7432. "$type": "NodeSaveData"
  7433. },
  7434. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7435. "$type": "GeneralNodeTitleComponentSaveData",
  7436. "PaletteOverride": "SetVariableNodeTitlePalette"
  7437. },
  7438. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7439. "$type": "GeometrySaveData",
  7440. "Position": [
  7441. -560.0,
  7442. -300.0
  7443. ]
  7444. },
  7445. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7446. "$type": "StylingComponentSaveData",
  7447. "SubStyle": ".setVariable"
  7448. },
  7449. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7450. "$type": "PersistentIdComponentSaveData",
  7451. "PersistentId": "{23244910-4A1E-4905-A2F4-F4E9D7E1A9F2}"
  7452. }
  7453. }
  7454. }
  7455. },
  7456. {
  7457. "Key": {
  7458. "id": 96106874858595
  7459. },
  7460. "Value": {
  7461. "ComponentData": {
  7462. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7463. "$type": "NodeSaveData"
  7464. },
  7465. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7466. "$type": "GeneralNodeTitleComponentSaveData",
  7467. "PaletteOverride": "MethodNodeTitlePalette"
  7468. },
  7469. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7470. "$type": "GeometrySaveData",
  7471. "Position": [
  7472. 3160.0,
  7473. -460.0
  7474. ]
  7475. },
  7476. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7477. "$type": "StylingComponentSaveData",
  7478. "SubStyle": ".method"
  7479. },
  7480. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7481. "$type": "PersistentIdComponentSaveData",
  7482. "PersistentId": "{3DD5100B-1233-4302-8F8A-F3547F2AC90D}"
  7483. }
  7484. }
  7485. }
  7486. },
  7487. {
  7488. "Key": {
  7489. "id": 96111169825891
  7490. },
  7491. "Value": {
  7492. "ComponentData": {
  7493. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7494. "$type": "NodeSaveData"
  7495. },
  7496. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7497. "$type": "GeneralNodeTitleComponentSaveData",
  7498. "PaletteOverride": "TimeNodeTitlePalette"
  7499. },
  7500. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7501. "$type": "GeometrySaveData",
  7502. "Position": [
  7503. -560.0,
  7504. -620.0
  7505. ]
  7506. },
  7507. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7508. "$type": "StylingComponentSaveData"
  7509. },
  7510. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7511. "$type": "PersistentIdComponentSaveData",
  7512. "PersistentId": "{2AE75BB4-1644-40BA-8996-B519C036B17A}"
  7513. }
  7514. }
  7515. }
  7516. },
  7517. {
  7518. "Key": {
  7519. "id": 96115464793187
  7520. },
  7521. "Value": {
  7522. "ComponentData": {
  7523. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7524. "$type": "NodeSaveData"
  7525. },
  7526. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7527. "$type": "GeneralNodeTitleComponentSaveData",
  7528. "PaletteOverride": "MethodNodeTitlePalette"
  7529. },
  7530. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7531. "$type": "GeometrySaveData",
  7532. "Position": [
  7533. 3900.0,
  7534. -120.0
  7535. ]
  7536. },
  7537. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7538. "$type": "StylingComponentSaveData",
  7539. "SubStyle": ".method"
  7540. },
  7541. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7542. "$type": "PersistentIdComponentSaveData",
  7543. "PersistentId": "{AE5956D5-B608-4F81-92D4-17718D1B3DAA}"
  7544. }
  7545. }
  7546. }
  7547. },
  7548. {
  7549. "Key": {
  7550. "id": 96119759760483
  7551. },
  7552. "Value": {
  7553. "ComponentData": {
  7554. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7555. "$type": "NodeSaveData"
  7556. },
  7557. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7558. "$type": "GeneralNodeTitleComponentSaveData",
  7559. "PaletteOverride": "GetVariableNodeTitlePalette"
  7560. },
  7561. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7562. "$type": "GeometrySaveData",
  7563. "Position": [
  7564. 4340.0,
  7565. -660.0
  7566. ]
  7567. },
  7568. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7569. "$type": "StylingComponentSaveData",
  7570. "SubStyle": ".getVariable"
  7571. },
  7572. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7573. "$type": "PersistentIdComponentSaveData",
  7574. "PersistentId": "{6BC46CA3-7795-4CD4-8820-DB1367EC1A6C}"
  7575. }
  7576. }
  7577. }
  7578. },
  7579. {
  7580. "Key": {
  7581. "id": 96124054727779
  7582. },
  7583. "Value": {
  7584. "ComponentData": {
  7585. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7586. "$type": "NodeSaveData"
  7587. },
  7588. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7589. "$type": "GeneralNodeTitleComponentSaveData",
  7590. "PaletteOverride": "MethodNodeTitlePalette"
  7591. },
  7592. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7593. "$type": "GeometrySaveData",
  7594. "Position": [
  7595. 4640.0,
  7596. -660.0
  7597. ]
  7598. },
  7599. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7600. "$type": "StylingComponentSaveData",
  7601. "SubStyle": ".method"
  7602. },
  7603. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7604. "$type": "PersistentIdComponentSaveData",
  7605. "PersistentId": "{4FA61549-F0E4-4166-9172-31B59CFB44CE}"
  7606. }
  7607. }
  7608. }
  7609. },
  7610. {
  7611. "Key": {
  7612. "id": 96128349695075
  7613. },
  7614. "Value": {
  7615. "ComponentData": {
  7616. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7617. "$type": "NodeSaveData"
  7618. },
  7619. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7620. "$type": "GeneralNodeTitleComponentSaveData",
  7621. "PaletteOverride": "MethodNodeTitlePalette"
  7622. },
  7623. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7624. "$type": "GeometrySaveData",
  7625. "Position": [
  7626. -240.0,
  7627. -460.0
  7628. ]
  7629. },
  7630. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7631. "$type": "StylingComponentSaveData",
  7632. "SubStyle": ".method"
  7633. },
  7634. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7635. "$type": "PersistentIdComponentSaveData",
  7636. "PersistentId": "{4CC57266-2B2F-4014-A827-C4D76035061A}"
  7637. }
  7638. }
  7639. }
  7640. },
  7641. {
  7642. "Key": {
  7643. "id": 96132644662371
  7644. },
  7645. "Value": {
  7646. "ComponentData": {
  7647. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7648. "$type": "NodeSaveData"
  7649. },
  7650. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7651. "$type": "GeneralNodeTitleComponentSaveData",
  7652. "PaletteOverride": "GetVariableNodeTitlePalette"
  7653. },
  7654. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7655. "$type": "GeometrySaveData",
  7656. "Position": [
  7657. 4800.0,
  7658. -80.0
  7659. ]
  7660. },
  7661. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7662. "$type": "StylingComponentSaveData",
  7663. "SubStyle": ".getVariable"
  7664. },
  7665. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7666. "$type": "PersistentIdComponentSaveData",
  7667. "PersistentId": "{42019F2A-39DA-4BE2-8582-2961061E8F73}"
  7668. }
  7669. }
  7670. }
  7671. },
  7672. {
  7673. "Key": {
  7674. "id": 96136939629667
  7675. },
  7676. "Value": {
  7677. "ComponentData": {
  7678. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7679. "$type": "NodeSaveData"
  7680. },
  7681. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7682. "$type": "GeneralNodeTitleComponentSaveData",
  7683. "PaletteOverride": "MethodNodeTitlePalette"
  7684. },
  7685. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7686. "$type": "GeometrySaveData",
  7687. "Position": [
  7688. 3160.0,
  7689. -660.0
  7690. ]
  7691. },
  7692. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7693. "$type": "StylingComponentSaveData",
  7694. "SubStyle": ".method"
  7695. },
  7696. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7697. "$type": "PersistentIdComponentSaveData",
  7698. "PersistentId": "{A7431116-29C2-4270-B449-BAFAED7C5C37}"
  7699. }
  7700. }
  7701. }
  7702. },
  7703. {
  7704. "Key": {
  7705. "id": 96141234596963
  7706. },
  7707. "Value": {
  7708. "ComponentData": {
  7709. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7710. "$type": "NodeSaveData"
  7711. },
  7712. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7713. "$type": "GeneralNodeTitleComponentSaveData",
  7714. "PaletteOverride": "MethodNodeTitlePalette"
  7715. },
  7716. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7717. "$type": "GeometrySaveData",
  7718. "Position": [
  7719. 1260.0,
  7720. -620.0
  7721. ]
  7722. },
  7723. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7724. "$type": "StylingComponentSaveData",
  7725. "SubStyle": ".method"
  7726. },
  7727. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7728. "$type": "PersistentIdComponentSaveData",
  7729. "PersistentId": "{C7B00191-EC4B-48E1-9FA6-6489D6F854BA}"
  7730. }
  7731. }
  7732. }
  7733. },
  7734. {
  7735. "Key": {
  7736. "id": 96145529564259
  7737. },
  7738. "Value": {
  7739. "ComponentData": {
  7740. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7741. "$type": "NodeSaveData"
  7742. },
  7743. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7744. "$type": "GeneralNodeTitleComponentSaveData",
  7745. "PaletteOverride": "MathNodeTitlePalette"
  7746. },
  7747. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7748. "$type": "GeometrySaveData",
  7749. "Position": [
  7750. 1780.0,
  7751. -400.0
  7752. ]
  7753. },
  7754. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7755. "$type": "StylingComponentSaveData"
  7756. },
  7757. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7758. "$type": "PersistentIdComponentSaveData",
  7759. "PersistentId": "{2298D09C-FB6F-49E2-A0FA-45D84357BD16}"
  7760. }
  7761. }
  7762. }
  7763. },
  7764. {
  7765. "Key": {
  7766. "id": 96149824531555
  7767. },
  7768. "Value": {
  7769. "ComponentData": {
  7770. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7771. "$type": "NodeSaveData"
  7772. },
  7773. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7774. "$type": "GeneralNodeTitleComponentSaveData",
  7775. "PaletteOverride": "MathNodeTitlePalette"
  7776. },
  7777. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7778. "$type": "GeometrySaveData",
  7779. "Position": [
  7780. 5100.0,
  7781. -80.0
  7782. ]
  7783. },
  7784. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7785. "$type": "StylingComponentSaveData"
  7786. },
  7787. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7788. "$type": "PersistentIdComponentSaveData",
  7789. "PersistentId": "{E78310D6-B742-4BB2-AAD1-A9B2F8AA67DC}"
  7790. }
  7791. }
  7792. }
  7793. },
  7794. {
  7795. "Key": {
  7796. "id": 96154119498851
  7797. },
  7798. "Value": {
  7799. "ComponentData": {
  7800. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7801. "$type": "NodeSaveData"
  7802. },
  7803. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7804. "$type": "GeneralNodeTitleComponentSaveData",
  7805. "PaletteOverride": "DefaultNodeTitlePalette"
  7806. },
  7807. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7808. "$type": "GeometrySaveData",
  7809. "Position": [
  7810. 4200.0,
  7811. -80.0
  7812. ]
  7813. },
  7814. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7815. "$type": "StylingComponentSaveData"
  7816. },
  7817. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7818. "$type": "PersistentIdComponentSaveData",
  7819. "PersistentId": "{301910B6-893E-4EE3-848F-220D41D5B090}"
  7820. }
  7821. }
  7822. }
  7823. },
  7824. {
  7825. "Key": {
  7826. "id": 96158414466147
  7827. },
  7828. "Value": {
  7829. "ComponentData": {
  7830. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7831. "$type": "NodeSaveData"
  7832. },
  7833. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7834. "$type": "GeometrySaveData",
  7835. "Position": [
  7836. -900.0,
  7837. -620.0
  7838. ]
  7839. },
  7840. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  7841. "$type": "EBusHandlerNodeDescriptorSaveData",
  7842. "EventIds": [
  7843. {
  7844. "Value": 245425936
  7845. }
  7846. ]
  7847. },
  7848. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7849. "$type": "StylingComponentSaveData"
  7850. },
  7851. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7852. "$type": "PersistentIdComponentSaveData",
  7853. "PersistentId": "{BF21224A-C92D-423C-B39E-7ABB131C5E7F}"
  7854. }
  7855. }
  7856. }
  7857. },
  7858. {
  7859. "Key": {
  7860. "id": 96162709433443
  7861. },
  7862. "Value": {
  7863. "ComponentData": {
  7864. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7865. "$type": "NodeSaveData"
  7866. },
  7867. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7868. "$type": "GeneralNodeTitleComponentSaveData",
  7869. "PaletteOverride": "MathNodeTitlePalette"
  7870. },
  7871. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7872. "$type": "GeometrySaveData",
  7873. "Position": [
  7874. 60.0,
  7875. -620.0
  7876. ]
  7877. },
  7878. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7879. "$type": "StylingComponentSaveData"
  7880. },
  7881. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7882. "$type": "PersistentIdComponentSaveData",
  7883. "PersistentId": "{B6BE430A-F664-4EA7-8855-A5F0E0085B3B}"
  7884. }
  7885. }
  7886. }
  7887. },
  7888. {
  7889. "Key": {
  7890. "id": 96167004400739
  7891. },
  7892. "Value": {
  7893. "ComponentData": {
  7894. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7895. "$type": "NodeSaveData"
  7896. },
  7897. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7898. "$type": "GeneralNodeTitleComponentSaveData",
  7899. "PaletteOverride": "DefaultNodeTitlePalette"
  7900. },
  7901. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7902. "$type": "GeometrySaveData",
  7903. "Position": [
  7904. 1620.0,
  7905. -860.0
  7906. ]
  7907. },
  7908. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7909. "$type": "StylingComponentSaveData"
  7910. },
  7911. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7912. "$type": "PersistentIdComponentSaveData",
  7913. "PersistentId": "{48FAFE51-E62A-4F5E-8D69-749A93AB3E99}"
  7914. }
  7915. }
  7916. }
  7917. },
  7918. {
  7919. "Key": {
  7920. "id": 96171299368035
  7921. },
  7922. "Value": {
  7923. "ComponentData": {
  7924. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7925. "$type": "NodeSaveData"
  7926. },
  7927. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7928. "$type": "GeneralNodeTitleComponentSaveData",
  7929. "PaletteOverride": "MathNodeTitlePalette"
  7930. },
  7931. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7932. "$type": "GeometrySaveData",
  7933. "Position": [
  7934. 960.0,
  7935. -620.0
  7936. ]
  7937. },
  7938. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7939. "$type": "StylingComponentSaveData"
  7940. },
  7941. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7942. "$type": "PersistentIdComponentSaveData",
  7943. "PersistentId": "{A8BCF9A6-5EB3-4619-9E98-F78FE1325801}"
  7944. }
  7945. }
  7946. }
  7947. },
  7948. {
  7949. "Key": {
  7950. "id": 96175594335331
  7951. },
  7952. "Value": {
  7953. "ComponentData": {
  7954. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7955. "$type": "NodeSaveData"
  7956. },
  7957. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7958. "$type": "GeneralNodeTitleComponentSaveData",
  7959. "PaletteOverride": "GetVariableNodeTitlePalette"
  7960. },
  7961. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7962. "$type": "GeometrySaveData",
  7963. "Position": [
  7964. 1620.0,
  7965. -400.0
  7966. ]
  7967. },
  7968. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  7969. "$type": "StylingComponentSaveData",
  7970. "SubStyle": ".getVariable"
  7971. },
  7972. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  7973. "$type": "PersistentIdComponentSaveData",
  7974. "PersistentId": "{5F5097FB-0115-4737-BB9F-F2B80DFB16CB}"
  7975. }
  7976. }
  7977. }
  7978. },
  7979. {
  7980. "Key": {
  7981. "id": 96179889302627
  7982. },
  7983. "Value": {
  7984. "ComponentData": {
  7985. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  7986. "$type": "NodeSaveData"
  7987. },
  7988. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  7989. "$type": "GeneralNodeTitleComponentSaveData",
  7990. "PaletteOverride": "MethodNodeTitlePalette"
  7991. },
  7992. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  7993. "$type": "GeometrySaveData",
  7994. "Position": [
  7995. 3160.0,
  7996. -80.0
  7997. ]
  7998. },
  7999. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8000. "$type": "StylingComponentSaveData",
  8001. "SubStyle": ".method"
  8002. },
  8003. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8004. "$type": "PersistentIdComponentSaveData",
  8005. "PersistentId": "{EB97E6EA-1F3E-4DE5-BAC2-F969E47A12A9}"
  8006. }
  8007. }
  8008. }
  8009. },
  8010. {
  8011. "Key": {
  8012. "id": 96184184269923
  8013. },
  8014. "Value": {
  8015. "ComponentData": {
  8016. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8017. "$type": "NodeSaveData"
  8018. },
  8019. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8020. "$type": "GeneralNodeTitleComponentSaveData",
  8021. "PaletteOverride": "TimeNodeTitlePalette"
  8022. },
  8023. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8024. "$type": "GeometrySaveData",
  8025. "Position": [
  8026. 2860.0,
  8027. -80.0
  8028. ]
  8029. },
  8030. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8031. "$type": "StylingComponentSaveData"
  8032. },
  8033. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8034. "$type": "PersistentIdComponentSaveData",
  8035. "PersistentId": "{0C80C305-8AE0-497F-9280-E2240DAFD22E}"
  8036. }
  8037. }
  8038. }
  8039. },
  8040. {
  8041. "Key": {
  8042. "id": 96188479237219
  8043. },
  8044. "Value": {
  8045. "ComponentData": {
  8046. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8047. "$type": "NodeSaveData"
  8048. },
  8049. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8050. "$type": "GeneralNodeTitleComponentSaveData",
  8051. "PaletteOverride": "TimeNodeTitlePalette"
  8052. },
  8053. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8054. "$type": "GeometrySaveData",
  8055. "Position": [
  8056. 3600.0,
  8057. -660.0
  8058. ]
  8059. },
  8060. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8061. "$type": "StylingComponentSaveData"
  8062. },
  8063. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8064. "$type": "PersistentIdComponentSaveData",
  8065. "PersistentId": "{FC53001E-EAC0-40BE-80B6-AAB1C8FF015D}"
  8066. }
  8067. }
  8068. }
  8069. },
  8070. {
  8071. "Key": {
  8072. "id": 96192774204515
  8073. },
  8074. "Value": {
  8075. "ComponentData": {
  8076. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8077. "$type": "NodeSaveData"
  8078. },
  8079. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8080. "$type": "GeneralNodeTitleComponentSaveData",
  8081. "PaletteOverride": "DefaultNodeTitlePalette"
  8082. },
  8083. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8084. "$type": "GeometrySaveData",
  8085. "Position": [
  8086. 2440.0,
  8087. -400.0
  8088. ]
  8089. },
  8090. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8091. "$type": "StylingComponentSaveData"
  8092. },
  8093. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8094. "$type": "PersistentIdComponentSaveData",
  8095. "PersistentId": "{9603C2ED-3050-4F79-AE34-B1D5B1B23156}"
  8096. }
  8097. }
  8098. }
  8099. }
  8100. ],
  8101. "StatisticsHelper": {
  8102. "InstanceCounter": [
  8103. {
  8104. "Key": 955089921810928021,
  8105. "Value": 1
  8106. },
  8107. {
  8108. "Key": 4284653482313037728,
  8109. "Value": 1
  8110. },
  8111. {
  8112. "Key": 5842116761103598202,
  8113. "Value": 1
  8114. },
  8115. {
  8116. "Key": 6462358712820489356,
  8117. "Value": 2
  8118. },
  8119. {
  8120. "Key": 6933852382809513815,
  8121. "Value": 1
  8122. },
  8123. {
  8124. "Key": 8874064635980936025,
  8125. "Value": 1
  8126. },
  8127. {
  8128. "Key": 10181512461692697578,
  8129. "Value": 1
  8130. },
  8131. {
  8132. "Key": 11000802260220917925,
  8133. "Value": 2
  8134. },
  8135. {
  8136. "Key": 11934378609147116901,
  8137. "Value": 1
  8138. },
  8139. {
  8140. "Key": 12155763068564192235,
  8141. "Value": 1
  8142. },
  8143. {
  8144. "Key": 12259493282421020587,
  8145. "Value": 1
  8146. },
  8147. {
  8148. "Key": 12479513014395689404,
  8149. "Value": 1
  8150. },
  8151. {
  8152. "Key": 12547274416652180225,
  8153. "Value": 1
  8154. },
  8155. {
  8156. "Key": 12702286953450386850,
  8157. "Value": 2
  8158. },
  8159. {
  8160. "Key": 13339759542018025193,
  8161. "Value": 1
  8162. },
  8163. {
  8164. "Key": 13774516356728983098,
  8165. "Value": 1
  8166. },
  8167. {
  8168. "Key": 13774516424086510517,
  8169. "Value": 1
  8170. },
  8171. {
  8172. "Key": 13774516425589295595,
  8173. "Value": 1
  8174. },
  8175. {
  8176. "Key": 13774516447818819178,
  8177. "Value": 1
  8178. },
  8179. {
  8180. "Key": 13774516448048456792,
  8181. "Value": 1
  8182. },
  8183. {
  8184. "Key": 13774516453006207282,
  8185. "Value": 1
  8186. },
  8187. {
  8188. "Key": 13774516554630755481,
  8189. "Value": 1
  8190. },
  8191. {
  8192. "Key": 13774516555687402408,
  8193. "Value": 1
  8194. },
  8195. {
  8196. "Key": 13774516556399355685,
  8197. "Value": 1
  8198. },
  8199. {
  8200. "Key": 16200215941563089552,
  8201. "Value": 3
  8202. },
  8203. {
  8204. "Key": 16727292684207565799,
  8205. "Value": 1
  8206. },
  8207. {
  8208. "Key": 16883864771291515098,
  8209. "Value": 1
  8210. },
  8211. {
  8212. "Key": 17086409635726749369,
  8213. "Value": 1
  8214. },
  8215. {
  8216. "Key": 17160861754420628882,
  8217. "Value": 1
  8218. },
  8219. {
  8220. "Key": 17746292506071718793,
  8221. "Value": 1
  8222. }
  8223. ]
  8224. }
  8225. },
  8226. "Component_[2354622542841342451]": {
  8227. "$type": "EditorGraphVariableManagerComponent",
  8228. "Id": 2354622542841342451,
  8229. "m_variableData": {
  8230. "m_nameVariableMap": [
  8231. {
  8232. "Key": {
  8233. "m_id": "{251012C9-C4D6-4FB3-AA03-EB593EE1BFEC}"
  8234. },
  8235. "Value": {
  8236. "Datum": {
  8237. "isOverloadedStorage": false,
  8238. "scriptCanvasType": {
  8239. "m_type": 3
  8240. },
  8241. "isNullPointer": false,
  8242. "$type": "double",
  8243. "value": 0.0
  8244. },
  8245. "VariableId": {
  8246. "m_id": "{251012C9-C4D6-4FB3-AA03-EB593EE1BFEC}"
  8247. },
  8248. "VariableName": "ExplodeTimesDuringMatch",
  8249. "InitialValueSource": 1
  8250. }
  8251. },
  8252. {
  8253. "Key": {
  8254. "m_id": "{49D86E32-DA58-44F9-BA7C-B384E2A3C3F6}"
  8255. },
  8256. "Value": {
  8257. "Datum": {
  8258. "isOverloadedStorage": false,
  8259. "scriptCanvasType": {
  8260. "m_type": 3
  8261. },
  8262. "isNullPointer": false,
  8263. "$type": "double",
  8264. "value": 0.0
  8265. },
  8266. "VariableId": {
  8267. "m_id": "{49D86E32-DA58-44F9-BA7C-B384E2A3C3F6}"
  8268. },
  8269. "VariableName": "Lifetime"
  8270. }
  8271. },
  8272. {
  8273. "Key": {
  8274. "m_id": "{62E2846B-1201-4A3D-9C17-2A85C76998BE}"
  8275. },
  8276. "Value": {
  8277. "Datum": {
  8278. "isOverloadedStorage": false,
  8279. "scriptCanvasType": {
  8280. "m_type": 4,
  8281. "m_azType": "{FC3DA616-174B-48FD-9BFB-BC277132FB47}"
  8282. },
  8283. "isNullPointer": false,
  8284. "$type": "MultiplayerSample::SpawnDecalConfig"
  8285. },
  8286. "VariableId": {
  8287. "m_id": "{62E2846B-1201-4A3D-9C17-2A85C76998BE}"
  8288. },
  8289. "VariableName": "Weapon Impact Decal Config",
  8290. "InitialValueSource": 1
  8291. }
  8292. },
  8293. {
  8294. "Key": {
  8295. "m_id": "{8B894CB8-6339-46EC-B608-5D936C76070C}"
  8296. },
  8297. "Value": {
  8298. "Datum": {
  8299. "isOverloadedStorage": false,
  8300. "scriptCanvasType": {
  8301. "m_type": 3
  8302. },
  8303. "isNullPointer": false,
  8304. "$type": "double",
  8305. "value": 0.0
  8306. },
  8307. "VariableId": {
  8308. "m_id": "{8B894CB8-6339-46EC-B608-5D936C76070C}"
  8309. },
  8310. "VariableName": "DamageMagnitude",
  8311. "InitialValueSource": 1
  8312. }
  8313. },
  8314. {
  8315. "Key": {
  8316. "m_id": "{95843EC3-D528-453B-940D-9E78061CCE0F}"
  8317. },
  8318. "Value": {
  8319. "Datum": {
  8320. "isOverloadedStorage": false,
  8321. "scriptCanvasType": {
  8322. "m_type": 3
  8323. },
  8324. "isNullPointer": false,
  8325. "$type": "double",
  8326. "value": 0.0
  8327. },
  8328. "VariableId": {
  8329. "m_id": "{95843EC3-D528-453B-940D-9E78061CCE0F}"
  8330. },
  8331. "VariableName": "DamageDistance",
  8332. "InitialValueSource": 1
  8333. }
  8334. },
  8335. {
  8336. "Key": {
  8337. "m_id": "{F3137783-4DB6-46FD-B1CF-3C8D44D12F72}"
  8338. },
  8339. "Value": {
  8340. "Datum": {
  8341. "isOverloadedStorage": false,
  8342. "scriptCanvasType": {
  8343. "m_type": 1
  8344. },
  8345. "isNullPointer": false,
  8346. "$type": "EntityId",
  8347. "value": {
  8348. "id": 2901262558
  8349. }
  8350. },
  8351. "VariableId": {
  8352. "m_id": "{F3137783-4DB6-46FD-B1CF-3C8D44D12F72}"
  8353. },
  8354. "VariableName": "ExplosionEffect",
  8355. "InitialValueSource": 1
  8356. }
  8357. }
  8358. ]
  8359. },
  8360. "CopiedVariableRemapping": [
  8361. {
  8362. "Key": {
  8363. "m_id": "{1850E939-4A77-4323-807E-6EFF953D8810}"
  8364. },
  8365. "Value": {
  8366. "m_id": "{62E2846B-1201-4A3D-9C17-2A85C76998BE}"
  8367. }
  8368. }
  8369. ]
  8370. }
  8371. }
  8372. }
  8373. }
  8374. }