NewspaperTarget.scriptcanvas 607 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 222804698189568
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[10317720025481459275]": {
  13. "$type": "EditorGraph",
  14. "Id": 10317720025481459275,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 222920662306560
  20. },
  21. "Name": "SC-Node(SetVisibility)",
  22. "Components": {
  23. "Component_[10038356210066714976]": {
  24. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  25. "Id": 10038356210066714976,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{C79F1945-9ED8-44AA-9799-5FB1580811F4}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "EntityId: 0",
  37. "Descriptor": {
  38. "ConnectionType": 1,
  39. "SlotType": 2
  40. },
  41. "DataType": 1,
  42. "IsReference": true,
  43. "VariableReference": {
  44. "m_id": "{AA7BD1D3-F303-4296-8544-231678555D16}"
  45. }
  46. },
  47. {
  48. "id": {
  49. "m_id": "{50651DE6-3702-4423-8585-C657E4CB91FA}"
  50. },
  51. "contracts": [
  52. {
  53. "$type": "SlotTypeContract"
  54. }
  55. ],
  56. "slotName": "Boolean: 1",
  57. "Descriptor": {
  58. "ConnectionType": 1,
  59. "SlotType": 2
  60. },
  61. "DataType": 1
  62. },
  63. {
  64. "id": {
  65. "m_id": "{E8A41188-3559-4EF3-9AA5-BC15D4EFEC03}"
  66. },
  67. "contracts": [
  68. {
  69. "$type": "SlotTypeContract"
  70. }
  71. ],
  72. "slotName": "In",
  73. "Descriptor": {
  74. "ConnectionType": 1,
  75. "SlotType": 1
  76. }
  77. },
  78. {
  79. "id": {
  80. "m_id": "{76F4EC21-F5D2-4E2C-9155-2DB4BABA55B3}"
  81. },
  82. "contracts": [
  83. {
  84. "$type": "SlotTypeContract"
  85. }
  86. ],
  87. "slotName": "Out",
  88. "Descriptor": {
  89. "ConnectionType": 2,
  90. "SlotType": 1
  91. }
  92. }
  93. ],
  94. "Datums": [
  95. {
  96. "isOverloadedStorage": false,
  97. "scriptCanvasType": {
  98. "m_type": 1
  99. },
  100. "isNullPointer": false,
  101. "$type": "EntityId",
  102. "value": {
  103. "id": 2901262558
  104. },
  105. "label": "Source"
  106. },
  107. {
  108. "isOverloadedStorage": false,
  109. "scriptCanvasType": {
  110. "m_type": 0
  111. },
  112. "isNullPointer": false,
  113. "$type": "bool",
  114. "value": false,
  115. "label": "Boolean: 1"
  116. }
  117. ],
  118. "methodType": 0,
  119. "methodName": "SetVisibility",
  120. "className": "RenderMeshComponentRequestBus",
  121. "resultSlotIDs": [
  122. {}
  123. ],
  124. "inputSlots": [
  125. {
  126. "m_id": "{C79F1945-9ED8-44AA-9799-5FB1580811F4}"
  127. },
  128. {
  129. "m_id": "{50651DE6-3702-4423-8585-C657E4CB91FA}"
  130. }
  131. ],
  132. "prettyClassName": "RenderMeshComponentRequestBus"
  133. }
  134. }
  135. },
  136. {
  137. "Id": {
  138. "id": 222955022044928
  139. },
  140. "Name": "SC-Node(SetVisibility)",
  141. "Components": {
  142. "Component_[10038356210066714976]": {
  143. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  144. "Id": 10038356210066714976,
  145. "Slots": [
  146. {
  147. "id": {
  148. "m_id": "{C79F1945-9ED8-44AA-9799-5FB1580811F4}"
  149. },
  150. "contracts": [
  151. {
  152. "$type": "SlotTypeContract"
  153. }
  154. ],
  155. "slotName": "EntityId: 0",
  156. "Descriptor": {
  157. "ConnectionType": 1,
  158. "SlotType": 2
  159. },
  160. "DataType": 1,
  161. "IsReference": true,
  162. "VariableReference": {
  163. "m_id": "{AA7BD1D3-F303-4296-8544-231678555D16}"
  164. }
  165. },
  166. {
  167. "id": {
  168. "m_id": "{50651DE6-3702-4423-8585-C657E4CB91FA}"
  169. },
  170. "contracts": [
  171. {
  172. "$type": "SlotTypeContract"
  173. }
  174. ],
  175. "slotName": "Boolean: 1",
  176. "Descriptor": {
  177. "ConnectionType": 1,
  178. "SlotType": 2
  179. },
  180. "DataType": 1
  181. },
  182. {
  183. "id": {
  184. "m_id": "{E8A41188-3559-4EF3-9AA5-BC15D4EFEC03}"
  185. },
  186. "contracts": [
  187. {
  188. "$type": "SlotTypeContract"
  189. }
  190. ],
  191. "slotName": "In",
  192. "Descriptor": {
  193. "ConnectionType": 1,
  194. "SlotType": 1
  195. }
  196. },
  197. {
  198. "id": {
  199. "m_id": "{76F4EC21-F5D2-4E2C-9155-2DB4BABA55B3}"
  200. },
  201. "contracts": [
  202. {
  203. "$type": "SlotTypeContract"
  204. }
  205. ],
  206. "slotName": "Out",
  207. "Descriptor": {
  208. "ConnectionType": 2,
  209. "SlotType": 1
  210. }
  211. }
  212. ],
  213. "Datums": [
  214. {
  215. "isOverloadedStorage": false,
  216. "scriptCanvasType": {
  217. "m_type": 1
  218. },
  219. "isNullPointer": false,
  220. "$type": "EntityId",
  221. "value": {
  222. "id": 2901262558
  223. },
  224. "label": "Source"
  225. },
  226. {
  227. "isOverloadedStorage": false,
  228. "scriptCanvasType": {
  229. "m_type": 0
  230. },
  231. "isNullPointer": false,
  232. "$type": "bool",
  233. "value": true,
  234. "label": "Boolean: 1"
  235. }
  236. ],
  237. "methodType": 0,
  238. "methodName": "SetVisibility",
  239. "className": "RenderMeshComponentRequestBus",
  240. "resultSlotIDs": [
  241. {}
  242. ],
  243. "inputSlots": [
  244. {
  245. "m_id": "{C79F1945-9ED8-44AA-9799-5FB1580811F4}"
  246. },
  247. {
  248. "m_id": "{50651DE6-3702-4423-8585-C657E4CB91FA}"
  249. }
  250. ],
  251. "prettyClassName": "RenderMeshComponentRequestBus"
  252. }
  253. }
  254. },
  255. {
  256. "Id": {
  257. "id": 222989381783296
  258. },
  259. "Name": "SC-Node(SetVisibility)",
  260. "Components": {
  261. "Component_[10038356210066714976]": {
  262. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  263. "Id": 10038356210066714976,
  264. "Slots": [
  265. {
  266. "id": {
  267. "m_id": "{C79F1945-9ED8-44AA-9799-5FB1580811F4}"
  268. },
  269. "contracts": [
  270. {
  271. "$type": "SlotTypeContract"
  272. }
  273. ],
  274. "slotName": "EntityId: 0",
  275. "Descriptor": {
  276. "ConnectionType": 1,
  277. "SlotType": 2
  278. },
  279. "DataType": 1,
  280. "IsReference": true,
  281. "VariableReference": {
  282. "m_id": "{AA7BD1D3-F303-4296-8544-231678555D16}"
  283. }
  284. },
  285. {
  286. "id": {
  287. "m_id": "{50651DE6-3702-4423-8585-C657E4CB91FA}"
  288. },
  289. "contracts": [
  290. {
  291. "$type": "SlotTypeContract"
  292. }
  293. ],
  294. "slotName": "Boolean: 1",
  295. "Descriptor": {
  296. "ConnectionType": 1,
  297. "SlotType": 2
  298. },
  299. "DataType": 1
  300. },
  301. {
  302. "id": {
  303. "m_id": "{E8A41188-3559-4EF3-9AA5-BC15D4EFEC03}"
  304. },
  305. "contracts": [
  306. {
  307. "$type": "SlotTypeContract"
  308. }
  309. ],
  310. "slotName": "In",
  311. "Descriptor": {
  312. "ConnectionType": 1,
  313. "SlotType": 1
  314. }
  315. },
  316. {
  317. "id": {
  318. "m_id": "{76F4EC21-F5D2-4E2C-9155-2DB4BABA55B3}"
  319. },
  320. "contracts": [
  321. {
  322. "$type": "SlotTypeContract"
  323. }
  324. ],
  325. "slotName": "Out",
  326. "Descriptor": {
  327. "ConnectionType": 2,
  328. "SlotType": 1
  329. }
  330. }
  331. ],
  332. "Datums": [
  333. {
  334. "isOverloadedStorage": false,
  335. "scriptCanvasType": {
  336. "m_type": 1
  337. },
  338. "isNullPointer": false,
  339. "$type": "EntityId",
  340. "value": {
  341. "id": 2901262558
  342. },
  343. "label": "Source"
  344. },
  345. {
  346. "isOverloadedStorage": false,
  347. "scriptCanvasType": {
  348. "m_type": 0
  349. },
  350. "isNullPointer": false,
  351. "$type": "bool",
  352. "value": true,
  353. "label": "Boolean: 1"
  354. }
  355. ],
  356. "methodType": 0,
  357. "methodName": "SetVisibility",
  358. "className": "RenderMeshComponentRequestBus",
  359. "resultSlotIDs": [
  360. {}
  361. ],
  362. "inputSlots": [
  363. {
  364. "m_id": "{C79F1945-9ED8-44AA-9799-5FB1580811F4}"
  365. },
  366. {
  367. "m_id": "{50651DE6-3702-4423-8585-C657E4CB91FA}"
  368. }
  369. ],
  370. "prettyClassName": "RenderMeshComponentRequestBus"
  371. }
  372. }
  373. },
  374. {
  375. "Id": {
  376. "id": 222899187470080
  377. },
  378. "Name": "ReceiveScriptEvent",
  379. "Components": {
  380. "Component_[11241449403417920767]": {
  381. "$type": "ReceiveScriptEvent",
  382. "Id": 11241449403417920767,
  383. "Slots": [
  384. {
  385. "id": {
  386. "m_id": "{6AFF0D27-FA2A-451F-B1E3-7C8024975D22}"
  387. },
  388. "contracts": [
  389. {
  390. "$type": "SlotTypeContract"
  391. }
  392. ],
  393. "slotName": "Connect",
  394. "toolTip": "Connect this event handler to the specified entity.",
  395. "Descriptor": {
  396. "ConnectionType": 1,
  397. "SlotType": 1
  398. }
  399. },
  400. {
  401. "id": {
  402. "m_id": "{1E143F9A-7A80-4E04-88BB-BED76765998E}"
  403. },
  404. "contracts": [
  405. {
  406. "$type": "SlotTypeContract"
  407. }
  408. ],
  409. "slotName": "Disconnect",
  410. "toolTip": "Disconnect this event handler.",
  411. "Descriptor": {
  412. "ConnectionType": 1,
  413. "SlotType": 1
  414. }
  415. },
  416. {
  417. "id": {
  418. "m_id": "{25D1BF0C-B9AB-4223-BEC8-1278043716E8}"
  419. },
  420. "contracts": [
  421. {
  422. "$type": "SlotTypeContract"
  423. }
  424. ],
  425. "slotName": "OnConnected",
  426. "toolTip": "Signaled when a connection has taken place.",
  427. "Descriptor": {
  428. "ConnectionType": 2,
  429. "SlotType": 1
  430. }
  431. },
  432. {
  433. "id": {
  434. "m_id": "{FCE01E0B-E378-4DA9-9FF7-62E444066DD2}"
  435. },
  436. "contracts": [
  437. {
  438. "$type": "SlotTypeContract"
  439. }
  440. ],
  441. "slotName": "OnDisconnected",
  442. "toolTip": "Signaled when this event handler is disconnected.",
  443. "Descriptor": {
  444. "ConnectionType": 2,
  445. "SlotType": 1
  446. }
  447. },
  448. {
  449. "id": {
  450. "m_id": "{21802BA2-D629-4614-B452-6DEC78F2DF53}"
  451. },
  452. "contracts": [
  453. {
  454. "$type": "SlotTypeContract"
  455. }
  456. ],
  457. "slotName": "OnFailure",
  458. "toolTip": "Signaled when it is not possible to connect this handler.",
  459. "Descriptor": {
  460. "ConnectionType": 2,
  461. "SlotType": 1
  462. }
  463. },
  464. {
  465. "id": {
  466. "m_id": "{4F5C79CD-8CBE-4087-9AE6-D85492495CA4}"
  467. },
  468. "contracts": [
  469. {
  470. "$type": "SlotTypeContract"
  471. }
  472. ],
  473. "slotName": "ExecutionSlot:NextLevel",
  474. "Descriptor": {
  475. "ConnectionType": 2,
  476. "SlotType": 1
  477. },
  478. "IsLatent": true
  479. },
  480. {
  481. "id": {
  482. "m_id": "{97DFED6C-A883-4C7C-BAA9-58591357200D}"
  483. },
  484. "contracts": [
  485. {
  486. "$type": "SlotTypeContract"
  487. }
  488. ],
  489. "slotName": "GameState",
  490. "DisplayDataType": {
  491. "m_type": 5
  492. },
  493. "Descriptor": {
  494. "ConnectionType": 2,
  495. "SlotType": 2
  496. },
  497. "DataType": 1
  498. },
  499. {
  500. "id": {
  501. "m_id": "{FD5A8B31-A4CF-4112-9B49-0CBB4E3DB983}"
  502. },
  503. "contracts": [
  504. {
  505. "$type": "SlotTypeContract"
  506. }
  507. ],
  508. "slotName": "ExecutionSlot:GameStateChanged",
  509. "Descriptor": {
  510. "ConnectionType": 2,
  511. "SlotType": 1
  512. },
  513. "IsLatent": true
  514. },
  515. {
  516. "id": {
  517. "m_id": "{4DAA7A3A-1E62-42FA-BA77-85D6BBF3806E}"
  518. },
  519. "contracts": [
  520. {
  521. "$type": "SlotTypeContract"
  522. }
  523. ],
  524. "slotName": "ExecutionSlot:PlayerHitByObstacle",
  525. "Descriptor": {
  526. "ConnectionType": 2,
  527. "SlotType": 1
  528. },
  529. "IsLatent": true
  530. },
  531. {
  532. "id": {
  533. "m_id": "{DC1194AF-FC73-4751-8F7C-580F133B3BD5}"
  534. },
  535. "contracts": [
  536. {
  537. "$type": "SlotTypeContract"
  538. }
  539. ],
  540. "slotName": "String",
  541. "Descriptor": {
  542. "ConnectionType": 1,
  543. "SlotType": 2
  544. },
  545. "DataType": 1
  546. },
  547. {
  548. "id": {
  549. "m_id": "{4AB04697-5B7C-448B-B641-F3EAAE91D49E}"
  550. },
  551. "contracts": [
  552. {
  553. "$type": "SlotTypeContract"
  554. }
  555. ],
  556. "slotName": "ExecutionSlot:GetGameState",
  557. "Descriptor": {
  558. "ConnectionType": 2,
  559. "SlotType": 1
  560. },
  561. "IsLatent": true
  562. },
  563. {
  564. "id": {
  565. "m_id": "{22C7F127-95BC-4B58-B709-D30226985B84}"
  566. },
  567. "contracts": [
  568. {
  569. "$type": "SlotTypeContract"
  570. }
  571. ],
  572. "slotName": "ExecutionSlot:NewspaperThrown",
  573. "Descriptor": {
  574. "ConnectionType": 2,
  575. "SlotType": 1
  576. },
  577. "IsLatent": true
  578. },
  579. {
  580. "id": {
  581. "m_id": "{DACCF604-1D1E-4AAC-BA24-A12C8612631A}"
  582. },
  583. "contracts": [
  584. {
  585. "$type": "SlotTypeContract"
  586. }
  587. ],
  588. "slotName": "Number",
  589. "Descriptor": {
  590. "ConnectionType": 1,
  591. "SlotType": 2
  592. },
  593. "DataType": 1
  594. },
  595. {
  596. "id": {
  597. "m_id": "{E47B052B-9AA1-4702-9458-9A81E0019154}"
  598. },
  599. "contracts": [
  600. {
  601. "$type": "SlotTypeContract"
  602. }
  603. ],
  604. "slotName": "ExecutionSlot:GetNewspapersRemaining",
  605. "Descriptor": {
  606. "ConnectionType": 2,
  607. "SlotType": 1
  608. },
  609. "IsLatent": true
  610. },
  611. {
  612. "id": {
  613. "m_id": "{25BB124E-FA43-4A9C-8A39-0A8DB4C91552}"
  614. },
  615. "contracts": [
  616. {
  617. "$type": "SlotTypeContract"
  618. }
  619. ],
  620. "slotName": "ExecutionSlot:StartGame",
  621. "Descriptor": {
  622. "ConnectionType": 2,
  623. "SlotType": 1
  624. },
  625. "IsLatent": true
  626. },
  627. {
  628. "id": {
  629. "m_id": "{0B98696E-789B-459A-ADE2-A3CFF556BEE9}"
  630. },
  631. "contracts": [
  632. {
  633. "$type": "SlotTypeContract"
  634. }
  635. ],
  636. "slotName": "Points",
  637. "DisplayDataType": {
  638. "m_type": 3
  639. },
  640. "Descriptor": {
  641. "ConnectionType": 2,
  642. "SlotType": 2
  643. },
  644. "DataType": 1
  645. },
  646. {
  647. "id": {
  648. "m_id": "{EFAB353A-8A42-4FE6-9325-0039C6F3F8C6}"
  649. },
  650. "contracts": [
  651. {
  652. "$type": "SlotTypeContract"
  653. }
  654. ],
  655. "slotName": "ExecutionSlot:NewspaperHitTarget",
  656. "Descriptor": {
  657. "ConnectionType": 2,
  658. "SlotType": 1
  659. },
  660. "IsLatent": true
  661. }
  662. ],
  663. "Datums": [
  664. {
  665. "isOverloadedStorage": false,
  666. "scriptCanvasType": {
  667. "m_type": 5
  668. },
  669. "isNullPointer": false,
  670. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  671. "value": "",
  672. "label": "String"
  673. },
  674. {
  675. "isOverloadedStorage": false,
  676. "scriptCanvasType": {
  677. "m_type": 3
  678. },
  679. "isNullPointer": false,
  680. "$type": "double",
  681. "value": 0.0,
  682. "label": "Number"
  683. }
  684. ],
  685. "m_version": 11,
  686. "m_eventMap": [
  687. {
  688. "Key": {
  689. "Value": 949996825
  690. },
  691. "Value": {
  692. "m_scriptEventAssetId": {
  693. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  694. },
  695. "m_eventName": "NewspaperThrown",
  696. "m_eventSlotId": {
  697. "m_id": "{22C7F127-95BC-4B58-B709-D30226985B84}"
  698. }
  699. }
  700. },
  701. {
  702. "Key": {
  703. "Value": 1059988396
  704. },
  705. "Value": {
  706. "m_scriptEventAssetId": {
  707. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  708. },
  709. "m_eventName": "GetGameState",
  710. "m_eventSlotId": {
  711. "m_id": "{4AB04697-5B7C-448B-B641-F3EAAE91D49E}"
  712. },
  713. "m_resultSlotId": {
  714. "m_id": "{DC1194AF-FC73-4751-8F7C-580F133B3BD5}"
  715. }
  716. }
  717. },
  718. {
  719. "Key": {
  720. "Value": 1337177786
  721. },
  722. "Value": {
  723. "m_scriptEventAssetId": {
  724. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  725. },
  726. "m_eventName": "StartGame",
  727. "m_eventSlotId": {
  728. "m_id": "{25BB124E-FA43-4A9C-8A39-0A8DB4C91552}"
  729. }
  730. }
  731. },
  732. {
  733. "Key": {
  734. "Value": 1558730029
  735. },
  736. "Value": {
  737. "m_scriptEventAssetId": {
  738. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  739. },
  740. "m_eventName": "PlayerHitByObstacle",
  741. "m_eventSlotId": {
  742. "m_id": "{4DAA7A3A-1E62-42FA-BA77-85D6BBF3806E}"
  743. }
  744. }
  745. },
  746. {
  747. "Key": {
  748. "Value": 2045047473
  749. },
  750. "Value": {
  751. "m_scriptEventAssetId": {
  752. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  753. },
  754. "m_eventName": "GetNewspapersRemaining",
  755. "m_eventSlotId": {
  756. "m_id": "{E47B052B-9AA1-4702-9458-9A81E0019154}"
  757. },
  758. "m_resultSlotId": {
  759. "m_id": "{DACCF604-1D1E-4AAC-BA24-A12C8612631A}"
  760. }
  761. }
  762. },
  763. {
  764. "Key": {
  765. "Value": 3075378332
  766. },
  767. "Value": {
  768. "m_scriptEventAssetId": {
  769. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  770. },
  771. "m_eventName": "NextLevel",
  772. "m_eventSlotId": {
  773. "m_id": "{4F5C79CD-8CBE-4087-9AE6-D85492495CA4}"
  774. }
  775. }
  776. },
  777. {
  778. "Key": {
  779. "Value": 3434847886
  780. },
  781. "Value": {
  782. "m_scriptEventAssetId": {
  783. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  784. },
  785. "m_eventName": "NewspaperHitTarget",
  786. "m_eventSlotId": {
  787. "m_id": "{EFAB353A-8A42-4FE6-9325-0039C6F3F8C6}"
  788. },
  789. "m_parameterSlotIds": [
  790. {
  791. "m_id": "{0B98696E-789B-459A-ADE2-A3CFF556BEE9}"
  792. }
  793. ],
  794. "m_numExpectedArguments": 1
  795. }
  796. },
  797. {
  798. "Key": {
  799. "Value": 3435658061
  800. },
  801. "Value": {
  802. "m_scriptEventAssetId": {
  803. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  804. },
  805. "m_eventName": "GameStateChanged",
  806. "m_eventSlotId": {
  807. "m_id": "{FD5A8B31-A4CF-4112-9B49-0CBB4E3DB983}"
  808. },
  809. "m_parameterSlotIds": [
  810. {
  811. "m_id": "{97DFED6C-A883-4C7C-BAA9-58591357200D}"
  812. }
  813. ],
  814. "m_numExpectedArguments": 1
  815. }
  816. }
  817. ],
  818. "m_eventSlotMapping": {
  819. "{11D5D184-7907-4EDA-895E-FCE09AE24C9E}": {
  820. "m_id": "{DC1194AF-FC73-4751-8F7C-580F133B3BD5}"
  821. },
  822. "{1F24D57F-234D-490A-9413-F530A08ABAE9}": {
  823. "m_id": "{4DAA7A3A-1E62-42FA-BA77-85D6BBF3806E}"
  824. },
  825. "{40D8D69C-30AD-46D6-919D-9B4C3A347E67}": {
  826. "m_id": "{DACCF604-1D1E-4AAC-BA24-A12C8612631A}"
  827. },
  828. "{43ED63ED-9232-44B9-9319-BA02243ECFBC}": {
  829. "m_id": "{22C7F127-95BC-4B58-B709-D30226985B84}"
  830. },
  831. "{8DFE5BDF-84F2-4D0F-BE77-9EDFA94DD483}": {
  832. "m_id": "{97DFED6C-A883-4C7C-BAA9-58591357200D}"
  833. },
  834. "{8FB2B34B-3517-4CC8-8A19-DF4493E97D92}": {
  835. "m_id": "{25BB124E-FA43-4A9C-8A39-0A8DB4C91552}"
  836. },
  837. "{93096A5C-B8EE-46A1-8760-6233CA538C1A}": {
  838. "m_id": "{EFAB353A-8A42-4FE6-9325-0039C6F3F8C6}"
  839. },
  840. "{A6509EAA-A5EB-49C3-A771-2C65EC1F58C2}": {
  841. "m_id": "{4AB04697-5B7C-448B-B641-F3EAAE91D49E}"
  842. },
  843. "{ABE647BB-C5B0-45D9-A69B-088C1A2ECF80}": {
  844. "m_id": "{4F5C79CD-8CBE-4087-9AE6-D85492495CA4}"
  845. },
  846. "{D277195A-B1C0-4ED7-9666-F0D1AE486BEF}": {
  847. "m_id": "{FD5A8B31-A4CF-4112-9B49-0CBB4E3DB983}"
  848. },
  849. "{DDB92FDF-34B3-4EE3-9ABB-5C2223CCEAE0}": {
  850. "m_id": "{E47B052B-9AA1-4702-9458-9A81E0019154}"
  851. },
  852. "{FB6E6EE6-0A89-4C88-909A-0190D98BE4DE}": {
  853. "m_id": "{0B98696E-789B-459A-ADE2-A3CFF556BEE9}"
  854. }
  855. },
  856. "m_scriptEventAssetId": {
  857. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  858. },
  859. "m_asset": {
  860. "assetId": {
  861. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  862. },
  863. "loadBehavior": "PreLoad",
  864. "assetHint": "scriptcanvas/paper_kid_script_events.scriptevents"
  865. },
  866. "m_autoConnectToGraphOwner": false
  867. }
  868. }
  869. },
  870. {
  871. "Id": {
  872. "id": 222937842175744
  873. },
  874. "Name": "SC-Node(GetEntityName)",
  875. "Components": {
  876. "Component_[12250468358095162900]": {
  877. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  878. "Id": 12250468358095162900,
  879. "Slots": [
  880. {
  881. "id": {
  882. "m_id": "{1346E4FE-F5E9-4397-86FF-6C2EE3ADBCCF}"
  883. },
  884. "contracts": [
  885. {
  886. "$type": "SlotTypeContract"
  887. }
  888. ],
  889. "slotName": "EntityId",
  890. "Descriptor": {
  891. "ConnectionType": 1,
  892. "SlotType": 2
  893. },
  894. "DataType": 1
  895. },
  896. {
  897. "id": {
  898. "m_id": "{971AE031-6740-4723-9377-7753AFAB4A41}"
  899. },
  900. "contracts": [
  901. {
  902. "$type": "SlotTypeContract"
  903. }
  904. ],
  905. "slotName": "In",
  906. "Descriptor": {
  907. "ConnectionType": 1,
  908. "SlotType": 1
  909. }
  910. },
  911. {
  912. "id": {
  913. "m_id": "{D2B5CFF9-69A7-42AF-AD2F-2F1E8C1B24F8}"
  914. },
  915. "contracts": [
  916. {
  917. "$type": "SlotTypeContract"
  918. }
  919. ],
  920. "slotName": "Out",
  921. "Descriptor": {
  922. "ConnectionType": 2,
  923. "SlotType": 1
  924. }
  925. },
  926. {
  927. "id": {
  928. "m_id": "{AE9BDC35-285B-45E5-880B-E7AD8664CC40}"
  929. },
  930. "contracts": [
  931. {
  932. "$type": "SlotTypeContract"
  933. }
  934. ],
  935. "slotName": "String",
  936. "DisplayDataType": {
  937. "m_type": 5
  938. },
  939. "Descriptor": {
  940. "ConnectionType": 2,
  941. "SlotType": 2
  942. },
  943. "DataType": 1
  944. }
  945. ],
  946. "Datums": [
  947. {
  948. "isOverloadedStorage": false,
  949. "scriptCanvasType": {
  950. "m_type": 1
  951. },
  952. "isNullPointer": false,
  953. "$type": "EntityId",
  954. "value": {
  955. "id": 2901262558
  956. },
  957. "label": "Entity Id"
  958. }
  959. ],
  960. "methodType": 0,
  961. "methodName": "GetEntityName",
  962. "className": "ComponentApplicationBus",
  963. "resultSlotIDs": [
  964. {}
  965. ],
  966. "inputSlots": [
  967. {
  968. "m_id": "{1346E4FE-F5E9-4397-86FF-6C2EE3ADBCCF}"
  969. }
  970. ],
  971. "prettyClassName": "ComponentApplicationBus"
  972. }
  973. }
  974. },
  975. {
  976. "Id": {
  977. "id": 222972201914112
  978. },
  979. "Name": "SC-Node(SetVisibility)",
  980. "Components": {
  981. "Component_[12526937022001270369]": {
  982. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  983. "Id": 12526937022001270369,
  984. "Slots": [
  985. {
  986. "id": {
  987. "m_id": "{F8C01B2A-4E29-4FFF-BD95-84BA179C261D}"
  988. },
  989. "contracts": [
  990. {
  991. "$type": "SlotTypeContract"
  992. }
  993. ],
  994. "slotName": "EntityId: 0",
  995. "Descriptor": {
  996. "ConnectionType": 1,
  997. "SlotType": 2
  998. },
  999. "DataType": 1,
  1000. "IsReference": true,
  1001. "VariableReference": {
  1002. "m_id": "{62ECF824-2489-4C8D-A72B-518A6BDAC63B}"
  1003. }
  1004. },
  1005. {
  1006. "id": {
  1007. "m_id": "{F8751D05-26F3-4D97-9C5B-516DABA72BFB}"
  1008. },
  1009. "contracts": [
  1010. {
  1011. "$type": "SlotTypeContract"
  1012. }
  1013. ],
  1014. "slotName": "Boolean: 1",
  1015. "Descriptor": {
  1016. "ConnectionType": 1,
  1017. "SlotType": 2
  1018. },
  1019. "DataType": 1
  1020. },
  1021. {
  1022. "id": {
  1023. "m_id": "{2FB68547-E454-48ED-8369-380CF24A5046}"
  1024. },
  1025. "contracts": [
  1026. {
  1027. "$type": "SlotTypeContract"
  1028. }
  1029. ],
  1030. "slotName": "In",
  1031. "Descriptor": {
  1032. "ConnectionType": 1,
  1033. "SlotType": 1
  1034. }
  1035. },
  1036. {
  1037. "id": {
  1038. "m_id": "{4BC07C6A-F103-4DDE-B71E-0557673F6D7E}"
  1039. },
  1040. "contracts": [
  1041. {
  1042. "$type": "SlotTypeContract"
  1043. }
  1044. ],
  1045. "slotName": "Out",
  1046. "Descriptor": {
  1047. "ConnectionType": 2,
  1048. "SlotType": 1
  1049. }
  1050. }
  1051. ],
  1052. "Datums": [
  1053. {
  1054. "isOverloadedStorage": false,
  1055. "scriptCanvasType": {
  1056. "m_type": 1
  1057. },
  1058. "isNullPointer": false,
  1059. "$type": "EntityId",
  1060. "value": {
  1061. "id": 2901262558
  1062. },
  1063. "label": "Source"
  1064. },
  1065. {
  1066. "isOverloadedStorage": false,
  1067. "scriptCanvasType": {
  1068. "m_type": 0
  1069. },
  1070. "isNullPointer": false,
  1071. "$type": "bool",
  1072. "value": false,
  1073. "label": "Boolean: 1"
  1074. }
  1075. ],
  1076. "methodType": 0,
  1077. "methodName": "SetVisibility",
  1078. "className": "RenderMeshComponentRequestBus",
  1079. "resultSlotIDs": [
  1080. {}
  1081. ],
  1082. "inputSlots": [
  1083. {
  1084. "m_id": "{F8C01B2A-4E29-4FFF-BD95-84BA179C261D}"
  1085. },
  1086. {
  1087. "m_id": "{F8751D05-26F3-4D97-9C5B-516DABA72BFB}"
  1088. }
  1089. ],
  1090. "prettyClassName": "RenderMeshComponentRequestBus"
  1091. }
  1092. }
  1093. },
  1094. {
  1095. "Id": {
  1096. "id": 222817583091456
  1097. },
  1098. "Name": "SC-Node(SetVisibility)",
  1099. "Components": {
  1100. "Component_[12526937022001270369]": {
  1101. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1102. "Id": 12526937022001270369,
  1103. "Slots": [
  1104. {
  1105. "id": {
  1106. "m_id": "{F8C01B2A-4E29-4FFF-BD95-84BA179C261D}"
  1107. },
  1108. "contracts": [
  1109. {
  1110. "$type": "SlotTypeContract"
  1111. }
  1112. ],
  1113. "slotName": "EntityId: 0",
  1114. "Descriptor": {
  1115. "ConnectionType": 1,
  1116. "SlotType": 2
  1117. },
  1118. "DataType": 1,
  1119. "IsReference": true,
  1120. "VariableReference": {
  1121. "m_id": "{96D1005F-62AA-493E-977C-BE75523820B7}"
  1122. }
  1123. },
  1124. {
  1125. "id": {
  1126. "m_id": "{F8751D05-26F3-4D97-9C5B-516DABA72BFB}"
  1127. },
  1128. "contracts": [
  1129. {
  1130. "$type": "SlotTypeContract"
  1131. }
  1132. ],
  1133. "slotName": "Boolean: 1",
  1134. "Descriptor": {
  1135. "ConnectionType": 1,
  1136. "SlotType": 2
  1137. },
  1138. "DataType": 1
  1139. },
  1140. {
  1141. "id": {
  1142. "m_id": "{2FB68547-E454-48ED-8369-380CF24A5046}"
  1143. },
  1144. "contracts": [
  1145. {
  1146. "$type": "SlotTypeContract"
  1147. }
  1148. ],
  1149. "slotName": "In",
  1150. "Descriptor": {
  1151. "ConnectionType": 1,
  1152. "SlotType": 1
  1153. }
  1154. },
  1155. {
  1156. "id": {
  1157. "m_id": "{4BC07C6A-F103-4DDE-B71E-0557673F6D7E}"
  1158. },
  1159. "contracts": [
  1160. {
  1161. "$type": "SlotTypeContract"
  1162. }
  1163. ],
  1164. "slotName": "Out",
  1165. "Descriptor": {
  1166. "ConnectionType": 2,
  1167. "SlotType": 1
  1168. }
  1169. }
  1170. ],
  1171. "Datums": [
  1172. {
  1173. "isOverloadedStorage": false,
  1174. "scriptCanvasType": {
  1175. "m_type": 1
  1176. },
  1177. "isNullPointer": false,
  1178. "$type": "EntityId",
  1179. "value": {
  1180. "id": 2901262558
  1181. },
  1182. "label": "Source"
  1183. },
  1184. {
  1185. "isOverloadedStorage": false,
  1186. "scriptCanvasType": {
  1187. "m_type": 0
  1188. },
  1189. "isNullPointer": false,
  1190. "$type": "bool",
  1191. "value": true,
  1192. "label": "Boolean: 1"
  1193. }
  1194. ],
  1195. "methodType": 0,
  1196. "methodName": "SetVisibility",
  1197. "className": "RenderMeshComponentRequestBus",
  1198. "resultSlotIDs": [
  1199. {}
  1200. ],
  1201. "inputSlots": [
  1202. {
  1203. "m_id": "{F8C01B2A-4E29-4FFF-BD95-84BA179C261D}"
  1204. },
  1205. {
  1206. "m_id": "{F8751D05-26F3-4D97-9C5B-516DABA72BFB}"
  1207. }
  1208. ],
  1209. "prettyClassName": "RenderMeshComponentRequestBus"
  1210. }
  1211. }
  1212. },
  1213. {
  1214. "Id": {
  1215. "id": 222843352895232
  1216. },
  1217. "Name": "SC Node(SetVariable)",
  1218. "Components": {
  1219. "Component_[13292160910373091211]": {
  1220. "$type": "SetVariableNode",
  1221. "Id": 13292160910373091211,
  1222. "Slots": [
  1223. {
  1224. "id": {
  1225. "m_id": "{6D7DED17-45E9-449E-844F-C60385B6A9DC}"
  1226. },
  1227. "contracts": [
  1228. {
  1229. "$type": "SlotTypeContract"
  1230. }
  1231. ],
  1232. "slotName": "In",
  1233. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  1234. "Descriptor": {
  1235. "ConnectionType": 1,
  1236. "SlotType": 1
  1237. }
  1238. },
  1239. {
  1240. "id": {
  1241. "m_id": "{7A82C848-743E-41DB-AC6C-3F57A1E6894B}"
  1242. },
  1243. "contracts": [
  1244. {
  1245. "$type": "SlotTypeContract"
  1246. }
  1247. ],
  1248. "slotName": "Out",
  1249. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1250. "Descriptor": {
  1251. "ConnectionType": 2,
  1252. "SlotType": 1
  1253. }
  1254. },
  1255. {
  1256. "id": {
  1257. "m_id": "{FA8398CC-2F6E-42BC-B80C-599D9BC9583F}"
  1258. },
  1259. "contracts": [
  1260. {
  1261. "$type": "SlotTypeContract"
  1262. }
  1263. ],
  1264. "slotName": "EntityId",
  1265. "Descriptor": {
  1266. "ConnectionType": 1,
  1267. "SlotType": 2
  1268. },
  1269. "DataType": 1
  1270. },
  1271. {
  1272. "id": {
  1273. "m_id": "{352706C9-2A56-414E-8D6D-BCD16C71B7FC}"
  1274. },
  1275. "contracts": [
  1276. {
  1277. "$type": "SlotTypeContract"
  1278. }
  1279. ],
  1280. "slotName": "EntityId",
  1281. "DisplayDataType": {
  1282. "m_type": 1
  1283. },
  1284. "Descriptor": {
  1285. "ConnectionType": 2,
  1286. "SlotType": 2
  1287. },
  1288. "DataType": 1
  1289. }
  1290. ],
  1291. "Datums": [
  1292. {
  1293. "isOverloadedStorage": false,
  1294. "scriptCanvasType": {
  1295. "m_type": 1
  1296. },
  1297. "isNullPointer": false,
  1298. "$type": "EntityId",
  1299. "value": {
  1300. "id": 2901262558
  1301. },
  1302. "label": "EntityId"
  1303. }
  1304. ],
  1305. "m_variableId": {
  1306. "m_id": "{AA7BD1D3-F303-4296-8544-231678555D16}"
  1307. },
  1308. "m_variableDataInSlotId": {
  1309. "m_id": "{FA8398CC-2F6E-42BC-B80C-599D9BC9583F}"
  1310. },
  1311. "m_variableDataOutSlotId": {
  1312. "m_id": "{352706C9-2A56-414E-8D6D-BCD16C71B7FC}"
  1313. }
  1314. }
  1315. }
  1316. },
  1317. {
  1318. "Id": {
  1319. "id": 222869122699008
  1320. },
  1321. "Name": "SC-Node(ScriptCanvas_StringFunctions_Split)",
  1322. "Components": {
  1323. "Component_[13332752479064163597]": {
  1324. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1325. "Id": 13332752479064163597,
  1326. "Slots": [
  1327. {
  1328. "id": {
  1329. "m_id": "{487330D1-165E-4DD5-B674-ABCDDA45559A}"
  1330. },
  1331. "contracts": [
  1332. {
  1333. "$type": "SlotTypeContract"
  1334. }
  1335. ],
  1336. "slotName": "Source",
  1337. "toolTip": "The string to search in.",
  1338. "Descriptor": {
  1339. "ConnectionType": 1,
  1340. "SlotType": 2
  1341. },
  1342. "DataType": 1
  1343. },
  1344. {
  1345. "id": {
  1346. "m_id": "{9361CE77-625D-48AE-AF93-1278CA4EDE07}"
  1347. },
  1348. "contracts": [
  1349. {
  1350. "$type": "SlotTypeContract"
  1351. }
  1352. ],
  1353. "slotName": "Delimiters",
  1354. "toolTip": "The characters that can be used as delimiters.",
  1355. "Descriptor": {
  1356. "ConnectionType": 1,
  1357. "SlotType": 2
  1358. },
  1359. "DataType": 1
  1360. },
  1361. {
  1362. "id": {
  1363. "m_id": "{7F82FB1B-6FFC-4A1C-A727-FE2BB6638624}"
  1364. },
  1365. "contracts": [
  1366. {
  1367. "$type": "SlotTypeContract"
  1368. }
  1369. ],
  1370. "slotName": "In",
  1371. "Descriptor": {
  1372. "ConnectionType": 1,
  1373. "SlotType": 1
  1374. }
  1375. },
  1376. {
  1377. "id": {
  1378. "m_id": "{27D0999B-F0B0-4B4E-8268-DA72C2B8099D}"
  1379. },
  1380. "contracts": [
  1381. {
  1382. "$type": "SlotTypeContract"
  1383. }
  1384. ],
  1385. "slotName": "Out",
  1386. "Descriptor": {
  1387. "ConnectionType": 2,
  1388. "SlotType": 1
  1389. }
  1390. },
  1391. {
  1392. "id": {
  1393. "m_id": "{0B746C04-F29A-4892-B0B2-E468428ABA2D}"
  1394. },
  1395. "contracts": [
  1396. {
  1397. "$type": "SlotTypeContract"
  1398. }
  1399. ],
  1400. "slotName": "Array<String>",
  1401. "DisplayDataType": {
  1402. "m_type": 4,
  1403. "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}"
  1404. },
  1405. "Descriptor": {
  1406. "ConnectionType": 2,
  1407. "SlotType": 2
  1408. },
  1409. "DataType": 1
  1410. }
  1411. ],
  1412. "Datums": [
  1413. {
  1414. "isOverloadedStorage": false,
  1415. "scriptCanvasType": {
  1416. "m_type": 5
  1417. },
  1418. "isNullPointer": false,
  1419. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1420. "value": "",
  1421. "label": "Source"
  1422. },
  1423. {
  1424. "isOverloadedStorage": false,
  1425. "scriptCanvasType": {
  1426. "m_type": 5
  1427. },
  1428. "isNullPointer": false,
  1429. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1430. "value": "_",
  1431. "label": "Delimiters"
  1432. }
  1433. ],
  1434. "methodType": 1,
  1435. "methodName": "ScriptCanvas_StringFunctions_Split",
  1436. "resultSlotIDs": [
  1437. {}
  1438. ],
  1439. "inputSlots": [
  1440. {
  1441. "m_id": "{487330D1-165E-4DD5-B674-ABCDDA45559A}"
  1442. },
  1443. {
  1444. "m_id": "{9361CE77-625D-48AE-AF93-1278CA4EDE07}"
  1445. }
  1446. ],
  1447. "prettyClassName": "ScriptCanvas_StringFunctions_Split"
  1448. }
  1449. }
  1450. },
  1451. {
  1452. "Id": {
  1453. "id": 222890597535488
  1454. },
  1455. "Name": "SC-Node(ScriptCanvas_EntityFunctions_IsValid)",
  1456. "Components": {
  1457. "Component_[13438748972182302357]": {
  1458. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1459. "Id": 13438748972182302357,
  1460. "Slots": [
  1461. {
  1462. "id": {
  1463. "m_id": "{5ACA7C1A-DCA1-4B5C-A042-2FECF26095D2}"
  1464. },
  1465. "contracts": [
  1466. {
  1467. "$type": "SlotTypeContract"
  1468. }
  1469. ],
  1470. "slotName": "EntityId",
  1471. "toolTip": "The entity to check.",
  1472. "Descriptor": {
  1473. "ConnectionType": 1,
  1474. "SlotType": 2
  1475. },
  1476. "DataType": 1,
  1477. "IsReference": true,
  1478. "VariableReference": {
  1479. "m_id": "{62ECF824-2489-4C8D-A72B-518A6BDAC63B}"
  1480. }
  1481. },
  1482. {
  1483. "id": {
  1484. "m_id": "{AECB7790-56B0-4062-BFA4-348459B12315}"
  1485. },
  1486. "contracts": [
  1487. {
  1488. "$type": "SlotTypeContract"
  1489. }
  1490. ],
  1491. "slotName": "In",
  1492. "Descriptor": {
  1493. "ConnectionType": 1,
  1494. "SlotType": 1
  1495. }
  1496. },
  1497. {
  1498. "id": {
  1499. "m_id": "{457A1FA0-65A6-4732-A191-2A4750220EF9}"
  1500. },
  1501. "contracts": [
  1502. {
  1503. "$type": "SlotTypeContract"
  1504. }
  1505. ],
  1506. "slotName": "Out",
  1507. "Descriptor": {
  1508. "ConnectionType": 2,
  1509. "SlotType": 1
  1510. }
  1511. },
  1512. {
  1513. "id": {
  1514. "m_id": "{F85CFE64-EB5A-42E7-90AF-D37BF9FDDE1B}"
  1515. },
  1516. "contracts": [
  1517. {
  1518. "$type": "SlotTypeContract"
  1519. }
  1520. ],
  1521. "slotName": "Boolean",
  1522. "DisplayDataType": {
  1523. "m_type": 0
  1524. },
  1525. "Descriptor": {
  1526. "ConnectionType": 2,
  1527. "SlotType": 2
  1528. },
  1529. "DataType": 1
  1530. }
  1531. ],
  1532. "Datums": [
  1533. {
  1534. "isOverloadedStorage": false,
  1535. "scriptCanvasType": {
  1536. "m_type": 1
  1537. },
  1538. "isNullPointer": false,
  1539. "$type": "EntityId",
  1540. "value": {
  1541. "id": 2901262558
  1542. },
  1543. "label": "Entity Id"
  1544. }
  1545. ],
  1546. "methodType": 1,
  1547. "methodName": "ScriptCanvas_EntityFunctions_IsValid",
  1548. "resultSlotIDs": [
  1549. {}
  1550. ],
  1551. "inputSlots": [
  1552. {
  1553. "m_id": "{5ACA7C1A-DCA1-4B5C-A042-2FECF26095D2}"
  1554. }
  1555. ],
  1556. "prettyClassName": "ScriptCanvas_EntityFunctions_IsValid"
  1557. }
  1558. }
  1559. },
  1560. {
  1561. "Id": {
  1562. "id": 222997971717888
  1563. },
  1564. "Name": "SC Node(SetVariable)",
  1565. "Components": {
  1566. "Component_[134442879743470940]": {
  1567. "$type": "SetVariableNode",
  1568. "Id": 134442879743470940,
  1569. "Slots": [
  1570. {
  1571. "id": {
  1572. "m_id": "{5829C658-C957-48AC-B5E9-7CB8C20F5A2F}"
  1573. },
  1574. "contracts": [
  1575. {
  1576. "$type": "SlotTypeContract"
  1577. }
  1578. ],
  1579. "slotName": "In",
  1580. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  1581. "Descriptor": {
  1582. "ConnectionType": 1,
  1583. "SlotType": 1
  1584. }
  1585. },
  1586. {
  1587. "id": {
  1588. "m_id": "{0CBE12A8-A99A-41B4-B72F-05D1039E45E0}"
  1589. },
  1590. "contracts": [
  1591. {
  1592. "$type": "SlotTypeContract"
  1593. }
  1594. ],
  1595. "slotName": "Out",
  1596. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1597. "Descriptor": {
  1598. "ConnectionType": 2,
  1599. "SlotType": 1
  1600. }
  1601. },
  1602. {
  1603. "id": {
  1604. "m_id": "{23D4FFE2-E2D4-4CE5-B8B2-A5A755E954E3}"
  1605. },
  1606. "contracts": [
  1607. {
  1608. "$type": "SlotTypeContract"
  1609. }
  1610. ],
  1611. "slotName": "EntityId",
  1612. "Descriptor": {
  1613. "ConnectionType": 1,
  1614. "SlotType": 2
  1615. },
  1616. "DataType": 1
  1617. },
  1618. {
  1619. "id": {
  1620. "m_id": "{7180F940-B90E-49E9-B6F6-7F5E1AC3C8CE}"
  1621. },
  1622. "contracts": [
  1623. {
  1624. "$type": "SlotTypeContract"
  1625. }
  1626. ],
  1627. "slotName": "EntityId",
  1628. "DisplayDataType": {
  1629. "m_type": 1
  1630. },
  1631. "Descriptor": {
  1632. "ConnectionType": 2,
  1633. "SlotType": 2
  1634. },
  1635. "DataType": 1
  1636. }
  1637. ],
  1638. "Datums": [
  1639. {
  1640. "isOverloadedStorage": false,
  1641. "scriptCanvasType": {
  1642. "m_type": 1
  1643. },
  1644. "isNullPointer": false,
  1645. "$type": "EntityId",
  1646. "value": {
  1647. "id": 2901262558
  1648. },
  1649. "label": "EntityId"
  1650. }
  1651. ],
  1652. "m_variableId": {
  1653. "m_id": "{96D1005F-62AA-493E-977C-BE75523820B7}"
  1654. },
  1655. "m_variableDataInSlotId": {
  1656. "m_id": "{23D4FFE2-E2D4-4CE5-B8B2-A5A755E954E3}"
  1657. },
  1658. "m_variableDataOutSlotId": {
  1659. "m_id": "{7180F940-B90E-49E9-B6F6-7F5E1AC3C8CE}"
  1660. }
  1661. }
  1662. }
  1663. },
  1664. {
  1665. "Id": {
  1666. "id": 222929252241152
  1667. },
  1668. "Name": "SC-Node(ScriptCanvas_StringFunctions_EndsWith)",
  1669. "Components": {
  1670. "Component_[13662419586116334066]": {
  1671. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1672. "Id": 13662419586116334066,
  1673. "Slots": [
  1674. {
  1675. "id": {
  1676. "m_id": "{5FBBA5E0-F942-4A75-A08F-69434A9E0F99}"
  1677. },
  1678. "contracts": [
  1679. {
  1680. "$type": "SlotTypeContract"
  1681. }
  1682. ],
  1683. "slotName": "Source",
  1684. "toolTip": "The string to search in.",
  1685. "Descriptor": {
  1686. "ConnectionType": 1,
  1687. "SlotType": 2
  1688. },
  1689. "DataType": 1
  1690. },
  1691. {
  1692. "id": {
  1693. "m_id": "{7CAF8976-C5B0-4CD2-9AC8-43BCE1B9C555}"
  1694. },
  1695. "contracts": [
  1696. {
  1697. "$type": "SlotTypeContract"
  1698. }
  1699. ],
  1700. "slotName": "Pattern",
  1701. "toolTip": "The substring to search for.",
  1702. "Descriptor": {
  1703. "ConnectionType": 1,
  1704. "SlotType": 2
  1705. },
  1706. "DataType": 1
  1707. },
  1708. {
  1709. "id": {
  1710. "m_id": "{B6425DBE-EA9A-4310-A266-E7AEC1B36B78}"
  1711. },
  1712. "contracts": [
  1713. {
  1714. "$type": "SlotTypeContract"
  1715. }
  1716. ],
  1717. "slotName": "Case Sensitive",
  1718. "toolTip": "Take into account the case of the string when searching.",
  1719. "Descriptor": {
  1720. "ConnectionType": 1,
  1721. "SlotType": 2
  1722. },
  1723. "DataType": 1
  1724. },
  1725. {
  1726. "id": {
  1727. "m_id": "{3E2CDE5F-CCA7-4A78-BA3B-9DFE13093918}"
  1728. },
  1729. "contracts": [
  1730. {
  1731. "$type": "SlotTypeContract"
  1732. }
  1733. ],
  1734. "slotName": "In",
  1735. "Descriptor": {
  1736. "ConnectionType": 1,
  1737. "SlotType": 1
  1738. }
  1739. },
  1740. {
  1741. "id": {
  1742. "m_id": "{B541231A-30E5-4397-A831-5525AF80C682}"
  1743. },
  1744. "contracts": [
  1745. {
  1746. "$type": "SlotTypeContract"
  1747. }
  1748. ],
  1749. "slotName": "True",
  1750. "Descriptor": {
  1751. "ConnectionType": 2,
  1752. "SlotType": 1
  1753. }
  1754. },
  1755. {
  1756. "id": {
  1757. "m_id": "{FD02D2D4-46E8-444A-B245-FCE6E8BE39E1}"
  1758. },
  1759. "contracts": [
  1760. {
  1761. "$type": "SlotTypeContract"
  1762. }
  1763. ],
  1764. "slotName": "False",
  1765. "Descriptor": {
  1766. "ConnectionType": 2,
  1767. "SlotType": 1
  1768. }
  1769. },
  1770. {
  1771. "isVisibile": false,
  1772. "id": {
  1773. "m_id": "{225397BE-56BC-4871-A755-76ECA661A22D}"
  1774. },
  1775. "contracts": [
  1776. {
  1777. "$type": "SlotTypeContract"
  1778. }
  1779. ],
  1780. "slotName": "Boolean",
  1781. "DisplayDataType": {
  1782. "m_type": 0
  1783. },
  1784. "Descriptor": {
  1785. "ConnectionType": 2,
  1786. "SlotType": 2
  1787. },
  1788. "DataType": 1
  1789. }
  1790. ],
  1791. "Datums": [
  1792. {
  1793. "isOverloadedStorage": false,
  1794. "scriptCanvasType": {
  1795. "m_type": 5
  1796. },
  1797. "isNullPointer": false,
  1798. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1799. "value": "",
  1800. "label": "Source"
  1801. },
  1802. {
  1803. "isOverloadedStorage": false,
  1804. "scriptCanvasType": {
  1805. "m_type": 5
  1806. },
  1807. "isNullPointer": false,
  1808. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1809. "value": "Newspaper",
  1810. "label": "Pattern"
  1811. },
  1812. {
  1813. "isOverloadedStorage": false,
  1814. "scriptCanvasType": {
  1815. "m_type": 0
  1816. },
  1817. "isNullPointer": false,
  1818. "$type": "bool",
  1819. "value": true,
  1820. "label": "Case Sensitive"
  1821. }
  1822. ],
  1823. "methodType": 1,
  1824. "methodName": "ScriptCanvas_StringFunctions_EndsWith",
  1825. "resultSlotIDs": [
  1826. {}
  1827. ],
  1828. "inputSlots": [
  1829. {
  1830. "m_id": "{5FBBA5E0-F942-4A75-A08F-69434A9E0F99}"
  1831. },
  1832. {
  1833. "m_id": "{7CAF8976-C5B0-4CD2-9AC8-43BCE1B9C555}"
  1834. },
  1835. {
  1836. "m_id": "{B6425DBE-EA9A-4310-A266-E7AEC1B36B78}"
  1837. }
  1838. ],
  1839. "prettyClassName": "ScriptCanvas_StringFunctions_EndsWith"
  1840. }
  1841. }
  1842. },
  1843. {
  1844. "Id": {
  1845. "id": 222963611979520
  1846. },
  1847. "Name": "SC-Node(ScriptCanvas_MathFunctions_StringToNumber)",
  1848. "Components": {
  1849. "Component_[14230853819506184671]": {
  1850. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1851. "Id": 14230853819506184671,
  1852. "Slots": [
  1853. {
  1854. "id": {
  1855. "m_id": "{344D724F-E41B-4812-8FA5-06399BE043B5}"
  1856. },
  1857. "contracts": [
  1858. {
  1859. "$type": "SlotTypeContract"
  1860. }
  1861. ],
  1862. "slotName": "Value",
  1863. "Descriptor": {
  1864. "ConnectionType": 1,
  1865. "SlotType": 2
  1866. },
  1867. "DataType": 1
  1868. },
  1869. {
  1870. "id": {
  1871. "m_id": "{360255AB-7157-4B24-9259-6F3FAD40314E}"
  1872. },
  1873. "contracts": [
  1874. {
  1875. "$type": "SlotTypeContract"
  1876. }
  1877. ],
  1878. "slotName": "In",
  1879. "Descriptor": {
  1880. "ConnectionType": 1,
  1881. "SlotType": 1
  1882. }
  1883. },
  1884. {
  1885. "id": {
  1886. "m_id": "{10043290-9328-417B-89A3-2B486FD012E4}"
  1887. },
  1888. "contracts": [
  1889. {
  1890. "$type": "SlotTypeContract"
  1891. }
  1892. ],
  1893. "slotName": "Out",
  1894. "Descriptor": {
  1895. "ConnectionType": 2,
  1896. "SlotType": 1
  1897. }
  1898. },
  1899. {
  1900. "id": {
  1901. "m_id": "{8F31F6D8-91CB-4E0D-AFB7-597D9D060474}"
  1902. },
  1903. "contracts": [
  1904. {
  1905. "$type": "SlotTypeContract"
  1906. }
  1907. ],
  1908. "slotName": "Number",
  1909. "DisplayDataType": {
  1910. "m_type": 3
  1911. },
  1912. "Descriptor": {
  1913. "ConnectionType": 2,
  1914. "SlotType": 2
  1915. },
  1916. "DataType": 1
  1917. }
  1918. ],
  1919. "Datums": [
  1920. {
  1921. "isOverloadedStorage": false,
  1922. "scriptCanvasType": {
  1923. "m_type": 5
  1924. },
  1925. "isNullPointer": false,
  1926. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1927. "value": "",
  1928. "label": "Value"
  1929. }
  1930. ],
  1931. "methodType": 1,
  1932. "methodName": "ScriptCanvas_MathFunctions_StringToNumber",
  1933. "resultSlotIDs": [
  1934. {}
  1935. ],
  1936. "inputSlots": [
  1937. {
  1938. "m_id": "{344D724F-E41B-4812-8FA5-06399BE043B5}"
  1939. }
  1940. ],
  1941. "prettyClassName": "ScriptCanvas_MathFunctions_StringToNumber"
  1942. }
  1943. }
  1944. },
  1945. {
  1946. "Id": {
  1947. "id": 222808993156864
  1948. },
  1949. "Name": "SendScriptEvent",
  1950. "Components": {
  1951. "Component_[14435463074238276290]": {
  1952. "$type": "SendScriptEvent",
  1953. "Id": 14435463074238276290,
  1954. "Slots": [
  1955. {
  1956. "id": {
  1957. "m_id": "{F15EE588-4D3C-4F3A-8309-659745E6B30A}"
  1958. },
  1959. "contracts": [
  1960. {
  1961. "$type": "SlotTypeContract"
  1962. }
  1963. ],
  1964. "slotName": "In",
  1965. "toolTip": "Fires the specified ScriptEvent when signaled",
  1966. "Descriptor": {
  1967. "ConnectionType": 1,
  1968. "SlotType": 1
  1969. }
  1970. },
  1971. {
  1972. "id": {
  1973. "m_id": "{6EFBC74F-673A-41C8-A0DF-05E574D403F0}"
  1974. },
  1975. "contracts": [
  1976. {
  1977. "$type": "SlotTypeContract"
  1978. }
  1979. ],
  1980. "slotName": "Out",
  1981. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  1982. "Descriptor": {
  1983. "ConnectionType": 2,
  1984. "SlotType": 1
  1985. }
  1986. },
  1987. {
  1988. "id": {
  1989. "m_id": "{0B4F4B36-2F6E-443F-9BA1-CAF5681919FE}"
  1990. },
  1991. "contracts": [
  1992. {
  1993. "$type": "SlotTypeContract"
  1994. }
  1995. ],
  1996. "slotName": "Points",
  1997. "Descriptor": {
  1998. "ConnectionType": 1,
  1999. "SlotType": 2
  2000. },
  2001. "DataType": 1
  2002. }
  2003. ],
  2004. "Datums": [
  2005. {
  2006. "isOverloadedStorage": false,
  2007. "scriptCanvasType": {
  2008. "m_type": 3
  2009. },
  2010. "isNullPointer": false,
  2011. "$type": "double",
  2012. "value": 0.0,
  2013. "label": "Points"
  2014. }
  2015. ],
  2016. "m_version": 11,
  2017. "m_eventSlotMapping": {
  2018. "{FB6E6EE6-0A89-4C88-909A-0190D98BE4DE}": {
  2019. "m_id": "{0B4F4B36-2F6E-443F-9BA1-CAF5681919FE}"
  2020. }
  2021. },
  2022. "m_scriptEventAssetId": {
  2023. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  2024. },
  2025. "m_asset": {
  2026. "assetId": {
  2027. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  2028. },
  2029. "loadBehavior": "PreLoad",
  2030. "assetHint": "scriptcanvas/paper_kid_script_events.scriptevents"
  2031. },
  2032. "m_busId": {
  2033. "Value": 1894911424
  2034. },
  2035. "m_eventId": {
  2036. "Value": 3434847886
  2037. }
  2038. }
  2039. }
  2040. },
  2041. {
  2042. "Id": {
  2043. "id": 222834762960640
  2044. },
  2045. "Name": "SC-Node(GetOnTriggerEnterEvent)",
  2046. "Components": {
  2047. "Component_[14488796681367080236]": {
  2048. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2049. "Id": 14488796681367080236,
  2050. "Slots": [
  2051. {
  2052. "id": {
  2053. "m_id": "{BDE0E2F5-E879-446A-B9F4-182EACAC5008}"
  2054. },
  2055. "contracts": [
  2056. {
  2057. "$type": "SlotTypeContract"
  2058. }
  2059. ],
  2060. "slotName": "EntityId",
  2061. "Descriptor": {
  2062. "ConnectionType": 1,
  2063. "SlotType": 2
  2064. },
  2065. "DataType": 1
  2066. },
  2067. {
  2068. "id": {
  2069. "m_id": "{10279785-48A4-4640-B710-0D39C9BA4170}"
  2070. },
  2071. "contracts": [
  2072. {
  2073. "$type": "SlotTypeContract"
  2074. }
  2075. ],
  2076. "slotName": "In",
  2077. "Descriptor": {
  2078. "ConnectionType": 1,
  2079. "SlotType": 1
  2080. }
  2081. },
  2082. {
  2083. "id": {
  2084. "m_id": "{40B0E3DB-3848-47F1-9B6B-05F951B99DF3}"
  2085. },
  2086. "contracts": [
  2087. {
  2088. "$type": "SlotTypeContract"
  2089. }
  2090. ],
  2091. "slotName": "Out",
  2092. "Descriptor": {
  2093. "ConnectionType": 2,
  2094. "SlotType": 1
  2095. }
  2096. },
  2097. {
  2098. "id": {
  2099. "m_id": "{19AABC8C-2B82-4D3D-85F0-4B9381B204FB}"
  2100. },
  2101. "contracts": [
  2102. {
  2103. "$type": "SlotTypeContract"
  2104. }
  2105. ],
  2106. "slotName": "Event<AZStd::tuple<Crc32, int>, const TriggerEvent&>",
  2107. "DisplayDataType": {
  2108. "m_type": 4,
  2109. "m_azType": "{C00D2478-E0F3-57A3-AB60-A04DFC515016}"
  2110. },
  2111. "Descriptor": {
  2112. "ConnectionType": 2,
  2113. "SlotType": 2
  2114. },
  2115. "DataType": 1
  2116. }
  2117. ],
  2118. "Datums": [
  2119. {
  2120. "isOverloadedStorage": false,
  2121. "scriptCanvasType": {
  2122. "m_type": 1
  2123. },
  2124. "isNullPointer": false,
  2125. "$type": "EntityId",
  2126. "value": {
  2127. "id": 2901262558
  2128. },
  2129. "label": "Entity Id"
  2130. }
  2131. ],
  2132. "methodType": 2,
  2133. "methodName": "GetOnTriggerEnterEvent",
  2134. "className": "SimulatedBody",
  2135. "resultSlotIDs": [
  2136. {}
  2137. ],
  2138. "inputSlots": [
  2139. {
  2140. "m_id": "{BDE0E2F5-E879-446A-B9F4-182EACAC5008}"
  2141. }
  2142. ],
  2143. "prettyClassName": "SimulatedBody"
  2144. }
  2145. }
  2146. },
  2147. {
  2148. "Id": {
  2149. "id": 222860532764416
  2150. },
  2151. "Name": "SC-EventNode(On Trigger Enter event)",
  2152. "Components": {
  2153. "Component_[14658097990780708242]": {
  2154. "$type": "AzEventHandler",
  2155. "Id": 14658097990780708242,
  2156. "Slots": [
  2157. {
  2158. "id": {
  2159. "m_id": "{954EAFB9-5B35-4863-BF30-438832F16777}"
  2160. },
  2161. "contracts": [
  2162. {
  2163. "$type": "SlotTypeContract"
  2164. },
  2165. {
  2166. "$type": "ConnectionLimitContract",
  2167. "limit": 1
  2168. },
  2169. {
  2170. "$type": "RestrictedNodeContract",
  2171. "m_nodeId": {
  2172. "id": 222834762960640
  2173. }
  2174. }
  2175. ],
  2176. "slotName": "Connect",
  2177. "toolTip": "Connect the AZ Event to this AZ Event Handler.",
  2178. "Descriptor": {
  2179. "ConnectionType": 1,
  2180. "SlotType": 1
  2181. }
  2182. },
  2183. {
  2184. "id": {
  2185. "m_id": "{6D27F633-1875-4ABB-ACCE-C1FABB741B58}"
  2186. },
  2187. "contracts": [
  2188. {
  2189. "$type": "SlotTypeContract"
  2190. }
  2191. ],
  2192. "slotName": "Disconnect",
  2193. "toolTip": "Disconnect current AZ Event from this AZ Event Handler.",
  2194. "Descriptor": {
  2195. "ConnectionType": 1,
  2196. "SlotType": 1
  2197. }
  2198. },
  2199. {
  2200. "id": {
  2201. "m_id": "{8CCE2C45-3962-45A0-B1A0-E95D3149246E}"
  2202. },
  2203. "contracts": [
  2204. {
  2205. "$type": "SlotTypeContract"
  2206. }
  2207. ],
  2208. "slotName": "On Connected",
  2209. "toolTip": "Signaled when a connection has taken place.",
  2210. "Descriptor": {
  2211. "ConnectionType": 2,
  2212. "SlotType": 1
  2213. }
  2214. },
  2215. {
  2216. "id": {
  2217. "m_id": "{382335F8-2564-4466-9786-92DC92E78265}"
  2218. },
  2219. "contracts": [
  2220. {
  2221. "$type": "SlotTypeContract"
  2222. }
  2223. ],
  2224. "slotName": "On Disconnected",
  2225. "toolTip": "Signaled when this event handler is disconnected.",
  2226. "Descriptor": {
  2227. "ConnectionType": 2,
  2228. "SlotType": 1
  2229. }
  2230. },
  2231. {
  2232. "id": {
  2233. "m_id": "{B7D21051-E978-4A0B-ADF8-A69E865FFF9D}"
  2234. },
  2235. "contracts": [
  2236. {
  2237. "$type": "SlotTypeContract"
  2238. }
  2239. ],
  2240. "slotName": "OnEvent",
  2241. "toolTip": "Triggered when the AZ Event invokes Signal() function.",
  2242. "Descriptor": {
  2243. "ConnectionType": 2,
  2244. "SlotType": 1
  2245. },
  2246. "IsLatent": true
  2247. },
  2248. {
  2249. "id": {
  2250. "m_id": "{68D755C3-001E-406E-912B-85D3CE41F3BC}"
  2251. },
  2252. "contracts": [
  2253. {
  2254. "$type": "SlotTypeContract"
  2255. }
  2256. ],
  2257. "slotName": "Simulated Body Handle",
  2258. "DisplayDataType": {
  2259. "m_type": 4,
  2260. "m_azType": "{53C0CD3E-D0FC-5D90-9E9B-EF364D430B08}"
  2261. },
  2262. "Descriptor": {
  2263. "ConnectionType": 2,
  2264. "SlotType": 2
  2265. },
  2266. "DataType": 1
  2267. },
  2268. {
  2269. "id": {
  2270. "m_id": "{81922A76-4BFE-4EB4-8929-28DE937AAB21}"
  2271. },
  2272. "contracts": [
  2273. {
  2274. "$type": "SlotTypeContract"
  2275. }
  2276. ],
  2277. "slotName": "Trigger Event",
  2278. "DisplayDataType": {
  2279. "m_type": 4,
  2280. "m_azType": "{7A0851A3-2CBD-4A03-85D5-1C40221E7F61}"
  2281. },
  2282. "Descriptor": {
  2283. "ConnectionType": 2,
  2284. "SlotType": 2
  2285. },
  2286. "DataType": 1
  2287. },
  2288. {
  2289. "id": {
  2290. "m_id": "{CCBF7196-8036-48D6-A4E3-00D2C302494B}"
  2291. },
  2292. "contracts": [
  2293. {
  2294. "$type": "SlotTypeContract"
  2295. },
  2296. {
  2297. "$type": "ConnectionLimitContract",
  2298. "limit": 1
  2299. },
  2300. {
  2301. "$type": "RestrictedNodeContract",
  2302. "m_nodeId": {
  2303. "id": 222834762960640
  2304. }
  2305. }
  2306. ],
  2307. "slotName": "On Trigger Enter event",
  2308. "Descriptor": {
  2309. "ConnectionType": 1,
  2310. "SlotType": 2
  2311. },
  2312. "DataType": 1
  2313. }
  2314. ],
  2315. "Datums": [
  2316. {
  2317. "scriptCanvasType": {
  2318. "m_type": 4,
  2319. "m_azType": "{C00D2478-E0F3-57A3-AB60-A04DFC515016}"
  2320. },
  2321. "isNullPointer": true,
  2322. "label": "On Trigger Enter event"
  2323. }
  2324. ],
  2325. "m_azEventEntry": {
  2326. "AzEventEntryData_v0": {
  2327. "eventName": "On Trigger Enter event",
  2328. "parameterSlotIds": [
  2329. {
  2330. "m_id": "{68D755C3-001E-406E-912B-85D3CE41F3BC}"
  2331. },
  2332. {
  2333. "m_id": "{81922A76-4BFE-4EB4-8929-28DE937AAB21}"
  2334. }
  2335. ],
  2336. "azEventInputSlotId": {
  2337. "m_id": "{CCBF7196-8036-48D6-A4E3-00D2C302494B}"
  2338. }
  2339. }
  2340. }
  2341. }
  2342. }
  2343. },
  2344. {
  2345. "Id": {
  2346. "id": 222882007600896
  2347. },
  2348. "Name": "SC-Node(TimeDelayNodeableNode)",
  2349. "Components": {
  2350. "Component_[15019789608538326359]": {
  2351. "$type": "TimeDelayNodeableNode",
  2352. "Id": 15019789608538326359,
  2353. "Slots": [
  2354. {
  2355. "id": {
  2356. "m_id": "{7FCF4933-78EF-4493-B285-56B9CEC57E03}"
  2357. },
  2358. "contracts": [
  2359. {
  2360. "$type": "SlotTypeContract"
  2361. }
  2362. ],
  2363. "slotName": "Start",
  2364. "DisplayGroup": {
  2365. "Value": 2675529103
  2366. },
  2367. "Descriptor": {
  2368. "ConnectionType": 1,
  2369. "SlotType": 1
  2370. }
  2371. },
  2372. {
  2373. "id": {
  2374. "m_id": "{1096AA72-1A94-4C06-8E96-6E48DAB6A1CA}"
  2375. },
  2376. "contracts": [
  2377. {
  2378. "$type": "SlotTypeContract"
  2379. }
  2380. ],
  2381. "slotName": "Delay",
  2382. "toolTip": "The amount of time to delay before the Done is signalled.",
  2383. "DisplayGroup": {
  2384. "Value": 2675529103
  2385. },
  2386. "Descriptor": {
  2387. "ConnectionType": 1,
  2388. "SlotType": 2
  2389. },
  2390. "DataType": 1
  2391. },
  2392. {
  2393. "id": {
  2394. "m_id": "{5D466C27-B300-4BDA-B495-2F2C31418002}"
  2395. },
  2396. "contracts": [
  2397. {
  2398. "$type": "SlotTypeContract"
  2399. }
  2400. ],
  2401. "slotName": "On Start",
  2402. "DisplayGroup": {
  2403. "Value": 2675529103
  2404. },
  2405. "Descriptor": {
  2406. "ConnectionType": 2,
  2407. "SlotType": 1
  2408. }
  2409. },
  2410. {
  2411. "id": {
  2412. "m_id": "{C0C2AE43-D89B-4040-9421-90D345467985}"
  2413. },
  2414. "contracts": [
  2415. {
  2416. "$type": "SlotTypeContract"
  2417. }
  2418. ],
  2419. "slotName": "Done",
  2420. "toolTip": "Signaled after waiting for the specified amount of times.",
  2421. "DisplayGroup": {
  2422. "Value": 271442091
  2423. },
  2424. "Descriptor": {
  2425. "ConnectionType": 2,
  2426. "SlotType": 1
  2427. },
  2428. "IsLatent": true
  2429. }
  2430. ],
  2431. "Datums": [
  2432. {
  2433. "isOverloadedStorage": false,
  2434. "scriptCanvasType": {
  2435. "m_type": 3
  2436. },
  2437. "isNullPointer": false,
  2438. "$type": "double",
  2439. "value": 1.0,
  2440. "label": "Delay"
  2441. }
  2442. ],
  2443. "slotExecutionMap": {
  2444. "ins": [
  2445. {
  2446. "_slotId": {
  2447. "m_id": "{7FCF4933-78EF-4493-B285-56B9CEC57E03}"
  2448. },
  2449. "_inputs": [
  2450. {
  2451. "_slotId": {
  2452. "m_id": "{1096AA72-1A94-4C06-8E96-6E48DAB6A1CA}"
  2453. }
  2454. }
  2455. ],
  2456. "_outs": [
  2457. {
  2458. "_slotId": {
  2459. "m_id": "{5D466C27-B300-4BDA-B495-2F2C31418002}"
  2460. },
  2461. "_name": "On Start",
  2462. "_interfaceSourceId": "{00000000-0000-0000-8579-0D93FF7F0000}"
  2463. }
  2464. ],
  2465. "_interfaceSourceId": "{20000000-0000-0000-0000-000000000000}"
  2466. }
  2467. ],
  2468. "latents": [
  2469. {
  2470. "_slotId": {
  2471. "m_id": "{C0C2AE43-D89B-4040-9421-90D345467985}"
  2472. },
  2473. "_name": "Done",
  2474. "_interfaceSourceId": "{20000000-0000-0000-0000-000000000000}"
  2475. }
  2476. ]
  2477. }
  2478. }
  2479. }
  2480. },
  2481. {
  2482. "Id": {
  2483. "id": 222916367339264
  2484. },
  2485. "Name": "SC-Node(GetParentId)",
  2486. "Components": {
  2487. "Component_[15122209511079496031]": {
  2488. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2489. "Id": 15122209511079496031,
  2490. "Slots": [
  2491. {
  2492. "id": {
  2493. "m_id": "{8655A30C-588F-4A31-91BD-892E11145E9A}"
  2494. },
  2495. "contracts": [
  2496. {
  2497. "$type": "SlotTypeContract"
  2498. }
  2499. ],
  2500. "slotName": "EntityId",
  2501. "Descriptor": {
  2502. "ConnectionType": 1,
  2503. "SlotType": 2
  2504. },
  2505. "DataType": 1
  2506. },
  2507. {
  2508. "id": {
  2509. "m_id": "{C785E74C-B8A5-4432-AF84-A1A663E29B1E}"
  2510. },
  2511. "contracts": [
  2512. {
  2513. "$type": "SlotTypeContract"
  2514. }
  2515. ],
  2516. "slotName": "In",
  2517. "Descriptor": {
  2518. "ConnectionType": 1,
  2519. "SlotType": 1
  2520. }
  2521. },
  2522. {
  2523. "id": {
  2524. "m_id": "{83A613B2-62B3-4571-BF91-854C8B90466E}"
  2525. },
  2526. "contracts": [
  2527. {
  2528. "$type": "SlotTypeContract"
  2529. }
  2530. ],
  2531. "slotName": "Out",
  2532. "Descriptor": {
  2533. "ConnectionType": 2,
  2534. "SlotType": 1
  2535. }
  2536. },
  2537. {
  2538. "id": {
  2539. "m_id": "{BF0216B6-1DEB-4140-BC61-A9A1FD6AA8A8}"
  2540. },
  2541. "contracts": [
  2542. {
  2543. "$type": "SlotTypeContract"
  2544. }
  2545. ],
  2546. "slotName": "EntityId",
  2547. "DisplayDataType": {
  2548. "m_type": 1
  2549. },
  2550. "Descriptor": {
  2551. "ConnectionType": 2,
  2552. "SlotType": 2
  2553. },
  2554. "DataType": 1
  2555. }
  2556. ],
  2557. "Datums": [
  2558. {
  2559. "isOverloadedStorage": false,
  2560. "scriptCanvasType": {
  2561. "m_type": 1
  2562. },
  2563. "isNullPointer": false,
  2564. "$type": "EntityId",
  2565. "value": {
  2566. "id": 2901262558
  2567. },
  2568. "label": "EntityId"
  2569. }
  2570. ],
  2571. "methodType": 0,
  2572. "methodName": "GetParentId",
  2573. "className": "TransformBus",
  2574. "resultSlotIDs": [
  2575. {}
  2576. ],
  2577. "inputSlots": [
  2578. {
  2579. "m_id": "{8655A30C-588F-4A31-91BD-892E11145E9A}"
  2580. }
  2581. ],
  2582. "prettyClassName": "TransformBus"
  2583. }
  2584. }
  2585. },
  2586. {
  2587. "Id": {
  2588. "id": 222985086816000
  2589. },
  2590. "Name": "SC-Node(GetParentId)",
  2591. "Components": {
  2592. "Component_[15122209511079496031]": {
  2593. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2594. "Id": 15122209511079496031,
  2595. "Slots": [
  2596. {
  2597. "id": {
  2598. "m_id": "{8655A30C-588F-4A31-91BD-892E11145E9A}"
  2599. },
  2600. "contracts": [
  2601. {
  2602. "$type": "SlotTypeContract"
  2603. }
  2604. ],
  2605. "slotName": "EntityId",
  2606. "Descriptor": {
  2607. "ConnectionType": 1,
  2608. "SlotType": 2
  2609. },
  2610. "DataType": 1
  2611. },
  2612. {
  2613. "id": {
  2614. "m_id": "{C785E74C-B8A5-4432-AF84-A1A663E29B1E}"
  2615. },
  2616. "contracts": [
  2617. {
  2618. "$type": "SlotTypeContract"
  2619. }
  2620. ],
  2621. "slotName": "In",
  2622. "Descriptor": {
  2623. "ConnectionType": 1,
  2624. "SlotType": 1
  2625. }
  2626. },
  2627. {
  2628. "id": {
  2629. "m_id": "{83A613B2-62B3-4571-BF91-854C8B90466E}"
  2630. },
  2631. "contracts": [
  2632. {
  2633. "$type": "SlotTypeContract"
  2634. }
  2635. ],
  2636. "slotName": "Out",
  2637. "Descriptor": {
  2638. "ConnectionType": 2,
  2639. "SlotType": 1
  2640. }
  2641. },
  2642. {
  2643. "id": {
  2644. "m_id": "{BF0216B6-1DEB-4140-BC61-A9A1FD6AA8A8}"
  2645. },
  2646. "contracts": [
  2647. {
  2648. "$type": "SlotTypeContract"
  2649. }
  2650. ],
  2651. "slotName": "EntityId",
  2652. "DisplayDataType": {
  2653. "m_type": 1
  2654. },
  2655. "Descriptor": {
  2656. "ConnectionType": 2,
  2657. "SlotType": 2
  2658. },
  2659. "DataType": 1
  2660. }
  2661. ],
  2662. "Datums": [
  2663. {
  2664. "isOverloadedStorage": false,
  2665. "scriptCanvasType": {
  2666. "m_type": 1
  2667. },
  2668. "isNullPointer": false,
  2669. "$type": "EntityId",
  2670. "value": {
  2671. "id": 2901262558
  2672. },
  2673. "label": "EntityId"
  2674. }
  2675. ],
  2676. "methodType": 0,
  2677. "methodName": "GetParentId",
  2678. "className": "TransformBus",
  2679. "resultSlotIDs": [
  2680. {}
  2681. ],
  2682. "inputSlots": [
  2683. {
  2684. "m_id": "{8655A30C-588F-4A31-91BD-892E11145E9A}"
  2685. }
  2686. ],
  2687. "prettyClassName": "TransformBus"
  2688. }
  2689. }
  2690. },
  2691. {
  2692. "Id": {
  2693. "id": 514901129023232
  2694. },
  2695. "Name": "SC-Node(GetOtherEntityId)",
  2696. "Components": {
  2697. "Component_[15374500770998360039]": {
  2698. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2699. "Id": 15374500770998360039,
  2700. "Slots": [
  2701. {
  2702. "id": {
  2703. "m_id": "{A96105BA-25E3-4362-B46C-0A517B8D9CB0}"
  2704. },
  2705. "contracts": [
  2706. {
  2707. "$type": "SlotTypeContract"
  2708. }
  2709. ],
  2710. "slotName": "TriggerEvent",
  2711. "Descriptor": {
  2712. "ConnectionType": 1,
  2713. "SlotType": 2
  2714. },
  2715. "DataType": 1
  2716. },
  2717. {
  2718. "id": {
  2719. "m_id": "{29589F1A-BA42-44A5-B191-A6163C9A1E39}"
  2720. },
  2721. "contracts": [
  2722. {
  2723. "$type": "SlotTypeContract"
  2724. }
  2725. ],
  2726. "slotName": "In",
  2727. "Descriptor": {
  2728. "ConnectionType": 1,
  2729. "SlotType": 1
  2730. }
  2731. },
  2732. {
  2733. "id": {
  2734. "m_id": "{E1249F98-FB16-4D6C-AA6E-583CADE512A5}"
  2735. },
  2736. "contracts": [
  2737. {
  2738. "$type": "SlotTypeContract"
  2739. }
  2740. ],
  2741. "slotName": "Out",
  2742. "Descriptor": {
  2743. "ConnectionType": 2,
  2744. "SlotType": 1
  2745. }
  2746. },
  2747. {
  2748. "id": {
  2749. "m_id": "{BC183546-38BB-44C9-83C9-9C963A24C2D6}"
  2750. },
  2751. "contracts": [
  2752. {
  2753. "$type": "SlotTypeContract"
  2754. }
  2755. ],
  2756. "slotName": "EntityId",
  2757. "DisplayDataType": {
  2758. "m_type": 1
  2759. },
  2760. "Descriptor": {
  2761. "ConnectionType": 2,
  2762. "SlotType": 2
  2763. },
  2764. "DataType": 1
  2765. }
  2766. ],
  2767. "Datums": [
  2768. {
  2769. "isOverloadedStorage": false,
  2770. "scriptCanvasType": {
  2771. "m_type": 4,
  2772. "m_azType": "{7A0851A3-2CBD-4A03-85D5-1C40221E7F61}"
  2773. },
  2774. "isNullPointer": true,
  2775. "label": "Trigger Event"
  2776. }
  2777. ],
  2778. "methodType": 2,
  2779. "methodName": "GetOtherEntityId",
  2780. "className": "TriggerEvent",
  2781. "inputSlots": [
  2782. {
  2783. "m_id": "{A96105BA-25E3-4362-B46C-0A517B8D9CB0}"
  2784. }
  2785. ],
  2786. "prettyClassName": "TriggerEvent"
  2787. }
  2788. }
  2789. },
  2790. {
  2791. "Id": {
  2792. "id": 222950727077632
  2793. },
  2794. "Name": "SC-Node(ForEach)",
  2795. "Components": {
  2796. "Component_[16055107193088198511]": {
  2797. "$type": "ForEach",
  2798. "Id": 16055107193088198511,
  2799. "Slots": [
  2800. {
  2801. "id": {
  2802. "m_id": "{E5E06D76-AEAD-4745-A5BE-82C4C10676CD}"
  2803. },
  2804. "DynamicTypeOverride": 2,
  2805. "contracts": [
  2806. {
  2807. "$type": "SlotTypeContract"
  2808. }
  2809. ],
  2810. "slotName": "Source",
  2811. "DisplayDataType": {
  2812. "m_type": 4,
  2813. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2814. },
  2815. "Descriptor": {
  2816. "ConnectionType": 1,
  2817. "SlotType": 2
  2818. },
  2819. "DynamicGroup": {
  2820. "Value": 3089028177
  2821. },
  2822. "DataType": 1
  2823. },
  2824. {
  2825. "id": {
  2826. "m_id": "{AEF8567D-99F9-4B88-B17C-CB4837A6D075}"
  2827. },
  2828. "contracts": [
  2829. {
  2830. "$type": "SlotTypeContract"
  2831. }
  2832. ],
  2833. "slotName": "In",
  2834. "toolTip": "Signaled upon node entry",
  2835. "Descriptor": {
  2836. "ConnectionType": 1,
  2837. "SlotType": 1
  2838. }
  2839. },
  2840. {
  2841. "id": {
  2842. "m_id": "{8718AF52-A3A4-4173-BDEE-3E5B0D811787}"
  2843. },
  2844. "contracts": [
  2845. {
  2846. "$type": "SlotTypeContract"
  2847. }
  2848. ],
  2849. "slotName": "Break",
  2850. "toolTip": "Stops the iteration when signaled",
  2851. "Descriptor": {
  2852. "ConnectionType": 1,
  2853. "SlotType": 1
  2854. }
  2855. },
  2856. {
  2857. "id": {
  2858. "m_id": "{19AF2C8B-5E6C-4CF6-BD63-83C5B8EB8670}"
  2859. },
  2860. "contracts": [
  2861. {
  2862. "$type": "SlotTypeContract"
  2863. }
  2864. ],
  2865. "slotName": "Each",
  2866. "toolTip": "Signalled after each element of the container",
  2867. "Descriptor": {
  2868. "ConnectionType": 2,
  2869. "SlotType": 1
  2870. }
  2871. },
  2872. {
  2873. "id": {
  2874. "m_id": "{1FE55DB9-3B46-4191-8260-217D407587B7}"
  2875. },
  2876. "contracts": [
  2877. {
  2878. "$type": "SlotTypeContract"
  2879. }
  2880. ],
  2881. "slotName": "Finished",
  2882. "toolTip": "The container has been fully iterated over",
  2883. "Descriptor": {
  2884. "ConnectionType": 2,
  2885. "SlotType": 1
  2886. }
  2887. },
  2888. {
  2889. "id": {
  2890. "m_id": "{EFBD2747-E415-4B81-ACE6-774B50DCAD81}"
  2891. },
  2892. "contracts": [
  2893. {
  2894. "$type": "SlotTypeContract"
  2895. }
  2896. ],
  2897. "slotName": "EntityId",
  2898. "DisplayDataType": {
  2899. "m_type": 1
  2900. },
  2901. "Descriptor": {
  2902. "ConnectionType": 2,
  2903. "SlotType": 2
  2904. },
  2905. "DataType": 1
  2906. }
  2907. ],
  2908. "Datums": [
  2909. {
  2910. "isOverloadedStorage": false,
  2911. "scriptCanvasType": {
  2912. "m_type": 4,
  2913. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2914. },
  2915. "isNullPointer": false,
  2916. "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector<EntityId, allocator>",
  2917. "label": "Source"
  2918. }
  2919. ],
  2920. "m_sourceSlot": {
  2921. "m_id": "{E5E06D76-AEAD-4745-A5BE-82C4C10676CD}"
  2922. },
  2923. "m_previousTypeId": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}",
  2924. "m_propertySlots": [
  2925. {
  2926. "m_propertySlotId": {
  2927. "m_id": "{EFBD2747-E415-4B81-ACE6-774B50DCAD81}"
  2928. },
  2929. "m_propertyType": {
  2930. "m_type": 1
  2931. },
  2932. "m_propertyName": "EntityId"
  2933. }
  2934. ]
  2935. }
  2936. }
  2937. },
  2938. {
  2939. "Id": {
  2940. "id": 222903482437376
  2941. },
  2942. "Name": "SC Node(SetVariable)",
  2943. "Components": {
  2944. "Component_[16181127613417838651]": {
  2945. "$type": "SetVariableNode",
  2946. "Id": 16181127613417838651,
  2947. "Slots": [
  2948. {
  2949. "id": {
  2950. "m_id": "{5C87BB50-F4D4-483B-9487-BFF1914571E9}"
  2951. },
  2952. "contracts": [
  2953. {
  2954. "$type": "SlotTypeContract"
  2955. }
  2956. ],
  2957. "slotName": "In",
  2958. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  2959. "Descriptor": {
  2960. "ConnectionType": 1,
  2961. "SlotType": 1
  2962. }
  2963. },
  2964. {
  2965. "id": {
  2966. "m_id": "{CAC8E39C-068B-4750-9012-DAC55C42075A}"
  2967. },
  2968. "contracts": [
  2969. {
  2970. "$type": "SlotTypeContract"
  2971. }
  2972. ],
  2973. "slotName": "Out",
  2974. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  2975. "Descriptor": {
  2976. "ConnectionType": 2,
  2977. "SlotType": 1
  2978. }
  2979. },
  2980. {
  2981. "id": {
  2982. "m_id": "{A7796D57-80DD-435A-9A2B-BE51FD38F47D}"
  2983. },
  2984. "contracts": [
  2985. {
  2986. "$type": "SlotTypeContract"
  2987. }
  2988. ],
  2989. "slotName": "Boolean",
  2990. "Descriptor": {
  2991. "ConnectionType": 1,
  2992. "SlotType": 2
  2993. },
  2994. "DataType": 1
  2995. },
  2996. {
  2997. "id": {
  2998. "m_id": "{CF546C10-E2FC-4977-8501-EEB7C348A8E0}"
  2999. },
  3000. "contracts": [
  3001. {
  3002. "$type": "SlotTypeContract"
  3003. }
  3004. ],
  3005. "slotName": "Boolean",
  3006. "DisplayDataType": {
  3007. "m_type": 0
  3008. },
  3009. "Descriptor": {
  3010. "ConnectionType": 2,
  3011. "SlotType": 2
  3012. },
  3013. "DataType": 1
  3014. }
  3015. ],
  3016. "Datums": [
  3017. {
  3018. "isOverloadedStorage": false,
  3019. "scriptCanvasType": {
  3020. "m_type": 0
  3021. },
  3022. "isNullPointer": false,
  3023. "$type": "bool",
  3024. "value": true,
  3025. "label": "Boolean"
  3026. }
  3027. ],
  3028. "m_variableId": {
  3029. "m_id": "{28F1F092-CCB3-46DD-83DA-2DC0845F1F37}"
  3030. },
  3031. "m_variableDataInSlotId": {
  3032. "m_id": "{A7796D57-80DD-435A-9A2B-BE51FD38F47D}"
  3033. },
  3034. "m_variableDataOutSlotId": {
  3035. "m_id": "{CF546C10-E2FC-4977-8501-EEB7C348A8E0}"
  3036. }
  3037. }
  3038. }
  3039. },
  3040. {
  3041. "Id": {
  3042. "id": 222826173026048
  3043. },
  3044. "Name": "SC-Node(Not)",
  3045. "Components": {
  3046. "Component_[16208116332907631445]": {
  3047. "$type": "Not",
  3048. "Id": 16208116332907631445,
  3049. "Slots": [
  3050. {
  3051. "id": {
  3052. "m_id": "{3DCB4194-7D68-49C2-8EB8-C2648E1A64F5}"
  3053. },
  3054. "contracts": [
  3055. {
  3056. "$type": "SlotTypeContract"
  3057. }
  3058. ],
  3059. "slotName": "Value",
  3060. "Descriptor": {
  3061. "ConnectionType": 1,
  3062. "SlotType": 2
  3063. },
  3064. "DataType": 1,
  3065. "IsReference": true,
  3066. "VariableReference": {
  3067. "m_id": "{28F1F092-CCB3-46DD-83DA-2DC0845F1F37}"
  3068. }
  3069. },
  3070. {
  3071. "id": {
  3072. "m_id": "{A691EE22-63C8-4D33-8BF5-14E278FFBF75}"
  3073. },
  3074. "contracts": [
  3075. {
  3076. "$type": "SlotTypeContract"
  3077. }
  3078. ],
  3079. "slotName": "Result",
  3080. "DisplayDataType": {
  3081. "m_type": 0
  3082. },
  3083. "Descriptor": {
  3084. "ConnectionType": 2,
  3085. "SlotType": 2
  3086. },
  3087. "DataType": 1
  3088. },
  3089. {
  3090. "id": {
  3091. "m_id": "{3D07EE76-25E6-449A-9F09-DBAF3D8B4078}"
  3092. },
  3093. "contracts": [
  3094. {
  3095. "$type": "SlotTypeContract"
  3096. }
  3097. ],
  3098. "slotName": "In",
  3099. "toolTip": "Signal to perform the evaluation when desired.",
  3100. "Descriptor": {
  3101. "ConnectionType": 1,
  3102. "SlotType": 1
  3103. }
  3104. },
  3105. {
  3106. "id": {
  3107. "m_id": "{D2537662-E26C-404F-B800-E8C5926CA56C}"
  3108. },
  3109. "contracts": [
  3110. {
  3111. "$type": "SlotTypeContract"
  3112. }
  3113. ],
  3114. "slotName": "True",
  3115. "toolTip": "Signaled if the result of the operation is true.",
  3116. "Descriptor": {
  3117. "ConnectionType": 2,
  3118. "SlotType": 1
  3119. }
  3120. },
  3121. {
  3122. "id": {
  3123. "m_id": "{45F7EB60-2254-48B4-99BA-84B58035DFCA}"
  3124. },
  3125. "contracts": [
  3126. {
  3127. "$type": "SlotTypeContract"
  3128. }
  3129. ],
  3130. "slotName": "False",
  3131. "toolTip": "Signaled if the result of the operation is false.",
  3132. "Descriptor": {
  3133. "ConnectionType": 2,
  3134. "SlotType": 1
  3135. }
  3136. }
  3137. ],
  3138. "Datums": [
  3139. {
  3140. "isOverloadedStorage": false,
  3141. "scriptCanvasType": {
  3142. "m_type": 0
  3143. },
  3144. "isNullPointer": false,
  3145. "$type": "bool",
  3146. "value": false,
  3147. "label": "Value"
  3148. }
  3149. ]
  3150. }
  3151. }
  3152. },
  3153. {
  3154. "Id": {
  3155. "id": 222851942829824
  3156. },
  3157. "Name": "SC Node(SetVariable)",
  3158. "Components": {
  3159. "Component_[1685759560007997418]": {
  3160. "$type": "SetVariableNode",
  3161. "Id": 1685759560007997418,
  3162. "Slots": [
  3163. {
  3164. "id": {
  3165. "m_id": "{4B0E0B25-BDAF-4F2F-9C33-C25A05FB441D}"
  3166. },
  3167. "contracts": [
  3168. {
  3169. "$type": "SlotTypeContract"
  3170. }
  3171. ],
  3172. "slotName": "In",
  3173. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  3174. "Descriptor": {
  3175. "ConnectionType": 1,
  3176. "SlotType": 1
  3177. }
  3178. },
  3179. {
  3180. "id": {
  3181. "m_id": "{774898E6-10FA-4EF5-9B6E-0E54842D873F}"
  3182. },
  3183. "contracts": [
  3184. {
  3185. "$type": "SlotTypeContract"
  3186. }
  3187. ],
  3188. "slotName": "Out",
  3189. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  3190. "Descriptor": {
  3191. "ConnectionType": 2,
  3192. "SlotType": 1
  3193. }
  3194. },
  3195. {
  3196. "id": {
  3197. "m_id": "{81654567-FA0F-4A15-971A-D4120CED8300}"
  3198. },
  3199. "contracts": [
  3200. {
  3201. "$type": "SlotTypeContract"
  3202. }
  3203. ],
  3204. "slotName": "Boolean",
  3205. "Descriptor": {
  3206. "ConnectionType": 1,
  3207. "SlotType": 2
  3208. },
  3209. "DataType": 1
  3210. },
  3211. {
  3212. "id": {
  3213. "m_id": "{E1CFA592-82D7-4A7E-8C18-B2D17BE2DBCA}"
  3214. },
  3215. "contracts": [
  3216. {
  3217. "$type": "SlotTypeContract"
  3218. }
  3219. ],
  3220. "slotName": "Boolean",
  3221. "DisplayDataType": {
  3222. "m_type": 0
  3223. },
  3224. "Descriptor": {
  3225. "ConnectionType": 2,
  3226. "SlotType": 2
  3227. },
  3228. "DataType": 1
  3229. }
  3230. ],
  3231. "Datums": [
  3232. {
  3233. "isOverloadedStorage": false,
  3234. "scriptCanvasType": {
  3235. "m_type": 0
  3236. },
  3237. "isNullPointer": false,
  3238. "$type": "bool",
  3239. "value": true,
  3240. "label": "Boolean"
  3241. }
  3242. ],
  3243. "m_variableId": {
  3244. "m_id": "{6D99CBC3-046F-40FE-AED5-A0BDF236E311}"
  3245. },
  3246. "m_variableDataInSlotId": {
  3247. "m_id": "{81654567-FA0F-4A15-971A-D4120CED8300}"
  3248. },
  3249. "m_variableDataOutSlotId": {
  3250. "m_id": "{E1CFA592-82D7-4A7E-8C18-B2D17BE2DBCA}"
  3251. }
  3252. }
  3253. }
  3254. },
  3255. {
  3256. "Id": {
  3257. "id": 222877712633600
  3258. },
  3259. "Name": "SC-Node(GetEntityName)",
  3260. "Components": {
  3261. "Component_[16923832722026332302]": {
  3262. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3263. "Id": 16923832722026332302,
  3264. "Slots": [
  3265. {
  3266. "id": {
  3267. "m_id": "{31FE371C-2170-451C-9B38-67089766514A}"
  3268. },
  3269. "contracts": [
  3270. {
  3271. "$type": "SlotTypeContract"
  3272. }
  3273. ],
  3274. "slotName": "EntityId",
  3275. "Descriptor": {
  3276. "ConnectionType": 1,
  3277. "SlotType": 2
  3278. },
  3279. "DataType": 1
  3280. },
  3281. {
  3282. "id": {
  3283. "m_id": "{61821EF3-1CA9-49A9-BC0D-8F91F2E0F6AC}"
  3284. },
  3285. "contracts": [
  3286. {
  3287. "$type": "SlotTypeContract"
  3288. }
  3289. ],
  3290. "slotName": "In",
  3291. "Descriptor": {
  3292. "ConnectionType": 1,
  3293. "SlotType": 1
  3294. }
  3295. },
  3296. {
  3297. "id": {
  3298. "m_id": "{DFC6BF05-2C53-41F8-8F54-EB72AD02EB5A}"
  3299. },
  3300. "contracts": [
  3301. {
  3302. "$type": "SlotTypeContract"
  3303. }
  3304. ],
  3305. "slotName": "Out",
  3306. "Descriptor": {
  3307. "ConnectionType": 2,
  3308. "SlotType": 1
  3309. }
  3310. },
  3311. {
  3312. "id": {
  3313. "m_id": "{23854E57-9C04-4CBE-AA48-536EDF4AB43E}"
  3314. },
  3315. "contracts": [
  3316. {
  3317. "$type": "SlotTypeContract"
  3318. }
  3319. ],
  3320. "slotName": "String",
  3321. "DisplayDataType": {
  3322. "m_type": 5
  3323. },
  3324. "Descriptor": {
  3325. "ConnectionType": 2,
  3326. "SlotType": 2
  3327. },
  3328. "DataType": 1
  3329. }
  3330. ],
  3331. "Datums": [
  3332. {
  3333. "isOverloadedStorage": false,
  3334. "scriptCanvasType": {
  3335. "m_type": 1
  3336. },
  3337. "isNullPointer": false,
  3338. "$type": "EntityId",
  3339. "value": {
  3340. "id": 2901262558
  3341. },
  3342. "label": "Entity Id"
  3343. }
  3344. ],
  3345. "methodType": 0,
  3346. "methodName": "GetEntityName",
  3347. "className": "ComponentApplicationBus",
  3348. "resultSlotIDs": [
  3349. {}
  3350. ],
  3351. "inputSlots": [
  3352. {
  3353. "m_id": "{31FE371C-2170-451C-9B38-67089766514A}"
  3354. }
  3355. ],
  3356. "prettyClassName": "ComponentApplicationBus"
  3357. }
  3358. }
  3359. },
  3360. {
  3361. "Id": {
  3362. "id": 222912072371968
  3363. },
  3364. "Name": "SC-Node(GetChildren)",
  3365. "Components": {
  3366. "Component_[18191661702195618806]": {
  3367. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3368. "Id": 18191661702195618806,
  3369. "Slots": [
  3370. {
  3371. "id": {
  3372. "m_id": "{CEFE0879-54BC-476B-9815-A97966D1969B}"
  3373. },
  3374. "contracts": [
  3375. {
  3376. "$type": "SlotTypeContract"
  3377. }
  3378. ],
  3379. "slotName": "EntityId",
  3380. "Descriptor": {
  3381. "ConnectionType": 1,
  3382. "SlotType": 2
  3383. },
  3384. "DataType": 1
  3385. },
  3386. {
  3387. "id": {
  3388. "m_id": "{6B47290C-3C65-43F3-B5BA-BE73F1845808}"
  3389. },
  3390. "contracts": [
  3391. {
  3392. "$type": "SlotTypeContract"
  3393. }
  3394. ],
  3395. "slotName": "In",
  3396. "Descriptor": {
  3397. "ConnectionType": 1,
  3398. "SlotType": 1
  3399. }
  3400. },
  3401. {
  3402. "id": {
  3403. "m_id": "{18C1DF8F-48FD-480D-9364-D501C4AE7E1F}"
  3404. },
  3405. "contracts": [
  3406. {
  3407. "$type": "SlotTypeContract"
  3408. }
  3409. ],
  3410. "slotName": "Out",
  3411. "Descriptor": {
  3412. "ConnectionType": 2,
  3413. "SlotType": 1
  3414. }
  3415. },
  3416. {
  3417. "id": {
  3418. "m_id": "{25B7839F-E43B-4C81-B565-DD0C30B44A65}"
  3419. },
  3420. "contracts": [
  3421. {
  3422. "$type": "SlotTypeContract"
  3423. }
  3424. ],
  3425. "slotName": "Array<EntityId>",
  3426. "DisplayDataType": {
  3427. "m_type": 4,
  3428. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  3429. },
  3430. "Descriptor": {
  3431. "ConnectionType": 2,
  3432. "SlotType": 2
  3433. },
  3434. "DataType": 1
  3435. }
  3436. ],
  3437. "Datums": [
  3438. {
  3439. "isOverloadedStorage": false,
  3440. "scriptCanvasType": {
  3441. "m_type": 1
  3442. },
  3443. "isNullPointer": false,
  3444. "$type": "EntityId",
  3445. "value": {
  3446. "id": 2901262558
  3447. },
  3448. "label": "EntityId"
  3449. }
  3450. ],
  3451. "methodType": 0,
  3452. "methodName": "GetChildren",
  3453. "className": "TransformBus",
  3454. "resultSlotIDs": [
  3455. {}
  3456. ],
  3457. "inputSlots": [
  3458. {
  3459. "m_id": "{CEFE0879-54BC-476B-9815-A97966D1969B}"
  3460. }
  3461. ],
  3462. "prettyClassName": "TransformBus"
  3463. }
  3464. }
  3465. },
  3466. {
  3467. "Id": {
  3468. "id": 222980791848704
  3469. },
  3470. "Name": "SC-Node(GetChildren)",
  3471. "Components": {
  3472. "Component_[18191661702195618806]": {
  3473. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3474. "Id": 18191661702195618806,
  3475. "Slots": [
  3476. {
  3477. "id": {
  3478. "m_id": "{CEFE0879-54BC-476B-9815-A97966D1969B}"
  3479. },
  3480. "contracts": [
  3481. {
  3482. "$type": "SlotTypeContract"
  3483. }
  3484. ],
  3485. "slotName": "EntityId",
  3486. "Descriptor": {
  3487. "ConnectionType": 1,
  3488. "SlotType": 2
  3489. },
  3490. "DataType": 1
  3491. },
  3492. {
  3493. "id": {
  3494. "m_id": "{6B47290C-3C65-43F3-B5BA-BE73F1845808}"
  3495. },
  3496. "contracts": [
  3497. {
  3498. "$type": "SlotTypeContract"
  3499. }
  3500. ],
  3501. "slotName": "In",
  3502. "Descriptor": {
  3503. "ConnectionType": 1,
  3504. "SlotType": 1
  3505. }
  3506. },
  3507. {
  3508. "id": {
  3509. "m_id": "{18C1DF8F-48FD-480D-9364-D501C4AE7E1F}"
  3510. },
  3511. "contracts": [
  3512. {
  3513. "$type": "SlotTypeContract"
  3514. }
  3515. ],
  3516. "slotName": "Out",
  3517. "Descriptor": {
  3518. "ConnectionType": 2,
  3519. "SlotType": 1
  3520. }
  3521. },
  3522. {
  3523. "id": {
  3524. "m_id": "{25B7839F-E43B-4C81-B565-DD0C30B44A65}"
  3525. },
  3526. "contracts": [
  3527. {
  3528. "$type": "SlotTypeContract"
  3529. }
  3530. ],
  3531. "slotName": "Array<EntityId>",
  3532. "DisplayDataType": {
  3533. "m_type": 4,
  3534. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  3535. },
  3536. "Descriptor": {
  3537. "ConnectionType": 2,
  3538. "SlotType": 2
  3539. },
  3540. "DataType": 1
  3541. }
  3542. ],
  3543. "Datums": [
  3544. {
  3545. "isOverloadedStorage": false,
  3546. "scriptCanvasType": {
  3547. "m_type": 1
  3548. },
  3549. "isNullPointer": false,
  3550. "$type": "EntityId",
  3551. "value": {
  3552. "id": 2901262558
  3553. },
  3554. "label": "EntityId"
  3555. }
  3556. ],
  3557. "methodType": 0,
  3558. "methodName": "GetChildren",
  3559. "className": "TransformBus",
  3560. "resultSlotIDs": [
  3561. {}
  3562. ],
  3563. "inputSlots": [
  3564. {
  3565. "m_id": "{CEFE0879-54BC-476B-9815-A97966D1969B}"
  3566. }
  3567. ],
  3568. "prettyClassName": "TransformBus"
  3569. }
  3570. }
  3571. },
  3572. {
  3573. "Id": {
  3574. "id": 222942137143040
  3575. },
  3576. "Name": "SC-Node(Gate)",
  3577. "Components": {
  3578. "Component_[1994618473028985365]": {
  3579. "$type": "Gate",
  3580. "Id": 1994618473028985365,
  3581. "Slots": [
  3582. {
  3583. "id": {
  3584. "m_id": "{5CFB13DB-21EC-4391-8AA9-E5574D3A06F9}"
  3585. },
  3586. "contracts": [
  3587. {
  3588. "$type": "SlotTypeContract"
  3589. }
  3590. ],
  3591. "slotName": "Condition",
  3592. "toolTip": "If true the node will signal the Output and proceed execution",
  3593. "Descriptor": {
  3594. "ConnectionType": 1,
  3595. "SlotType": 2
  3596. },
  3597. "DataType": 1,
  3598. "IsReference": true,
  3599. "VariableReference": {
  3600. "m_id": "{6D99CBC3-046F-40FE-AED5-A0BDF236E311}"
  3601. }
  3602. },
  3603. {
  3604. "id": {
  3605. "m_id": "{3DEFF1AA-6105-44F1-84A9-032E54EE3EAC}"
  3606. },
  3607. "contracts": [
  3608. {
  3609. "$type": "SlotTypeContract"
  3610. }
  3611. ],
  3612. "slotName": "In",
  3613. "toolTip": "Input signal",
  3614. "Descriptor": {
  3615. "ConnectionType": 1,
  3616. "SlotType": 1
  3617. }
  3618. },
  3619. {
  3620. "id": {
  3621. "m_id": "{18199EB6-157A-4765-A3AB-0F669DEB1BA8}"
  3622. },
  3623. "contracts": [
  3624. {
  3625. "$type": "SlotTypeContract"
  3626. }
  3627. ],
  3628. "slotName": "True",
  3629. "toolTip": "Signaled if the condition provided evaluates to true.",
  3630. "Descriptor": {
  3631. "ConnectionType": 2,
  3632. "SlotType": 1
  3633. }
  3634. },
  3635. {
  3636. "id": {
  3637. "m_id": "{BA4F221D-464A-44F4-9154-C70F62B6E1A1}"
  3638. },
  3639. "contracts": [
  3640. {
  3641. "$type": "SlotTypeContract"
  3642. }
  3643. ],
  3644. "slotName": "False",
  3645. "toolTip": "Signaled if the condition provided evaluates to false.",
  3646. "Descriptor": {
  3647. "ConnectionType": 2,
  3648. "SlotType": 1
  3649. }
  3650. }
  3651. ],
  3652. "Datums": [
  3653. {
  3654. "isOverloadedStorage": false,
  3655. "scriptCanvasType": {
  3656. "m_type": 0
  3657. },
  3658. "isNullPointer": false,
  3659. "$type": "bool",
  3660. "value": false,
  3661. "label": "Condition"
  3662. }
  3663. ]
  3664. }
  3665. }
  3666. },
  3667. {
  3668. "Id": {
  3669. "id": 222946432110336
  3670. },
  3671. "Name": "SC-Node(Gate)",
  3672. "Components": {
  3673. "Component_[1994618473028985365]": {
  3674. "$type": "Gate",
  3675. "Id": 1994618473028985365,
  3676. "Slots": [
  3677. {
  3678. "id": {
  3679. "m_id": "{5CFB13DB-21EC-4391-8AA9-E5574D3A06F9}"
  3680. },
  3681. "contracts": [
  3682. {
  3683. "$type": "SlotTypeContract"
  3684. }
  3685. ],
  3686. "slotName": "Condition",
  3687. "toolTip": "If true the node will signal the Output and proceed execution",
  3688. "Descriptor": {
  3689. "ConnectionType": 1,
  3690. "SlotType": 2
  3691. },
  3692. "DataType": 1,
  3693. "IsReference": true,
  3694. "VariableReference": {
  3695. "m_id": "{6D99CBC3-046F-40FE-AED5-A0BDF236E311}"
  3696. }
  3697. },
  3698. {
  3699. "id": {
  3700. "m_id": "{3DEFF1AA-6105-44F1-84A9-032E54EE3EAC}"
  3701. },
  3702. "contracts": [
  3703. {
  3704. "$type": "SlotTypeContract"
  3705. }
  3706. ],
  3707. "slotName": "In",
  3708. "toolTip": "Input signal",
  3709. "Descriptor": {
  3710. "ConnectionType": 1,
  3711. "SlotType": 1
  3712. }
  3713. },
  3714. {
  3715. "id": {
  3716. "m_id": "{18199EB6-157A-4765-A3AB-0F669DEB1BA8}"
  3717. },
  3718. "contracts": [
  3719. {
  3720. "$type": "SlotTypeContract"
  3721. }
  3722. ],
  3723. "slotName": "True",
  3724. "toolTip": "Signaled if the condition provided evaluates to true.",
  3725. "Descriptor": {
  3726. "ConnectionType": 2,
  3727. "SlotType": 1
  3728. }
  3729. },
  3730. {
  3731. "id": {
  3732. "m_id": "{BA4F221D-464A-44F4-9154-C70F62B6E1A1}"
  3733. },
  3734. "contracts": [
  3735. {
  3736. "$type": "SlotTypeContract"
  3737. }
  3738. ],
  3739. "slotName": "False",
  3740. "toolTip": "Signaled if the condition provided evaluates to false.",
  3741. "Descriptor": {
  3742. "ConnectionType": 2,
  3743. "SlotType": 1
  3744. }
  3745. }
  3746. ],
  3747. "Datums": [
  3748. {
  3749. "isOverloadedStorage": false,
  3750. "scriptCanvasType": {
  3751. "m_type": 0
  3752. },
  3753. "isNullPointer": false,
  3754. "$type": "bool",
  3755. "value": false,
  3756. "label": "Condition"
  3757. }
  3758. ]
  3759. }
  3760. }
  3761. },
  3762. {
  3763. "Id": {
  3764. "id": 222976496881408
  3765. },
  3766. "Name": "SC Node(SetVariable)",
  3767. "Components": {
  3768. "Component_[252846985644297282]": {
  3769. "$type": "SetVariableNode",
  3770. "Id": 252846985644297282,
  3771. "Slots": [
  3772. {
  3773. "id": {
  3774. "m_id": "{A2057707-DC8F-4C14-9A04-FFD29D1EC5F0}"
  3775. },
  3776. "contracts": [
  3777. {
  3778. "$type": "SlotTypeContract"
  3779. }
  3780. ],
  3781. "slotName": "In",
  3782. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  3783. "Descriptor": {
  3784. "ConnectionType": 1,
  3785. "SlotType": 1
  3786. }
  3787. },
  3788. {
  3789. "id": {
  3790. "m_id": "{89D9D5A4-594B-4AFC-8A25-942AFED79572}"
  3791. },
  3792. "contracts": [
  3793. {
  3794. "$type": "SlotTypeContract"
  3795. }
  3796. ],
  3797. "slotName": "Out",
  3798. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  3799. "Descriptor": {
  3800. "ConnectionType": 2,
  3801. "SlotType": 1
  3802. }
  3803. },
  3804. {
  3805. "id": {
  3806. "m_id": "{9FDA9496-FDA7-41E9-AC09-4ECBC4A5019B}"
  3807. },
  3808. "contracts": [
  3809. {
  3810. "$type": "SlotTypeContract"
  3811. }
  3812. ],
  3813. "slotName": "EntityId",
  3814. "Descriptor": {
  3815. "ConnectionType": 1,
  3816. "SlotType": 2
  3817. },
  3818. "DataType": 1
  3819. },
  3820. {
  3821. "id": {
  3822. "m_id": "{6E615125-E6E6-4E94-A424-7D4145A43991}"
  3823. },
  3824. "contracts": [
  3825. {
  3826. "$type": "SlotTypeContract"
  3827. }
  3828. ],
  3829. "slotName": "EntityId",
  3830. "DisplayDataType": {
  3831. "m_type": 1
  3832. },
  3833. "Descriptor": {
  3834. "ConnectionType": 2,
  3835. "SlotType": 2
  3836. },
  3837. "DataType": 1
  3838. }
  3839. ],
  3840. "Datums": [
  3841. {
  3842. "isOverloadedStorage": false,
  3843. "scriptCanvasType": {
  3844. "m_type": 1
  3845. },
  3846. "isNullPointer": false,
  3847. "$type": "EntityId",
  3848. "value": {
  3849. "id": 2901262558
  3850. },
  3851. "label": "EntityId"
  3852. }
  3853. ],
  3854. "m_variableId": {
  3855. "m_id": "{62ECF824-2489-4C8D-A72B-518A6BDAC63B}"
  3856. },
  3857. "m_variableDataInSlotId": {
  3858. "m_id": "{9FDA9496-FDA7-41E9-AC09-4ECBC4A5019B}"
  3859. },
  3860. "m_variableDataOutSlotId": {
  3861. "m_id": "{6E615125-E6E6-4E94-A424-7D4145A43991}"
  3862. }
  3863. }
  3864. }
  3865. },
  3866. {
  3867. "Id": {
  3868. "id": 222821878058752
  3869. },
  3870. "Name": "SC-Node(GetParentId)",
  3871. "Components": {
  3872. "Component_[3276551089745014335]": {
  3873. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3874. "Id": 3276551089745014335,
  3875. "Slots": [
  3876. {
  3877. "id": {
  3878. "m_id": "{CBBC02E7-691C-4AA6-A6A0-10154F71128D}"
  3879. },
  3880. "contracts": [
  3881. {
  3882. "$type": "SlotTypeContract"
  3883. }
  3884. ],
  3885. "slotName": "EntityId",
  3886. "Descriptor": {
  3887. "ConnectionType": 1,
  3888. "SlotType": 2
  3889. },
  3890. "DataType": 1
  3891. },
  3892. {
  3893. "id": {
  3894. "m_id": "{2840C8A0-80BE-47A0-B738-90B0646E3F7E}"
  3895. },
  3896. "contracts": [
  3897. {
  3898. "$type": "SlotTypeContract"
  3899. }
  3900. ],
  3901. "slotName": "In",
  3902. "Descriptor": {
  3903. "ConnectionType": 1,
  3904. "SlotType": 1
  3905. }
  3906. },
  3907. {
  3908. "id": {
  3909. "m_id": "{209C005B-84E8-4F83-85CF-4CAE46FA538D}"
  3910. },
  3911. "contracts": [
  3912. {
  3913. "$type": "SlotTypeContract"
  3914. }
  3915. ],
  3916. "slotName": "Out",
  3917. "Descriptor": {
  3918. "ConnectionType": 2,
  3919. "SlotType": 1
  3920. }
  3921. },
  3922. {
  3923. "id": {
  3924. "m_id": "{F1ACE4C2-7821-4419-9F7E-616989E0BCFA}"
  3925. },
  3926. "contracts": [
  3927. {
  3928. "$type": "SlotTypeContract"
  3929. }
  3930. ],
  3931. "slotName": "EntityId",
  3932. "DisplayDataType": {
  3933. "m_type": 1
  3934. },
  3935. "Descriptor": {
  3936. "ConnectionType": 2,
  3937. "SlotType": 2
  3938. },
  3939. "DataType": 1
  3940. }
  3941. ],
  3942. "Datums": [
  3943. {
  3944. "isOverloadedStorage": false,
  3945. "scriptCanvasType": {
  3946. "m_type": 1
  3947. },
  3948. "isNullPointer": false,
  3949. "$type": "EntityId",
  3950. "value": {
  3951. "id": 2901262558
  3952. },
  3953. "label": "EntityId"
  3954. }
  3955. ],
  3956. "methodType": 0,
  3957. "methodName": "GetParentId",
  3958. "className": "TransformBus",
  3959. "resultSlotIDs": [
  3960. {}
  3961. ],
  3962. "inputSlots": [
  3963. {
  3964. "m_id": "{CBBC02E7-691C-4AA6-A6A0-10154F71128D}"
  3965. }
  3966. ],
  3967. "prettyClassName": "TransformBus"
  3968. }
  3969. }
  3970. },
  3971. {
  3972. "Id": {
  3973. "id": 222847647862528
  3974. },
  3975. "Name": "SC-Node(Get First Element)",
  3976. "Components": {
  3977. "Component_[3281034353399506669]": {
  3978. "$type": "MethodOverloaded",
  3979. "Id": 3281034353399506669,
  3980. "Slots": [
  3981. {
  3982. "id": {
  3983. "m_id": "{03EC9FCF-BDED-4759-8FEE-9CA2B7AF4CAD}"
  3984. },
  3985. "DynamicTypeOverride": 2,
  3986. "contracts": [
  3987. {
  3988. "$type": "SlotTypeContract"
  3989. },
  3990. {
  3991. "$type": "OverloadContract"
  3992. }
  3993. ],
  3994. "slotName": "Container",
  3995. "toolTip": "The container to get the first element from",
  3996. "DisplayDataType": {
  3997. "m_type": 4,
  3998. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  3999. },
  4000. "Descriptor": {
  4001. "ConnectionType": 1,
  4002. "SlotType": 2
  4003. },
  4004. "DataType": 1
  4005. },
  4006. {
  4007. "id": {
  4008. "m_id": "{E65053D3-7988-4126-A295-C398E0B8B03D}"
  4009. },
  4010. "contracts": [
  4011. {
  4012. "$type": "SlotTypeContract"
  4013. }
  4014. ],
  4015. "slotName": "In",
  4016. "Descriptor": {
  4017. "ConnectionType": 1,
  4018. "SlotType": 1
  4019. }
  4020. },
  4021. {
  4022. "id": {
  4023. "m_id": "{4BCB4A14-109F-4313-86B6-45DAA0E59555}"
  4024. },
  4025. "contracts": [
  4026. {
  4027. "$type": "SlotTypeContract"
  4028. }
  4029. ],
  4030. "slotName": "Out",
  4031. "Descriptor": {
  4032. "ConnectionType": 2,
  4033. "SlotType": 1
  4034. }
  4035. },
  4036. {
  4037. "id": {
  4038. "m_id": "{E78A0DF2-07B4-46C6-ABCB-4154EB60E1AD}"
  4039. },
  4040. "contracts": [
  4041. {
  4042. "$type": "SlotTypeContract"
  4043. }
  4044. ],
  4045. "slotName": "Empty",
  4046. "Descriptor": {
  4047. "ConnectionType": 2,
  4048. "SlotType": 1
  4049. }
  4050. },
  4051. {
  4052. "id": {
  4053. "m_id": "{E3056CF4-5D03-46C4-87EE-D37B74E98284}"
  4054. },
  4055. "DynamicTypeOverride": 1,
  4056. "contracts": [
  4057. {
  4058. "$type": "SlotTypeContract"
  4059. },
  4060. {
  4061. "$type": "OverloadContract"
  4062. }
  4063. ],
  4064. "slotName": "Value",
  4065. "DisplayDataType": {
  4066. "m_type": 1
  4067. },
  4068. "Descriptor": {
  4069. "ConnectionType": 2,
  4070. "SlotType": 2
  4071. },
  4072. "DataType": 1
  4073. }
  4074. ],
  4075. "Datums": [
  4076. {
  4077. "scriptCanvasType": {
  4078. "m_type": 4,
  4079. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  4080. },
  4081. "isNullPointer": false,
  4082. "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector<EntityId, allocator>",
  4083. "label": "Container"
  4084. }
  4085. ],
  4086. "methodType": 2,
  4087. "methodName": "Get First Element",
  4088. "className": "AZStd::vector<EntityId, allocator>",
  4089. "inputSlots": [
  4090. {
  4091. "m_id": "{03EC9FCF-BDED-4759-8FEE-9CA2B7AF4CAD}"
  4092. }
  4093. ],
  4094. "orderedInputSlotIds": [
  4095. {
  4096. "m_id": "{03EC9FCF-BDED-4759-8FEE-9CA2B7AF4CAD}"
  4097. }
  4098. ],
  4099. "outputSlotIds": [
  4100. {
  4101. "m_id": "{E3056CF4-5D03-46C4-87EE-D37B74E98284}"
  4102. }
  4103. ]
  4104. }
  4105. }
  4106. },
  4107. {
  4108. "Id": {
  4109. "id": 222873417666304
  4110. },
  4111. "Name": "SC-Node(Get First Element)",
  4112. "Components": {
  4113. "Component_[3281034353399506669]": {
  4114. "$type": "MethodOverloaded",
  4115. "Id": 3281034353399506669,
  4116. "Slots": [
  4117. {
  4118. "id": {
  4119. "m_id": "{03EC9FCF-BDED-4759-8FEE-9CA2B7AF4CAD}"
  4120. },
  4121. "DynamicTypeOverride": 2,
  4122. "contracts": [
  4123. {
  4124. "$type": "SlotTypeContract"
  4125. },
  4126. {
  4127. "$type": "OverloadContract"
  4128. }
  4129. ],
  4130. "slotName": "Container",
  4131. "toolTip": "The container to get the first element from",
  4132. "DisplayDataType": {
  4133. "m_type": 4,
  4134. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  4135. },
  4136. "Descriptor": {
  4137. "ConnectionType": 1,
  4138. "SlotType": 2
  4139. },
  4140. "DataType": 1
  4141. },
  4142. {
  4143. "id": {
  4144. "m_id": "{E65053D3-7988-4126-A295-C398E0B8B03D}"
  4145. },
  4146. "contracts": [
  4147. {
  4148. "$type": "SlotTypeContract"
  4149. }
  4150. ],
  4151. "slotName": "In",
  4152. "Descriptor": {
  4153. "ConnectionType": 1,
  4154. "SlotType": 1
  4155. }
  4156. },
  4157. {
  4158. "id": {
  4159. "m_id": "{4BCB4A14-109F-4313-86B6-45DAA0E59555}"
  4160. },
  4161. "contracts": [
  4162. {
  4163. "$type": "SlotTypeContract"
  4164. }
  4165. ],
  4166. "slotName": "Out",
  4167. "Descriptor": {
  4168. "ConnectionType": 2,
  4169. "SlotType": 1
  4170. }
  4171. },
  4172. {
  4173. "id": {
  4174. "m_id": "{E78A0DF2-07B4-46C6-ABCB-4154EB60E1AD}"
  4175. },
  4176. "contracts": [
  4177. {
  4178. "$type": "SlotTypeContract"
  4179. }
  4180. ],
  4181. "slotName": "Empty",
  4182. "Descriptor": {
  4183. "ConnectionType": 2,
  4184. "SlotType": 1
  4185. }
  4186. },
  4187. {
  4188. "id": {
  4189. "m_id": "{E3056CF4-5D03-46C4-87EE-D37B74E98284}"
  4190. },
  4191. "DynamicTypeOverride": 1,
  4192. "contracts": [
  4193. {
  4194. "$type": "SlotTypeContract"
  4195. },
  4196. {
  4197. "$type": "OverloadContract"
  4198. }
  4199. ],
  4200. "slotName": "Value",
  4201. "DisplayDataType": {
  4202. "m_type": 1
  4203. },
  4204. "Descriptor": {
  4205. "ConnectionType": 2,
  4206. "SlotType": 2
  4207. },
  4208. "DataType": 1
  4209. }
  4210. ],
  4211. "Datums": [
  4212. {
  4213. "scriptCanvasType": {
  4214. "m_type": 4,
  4215. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  4216. },
  4217. "isNullPointer": false,
  4218. "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector<EntityId, allocator>",
  4219. "label": "Container"
  4220. }
  4221. ],
  4222. "methodType": 2,
  4223. "methodName": "Get First Element",
  4224. "className": "AZStd::vector<EntityId, allocator>",
  4225. "inputSlots": [
  4226. {
  4227. "m_id": "{03EC9FCF-BDED-4759-8FEE-9CA2B7AF4CAD}"
  4228. }
  4229. ],
  4230. "orderedInputSlotIds": [
  4231. {
  4232. "m_id": "{03EC9FCF-BDED-4759-8FEE-9CA2B7AF4CAD}"
  4233. }
  4234. ],
  4235. "outputSlotIds": [
  4236. {
  4237. "m_id": "{E3056CF4-5D03-46C4-87EE-D37B74E98284}"
  4238. }
  4239. ]
  4240. }
  4241. }
  4242. },
  4243. {
  4244. "Id": {
  4245. "id": 222894892502784
  4246. },
  4247. "Name": "SC-Node(DeactivateGameEntity)",
  4248. "Components": {
  4249. "Component_[3581199155474220184]": {
  4250. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  4251. "Id": 3581199155474220184,
  4252. "Slots": [
  4253. {
  4254. "id": {
  4255. "m_id": "{84E620D8-3AC5-4077-9A05-DAB66CFB421B}"
  4256. },
  4257. "contracts": [
  4258. {
  4259. "$type": "SlotTypeContract"
  4260. }
  4261. ],
  4262. "slotName": "EntityId",
  4263. "Descriptor": {
  4264. "ConnectionType": 1,
  4265. "SlotType": 2
  4266. },
  4267. "DataType": 1
  4268. },
  4269. {
  4270. "id": {
  4271. "m_id": "{7B692ADB-5C9D-4536-8FC2-13D3DFB442D7}"
  4272. },
  4273. "contracts": [
  4274. {
  4275. "$type": "SlotTypeContract"
  4276. }
  4277. ],
  4278. "slotName": "In",
  4279. "Descriptor": {
  4280. "ConnectionType": 1,
  4281. "SlotType": 1
  4282. }
  4283. },
  4284. {
  4285. "id": {
  4286. "m_id": "{EDA2780A-8BB4-4C3B-B13B-A453D3DB3B6D}"
  4287. },
  4288. "contracts": [
  4289. {
  4290. "$type": "SlotTypeContract"
  4291. }
  4292. ],
  4293. "slotName": "Out",
  4294. "Descriptor": {
  4295. "ConnectionType": 2,
  4296. "SlotType": 1
  4297. }
  4298. }
  4299. ],
  4300. "Datums": [
  4301. {
  4302. "isOverloadedStorage": false,
  4303. "scriptCanvasType": {
  4304. "m_type": 1
  4305. },
  4306. "isNullPointer": false,
  4307. "$type": "EntityId",
  4308. "value": {
  4309. "id": 2901262558
  4310. },
  4311. "label": "Entity Id"
  4312. }
  4313. ],
  4314. "methodType": 0,
  4315. "methodName": "DeactivateGameEntity",
  4316. "className": "GameEntityContextRequestBus",
  4317. "resultSlotIDs": [
  4318. {}
  4319. ],
  4320. "inputSlots": [
  4321. {
  4322. "m_id": "{84E620D8-3AC5-4077-9A05-DAB66CFB421B}"
  4323. }
  4324. ],
  4325. "prettyClassName": "GameEntityContextRequestBus"
  4326. }
  4327. }
  4328. },
  4329. {
  4330. "Id": {
  4331. "id": 223002266685184
  4332. },
  4333. "Name": "SC Node(SetVariable)",
  4334. "Components": {
  4335. "Component_[4181858797238801727]": {
  4336. "$type": "SetVariableNode",
  4337. "Id": 4181858797238801727,
  4338. "Slots": [
  4339. {
  4340. "id": {
  4341. "m_id": "{960FA55C-59FE-4562-BABA-29E09260DAFC}"
  4342. },
  4343. "contracts": [
  4344. {
  4345. "$type": "SlotTypeContract"
  4346. }
  4347. ],
  4348. "slotName": "In",
  4349. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  4350. "Descriptor": {
  4351. "ConnectionType": 1,
  4352. "SlotType": 1
  4353. }
  4354. },
  4355. {
  4356. "id": {
  4357. "m_id": "{A4897FF8-3DD9-4D46-83CA-9993BF47726E}"
  4358. },
  4359. "contracts": [
  4360. {
  4361. "$type": "SlotTypeContract"
  4362. }
  4363. ],
  4364. "slotName": "Out",
  4365. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  4366. "Descriptor": {
  4367. "ConnectionType": 2,
  4368. "SlotType": 1
  4369. }
  4370. },
  4371. {
  4372. "id": {
  4373. "m_id": "{66C15BD6-8EAC-4417-9A32-5368951D8E12}"
  4374. },
  4375. "contracts": [
  4376. {
  4377. "$type": "SlotTypeContract"
  4378. }
  4379. ],
  4380. "slotName": "Boolean",
  4381. "Descriptor": {
  4382. "ConnectionType": 1,
  4383. "SlotType": 2
  4384. },
  4385. "DataType": 1
  4386. },
  4387. {
  4388. "id": {
  4389. "m_id": "{7C235648-A14A-4678-AB04-9B58ADBB6D08}"
  4390. },
  4391. "contracts": [
  4392. {
  4393. "$type": "SlotTypeContract"
  4394. }
  4395. ],
  4396. "slotName": "Boolean",
  4397. "DisplayDataType": {
  4398. "m_type": 0
  4399. },
  4400. "Descriptor": {
  4401. "ConnectionType": 2,
  4402. "SlotType": 2
  4403. },
  4404. "DataType": 1
  4405. }
  4406. ],
  4407. "Datums": [
  4408. {
  4409. "isOverloadedStorage": false,
  4410. "scriptCanvasType": {
  4411. "m_type": 0
  4412. },
  4413. "isNullPointer": false,
  4414. "$type": "bool",
  4415. "value": false,
  4416. "label": "Boolean"
  4417. }
  4418. ],
  4419. "m_variableId": {
  4420. "m_id": "{6D99CBC3-046F-40FE-AED5-A0BDF236E311}"
  4421. },
  4422. "m_variableDataInSlotId": {
  4423. "m_id": "{66C15BD6-8EAC-4417-9A32-5368951D8E12}"
  4424. },
  4425. "m_variableDataOutSlotId": {
  4426. "m_id": "{7C235648-A14A-4678-AB04-9B58ADBB6D08}"
  4427. }
  4428. }
  4429. }
  4430. },
  4431. {
  4432. "Id": {
  4433. "id": 222933547208448
  4434. },
  4435. "Name": "SC-Node(GetEntityName)",
  4436. "Components": {
  4437. "Component_[4181901507880404076]": {
  4438. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  4439. "Id": 4181901507880404076,
  4440. "Slots": [
  4441. {
  4442. "id": {
  4443. "m_id": "{1127602F-F67C-4C0E-9988-C349650276A3}"
  4444. },
  4445. "contracts": [
  4446. {
  4447. "$type": "SlotTypeContract"
  4448. }
  4449. ],
  4450. "slotName": "EntityId",
  4451. "Descriptor": {
  4452. "ConnectionType": 1,
  4453. "SlotType": 2
  4454. },
  4455. "DataType": 1
  4456. },
  4457. {
  4458. "id": {
  4459. "m_id": "{986A3CC3-3C87-41F7-A00C-55587DABB350}"
  4460. },
  4461. "contracts": [
  4462. {
  4463. "$type": "SlotTypeContract"
  4464. }
  4465. ],
  4466. "slotName": "In",
  4467. "Descriptor": {
  4468. "ConnectionType": 1,
  4469. "SlotType": 1
  4470. }
  4471. },
  4472. {
  4473. "id": {
  4474. "m_id": "{947729F7-7752-4F73-A584-255BA3FC231C}"
  4475. },
  4476. "contracts": [
  4477. {
  4478. "$type": "SlotTypeContract"
  4479. }
  4480. ],
  4481. "slotName": "Out",
  4482. "Descriptor": {
  4483. "ConnectionType": 2,
  4484. "SlotType": 1
  4485. }
  4486. },
  4487. {
  4488. "id": {
  4489. "m_id": "{27150FF5-8B09-4E0F-B37A-2B85CF39C004}"
  4490. },
  4491. "contracts": [
  4492. {
  4493. "$type": "SlotTypeContract"
  4494. }
  4495. ],
  4496. "slotName": "String",
  4497. "DisplayDataType": {
  4498. "m_type": 5
  4499. },
  4500. "Descriptor": {
  4501. "ConnectionType": 2,
  4502. "SlotType": 2
  4503. },
  4504. "DataType": 1
  4505. }
  4506. ],
  4507. "Datums": [
  4508. {
  4509. "isOverloadedStorage": false,
  4510. "scriptCanvasType": {
  4511. "m_type": 1
  4512. },
  4513. "isNullPointer": false,
  4514. "$type": "EntityId",
  4515. "value": {
  4516. "id": 2901262558
  4517. },
  4518. "label": "Entity Id"
  4519. }
  4520. ],
  4521. "methodType": 0,
  4522. "methodName": "GetEntityName",
  4523. "className": "ComponentApplicationBus",
  4524. "resultSlotIDs": [
  4525. {}
  4526. ],
  4527. "inputSlots": [
  4528. {
  4529. "m_id": "{1127602F-F67C-4C0E-9988-C349650276A3}"
  4530. }
  4531. ],
  4532. "prettyClassName": "ComponentApplicationBus"
  4533. }
  4534. }
  4535. },
  4536. {
  4537. "Id": {
  4538. "id": 222967906946816
  4539. },
  4540. "Name": "ReceiveScriptEvent",
  4541. "Components": {
  4542. "Component_[469658446870209082]": {
  4543. "$type": "ReceiveScriptEvent",
  4544. "Id": 469658446870209082,
  4545. "Slots": [
  4546. {
  4547. "id": {
  4548. "m_id": "{5510F0C1-B5EA-441B-BEB7-754AAF465E61}"
  4549. },
  4550. "contracts": [
  4551. {
  4552. "$type": "SlotTypeContract"
  4553. }
  4554. ],
  4555. "slotName": "Connect",
  4556. "toolTip": "Connect this event handler to the specified entity.",
  4557. "Descriptor": {
  4558. "ConnectionType": 1,
  4559. "SlotType": 1
  4560. }
  4561. },
  4562. {
  4563. "id": {
  4564. "m_id": "{5C43733F-FB7D-45CE-B096-DE9293C68FA7}"
  4565. },
  4566. "contracts": [
  4567. {
  4568. "$type": "SlotTypeContract"
  4569. }
  4570. ],
  4571. "slotName": "Disconnect",
  4572. "toolTip": "Disconnect this event handler.",
  4573. "Descriptor": {
  4574. "ConnectionType": 1,
  4575. "SlotType": 1
  4576. }
  4577. },
  4578. {
  4579. "id": {
  4580. "m_id": "{1D425AAC-8B5E-4E84-B25A-7FB7009F6C1E}"
  4581. },
  4582. "contracts": [
  4583. {
  4584. "$type": "SlotTypeContract"
  4585. }
  4586. ],
  4587. "slotName": "OnConnected",
  4588. "toolTip": "Signaled when a connection has taken place.",
  4589. "Descriptor": {
  4590. "ConnectionType": 2,
  4591. "SlotType": 1
  4592. }
  4593. },
  4594. {
  4595. "id": {
  4596. "m_id": "{47FD6F9C-DE70-4443-A2C4-E78C5947BFBF}"
  4597. },
  4598. "contracts": [
  4599. {
  4600. "$type": "SlotTypeContract"
  4601. }
  4602. ],
  4603. "slotName": "OnDisconnected",
  4604. "toolTip": "Signaled when this event handler is disconnected.",
  4605. "Descriptor": {
  4606. "ConnectionType": 2,
  4607. "SlotType": 1
  4608. }
  4609. },
  4610. {
  4611. "id": {
  4612. "m_id": "{1DCE4EF1-CB9A-4B93-8F18-D1853F81E363}"
  4613. },
  4614. "contracts": [
  4615. {
  4616. "$type": "SlotTypeContract"
  4617. }
  4618. ],
  4619. "slotName": "OnFailure",
  4620. "toolTip": "Signaled when it is not possible to connect this handler.",
  4621. "Descriptor": {
  4622. "ConnectionType": 2,
  4623. "SlotType": 1
  4624. }
  4625. },
  4626. {
  4627. "id": {
  4628. "m_id": "{D34A57A9-547E-41E1-A512-8DA5B6ABF1A5}"
  4629. },
  4630. "contracts": [
  4631. {
  4632. "$type": "SlotTypeContract"
  4633. }
  4634. ],
  4635. "slotName": "ExecutionSlot:NextLevel",
  4636. "Descriptor": {
  4637. "ConnectionType": 2,
  4638. "SlotType": 1
  4639. },
  4640. "IsLatent": true
  4641. },
  4642. {
  4643. "id": {
  4644. "m_id": "{289F206F-5CAA-42D4-8782-3FB068F7F0F6}"
  4645. },
  4646. "contracts": [
  4647. {
  4648. "$type": "SlotTypeContract"
  4649. }
  4650. ],
  4651. "slotName": "GameState",
  4652. "DisplayDataType": {
  4653. "m_type": 5
  4654. },
  4655. "Descriptor": {
  4656. "ConnectionType": 2,
  4657. "SlotType": 2
  4658. },
  4659. "DataType": 1
  4660. },
  4661. {
  4662. "id": {
  4663. "m_id": "{DB79A3DF-C8AC-41D1-BE31-E978B962E421}"
  4664. },
  4665. "contracts": [
  4666. {
  4667. "$type": "SlotTypeContract"
  4668. }
  4669. ],
  4670. "slotName": "ExecutionSlot:GameStateChanged",
  4671. "Descriptor": {
  4672. "ConnectionType": 2,
  4673. "SlotType": 1
  4674. },
  4675. "IsLatent": true
  4676. },
  4677. {
  4678. "id": {
  4679. "m_id": "{BC5016C1-A8CC-412D-85F0-D9A5B0B82E08}"
  4680. },
  4681. "contracts": [
  4682. {
  4683. "$type": "SlotTypeContract"
  4684. }
  4685. ],
  4686. "slotName": "ExecutionSlot:PlayerHitByObstacle",
  4687. "Descriptor": {
  4688. "ConnectionType": 2,
  4689. "SlotType": 1
  4690. },
  4691. "IsLatent": true
  4692. },
  4693. {
  4694. "id": {
  4695. "m_id": "{2335FF46-17B3-47F0-804D-FE90E3D46095}"
  4696. },
  4697. "contracts": [
  4698. {
  4699. "$type": "SlotTypeContract"
  4700. }
  4701. ],
  4702. "slotName": "String",
  4703. "Descriptor": {
  4704. "ConnectionType": 1,
  4705. "SlotType": 2
  4706. },
  4707. "DataType": 1
  4708. },
  4709. {
  4710. "id": {
  4711. "m_id": "{88B2394D-4F44-4D7A-A456-32C150056B09}"
  4712. },
  4713. "contracts": [
  4714. {
  4715. "$type": "SlotTypeContract"
  4716. }
  4717. ],
  4718. "slotName": "ExecutionSlot:GetGameState",
  4719. "Descriptor": {
  4720. "ConnectionType": 2,
  4721. "SlotType": 1
  4722. },
  4723. "IsLatent": true
  4724. },
  4725. {
  4726. "id": {
  4727. "m_id": "{AEDF06C9-970E-4356-AC77-31625AF9BF7C}"
  4728. },
  4729. "contracts": [
  4730. {
  4731. "$type": "SlotTypeContract"
  4732. }
  4733. ],
  4734. "slotName": "ExecutionSlot:NewspaperThrown",
  4735. "Descriptor": {
  4736. "ConnectionType": 2,
  4737. "SlotType": 1
  4738. },
  4739. "IsLatent": true
  4740. },
  4741. {
  4742. "id": {
  4743. "m_id": "{7CB693A2-CC69-4A1B-A7FA-3E8D2C728F8B}"
  4744. },
  4745. "contracts": [
  4746. {
  4747. "$type": "SlotTypeContract"
  4748. }
  4749. ],
  4750. "slotName": "Number",
  4751. "Descriptor": {
  4752. "ConnectionType": 1,
  4753. "SlotType": 2
  4754. },
  4755. "DataType": 1
  4756. },
  4757. {
  4758. "id": {
  4759. "m_id": "{896820FA-F3D0-43BA-9205-6CC673D3AC55}"
  4760. },
  4761. "contracts": [
  4762. {
  4763. "$type": "SlotTypeContract"
  4764. }
  4765. ],
  4766. "slotName": "ExecutionSlot:GetNewspapersRemaining",
  4767. "Descriptor": {
  4768. "ConnectionType": 2,
  4769. "SlotType": 1
  4770. },
  4771. "IsLatent": true
  4772. },
  4773. {
  4774. "id": {
  4775. "m_id": "{F1ABEA2D-DCF3-4E33-AB73-66B58579664E}"
  4776. },
  4777. "contracts": [
  4778. {
  4779. "$type": "SlotTypeContract"
  4780. }
  4781. ],
  4782. "slotName": "ExecutionSlot:StartGame",
  4783. "Descriptor": {
  4784. "ConnectionType": 2,
  4785. "SlotType": 1
  4786. },
  4787. "IsLatent": true
  4788. },
  4789. {
  4790. "id": {
  4791. "m_id": "{A0AFEE6D-4D57-439E-B0B4-FD3A53436A37}"
  4792. },
  4793. "contracts": [
  4794. {
  4795. "$type": "SlotTypeContract"
  4796. }
  4797. ],
  4798. "slotName": "Points",
  4799. "DisplayDataType": {
  4800. "m_type": 3
  4801. },
  4802. "Descriptor": {
  4803. "ConnectionType": 2,
  4804. "SlotType": 2
  4805. },
  4806. "DataType": 1
  4807. },
  4808. {
  4809. "id": {
  4810. "m_id": "{252D9CDD-79DC-4913-8438-9A2E0C8897A8}"
  4811. },
  4812. "contracts": [
  4813. {
  4814. "$type": "SlotTypeContract"
  4815. }
  4816. ],
  4817. "slotName": "ExecutionSlot:NewspaperHitTarget",
  4818. "Descriptor": {
  4819. "ConnectionType": 2,
  4820. "SlotType": 1
  4821. },
  4822. "IsLatent": true
  4823. }
  4824. ],
  4825. "Datums": [
  4826. {
  4827. "isOverloadedStorage": false,
  4828. "scriptCanvasType": {
  4829. "m_type": 5
  4830. },
  4831. "isNullPointer": false,
  4832. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  4833. "value": "",
  4834. "label": "String"
  4835. },
  4836. {
  4837. "isOverloadedStorage": false,
  4838. "scriptCanvasType": {
  4839. "m_type": 3
  4840. },
  4841. "isNullPointer": false,
  4842. "$type": "double",
  4843. "value": 0.0,
  4844. "label": "Number"
  4845. }
  4846. ],
  4847. "m_version": 11,
  4848. "m_eventMap": [
  4849. {
  4850. "Key": {
  4851. "Value": 949996825
  4852. },
  4853. "Value": {
  4854. "m_scriptEventAssetId": {
  4855. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  4856. },
  4857. "m_eventName": "NewspaperThrown",
  4858. "m_eventSlotId": {
  4859. "m_id": "{AEDF06C9-970E-4356-AC77-31625AF9BF7C}"
  4860. }
  4861. }
  4862. },
  4863. {
  4864. "Key": {
  4865. "Value": 1059988396
  4866. },
  4867. "Value": {
  4868. "m_scriptEventAssetId": {
  4869. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  4870. },
  4871. "m_eventName": "GetGameState",
  4872. "m_eventSlotId": {
  4873. "m_id": "{88B2394D-4F44-4D7A-A456-32C150056B09}"
  4874. },
  4875. "m_resultSlotId": {
  4876. "m_id": "{2335FF46-17B3-47F0-804D-FE90E3D46095}"
  4877. }
  4878. }
  4879. },
  4880. {
  4881. "Key": {
  4882. "Value": 1337177786
  4883. },
  4884. "Value": {
  4885. "m_scriptEventAssetId": {
  4886. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  4887. },
  4888. "m_eventName": "StartGame",
  4889. "m_eventSlotId": {
  4890. "m_id": "{F1ABEA2D-DCF3-4E33-AB73-66B58579664E}"
  4891. }
  4892. }
  4893. },
  4894. {
  4895. "Key": {
  4896. "Value": 1558730029
  4897. },
  4898. "Value": {
  4899. "m_scriptEventAssetId": {
  4900. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  4901. },
  4902. "m_eventName": "PlayerHitByObstacle",
  4903. "m_eventSlotId": {
  4904. "m_id": "{BC5016C1-A8CC-412D-85F0-D9A5B0B82E08}"
  4905. }
  4906. }
  4907. },
  4908. {
  4909. "Key": {
  4910. "Value": 2045047473
  4911. },
  4912. "Value": {
  4913. "m_scriptEventAssetId": {
  4914. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  4915. },
  4916. "m_eventName": "GetNewspapersRemaining",
  4917. "m_eventSlotId": {
  4918. "m_id": "{896820FA-F3D0-43BA-9205-6CC673D3AC55}"
  4919. },
  4920. "m_resultSlotId": {
  4921. "m_id": "{7CB693A2-CC69-4A1B-A7FA-3E8D2C728F8B}"
  4922. }
  4923. }
  4924. },
  4925. {
  4926. "Key": {
  4927. "Value": 3075378332
  4928. },
  4929. "Value": {
  4930. "m_scriptEventAssetId": {
  4931. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  4932. },
  4933. "m_eventName": "NextLevel",
  4934. "m_eventSlotId": {
  4935. "m_id": "{D34A57A9-547E-41E1-A512-8DA5B6ABF1A5}"
  4936. }
  4937. }
  4938. },
  4939. {
  4940. "Key": {
  4941. "Value": 3434847886
  4942. },
  4943. "Value": {
  4944. "m_scriptEventAssetId": {
  4945. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  4946. },
  4947. "m_eventName": "NewspaperHitTarget",
  4948. "m_eventSlotId": {
  4949. "m_id": "{252D9CDD-79DC-4913-8438-9A2E0C8897A8}"
  4950. },
  4951. "m_parameterSlotIds": [
  4952. {
  4953. "m_id": "{A0AFEE6D-4D57-439E-B0B4-FD3A53436A37}"
  4954. }
  4955. ],
  4956. "m_numExpectedArguments": 1
  4957. }
  4958. },
  4959. {
  4960. "Key": {
  4961. "Value": 3435658061
  4962. },
  4963. "Value": {
  4964. "m_scriptEventAssetId": {
  4965. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  4966. },
  4967. "m_eventName": "GameStateChanged",
  4968. "m_eventSlotId": {
  4969. "m_id": "{DB79A3DF-C8AC-41D1-BE31-E978B962E421}"
  4970. },
  4971. "m_parameterSlotIds": [
  4972. {
  4973. "m_id": "{289F206F-5CAA-42D4-8782-3FB068F7F0F6}"
  4974. }
  4975. ],
  4976. "m_numExpectedArguments": 1
  4977. }
  4978. }
  4979. ],
  4980. "m_eventSlotMapping": {
  4981. "{11D5D184-7907-4EDA-895E-FCE09AE24C9E}": {
  4982. "m_id": "{2335FF46-17B3-47F0-804D-FE90E3D46095}"
  4983. },
  4984. "{1F24D57F-234D-490A-9413-F530A08ABAE9}": {
  4985. "m_id": "{BC5016C1-A8CC-412D-85F0-D9A5B0B82E08}"
  4986. },
  4987. "{40D8D69C-30AD-46D6-919D-9B4C3A347E67}": {
  4988. "m_id": "{7CB693A2-CC69-4A1B-A7FA-3E8D2C728F8B}"
  4989. },
  4990. "{43ED63ED-9232-44B9-9319-BA02243ECFBC}": {
  4991. "m_id": "{AEDF06C9-970E-4356-AC77-31625AF9BF7C}"
  4992. },
  4993. "{8DFE5BDF-84F2-4D0F-BE77-9EDFA94DD483}": {
  4994. "m_id": "{289F206F-5CAA-42D4-8782-3FB068F7F0F6}"
  4995. },
  4996. "{8FB2B34B-3517-4CC8-8A19-DF4493E97D92}": {
  4997. "m_id": "{F1ABEA2D-DCF3-4E33-AB73-66B58579664E}"
  4998. },
  4999. "{93096A5C-B8EE-46A1-8760-6233CA538C1A}": {
  5000. "m_id": "{252D9CDD-79DC-4913-8438-9A2E0C8897A8}"
  5001. },
  5002. "{A6509EAA-A5EB-49C3-A771-2C65EC1F58C2}": {
  5003. "m_id": "{88B2394D-4F44-4D7A-A456-32C150056B09}"
  5004. },
  5005. "{ABE647BB-C5B0-45D9-A69B-088C1A2ECF80}": {
  5006. "m_id": "{D34A57A9-547E-41E1-A512-8DA5B6ABF1A5}"
  5007. },
  5008. "{D277195A-B1C0-4ED7-9666-F0D1AE486BEF}": {
  5009. "m_id": "{DB79A3DF-C8AC-41D1-BE31-E978B962E421}"
  5010. },
  5011. "{DDB92FDF-34B3-4EE3-9ABB-5C2223CCEAE0}": {
  5012. "m_id": "{896820FA-F3D0-43BA-9205-6CC673D3AC55}"
  5013. },
  5014. "{FB6E6EE6-0A89-4C88-909A-0190D98BE4DE}": {
  5015. "m_id": "{A0AFEE6D-4D57-439E-B0B4-FD3A53436A37}"
  5016. }
  5017. },
  5018. "m_scriptEventAssetId": {
  5019. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  5020. },
  5021. "m_asset": {
  5022. "assetId": {
  5023. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  5024. },
  5025. "loadBehavior": "PreLoad",
  5026. "assetHint": "scriptcanvas/paper_kid_script_events.scriptevents"
  5027. },
  5028. "m_autoConnectToGraphOwner": false
  5029. }
  5030. }
  5031. },
  5032. {
  5033. "Id": {
  5034. "id": 222813288124160
  5035. },
  5036. "Name": "EBusEventHandler",
  5037. "Components": {
  5038. "Component_[5205290569112957589]": {
  5039. "$type": "EBusEventHandler",
  5040. "Id": 5205290569112957589,
  5041. "Slots": [
  5042. {
  5043. "id": {
  5044. "m_id": "{56084221-822F-43DA-A6FE-0B8EE6AA79E2}"
  5045. },
  5046. "contracts": [
  5047. {
  5048. "$type": "SlotTypeContract"
  5049. }
  5050. ],
  5051. "slotName": "Connect",
  5052. "toolTip": "Connect this event handler to the specified entity.",
  5053. "Descriptor": {
  5054. "ConnectionType": 1,
  5055. "SlotType": 1
  5056. }
  5057. },
  5058. {
  5059. "id": {
  5060. "m_id": "{B03AB912-9DF7-4447-87BB-3C1D40C8A193}"
  5061. },
  5062. "contracts": [
  5063. {
  5064. "$type": "SlotTypeContract"
  5065. }
  5066. ],
  5067. "slotName": "Disconnect",
  5068. "toolTip": "Disconnect this event handler.",
  5069. "Descriptor": {
  5070. "ConnectionType": 1,
  5071. "SlotType": 1
  5072. }
  5073. },
  5074. {
  5075. "id": {
  5076. "m_id": "{68B7F297-331D-48E6-95A1-7D82F2F6A15D}"
  5077. },
  5078. "contracts": [
  5079. {
  5080. "$type": "SlotTypeContract"
  5081. }
  5082. ],
  5083. "slotName": "OnConnected",
  5084. "toolTip": "Signaled when a connection has taken place.",
  5085. "Descriptor": {
  5086. "ConnectionType": 2,
  5087. "SlotType": 1
  5088. }
  5089. },
  5090. {
  5091. "id": {
  5092. "m_id": "{20A905BC-10B4-43DB-98AF-BC97B99D087E}"
  5093. },
  5094. "contracts": [
  5095. {
  5096. "$type": "SlotTypeContract"
  5097. }
  5098. ],
  5099. "slotName": "OnDisconnected",
  5100. "toolTip": "Signaled when this event handler is disconnected.",
  5101. "Descriptor": {
  5102. "ConnectionType": 2,
  5103. "SlotType": 1
  5104. }
  5105. },
  5106. {
  5107. "id": {
  5108. "m_id": "{D15EB9B0-2486-401F-A614-22F4F599D6AE}"
  5109. },
  5110. "contracts": [
  5111. {
  5112. "$type": "SlotTypeContract"
  5113. }
  5114. ],
  5115. "slotName": "OnFailure",
  5116. "toolTip": "Signaled when it is not possible to connect this handler.",
  5117. "Descriptor": {
  5118. "ConnectionType": 2,
  5119. "SlotType": 1
  5120. }
  5121. },
  5122. {
  5123. "id": {
  5124. "m_id": "{11BA352B-85D9-40A2-97F1-DF8FEA457A10}"
  5125. },
  5126. "contracts": [
  5127. {
  5128. "$type": "SlotTypeContract"
  5129. }
  5130. ],
  5131. "slotName": "Source",
  5132. "toolTip": "ID used to connect on a specific Event address (Type: EntityId)",
  5133. "Descriptor": {
  5134. "ConnectionType": 1,
  5135. "SlotType": 2
  5136. },
  5137. "DataType": 1
  5138. },
  5139. {
  5140. "id": {
  5141. "m_id": "{E8A67721-FAAD-46D7-82D3-DB073C741D75}"
  5142. },
  5143. "contracts": [
  5144. {
  5145. "$type": "SlotTypeContract"
  5146. }
  5147. ],
  5148. "slotName": "EntityId",
  5149. "DisplayDataType": {
  5150. "m_type": 1
  5151. },
  5152. "Descriptor": {
  5153. "ConnectionType": 2,
  5154. "SlotType": 2
  5155. },
  5156. "DataType": 1
  5157. },
  5158. {
  5159. "id": {
  5160. "m_id": "{55D318BB-A620-4F6A-BDD7-20266D92CBE3}"
  5161. },
  5162. "contracts": [
  5163. {
  5164. "$type": "SlotTypeContract"
  5165. }
  5166. ],
  5167. "slotName": "ExecutionSlot:OnEntityActivated",
  5168. "Descriptor": {
  5169. "ConnectionType": 2,
  5170. "SlotType": 1
  5171. },
  5172. "IsLatent": true
  5173. },
  5174. {
  5175. "id": {
  5176. "m_id": "{3DA5CC56-037F-4449-9353-310ACABFF18C}"
  5177. },
  5178. "contracts": [
  5179. {
  5180. "$type": "SlotTypeContract"
  5181. }
  5182. ],
  5183. "slotName": "EntityId",
  5184. "DisplayDataType": {
  5185. "m_type": 1
  5186. },
  5187. "Descriptor": {
  5188. "ConnectionType": 2,
  5189. "SlotType": 2
  5190. },
  5191. "DataType": 1
  5192. },
  5193. {
  5194. "id": {
  5195. "m_id": "{C4EC5B4A-DCEC-43AB-9757-CD6F543E3F23}"
  5196. },
  5197. "contracts": [
  5198. {
  5199. "$type": "SlotTypeContract"
  5200. }
  5201. ],
  5202. "slotName": "ExecutionSlot:OnEntityDeactivated",
  5203. "Descriptor": {
  5204. "ConnectionType": 2,
  5205. "SlotType": 1
  5206. },
  5207. "IsLatent": true
  5208. }
  5209. ],
  5210. "Datums": [
  5211. {
  5212. "isOverloadedStorage": false,
  5213. "scriptCanvasType": {
  5214. "m_type": 1
  5215. },
  5216. "isNullPointer": false,
  5217. "$type": "EntityId",
  5218. "value": {
  5219. "id": 2901262558
  5220. },
  5221. "label": "Source"
  5222. }
  5223. ],
  5224. "m_eventMap": [
  5225. {
  5226. "Key": {
  5227. "Value": 245425936
  5228. },
  5229. "Value": {
  5230. "m_eventName": "OnEntityActivated",
  5231. "m_eventId": {
  5232. "Value": 245425936
  5233. },
  5234. "m_eventSlotId": {
  5235. "m_id": "{55D318BB-A620-4F6A-BDD7-20266D92CBE3}"
  5236. },
  5237. "m_parameterSlotIds": [
  5238. {
  5239. "m_id": "{E8A67721-FAAD-46D7-82D3-DB073C741D75}"
  5240. }
  5241. ],
  5242. "m_numExpectedArguments": 1
  5243. }
  5244. },
  5245. {
  5246. "Key": {
  5247. "Value": 4273369222
  5248. },
  5249. "Value": {
  5250. "m_eventName": "OnEntityDeactivated",
  5251. "m_eventId": {
  5252. "Value": 4273369222
  5253. },
  5254. "m_eventSlotId": {
  5255. "m_id": "{C4EC5B4A-DCEC-43AB-9757-CD6F543E3F23}"
  5256. },
  5257. "m_parameterSlotIds": [
  5258. {
  5259. "m_id": "{3DA5CC56-037F-4449-9353-310ACABFF18C}"
  5260. }
  5261. ],
  5262. "m_numExpectedArguments": 1
  5263. }
  5264. }
  5265. ],
  5266. "m_ebusName": "EntityBus",
  5267. "m_busId": {
  5268. "Value": 3358774020
  5269. }
  5270. }
  5271. }
  5272. },
  5273. {
  5274. "Id": {
  5275. "id": 222839057927936
  5276. },
  5277. "Name": "SC-Node(Get Element)",
  5278. "Components": {
  5279. "Component_[5292428747069529941]": {
  5280. "$type": "MethodOverloaded",
  5281. "Id": 5292428747069529941,
  5282. "Slots": [
  5283. {
  5284. "id": {
  5285. "m_id": "{9B3FD6DC-4143-4DC8-9E4F-C4C85B7B13D3}"
  5286. },
  5287. "DynamicTypeOverride": 2,
  5288. "contracts": [
  5289. {
  5290. "$type": "SlotTypeContract"
  5291. },
  5292. {
  5293. "$type": "OverloadContract"
  5294. }
  5295. ],
  5296. "slotName": "Container",
  5297. "toolTip": "The container to get element from",
  5298. "DisplayDataType": {
  5299. "m_type": 4,
  5300. "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}"
  5301. },
  5302. "Descriptor": {
  5303. "ConnectionType": 1,
  5304. "SlotType": 2
  5305. },
  5306. "DataType": 1
  5307. },
  5308. {
  5309. "id": {
  5310. "m_id": "{2E0772AC-00C5-4219-A7AE-10797185EE9E}"
  5311. },
  5312. "DynamicTypeOverride": 1,
  5313. "contracts": [
  5314. {
  5315. "$type": "SlotTypeContract"
  5316. },
  5317. {
  5318. "$type": "OverloadContract"
  5319. }
  5320. ],
  5321. "slotName": "Index",
  5322. "toolTip": "The index to read from",
  5323. "DisplayDataType": {
  5324. "m_type": 3
  5325. },
  5326. "Descriptor": {
  5327. "ConnectionType": 1,
  5328. "SlotType": 2
  5329. },
  5330. "DataType": 1
  5331. },
  5332. {
  5333. "id": {
  5334. "m_id": "{FF273D8F-51E4-4ABA-993A-656123B6A645}"
  5335. },
  5336. "contracts": [
  5337. {
  5338. "$type": "SlotTypeContract"
  5339. }
  5340. ],
  5341. "slotName": "In",
  5342. "Descriptor": {
  5343. "ConnectionType": 1,
  5344. "SlotType": 1
  5345. }
  5346. },
  5347. {
  5348. "id": {
  5349. "m_id": "{ECB61DA2-22DD-4F3C-BF7F-B0E2F554B94A}"
  5350. },
  5351. "contracts": [
  5352. {
  5353. "$type": "SlotTypeContract"
  5354. }
  5355. ],
  5356. "slotName": "Out",
  5357. "Descriptor": {
  5358. "ConnectionType": 2,
  5359. "SlotType": 1
  5360. }
  5361. },
  5362. {
  5363. "id": {
  5364. "m_id": "{385B257A-CEE4-4398-AC25-2EF8621A0974}"
  5365. },
  5366. "contracts": [
  5367. {
  5368. "$type": "SlotTypeContract"
  5369. }
  5370. ],
  5371. "slotName": "Key Not Found",
  5372. "Descriptor": {
  5373. "ConnectionType": 2,
  5374. "SlotType": 1
  5375. }
  5376. },
  5377. {
  5378. "id": {
  5379. "m_id": "{61CAEC76-1CF3-484E-BF8D-396ED2678F65}"
  5380. },
  5381. "DynamicTypeOverride": 3,
  5382. "contracts": [
  5383. {
  5384. "$type": "SlotTypeContract"
  5385. },
  5386. {
  5387. "$type": "OverloadContract"
  5388. }
  5389. ],
  5390. "slotName": "Value",
  5391. "DisplayDataType": {
  5392. "m_type": 5
  5393. },
  5394. "Descriptor": {
  5395. "ConnectionType": 2,
  5396. "SlotType": 2
  5397. },
  5398. "DataType": 1
  5399. }
  5400. ],
  5401. "Datums": [
  5402. {
  5403. "isOverloadedStorage": false,
  5404. "scriptCanvasType": {
  5405. "m_type": 4,
  5406. "m_azType": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}"
  5407. },
  5408. "isNullPointer": false,
  5409. "$type": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C} AZStd::vector<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, allocator>",
  5410. "label": "Container"
  5411. },
  5412. {
  5413. "isOverloadedStorage": false,
  5414. "scriptCanvasType": {
  5415. "m_type": 3
  5416. },
  5417. "isNullPointer": false,
  5418. "$type": "double",
  5419. "value": 1.0,
  5420. "label": "Index"
  5421. }
  5422. ],
  5423. "methodType": 2,
  5424. "methodName": "Get Element",
  5425. "className": "AZStd::vector<AZStd::basic_string<char, AZStd::char_traits<char>, allocator>, allocator>",
  5426. "inputSlots": [
  5427. {
  5428. "m_id": "{9B3FD6DC-4143-4DC8-9E4F-C4C85B7B13D3}"
  5429. },
  5430. {
  5431. "m_id": "{2E0772AC-00C5-4219-A7AE-10797185EE9E}"
  5432. }
  5433. ],
  5434. "orderedInputSlotIds": [
  5435. {
  5436. "m_id": "{9B3FD6DC-4143-4DC8-9E4F-C4C85B7B13D3}"
  5437. },
  5438. {
  5439. "m_id": "{2E0772AC-00C5-4219-A7AE-10797185EE9E}"
  5440. }
  5441. ],
  5442. "outputSlotIds": [
  5443. {
  5444. "m_id": "{61CAEC76-1CF3-484E-BF8D-396ED2678F65}"
  5445. }
  5446. ]
  5447. }
  5448. }
  5449. },
  5450. {
  5451. "Id": {
  5452. "id": 222864827731712
  5453. },
  5454. "Name": "SC-Node(SetVisibility)",
  5455. "Components": {
  5456. "Component_[6229018625893930522]": {
  5457. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  5458. "Id": 6229018625893930522,
  5459. "Slots": [
  5460. {
  5461. "id": {
  5462. "m_id": "{70BA44BF-7B75-4F91-B0B2-EDD58D5E74DA}"
  5463. },
  5464. "contracts": [
  5465. {
  5466. "$type": "SlotTypeContract"
  5467. }
  5468. ],
  5469. "slotName": "EntityId: 0",
  5470. "Descriptor": {
  5471. "ConnectionType": 1,
  5472. "SlotType": 2
  5473. },
  5474. "DataType": 1,
  5475. "IsReference": true,
  5476. "VariableReference": {
  5477. "m_id": "{96D1005F-62AA-493E-977C-BE75523820B7}"
  5478. }
  5479. },
  5480. {
  5481. "id": {
  5482. "m_id": "{F1D6ADFD-63D8-4E0E-9219-6B60C06BB52D}"
  5483. },
  5484. "contracts": [
  5485. {
  5486. "$type": "SlotTypeContract"
  5487. }
  5488. ],
  5489. "slotName": "Boolean: 1",
  5490. "Descriptor": {
  5491. "ConnectionType": 1,
  5492. "SlotType": 2
  5493. },
  5494. "DataType": 1
  5495. },
  5496. {
  5497. "id": {
  5498. "m_id": "{D8103921-1B03-4F4B-B8EB-8047A3F3EE17}"
  5499. },
  5500. "contracts": [
  5501. {
  5502. "$type": "SlotTypeContract"
  5503. }
  5504. ],
  5505. "slotName": "In",
  5506. "Descriptor": {
  5507. "ConnectionType": 1,
  5508. "SlotType": 1
  5509. }
  5510. },
  5511. {
  5512. "id": {
  5513. "m_id": "{E2D0A4A8-01E0-457F-AB9A-26A7FF11F3C8}"
  5514. },
  5515. "contracts": [
  5516. {
  5517. "$type": "SlotTypeContract"
  5518. }
  5519. ],
  5520. "slotName": "Out",
  5521. "Descriptor": {
  5522. "ConnectionType": 2,
  5523. "SlotType": 1
  5524. }
  5525. }
  5526. ],
  5527. "Datums": [
  5528. {
  5529. "isOverloadedStorage": false,
  5530. "scriptCanvasType": {
  5531. "m_type": 1
  5532. },
  5533. "isNullPointer": false,
  5534. "$type": "EntityId",
  5535. "value": {
  5536. "id": 2901262558
  5537. },
  5538. "label": "Source"
  5539. },
  5540. {
  5541. "isOverloadedStorage": false,
  5542. "scriptCanvasType": {
  5543. "m_type": 0
  5544. },
  5545. "isNullPointer": false,
  5546. "$type": "bool",
  5547. "value": false,
  5548. "label": "Boolean: 1"
  5549. }
  5550. ],
  5551. "methodType": 0,
  5552. "methodName": "SetVisibility",
  5553. "className": "RenderMeshComponentRequestBus",
  5554. "resultSlotIDs": [
  5555. {}
  5556. ],
  5557. "inputSlots": [
  5558. {
  5559. "m_id": "{70BA44BF-7B75-4F91-B0B2-EDD58D5E74DA}"
  5560. },
  5561. {
  5562. "m_id": "{F1D6ADFD-63D8-4E0E-9219-6B60C06BB52D}"
  5563. }
  5564. ],
  5565. "prettyClassName": "RenderMeshComponentRequestBus"
  5566. }
  5567. }
  5568. },
  5569. {
  5570. "Id": {
  5571. "id": 222886302568192
  5572. },
  5573. "Name": "SC-Node(ScriptCanvas_StringFunctions_EndsWith)",
  5574. "Components": {
  5575. "Component_[6797175812691811747]": {
  5576. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  5577. "Id": 6797175812691811747,
  5578. "Slots": [
  5579. {
  5580. "id": {
  5581. "m_id": "{21E3453C-BCFA-4085-8384-70B7D0719A72}"
  5582. },
  5583. "contracts": [
  5584. {
  5585. "$type": "SlotTypeContract"
  5586. }
  5587. ],
  5588. "slotName": "Source",
  5589. "toolTip": "The string to search in.",
  5590. "Descriptor": {
  5591. "ConnectionType": 1,
  5592. "SlotType": 2
  5593. },
  5594. "DataType": 1
  5595. },
  5596. {
  5597. "id": {
  5598. "m_id": "{C83BEE50-C18F-4112-93A7-20F7B2FF1D33}"
  5599. },
  5600. "contracts": [
  5601. {
  5602. "$type": "SlotTypeContract"
  5603. }
  5604. ],
  5605. "slotName": "Pattern",
  5606. "toolTip": "The substring to search for.",
  5607. "Descriptor": {
  5608. "ConnectionType": 1,
  5609. "SlotType": 2
  5610. },
  5611. "DataType": 1
  5612. },
  5613. {
  5614. "id": {
  5615. "m_id": "{89A69DAE-8301-4807-B60C-5669919FEE74}"
  5616. },
  5617. "contracts": [
  5618. {
  5619. "$type": "SlotTypeContract"
  5620. }
  5621. ],
  5622. "slotName": "Case Sensitive",
  5623. "toolTip": "Take into account the case of the string when searching.",
  5624. "Descriptor": {
  5625. "ConnectionType": 1,
  5626. "SlotType": 2
  5627. },
  5628. "DataType": 1
  5629. },
  5630. {
  5631. "id": {
  5632. "m_id": "{4FA579D7-516F-4A97-8889-37843083E2BB}"
  5633. },
  5634. "contracts": [
  5635. {
  5636. "$type": "SlotTypeContract"
  5637. }
  5638. ],
  5639. "slotName": "In",
  5640. "Descriptor": {
  5641. "ConnectionType": 1,
  5642. "SlotType": 1
  5643. }
  5644. },
  5645. {
  5646. "id": {
  5647. "m_id": "{AB04A583-81B2-4F36-9E3B-76158EEFC78E}"
  5648. },
  5649. "contracts": [
  5650. {
  5651. "$type": "SlotTypeContract"
  5652. }
  5653. ],
  5654. "slotName": "True",
  5655. "Descriptor": {
  5656. "ConnectionType": 2,
  5657. "SlotType": 1
  5658. }
  5659. },
  5660. {
  5661. "id": {
  5662. "m_id": "{A5BB0AFF-3CB0-406D-A471-63A851FEE747}"
  5663. },
  5664. "contracts": [
  5665. {
  5666. "$type": "SlotTypeContract"
  5667. }
  5668. ],
  5669. "slotName": "False",
  5670. "Descriptor": {
  5671. "ConnectionType": 2,
  5672. "SlotType": 1
  5673. }
  5674. },
  5675. {
  5676. "isVisibile": false,
  5677. "id": {
  5678. "m_id": "{B56AF761-1297-4E9E-80C6-DFC792BCC9C0}"
  5679. },
  5680. "contracts": [
  5681. {
  5682. "$type": "SlotTypeContract"
  5683. }
  5684. ],
  5685. "slotName": "Boolean",
  5686. "DisplayDataType": {
  5687. "m_type": 0
  5688. },
  5689. "Descriptor": {
  5690. "ConnectionType": 2,
  5691. "SlotType": 2
  5692. },
  5693. "DataType": 1
  5694. }
  5695. ],
  5696. "Datums": [
  5697. {
  5698. "isOverloadedStorage": false,
  5699. "scriptCanvasType": {
  5700. "m_type": 5
  5701. },
  5702. "isNullPointer": false,
  5703. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  5704. "value": "",
  5705. "label": "Source"
  5706. },
  5707. {
  5708. "isOverloadedStorage": false,
  5709. "scriptCanvasType": {
  5710. "m_type": 5
  5711. },
  5712. "isNullPointer": false,
  5713. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  5714. "value": "_Dark",
  5715. "label": "Pattern"
  5716. },
  5717. {
  5718. "isOverloadedStorage": false,
  5719. "scriptCanvasType": {
  5720. "m_type": 0
  5721. },
  5722. "isNullPointer": false,
  5723. "$type": "bool",
  5724. "value": false,
  5725. "label": "Case Sensitive"
  5726. }
  5727. ],
  5728. "methodType": 1,
  5729. "methodName": "ScriptCanvas_StringFunctions_EndsWith",
  5730. "resultSlotIDs": [
  5731. {}
  5732. ],
  5733. "inputSlots": [
  5734. {
  5735. "m_id": "{21E3453C-BCFA-4085-8384-70B7D0719A72}"
  5736. },
  5737. {
  5738. "m_id": "{C83BEE50-C18F-4112-93A7-20F7B2FF1D33}"
  5739. },
  5740. {
  5741. "m_id": "{89A69DAE-8301-4807-B60C-5669919FEE74}"
  5742. }
  5743. ],
  5744. "prettyClassName": "ScriptCanvas_StringFunctions_EndsWith"
  5745. }
  5746. }
  5747. },
  5748. {
  5749. "Id": {
  5750. "id": 222924957273856
  5751. },
  5752. "Name": "SC Node(SetVariable)",
  5753. "Components": {
  5754. "Component_[6959787993884586249]": {
  5755. "$type": "SetVariableNode",
  5756. "Id": 6959787993884586249,
  5757. "Slots": [
  5758. {
  5759. "id": {
  5760. "m_id": "{298D5B1E-F022-4432-83D1-0C6F92855595}"
  5761. },
  5762. "contracts": [
  5763. {
  5764. "$type": "SlotTypeContract"
  5765. }
  5766. ],
  5767. "slotName": "In",
  5768. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  5769. "Descriptor": {
  5770. "ConnectionType": 1,
  5771. "SlotType": 1
  5772. }
  5773. },
  5774. {
  5775. "id": {
  5776. "m_id": "{22A6B1C1-6461-404A-B029-ACF13E5D3009}"
  5777. },
  5778. "contracts": [
  5779. {
  5780. "$type": "SlotTypeContract"
  5781. }
  5782. ],
  5783. "slotName": "Out",
  5784. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  5785. "Descriptor": {
  5786. "ConnectionType": 2,
  5787. "SlotType": 1
  5788. }
  5789. },
  5790. {
  5791. "id": {
  5792. "m_id": "{6F80DFC2-20E8-4FEB-B2BA-BF06C375318C}"
  5793. },
  5794. "contracts": [
  5795. {
  5796. "$type": "SlotTypeContract"
  5797. }
  5798. ],
  5799. "slotName": "Boolean",
  5800. "Descriptor": {
  5801. "ConnectionType": 1,
  5802. "SlotType": 2
  5803. },
  5804. "DataType": 1
  5805. },
  5806. {
  5807. "id": {
  5808. "m_id": "{0B5112A9-CB6D-4DCD-A6B3-4055DD26D884}"
  5809. },
  5810. "contracts": [
  5811. {
  5812. "$type": "SlotTypeContract"
  5813. }
  5814. ],
  5815. "slotName": "Boolean",
  5816. "DisplayDataType": {
  5817. "m_type": 0
  5818. },
  5819. "Descriptor": {
  5820. "ConnectionType": 2,
  5821. "SlotType": 2
  5822. },
  5823. "DataType": 1
  5824. }
  5825. ],
  5826. "Datums": [
  5827. {
  5828. "isOverloadedStorage": false,
  5829. "scriptCanvasType": {
  5830. "m_type": 0
  5831. },
  5832. "isNullPointer": false,
  5833. "$type": "bool",
  5834. "value": false,
  5835. "label": "Boolean"
  5836. }
  5837. ],
  5838. "m_variableId": {
  5839. "m_id": "{6D99CBC3-046F-40FE-AED5-A0BDF236E311}"
  5840. },
  5841. "m_variableDataInSlotId": {
  5842. "m_id": "{6F80DFC2-20E8-4FEB-B2BA-BF06C375318C}"
  5843. },
  5844. "m_variableDataOutSlotId": {
  5845. "m_id": "{0B5112A9-CB6D-4DCD-A6B3-4055DD26D884}"
  5846. }
  5847. }
  5848. }
  5849. },
  5850. {
  5851. "Id": {
  5852. "id": 222959317012224
  5853. },
  5854. "Name": "SC-Node(ScriptCanvas_StringFunctions_StartsWith)",
  5855. "Components": {
  5856. "Component_[7297268549698748310]": {
  5857. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  5858. "Id": 7297268549698748310,
  5859. "Slots": [
  5860. {
  5861. "id": {
  5862. "m_id": "{EF99EF77-DDA5-422D-AAA6-5B3C641842BD}"
  5863. },
  5864. "contracts": [
  5865. {
  5866. "$type": "SlotTypeContract"
  5867. }
  5868. ],
  5869. "slotName": "Source",
  5870. "toolTip": "The string to search in.",
  5871. "Descriptor": {
  5872. "ConnectionType": 1,
  5873. "SlotType": 2
  5874. },
  5875. "DataType": 1
  5876. },
  5877. {
  5878. "id": {
  5879. "m_id": "{B823709E-15DB-4D0F-9C09-CF9A1855D030}"
  5880. },
  5881. "contracts": [
  5882. {
  5883. "$type": "SlotTypeContract"
  5884. }
  5885. ],
  5886. "slotName": "Pattern",
  5887. "toolTip": "The substring to search for.",
  5888. "Descriptor": {
  5889. "ConnectionType": 1,
  5890. "SlotType": 2
  5891. },
  5892. "DataType": 1
  5893. },
  5894. {
  5895. "id": {
  5896. "m_id": "{B54D1909-785A-418B-A40E-DA7AD4ABB6C1}"
  5897. },
  5898. "contracts": [
  5899. {
  5900. "$type": "SlotTypeContract"
  5901. }
  5902. ],
  5903. "slotName": "Case Sensitive",
  5904. "toolTip": "Take into account the case of the string when searching.",
  5905. "Descriptor": {
  5906. "ConnectionType": 1,
  5907. "SlotType": 2
  5908. },
  5909. "DataType": 1
  5910. },
  5911. {
  5912. "id": {
  5913. "m_id": "{721060B9-5CB7-4F0F-8AC5-6E417DAB90EE}"
  5914. },
  5915. "contracts": [
  5916. {
  5917. "$type": "SlotTypeContract"
  5918. }
  5919. ],
  5920. "slotName": "In",
  5921. "Descriptor": {
  5922. "ConnectionType": 1,
  5923. "SlotType": 1
  5924. }
  5925. },
  5926. {
  5927. "id": {
  5928. "m_id": "{3D06B1F8-80C7-42E9-BEC0-C03B306255F6}"
  5929. },
  5930. "contracts": [
  5931. {
  5932. "$type": "SlotTypeContract"
  5933. }
  5934. ],
  5935. "slotName": "True",
  5936. "Descriptor": {
  5937. "ConnectionType": 2,
  5938. "SlotType": 1
  5939. }
  5940. },
  5941. {
  5942. "id": {
  5943. "m_id": "{3B04EF89-B84F-49E5-95F5-9521BF09828C}"
  5944. },
  5945. "contracts": [
  5946. {
  5947. "$type": "SlotTypeContract"
  5948. }
  5949. ],
  5950. "slotName": "False",
  5951. "Descriptor": {
  5952. "ConnectionType": 2,
  5953. "SlotType": 1
  5954. }
  5955. },
  5956. {
  5957. "isVisibile": false,
  5958. "id": {
  5959. "m_id": "{1CA88607-B16A-482E-A743-CBAAC31EB5CE}"
  5960. },
  5961. "contracts": [
  5962. {
  5963. "$type": "SlotTypeContract"
  5964. }
  5965. ],
  5966. "slotName": "Boolean",
  5967. "DisplayDataType": {
  5968. "m_type": 0
  5969. },
  5970. "Descriptor": {
  5971. "ConnectionType": 2,
  5972. "SlotType": 2
  5973. },
  5974. "DataType": 1
  5975. }
  5976. ],
  5977. "Datums": [
  5978. {
  5979. "isOverloadedStorage": false,
  5980. "scriptCanvasType": {
  5981. "m_type": 5
  5982. },
  5983. "isNullPointer": false,
  5984. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  5985. "value": "",
  5986. "label": "Source"
  5987. },
  5988. {
  5989. "isOverloadedStorage": false,
  5990. "scriptCanvasType": {
  5991. "m_type": 5
  5992. },
  5993. "isNullPointer": false,
  5994. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  5995. "value": "House",
  5996. "label": "Pattern"
  5997. },
  5998. {
  5999. "isOverloadedStorage": false,
  6000. "scriptCanvasType": {
  6001. "m_type": 0
  6002. },
  6003. "isNullPointer": false,
  6004. "$type": "bool",
  6005. "value": false,
  6006. "label": "Case Sensitive"
  6007. }
  6008. ],
  6009. "methodType": 1,
  6010. "methodName": "ScriptCanvas_StringFunctions_StartsWith",
  6011. "resultSlotIDs": [
  6012. {}
  6013. ],
  6014. "inputSlots": [
  6015. {
  6016. "m_id": "{EF99EF77-DDA5-422D-AAA6-5B3C641842BD}"
  6017. },
  6018. {
  6019. "m_id": "{B823709E-15DB-4D0F-9C09-CF9A1855D030}"
  6020. },
  6021. {
  6022. "m_id": "{B54D1909-785A-418B-A40E-DA7AD4ABB6C1}"
  6023. }
  6024. ],
  6025. "prettyClassName": "ScriptCanvas_StringFunctions_StartsWith"
  6026. }
  6027. }
  6028. },
  6029. {
  6030. "Id": {
  6031. "id": 222907777404672
  6032. },
  6033. "Name": "SC-Node(GetEntityName)",
  6034. "Components": {
  6035. "Component_[805322957186237151]": {
  6036. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  6037. "Id": 805322957186237151,
  6038. "Slots": [
  6039. {
  6040. "id": {
  6041. "m_id": "{BFB50220-ED31-43EE-8B17-73943D961384}"
  6042. },
  6043. "contracts": [
  6044. {
  6045. "$type": "SlotTypeContract"
  6046. }
  6047. ],
  6048. "slotName": "EntityId",
  6049. "Descriptor": {
  6050. "ConnectionType": 1,
  6051. "SlotType": 2
  6052. },
  6053. "DataType": 1
  6054. },
  6055. {
  6056. "id": {
  6057. "m_id": "{CA3FCF64-6B8B-4F24-8051-E1DC68DF29DF}"
  6058. },
  6059. "contracts": [
  6060. {
  6061. "$type": "SlotTypeContract"
  6062. }
  6063. ],
  6064. "slotName": "In",
  6065. "Descriptor": {
  6066. "ConnectionType": 1,
  6067. "SlotType": 1
  6068. }
  6069. },
  6070. {
  6071. "id": {
  6072. "m_id": "{E8A08BD8-A889-4BE5-97CB-225DF0F96B30}"
  6073. },
  6074. "contracts": [
  6075. {
  6076. "$type": "SlotTypeContract"
  6077. }
  6078. ],
  6079. "slotName": "Out",
  6080. "Descriptor": {
  6081. "ConnectionType": 2,
  6082. "SlotType": 1
  6083. }
  6084. },
  6085. {
  6086. "id": {
  6087. "m_id": "{FFF54280-57EB-4B31-94CF-2B1059C846FC}"
  6088. },
  6089. "contracts": [
  6090. {
  6091. "$type": "SlotTypeContract"
  6092. }
  6093. ],
  6094. "slotName": "String",
  6095. "DisplayDataType": {
  6096. "m_type": 5
  6097. },
  6098. "Descriptor": {
  6099. "ConnectionType": 2,
  6100. "SlotType": 2
  6101. },
  6102. "DataType": 1
  6103. }
  6104. ],
  6105. "Datums": [
  6106. {
  6107. "isOverloadedStorage": false,
  6108. "scriptCanvasType": {
  6109. "m_type": 1
  6110. },
  6111. "isNullPointer": false,
  6112. "$type": "EntityId",
  6113. "value": {
  6114. "id": 2901262558
  6115. },
  6116. "label": "Entity Id"
  6117. }
  6118. ],
  6119. "methodType": 0,
  6120. "methodName": "GetEntityName",
  6121. "className": "ComponentApplicationBus",
  6122. "resultSlotIDs": [
  6123. {}
  6124. ],
  6125. "inputSlots": [
  6126. {
  6127. "m_id": "{BFB50220-ED31-43EE-8B17-73943D961384}"
  6128. }
  6129. ],
  6130. "prettyClassName": "ComponentApplicationBus"
  6131. }
  6132. }
  6133. },
  6134. {
  6135. "Id": {
  6136. "id": 222830467993344
  6137. },
  6138. "Name": "SC-Node(GetChildren)",
  6139. "Components": {
  6140. "Component_[811099301792417833]": {
  6141. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  6142. "Id": 811099301792417833,
  6143. "Slots": [
  6144. {
  6145. "id": {
  6146. "m_id": "{13BBF31D-6497-4823-AF11-29191BC86AF6}"
  6147. },
  6148. "contracts": [
  6149. {
  6150. "$type": "SlotTypeContract"
  6151. }
  6152. ],
  6153. "slotName": "EntityId",
  6154. "Descriptor": {
  6155. "ConnectionType": 1,
  6156. "SlotType": 2
  6157. },
  6158. "DataType": 1
  6159. },
  6160. {
  6161. "id": {
  6162. "m_id": "{235D780D-FE18-4E3A-BDB0-69872CA4862A}"
  6163. },
  6164. "contracts": [
  6165. {
  6166. "$type": "SlotTypeContract"
  6167. }
  6168. ],
  6169. "slotName": "In",
  6170. "Descriptor": {
  6171. "ConnectionType": 1,
  6172. "SlotType": 1
  6173. }
  6174. },
  6175. {
  6176. "id": {
  6177. "m_id": "{80BBD067-BF31-4ADD-BBA3-505B88CD716C}"
  6178. },
  6179. "contracts": [
  6180. {
  6181. "$type": "SlotTypeContract"
  6182. }
  6183. ],
  6184. "slotName": "Out",
  6185. "Descriptor": {
  6186. "ConnectionType": 2,
  6187. "SlotType": 1
  6188. }
  6189. },
  6190. {
  6191. "id": {
  6192. "m_id": "{673A8852-6A2D-4F34-94F2-2422C62BDD64}"
  6193. },
  6194. "contracts": [
  6195. {
  6196. "$type": "SlotTypeContract"
  6197. }
  6198. ],
  6199. "slotName": "Array<EntityId>",
  6200. "DisplayDataType": {
  6201. "m_type": 4,
  6202. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  6203. },
  6204. "Descriptor": {
  6205. "ConnectionType": 2,
  6206. "SlotType": 2
  6207. },
  6208. "DataType": 1
  6209. }
  6210. ],
  6211. "Datums": [
  6212. {
  6213. "isOverloadedStorage": false,
  6214. "scriptCanvasType": {
  6215. "m_type": 1
  6216. },
  6217. "isNullPointer": false,
  6218. "$type": "EntityId",
  6219. "value": {
  6220. "id": 2901262558
  6221. },
  6222. "label": "EntityId"
  6223. }
  6224. ],
  6225. "methodType": 0,
  6226. "methodName": "GetChildren",
  6227. "className": "TransformBus",
  6228. "resultSlotIDs": [
  6229. {}
  6230. ],
  6231. "inputSlots": [
  6232. {
  6233. "m_id": "{13BBF31D-6497-4823-AF11-29191BC86AF6}"
  6234. }
  6235. ],
  6236. "prettyClassName": "TransformBus"
  6237. }
  6238. }
  6239. },
  6240. {
  6241. "Id": {
  6242. "id": 222856237797120
  6243. },
  6244. "Name": "SC-Node(SetVisibility)",
  6245. "Components": {
  6246. "Component_[9868920106194643425]": {
  6247. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  6248. "Id": 9868920106194643425,
  6249. "Slots": [
  6250. {
  6251. "id": {
  6252. "m_id": "{7F1D5EC9-AEDB-4453-B628-EE0FB1B4315D}"
  6253. },
  6254. "contracts": [
  6255. {
  6256. "$type": "SlotTypeContract"
  6257. }
  6258. ],
  6259. "slotName": "EntityId: 0",
  6260. "Descriptor": {
  6261. "ConnectionType": 1,
  6262. "SlotType": 2
  6263. },
  6264. "DataType": 1,
  6265. "IsReference": true,
  6266. "VariableReference": {
  6267. "m_id": "{AA7BD1D3-F303-4296-8544-231678555D16}"
  6268. }
  6269. },
  6270. {
  6271. "id": {
  6272. "m_id": "{C9DA8B05-29BE-44EE-BCCD-6F470C5641F3}"
  6273. },
  6274. "contracts": [
  6275. {
  6276. "$type": "SlotTypeContract"
  6277. }
  6278. ],
  6279. "slotName": "Boolean: 1",
  6280. "Descriptor": {
  6281. "ConnectionType": 1,
  6282. "SlotType": 2
  6283. },
  6284. "DataType": 1
  6285. },
  6286. {
  6287. "id": {
  6288. "m_id": "{F21A783E-454D-4C5C-9B6B-DAB1F445C709}"
  6289. },
  6290. "contracts": [
  6291. {
  6292. "$type": "SlotTypeContract"
  6293. }
  6294. ],
  6295. "slotName": "In",
  6296. "Descriptor": {
  6297. "ConnectionType": 1,
  6298. "SlotType": 1
  6299. }
  6300. },
  6301. {
  6302. "id": {
  6303. "m_id": "{21646FD8-2F8A-409D-8145-DDD5A327D608}"
  6304. },
  6305. "contracts": [
  6306. {
  6307. "$type": "SlotTypeContract"
  6308. }
  6309. ],
  6310. "slotName": "Out",
  6311. "Descriptor": {
  6312. "ConnectionType": 2,
  6313. "SlotType": 1
  6314. }
  6315. }
  6316. ],
  6317. "Datums": [
  6318. {
  6319. "isOverloadedStorage": false,
  6320. "scriptCanvasType": {
  6321. "m_type": 1
  6322. },
  6323. "isNullPointer": false,
  6324. "$type": "EntityId",
  6325. "value": {
  6326. "id": 2901262558
  6327. },
  6328. "label": "Source"
  6329. },
  6330. {
  6331. "isOverloadedStorage": false,
  6332. "scriptCanvasType": {
  6333. "m_type": 0
  6334. },
  6335. "isNullPointer": false,
  6336. "$type": "bool",
  6337. "value": false,
  6338. "label": "Boolean: 1"
  6339. }
  6340. ],
  6341. "methodType": 0,
  6342. "methodName": "SetVisibility",
  6343. "className": "RenderMeshComponentRequestBus",
  6344. "resultSlotIDs": [
  6345. {}
  6346. ],
  6347. "inputSlots": [
  6348. {
  6349. "m_id": "{7F1D5EC9-AEDB-4453-B628-EE0FB1B4315D}"
  6350. },
  6351. {
  6352. "m_id": "{C9DA8B05-29BE-44EE-BCCD-6F470C5641F3}"
  6353. }
  6354. ],
  6355. "prettyClassName": "RenderMeshComponentRequestBus"
  6356. }
  6357. }
  6358. }
  6359. ],
  6360. "m_connections": [
  6361. {
  6362. "Id": {
  6363. "id": 223006561652480
  6364. },
  6365. "Name": "srcEndpoint=(GetOnTriggerEnterEvent: Event<AZStd::tuple<Crc32, int>, const TriggerEvent&>), destEndpoint=(On Trigger Enter event: On Trigger Enter event)",
  6366. "Components": {
  6367. "Component_[8537832985444168507]": {
  6368. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6369. "Id": 8537832985444168507,
  6370. "sourceEndpoint": {
  6371. "nodeId": {
  6372. "id": 222834762960640
  6373. },
  6374. "slotId": {
  6375. "m_id": "{19AABC8C-2B82-4D3D-85F0-4B9381B204FB}"
  6376. }
  6377. },
  6378. "targetEndpoint": {
  6379. "nodeId": {
  6380. "id": 222860532764416
  6381. },
  6382. "slotId": {
  6383. "m_id": "{CCBF7196-8036-48D6-A4E3-00D2C302494B}"
  6384. }
  6385. }
  6386. }
  6387. }
  6388. },
  6389. {
  6390. "Id": {
  6391. "id": 223010856619776
  6392. },
  6393. "Name": "srcEndpoint=(GetOnTriggerEnterEvent: Out), destEndpoint=(On Trigger Enter event: Connect)",
  6394. "Components": {
  6395. "Component_[15046492396959185944]": {
  6396. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6397. "Id": 15046492396959185944,
  6398. "sourceEndpoint": {
  6399. "nodeId": {
  6400. "id": 222834762960640
  6401. },
  6402. "slotId": {
  6403. "m_id": "{40B0E3DB-3848-47F1-9B6B-05F951B99DF3}"
  6404. }
  6405. },
  6406. "targetEndpoint": {
  6407. "nodeId": {
  6408. "id": 222860532764416
  6409. },
  6410. "slotId": {
  6411. "m_id": "{954EAFB9-5B35-4863-BF30-438832F16777}"
  6412. }
  6413. }
  6414. }
  6415. }
  6416. },
  6417. {
  6418. "Id": {
  6419. "id": 223015151587072
  6420. },
  6421. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(GetOnTriggerEnterEvent: In)",
  6422. "Components": {
  6423. "Component_[14482555147227343367]": {
  6424. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6425. "Id": 14482555147227343367,
  6426. "sourceEndpoint": {
  6427. "nodeId": {
  6428. "id": 222813288124160
  6429. },
  6430. "slotId": {
  6431. "m_id": "{55D318BB-A620-4F6A-BDD7-20266D92CBE3}"
  6432. }
  6433. },
  6434. "targetEndpoint": {
  6435. "nodeId": {
  6436. "id": 222834762960640
  6437. },
  6438. "slotId": {
  6439. "m_id": "{10279785-48A4-4640-B710-0D39C9BA4170}"
  6440. }
  6441. }
  6442. }
  6443. }
  6444. },
  6445. {
  6446. "Id": {
  6447. "id": 223036626423552
  6448. },
  6449. "Name": "srcEndpoint=(GetEntityName: Out), destEndpoint=(ScriptCanvas_StringFunctions_EndsWith: In)",
  6450. "Components": {
  6451. "Component_[3898662456822082529]": {
  6452. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6453. "Id": 3898662456822082529,
  6454. "sourceEndpoint": {
  6455. "nodeId": {
  6456. "id": 222933547208448
  6457. },
  6458. "slotId": {
  6459. "m_id": "{947729F7-7752-4F73-A584-255BA3FC231C}"
  6460. }
  6461. },
  6462. "targetEndpoint": {
  6463. "nodeId": {
  6464. "id": 222929252241152
  6465. },
  6466. "slotId": {
  6467. "m_id": "{3E2CDE5F-CCA7-4A78-BA3B-9DFE13093918}"
  6468. }
  6469. }
  6470. }
  6471. }
  6472. },
  6473. {
  6474. "Id": {
  6475. "id": 223040921390848
  6476. },
  6477. "Name": "srcEndpoint=(GetEntityName: String), destEndpoint=(ScriptCanvas_StringFunctions_EndsWith: Source)",
  6478. "Components": {
  6479. "Component_[7185989264774025078]": {
  6480. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6481. "Id": 7185989264774025078,
  6482. "sourceEndpoint": {
  6483. "nodeId": {
  6484. "id": 222933547208448
  6485. },
  6486. "slotId": {
  6487. "m_id": "{27150FF5-8B09-4E0F-B37A-2B85CF39C004}"
  6488. }
  6489. },
  6490. "targetEndpoint": {
  6491. "nodeId": {
  6492. "id": 222929252241152
  6493. },
  6494. "slotId": {
  6495. "m_id": "{5FBBA5E0-F942-4A75-A08F-69434A9E0F99}"
  6496. }
  6497. }
  6498. }
  6499. }
  6500. },
  6501. {
  6502. "Id": {
  6503. "id": 223045216358144
  6504. },
  6505. "Name": "srcEndpoint=(ScriptCanvas_StringFunctions_EndsWith: True), destEndpoint=(DeactivateGameEntity: In)",
  6506. "Components": {
  6507. "Component_[16827167778195568168]": {
  6508. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6509. "Id": 16827167778195568168,
  6510. "sourceEndpoint": {
  6511. "nodeId": {
  6512. "id": 222929252241152
  6513. },
  6514. "slotId": {
  6515. "m_id": "{B541231A-30E5-4397-A831-5525AF80C682}"
  6516. }
  6517. },
  6518. "targetEndpoint": {
  6519. "nodeId": {
  6520. "id": 222894892502784
  6521. },
  6522. "slotId": {
  6523. "m_id": "{7B692ADB-5C9D-4536-8FC2-13D3DFB442D7}"
  6524. }
  6525. }
  6526. }
  6527. }
  6528. },
  6529. {
  6530. "Id": {
  6531. "id": 223053806292736
  6532. },
  6533. "Name": "srcEndpoint=(GetEntityName: Out), destEndpoint=(ScriptCanvas_StringFunctions_Split: In)",
  6534. "Components": {
  6535. "Component_[10754469911080625042]": {
  6536. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6537. "Id": 10754469911080625042,
  6538. "sourceEndpoint": {
  6539. "nodeId": {
  6540. "id": 222907777404672
  6541. },
  6542. "slotId": {
  6543. "m_id": "{E8A08BD8-A889-4BE5-97CB-225DF0F96B30}"
  6544. }
  6545. },
  6546. "targetEndpoint": {
  6547. "nodeId": {
  6548. "id": 222869122699008
  6549. },
  6550. "slotId": {
  6551. "m_id": "{7F82FB1B-6FFC-4A1C-A727-FE2BB6638624}"
  6552. }
  6553. }
  6554. }
  6555. }
  6556. },
  6557. {
  6558. "Id": {
  6559. "id": 223058101260032
  6560. },
  6561. "Name": "srcEndpoint=(ScriptCanvas_StringFunctions_Split: Array<String>), destEndpoint=(Get Element: Container)",
  6562. "Components": {
  6563. "Component_[18186027746772135623]": {
  6564. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6565. "Id": 18186027746772135623,
  6566. "sourceEndpoint": {
  6567. "nodeId": {
  6568. "id": 222869122699008
  6569. },
  6570. "slotId": {
  6571. "m_id": "{0B746C04-F29A-4892-B0B2-E468428ABA2D}"
  6572. }
  6573. },
  6574. "targetEndpoint": {
  6575. "nodeId": {
  6576. "id": 222839057927936
  6577. },
  6578. "slotId": {
  6579. "m_id": "{9B3FD6DC-4143-4DC8-9E4F-C4C85B7B13D3}"
  6580. }
  6581. }
  6582. }
  6583. }
  6584. },
  6585. {
  6586. "Id": {
  6587. "id": 223062396227328
  6588. },
  6589. "Name": "srcEndpoint=(ScriptCanvas_StringFunctions_Split: Out), destEndpoint=(Get Element: In)",
  6590. "Components": {
  6591. "Component_[3739109416739315059]": {
  6592. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6593. "Id": 3739109416739315059,
  6594. "sourceEndpoint": {
  6595. "nodeId": {
  6596. "id": 222869122699008
  6597. },
  6598. "slotId": {
  6599. "m_id": "{27D0999B-F0B0-4B4E-8268-DA72C2B8099D}"
  6600. }
  6601. },
  6602. "targetEndpoint": {
  6603. "nodeId": {
  6604. "id": 222839057927936
  6605. },
  6606. "slotId": {
  6607. "m_id": "{FF273D8F-51E4-4ABA-993A-656123B6A645}"
  6608. }
  6609. }
  6610. }
  6611. }
  6612. },
  6613. {
  6614. "Id": {
  6615. "id": 223066691194624
  6616. },
  6617. "Name": "srcEndpoint=(Get Element: Out), destEndpoint=(ScriptCanvas_MathFunctions_StringToNumber: In)",
  6618. "Components": {
  6619. "Component_[3064765503676022460]": {
  6620. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6621. "Id": 3064765503676022460,
  6622. "sourceEndpoint": {
  6623. "nodeId": {
  6624. "id": 222839057927936
  6625. },
  6626. "slotId": {
  6627. "m_id": "{ECB61DA2-22DD-4F3C-BF7F-B0E2F554B94A}"
  6628. }
  6629. },
  6630. "targetEndpoint": {
  6631. "nodeId": {
  6632. "id": 222963611979520
  6633. },
  6634. "slotId": {
  6635. "m_id": "{360255AB-7157-4B24-9259-6F3FAD40314E}"
  6636. }
  6637. }
  6638. }
  6639. }
  6640. },
  6641. {
  6642. "Id": {
  6643. "id": 223070986161920
  6644. },
  6645. "Name": "srcEndpoint=(Get Element: Value), destEndpoint=(ScriptCanvas_MathFunctions_StringToNumber: Value)",
  6646. "Components": {
  6647. "Component_[16778367387881745186]": {
  6648. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6649. "Id": 16778367387881745186,
  6650. "sourceEndpoint": {
  6651. "nodeId": {
  6652. "id": 222839057927936
  6653. },
  6654. "slotId": {
  6655. "m_id": "{61CAEC76-1CF3-484E-BF8D-396ED2678F65}"
  6656. }
  6657. },
  6658. "targetEndpoint": {
  6659. "nodeId": {
  6660. "id": 222963611979520
  6661. },
  6662. "slotId": {
  6663. "m_id": "{344D724F-E41B-4812-8FA5-06399BE043B5}"
  6664. }
  6665. }
  6666. }
  6667. }
  6668. },
  6669. {
  6670. "Id": {
  6671. "id": 223075281129216
  6672. },
  6673. "Name": "srcEndpoint=(ScriptCanvas_MathFunctions_StringToNumber: Out), destEndpoint=(Send Script Event: In)",
  6674. "Components": {
  6675. "Component_[4819320633994883759]": {
  6676. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6677. "Id": 4819320633994883759,
  6678. "sourceEndpoint": {
  6679. "nodeId": {
  6680. "id": 222963611979520
  6681. },
  6682. "slotId": {
  6683. "m_id": "{10043290-9328-417B-89A3-2B486FD012E4}"
  6684. }
  6685. },
  6686. "targetEndpoint": {
  6687. "nodeId": {
  6688. "id": 222808993156864
  6689. },
  6690. "slotId": {
  6691. "m_id": "{F15EE588-4D3C-4F3A-8309-659745E6B30A}"
  6692. }
  6693. }
  6694. }
  6695. }
  6696. },
  6697. {
  6698. "Id": {
  6699. "id": 223079576096512
  6700. },
  6701. "Name": "srcEndpoint=(ScriptCanvas_MathFunctions_StringToNumber: Number), destEndpoint=(Send Script Event: Points)",
  6702. "Components": {
  6703. "Component_[16526284529838953234]": {
  6704. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6705. "Id": 16526284529838953234,
  6706. "sourceEndpoint": {
  6707. "nodeId": {
  6708. "id": 222963611979520
  6709. },
  6710. "slotId": {
  6711. "m_id": "{8F31F6D8-91CB-4E0D-AFB7-597D9D060474}"
  6712. }
  6713. },
  6714. "targetEndpoint": {
  6715. "nodeId": {
  6716. "id": 222808993156864
  6717. },
  6718. "slotId": {
  6719. "m_id": "{0B4F4B36-2F6E-443F-9BA1-CAF5681919FE}"
  6720. }
  6721. }
  6722. }
  6723. }
  6724. },
  6725. {
  6726. "Id": {
  6727. "id": 223083871063808
  6728. },
  6729. "Name": "srcEndpoint=(GetEntityName: String), destEndpoint=(ScriptCanvas_StringFunctions_Split: Source)",
  6730. "Components": {
  6731. "Component_[395967884839485943]": {
  6732. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6733. "Id": 395967884839485943,
  6734. "sourceEndpoint": {
  6735. "nodeId": {
  6736. "id": 222907777404672
  6737. },
  6738. "slotId": {
  6739. "m_id": "{FFF54280-57EB-4B31-94CF-2B1059C846FC}"
  6740. }
  6741. },
  6742. "targetEndpoint": {
  6743. "nodeId": {
  6744. "id": 222869122699008
  6745. },
  6746. "slotId": {
  6747. "m_id": "{487330D1-165E-4DD5-B674-ABCDDA45559A}"
  6748. }
  6749. }
  6750. }
  6751. }
  6752. },
  6753. {
  6754. "Id": {
  6755. "id": 223088166031104
  6756. },
  6757. "Name": "srcEndpoint=(GetParentId: Out), destEndpoint=(GetEntityName: In)",
  6758. "Components": {
  6759. "Component_[3544951605027083743]": {
  6760. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6761. "Id": 3544951605027083743,
  6762. "sourceEndpoint": {
  6763. "nodeId": {
  6764. "id": 222821878058752
  6765. },
  6766. "slotId": {
  6767. "m_id": "{209C005B-84E8-4F83-85CF-4CAE46FA538D}"
  6768. }
  6769. },
  6770. "targetEndpoint": {
  6771. "nodeId": {
  6772. "id": 222907777404672
  6773. },
  6774. "slotId": {
  6775. "m_id": "{CA3FCF64-6B8B-4F24-8051-E1DC68DF29DF}"
  6776. }
  6777. }
  6778. }
  6779. }
  6780. },
  6781. {
  6782. "Id": {
  6783. "id": 223092460998400
  6784. },
  6785. "Name": "srcEndpoint=(GetParentId: EntityId), destEndpoint=(GetEntityName: EntityId)",
  6786. "Components": {
  6787. "Component_[10543991193543095117]": {
  6788. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6789. "Id": 10543991193543095117,
  6790. "sourceEndpoint": {
  6791. "nodeId": {
  6792. "id": 222821878058752
  6793. },
  6794. "slotId": {
  6795. "m_id": "{F1ACE4C2-7821-4419-9F7E-616989E0BCFA}"
  6796. }
  6797. },
  6798. "targetEndpoint": {
  6799. "nodeId": {
  6800. "id": 222907777404672
  6801. },
  6802. "slotId": {
  6803. "m_id": "{BFB50220-ED31-43EE-8B17-73943D961384}"
  6804. }
  6805. }
  6806. }
  6807. }
  6808. },
  6809. {
  6810. "Id": {
  6811. "id": 223096755965696
  6812. },
  6813. "Name": "srcEndpoint=(DeactivateGameEntity: Out), destEndpoint=(If: In)",
  6814. "Components": {
  6815. "Component_[3859202099392043297]": {
  6816. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6817. "Id": 3859202099392043297,
  6818. "sourceEndpoint": {
  6819. "nodeId": {
  6820. "id": 222894892502784
  6821. },
  6822. "slotId": {
  6823. "m_id": "{EDA2780A-8BB4-4C3B-B13B-A453D3DB3B6D}"
  6824. }
  6825. },
  6826. "targetEndpoint": {
  6827. "nodeId": {
  6828. "id": 222942137143040
  6829. },
  6830. "slotId": {
  6831. "m_id": "{3DEFF1AA-6105-44F1-84A9-032E54EE3EAC}"
  6832. }
  6833. }
  6834. }
  6835. }
  6836. },
  6837. {
  6838. "Id": {
  6839. "id": 223101050932992
  6840. },
  6841. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Set Variable: In)",
  6842. "Components": {
  6843. "Component_[2774862659666078724]": {
  6844. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6845. "Id": 2774862659666078724,
  6846. "sourceEndpoint": {
  6847. "nodeId": {
  6848. "id": 222808993156864
  6849. },
  6850. "slotId": {
  6851. "m_id": "{6EFBC74F-673A-41C8-A0DF-05E574D403F0}"
  6852. }
  6853. },
  6854. "targetEndpoint": {
  6855. "nodeId": {
  6856. "id": 222851942829824
  6857. },
  6858. "slotId": {
  6859. "m_id": "{4B0E0B25-BDAF-4F2F-9C33-C25A05FB441D}"
  6860. }
  6861. }
  6862. }
  6863. }
  6864. },
  6865. {
  6866. "Id": {
  6867. "id": 223105345900288
  6868. },
  6869. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(Receive Script Event: Connect)",
  6870. "Components": {
  6871. "Component_[5959974706959923715]": {
  6872. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6873. "Id": 5959974706959923715,
  6874. "sourceEndpoint": {
  6875. "nodeId": {
  6876. "id": 222813288124160
  6877. },
  6878. "slotId": {
  6879. "m_id": "{55D318BB-A620-4F6A-BDD7-20266D92CBE3}"
  6880. }
  6881. },
  6882. "targetEndpoint": {
  6883. "nodeId": {
  6884. "id": 222899187470080
  6885. },
  6886. "slotId": {
  6887. "m_id": "{6AFF0D27-FA2A-451F-B1E3-7C8024975D22}"
  6888. }
  6889. }
  6890. }
  6891. }
  6892. },
  6893. {
  6894. "Id": {
  6895. "id": 223109640867584
  6896. },
  6897. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(Receive Script Event: Connect)",
  6898. "Components": {
  6899. "Component_[18230262549033070439]": {
  6900. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6901. "Id": 18230262549033070439,
  6902. "sourceEndpoint": {
  6903. "nodeId": {
  6904. "id": 222813288124160
  6905. },
  6906. "slotId": {
  6907. "m_id": "{55D318BB-A620-4F6A-BDD7-20266D92CBE3}"
  6908. }
  6909. },
  6910. "targetEndpoint": {
  6911. "nodeId": {
  6912. "id": 222967906946816
  6913. },
  6914. "slotId": {
  6915. "m_id": "{5510F0C1-B5EA-441B-BEB7-754AAF465E61}"
  6916. }
  6917. }
  6918. }
  6919. }
  6920. },
  6921. {
  6922. "Id": {
  6923. "id": 223113935834880
  6924. },
  6925. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:NextLevel), destEndpoint=(If: In)",
  6926. "Components": {
  6927. "Component_[6117055363287133771]": {
  6928. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6929. "Id": 6117055363287133771,
  6930. "sourceEndpoint": {
  6931. "nodeId": {
  6932. "id": 222967906946816
  6933. },
  6934. "slotId": {
  6935. "m_id": "{D34A57A9-547E-41E1-A512-8DA5B6ABF1A5}"
  6936. }
  6937. },
  6938. "targetEndpoint": {
  6939. "nodeId": {
  6940. "id": 222946432110336
  6941. },
  6942. "slotId": {
  6943. "m_id": "{3DEFF1AA-6105-44F1-84A9-032E54EE3EAC}"
  6944. }
  6945. }
  6946. }
  6947. }
  6948. },
  6949. {
  6950. "Id": {
  6951. "id": 223118230802176
  6952. },
  6953. "Name": "srcEndpoint=(If: False), destEndpoint=(Not: In)",
  6954. "Components": {
  6955. "Component_[16771504789012701653]": {
  6956. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6957. "Id": 16771504789012701653,
  6958. "sourceEndpoint": {
  6959. "nodeId": {
  6960. "id": 222942137143040
  6961. },
  6962. "slotId": {
  6963. "m_id": "{BA4F221D-464A-44F4-9154-C70F62B6E1A1}"
  6964. }
  6965. },
  6966. "targetEndpoint": {
  6967. "nodeId": {
  6968. "id": 222826173026048
  6969. },
  6970. "slotId": {
  6971. "m_id": "{3D07EE76-25E6-449A-9F09-DBAF3D8B4078}"
  6972. }
  6973. }
  6974. }
  6975. }
  6976. },
  6977. {
  6978. "Id": {
  6979. "id": 223122525769472
  6980. },
  6981. "Name": "srcEndpoint=(Not: True), destEndpoint=(GetParentId: In)",
  6982. "Components": {
  6983. "Component_[6381237912248417897]": {
  6984. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  6985. "Id": 6381237912248417897,
  6986. "sourceEndpoint": {
  6987. "nodeId": {
  6988. "id": 222826173026048
  6989. },
  6990. "slotId": {
  6991. "m_id": "{D2537662-E26C-404F-B800-E8C5926CA56C}"
  6992. }
  6993. },
  6994. "targetEndpoint": {
  6995. "nodeId": {
  6996. "id": 222821878058752
  6997. },
  6998. "slotId": {
  6999. "m_id": "{2840C8A0-80BE-47A0-B738-90B0646E3F7E}"
  7000. }
  7001. }
  7002. }
  7003. }
  7004. },
  7005. {
  7006. "Id": {
  7007. "id": 223126820736768
  7008. },
  7009. "Name": "srcEndpoint=(EntityBus Handler: ExecutionSlot:OnEntityActivated), destEndpoint=(TimeDelay: Start)",
  7010. "Components": {
  7011. "Component_[7656763149158486439]": {
  7012. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7013. "Id": 7656763149158486439,
  7014. "sourceEndpoint": {
  7015. "nodeId": {
  7016. "id": 222813288124160
  7017. },
  7018. "slotId": {
  7019. "m_id": "{55D318BB-A620-4F6A-BDD7-20266D92CBE3}"
  7020. }
  7021. },
  7022. "targetEndpoint": {
  7023. "nodeId": {
  7024. "id": 222882007600896
  7025. },
  7026. "slotId": {
  7027. "m_id": "{7FCF4933-78EF-4493-B285-56B9CEC57E03}"
  7028. }
  7029. }
  7030. }
  7031. }
  7032. },
  7033. {
  7034. "Id": {
  7035. "id": 223131115704064
  7036. },
  7037. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(GetParentId: In)",
  7038. "Components": {
  7039. "Component_[3961320165755382581]": {
  7040. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7041. "Id": 3961320165755382581,
  7042. "sourceEndpoint": {
  7043. "nodeId": {
  7044. "id": 222882007600896
  7045. },
  7046. "slotId": {
  7047. "m_id": "{C0C2AE43-D89B-4040-9421-90D345467985}"
  7048. }
  7049. },
  7050. "targetEndpoint": {
  7051. "nodeId": {
  7052. "id": 222985086816000
  7053. },
  7054. "slotId": {
  7055. "m_id": "{C785E74C-B8A5-4432-AF84-A1A663E29B1E}"
  7056. }
  7057. }
  7058. }
  7059. }
  7060. },
  7061. {
  7062. "Id": {
  7063. "id": 223135410671360
  7064. },
  7065. "Name": "srcEndpoint=(GetParentId: Out), destEndpoint=(GetParentId: In)",
  7066. "Components": {
  7067. "Component_[18111828351943622284]": {
  7068. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7069. "Id": 18111828351943622284,
  7070. "sourceEndpoint": {
  7071. "nodeId": {
  7072. "id": 222985086816000
  7073. },
  7074. "slotId": {
  7075. "m_id": "{83A613B2-62B3-4571-BF91-854C8B90466E}"
  7076. }
  7077. },
  7078. "targetEndpoint": {
  7079. "nodeId": {
  7080. "id": 222916367339264
  7081. },
  7082. "slotId": {
  7083. "m_id": "{C785E74C-B8A5-4432-AF84-A1A663E29B1E}"
  7084. }
  7085. }
  7086. }
  7087. }
  7088. },
  7089. {
  7090. "Id": {
  7091. "id": 223139705638656
  7092. },
  7093. "Name": "srcEndpoint=(GetParentId: EntityId), destEndpoint=(GetParentId: EntityId)",
  7094. "Components": {
  7095. "Component_[10173806815908761112]": {
  7096. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7097. "Id": 10173806815908761112,
  7098. "sourceEndpoint": {
  7099. "nodeId": {
  7100. "id": 222985086816000
  7101. },
  7102. "slotId": {
  7103. "m_id": "{BF0216B6-1DEB-4140-BC61-A9A1FD6AA8A8}"
  7104. }
  7105. },
  7106. "targetEndpoint": {
  7107. "nodeId": {
  7108. "id": 222916367339264
  7109. },
  7110. "slotId": {
  7111. "m_id": "{8655A30C-588F-4A31-91BD-892E11145E9A}"
  7112. }
  7113. }
  7114. }
  7115. }
  7116. },
  7117. {
  7118. "Id": {
  7119. "id": 223144000605952
  7120. },
  7121. "Name": "srcEndpoint=(GetParentId: Out), destEndpoint=(GetChildren: In)",
  7122. "Components": {
  7123. "Component_[16220127211876162256]": {
  7124. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7125. "Id": 16220127211876162256,
  7126. "sourceEndpoint": {
  7127. "nodeId": {
  7128. "id": 222916367339264
  7129. },
  7130. "slotId": {
  7131. "m_id": "{83A613B2-62B3-4571-BF91-854C8B90466E}"
  7132. }
  7133. },
  7134. "targetEndpoint": {
  7135. "nodeId": {
  7136. "id": 222830467993344
  7137. },
  7138. "slotId": {
  7139. "m_id": "{235D780D-FE18-4E3A-BDB0-69872CA4862A}"
  7140. }
  7141. }
  7142. }
  7143. }
  7144. },
  7145. {
  7146. "Id": {
  7147. "id": 223148295573248
  7148. },
  7149. "Name": "srcEndpoint=(GetParentId: EntityId), destEndpoint=(GetChildren: EntityId)",
  7150. "Components": {
  7151. "Component_[5351837651705669161]": {
  7152. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7153. "Id": 5351837651705669161,
  7154. "sourceEndpoint": {
  7155. "nodeId": {
  7156. "id": 222916367339264
  7157. },
  7158. "slotId": {
  7159. "m_id": "{BF0216B6-1DEB-4140-BC61-A9A1FD6AA8A8}"
  7160. }
  7161. },
  7162. "targetEndpoint": {
  7163. "nodeId": {
  7164. "id": 222830467993344
  7165. },
  7166. "slotId": {
  7167. "m_id": "{13BBF31D-6497-4823-AF11-29191BC86AF6}"
  7168. }
  7169. }
  7170. }
  7171. }
  7172. },
  7173. {
  7174. "Id": {
  7175. "id": 223152590540544
  7176. },
  7177. "Name": "srcEndpoint=(GetChildren: Out), destEndpoint=(For Each: In)",
  7178. "Components": {
  7179. "Component_[8358065728865810922]": {
  7180. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7181. "Id": 8358065728865810922,
  7182. "sourceEndpoint": {
  7183. "nodeId": {
  7184. "id": 222830467993344
  7185. },
  7186. "slotId": {
  7187. "m_id": "{80BBD067-BF31-4ADD-BBA3-505B88CD716C}"
  7188. }
  7189. },
  7190. "targetEndpoint": {
  7191. "nodeId": {
  7192. "id": 222950727077632
  7193. },
  7194. "slotId": {
  7195. "m_id": "{AEF8567D-99F9-4B88-B17C-CB4837A6D075}"
  7196. }
  7197. }
  7198. }
  7199. }
  7200. },
  7201. {
  7202. "Id": {
  7203. "id": 223156885507840
  7204. },
  7205. "Name": "srcEndpoint=(GetChildren: Array<EntityId>), destEndpoint=(For Each: Source)",
  7206. "Components": {
  7207. "Component_[14577140670494433185]": {
  7208. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7209. "Id": 14577140670494433185,
  7210. "sourceEndpoint": {
  7211. "nodeId": {
  7212. "id": 222830467993344
  7213. },
  7214. "slotId": {
  7215. "m_id": "{673A8852-6A2D-4F34-94F2-2422C62BDD64}"
  7216. }
  7217. },
  7218. "targetEndpoint": {
  7219. "nodeId": {
  7220. "id": 222950727077632
  7221. },
  7222. "slotId": {
  7223. "m_id": "{E5E06D76-AEAD-4745-A5BE-82C4C10676CD}"
  7224. }
  7225. }
  7226. }
  7227. }
  7228. },
  7229. {
  7230. "Id": {
  7231. "id": 223161180475136
  7232. },
  7233. "Name": "srcEndpoint=(For Each: Each), destEndpoint=(GetEntityName: In)",
  7234. "Components": {
  7235. "Component_[10595078278576164781]": {
  7236. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7237. "Id": 10595078278576164781,
  7238. "sourceEndpoint": {
  7239. "nodeId": {
  7240. "id": 222950727077632
  7241. },
  7242. "slotId": {
  7243. "m_id": "{19AF2C8B-5E6C-4CF6-BD63-83C5B8EB8670}"
  7244. }
  7245. },
  7246. "targetEndpoint": {
  7247. "nodeId": {
  7248. "id": 222937842175744
  7249. },
  7250. "slotId": {
  7251. "m_id": "{971AE031-6740-4723-9377-7753AFAB4A41}"
  7252. }
  7253. }
  7254. }
  7255. }
  7256. },
  7257. {
  7258. "Id": {
  7259. "id": 223165475442432
  7260. },
  7261. "Name": "srcEndpoint=(For Each: EntityId), destEndpoint=(GetEntityName: EntityId)",
  7262. "Components": {
  7263. "Component_[9264970194993604803]": {
  7264. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7265. "Id": 9264970194993604803,
  7266. "sourceEndpoint": {
  7267. "nodeId": {
  7268. "id": 222950727077632
  7269. },
  7270. "slotId": {
  7271. "m_id": "{EFBD2747-E415-4B81-ACE6-774B50DCAD81}"
  7272. }
  7273. },
  7274. "targetEndpoint": {
  7275. "nodeId": {
  7276. "id": 222937842175744
  7277. },
  7278. "slotId": {
  7279. "m_id": "{1346E4FE-F5E9-4397-86FF-6C2EE3ADBCCF}"
  7280. }
  7281. }
  7282. }
  7283. }
  7284. },
  7285. {
  7286. "Id": {
  7287. "id": 223169770409728
  7288. },
  7289. "Name": "srcEndpoint=(GetEntityName: Out), destEndpoint=(ScriptCanvas_StringFunctions_StartsWith: In)",
  7290. "Components": {
  7291. "Component_[17399331914319502412]": {
  7292. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7293. "Id": 17399331914319502412,
  7294. "sourceEndpoint": {
  7295. "nodeId": {
  7296. "id": 222937842175744
  7297. },
  7298. "slotId": {
  7299. "m_id": "{D2B5CFF9-69A7-42AF-AD2F-2F1E8C1B24F8}"
  7300. }
  7301. },
  7302. "targetEndpoint": {
  7303. "nodeId": {
  7304. "id": 222959317012224
  7305. },
  7306. "slotId": {
  7307. "m_id": "{721060B9-5CB7-4F0F-8AC5-6E417DAB90EE}"
  7308. }
  7309. }
  7310. }
  7311. }
  7312. },
  7313. {
  7314. "Id": {
  7315. "id": 223174065377024
  7316. },
  7317. "Name": "srcEndpoint=(GetEntityName: String), destEndpoint=(ScriptCanvas_StringFunctions_StartsWith: Source)",
  7318. "Components": {
  7319. "Component_[678058827209620869]": {
  7320. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7321. "Id": 678058827209620869,
  7322. "sourceEndpoint": {
  7323. "nodeId": {
  7324. "id": 222937842175744
  7325. },
  7326. "slotId": {
  7327. "m_id": "{AE9BDC35-285B-45E5-880B-E7AD8664CC40}"
  7328. }
  7329. },
  7330. "targetEndpoint": {
  7331. "nodeId": {
  7332. "id": 222959317012224
  7333. },
  7334. "slotId": {
  7335. "m_id": "{EF99EF77-DDA5-422D-AAA6-5B3C641842BD}"
  7336. }
  7337. }
  7338. }
  7339. }
  7340. },
  7341. {
  7342. "Id": {
  7343. "id": 223178360344320
  7344. },
  7345. "Name": "srcEndpoint=(ScriptCanvas_StringFunctions_StartsWith: True), destEndpoint=(ScriptCanvas_StringFunctions_EndsWith: In)",
  7346. "Components": {
  7347. "Component_[220927325398727367]": {
  7348. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7349. "Id": 220927325398727367,
  7350. "sourceEndpoint": {
  7351. "nodeId": {
  7352. "id": 222959317012224
  7353. },
  7354. "slotId": {
  7355. "m_id": "{3D06B1F8-80C7-42E9-BEC0-C03B306255F6}"
  7356. }
  7357. },
  7358. "targetEndpoint": {
  7359. "nodeId": {
  7360. "id": 222886302568192
  7361. },
  7362. "slotId": {
  7363. "m_id": "{4FA579D7-516F-4A97-8889-37843083E2BB}"
  7364. }
  7365. }
  7366. }
  7367. }
  7368. },
  7369. {
  7370. "Id": {
  7371. "id": 223182655311616
  7372. },
  7373. "Name": "srcEndpoint=(GetEntityName: String), destEndpoint=(ScriptCanvas_StringFunctions_EndsWith: Source)",
  7374. "Components": {
  7375. "Component_[8089147506964937985]": {
  7376. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7377. "Id": 8089147506964937985,
  7378. "sourceEndpoint": {
  7379. "nodeId": {
  7380. "id": 222937842175744
  7381. },
  7382. "slotId": {
  7383. "m_id": "{AE9BDC35-285B-45E5-880B-E7AD8664CC40}"
  7384. }
  7385. },
  7386. "targetEndpoint": {
  7387. "nodeId": {
  7388. "id": 222886302568192
  7389. },
  7390. "slotId": {
  7391. "m_id": "{21E3453C-BCFA-4085-8384-70B7D0719A72}"
  7392. }
  7393. }
  7394. }
  7395. }
  7396. },
  7397. {
  7398. "Id": {
  7399. "id": 223186950278912
  7400. },
  7401. "Name": "srcEndpoint=(ScriptCanvas_StringFunctions_EndsWith: True), destEndpoint=(Set Variable: In)",
  7402. "Components": {
  7403. "Component_[12729500100384506558]": {
  7404. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7405. "Id": 12729500100384506558,
  7406. "sourceEndpoint": {
  7407. "nodeId": {
  7408. "id": 222886302568192
  7409. },
  7410. "slotId": {
  7411. "m_id": "{AB04A583-81B2-4F36-9E3B-76158EEFC78E}"
  7412. }
  7413. },
  7414. "targetEndpoint": {
  7415. "nodeId": {
  7416. "id": 222997971717888
  7417. },
  7418. "slotId": {
  7419. "m_id": "{5829C658-C957-48AC-B5E9-7CB8C20F5A2F}"
  7420. }
  7421. }
  7422. }
  7423. }
  7424. },
  7425. {
  7426. "Id": {
  7427. "id": 223191245246208
  7428. },
  7429. "Name": "srcEndpoint=(ScriptCanvas_StringFunctions_EndsWith: False), destEndpoint=(Set Variable: In)",
  7430. "Components": {
  7431. "Component_[15146911510291621884]": {
  7432. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7433. "Id": 15146911510291621884,
  7434. "sourceEndpoint": {
  7435. "nodeId": {
  7436. "id": 222886302568192
  7437. },
  7438. "slotId": {
  7439. "m_id": "{A5BB0AFF-3CB0-406D-A471-63A851FEE747}"
  7440. }
  7441. },
  7442. "targetEndpoint": {
  7443. "nodeId": {
  7444. "id": 222976496881408
  7445. },
  7446. "slotId": {
  7447. "m_id": "{A2057707-DC8F-4C14-9A04-FFD29D1EC5F0}"
  7448. }
  7449. }
  7450. }
  7451. }
  7452. },
  7453. {
  7454. "Id": {
  7455. "id": 223195540213504
  7456. },
  7457. "Name": "srcEndpoint=(For Each: EntityId), destEndpoint=(Set Variable: EntityId)",
  7458. "Components": {
  7459. "Component_[12408321598687450243]": {
  7460. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7461. "Id": 12408321598687450243,
  7462. "sourceEndpoint": {
  7463. "nodeId": {
  7464. "id": 222950727077632
  7465. },
  7466. "slotId": {
  7467. "m_id": "{EFBD2747-E415-4B81-ACE6-774B50DCAD81}"
  7468. }
  7469. },
  7470. "targetEndpoint": {
  7471. "nodeId": {
  7472. "id": 222997971717888
  7473. },
  7474. "slotId": {
  7475. "m_id": "{23D4FFE2-E2D4-4CE5-B8B2-A5A755E954E3}"
  7476. }
  7477. }
  7478. }
  7479. }
  7480. },
  7481. {
  7482. "Id": {
  7483. "id": 223199835180800
  7484. },
  7485. "Name": "srcEndpoint=(For Each: EntityId), destEndpoint=(Set Variable: EntityId)",
  7486. "Components": {
  7487. "Component_[6750137727981865398]": {
  7488. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7489. "Id": 6750137727981865398,
  7490. "sourceEndpoint": {
  7491. "nodeId": {
  7492. "id": 222950727077632
  7493. },
  7494. "slotId": {
  7495. "m_id": "{EFBD2747-E415-4B81-ACE6-774B50DCAD81}"
  7496. }
  7497. },
  7498. "targetEndpoint": {
  7499. "nodeId": {
  7500. "id": 222976496881408
  7501. },
  7502. "slotId": {
  7503. "m_id": "{9FDA9496-FDA7-41E9-AC09-4ECBC4A5019B}"
  7504. }
  7505. }
  7506. }
  7507. }
  7508. },
  7509. {
  7510. "Id": {
  7511. "id": 223204130148096
  7512. },
  7513. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(SetVisibility: In)",
  7514. "Components": {
  7515. "Component_[581372407481735465]": {
  7516. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7517. "Id": 581372407481735465,
  7518. "sourceEndpoint": {
  7519. "nodeId": {
  7520. "id": 222851942829824
  7521. },
  7522. "slotId": {
  7523. "m_id": "{774898E6-10FA-4EF5-9B6E-0E54842D873F}"
  7524. }
  7525. },
  7526. "targetEndpoint": {
  7527. "nodeId": {
  7528. "id": 222856237797120
  7529. },
  7530. "slotId": {
  7531. "m_id": "{F21A783E-454D-4C5C-9B6B-DAB1F445C709}"
  7532. }
  7533. }
  7534. }
  7535. }
  7536. },
  7537. {
  7538. "Id": {
  7539. "id": 223208425115392
  7540. },
  7541. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(GetChildren: In)",
  7542. "Components": {
  7543. "Component_[6170254541658807069]": {
  7544. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7545. "Id": 6170254541658807069,
  7546. "sourceEndpoint": {
  7547. "nodeId": {
  7548. "id": 222882007600896
  7549. },
  7550. "slotId": {
  7551. "m_id": "{C0C2AE43-D89B-4040-9421-90D345467985}"
  7552. }
  7553. },
  7554. "targetEndpoint": {
  7555. "nodeId": {
  7556. "id": 222980791848704
  7557. },
  7558. "slotId": {
  7559. "m_id": "{6B47290C-3C65-43F3-B5BA-BE73F1845808}"
  7560. }
  7561. }
  7562. }
  7563. }
  7564. },
  7565. {
  7566. "Id": {
  7567. "id": 223212720082688
  7568. },
  7569. "Name": "srcEndpoint=(GetChildren: Out), destEndpoint=(Get First Element: In)",
  7570. "Components": {
  7571. "Component_[13356749205701098652]": {
  7572. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7573. "Id": 13356749205701098652,
  7574. "sourceEndpoint": {
  7575. "nodeId": {
  7576. "id": 222980791848704
  7577. },
  7578. "slotId": {
  7579. "m_id": "{18C1DF8F-48FD-480D-9364-D501C4AE7E1F}"
  7580. }
  7581. },
  7582. "targetEndpoint": {
  7583. "nodeId": {
  7584. "id": 222847647862528
  7585. },
  7586. "slotId": {
  7587. "m_id": "{E65053D3-7988-4126-A295-C398E0B8B03D}"
  7588. }
  7589. }
  7590. }
  7591. }
  7592. },
  7593. {
  7594. "Id": {
  7595. "id": 223217015049984
  7596. },
  7597. "Name": "srcEndpoint=(GetChildren: Array<EntityId>), destEndpoint=(Get First Element: Container)",
  7598. "Components": {
  7599. "Component_[8481986846588711076]": {
  7600. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7601. "Id": 8481986846588711076,
  7602. "sourceEndpoint": {
  7603. "nodeId": {
  7604. "id": 222980791848704
  7605. },
  7606. "slotId": {
  7607. "m_id": "{25B7839F-E43B-4C81-B565-DD0C30B44A65}"
  7608. }
  7609. },
  7610. "targetEndpoint": {
  7611. "nodeId": {
  7612. "id": 222847647862528
  7613. },
  7614. "slotId": {
  7615. "m_id": "{03EC9FCF-BDED-4759-8FEE-9CA2B7AF4CAD}"
  7616. }
  7617. }
  7618. }
  7619. }
  7620. },
  7621. {
  7622. "Id": {
  7623. "id": 223221310017280
  7624. },
  7625. "Name": "srcEndpoint=(GetChildren: Out), destEndpoint=(Get First Element: In)",
  7626. "Components": {
  7627. "Component_[5089894360280842505]": {
  7628. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7629. "Id": 5089894360280842505,
  7630. "sourceEndpoint": {
  7631. "nodeId": {
  7632. "id": 222912072371968
  7633. },
  7634. "slotId": {
  7635. "m_id": "{18C1DF8F-48FD-480D-9364-D501C4AE7E1F}"
  7636. }
  7637. },
  7638. "targetEndpoint": {
  7639. "nodeId": {
  7640. "id": 222873417666304
  7641. },
  7642. "slotId": {
  7643. "m_id": "{E65053D3-7988-4126-A295-C398E0B8B03D}"
  7644. }
  7645. }
  7646. }
  7647. }
  7648. },
  7649. {
  7650. "Id": {
  7651. "id": 223225604984576
  7652. },
  7653. "Name": "srcEndpoint=(GetChildren: Array<EntityId>), destEndpoint=(Get First Element: Container)",
  7654. "Components": {
  7655. "Component_[17486366500766943732]": {
  7656. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7657. "Id": 17486366500766943732,
  7658. "sourceEndpoint": {
  7659. "nodeId": {
  7660. "id": 222912072371968
  7661. },
  7662. "slotId": {
  7663. "m_id": "{25B7839F-E43B-4C81-B565-DD0C30B44A65}"
  7664. }
  7665. },
  7666. "targetEndpoint": {
  7667. "nodeId": {
  7668. "id": 222873417666304
  7669. },
  7670. "slotId": {
  7671. "m_id": "{03EC9FCF-BDED-4759-8FEE-9CA2B7AF4CAD}"
  7672. }
  7673. }
  7674. }
  7675. }
  7676. },
  7677. {
  7678. "Id": {
  7679. "id": 223229899951872
  7680. },
  7681. "Name": "srcEndpoint=(Get First Element: Out), destEndpoint=(GetChildren: In)",
  7682. "Components": {
  7683. "Component_[3608991541950840410]": {
  7684. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7685. "Id": 3608991541950840410,
  7686. "sourceEndpoint": {
  7687. "nodeId": {
  7688. "id": 222847647862528
  7689. },
  7690. "slotId": {
  7691. "m_id": "{4BCB4A14-109F-4313-86B6-45DAA0E59555}"
  7692. }
  7693. },
  7694. "targetEndpoint": {
  7695. "nodeId": {
  7696. "id": 222912072371968
  7697. },
  7698. "slotId": {
  7699. "m_id": "{6B47290C-3C65-43F3-B5BA-BE73F1845808}"
  7700. }
  7701. }
  7702. }
  7703. }
  7704. },
  7705. {
  7706. "Id": {
  7707. "id": 223234194919168
  7708. },
  7709. "Name": "srcEndpoint=(Get First Element: Value), destEndpoint=(GetChildren: EntityId)",
  7710. "Components": {
  7711. "Component_[10416456065642429921]": {
  7712. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7713. "Id": 10416456065642429921,
  7714. "sourceEndpoint": {
  7715. "nodeId": {
  7716. "id": 222847647862528
  7717. },
  7718. "slotId": {
  7719. "m_id": "{E3056CF4-5D03-46C4-87EE-D37B74E98284}"
  7720. }
  7721. },
  7722. "targetEndpoint": {
  7723. "nodeId": {
  7724. "id": 222912072371968
  7725. },
  7726. "slotId": {
  7727. "m_id": "{CEFE0879-54BC-476B-9815-A97966D1969B}"
  7728. }
  7729. }
  7730. }
  7731. }
  7732. },
  7733. {
  7734. "Id": {
  7735. "id": 223238489886464
  7736. },
  7737. "Name": "srcEndpoint=(Get First Element: Out), destEndpoint=(GetEntityName: In)",
  7738. "Components": {
  7739. "Component_[2661408082910520785]": {
  7740. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7741. "Id": 2661408082910520785,
  7742. "sourceEndpoint": {
  7743. "nodeId": {
  7744. "id": 222873417666304
  7745. },
  7746. "slotId": {
  7747. "m_id": "{4BCB4A14-109F-4313-86B6-45DAA0E59555}"
  7748. }
  7749. },
  7750. "targetEndpoint": {
  7751. "nodeId": {
  7752. "id": 222877712633600
  7753. },
  7754. "slotId": {
  7755. "m_id": "{61821EF3-1CA9-49A9-BC0D-8F91F2E0F6AC}"
  7756. }
  7757. }
  7758. }
  7759. }
  7760. },
  7761. {
  7762. "Id": {
  7763. "id": 223242784853760
  7764. },
  7765. "Name": "srcEndpoint=(Get First Element: Value), destEndpoint=(GetEntityName: EntityId)",
  7766. "Components": {
  7767. "Component_[17930890867616511263]": {
  7768. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7769. "Id": 17930890867616511263,
  7770. "sourceEndpoint": {
  7771. "nodeId": {
  7772. "id": 222873417666304
  7773. },
  7774. "slotId": {
  7775. "m_id": "{E3056CF4-5D03-46C4-87EE-D37B74E98284}"
  7776. }
  7777. },
  7778. "targetEndpoint": {
  7779. "nodeId": {
  7780. "id": 222877712633600
  7781. },
  7782. "slotId": {
  7783. "m_id": "{31FE371C-2170-451C-9B38-67089766514A}"
  7784. }
  7785. }
  7786. }
  7787. }
  7788. },
  7789. {
  7790. "Id": {
  7791. "id": 223247079821056
  7792. },
  7793. "Name": "srcEndpoint=(Get First Element: Out), destEndpoint=(Set Variable: In)",
  7794. "Components": {
  7795. "Component_[14517937506046073851]": {
  7796. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7797. "Id": 14517937506046073851,
  7798. "sourceEndpoint": {
  7799. "nodeId": {
  7800. "id": 222873417666304
  7801. },
  7802. "slotId": {
  7803. "m_id": "{4BCB4A14-109F-4313-86B6-45DAA0E59555}"
  7804. }
  7805. },
  7806. "targetEndpoint": {
  7807. "nodeId": {
  7808. "id": 222843352895232
  7809. },
  7810. "slotId": {
  7811. "m_id": "{6D7DED17-45E9-449E-844F-C60385B6A9DC}"
  7812. }
  7813. }
  7814. }
  7815. }
  7816. },
  7817. {
  7818. "Id": {
  7819. "id": 223251374788352
  7820. },
  7821. "Name": "srcEndpoint=(Get First Element: Value), destEndpoint=(Set Variable: EntityId)",
  7822. "Components": {
  7823. "Component_[5932670093517997066]": {
  7824. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7825. "Id": 5932670093517997066,
  7826. "sourceEndpoint": {
  7827. "nodeId": {
  7828. "id": 222873417666304
  7829. },
  7830. "slotId": {
  7831. "m_id": "{E3056CF4-5D03-46C4-87EE-D37B74E98284}"
  7832. }
  7833. },
  7834. "targetEndpoint": {
  7835. "nodeId": {
  7836. "id": 222843352895232
  7837. },
  7838. "slotId": {
  7839. "m_id": "{FA8398CC-2F6E-42BC-B80C-599D9BC9583F}"
  7840. }
  7841. }
  7842. }
  7843. }
  7844. },
  7845. {
  7846. "Id": {
  7847. "id": 223255669755648
  7848. },
  7849. "Name": "srcEndpoint=(SetVisibility: Out), destEndpoint=(SetVisibility: In)",
  7850. "Components": {
  7851. "Component_[14912612589509719141]": {
  7852. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7853. "Id": 14912612589509719141,
  7854. "sourceEndpoint": {
  7855. "nodeId": {
  7856. "id": 222972201914112
  7857. },
  7858. "slotId": {
  7859. "m_id": "{4BC07C6A-F103-4DDE-B71E-0557673F6D7E}"
  7860. }
  7861. },
  7862. "targetEndpoint": {
  7863. "nodeId": {
  7864. "id": 222817583091456
  7865. },
  7866. "slotId": {
  7867. "m_id": "{2FB68547-E454-48ED-8369-380CF24A5046}"
  7868. }
  7869. }
  7870. }
  7871. }
  7872. },
  7873. {
  7874. "Id": {
  7875. "id": 223259964722944
  7876. },
  7877. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(ScriptCanvas_EntityFunctions_IsValid: In)",
  7878. "Components": {
  7879. "Component_[5141825410373125357]": {
  7880. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7881. "Id": 5141825410373125357,
  7882. "sourceEndpoint": {
  7883. "nodeId": {
  7884. "id": 222903482437376
  7885. },
  7886. "slotId": {
  7887. "m_id": "{CAC8E39C-068B-4750-9012-DAC55C42075A}"
  7888. }
  7889. },
  7890. "targetEndpoint": {
  7891. "nodeId": {
  7892. "id": 222890597535488
  7893. },
  7894. "slotId": {
  7895. "m_id": "{AECB7790-56B0-4062-BFA4-348459B12315}"
  7896. }
  7897. }
  7898. }
  7899. }
  7900. },
  7901. {
  7902. "Id": {
  7903. "id": 223264259690240
  7904. },
  7905. "Name": "srcEndpoint=(ScriptCanvas_EntityFunctions_IsValid: Out), destEndpoint=(SetVisibility: In)",
  7906. "Components": {
  7907. "Component_[15883597979265398179]": {
  7908. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7909. "Id": 15883597979265398179,
  7910. "sourceEndpoint": {
  7911. "nodeId": {
  7912. "id": 222890597535488
  7913. },
  7914. "slotId": {
  7915. "m_id": "{457A1FA0-65A6-4732-A191-2A4750220EF9}"
  7916. }
  7917. },
  7918. "targetEndpoint": {
  7919. "nodeId": {
  7920. "id": 222972201914112
  7921. },
  7922. "slotId": {
  7923. "m_id": "{2FB68547-E454-48ED-8369-380CF24A5046}"
  7924. }
  7925. }
  7926. }
  7927. }
  7928. },
  7929. {
  7930. "Id": {
  7931. "id": 223268554657536
  7932. },
  7933. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(SetVisibility: In)",
  7934. "Components": {
  7935. "Component_[304021833462513715]": {
  7936. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7937. "Id": 304021833462513715,
  7938. "sourceEndpoint": {
  7939. "nodeId": {
  7940. "id": 222997971717888
  7941. },
  7942. "slotId": {
  7943. "m_id": "{0CBE12A8-A99A-41B4-B72F-05D1039E45E0}"
  7944. }
  7945. },
  7946. "targetEndpoint": {
  7947. "nodeId": {
  7948. "id": 222864827731712
  7949. },
  7950. "slotId": {
  7951. "m_id": "{D8103921-1B03-4F4B-B8EB-8047A3F3EE17}"
  7952. }
  7953. }
  7954. }
  7955. }
  7956. },
  7957. {
  7958. "Id": {
  7959. "id": 223272849624832
  7960. },
  7961. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:StartGame), destEndpoint=(SetVisibility: In)",
  7962. "Components": {
  7963. "Component_[2172958618735189737]": {
  7964. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7965. "Id": 2172958618735189737,
  7966. "sourceEndpoint": {
  7967. "nodeId": {
  7968. "id": 222899187470080
  7969. },
  7970. "slotId": {
  7971. "m_id": "{25BB124E-FA43-4A9C-8A39-0A8DB4C91552}"
  7972. }
  7973. },
  7974. "targetEndpoint": {
  7975. "nodeId": {
  7976. "id": 222989381783296
  7977. },
  7978. "slotId": {
  7979. "m_id": "{E8A41188-3559-4EF3-9AA5-BC15D4EFEC03}"
  7980. }
  7981. }
  7982. }
  7983. }
  7984. },
  7985. {
  7986. "Id": {
  7987. "id": 223277144592128
  7988. },
  7989. "Name": "srcEndpoint=(SetVisibility: Out), destEndpoint=(Set Variable: In)",
  7990. "Components": {
  7991. "Component_[855028764293035458]": {
  7992. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  7993. "Id": 855028764293035458,
  7994. "sourceEndpoint": {
  7995. "nodeId": {
  7996. "id": 222989381783296
  7997. },
  7998. "slotId": {
  7999. "m_id": "{76F4EC21-F5D2-4E2C-9155-2DB4BABA55B3}"
  8000. }
  8001. },
  8002. "targetEndpoint": {
  8003. "nodeId": {
  8004. "id": 222924957273856
  8005. },
  8006. "slotId": {
  8007. "m_id": "{298D5B1E-F022-4432-83D1-0C6F92855595}"
  8008. }
  8009. }
  8010. }
  8011. }
  8012. },
  8013. {
  8014. "Id": {
  8015. "id": 223281439559424
  8016. },
  8017. "Name": "srcEndpoint=(If: True), destEndpoint=(SetVisibility: In)",
  8018. "Components": {
  8019. "Component_[14000336369025202442]": {
  8020. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8021. "Id": 14000336369025202442,
  8022. "sourceEndpoint": {
  8023. "nodeId": {
  8024. "id": 222946432110336
  8025. },
  8026. "slotId": {
  8027. "m_id": "{18199EB6-157A-4765-A3AB-0F669DEB1BA8}"
  8028. }
  8029. },
  8030. "targetEndpoint": {
  8031. "nodeId": {
  8032. "id": 222955022044928
  8033. },
  8034. "slotId": {
  8035. "m_id": "{E8A41188-3559-4EF3-9AA5-BC15D4EFEC03}"
  8036. }
  8037. }
  8038. }
  8039. }
  8040. },
  8041. {
  8042. "Id": {
  8043. "id": 223285734526720
  8044. },
  8045. "Name": "srcEndpoint=(SetVisibility: Out), destEndpoint=(Set Variable: In)",
  8046. "Components": {
  8047. "Component_[14876980734198628447]": {
  8048. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8049. "Id": 14876980734198628447,
  8050. "sourceEndpoint": {
  8051. "nodeId": {
  8052. "id": 222955022044928
  8053. },
  8054. "slotId": {
  8055. "m_id": "{76F4EC21-F5D2-4E2C-9155-2DB4BABA55B3}"
  8056. }
  8057. },
  8058. "targetEndpoint": {
  8059. "nodeId": {
  8060. "id": 223002266685184
  8061. },
  8062. "slotId": {
  8063. "m_id": "{960FA55C-59FE-4562-BABA-29E09260DAFC}"
  8064. }
  8065. }
  8066. }
  8067. }
  8068. },
  8069. {
  8070. "Id": {
  8071. "id": 223290029494016
  8072. },
  8073. "Name": "srcEndpoint=(If: False), destEndpoint=(SetVisibility: In)",
  8074. "Components": {
  8075. "Component_[12552352065757301553]": {
  8076. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8077. "Id": 12552352065757301553,
  8078. "sourceEndpoint": {
  8079. "nodeId": {
  8080. "id": 222946432110336
  8081. },
  8082. "slotId": {
  8083. "m_id": "{BA4F221D-464A-44F4-9154-C70F62B6E1A1}"
  8084. }
  8085. },
  8086. "targetEndpoint": {
  8087. "nodeId": {
  8088. "id": 222920662306560
  8089. },
  8090. "slotId": {
  8091. "m_id": "{E8A41188-3559-4EF3-9AA5-BC15D4EFEC03}"
  8092. }
  8093. }
  8094. }
  8095. }
  8096. },
  8097. {
  8098. "Id": {
  8099. "id": 223294324461312
  8100. },
  8101. "Name": "srcEndpoint=(SetVisibility: Out), destEndpoint=(Set Variable: In)",
  8102. "Components": {
  8103. "Component_[12987942745203980115]": {
  8104. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8105. "Id": 12987942745203980115,
  8106. "sourceEndpoint": {
  8107. "nodeId": {
  8108. "id": 222920662306560
  8109. },
  8110. "slotId": {
  8111. "m_id": "{76F4EC21-F5D2-4E2C-9155-2DB4BABA55B3}"
  8112. }
  8113. },
  8114. "targetEndpoint": {
  8115. "nodeId": {
  8116. "id": 222903482437376
  8117. },
  8118. "slotId": {
  8119. "m_id": "{5C87BB50-F4D4-483B-9487-BFF1914571E9}"
  8120. }
  8121. }
  8122. }
  8123. }
  8124. },
  8125. {
  8126. "Id": {
  8127. "id": 522546170810112
  8128. },
  8129. "Name": "srcEndpoint=(On Trigger Enter event: OnEvent), destEndpoint=(GetOtherEntityId: In)",
  8130. "Components": {
  8131. "Component_[2689691454457645710]": {
  8132. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8133. "Id": 2689691454457645710,
  8134. "sourceEndpoint": {
  8135. "nodeId": {
  8136. "id": 222860532764416
  8137. },
  8138. "slotId": {
  8139. "m_id": "{B7D21051-E978-4A0B-ADF8-A69E865FFF9D}"
  8140. }
  8141. },
  8142. "targetEndpoint": {
  8143. "nodeId": {
  8144. "id": 514901129023232
  8145. },
  8146. "slotId": {
  8147. "m_id": "{29589F1A-BA42-44A5-B191-A6163C9A1E39}"
  8148. }
  8149. }
  8150. }
  8151. }
  8152. },
  8153. {
  8154. "Id": {
  8155. "id": 525913425170176
  8156. },
  8157. "Name": "srcEndpoint=(On Trigger Enter event: Trigger Event), destEndpoint=(GetOtherEntityId: TriggerEvent)",
  8158. "Components": {
  8159. "Component_[10942464686942480883]": {
  8160. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8161. "Id": 10942464686942480883,
  8162. "sourceEndpoint": {
  8163. "nodeId": {
  8164. "id": 222860532764416
  8165. },
  8166. "slotId": {
  8167. "m_id": "{81922A76-4BFE-4EB4-8929-28DE937AAB21}"
  8168. }
  8169. },
  8170. "targetEndpoint": {
  8171. "nodeId": {
  8172. "id": 514901129023232
  8173. },
  8174. "slotId": {
  8175. "m_id": "{A96105BA-25E3-4362-B46C-0A517B8D9CB0}"
  8176. }
  8177. }
  8178. }
  8179. }
  8180. },
  8181. {
  8182. "Id": {
  8183. "id": 528752398552832
  8184. },
  8185. "Name": "srcEndpoint=(GetOtherEntityId: Out), destEndpoint=(GetEntityName: In)",
  8186. "Components": {
  8187. "Component_[8470624502756913005]": {
  8188. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8189. "Id": 8470624502756913005,
  8190. "sourceEndpoint": {
  8191. "nodeId": {
  8192. "id": 514901129023232
  8193. },
  8194. "slotId": {
  8195. "m_id": "{E1249F98-FB16-4D6C-AA6E-583CADE512A5}"
  8196. }
  8197. },
  8198. "targetEndpoint": {
  8199. "nodeId": {
  8200. "id": 222933547208448
  8201. },
  8202. "slotId": {
  8203. "m_id": "{986A3CC3-3C87-41F7-A00C-55587DABB350}"
  8204. }
  8205. }
  8206. }
  8207. }
  8208. },
  8209. {
  8210. "Id": {
  8211. "id": 530350126386944
  8212. },
  8213. "Name": "srcEndpoint=(GetOtherEntityId: EntityId), destEndpoint=(GetEntityName: EntityId)",
  8214. "Components": {
  8215. "Component_[7620267734156146816]": {
  8216. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8217. "Id": 7620267734156146816,
  8218. "sourceEndpoint": {
  8219. "nodeId": {
  8220. "id": 514901129023232
  8221. },
  8222. "slotId": {
  8223. "m_id": "{BC183546-38BB-44C9-83C9-9C963A24C2D6}"
  8224. }
  8225. },
  8226. "targetEndpoint": {
  8227. "nodeId": {
  8228. "id": 222933547208448
  8229. },
  8230. "slotId": {
  8231. "m_id": "{1127602F-F67C-4C0E-9988-C349650276A3}"
  8232. }
  8233. }
  8234. }
  8235. }
  8236. },
  8237. {
  8238. "Id": {
  8239. "id": 531909199515392
  8240. },
  8241. "Name": "srcEndpoint=(GetOtherEntityId: EntityId), destEndpoint=(DeactivateGameEntity: EntityId)",
  8242. "Components": {
  8243. "Component_[16810629309759196260]": {
  8244. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  8245. "Id": 16810629309759196260,
  8246. "sourceEndpoint": {
  8247. "nodeId": {
  8248. "id": 514901129023232
  8249. },
  8250. "slotId": {
  8251. "m_id": "{BC183546-38BB-44C9-83C9-9C963A24C2D6}"
  8252. }
  8253. },
  8254. "targetEndpoint": {
  8255. "nodeId": {
  8256. "id": 222894892502784
  8257. },
  8258. "slotId": {
  8259. "m_id": "{84E620D8-3AC5-4077-9A05-DAB66CFB421B}"
  8260. }
  8261. }
  8262. }
  8263. }
  8264. }
  8265. ],
  8266. "m_scriptEventAssets": [
  8267. [
  8268. {
  8269. "id": 222808993156864
  8270. },
  8271. {}
  8272. ],
  8273. [
  8274. {
  8275. "id": 222808993156864
  8276. },
  8277. {}
  8278. ],
  8279. [
  8280. {
  8281. "id": 222808993156864
  8282. },
  8283. {}
  8284. ],
  8285. [
  8286. {
  8287. "id": 222808993156864
  8288. },
  8289. {}
  8290. ],
  8291. [
  8292. {
  8293. "id": 222808993156864
  8294. },
  8295. {}
  8296. ],
  8297. [
  8298. {
  8299. "id": 222808993156864
  8300. },
  8301. {}
  8302. ],
  8303. [
  8304. {
  8305. "id": 222899187470080
  8306. },
  8307. {}
  8308. ],
  8309. [
  8310. {
  8311. "id": 222808993156864
  8312. },
  8313. {}
  8314. ],
  8315. [
  8316. {
  8317. "id": 222967906946816
  8318. },
  8319. {}
  8320. ]
  8321. ]
  8322. },
  8323. "m_assetType": "{F0792916-BF02-0000-0000-000002000000}",
  8324. "versionData": {
  8325. "_grammarVersion": 1,
  8326. "_runtimeVersion": 1,
  8327. "_fileVersion": 1
  8328. },
  8329. "m_variableCounter": 6,
  8330. "GraphCanvasData": [
  8331. {
  8332. "Key": {
  8333. "id": 222804698189568
  8334. },
  8335. "Value": {
  8336. "ComponentData": {
  8337. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  8338. "$type": "SceneComponentSaveData",
  8339. "Constructs": [
  8340. {
  8341. "Type": 3,
  8342. "DataContainer": {
  8343. "ComponentData": {
  8344. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8345. "$type": "NodeSaveData"
  8346. },
  8347. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  8348. "$type": "CommentNodeTextSaveData",
  8349. "Comment": "Make sure to re-enable the glowing cricle anytime the game resets",
  8350. "BackgroundColor": [
  8351. 0.9800000190734863,
  8352. 0.9700000286102295,
  8353. 0.6499999761581421
  8354. ],
  8355. "FontSettings": {
  8356. "PixelSize": 16
  8357. }
  8358. },
  8359. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  8360. "$type": "NodeGroupFrameComponentSaveData",
  8361. "DisplayHeight": 360.0,
  8362. "DisplayWidth": 1520.0,
  8363. "PersistentGroupedId": [
  8364. "{68950858-0096-4F1E-8750-5E4267E42DD3}",
  8365. "{0B488D3E-1563-485B-BD50-82761FDB44BC}",
  8366. "{D0AE6E98-DB84-40CA-B241-FCC1E5BCE3AF}"
  8367. ]
  8368. },
  8369. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8370. "$type": "GeometrySaveData",
  8371. "Position": [
  8372. 280.0,
  8373. 660.0
  8374. ]
  8375. },
  8376. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8377. "$type": "StylingComponentSaveData"
  8378. },
  8379. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8380. "$type": "PersistentIdComponentSaveData",
  8381. "PersistentId": "{1D9516B6-0A86-429B-B133-AFFF6C9DE25D}"
  8382. }
  8383. }
  8384. }
  8385. },
  8386. {
  8387. "Type": 3,
  8388. "DataContainer": {
  8389. "ComponentData": {
  8390. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8391. "$type": "NodeSaveData"
  8392. },
  8393. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  8394. "$type": "CommentNodeTextSaveData",
  8395. "Comment": "The NewspaperTarget containers name will be something like \"NewspaperTarget_1337\" where the suffix will be how many points this target is worth. So split the name by \"_\" so we can trigger the script event for points scored",
  8396. "BackgroundColor": [
  8397. 0.9800000190734863,
  8398. 0.9700000286102295,
  8399. 0.6499999761581421
  8400. ],
  8401. "FontSettings": {
  8402. "PixelSize": 16
  8403. }
  8404. },
  8405. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  8406. "$type": "NodeGroupFrameComponentSaveData",
  8407. "DisplayHeight": 287.0,
  8408. "DisplayWidth": 2520.0,
  8409. "PersistentGroupedId": [
  8410. "{F2211FC7-02A8-4053-8DC6-895873937371}",
  8411. "{52EE530C-A0AC-4CC8-827C-910D70BA0EAC}",
  8412. "{6AB20A9C-1848-4337-A271-1A720BF7D5B5}",
  8413. "{D4A2319C-45AB-4914-BE23-2A42391E4C51}",
  8414. "{A59C517E-A87E-47B5-BE6D-B10A49A9E695}",
  8415. "{62CC36DC-2A9B-43AB-980F-974256D03687}"
  8416. ]
  8417. },
  8418. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8419. "$type": "GeometrySaveData",
  8420. "Position": [
  8421. 3940.0,
  8422. 460.0
  8423. ]
  8424. },
  8425. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8426. "$type": "StylingComponentSaveData"
  8427. },
  8428. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8429. "$type": "PersistentIdComponentSaveData",
  8430. "PersistentId": "{A5A44646-6FF0-445B-A453-332D4D1A4735}"
  8431. }
  8432. }
  8433. }
  8434. },
  8435. {
  8436. "Type": 3,
  8437. "DataContainer": {
  8438. "ComponentData": {
  8439. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8440. "$type": "NodeSaveData"
  8441. },
  8442. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  8443. "$type": "CommentNodeTextSaveData",
  8444. "Comment": "Check if our target was hit by a Newspaper",
  8445. "BackgroundColor": [
  8446. 0.8659999966621399,
  8447. 0.49799999594688416,
  8448. 0.4269999861717224
  8449. ],
  8450. "FontSettings": {
  8451. "PixelSize": 16
  8452. }
  8453. },
  8454. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  8455. "$type": "NodeGroupFrameComponentSaveData",
  8456. "DisplayHeight": 400.0,
  8457. "DisplayWidth": 2660.0,
  8458. "PersistentGroupedId": [
  8459. "{90CF22A6-9711-4305-8E3C-C0E0A061EAF4}",
  8460. "{B66A6B5C-0497-4E63-BED8-5A256D26A851}",
  8461. "{F833D979-B524-4127-9B70-8930170E012D}",
  8462. "{866BBA00-3EDB-4FCD-865B-2E466751C415}",
  8463. "{42B01AEA-1DDD-4C38-A1CB-7CC9E02214D2}",
  8464. "{546E19FE-E008-4F11-8869-9F7493B82927}"
  8465. ]
  8466. },
  8467. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8468. "$type": "GeometrySaveData",
  8469. "Position": [
  8470. 300.0,
  8471. 200.0
  8472. ]
  8473. },
  8474. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8475. "$type": "StylingComponentSaveData"
  8476. },
  8477. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8478. "$type": "PersistentIdComponentSaveData",
  8479. "PersistentId": "{DE64B115-EC5F-4434-9C97-C4CD16B75CB5}"
  8480. }
  8481. }
  8482. }
  8483. },
  8484. {
  8485. "Type": 3,
  8486. "DataContainer": {
  8487. "ComponentData": {
  8488. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8489. "$type": "NodeSaveData"
  8490. },
  8491. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  8492. "$type": "CommentNodeTextSaveData",
  8493. "Comment": "On the next level, if we hit this target then re-enable it. Otherwise, go dark so that it can't be a valid target this level. Once the house is dead, switch to the dark house",
  8494. "BackgroundColor": [
  8495. 0.9800000190734863,
  8496. 0.9700000286102295,
  8497. 0.6499999761581421
  8498. ],
  8499. "FontSettings": {
  8500. "PixelSize": 16
  8501. }
  8502. },
  8503. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  8504. "$type": "NodeGroupFrameComponentSaveData",
  8505. "DisplayHeight": 547.0,
  8506. "DisplayWidth": 3120.0,
  8507. "PersistentGroupedId": [
  8508. "{7013E1FD-8AE6-444F-A44D-CAC860DFB82B}",
  8509. "{CA725EE2-E891-4B62-B61D-1D3E2FA05B7D}",
  8510. "{D7FB9328-EF14-4184-ABFD-DB84664AA0E4}",
  8511. "{F9EA5936-FEFA-4B04-AA37-9D7837F151A3}",
  8512. "{8EA04FFA-9DD4-4820-AFF7-6A280642E77C}",
  8513. "{DD5A26C2-78B3-4F6D-A596-8FD516869DB2}",
  8514. "{1975922D-8F96-4FF4-B029-81A50910C362}",
  8515. "{B79DE07D-ABBF-4515-96F6-1114DBECF5C1}",
  8516. "{032F5B78-D5CE-4950-A897-87D475BA7B5A}"
  8517. ]
  8518. },
  8519. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8520. "$type": "GeometrySaveData",
  8521. "Position": [
  8522. 160.0,
  8523. 1140.0
  8524. ]
  8525. },
  8526. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8527. "$type": "StylingComponentSaveData"
  8528. },
  8529. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8530. "$type": "PersistentIdComponentSaveData",
  8531. "PersistentId": "{A66BE42C-38DC-4AF7-84DC-9E0FF73B711E}"
  8532. }
  8533. }
  8534. }
  8535. },
  8536. {
  8537. "Type": 3,
  8538. "DataContainer": {
  8539. "ComponentData": {
  8540. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8541. "$type": "NodeSaveData"
  8542. },
  8543. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  8544. "$type": "CommentNodeTextSaveData",
  8545. "Comment": "Find the regular and dark house entities and hide the dark one by default",
  8546. "BackgroundColor": [
  8547. 0.9800000190734863,
  8548. 0.9700000286102295,
  8549. 0.6499999761581421
  8550. ],
  8551. "FontSettings": {
  8552. "PixelSize": 16
  8553. }
  8554. },
  8555. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  8556. "$type": "NodeGroupFrameComponentSaveData",
  8557. "DisplayHeight": 680.0,
  8558. "DisplayWidth": 4160.0,
  8559. "PersistentGroupedId": [
  8560. "{CFBFAA16-95D3-41A5-9E31-39B53BD261A8}",
  8561. "{8F24FA31-CDA9-4010-A5F5-674BB9052106}",
  8562. "{945639EC-6042-4424-B68D-8761ADECF28A}",
  8563. "{BA5248C4-A138-41F9-B0C9-103713AF9651}",
  8564. "{A76CE5DE-2FDA-428C-9260-5D333C692F9F}",
  8565. "{586C7625-C9A4-4D2D-9AD9-ADBB1092DB1B}",
  8566. "{2D317332-F782-4B11-BFC6-E0CE5A8D9A31}",
  8567. "{42D92C9C-AE51-4006-B2F0-72FCE4D572A7}",
  8568. "{96445FFE-AF71-4506-8A22-625804533974}",
  8569. "{37EDF302-786C-4243-8E32-E733CFC0D8B1}",
  8570. "{838A9277-AEEA-4166-97C7-86F4F94A9848}",
  8571. "{EF01FCC5-A4AE-4441-BB37-D043A27BAFDC}",
  8572. "{2276D5FC-17AC-4F9F-93F5-626FFE5B858A}",
  8573. "{B1E1F2A9-B6B8-4ED5-AB51-C6C815ACD7F9}",
  8574. "{293D1EE4-16AA-427D-BE5C-EE5E37AB38A7}",
  8575. "{F315EFD0-1C8D-4CA5-8CB3-13350F5D374D}",
  8576. "{49D34BAE-1EF6-403C-B9CF-202D2CD09A35}"
  8577. ]
  8578. },
  8579. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8580. "$type": "GeometrySaveData",
  8581. "Position": [
  8582. 520.0,
  8583. -640.0
  8584. ]
  8585. },
  8586. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8587. "$type": "StylingComponentSaveData"
  8588. },
  8589. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8590. "$type": "PersistentIdComponentSaveData",
  8591. "PersistentId": "{FDBE1A08-8B8E-41D1-8037-AEB1A74B04EC}"
  8592. }
  8593. }
  8594. }
  8595. }
  8596. ],
  8597. "ViewParams": {
  8598. "Scale": 0.45202108291212384,
  8599. "AnchorX": 657.0490112304688,
  8600. "AnchorY": -214.59176635742188
  8601. }
  8602. }
  8603. }
  8604. }
  8605. },
  8606. {
  8607. "Key": {
  8608. "id": 222808993156864
  8609. },
  8610. "Value": {
  8611. "ComponentData": {
  8612. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8613. "$type": "NodeSaveData"
  8614. },
  8615. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8616. "$type": "GeneralNodeTitleComponentSaveData",
  8617. "PaletteOverride": "MethodNodeTitlePalette"
  8618. },
  8619. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8620. "$type": "GeometrySaveData",
  8621. "Position": [
  8622. 6160.0,
  8623. 520.0
  8624. ]
  8625. },
  8626. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8627. "$type": "StylingComponentSaveData",
  8628. "SubStyle": ".method"
  8629. },
  8630. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8631. "$type": "PersistentIdComponentSaveData",
  8632. "PersistentId": "{D4A2319C-45AB-4914-BE23-2A42391E4C51}"
  8633. }
  8634. }
  8635. }
  8636. },
  8637. {
  8638. "Key": {
  8639. "id": 222813288124160
  8640. },
  8641. "Value": {
  8642. "ComponentData": {
  8643. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8644. "$type": "NodeSaveData"
  8645. },
  8646. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8647. "$type": "GeometrySaveData",
  8648. "Position": [
  8649. -40.0,
  8650. 80.0
  8651. ]
  8652. },
  8653. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  8654. "$type": "EBusHandlerNodeDescriptorSaveData",
  8655. "EventIds": [
  8656. {
  8657. "Value": 245425936
  8658. }
  8659. ]
  8660. },
  8661. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8662. "$type": "StylingComponentSaveData"
  8663. },
  8664. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8665. "$type": "PersistentIdComponentSaveData",
  8666. "PersistentId": "{90939E97-6082-4185-B195-1BDBB4FF23F0}"
  8667. }
  8668. }
  8669. }
  8670. },
  8671. {
  8672. "Key": {
  8673. "id": 222817583091456
  8674. },
  8675. "Value": {
  8676. "ComponentData": {
  8677. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8678. "$type": "NodeSaveData"
  8679. },
  8680. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8681. "$type": "GeneralNodeTitleComponentSaveData",
  8682. "PaletteOverride": "MethodNodeTitlePalette"
  8683. },
  8684. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8685. "$type": "GeometrySaveData",
  8686. "Position": [
  8687. 2920.0,
  8688. 1480.0
  8689. ]
  8690. },
  8691. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8692. "$type": "StylingComponentSaveData",
  8693. "SubStyle": ".method"
  8694. },
  8695. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8696. "$type": "PersistentIdComponentSaveData",
  8697. "PersistentId": "{032F5B78-D5CE-4950-A897-87D475BA7B5A}"
  8698. }
  8699. }
  8700. }
  8701. },
  8702. {
  8703. "Key": {
  8704. "id": 222821878058752
  8705. },
  8706. "Value": {
  8707. "ComponentData": {
  8708. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8709. "$type": "NodeSaveData"
  8710. },
  8711. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8712. "$type": "GeneralNodeTitleComponentSaveData",
  8713. "PaletteOverride": "MethodNodeTitlePalette"
  8714. },
  8715. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8716. "$type": "GeometrySaveData",
  8717. "Position": [
  8718. 3960.0,
  8719. 520.0
  8720. ]
  8721. },
  8722. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8723. "$type": "StylingComponentSaveData",
  8724. "SubStyle": ".method"
  8725. },
  8726. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8727. "$type": "PersistentIdComponentSaveData",
  8728. "PersistentId": "{A59C517E-A87E-47B5-BE6D-B10A49A9E695}"
  8729. }
  8730. }
  8731. }
  8732. },
  8733. {
  8734. "Key": {
  8735. "id": 222826173026048
  8736. },
  8737. "Value": {
  8738. "ComponentData": {
  8739. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8740. "$type": "NodeSaveData"
  8741. },
  8742. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8743. "$type": "GeneralNodeTitleComponentSaveData",
  8744. "PaletteOverride": "LogicNodeTitlePalette"
  8745. },
  8746. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8747. "$type": "GeometrySaveData",
  8748. "Position": [
  8749. 3380.0,
  8750. 440.0
  8751. ]
  8752. },
  8753. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8754. "$type": "StylingComponentSaveData"
  8755. },
  8756. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8757. "$type": "PersistentIdComponentSaveData",
  8758. "PersistentId": "{1E1EDD45-2C89-4BB9-8CDC-18941E81CF70}"
  8759. }
  8760. }
  8761. }
  8762. },
  8763. {
  8764. "Key": {
  8765. "id": 222830467993344
  8766. },
  8767. "Value": {
  8768. "ComponentData": {
  8769. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8770. "$type": "NodeSaveData"
  8771. },
  8772. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8773. "$type": "GeneralNodeTitleComponentSaveData",
  8774. "PaletteOverride": "MethodNodeTitlePalette"
  8775. },
  8776. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8777. "$type": "GeometrySaveData",
  8778. "Position": [
  8779. 1900.0,
  8780. -540.0
  8781. ]
  8782. },
  8783. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8784. "$type": "StylingComponentSaveData",
  8785. "SubStyle": ".method"
  8786. },
  8787. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8788. "$type": "PersistentIdComponentSaveData",
  8789. "PersistentId": "{96445FFE-AF71-4506-8A22-625804533974}"
  8790. }
  8791. }
  8792. }
  8793. },
  8794. {
  8795. "Key": {
  8796. "id": 222834762960640
  8797. },
  8798. "Value": {
  8799. "ComponentData": {
  8800. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8801. "$type": "NodeSaveData"
  8802. },
  8803. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8804. "$type": "GeneralNodeTitleComponentSaveData",
  8805. "PaletteOverride": "MethodNodeTitlePalette"
  8806. },
  8807. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8808. "$type": "GeometrySaveData",
  8809. "Position": [
  8810. 320.0,
  8811. 260.0
  8812. ]
  8813. },
  8814. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8815. "$type": "StylingComponentSaveData",
  8816. "SubStyle": ".method"
  8817. },
  8818. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8819. "$type": "PersistentIdComponentSaveData",
  8820. "PersistentId": "{42B01AEA-1DDD-4C38-A1CB-7CC9E02214D2}"
  8821. }
  8822. }
  8823. }
  8824. },
  8825. {
  8826. "Key": {
  8827. "id": 222839057927936
  8828. },
  8829. "Value": {
  8830. "ComponentData": {
  8831. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8832. "$type": "NodeSaveData"
  8833. },
  8834. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8835. "$type": "GeneralNodeTitleComponentSaveData",
  8836. "PaletteOverride": "MethodNodeTitlePalette"
  8837. },
  8838. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8839. "$type": "GeometrySaveData",
  8840. "Position": [
  8841. 5360.0,
  8842. 520.0
  8843. ]
  8844. },
  8845. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8846. "$type": "StylingComponentSaveData",
  8847. "SubStyle": ".method"
  8848. },
  8849. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8850. "$type": "PersistentIdComponentSaveData",
  8851. "PersistentId": "{52EE530C-A0AC-4CC8-827C-910D70BA0EAC}"
  8852. }
  8853. }
  8854. }
  8855. },
  8856. {
  8857. "Key": {
  8858. "id": 222843352895232
  8859. },
  8860. "Value": {
  8861. "ComponentData": {
  8862. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8863. "$type": "NodeSaveData"
  8864. },
  8865. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8866. "$type": "GeneralNodeTitleComponentSaveData",
  8867. "PaletteOverride": "SetVariableNodeTitlePalette"
  8868. },
  8869. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8870. "$type": "GeometrySaveData",
  8871. "Position": [
  8872. 2500.0,
  8873. -120.0
  8874. ]
  8875. },
  8876. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8877. "$type": "StylingComponentSaveData",
  8878. "SubStyle": ".setVariable"
  8879. },
  8880. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8881. "$type": "PersistentIdComponentSaveData",
  8882. "PersistentId": "{49D34BAE-1EF6-403C-B9CF-202D2CD09A35}"
  8883. }
  8884. }
  8885. }
  8886. },
  8887. {
  8888. "Key": {
  8889. "id": 222847647862528
  8890. },
  8891. "Value": {
  8892. "ComponentData": {
  8893. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8894. "$type": "NodeSaveData"
  8895. },
  8896. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8897. "$type": "GeneralNodeTitleComponentSaveData",
  8898. "PaletteOverride": "MethodNodeTitlePalette"
  8899. },
  8900. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8901. "$type": "GeometrySaveData",
  8902. "Position": [
  8903. 1380.0,
  8904. -280.0
  8905. ]
  8906. },
  8907. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8908. "$type": "StylingComponentSaveData",
  8909. "SubStyle": ".method"
  8910. },
  8911. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8912. "$type": "PersistentIdComponentSaveData",
  8913. "PersistentId": "{8F24FA31-CDA9-4010-A5F5-674BB9052106}"
  8914. }
  8915. }
  8916. }
  8917. },
  8918. {
  8919. "Key": {
  8920. "id": 222851942829824
  8921. },
  8922. "Value": {
  8923. "ComponentData": {
  8924. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8925. "$type": "NodeSaveData"
  8926. },
  8927. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8928. "$type": "GeneralNodeTitleComponentSaveData",
  8929. "PaletteOverride": "SetVariableNodeTitlePalette"
  8930. },
  8931. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8932. "$type": "GeometrySaveData",
  8933. "Position": [
  8934. 6500.0,
  8935. 520.0
  8936. ]
  8937. },
  8938. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8939. "$type": "StylingComponentSaveData",
  8940. "SubStyle": ".setVariable"
  8941. },
  8942. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8943. "$type": "PersistentIdComponentSaveData",
  8944. "PersistentId": "{37470F69-4CBE-4388-8F73-C3A838E9336D}"
  8945. }
  8946. }
  8947. }
  8948. },
  8949. {
  8950. "Key": {
  8951. "id": 222856237797120
  8952. },
  8953. "Value": {
  8954. "ComponentData": {
  8955. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8956. "$type": "NodeSaveData"
  8957. },
  8958. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8959. "$type": "GeneralNodeTitleComponentSaveData",
  8960. "PaletteOverride": "MethodNodeTitlePalette"
  8961. },
  8962. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8963. "$type": "GeometrySaveData",
  8964. "Position": [
  8965. 6840.0,
  8966. 520.0
  8967. ]
  8968. },
  8969. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  8970. "$type": "StylingComponentSaveData",
  8971. "SubStyle": ".method"
  8972. },
  8973. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  8974. "$type": "PersistentIdComponentSaveData",
  8975. "PersistentId": "{09D4DFAC-CECA-48C5-AD21-F40182C0B7D0}"
  8976. }
  8977. }
  8978. }
  8979. },
  8980. {
  8981. "Key": {
  8982. "id": 222860532764416
  8983. },
  8984. "Value": {
  8985. "ComponentData": {
  8986. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  8987. "$type": "NodeSaveData"
  8988. },
  8989. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  8990. "$type": "GeneralNodeTitleComponentSaveData",
  8991. "PaletteOverride": "HandlerNodeTitlePalette"
  8992. },
  8993. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  8994. "$type": "GeometrySaveData",
  8995. "Position": [
  8996. 920.0,
  8997. 260.0
  8998. ]
  8999. },
  9000. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9001. "$type": "StylingComponentSaveData",
  9002. "SubStyle": ".azeventhandler"
  9003. },
  9004. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9005. "$type": "PersistentIdComponentSaveData",
  9006. "PersistentId": "{B66A6B5C-0497-4E63-BED8-5A256D26A851}"
  9007. }
  9008. }
  9009. }
  9010. },
  9011. {
  9012. "Key": {
  9013. "id": 222864827731712
  9014. },
  9015. "Value": {
  9016. "ComponentData": {
  9017. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9018. "$type": "NodeSaveData"
  9019. },
  9020. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9021. "$type": "GeneralNodeTitleComponentSaveData",
  9022. "PaletteOverride": "MethodNodeTitlePalette"
  9023. },
  9024. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9025. "$type": "GeometrySaveData",
  9026. "Position": [
  9027. 4360.0,
  9028. -500.0
  9029. ]
  9030. },
  9031. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9032. "$type": "StylingComponentSaveData",
  9033. "SubStyle": ".method"
  9034. },
  9035. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9036. "$type": "PersistentIdComponentSaveData",
  9037. "PersistentId": "{2D317332-F782-4B11-BFC6-E0CE5A8D9A31}"
  9038. }
  9039. }
  9040. }
  9041. },
  9042. {
  9043. "Key": {
  9044. "id": 222869122699008
  9045. },
  9046. "Value": {
  9047. "ComponentData": {
  9048. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9049. "$type": "NodeSaveData"
  9050. },
  9051. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9052. "$type": "GeneralNodeTitleComponentSaveData",
  9053. "PaletteOverride": "MethodNodeTitlePalette"
  9054. },
  9055. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9056. "$type": "GeometrySaveData",
  9057. "Position": [
  9058. 4900.0,
  9059. 520.0
  9060. ]
  9061. },
  9062. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9063. "$type": "StylingComponentSaveData",
  9064. "SubStyle": ".method"
  9065. },
  9066. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9067. "$type": "PersistentIdComponentSaveData",
  9068. "PersistentId": "{6AB20A9C-1848-4337-A271-1A720BF7D5B5}"
  9069. }
  9070. }
  9071. }
  9072. },
  9073. {
  9074. "Key": {
  9075. "id": 222873417666304
  9076. },
  9077. "Value": {
  9078. "ComponentData": {
  9079. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9080. "$type": "NodeSaveData"
  9081. },
  9082. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9083. "$type": "GeneralNodeTitleComponentSaveData",
  9084. "PaletteOverride": "MethodNodeTitlePalette"
  9085. },
  9086. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9087. "$type": "GeometrySaveData",
  9088. "Position": [
  9089. 2160.0,
  9090. -280.0
  9091. ]
  9092. },
  9093. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9094. "$type": "StylingComponentSaveData",
  9095. "SubStyle": ".method"
  9096. },
  9097. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9098. "$type": "PersistentIdComponentSaveData",
  9099. "PersistentId": "{BA5248C4-A138-41F9-B0C9-103713AF9651}"
  9100. }
  9101. }
  9102. }
  9103. },
  9104. {
  9105. "Key": {
  9106. "id": 222877712633600
  9107. },
  9108. "Value": {
  9109. "ComponentData": {
  9110. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9111. "$type": "NodeSaveData"
  9112. },
  9113. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9114. "$type": "GeneralNodeTitleComponentSaveData",
  9115. "PaletteOverride": "MethodNodeTitlePalette"
  9116. },
  9117. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9118. "$type": "GeometrySaveData",
  9119. "Position": [
  9120. 2480.0,
  9121. -280.0
  9122. ]
  9123. },
  9124. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9125. "$type": "StylingComponentSaveData",
  9126. "SubStyle": ".method"
  9127. },
  9128. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9129. "$type": "PersistentIdComponentSaveData",
  9130. "PersistentId": "{F315EFD0-1C8D-4CA5-8CB3-13350F5D374D}"
  9131. }
  9132. }
  9133. }
  9134. },
  9135. {
  9136. "Key": {
  9137. "id": 222882007600896
  9138. },
  9139. "Value": {
  9140. "ComponentData": {
  9141. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9142. "$type": "NodeSaveData"
  9143. },
  9144. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9145. "$type": "GeneralNodeTitleComponentSaveData",
  9146. "PaletteOverride": "TimeNodeTitlePalette"
  9147. },
  9148. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9149. "$type": "GeometrySaveData",
  9150. "Position": [
  9151. 540.0,
  9152. -580.0
  9153. ]
  9154. },
  9155. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9156. "$type": "StylingComponentSaveData"
  9157. },
  9158. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9159. "$type": "PersistentIdComponentSaveData",
  9160. "PersistentId": "{B1E1F2A9-B6B8-4ED5-AB51-C6C815ACD7F9}"
  9161. }
  9162. }
  9163. }
  9164. },
  9165. {
  9166. "Key": {
  9167. "id": 222886302568192
  9168. },
  9169. "Value": {
  9170. "ComponentData": {
  9171. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9172. "$type": "NodeSaveData"
  9173. },
  9174. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9175. "$type": "GeneralNodeTitleComponentSaveData",
  9176. "PaletteOverride": "MethodNodeTitlePalette"
  9177. },
  9178. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9179. "$type": "GeometrySaveData",
  9180. "Position": [
  9181. 3520.0,
  9182. -500.0
  9183. ]
  9184. },
  9185. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9186. "$type": "StylingComponentSaveData",
  9187. "SubStyle": ".method"
  9188. },
  9189. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9190. "$type": "PersistentIdComponentSaveData",
  9191. "PersistentId": "{A76CE5DE-2FDA-428C-9260-5D333C692F9F}"
  9192. }
  9193. }
  9194. }
  9195. },
  9196. {
  9197. "Key": {
  9198. "id": 222890597535488
  9199. },
  9200. "Value": {
  9201. "ComponentData": {
  9202. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9203. "$type": "NodeSaveData"
  9204. },
  9205. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9206. "$type": "GeneralNodeTitleComponentSaveData",
  9207. "PaletteOverride": "MethodNodeTitlePalette"
  9208. },
  9209. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9210. "$type": "GeometrySaveData",
  9211. "Position": [
  9212. 2100.0,
  9213. 1480.0
  9214. ]
  9215. },
  9216. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9217. "$type": "StylingComponentSaveData",
  9218. "SubStyle": ".method"
  9219. },
  9220. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9221. "$type": "PersistentIdComponentSaveData",
  9222. "PersistentId": "{F9EA5936-FEFA-4B04-AA37-9D7837F151A3}"
  9223. }
  9224. }
  9225. }
  9226. },
  9227. {
  9228. "Key": {
  9229. "id": 222894892502784
  9230. },
  9231. "Value": {
  9232. "ComponentData": {
  9233. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9234. "$type": "NodeSaveData"
  9235. },
  9236. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9237. "$type": "GeneralNodeTitleComponentSaveData",
  9238. "PaletteOverride": "MethodNodeTitlePalette"
  9239. },
  9240. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9241. "$type": "GeometrySaveData",
  9242. "Position": [
  9243. 2640.0,
  9244. 440.0
  9245. ]
  9246. },
  9247. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9248. "$type": "StylingComponentSaveData",
  9249. "SubStyle": ".method"
  9250. },
  9251. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9252. "$type": "PersistentIdComponentSaveData",
  9253. "PersistentId": "{F833D979-B524-4127-9B70-8930170E012D}"
  9254. }
  9255. }
  9256. }
  9257. },
  9258. {
  9259. "Key": {
  9260. "id": 222899187470080
  9261. },
  9262. "Value": {
  9263. "ComponentData": {
  9264. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9265. "$type": "NodeSaveData"
  9266. },
  9267. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9268. "$type": "GeometrySaveData",
  9269. "Position": [
  9270. 300.0,
  9271. 720.0
  9272. ]
  9273. },
  9274. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9275. "$type": "StylingComponentSaveData"
  9276. },
  9277. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9278. "$type": "PersistentIdComponentSaveData",
  9279. "PersistentId": "{0B488D3E-1563-485B-BD50-82761FDB44BC}"
  9280. },
  9281. "{D8BBE799-7E4D-495A-B69A-1E3940670891}": {
  9282. "$type": "ScriptEventReceiverHandlerNodeDescriptorSaveData",
  9283. "EventNames": [
  9284. [
  9285. {
  9286. "Value": 1337177786
  9287. },
  9288. "StartGame"
  9289. ]
  9290. ]
  9291. }
  9292. }
  9293. }
  9294. },
  9295. {
  9296. "Key": {
  9297. "id": 222903482437376
  9298. },
  9299. "Value": {
  9300. "ComponentData": {
  9301. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9302. "$type": "NodeSaveData"
  9303. },
  9304. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9305. "$type": "GeneralNodeTitleComponentSaveData",
  9306. "PaletteOverride": "SetVariableNodeTitlePalette"
  9307. },
  9308. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9309. "$type": "GeometrySaveData",
  9310. "Position": [
  9311. 1780.0,
  9312. 1480.0
  9313. ]
  9314. },
  9315. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9316. "$type": "StylingComponentSaveData",
  9317. "SubStyle": ".setVariable"
  9318. },
  9319. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9320. "$type": "PersistentIdComponentSaveData",
  9321. "PersistentId": "{1975922D-8F96-4FF4-B029-81A50910C362}"
  9322. }
  9323. }
  9324. }
  9325. },
  9326. {
  9327. "Key": {
  9328. "id": 222907777404672
  9329. },
  9330. "Value": {
  9331. "ComponentData": {
  9332. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9333. "$type": "NodeSaveData"
  9334. },
  9335. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9336. "$type": "GeneralNodeTitleComponentSaveData",
  9337. "PaletteOverride": "MethodNodeTitlePalette"
  9338. },
  9339. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9340. "$type": "GeometrySaveData",
  9341. "Position": [
  9342. 4440.0,
  9343. 520.0
  9344. ]
  9345. },
  9346. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9347. "$type": "StylingComponentSaveData",
  9348. "SubStyle": ".method"
  9349. },
  9350. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9351. "$type": "PersistentIdComponentSaveData",
  9352. "PersistentId": "{62CC36DC-2A9B-43AB-980F-974256D03687}"
  9353. }
  9354. }
  9355. }
  9356. },
  9357. {
  9358. "Key": {
  9359. "id": 222912072371968
  9360. },
  9361. "Value": {
  9362. "ComponentData": {
  9363. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9364. "$type": "NodeSaveData"
  9365. },
  9366. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9367. "$type": "GeneralNodeTitleComponentSaveData",
  9368. "PaletteOverride": "MethodNodeTitlePalette"
  9369. },
  9370. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9371. "$type": "GeometrySaveData",
  9372. "Position": [
  9373. 1700.0,
  9374. -280.0
  9375. ]
  9376. },
  9377. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9378. "$type": "StylingComponentSaveData",
  9379. "SubStyle": ".method"
  9380. },
  9381. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9382. "$type": "PersistentIdComponentSaveData",
  9383. "PersistentId": "{838A9277-AEEA-4166-97C7-86F4F94A9848}"
  9384. }
  9385. }
  9386. }
  9387. },
  9388. {
  9389. "Key": {
  9390. "id": 222916367339264
  9391. },
  9392. "Value": {
  9393. "ComponentData": {
  9394. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9395. "$type": "NodeSaveData"
  9396. },
  9397. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9398. "$type": "GeneralNodeTitleComponentSaveData",
  9399. "PaletteOverride": "MethodNodeTitlePalette"
  9400. },
  9401. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9402. "$type": "GeometrySaveData",
  9403. "Position": [
  9404. 1420.0,
  9405. -540.0
  9406. ]
  9407. },
  9408. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9409. "$type": "StylingComponentSaveData",
  9410. "SubStyle": ".method"
  9411. },
  9412. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9413. "$type": "PersistentIdComponentSaveData",
  9414. "PersistentId": "{586C7625-C9A4-4D2D-9AD9-ADBB1092DB1B}"
  9415. }
  9416. }
  9417. }
  9418. },
  9419. {
  9420. "Key": {
  9421. "id": 222920662306560
  9422. },
  9423. "Value": {
  9424. "ComponentData": {
  9425. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9426. "$type": "NodeSaveData"
  9427. },
  9428. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9429. "$type": "GeneralNodeTitleComponentSaveData",
  9430. "PaletteOverride": "MethodNodeTitlePalette"
  9431. },
  9432. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9433. "$type": "GeometrySaveData",
  9434. "Position": [
  9435. 1200.0,
  9436. 1480.0
  9437. ]
  9438. },
  9439. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9440. "$type": "StylingComponentSaveData",
  9441. "SubStyle": ".method"
  9442. },
  9443. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9444. "$type": "PersistentIdComponentSaveData",
  9445. "PersistentId": "{8EA04FFA-9DD4-4820-AFF7-6A280642E77C}"
  9446. }
  9447. }
  9448. }
  9449. },
  9450. {
  9451. "Key": {
  9452. "id": 222924957273856
  9453. },
  9454. "Value": {
  9455. "ComponentData": {
  9456. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9457. "$type": "NodeSaveData"
  9458. },
  9459. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9460. "$type": "GeneralNodeTitleComponentSaveData",
  9461. "PaletteOverride": "SetVariableNodeTitlePalette"
  9462. },
  9463. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9464. "$type": "GeometrySaveData",
  9465. "Position": [
  9466. 1460.0,
  9467. 780.0
  9468. ]
  9469. },
  9470. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9471. "$type": "StylingComponentSaveData",
  9472. "SubStyle": ".setVariable"
  9473. },
  9474. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9475. "$type": "PersistentIdComponentSaveData",
  9476. "PersistentId": "{68950858-0096-4F1E-8750-5E4267E42DD3}"
  9477. }
  9478. }
  9479. }
  9480. },
  9481. {
  9482. "Key": {
  9483. "id": 222929252241152
  9484. },
  9485. "Value": {
  9486. "ComponentData": {
  9487. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9488. "$type": "NodeSaveData"
  9489. },
  9490. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9491. "$type": "GeneralNodeTitleComponentSaveData",
  9492. "PaletteOverride": "MethodNodeTitlePalette"
  9493. },
  9494. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9495. "$type": "GeometrySaveData",
  9496. "Position": [
  9497. 2220.0,
  9498. 340.0
  9499. ]
  9500. },
  9501. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9502. "$type": "StylingComponentSaveData",
  9503. "SubStyle": ".method"
  9504. },
  9505. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9506. "$type": "PersistentIdComponentSaveData",
  9507. "PersistentId": "{866BBA00-3EDB-4FCD-865B-2E466751C415}"
  9508. }
  9509. }
  9510. }
  9511. },
  9512. {
  9513. "Key": {
  9514. "id": 222933547208448
  9515. },
  9516. "Value": {
  9517. "ComponentData": {
  9518. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9519. "$type": "NodeSaveData"
  9520. },
  9521. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9522. "$type": "GeneralNodeTitleComponentSaveData",
  9523. "PaletteOverride": "MethodNodeTitlePalette"
  9524. },
  9525. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9526. "$type": "GeometrySaveData",
  9527. "Position": [
  9528. 1740.0,
  9529. 340.0
  9530. ]
  9531. },
  9532. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9533. "$type": "StylingComponentSaveData",
  9534. "SubStyle": ".method"
  9535. },
  9536. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9537. "$type": "PersistentIdComponentSaveData",
  9538. "PersistentId": "{546E19FE-E008-4F11-8869-9F7493B82927}"
  9539. }
  9540. }
  9541. }
  9542. },
  9543. {
  9544. "Key": {
  9545. "id": 222937842175744
  9546. },
  9547. "Value": {
  9548. "ComponentData": {
  9549. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9550. "$type": "NodeSaveData"
  9551. },
  9552. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9553. "$type": "GeneralNodeTitleComponentSaveData",
  9554. "PaletteOverride": "MethodNodeTitlePalette"
  9555. },
  9556. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9557. "$type": "GeometrySaveData",
  9558. "Position": [
  9559. 2700.0,
  9560. -540.0
  9561. ]
  9562. },
  9563. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9564. "$type": "StylingComponentSaveData",
  9565. "SubStyle": ".method"
  9566. },
  9567. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9568. "$type": "PersistentIdComponentSaveData",
  9569. "PersistentId": "{42D92C9C-AE51-4006-B2F0-72FCE4D572A7}"
  9570. }
  9571. }
  9572. }
  9573. },
  9574. {
  9575. "Key": {
  9576. "id": 222942137143040
  9577. },
  9578. "Value": {
  9579. "ComponentData": {
  9580. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9581. "$type": "NodeSaveData"
  9582. },
  9583. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9584. "$type": "GeneralNodeTitleComponentSaveData",
  9585. "PaletteOverride": "LogicNodeTitlePalette"
  9586. },
  9587. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9588. "$type": "GeometrySaveData",
  9589. "Position": [
  9590. 3040.0,
  9591. 440.0
  9592. ]
  9593. },
  9594. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9595. "$type": "StylingComponentSaveData"
  9596. },
  9597. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9598. "$type": "PersistentIdComponentSaveData",
  9599. "PersistentId": "{D632ABF8-C956-4E97-9937-3AACC1FCBEE6}"
  9600. }
  9601. }
  9602. }
  9603. },
  9604. {
  9605. "Key": {
  9606. "id": 222946432110336
  9607. },
  9608. "Value": {
  9609. "ComponentData": {
  9610. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9611. "$type": "NodeSaveData"
  9612. },
  9613. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9614. "$type": "GeneralNodeTitleComponentSaveData",
  9615. "PaletteOverride": "LogicNodeTitlePalette"
  9616. },
  9617. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9618. "$type": "GeometrySaveData",
  9619. "Position": [
  9620. 680.0,
  9621. 1280.0
  9622. ]
  9623. },
  9624. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9625. "$type": "StylingComponentSaveData"
  9626. },
  9627. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9628. "$type": "PersistentIdComponentSaveData",
  9629. "PersistentId": "{B79DE07D-ABBF-4515-96F6-1114DBECF5C1}"
  9630. }
  9631. }
  9632. }
  9633. },
  9634. {
  9635. "Key": {
  9636. "id": 222950727077632
  9637. },
  9638. "Value": {
  9639. "ComponentData": {
  9640. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9641. "$type": "NodeSaveData"
  9642. },
  9643. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9644. "$type": "GeneralNodeTitleComponentSaveData",
  9645. "PaletteOverride": "DefaultNodeTitlePalette"
  9646. },
  9647. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9648. "$type": "GeometrySaveData",
  9649. "Position": [
  9650. 2380.0,
  9651. -540.0
  9652. ]
  9653. },
  9654. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9655. "$type": "StylingComponentSaveData"
  9656. },
  9657. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9658. "$type": "PersistentIdComponentSaveData",
  9659. "PersistentId": "{945639EC-6042-4424-B68D-8761ADECF28A}"
  9660. }
  9661. }
  9662. }
  9663. },
  9664. {
  9665. "Key": {
  9666. "id": 222955022044928
  9667. },
  9668. "Value": {
  9669. "ComponentData": {
  9670. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9671. "$type": "NodeSaveData"
  9672. },
  9673. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9674. "$type": "GeneralNodeTitleComponentSaveData",
  9675. "PaletteOverride": "MethodNodeTitlePalette"
  9676. },
  9677. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9678. "$type": "GeometrySaveData",
  9679. "Position": [
  9680. 1200.0,
  9681. 1260.0
  9682. ]
  9683. },
  9684. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9685. "$type": "StylingComponentSaveData",
  9686. "SubStyle": ".method"
  9687. },
  9688. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9689. "$type": "PersistentIdComponentSaveData",
  9690. "PersistentId": "{7013E1FD-8AE6-444F-A44D-CAC860DFB82B}"
  9691. }
  9692. }
  9693. }
  9694. },
  9695. {
  9696. "Key": {
  9697. "id": 222959317012224
  9698. },
  9699. "Value": {
  9700. "ComponentData": {
  9701. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9702. "$type": "NodeSaveData"
  9703. },
  9704. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9705. "$type": "GeneralNodeTitleComponentSaveData",
  9706. "PaletteOverride": "MethodNodeTitlePalette"
  9707. },
  9708. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9709. "$type": "GeometrySaveData",
  9710. "Position": [
  9711. 3180.0,
  9712. -540.0
  9713. ]
  9714. },
  9715. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9716. "$type": "StylingComponentSaveData",
  9717. "SubStyle": ".method"
  9718. },
  9719. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9720. "$type": "PersistentIdComponentSaveData",
  9721. "PersistentId": "{293D1EE4-16AA-427D-BE5C-EE5E37AB38A7}"
  9722. }
  9723. }
  9724. }
  9725. },
  9726. {
  9727. "Key": {
  9728. "id": 222963611979520
  9729. },
  9730. "Value": {
  9731. "ComponentData": {
  9732. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9733. "$type": "NodeSaveData"
  9734. },
  9735. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9736. "$type": "GeneralNodeTitleComponentSaveData",
  9737. "PaletteOverride": "MethodNodeTitlePalette"
  9738. },
  9739. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9740. "$type": "GeometrySaveData",
  9741. "Position": [
  9742. 5700.0,
  9743. 520.0
  9744. ]
  9745. },
  9746. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9747. "$type": "StylingComponentSaveData",
  9748. "SubStyle": ".method"
  9749. },
  9750. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9751. "$type": "PersistentIdComponentSaveData",
  9752. "PersistentId": "{F2211FC7-02A8-4053-8DC6-895873937371}"
  9753. }
  9754. }
  9755. }
  9756. },
  9757. {
  9758. "Key": {
  9759. "id": 222967906946816
  9760. },
  9761. "Value": {
  9762. "ComponentData": {
  9763. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9764. "$type": "NodeSaveData"
  9765. },
  9766. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9767. "$type": "GeometrySaveData",
  9768. "Position": [
  9769. 180.0,
  9770. 1240.0
  9771. ]
  9772. },
  9773. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9774. "$type": "StylingComponentSaveData"
  9775. },
  9776. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9777. "$type": "PersistentIdComponentSaveData",
  9778. "PersistentId": "{DD5A26C2-78B3-4F6D-A596-8FD516869DB2}"
  9779. },
  9780. "{D8BBE799-7E4D-495A-B69A-1E3940670891}": {
  9781. "$type": "ScriptEventReceiverHandlerNodeDescriptorSaveData",
  9782. "EventNames": [
  9783. [
  9784. {
  9785. "Value": 3075378332
  9786. },
  9787. "NextLevel"
  9788. ]
  9789. ]
  9790. }
  9791. }
  9792. }
  9793. },
  9794. {
  9795. "Key": {
  9796. "id": 222972201914112
  9797. },
  9798. "Value": {
  9799. "ComponentData": {
  9800. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9801. "$type": "NodeSaveData"
  9802. },
  9803. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9804. "$type": "GeneralNodeTitleComponentSaveData",
  9805. "PaletteOverride": "MethodNodeTitlePalette"
  9806. },
  9807. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9808. "$type": "GeometrySaveData",
  9809. "Position": [
  9810. 2580.0,
  9811. 1480.0
  9812. ]
  9813. },
  9814. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9815. "$type": "StylingComponentSaveData",
  9816. "SubStyle": ".method"
  9817. },
  9818. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9819. "$type": "PersistentIdComponentSaveData",
  9820. "PersistentId": "{CA725EE2-E891-4B62-B61D-1D3E2FA05B7D}"
  9821. }
  9822. }
  9823. }
  9824. },
  9825. {
  9826. "Key": {
  9827. "id": 222976496881408
  9828. },
  9829. "Value": {
  9830. "ComponentData": {
  9831. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9832. "$type": "NodeSaveData"
  9833. },
  9834. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9835. "$type": "GeneralNodeTitleComponentSaveData",
  9836. "PaletteOverride": "SetVariableNodeTitlePalette"
  9837. },
  9838. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9839. "$type": "GeometrySaveData",
  9840. "Position": [
  9841. 3880.0,
  9842. -320.0
  9843. ]
  9844. },
  9845. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9846. "$type": "StylingComponentSaveData",
  9847. "SubStyle": ".setVariable"
  9848. },
  9849. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9850. "$type": "PersistentIdComponentSaveData",
  9851. "PersistentId": "{2276D5FC-17AC-4F9F-93F5-626FFE5B858A}"
  9852. }
  9853. }
  9854. }
  9855. },
  9856. {
  9857. "Key": {
  9858. "id": 222980791848704
  9859. },
  9860. "Value": {
  9861. "ComponentData": {
  9862. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9863. "$type": "NodeSaveData"
  9864. },
  9865. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9866. "$type": "GeneralNodeTitleComponentSaveData",
  9867. "PaletteOverride": "MethodNodeTitlePalette"
  9868. },
  9869. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9870. "$type": "GeometrySaveData",
  9871. "Position": [
  9872. 920.0,
  9873. -280.0
  9874. ]
  9875. },
  9876. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9877. "$type": "StylingComponentSaveData",
  9878. "SubStyle": ".method"
  9879. },
  9880. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9881. "$type": "PersistentIdComponentSaveData",
  9882. "PersistentId": "{CFBFAA16-95D3-41A5-9E31-39B53BD261A8}"
  9883. }
  9884. }
  9885. }
  9886. },
  9887. {
  9888. "Key": {
  9889. "id": 222985086816000
  9890. },
  9891. "Value": {
  9892. "ComponentData": {
  9893. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9894. "$type": "NodeSaveData"
  9895. },
  9896. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9897. "$type": "GeneralNodeTitleComponentSaveData",
  9898. "PaletteOverride": "MethodNodeTitlePalette"
  9899. },
  9900. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9901. "$type": "GeometrySaveData",
  9902. "Position": [
  9903. 960.0,
  9904. -540.0
  9905. ]
  9906. },
  9907. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9908. "$type": "StylingComponentSaveData",
  9909. "SubStyle": ".method"
  9910. },
  9911. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9912. "$type": "PersistentIdComponentSaveData",
  9913. "PersistentId": "{37EDF302-786C-4243-8E32-E733CFC0D8B1}"
  9914. }
  9915. }
  9916. }
  9917. },
  9918. {
  9919. "Key": {
  9920. "id": 222989381783296
  9921. },
  9922. "Value": {
  9923. "ComponentData": {
  9924. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9925. "$type": "NodeSaveData"
  9926. },
  9927. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9928. "$type": "GeneralNodeTitleComponentSaveData",
  9929. "PaletteOverride": "MethodNodeTitlePalette"
  9930. },
  9931. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9932. "$type": "GeometrySaveData",
  9933. "Position": [
  9934. 940.0,
  9935. 780.0
  9936. ]
  9937. },
  9938. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9939. "$type": "StylingComponentSaveData",
  9940. "SubStyle": ".method"
  9941. },
  9942. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9943. "$type": "PersistentIdComponentSaveData",
  9944. "PersistentId": "{D0AE6E98-DB84-40CA-B241-FCC1E5BCE3AF}"
  9945. }
  9946. }
  9947. }
  9948. },
  9949. {
  9950. "Key": {
  9951. "id": 222997971717888
  9952. },
  9953. "Value": {
  9954. "ComponentData": {
  9955. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9956. "$type": "NodeSaveData"
  9957. },
  9958. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9959. "$type": "GeneralNodeTitleComponentSaveData",
  9960. "PaletteOverride": "SetVariableNodeTitlePalette"
  9961. },
  9962. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9963. "$type": "GeometrySaveData",
  9964. "Position": [
  9965. 3880.0,
  9966. -500.0
  9967. ]
  9968. },
  9969. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  9970. "$type": "StylingComponentSaveData",
  9971. "SubStyle": ".setVariable"
  9972. },
  9973. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  9974. "$type": "PersistentIdComponentSaveData",
  9975. "PersistentId": "{EF01FCC5-A4AE-4441-BB37-D043A27BAFDC}"
  9976. }
  9977. }
  9978. }
  9979. },
  9980. {
  9981. "Key": {
  9982. "id": 223002266685184
  9983. },
  9984. "Value": {
  9985. "ComponentData": {
  9986. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  9987. "$type": "NodeSaveData"
  9988. },
  9989. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  9990. "$type": "GeneralNodeTitleComponentSaveData",
  9991. "PaletteOverride": "SetVariableNodeTitlePalette"
  9992. },
  9993. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  9994. "$type": "GeometrySaveData",
  9995. "Position": [
  9996. 1780.0,
  9997. 1220.0
  9998. ]
  9999. },
  10000. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10001. "$type": "StylingComponentSaveData",
  10002. "SubStyle": ".setVariable"
  10003. },
  10004. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10005. "$type": "PersistentIdComponentSaveData",
  10006. "PersistentId": "{D7FB9328-EF14-4184-ABFD-DB84664AA0E4}"
  10007. }
  10008. }
  10009. }
  10010. },
  10011. {
  10012. "Key": {
  10013. "id": 514901129023232
  10014. },
  10015. "Value": {
  10016. "ComponentData": {
  10017. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  10018. "$type": "NodeSaveData"
  10019. },
  10020. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  10021. "$type": "GeneralNodeTitleComponentSaveData",
  10022. "PaletteOverride": "MethodNodeTitlePalette"
  10023. },
  10024. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  10025. "$type": "GeometrySaveData",
  10026. "Position": [
  10027. 1400.0,
  10028. 320.0
  10029. ]
  10030. },
  10031. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  10032. "$type": "StylingComponentSaveData",
  10033. "SubStyle": ".method"
  10034. },
  10035. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  10036. "$type": "PersistentIdComponentSaveData",
  10037. "PersistentId": "{90CF22A6-9711-4305-8E3C-C0E0A061EAF4}"
  10038. }
  10039. }
  10040. }
  10041. }
  10042. ],
  10043. "StatisticsHelper": {
  10044. "InstanceCounter": [
  10045. {
  10046. "Key": 1014541492674260157,
  10047. "Value": 1
  10048. },
  10049. {
  10050. "Key": 1678857419506638996,
  10051. "Value": 1
  10052. },
  10053. {
  10054. "Key": 1678857423393118966,
  10055. "Value": 1
  10056. },
  10057. {
  10058. "Key": 2132390995794010980,
  10059. "Value": 1
  10060. },
  10061. {
  10062. "Key": 3159676911010912707,
  10063. "Value": 1
  10064. },
  10065. {
  10066. "Key": 4847610523576971761,
  10067. "Value": 1
  10068. },
  10069. {
  10070. "Key": 4847907246890790795,
  10071. "Value": 1
  10072. },
  10073. {
  10074. "Key": 4886713421944221695,
  10075. "Value": 1
  10076. },
  10077. {
  10078. "Key": 4901577655475582318,
  10079. "Value": 1
  10080. },
  10081. {
  10082. "Key": 5842116761103598202,
  10083. "Value": 1
  10084. },
  10085. {
  10086. "Key": 6085082255528869526,
  10087. "Value": 2
  10088. },
  10089. {
  10090. "Key": 6462358712820489356,
  10091. "Value": 1
  10092. },
  10093. {
  10094. "Key": 6690812097389395639,
  10095. "Value": 1
  10096. },
  10097. {
  10098. "Key": 8452971738487658154,
  10099. "Value": 2
  10100. },
  10101. {
  10102. "Key": 9017495172405820461,
  10103. "Value": 2
  10104. },
  10105. {
  10106. "Key": 9047579518518996807,
  10107. "Value": 1
  10108. },
  10109. {
  10110. "Key": 9066271935399440459,
  10111. "Value": 1
  10112. },
  10113. {
  10114. "Key": 10147849791392971121,
  10115. "Value": 1
  10116. },
  10117. {
  10118. "Key": 10181512461692697578,
  10119. "Value": 1
  10120. },
  10121. {
  10122. "Key": 12248403024920209459,
  10123. "Value": 1
  10124. },
  10125. {
  10126. "Key": 13489279962427056399,
  10127. "Value": 1
  10128. },
  10129. {
  10130. "Key": 13774516199848960378,
  10131. "Value": 1
  10132. },
  10133. {
  10134. "Key": 13774516392372178953,
  10135. "Value": 7
  10136. },
  10137. {
  10138. "Key": 13774516541610154630,
  10139. "Value": 4
  10140. },
  10141. {
  10142. "Key": 13774516552778950972,
  10143. "Value": 3
  10144. },
  10145. {
  10146. "Key": 13774516554865231594,
  10147. "Value": 3
  10148. },
  10149. {
  10150. "Key": 14935618182048638376,
  10151. "Value": 1
  10152. },
  10153. {
  10154. "Key": 16991695218830492092,
  10155. "Value": 3
  10156. }
  10157. ]
  10158. }
  10159. },
  10160. "Component_[17243129775932809680]": {
  10161. "$type": "EditorGraphVariableManagerComponent",
  10162. "Id": 17243129775932809680,
  10163. "m_variableData": {
  10164. "m_nameVariableMap": [
  10165. {
  10166. "Key": {
  10167. "m_id": "{28F1F092-CCB3-46DD-83DA-2DC0845F1F37}"
  10168. },
  10169. "Value": {
  10170. "Datum": {
  10171. "isOverloadedStorage": false,
  10172. "scriptCanvasType": {
  10173. "m_type": 0
  10174. },
  10175. "isNullPointer": false,
  10176. "$type": "bool",
  10177. "value": false
  10178. },
  10179. "VariableId": {
  10180. "m_id": "{28F1F092-CCB3-46DD-83DA-2DC0845F1F37}"
  10181. },
  10182. "VariableName": "TargetDead"
  10183. }
  10184. },
  10185. {
  10186. "Key": {
  10187. "m_id": "{62ECF824-2489-4C8D-A72B-518A6BDAC63B}"
  10188. },
  10189. "Value": {
  10190. "Datum": {
  10191. "isOverloadedStorage": false,
  10192. "scriptCanvasType": {
  10193. "m_type": 1
  10194. },
  10195. "isNullPointer": false,
  10196. "$type": "EntityId",
  10197. "value": {
  10198. "id": 2901262558
  10199. }
  10200. },
  10201. "VariableId": {
  10202. "m_id": "{62ECF824-2489-4C8D-A72B-518A6BDAC63B}"
  10203. },
  10204. "VariableName": "HouseEntityId"
  10205. }
  10206. },
  10207. {
  10208. "Key": {
  10209. "m_id": "{6D99CBC3-046F-40FE-AED5-A0BDF236E311}"
  10210. },
  10211. "Value": {
  10212. "Datum": {
  10213. "isOverloadedStorage": false,
  10214. "scriptCanvasType": {
  10215. "m_type": 0
  10216. },
  10217. "isNullPointer": false,
  10218. "$type": "bool",
  10219. "value": false
  10220. },
  10221. "VariableId": {
  10222. "m_id": "{6D99CBC3-046F-40FE-AED5-A0BDF236E311}"
  10223. },
  10224. "VariableName": "TargetAlreadyHit"
  10225. }
  10226. },
  10227. {
  10228. "Key": {
  10229. "m_id": "{96D1005F-62AA-493E-977C-BE75523820B7}"
  10230. },
  10231. "Value": {
  10232. "Datum": {
  10233. "isOverloadedStorage": false,
  10234. "scriptCanvasType": {
  10235. "m_type": 1
  10236. },
  10237. "isNullPointer": false,
  10238. "$type": "EntityId",
  10239. "value": {
  10240. "id": 2901262558
  10241. }
  10242. },
  10243. "VariableId": {
  10244. "m_id": "{96D1005F-62AA-493E-977C-BE75523820B7}"
  10245. },
  10246. "VariableName": "HouseDarkEntityId"
  10247. }
  10248. },
  10249. {
  10250. "Key": {
  10251. "m_id": "{AA7BD1D3-F303-4296-8544-231678555D16}"
  10252. },
  10253. "Value": {
  10254. "Datum": {
  10255. "isOverloadedStorage": false,
  10256. "scriptCanvasType": {
  10257. "m_type": 1
  10258. },
  10259. "isNullPointer": false,
  10260. "$type": "EntityId",
  10261. "value": {
  10262. "id": 2901262558
  10263. }
  10264. },
  10265. "VariableId": {
  10266. "m_id": "{AA7BD1D3-F303-4296-8544-231678555D16}"
  10267. },
  10268. "VariableName": "LightColumn"
  10269. }
  10270. }
  10271. ]
  10272. }
  10273. }
  10274. }
  10275. }
  10276. }
  10277. }