NewspaperCannon.scriptcanvas 405 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 254998596813328
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[17867868951914209348]": {
  13. "$type": "EditorGraph",
  14. "Id": 17867868951914209348,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 255080201191952
  20. },
  21. "Name": "SC-Node(SpawnNodeableNode)",
  22. "Components": {
  23. "Component_[10199363125137098258]": {
  24. "$type": "SpawnNodeableNode",
  25. "Id": 10199363125137098258,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{B8654EB1-EE92-48D7-8364-FA0410B40642}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "Request Spawn",
  37. "DisplayGroup": {
  38. "Value": 929942742
  39. },
  40. "Descriptor": {
  41. "ConnectionType": 1,
  42. "SlotType": 1
  43. }
  44. },
  45. {
  46. "id": {
  47. "m_id": "{B463E169-639A-4E41-835A-D6892E1FD5EE}"
  48. },
  49. "contracts": [
  50. {
  51. "$type": "SlotTypeContract"
  52. }
  53. ],
  54. "slotName": "SpawnTicket",
  55. "toolTip": "Ticket instance assosiated with spawnable asset.",
  56. "DisplayGroup": {
  57. "Value": 929942742
  58. },
  59. "Descriptor": {
  60. "ConnectionType": 1,
  61. "SlotType": 2
  62. },
  63. "DataType": 1
  64. },
  65. {
  66. "id": {
  67. "m_id": "{80A4DB17-B5B0-411E-8D9A-0A98014267DD}"
  68. },
  69. "contracts": [
  70. {
  71. "$type": "SlotTypeContract"
  72. }
  73. ],
  74. "slotName": "ParentId",
  75. "toolTip": "Optional parent to assign spawned container entity to.",
  76. "DisplayGroup": {
  77. "Value": 929942742
  78. },
  79. "Descriptor": {
  80. "ConnectionType": 1,
  81. "SlotType": 2
  82. },
  83. "DataType": 1
  84. },
  85. {
  86. "id": {
  87. "m_id": "{25C8EB7E-C441-406F-BBBE-FAC73C259316}"
  88. },
  89. "contracts": [
  90. {
  91. "$type": "SlotTypeContract"
  92. }
  93. ],
  94. "slotName": "Local Translation",
  95. "toolTip": "Position to spawn.",
  96. "DisplayGroup": {
  97. "Value": 929942742
  98. },
  99. "Descriptor": {
  100. "ConnectionType": 1,
  101. "SlotType": 2
  102. },
  103. "DataType": 1
  104. },
  105. {
  106. "id": {
  107. "m_id": "{323A3C53-C08E-46C3-A714-1A0A3D7FE78E}"
  108. },
  109. "contracts": [
  110. {
  111. "$type": "SlotTypeContract"
  112. }
  113. ],
  114. "slotName": "Local Rotation",
  115. "toolTip": "Rotation of spawn (in degrees).",
  116. "DisplayGroup": {
  117. "Value": 929942742
  118. },
  119. "Descriptor": {
  120. "ConnectionType": 1,
  121. "SlotType": 2
  122. },
  123. "DataType": 1
  124. },
  125. {
  126. "id": {
  127. "m_id": "{881E6B85-4A0E-4F40-A0FF-7064F484B44A}"
  128. },
  129. "contracts": [
  130. {
  131. "$type": "SlotTypeContract"
  132. }
  133. ],
  134. "slotName": "Local Scale",
  135. "toolTip": "Scale of spawn.",
  136. "DisplayGroup": {
  137. "Value": 929942742
  138. },
  139. "Descriptor": {
  140. "ConnectionType": 1,
  141. "SlotType": 2
  142. },
  143. "DataType": 1
  144. },
  145. {
  146. "id": {
  147. "m_id": "{55586CAF-E506-4EA1-8EDC-7F99E5CC17B8}"
  148. },
  149. "contracts": [
  150. {
  151. "$type": "SlotTypeContract"
  152. }
  153. ],
  154. "slotName": "Spawn Requested",
  155. "DisplayGroup": {
  156. "Value": 929942742
  157. },
  158. "Descriptor": {
  159. "ConnectionType": 2,
  160. "SlotType": 1
  161. }
  162. },
  163. {
  164. "id": {
  165. "m_id": "{D196636D-D9A6-4734-8714-8E9BD29FD5AF}"
  166. },
  167. "contracts": [
  168. {
  169. "$type": "SlotTypeContract"
  170. }
  171. ],
  172. "slotName": "On Spawn Completed",
  173. "toolTip": "Called when spawning entities is completed.",
  174. "DisplayGroup": {
  175. "Value": 3165055374
  176. },
  177. "Descriptor": {
  178. "ConnectionType": 2,
  179. "SlotType": 1
  180. },
  181. "IsLatent": true
  182. },
  183. {
  184. "id": {
  185. "m_id": "{4A7289D6-6786-44B0-9037-B65573D1B833}"
  186. },
  187. "contracts": [
  188. {
  189. "$type": "SlotTypeContract"
  190. }
  191. ],
  192. "slotName": "SpawnTicketOut",
  193. "toolTip": "Ticket instance of the spawn result.",
  194. "DisplayDataType": {
  195. "m_type": 4,
  196. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  197. },
  198. "DisplayGroup": {
  199. "Value": 3165055374
  200. },
  201. "Descriptor": {
  202. "ConnectionType": 2,
  203. "SlotType": 2
  204. },
  205. "DataType": 1
  206. },
  207. {
  208. "id": {
  209. "m_id": "{55B0FA82-C892-421E-BB86-A51998BDAA46}"
  210. },
  211. "contracts": [
  212. {
  213. "$type": "SlotTypeContract"
  214. }
  215. ],
  216. "slotName": "SpawnedEntitiesList",
  217. "toolTip": "List of spawned entities sorted by hierarchy with the root being first.",
  218. "DisplayDataType": {
  219. "m_type": 4,
  220. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  221. },
  222. "DisplayGroup": {
  223. "Value": 3165055374
  224. },
  225. "Descriptor": {
  226. "ConnectionType": 2,
  227. "SlotType": 2
  228. },
  229. "DataType": 1
  230. }
  231. ],
  232. "Datums": [
  233. {
  234. "scriptCanvasType": {
  235. "m_type": 4,
  236. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  237. },
  238. "isNullPointer": false,
  239. "$type": "AzFramework::EntitySpawnTicket",
  240. "label": "SpawnTicket"
  241. },
  242. {
  243. "scriptCanvasType": {
  244. "m_type": 1
  245. },
  246. "isNullPointer": false,
  247. "$type": "EntityId",
  248. "value": {
  249. "id": 2901262558
  250. },
  251. "label": "ParentId"
  252. },
  253. {
  254. "scriptCanvasType": {
  255. "m_type": 8
  256. },
  257. "isNullPointer": false,
  258. "$type": "Vector3",
  259. "value": [
  260. 0.0,
  261. 0.0,
  262. 0.0
  263. ],
  264. "label": "Local Translation"
  265. },
  266. {
  267. "scriptCanvasType": {
  268. "m_type": 8
  269. },
  270. "isNullPointer": false,
  271. "$type": "Vector3",
  272. "value": [
  273. 0.0,
  274. 0.0,
  275. 0.0
  276. ],
  277. "label": "Local Rotation"
  278. },
  279. {
  280. "scriptCanvasType": {
  281. "m_type": 3
  282. },
  283. "isNullPointer": false,
  284. "$type": "double",
  285. "value": 1.0,
  286. "label": "Local Scale"
  287. }
  288. ],
  289. "slotExecutionMap": {
  290. "ins": [
  291. {
  292. "_slotId": {
  293. "m_id": "{B8654EB1-EE92-48D7-8364-FA0410B40642}"
  294. },
  295. "_inputs": [
  296. {
  297. "_slotId": {
  298. "m_id": "{B463E169-639A-4E41-835A-D6892E1FD5EE}"
  299. }
  300. },
  301. {
  302. "_slotId": {
  303. "m_id": "{80A4DB17-B5B0-411E-8D9A-0A98014267DD}"
  304. }
  305. },
  306. {
  307. "_slotId": {
  308. "m_id": "{25C8EB7E-C441-406F-BBBE-FAC73C259316}"
  309. }
  310. },
  311. {
  312. "_slotId": {
  313. "m_id": "{323A3C53-C08E-46C3-A714-1A0A3D7FE78E}"
  314. }
  315. },
  316. {
  317. "_slotId": {
  318. "m_id": "{881E6B85-4A0E-4F40-A0FF-7064F484B44A}"
  319. }
  320. }
  321. ],
  322. "_outs": [
  323. {
  324. "_slotId": {
  325. "m_id": "{55586CAF-E506-4EA1-8EDC-7F99E5CC17B8}"
  326. },
  327. "_name": "Spawn Requested"
  328. }
  329. ],
  330. "_interfaceSourceId": "{00000000-FF7F-0000-408C-CFECD8000000}"
  331. }
  332. ],
  333. "latents": [
  334. {
  335. "_slotId": {
  336. "m_id": "{D196636D-D9A6-4734-8714-8E9BD29FD5AF}"
  337. },
  338. "_name": "On Spawn Completed",
  339. "_outputs": [
  340. {
  341. "_slotId": {
  342. "m_id": "{4A7289D6-6786-44B0-9037-B65573D1B833}"
  343. }
  344. },
  345. {
  346. "_slotId": {
  347. "m_id": "{55B0FA82-C892-421E-BB86-A51998BDAA46}"
  348. }
  349. }
  350. ],
  351. "_interfaceSourceId": "{00000000-FF7F-0000-408C-CFECD8000000}"
  352. }
  353. ]
  354. }
  355. }
  356. }
  357. },
  358. {
  359. "Id": {
  360. "id": 282254459273744
  361. },
  362. "Name": "SC-Node(TimeDelayNodeableNode)",
  363. "Components": {
  364. "Component_[10524613558224978332]": {
  365. "$type": "TimeDelayNodeableNode",
  366. "Id": 10524613558224978332,
  367. "Slots": [
  368. {
  369. "id": {
  370. "m_id": "{35EF220B-9187-4F3D-945F-4EB24B8CF66F}"
  371. },
  372. "contracts": [
  373. {
  374. "$type": "SlotTypeContract"
  375. }
  376. ],
  377. "slotName": "Start",
  378. "DisplayGroup": {
  379. "Value": 2675529103
  380. },
  381. "Descriptor": {
  382. "ConnectionType": 1,
  383. "SlotType": 1
  384. }
  385. },
  386. {
  387. "id": {
  388. "m_id": "{76ADECDF-4340-4262-931F-47BBA144A56B}"
  389. },
  390. "contracts": [
  391. {
  392. "$type": "SlotTypeContract"
  393. }
  394. ],
  395. "slotName": "Delay",
  396. "toolTip": "The amount of time to delay before the Done is signalled.",
  397. "DisplayGroup": {
  398. "Value": 2675529103
  399. },
  400. "Descriptor": {
  401. "ConnectionType": 1,
  402. "SlotType": 2
  403. },
  404. "DataType": 1
  405. },
  406. {
  407. "id": {
  408. "m_id": "{A8E3EBB1-67D5-484F-B0E4-2CF4BE4E1999}"
  409. },
  410. "contracts": [
  411. {
  412. "$type": "SlotTypeContract"
  413. }
  414. ],
  415. "slotName": "On Start",
  416. "DisplayGroup": {
  417. "Value": 2675529103
  418. },
  419. "Descriptor": {
  420. "ConnectionType": 2,
  421. "SlotType": 1
  422. }
  423. },
  424. {
  425. "id": {
  426. "m_id": "{ED3CB2BB-9F13-42A9-9705-65A2FB23B38D}"
  427. },
  428. "contracts": [
  429. {
  430. "$type": "SlotTypeContract"
  431. }
  432. ],
  433. "slotName": "Done",
  434. "toolTip": "Signaled after waiting for the specified amount of times.",
  435. "DisplayGroup": {
  436. "Value": 271442091
  437. },
  438. "Descriptor": {
  439. "ConnectionType": 2,
  440. "SlotType": 1
  441. },
  442. "IsLatent": true
  443. }
  444. ],
  445. "Datums": [
  446. {
  447. "isOverloadedStorage": false,
  448. "scriptCanvasType": {
  449. "m_type": 3
  450. },
  451. "isNullPointer": false,
  452. "$type": "double",
  453. "value": 0.3,
  454. "label": "Delay"
  455. }
  456. ],
  457. "nodeable": {
  458. "m_timeUnits": 1
  459. },
  460. "slotExecutionMap": {
  461. "ins": [
  462. {
  463. "_slotId": {
  464. "m_id": "{35EF220B-9187-4F3D-945F-4EB24B8CF66F}"
  465. },
  466. "_inputs": [
  467. {
  468. "_slotId": {
  469. "m_id": "{76ADECDF-4340-4262-931F-47BBA144A56B}"
  470. }
  471. }
  472. ],
  473. "_outs": [
  474. {
  475. "_slotId": {
  476. "m_id": "{A8E3EBB1-67D5-484F-B0E4-2CF4BE4E1999}"
  477. },
  478. "_name": "On Start",
  479. "_interfaceSourceId": "{087110E3-6300-0000-0F00-000007000000}"
  480. }
  481. ],
  482. "_interfaceSourceId": "{C86F10E3-6300-0000-0000-000000000000}"
  483. }
  484. ],
  485. "latents": [
  486. {
  487. "_slotId": {
  488. "m_id": "{ED3CB2BB-9F13-42A9-9705-65A2FB23B38D}"
  489. },
  490. "_name": "Done",
  491. "_interfaceSourceId": "{C86F10E3-6300-0000-0000-000000000000}"
  492. }
  493. ]
  494. }
  495. }
  496. }
  497. },
  498. {
  499. "Id": {
  500. "id": 255063021322768
  501. },
  502. "Name": "SC Node(GetVariable)",
  503. "Components": {
  504. "Component_[10609405729793355504]": {
  505. "$type": "GetVariableNode",
  506. "Id": 10609405729793355504,
  507. "Slots": [
  508. {
  509. "id": {
  510. "m_id": "{96280DC8-05A0-405A-86A3-991CDF06E2E5}"
  511. },
  512. "contracts": [
  513. {
  514. "$type": "SlotTypeContract"
  515. }
  516. ],
  517. "slotName": "In",
  518. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  519. "Descriptor": {
  520. "ConnectionType": 1,
  521. "SlotType": 1
  522. }
  523. },
  524. {
  525. "id": {
  526. "m_id": "{7399DE57-4FB1-4A64-9779-CF761EBA2D4A}"
  527. },
  528. "contracts": [
  529. {
  530. "$type": "SlotTypeContract"
  531. }
  532. ],
  533. "slotName": "Out",
  534. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  535. "Descriptor": {
  536. "ConnectionType": 2,
  537. "SlotType": 1
  538. }
  539. },
  540. {
  541. "id": {
  542. "m_id": "{241D7480-EC73-4FA4-A5A8-BD723C963BDD}"
  543. },
  544. "contracts": [
  545. {
  546. "$type": "SlotTypeContract"
  547. }
  548. ],
  549. "slotName": "Array<EntitySpawnTicket>",
  550. "DisplayDataType": {
  551. "m_type": 4,
  552. "m_azType": "{7541F631-BA89-54F3-A6B8-33FF75B60192}"
  553. },
  554. "Descriptor": {
  555. "ConnectionType": 2,
  556. "SlotType": 2
  557. },
  558. "DataType": 1
  559. }
  560. ],
  561. "m_variableId": {
  562. "m_id": "{AC308E4E-E207-4716-BD23-F5157A2C5F74}"
  563. },
  564. "m_variableDataOutSlotId": {
  565. "m_id": "{241D7480-EC73-4FA4-A5A8-BD723C963BDD}"
  566. }
  567. }
  568. }
  569. },
  570. {
  571. "Id": {
  572. "id": 255067316290064
  573. },
  574. "Name": "SC-Node(SetAngularVelocity)",
  575. "Components": {
  576. "Component_[10692499825518386014]": {
  577. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  578. "Id": 10692499825518386014,
  579. "Slots": [
  580. {
  581. "id": {
  582. "m_id": "{71DEEE2C-D378-4D7E-82FF-DC8F7B5A4154}"
  583. },
  584. "contracts": [
  585. {
  586. "$type": "SlotTypeContract"
  587. }
  588. ],
  589. "slotName": "EntityId: 0",
  590. "Descriptor": {
  591. "ConnectionType": 1,
  592. "SlotType": 2
  593. },
  594. "DataType": 1
  595. },
  596. {
  597. "id": {
  598. "m_id": "{7E33DE76-CE0B-4736-B07A-448A5869F780}"
  599. },
  600. "contracts": [
  601. {
  602. "$type": "SlotTypeContract"
  603. }
  604. ],
  605. "slotName": "Vector3: 1",
  606. "Descriptor": {
  607. "ConnectionType": 1,
  608. "SlotType": 2
  609. },
  610. "DataType": 1
  611. },
  612. {
  613. "id": {
  614. "m_id": "{D2BC3C5F-0833-4901-B379-D7312B083A0C}"
  615. },
  616. "contracts": [
  617. {
  618. "$type": "SlotTypeContract"
  619. }
  620. ],
  621. "slotName": "In",
  622. "Descriptor": {
  623. "ConnectionType": 1,
  624. "SlotType": 1
  625. }
  626. },
  627. {
  628. "id": {
  629. "m_id": "{3D2CB53B-FCFC-4E36-905C-73AECAC097CB}"
  630. },
  631. "contracts": [
  632. {
  633. "$type": "SlotTypeContract"
  634. }
  635. ],
  636. "slotName": "Out",
  637. "Descriptor": {
  638. "ConnectionType": 2,
  639. "SlotType": 1
  640. }
  641. }
  642. ],
  643. "Datums": [
  644. {
  645. "scriptCanvasType": {
  646. "m_type": 1
  647. },
  648. "isNullPointer": false,
  649. "$type": "EntityId",
  650. "value": {
  651. "id": 2901262558
  652. },
  653. "label": "Source"
  654. },
  655. {
  656. "scriptCanvasType": {
  657. "m_type": 8
  658. },
  659. "isNullPointer": false,
  660. "$type": "Vector3",
  661. "value": [
  662. 0.0,
  663. 0.0,
  664. 10.0
  665. ],
  666. "label": "Angular Velocity"
  667. }
  668. ],
  669. "methodType": 0,
  670. "methodName": "SetAngularVelocity",
  671. "className": "RigidBodyRequestBus",
  672. "resultSlotIDs": [
  673. {}
  674. ],
  675. "inputSlots": [
  676. {
  677. "m_id": "{71DEEE2C-D378-4D7E-82FF-DC8F7B5A4154}"
  678. },
  679. {
  680. "m_id": "{7E33DE76-CE0B-4736-B07A-448A5869F780}"
  681. }
  682. ],
  683. "prettyClassName": "RigidBodyRequestBus"
  684. }
  685. }
  686. },
  687. {
  688. "Id": {
  689. "id": 297986924478992
  690. },
  691. "Name": "SC Node(SetVariable)",
  692. "Components": {
  693. "Component_[10880918701157338050]": {
  694. "$type": "SetVariableNode",
  695. "Id": 10880918701157338050,
  696. "Slots": [
  697. {
  698. "id": {
  699. "m_id": "{15439539-471F-486B-87EB-6AD344640445}"
  700. },
  701. "contracts": [
  702. {
  703. "$type": "SlotTypeContract"
  704. }
  705. ],
  706. "slotName": "In",
  707. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  708. "Descriptor": {
  709. "ConnectionType": 1,
  710. "SlotType": 1
  711. }
  712. },
  713. {
  714. "id": {
  715. "m_id": "{07414F77-176A-4CA5-AB25-3D64B89AE8DF}"
  716. },
  717. "contracts": [
  718. {
  719. "$type": "SlotTypeContract"
  720. }
  721. ],
  722. "slotName": "Out",
  723. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  724. "Descriptor": {
  725. "ConnectionType": 2,
  726. "SlotType": 1
  727. }
  728. },
  729. {
  730. "id": {
  731. "m_id": "{F590006D-A47A-49DE-ADD7-BADCAB9163AC}"
  732. },
  733. "contracts": [
  734. {
  735. "$type": "SlotTypeContract"
  736. }
  737. ],
  738. "slotName": "Number",
  739. "Descriptor": {
  740. "ConnectionType": 1,
  741. "SlotType": 2
  742. },
  743. "DataType": 1
  744. },
  745. {
  746. "id": {
  747. "m_id": "{876C3518-3A4F-4F60-9217-C66F160CE504}"
  748. },
  749. "contracts": [
  750. {
  751. "$type": "SlotTypeContract"
  752. }
  753. ],
  754. "slotName": "Number",
  755. "DisplayDataType": {
  756. "m_type": 3
  757. },
  758. "Descriptor": {
  759. "ConnectionType": 2,
  760. "SlotType": 2
  761. },
  762. "DataType": 1
  763. }
  764. ],
  765. "Datums": [
  766. {
  767. "isOverloadedStorage": false,
  768. "scriptCanvasType": {
  769. "m_type": 3
  770. },
  771. "isNullPointer": false,
  772. "$type": "double",
  773. "value": 0.0,
  774. "label": "Number"
  775. }
  776. ],
  777. "m_variableId": {
  778. "m_id": "{25EC1417-FF15-47FB-B24C-464CFC7B6200}"
  779. },
  780. "m_variableDataInSlotId": {
  781. "m_id": "{F590006D-A47A-49DE-ADD7-BADCAB9163AC}"
  782. },
  783. "m_variableDataOutSlotId": {
  784. "m_id": "{876C3518-3A4F-4F60-9217-C66F160CE504}"
  785. }
  786. }
  787. }
  788. },
  789. {
  790. "Id": {
  791. "id": 255071611257360
  792. },
  793. "Name": "SC-Node(ScriptCanvas_EntityFunctions_GetEntityForward)",
  794. "Components": {
  795. "Component_[11135250436944321724]": {
  796. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  797. "Id": 11135250436944321724,
  798. "Slots": [
  799. {
  800. "id": {
  801. "m_id": "{7551A275-45CA-44B0-968E-EFD1C992924C}"
  802. },
  803. "contracts": [
  804. {
  805. "$type": "SlotTypeContract"
  806. }
  807. ],
  808. "slotName": "EntityId",
  809. "toolTip": "The entity to apply forward transform.",
  810. "Descriptor": {
  811. "ConnectionType": 1,
  812. "SlotType": 2
  813. },
  814. "DataType": 1
  815. },
  816. {
  817. "id": {
  818. "m_id": "{ADD17CC1-1C63-4333-A6CF-E1C05C9E995A}"
  819. },
  820. "contracts": [
  821. {
  822. "$type": "SlotTypeContract"
  823. }
  824. ],
  825. "slotName": "Scale",
  826. "toolTip": "The scale of forward transform.",
  827. "Descriptor": {
  828. "ConnectionType": 1,
  829. "SlotType": 2
  830. },
  831. "DataType": 1
  832. },
  833. {
  834. "id": {
  835. "m_id": "{446CD1D5-B551-4C72-A96C-24815D5B17E9}"
  836. },
  837. "contracts": [
  838. {
  839. "$type": "SlotTypeContract"
  840. }
  841. ],
  842. "slotName": "In",
  843. "Descriptor": {
  844. "ConnectionType": 1,
  845. "SlotType": 1
  846. }
  847. },
  848. {
  849. "id": {
  850. "m_id": "{A430AE69-2B59-47B4-AC28-415210E57D21}"
  851. },
  852. "contracts": [
  853. {
  854. "$type": "SlotTypeContract"
  855. }
  856. ],
  857. "slotName": "Out",
  858. "Descriptor": {
  859. "ConnectionType": 2,
  860. "SlotType": 1
  861. }
  862. },
  863. {
  864. "id": {
  865. "m_id": "{98C39A2F-CEFA-45A8-BF89-55021F8B8E9B}"
  866. },
  867. "contracts": [
  868. {
  869. "$type": "SlotTypeContract"
  870. }
  871. ],
  872. "slotName": "Vector3",
  873. "DisplayDataType": {
  874. "m_type": 8
  875. },
  876. "Descriptor": {
  877. "ConnectionType": 2,
  878. "SlotType": 2
  879. },
  880. "DataType": 1
  881. }
  882. ],
  883. "Datums": [
  884. {
  885. "scriptCanvasType": {
  886. "m_type": 1
  887. },
  888. "isNullPointer": false,
  889. "$type": "EntityId",
  890. "value": {
  891. "id": 2901262558
  892. },
  893. "label": "Entity Id"
  894. },
  895. {
  896. "scriptCanvasType": {
  897. "m_type": 3
  898. },
  899. "isNullPointer": false,
  900. "$type": "double",
  901. "value": 1.0,
  902. "label": "Scale"
  903. }
  904. ],
  905. "methodType": 1,
  906. "methodName": "ScriptCanvas_EntityFunctions_GetEntityForward",
  907. "resultSlotIDs": [
  908. {}
  909. ],
  910. "inputSlots": [
  911. {
  912. "m_id": "{7551A275-45CA-44B0-968E-EFD1C992924C}"
  913. },
  914. {
  915. "m_id": "{ADD17CC1-1C63-4333-A6CF-E1C05C9E995A}"
  916. }
  917. ],
  918. "prettyClassName": "ScriptCanvas_EntityFunctions_GetEntityForward"
  919. }
  920. }
  921. },
  922. {
  923. "Id": {
  924. "id": 280875774771728
  925. },
  926. "Name": "SC Node(SetVariable)",
  927. "Components": {
  928. "Component_[11642140042497464753]": {
  929. "$type": "SetVariableNode",
  930. "Id": 11642140042497464753,
  931. "Slots": [
  932. {
  933. "id": {
  934. "m_id": "{5C4EC3B3-CFFB-49C6-A1A5-8A3CCA7CD495}"
  935. },
  936. "contracts": [
  937. {
  938. "$type": "SlotTypeContract"
  939. }
  940. ],
  941. "slotName": "In",
  942. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  943. "Descriptor": {
  944. "ConnectionType": 1,
  945. "SlotType": 1
  946. }
  947. },
  948. {
  949. "id": {
  950. "m_id": "{8692B29B-91D5-40C0-AA25-B1B11BA372BE}"
  951. },
  952. "contracts": [
  953. {
  954. "$type": "SlotTypeContract"
  955. }
  956. ],
  957. "slotName": "Out",
  958. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  959. "Descriptor": {
  960. "ConnectionType": 2,
  961. "SlotType": 1
  962. }
  963. },
  964. {
  965. "id": {
  966. "m_id": "{B7CB4053-5A3E-4F5A-AE77-731BE49E9829}"
  967. },
  968. "contracts": [
  969. {
  970. "$type": "SlotTypeContract"
  971. }
  972. ],
  973. "slotName": "Number",
  974. "Descriptor": {
  975. "ConnectionType": 1,
  976. "SlotType": 2
  977. },
  978. "DataType": 1
  979. },
  980. {
  981. "id": {
  982. "m_id": "{2C37E1C6-BD4B-4521-91BA-2FB0DCAA8039}"
  983. },
  984. "contracts": [
  985. {
  986. "$type": "SlotTypeContract"
  987. }
  988. ],
  989. "slotName": "Number",
  990. "DisplayDataType": {
  991. "m_type": 3
  992. },
  993. "Descriptor": {
  994. "ConnectionType": 2,
  995. "SlotType": 2
  996. },
  997. "DataType": 1
  998. }
  999. ],
  1000. "Datums": [
  1001. {
  1002. "isOverloadedStorage": false,
  1003. "scriptCanvasType": {
  1004. "m_type": 3
  1005. },
  1006. "isNullPointer": false,
  1007. "$type": "double",
  1008. "value": 0.0,
  1009. "label": "Number"
  1010. }
  1011. ],
  1012. "m_variableId": {
  1013. "m_id": "{25EC1417-FF15-47FB-B24C-464CFC7B6200}"
  1014. },
  1015. "m_variableDataInSlotId": {
  1016. "m_id": "{B7CB4053-5A3E-4F5A-AE77-731BE49E9829}"
  1017. },
  1018. "m_variableDataOutSlotId": {
  1019. "m_id": "{2C37E1C6-BD4B-4521-91BA-2FB0DCAA8039}"
  1020. }
  1021. }
  1022. }
  1023. },
  1024. {
  1025. "Id": {
  1026. "id": 255084496159248
  1027. },
  1028. "Name": "SC-Node(SetParent)",
  1029. "Components": {
  1030. "Component_[12079039925079725692]": {
  1031. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1032. "Id": 12079039925079725692,
  1033. "Slots": [
  1034. {
  1035. "id": {
  1036. "m_id": "{2B7A4B0E-9A46-415B-B83B-BF841A3E1022}"
  1037. },
  1038. "contracts": [
  1039. {
  1040. "$type": "SlotTypeContract"
  1041. }
  1042. ],
  1043. "slotName": "EntityId: 0",
  1044. "Descriptor": {
  1045. "ConnectionType": 1,
  1046. "SlotType": 2
  1047. },
  1048. "DataType": 1
  1049. },
  1050. {
  1051. "id": {
  1052. "m_id": "{F160B756-D124-42FA-85A8-AB523CBD09F4}"
  1053. },
  1054. "contracts": [
  1055. {
  1056. "$type": "SlotTypeContract"
  1057. }
  1058. ],
  1059. "slotName": "EntityId: 1",
  1060. "Descriptor": {
  1061. "ConnectionType": 1,
  1062. "SlotType": 2
  1063. },
  1064. "DataType": 1
  1065. },
  1066. {
  1067. "id": {
  1068. "m_id": "{121639B9-C10B-49F5-99AE-7C6B457CC770}"
  1069. },
  1070. "contracts": [
  1071. {
  1072. "$type": "SlotTypeContract"
  1073. }
  1074. ],
  1075. "slotName": "In",
  1076. "Descriptor": {
  1077. "ConnectionType": 1,
  1078. "SlotType": 1
  1079. }
  1080. },
  1081. {
  1082. "id": {
  1083. "m_id": "{75602103-C463-4C7B-A466-6EDA8FF0150E}"
  1084. },
  1085. "contracts": [
  1086. {
  1087. "$type": "SlotTypeContract"
  1088. }
  1089. ],
  1090. "slotName": "Out",
  1091. "Descriptor": {
  1092. "ConnectionType": 2,
  1093. "SlotType": 1
  1094. }
  1095. }
  1096. ],
  1097. "Datums": [
  1098. {
  1099. "scriptCanvasType": {
  1100. "m_type": 1
  1101. },
  1102. "isNullPointer": false,
  1103. "$type": "EntityId",
  1104. "value": {
  1105. "id": 2901262558
  1106. },
  1107. "label": "Source"
  1108. },
  1109. {
  1110. "scriptCanvasType": {
  1111. "m_type": 1
  1112. },
  1113. "isNullPointer": false,
  1114. "$type": "EntityId",
  1115. "value": {
  1116. "id": 4294967295
  1117. },
  1118. "label": "Parent"
  1119. }
  1120. ],
  1121. "methodType": 0,
  1122. "methodName": "SetParent",
  1123. "className": "TransformBus",
  1124. "resultSlotIDs": [
  1125. {}
  1126. ],
  1127. "inputSlots": [
  1128. {
  1129. "m_id": "{2B7A4B0E-9A46-415B-B83B-BF841A3E1022}"
  1130. },
  1131. {
  1132. "m_id": "{F160B756-D124-42FA-85A8-AB523CBD09F4}"
  1133. }
  1134. ],
  1135. "prettyClassName": "TransformBus"
  1136. }
  1137. }
  1138. },
  1139. {
  1140. "Id": {
  1141. "id": 277272297210384
  1142. },
  1143. "Name": "SC Node(GetVariable)",
  1144. "Components": {
  1145. "Component_[13288907651460061891]": {
  1146. "$type": "GetVariableNode",
  1147. "Id": 13288907651460061891,
  1148. "Slots": [
  1149. {
  1150. "id": {
  1151. "m_id": "{D7D96EB9-8D92-4255-8F82-FCABF7F86ED4}"
  1152. },
  1153. "contracts": [
  1154. {
  1155. "$type": "SlotTypeContract"
  1156. }
  1157. ],
  1158. "slotName": "In",
  1159. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1160. "Descriptor": {
  1161. "ConnectionType": 1,
  1162. "SlotType": 1
  1163. }
  1164. },
  1165. {
  1166. "id": {
  1167. "m_id": "{6905915D-09BB-46F4-B87C-9545EF578A14}"
  1168. },
  1169. "contracts": [
  1170. {
  1171. "$type": "SlotTypeContract"
  1172. }
  1173. ],
  1174. "slotName": "Out",
  1175. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1176. "Descriptor": {
  1177. "ConnectionType": 2,
  1178. "SlotType": 1
  1179. }
  1180. },
  1181. {
  1182. "id": {
  1183. "m_id": "{25D3FA15-A9D5-45C4-A9F4-BCE41ED00B57}"
  1184. },
  1185. "contracts": [
  1186. {
  1187. "$type": "SlotTypeContract"
  1188. }
  1189. ],
  1190. "slotName": "Number",
  1191. "DisplayDataType": {
  1192. "m_type": 3
  1193. },
  1194. "Descriptor": {
  1195. "ConnectionType": 2,
  1196. "SlotType": 2
  1197. },
  1198. "DataType": 1
  1199. }
  1200. ],
  1201. "m_variableId": {
  1202. "m_id": "{25EC1417-FF15-47FB-B24C-464CFC7B6200}"
  1203. },
  1204. "m_variableDataOutSlotId": {
  1205. "m_id": "{25D3FA15-A9D5-45C4-A9F4-BCE41ED00B57}"
  1206. }
  1207. }
  1208. }
  1209. },
  1210. {
  1211. "Id": {
  1212. "id": 255045841453584
  1213. },
  1214. "Name": "SC-Node(ScriptCanvas_MathRandoms_RandomVector3)",
  1215. "Components": {
  1216. "Component_[13801493045232994681]": {
  1217. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1218. "Id": 13801493045232994681,
  1219. "Slots": [
  1220. {
  1221. "id": {
  1222. "m_id": "{CFB186F2-6B9F-474A-A827-712FB818CF95}"
  1223. },
  1224. "contracts": [
  1225. {
  1226. "$type": "SlotTypeContract"
  1227. }
  1228. ],
  1229. "slotName": "MinValue",
  1230. "Descriptor": {
  1231. "ConnectionType": 1,
  1232. "SlotType": 2
  1233. },
  1234. "DataType": 1
  1235. },
  1236. {
  1237. "id": {
  1238. "m_id": "{92D5F51D-677A-44D2-AA71-66F4DC2B8455}"
  1239. },
  1240. "contracts": [
  1241. {
  1242. "$type": "SlotTypeContract"
  1243. }
  1244. ],
  1245. "slotName": "MaxValue",
  1246. "Descriptor": {
  1247. "ConnectionType": 1,
  1248. "SlotType": 2
  1249. },
  1250. "DataType": 1,
  1251. "IsReference": true,
  1252. "VariableReference": {
  1253. "m_id": "{10643276-266B-4686-ACEE-1219C2B2D229}"
  1254. }
  1255. },
  1256. {
  1257. "id": {
  1258. "m_id": "{1EE85379-C9DE-4E4D-A0B4-2690A1341F2C}"
  1259. },
  1260. "contracts": [
  1261. {
  1262. "$type": "SlotTypeContract"
  1263. }
  1264. ],
  1265. "slotName": "In",
  1266. "Descriptor": {
  1267. "ConnectionType": 1,
  1268. "SlotType": 1
  1269. }
  1270. },
  1271. {
  1272. "id": {
  1273. "m_id": "{4B90E14C-3E43-48DA-B850-146C2841DB42}"
  1274. },
  1275. "contracts": [
  1276. {
  1277. "$type": "SlotTypeContract"
  1278. }
  1279. ],
  1280. "slotName": "Out",
  1281. "Descriptor": {
  1282. "ConnectionType": 2,
  1283. "SlotType": 1
  1284. }
  1285. },
  1286. {
  1287. "id": {
  1288. "m_id": "{A910006C-768D-4BBE-B07F-C4F9FBCE2DC5}"
  1289. },
  1290. "contracts": [
  1291. {
  1292. "$type": "SlotTypeContract"
  1293. }
  1294. ],
  1295. "slotName": "Vector3",
  1296. "DisplayDataType": {
  1297. "m_type": 8
  1298. },
  1299. "Descriptor": {
  1300. "ConnectionType": 2,
  1301. "SlotType": 2
  1302. },
  1303. "DataType": 1
  1304. }
  1305. ],
  1306. "Datums": [
  1307. {
  1308. "scriptCanvasType": {
  1309. "m_type": 8
  1310. },
  1311. "isNullPointer": false,
  1312. "$type": "Vector3",
  1313. "value": [
  1314. 0.0,
  1315. 0.0,
  1316. 0.0
  1317. ],
  1318. "label": "Min Value"
  1319. },
  1320. {
  1321. "scriptCanvasType": {
  1322. "m_type": 8
  1323. },
  1324. "isNullPointer": false,
  1325. "$type": "Vector3",
  1326. "value": [
  1327. 1.0,
  1328. 1.0,
  1329. 1.0
  1330. ],
  1331. "label": "Max Value"
  1332. }
  1333. ],
  1334. "methodType": 1,
  1335. "methodName": "ScriptCanvas_MathRandoms_RandomVector3",
  1336. "resultSlotIDs": [
  1337. {}
  1338. ],
  1339. "inputSlots": [
  1340. {
  1341. "m_id": "{CFB186F2-6B9F-474A-A827-712FB818CF95}"
  1342. },
  1343. {
  1344. "m_id": "{92D5F51D-677A-44D2-AA71-66F4DC2B8455}"
  1345. }
  1346. ],
  1347. "prettyClassName": "ScriptCanvas_MathRandoms_RandomVector3"
  1348. }
  1349. }
  1350. },
  1351. {
  1352. "Id": {
  1353. "id": 255032956551696
  1354. },
  1355. "Name": "SC Node(GetVariable)",
  1356. "Components": {
  1357. "Component_[13889348713196654246]": {
  1358. "$type": "GetVariableNode",
  1359. "Id": 13889348713196654246,
  1360. "Slots": [
  1361. {
  1362. "id": {
  1363. "m_id": "{7B37E667-1F84-4310-A57B-4F5F88164FF3}"
  1364. },
  1365. "contracts": [
  1366. {
  1367. "$type": "SlotTypeContract"
  1368. }
  1369. ],
  1370. "slotName": "In",
  1371. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1372. "Descriptor": {
  1373. "ConnectionType": 1,
  1374. "SlotType": 1
  1375. }
  1376. },
  1377. {
  1378. "id": {
  1379. "m_id": "{A0C58A97-7F66-4C8D-A2C8-36553E5AE368}"
  1380. },
  1381. "contracts": [
  1382. {
  1383. "$type": "SlotTypeContract"
  1384. }
  1385. ],
  1386. "slotName": "Out",
  1387. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1388. "Descriptor": {
  1389. "ConnectionType": 2,
  1390. "SlotType": 1
  1391. }
  1392. },
  1393. {
  1394. "id": {
  1395. "m_id": "{B82CCE09-812B-4793-8990-3EDF915876D8}"
  1396. },
  1397. "contracts": [
  1398. {
  1399. "$type": "SlotTypeContract"
  1400. }
  1401. ],
  1402. "slotName": "Number",
  1403. "DisplayDataType": {
  1404. "m_type": 3
  1405. },
  1406. "Descriptor": {
  1407. "ConnectionType": 2,
  1408. "SlotType": 2
  1409. },
  1410. "DataType": 1
  1411. }
  1412. ],
  1413. "m_variableId": {
  1414. "m_id": "{03DD4919-9BAA-4AA5-B3A4-9921EBB63106}"
  1415. },
  1416. "m_variableDataOutSlotId": {
  1417. "m_id": "{B82CCE09-812B-4793-8990-3EDF915876D8}"
  1418. }
  1419. }
  1420. }
  1421. },
  1422. {
  1423. "Id": {
  1424. "id": 255020071649808
  1425. },
  1426. "Name": "SC-Node(ScriptCanvas_Vector3Functions_MultiplyByNumber)",
  1427. "Components": {
  1428. "Component_[14672927703796223857]": {
  1429. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1430. "Id": 14672927703796223857,
  1431. "Slots": [
  1432. {
  1433. "id": {
  1434. "m_id": "{0682E9B5-0603-41AB-AD37-30A127E4FEA0}"
  1435. },
  1436. "contracts": [
  1437. {
  1438. "$type": "SlotTypeContract"
  1439. }
  1440. ],
  1441. "slotName": "Source",
  1442. "Descriptor": {
  1443. "ConnectionType": 1,
  1444. "SlotType": 2
  1445. },
  1446. "DataType": 1
  1447. },
  1448. {
  1449. "id": {
  1450. "m_id": "{94770329-BB07-4E49-B39B-8F9AEA594682}"
  1451. },
  1452. "contracts": [
  1453. {
  1454. "$type": "SlotTypeContract"
  1455. }
  1456. ],
  1457. "slotName": "Multiplier",
  1458. "Descriptor": {
  1459. "ConnectionType": 1,
  1460. "SlotType": 2
  1461. },
  1462. "DataType": 1
  1463. },
  1464. {
  1465. "id": {
  1466. "m_id": "{A11C9734-B6ED-4056-8006-86318F8FDBF3}"
  1467. },
  1468. "contracts": [
  1469. {
  1470. "$type": "SlotTypeContract"
  1471. }
  1472. ],
  1473. "slotName": "In",
  1474. "Descriptor": {
  1475. "ConnectionType": 1,
  1476. "SlotType": 1
  1477. }
  1478. },
  1479. {
  1480. "id": {
  1481. "m_id": "{2C71EDDD-34B1-4FCC-B3F4-828D5A09E7C3}"
  1482. },
  1483. "contracts": [
  1484. {
  1485. "$type": "SlotTypeContract"
  1486. }
  1487. ],
  1488. "slotName": "Out",
  1489. "Descriptor": {
  1490. "ConnectionType": 2,
  1491. "SlotType": 1
  1492. }
  1493. },
  1494. {
  1495. "id": {
  1496. "m_id": "{DFE0F636-67C1-461F-B5F3-762464AFA0C8}"
  1497. },
  1498. "contracts": [
  1499. {
  1500. "$type": "SlotTypeContract"
  1501. }
  1502. ],
  1503. "slotName": "Vector3",
  1504. "DisplayDataType": {
  1505. "m_type": 8
  1506. },
  1507. "Descriptor": {
  1508. "ConnectionType": 2,
  1509. "SlotType": 2
  1510. },
  1511. "DataType": 1
  1512. }
  1513. ],
  1514. "Datums": [
  1515. {
  1516. "scriptCanvasType": {
  1517. "m_type": 8
  1518. },
  1519. "isNullPointer": false,
  1520. "$type": "Vector3",
  1521. "value": [
  1522. 0.0,
  1523. 0.0,
  1524. 0.0
  1525. ],
  1526. "label": "Source"
  1527. },
  1528. {
  1529. "scriptCanvasType": {
  1530. "m_type": 3
  1531. },
  1532. "isNullPointer": false,
  1533. "$type": "double",
  1534. "value": 30.0,
  1535. "label": "Multiplier"
  1536. }
  1537. ],
  1538. "methodType": 1,
  1539. "methodName": "ScriptCanvas_Vector3Functions_MultiplyByNumber",
  1540. "resultSlotIDs": [
  1541. {}
  1542. ],
  1543. "inputSlots": [
  1544. {
  1545. "m_id": "{0682E9B5-0603-41AB-AD37-30A127E4FEA0}"
  1546. },
  1547. {
  1548. "m_id": "{94770329-BB07-4E49-B39B-8F9AEA594682}"
  1549. }
  1550. ],
  1551. "prettyClassName": "ScriptCanvas_Vector3Functions_MultiplyByNumber"
  1552. }
  1553. }
  1554. },
  1555. {
  1556. "Id": {
  1557. "id": 255024366617104
  1558. },
  1559. "Name": "SC Node(GetVariable)",
  1560. "Components": {
  1561. "Component_[14751496883618220492]": {
  1562. "$type": "GetVariableNode",
  1563. "Id": 14751496883618220492,
  1564. "Slots": [
  1565. {
  1566. "id": {
  1567. "m_id": "{012635D3-D551-4DA5-9219-0929A8E72D61}"
  1568. },
  1569. "contracts": [
  1570. {
  1571. "$type": "SlotTypeContract"
  1572. }
  1573. ],
  1574. "slotName": "In",
  1575. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1576. "Descriptor": {
  1577. "ConnectionType": 1,
  1578. "SlotType": 1
  1579. }
  1580. },
  1581. {
  1582. "id": {
  1583. "m_id": "{539A245D-ABCD-4BAE-8403-E58C5F1D6D91}"
  1584. },
  1585. "contracts": [
  1586. {
  1587. "$type": "SlotTypeContract"
  1588. }
  1589. ],
  1590. "slotName": "Out",
  1591. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1592. "Descriptor": {
  1593. "ConnectionType": 2,
  1594. "SlotType": 1
  1595. }
  1596. },
  1597. {
  1598. "id": {
  1599. "m_id": "{13F34636-0D5A-43C7-8E6C-CF256EBAD20F}"
  1600. },
  1601. "contracts": [
  1602. {
  1603. "$type": "SlotTypeContract"
  1604. }
  1605. ],
  1606. "slotName": "Number",
  1607. "DisplayDataType": {
  1608. "m_type": 3
  1609. },
  1610. "Descriptor": {
  1611. "ConnectionType": 2,
  1612. "SlotType": 2
  1613. },
  1614. "DataType": 1
  1615. }
  1616. ],
  1617. "m_variableId": {
  1618. "m_id": "{B147BE3C-7313-4BBA-A5DC-3D8CBF85C6DF}"
  1619. },
  1620. "m_variableDataOutSlotId": {
  1621. "m_id": "{13F34636-0D5A-43C7-8E6C-CF256EBAD20F}"
  1622. }
  1623. }
  1624. }
  1625. },
  1626. {
  1627. "Id": {
  1628. "id": 291351200006672
  1629. },
  1630. "Name": "SC-Node(Greater)",
  1631. "Components": {
  1632. "Component_[15483926129991862486]": {
  1633. "$type": "Greater",
  1634. "Id": 15483926129991862486,
  1635. "Slots": [
  1636. {
  1637. "id": {
  1638. "m_id": "{D8B3D2B0-7CEB-4A00-B2EA-D3AD183564FD}"
  1639. },
  1640. "contracts": [
  1641. {
  1642. "$type": "SlotTypeContract"
  1643. }
  1644. ],
  1645. "slotName": "Result",
  1646. "DisplayDataType": {
  1647. "m_type": 0
  1648. },
  1649. "Descriptor": {
  1650. "ConnectionType": 2,
  1651. "SlotType": 2
  1652. },
  1653. "DataType": 1
  1654. },
  1655. {
  1656. "id": {
  1657. "m_id": "{749D2525-AE3B-4146-A9A3-0E236D314407}"
  1658. },
  1659. "contracts": [
  1660. {
  1661. "$type": "SlotTypeContract"
  1662. }
  1663. ],
  1664. "slotName": "In",
  1665. "toolTip": "Signal to perform the evaluation when desired.",
  1666. "Descriptor": {
  1667. "ConnectionType": 1,
  1668. "SlotType": 1
  1669. }
  1670. },
  1671. {
  1672. "id": {
  1673. "m_id": "{980FD5FA-27FA-4E43-90EC-31A67C9F3E2B}"
  1674. },
  1675. "contracts": [
  1676. {
  1677. "$type": "SlotTypeContract"
  1678. }
  1679. ],
  1680. "slotName": "True",
  1681. "toolTip": "Signaled if the result of the operation is true.",
  1682. "Descriptor": {
  1683. "ConnectionType": 2,
  1684. "SlotType": 1
  1685. }
  1686. },
  1687. {
  1688. "id": {
  1689. "m_id": "{7460A935-92BB-4293-880B-A7CC41096DB7}"
  1690. },
  1691. "contracts": [
  1692. {
  1693. "$type": "SlotTypeContract"
  1694. }
  1695. ],
  1696. "slotName": "False",
  1697. "toolTip": "Signaled if the result of the operation is false.",
  1698. "Descriptor": {
  1699. "ConnectionType": 2,
  1700. "SlotType": 1
  1701. }
  1702. },
  1703. {
  1704. "id": {
  1705. "m_id": "{EA1490CF-F759-49B9-9A21-1D374E56D6C9}"
  1706. },
  1707. "DynamicTypeOverride": 3,
  1708. "contracts": [
  1709. {
  1710. "$type": "SlotTypeContract"
  1711. }
  1712. ],
  1713. "slotName": "Value A",
  1714. "DisplayDataType": {
  1715. "m_type": 3
  1716. },
  1717. "Descriptor": {
  1718. "ConnectionType": 1,
  1719. "SlotType": 2
  1720. },
  1721. "DynamicGroup": {
  1722. "Value": 3545012108
  1723. },
  1724. "DataType": 1
  1725. },
  1726. {
  1727. "id": {
  1728. "m_id": "{AD9AD360-A781-4505-9E94-A28A51763FF6}"
  1729. },
  1730. "DynamicTypeOverride": 3,
  1731. "contracts": [
  1732. {
  1733. "$type": "SlotTypeContract"
  1734. }
  1735. ],
  1736. "slotName": "Value B",
  1737. "DisplayDataType": {
  1738. "m_type": 3
  1739. },
  1740. "Descriptor": {
  1741. "ConnectionType": 1,
  1742. "SlotType": 2
  1743. },
  1744. "DynamicGroup": {
  1745. "Value": 3545012108
  1746. },
  1747. "DataType": 1
  1748. }
  1749. ],
  1750. "Datums": [
  1751. {
  1752. "isOverloadedStorage": false,
  1753. "scriptCanvasType": {
  1754. "m_type": 3
  1755. },
  1756. "isNullPointer": false,
  1757. "$type": "double",
  1758. "value": 0.0,
  1759. "label": "Value A"
  1760. },
  1761. {
  1762. "isOverloadedStorage": false,
  1763. "scriptCanvasType": {
  1764. "m_type": 3
  1765. },
  1766. "isNullPointer": false,
  1767. "$type": "double",
  1768. "value": 0.0,
  1769. "label": "Value B"
  1770. }
  1771. ]
  1772. }
  1773. }
  1774. },
  1775. {
  1776. "Id": {
  1777. "id": 255075906224656
  1778. },
  1779. "Name": "SC-Node(Greater)",
  1780. "Components": {
  1781. "Component_[15563329655922966497]": {
  1782. "$type": "Greater",
  1783. "Id": 15563329655922966497,
  1784. "Slots": [
  1785. {
  1786. "id": {
  1787. "m_id": "{99F5B034-6835-483B-9B0E-2DC257DEC742}"
  1788. },
  1789. "contracts": [
  1790. {
  1791. "$type": "SlotTypeContract"
  1792. }
  1793. ],
  1794. "slotName": "Result",
  1795. "DisplayDataType": {
  1796. "m_type": 0
  1797. },
  1798. "Descriptor": {
  1799. "ConnectionType": 2,
  1800. "SlotType": 2
  1801. },
  1802. "DataType": 1
  1803. },
  1804. {
  1805. "id": {
  1806. "m_id": "{8F47AF3C-43EC-463F-8042-68797973499E}"
  1807. },
  1808. "contracts": [
  1809. {
  1810. "$type": "SlotTypeContract"
  1811. }
  1812. ],
  1813. "slotName": "In",
  1814. "toolTip": "Signal to perform the evaluation when desired.",
  1815. "Descriptor": {
  1816. "ConnectionType": 1,
  1817. "SlotType": 1
  1818. }
  1819. },
  1820. {
  1821. "id": {
  1822. "m_id": "{C750F15C-058C-47BE-A5FC-A1BDF47C8065}"
  1823. },
  1824. "contracts": [
  1825. {
  1826. "$type": "SlotTypeContract"
  1827. }
  1828. ],
  1829. "slotName": "True",
  1830. "toolTip": "Signaled if the result of the operation is true.",
  1831. "Descriptor": {
  1832. "ConnectionType": 2,
  1833. "SlotType": 1
  1834. }
  1835. },
  1836. {
  1837. "id": {
  1838. "m_id": "{72A47275-4F05-4692-8480-A5EEB4DAD2FE}"
  1839. },
  1840. "contracts": [
  1841. {
  1842. "$type": "SlotTypeContract"
  1843. }
  1844. ],
  1845. "slotName": "False",
  1846. "toolTip": "Signaled if the result of the operation is false.",
  1847. "Descriptor": {
  1848. "ConnectionType": 2,
  1849. "SlotType": 1
  1850. }
  1851. },
  1852. {
  1853. "id": {
  1854. "m_id": "{AE676594-D301-455C-A45E-C81B5FBD2253}"
  1855. },
  1856. "DynamicTypeOverride": 3,
  1857. "contracts": [
  1858. {
  1859. "$type": "SlotTypeContract"
  1860. }
  1861. ],
  1862. "slotName": "Value A",
  1863. "DisplayDataType": {
  1864. "m_type": 3
  1865. },
  1866. "Descriptor": {
  1867. "ConnectionType": 1,
  1868. "SlotType": 2
  1869. },
  1870. "DynamicGroup": {
  1871. "Value": 3545012108
  1872. },
  1873. "DataType": 1
  1874. },
  1875. {
  1876. "id": {
  1877. "m_id": "{54514235-9CBD-4FE0-B25E-C66BC4C8AA2D}"
  1878. },
  1879. "DynamicTypeOverride": 3,
  1880. "contracts": [
  1881. {
  1882. "$type": "SlotTypeContract"
  1883. }
  1884. ],
  1885. "slotName": "Value B",
  1886. "DisplayDataType": {
  1887. "m_type": 3
  1888. },
  1889. "Descriptor": {
  1890. "ConnectionType": 1,
  1891. "SlotType": 2
  1892. },
  1893. "DynamicGroup": {
  1894. "Value": 3545012108
  1895. },
  1896. "DataType": 1
  1897. }
  1898. ],
  1899. "Datums": [
  1900. {
  1901. "scriptCanvasType": {
  1902. "m_type": 3
  1903. },
  1904. "isNullPointer": false,
  1905. "$type": "double",
  1906. "value": 0.0,
  1907. "label": "Value A"
  1908. },
  1909. {
  1910. "scriptCanvasType": {
  1911. "m_type": 3
  1912. },
  1913. "isNullPointer": false,
  1914. "$type": "double",
  1915. "value": 0.0,
  1916. "label": "Value B"
  1917. }
  1918. ]
  1919. }
  1920. }
  1921. },
  1922. {
  1923. "Id": {
  1924. "id": 289517248971280
  1925. },
  1926. "Name": "EBusEventHandler",
  1927. "Components": {
  1928. "Component_[16926777275563957854]": {
  1929. "$type": "EBusEventHandler",
  1930. "Id": 16926777275563957854,
  1931. "Slots": [
  1932. {
  1933. "id": {
  1934. "m_id": "{D199D459-E3BC-4D1C-A0CD-00608A9180FD}"
  1935. },
  1936. "contracts": [
  1937. {
  1938. "$type": "SlotTypeContract"
  1939. }
  1940. ],
  1941. "slotName": "Connect",
  1942. "toolTip": "Connect this event handler to the specified entity.",
  1943. "Descriptor": {
  1944. "ConnectionType": 1,
  1945. "SlotType": 1
  1946. }
  1947. },
  1948. {
  1949. "id": {
  1950. "m_id": "{117E27F9-BF8B-4448-A0DF-8F0CEF826CD2}"
  1951. },
  1952. "contracts": [
  1953. {
  1954. "$type": "SlotTypeContract"
  1955. }
  1956. ],
  1957. "slotName": "Disconnect",
  1958. "toolTip": "Disconnect this event handler.",
  1959. "Descriptor": {
  1960. "ConnectionType": 1,
  1961. "SlotType": 1
  1962. }
  1963. },
  1964. {
  1965. "id": {
  1966. "m_id": "{C6DD3D74-5AC1-48BA-B432-F636E8F2D4D6}"
  1967. },
  1968. "contracts": [
  1969. {
  1970. "$type": "SlotTypeContract"
  1971. }
  1972. ],
  1973. "slotName": "OnConnected",
  1974. "toolTip": "Signaled when a connection has taken place.",
  1975. "Descriptor": {
  1976. "ConnectionType": 2,
  1977. "SlotType": 1
  1978. }
  1979. },
  1980. {
  1981. "id": {
  1982. "m_id": "{E6EFF5C7-486B-40EF-AFB2-FB3CECD1329A}"
  1983. },
  1984. "contracts": [
  1985. {
  1986. "$type": "SlotTypeContract"
  1987. }
  1988. ],
  1989. "slotName": "OnDisconnected",
  1990. "toolTip": "Signaled when this event handler is disconnected.",
  1991. "Descriptor": {
  1992. "ConnectionType": 2,
  1993. "SlotType": 1
  1994. }
  1995. },
  1996. {
  1997. "id": {
  1998. "m_id": "{D7D3C592-82FA-4629-9CBC-602B15BF7D19}"
  1999. },
  2000. "contracts": [
  2001. {
  2002. "$type": "SlotTypeContract"
  2003. }
  2004. ],
  2005. "slotName": "OnFailure",
  2006. "toolTip": "Signaled when it is not possible to connect this handler.",
  2007. "Descriptor": {
  2008. "ConnectionType": 2,
  2009. "SlotType": 1
  2010. }
  2011. },
  2012. {
  2013. "id": {
  2014. "m_id": "{A4015086-211E-4E15-BBFA-1974911EBE15}"
  2015. },
  2016. "contracts": [
  2017. {
  2018. "$type": "SlotTypeContract"
  2019. }
  2020. ],
  2021. "slotName": "Number",
  2022. "DisplayDataType": {
  2023. "m_type": 3
  2024. },
  2025. "Descriptor": {
  2026. "ConnectionType": 2,
  2027. "SlotType": 2
  2028. },
  2029. "DataType": 1
  2030. },
  2031. {
  2032. "id": {
  2033. "m_id": "{25A5DD87-7EEE-416E-8BCB-952CD1B45858}"
  2034. },
  2035. "contracts": [
  2036. {
  2037. "$type": "SlotTypeContract"
  2038. }
  2039. ],
  2040. "slotName": "ScriptTimePoint",
  2041. "DisplayDataType": {
  2042. "m_type": 4,
  2043. "m_azType": "{4C0F6AD4-0D4F-4354-AD4A-0C01E948245C}"
  2044. },
  2045. "Descriptor": {
  2046. "ConnectionType": 2,
  2047. "SlotType": 2
  2048. },
  2049. "DataType": 1
  2050. },
  2051. {
  2052. "id": {
  2053. "m_id": "{25296BEE-3178-4697-8658-480731F6FEA6}"
  2054. },
  2055. "contracts": [
  2056. {
  2057. "$type": "SlotTypeContract"
  2058. }
  2059. ],
  2060. "slotName": "ExecutionSlot:OnTick",
  2061. "Descriptor": {
  2062. "ConnectionType": 2,
  2063. "SlotType": 1
  2064. },
  2065. "IsLatent": true
  2066. },
  2067. {
  2068. "id": {
  2069. "m_id": "{623DA46E-5D5C-409E-BF6A-716D9863BDB9}"
  2070. },
  2071. "contracts": [
  2072. {
  2073. "$type": "SlotTypeContract"
  2074. }
  2075. ],
  2076. "slotName": "Number",
  2077. "Descriptor": {
  2078. "ConnectionType": 1,
  2079. "SlotType": 2
  2080. },
  2081. "DataType": 1
  2082. },
  2083. {
  2084. "id": {
  2085. "m_id": "{BA10BD67-EAA2-487C-B012-FD602518E7FF}"
  2086. },
  2087. "contracts": [
  2088. {
  2089. "$type": "SlotTypeContract"
  2090. }
  2091. ],
  2092. "slotName": "ExecutionSlot:GetTickOrder",
  2093. "Descriptor": {
  2094. "ConnectionType": 2,
  2095. "SlotType": 1
  2096. },
  2097. "IsLatent": true
  2098. }
  2099. ],
  2100. "Datums": [
  2101. {
  2102. "isOverloadedStorage": false,
  2103. "scriptCanvasType": {
  2104. "m_type": 3
  2105. },
  2106. "isNullPointer": false,
  2107. "$type": "double",
  2108. "value": 0.0,
  2109. "label": "Number"
  2110. }
  2111. ],
  2112. "m_eventMap": [
  2113. {
  2114. "Key": {
  2115. "Value": 1502188240
  2116. },
  2117. "Value": {
  2118. "m_eventName": "OnTick",
  2119. "m_eventId": {
  2120. "Value": 1502188240
  2121. },
  2122. "m_eventSlotId": {
  2123. "m_id": "{25296BEE-3178-4697-8658-480731F6FEA6}"
  2124. },
  2125. "m_parameterSlotIds": [
  2126. {
  2127. "m_id": "{A4015086-211E-4E15-BBFA-1974911EBE15}"
  2128. },
  2129. {
  2130. "m_id": "{25A5DD87-7EEE-416E-8BCB-952CD1B45858}"
  2131. }
  2132. ],
  2133. "m_numExpectedArguments": 2
  2134. }
  2135. },
  2136. {
  2137. "Key": {
  2138. "Value": 1890826333
  2139. },
  2140. "Value": {
  2141. "m_eventName": "GetTickOrder",
  2142. "m_eventId": {
  2143. "Value": 1890826333
  2144. },
  2145. "m_eventSlotId": {
  2146. "m_id": "{BA10BD67-EAA2-487C-B012-FD602518E7FF}"
  2147. },
  2148. "m_resultSlotId": {
  2149. "m_id": "{623DA46E-5D5C-409E-BF6A-716D9863BDB9}"
  2150. }
  2151. }
  2152. }
  2153. ],
  2154. "m_ebusName": "TickBus",
  2155. "m_busId": {
  2156. "Value": 1209186864
  2157. }
  2158. }
  2159. }
  2160. },
  2161. {
  2162. "Id": {
  2163. "id": 255011481715216
  2164. },
  2165. "Name": "SC-Node(SetLinearVelocity)",
  2166. "Components": {
  2167. "Component_[17333072406211682909]": {
  2168. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2169. "Id": 17333072406211682909,
  2170. "Slots": [
  2171. {
  2172. "id": {
  2173. "m_id": "{A8C9A911-B680-4B9C-A683-C7760B20E246}"
  2174. },
  2175. "contracts": [
  2176. {
  2177. "$type": "SlotTypeContract"
  2178. }
  2179. ],
  2180. "slotName": "EntityId: 0",
  2181. "Descriptor": {
  2182. "ConnectionType": 1,
  2183. "SlotType": 2
  2184. },
  2185. "DataType": 1
  2186. },
  2187. {
  2188. "id": {
  2189. "m_id": "{278203A5-C39B-407E-91DC-464D010FA07D}"
  2190. },
  2191. "contracts": [
  2192. {
  2193. "$type": "SlotTypeContract"
  2194. }
  2195. ],
  2196. "slotName": "Vector3: 1",
  2197. "Descriptor": {
  2198. "ConnectionType": 1,
  2199. "SlotType": 2
  2200. },
  2201. "DataType": 1
  2202. },
  2203. {
  2204. "id": {
  2205. "m_id": "{9637F59B-B941-4A63-A844-5875A172FB39}"
  2206. },
  2207. "contracts": [
  2208. {
  2209. "$type": "SlotTypeContract"
  2210. }
  2211. ],
  2212. "slotName": "In",
  2213. "Descriptor": {
  2214. "ConnectionType": 1,
  2215. "SlotType": 1
  2216. }
  2217. },
  2218. {
  2219. "id": {
  2220. "m_id": "{8A396A89-5C2D-46C7-96C5-97997A5C8AC7}"
  2221. },
  2222. "contracts": [
  2223. {
  2224. "$type": "SlotTypeContract"
  2225. }
  2226. ],
  2227. "slotName": "Out",
  2228. "Descriptor": {
  2229. "ConnectionType": 2,
  2230. "SlotType": 1
  2231. }
  2232. }
  2233. ],
  2234. "Datums": [
  2235. {
  2236. "scriptCanvasType": {
  2237. "m_type": 1
  2238. },
  2239. "isNullPointer": false,
  2240. "$type": "EntityId",
  2241. "value": {
  2242. "id": 2901262558
  2243. },
  2244. "label": "Source"
  2245. },
  2246. {
  2247. "scriptCanvasType": {
  2248. "m_type": 8
  2249. },
  2250. "isNullPointer": false,
  2251. "$type": "Vector3",
  2252. "value": [
  2253. 0.0,
  2254. 10.0,
  2255. 0.0
  2256. ],
  2257. "label": "Linear Velocity"
  2258. }
  2259. ],
  2260. "methodType": 0,
  2261. "methodName": "SetLinearVelocity",
  2262. "className": "RigidBodyRequestBus",
  2263. "resultSlotIDs": [
  2264. {}
  2265. ],
  2266. "inputSlots": [
  2267. {
  2268. "m_id": "{A8C9A911-B680-4B9C-A683-C7760B20E246}"
  2269. },
  2270. {
  2271. "m_id": "{278203A5-C39B-407E-91DC-464D010FA07D}"
  2272. }
  2273. ],
  2274. "prettyClassName": "RigidBodyRequestBus"
  2275. }
  2276. }
  2277. },
  2278. {
  2279. "Id": {
  2280. "id": 255037251518992
  2281. },
  2282. "Name": "SC Node(GetVariable)",
  2283. "Components": {
  2284. "Component_[178483212562820018]": {
  2285. "$type": "GetVariableNode",
  2286. "Id": 178483212562820018,
  2287. "Slots": [
  2288. {
  2289. "id": {
  2290. "m_id": "{5CEF26F4-4096-4755-BC39-3F12B0D84ABD}"
  2291. },
  2292. "contracts": [
  2293. {
  2294. "$type": "SlotTypeContract"
  2295. }
  2296. ],
  2297. "slotName": "In",
  2298. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2299. "Descriptor": {
  2300. "ConnectionType": 1,
  2301. "SlotType": 1
  2302. }
  2303. },
  2304. {
  2305. "id": {
  2306. "m_id": "{BF2FF3AB-C806-4D3D-A65E-243D30386892}"
  2307. },
  2308. "contracts": [
  2309. {
  2310. "$type": "SlotTypeContract"
  2311. }
  2312. ],
  2313. "slotName": "Out",
  2314. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2315. "Descriptor": {
  2316. "ConnectionType": 2,
  2317. "SlotType": 1
  2318. }
  2319. },
  2320. {
  2321. "id": {
  2322. "m_id": "{08011521-D06A-4A6A-96FB-78C2B0228DDD}"
  2323. },
  2324. "contracts": [
  2325. {
  2326. "$type": "SlotTypeContract"
  2327. }
  2328. ],
  2329. "slotName": "SpawnableScriptAssetRef",
  2330. "DisplayDataType": {
  2331. "m_type": 4,
  2332. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  2333. },
  2334. "Descriptor": {
  2335. "ConnectionType": 2,
  2336. "SlotType": 2
  2337. },
  2338. "DataType": 1
  2339. }
  2340. ],
  2341. "m_variableId": {
  2342. "m_id": "{EEEEC41E-FA18-4EBF-AC0A-19B1A8FEBE42}"
  2343. },
  2344. "m_variableDataOutSlotId": {
  2345. "m_id": "{08011521-D06A-4A6A-96FB-78C2B0228DDD}"
  2346. }
  2347. }
  2348. }
  2349. },
  2350. {
  2351. "Id": {
  2352. "id": 255088791126544
  2353. },
  2354. "Name": "SendScriptEvent",
  2355. "Components": {
  2356. "Component_[18145952387779925459]": {
  2357. "$type": "SendScriptEvent",
  2358. "Id": 18145952387779925459,
  2359. "Slots": [
  2360. {
  2361. "id": {
  2362. "m_id": "{5632492A-EF4F-4F58-8580-DBE4F7B6E791}"
  2363. },
  2364. "contracts": [
  2365. {
  2366. "$type": "SlotTypeContract"
  2367. }
  2368. ],
  2369. "slotName": "In",
  2370. "toolTip": "Fires the specified ScriptEvent when signaled",
  2371. "Descriptor": {
  2372. "ConnectionType": 1,
  2373. "SlotType": 1
  2374. }
  2375. },
  2376. {
  2377. "id": {
  2378. "m_id": "{99838952-8D12-46DE-8596-8F55A20ADAA4}"
  2379. },
  2380. "contracts": [
  2381. {
  2382. "$type": "SlotTypeContract"
  2383. }
  2384. ],
  2385. "slotName": "Out",
  2386. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  2387. "Descriptor": {
  2388. "ConnectionType": 2,
  2389. "SlotType": 1
  2390. }
  2391. },
  2392. {
  2393. "id": {
  2394. "m_id": "{B055FFF8-4AD5-4223-8E4C-A7A032ACC5F2}"
  2395. },
  2396. "contracts": [
  2397. {
  2398. "$type": "SlotTypeContract"
  2399. }
  2400. ],
  2401. "slotName": "Number",
  2402. "DisplayDataType": {
  2403. "m_type": 3
  2404. },
  2405. "Descriptor": {
  2406. "ConnectionType": 2,
  2407. "SlotType": 2
  2408. },
  2409. "DataType": 1
  2410. }
  2411. ],
  2412. "m_version": 11,
  2413. "m_eventSlotMapping": {
  2414. "{C7E99974-D1C0-4108-B731-120AF000060C}": {
  2415. "m_id": "{B055FFF8-4AD5-4223-8E4C-A7A032ACC5F2}"
  2416. }
  2417. },
  2418. "m_scriptEventAssetId": {
  2419. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  2420. },
  2421. "m_asset": {
  2422. "assetId": {
  2423. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  2424. },
  2425. "assetHint": "scriptcanvas/paper_kid_script_events.scriptevents"
  2426. },
  2427. "m_busId": {
  2428. "Value": 1894911424
  2429. },
  2430. "m_eventId": {
  2431. "Value": 2045047473
  2432. }
  2433. }
  2434. }
  2435. },
  2436. {
  2437. "Id": {
  2438. "id": 255002891780624
  2439. },
  2440. "Name": "SC-Node(InputHandlerNodeableNode)",
  2441. "Components": {
  2442. "Component_[18423097184187893578]": {
  2443. "$type": "InputHandlerNodeableNode",
  2444. "Id": 18423097184187893578,
  2445. "Slots": [
  2446. {
  2447. "id": {
  2448. "m_id": "{5D907084-5D49-4851-BCF1-79E101BA0B07}"
  2449. },
  2450. "contracts": [
  2451. {
  2452. "$type": "SlotTypeContract"
  2453. }
  2454. ],
  2455. "slotName": "Connect Event",
  2456. "toolTip": "Connect to input event name as defined in an input binding asset.",
  2457. "DisplayGroup": {
  2458. "Value": 2173756817
  2459. },
  2460. "Descriptor": {
  2461. "ConnectionType": 1,
  2462. "SlotType": 1
  2463. }
  2464. },
  2465. {
  2466. "id": {
  2467. "m_id": "{69B19946-2D38-46D7-A811-020CE86C3086}"
  2468. },
  2469. "contracts": [
  2470. {
  2471. "$type": "SlotTypeContract"
  2472. }
  2473. ],
  2474. "slotName": "Event Name",
  2475. "toolTip": "Event name as defined in an input binding asset. Example 'Fireball'.",
  2476. "DisplayGroup": {
  2477. "Value": 2173756817
  2478. },
  2479. "Descriptor": {
  2480. "ConnectionType": 1,
  2481. "SlotType": 2
  2482. },
  2483. "DataType": 1
  2484. },
  2485. {
  2486. "id": {
  2487. "m_id": "{8A798D01-6F34-49F8-8D3C-51433BAF03D7}"
  2488. },
  2489. "contracts": [
  2490. {
  2491. "$type": "SlotTypeContract"
  2492. }
  2493. ],
  2494. "slotName": "On Connect Event",
  2495. "toolTip": "Connect to input event name as defined in an input binding asset.",
  2496. "DisplayGroup": {
  2497. "Value": 2173756817
  2498. },
  2499. "Descriptor": {
  2500. "ConnectionType": 2,
  2501. "SlotType": 1
  2502. }
  2503. },
  2504. {
  2505. "id": {
  2506. "m_id": "{CEFA77F0-A8B5-46F7-90FE-B4EB5EEF6390}"
  2507. },
  2508. "contracts": [
  2509. {
  2510. "$type": "SlotTypeContract"
  2511. }
  2512. ],
  2513. "slotName": "Pressed",
  2514. "toolTip": "Signaled when the input event begins.",
  2515. "DisplayGroup": {
  2516. "Value": 458537082
  2517. },
  2518. "Descriptor": {
  2519. "ConnectionType": 2,
  2520. "SlotType": 1
  2521. },
  2522. "IsLatent": true
  2523. },
  2524. {
  2525. "id": {
  2526. "m_id": "{7362FEA3-342E-4592-BE6C-BCCEB7FC2FD3}"
  2527. },
  2528. "contracts": [
  2529. {
  2530. "$type": "SlotTypeContract"
  2531. }
  2532. ],
  2533. "slotName": "value",
  2534. "DisplayDataType": {
  2535. "m_type": 3
  2536. },
  2537. "DisplayGroup": {
  2538. "Value": 458537082
  2539. },
  2540. "Descriptor": {
  2541. "ConnectionType": 2,
  2542. "SlotType": 2
  2543. },
  2544. "DataType": 1
  2545. },
  2546. {
  2547. "id": {
  2548. "m_id": "{4D0B5D89-6A91-44EB-AC1D-76FF54357EF6}"
  2549. },
  2550. "contracts": [
  2551. {
  2552. "$type": "SlotTypeContract"
  2553. }
  2554. ],
  2555. "slotName": "Held",
  2556. "toolTip": "Signaled while the input event is active.",
  2557. "DisplayGroup": {
  2558. "Value": 308119761
  2559. },
  2560. "Descriptor": {
  2561. "ConnectionType": 2,
  2562. "SlotType": 1
  2563. },
  2564. "IsLatent": true
  2565. },
  2566. {
  2567. "id": {
  2568. "m_id": "{EA10400B-3DD8-4B1F-B589-35141105E9FD}"
  2569. },
  2570. "contracts": [
  2571. {
  2572. "$type": "SlotTypeContract"
  2573. }
  2574. ],
  2575. "slotName": "Released",
  2576. "toolTip": "Signaled when the input event ends.",
  2577. "DisplayGroup": {
  2578. "Value": 4215628054
  2579. },
  2580. "Descriptor": {
  2581. "ConnectionType": 2,
  2582. "SlotType": 1
  2583. },
  2584. "IsLatent": true
  2585. }
  2586. ],
  2587. "Datums": [
  2588. {
  2589. "scriptCanvasType": {
  2590. "m_type": 5
  2591. },
  2592. "isNullPointer": false,
  2593. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2594. "value": "ThrowNewspaper",
  2595. "label": "Event Name"
  2596. }
  2597. ],
  2598. "slotExecutionMap": {
  2599. "ins": [
  2600. {
  2601. "_slotId": {
  2602. "m_id": "{5D907084-5D49-4851-BCF1-79E101BA0B07}"
  2603. },
  2604. "_inputs": [
  2605. {
  2606. "_slotId": {
  2607. "m_id": "{69B19946-2D38-46D7-A811-020CE86C3086}"
  2608. }
  2609. }
  2610. ],
  2611. "_outs": [
  2612. {
  2613. "_slotId": {
  2614. "m_id": "{8A798D01-6F34-49F8-8D3C-51433BAF03D7}"
  2615. },
  2616. "_name": "On Connect Event",
  2617. "_interfaceSourceId": "{208CCFEC-D800-0000-208C-CFECD8000000}"
  2618. }
  2619. ],
  2620. "_interfaceSourceId": "{20000000-0000-0000-F0CA-10BFB5020000}"
  2621. }
  2622. ],
  2623. "latents": [
  2624. {
  2625. "_slotId": {
  2626. "m_id": "{CEFA77F0-A8B5-46F7-90FE-B4EB5EEF6390}"
  2627. },
  2628. "_name": "Pressed",
  2629. "_outputs": [
  2630. {
  2631. "_slotId": {
  2632. "m_id": "{7362FEA3-342E-4592-BE6C-BCCEB7FC2FD3}"
  2633. }
  2634. }
  2635. ],
  2636. "_interfaceSourceId": "{20000000-0000-0000-F0CA-10BFB5020000}"
  2637. },
  2638. {
  2639. "_slotId": {
  2640. "m_id": "{4D0B5D89-6A91-44EB-AC1D-76FF54357EF6}"
  2641. },
  2642. "_name": "Held",
  2643. "_outputs": [
  2644. {
  2645. "_slotId": {
  2646. "m_id": "{7362FEA3-342E-4592-BE6C-BCCEB7FC2FD3}"
  2647. }
  2648. }
  2649. ],
  2650. "_interfaceSourceId": "{20000000-0000-0000-F0CA-10BFB5020000}"
  2651. },
  2652. {
  2653. "_slotId": {
  2654. "m_id": "{EA10400B-3DD8-4B1F-B589-35141105E9FD}"
  2655. },
  2656. "_name": "Released",
  2657. "_outputs": [
  2658. {
  2659. "_slotId": {
  2660. "m_id": "{7362FEA3-342E-4592-BE6C-BCCEB7FC2FD3}"
  2661. }
  2662. }
  2663. ],
  2664. "_interfaceSourceId": "{20000000-0000-0000-F0CA-10BFB5020000}"
  2665. }
  2666. ]
  2667. }
  2668. }
  2669. }
  2670. },
  2671. {
  2672. "Id": {
  2673. "id": 255041546486288
  2674. },
  2675. "Name": "SC-Node(Start)",
  2676. "Components": {
  2677. "Component_[2362954195286854965]": {
  2678. "$type": "Start",
  2679. "Id": 2362954195286854965,
  2680. "Slots": [
  2681. {
  2682. "id": {
  2683. "m_id": "{C8D028B8-7D44-4880-8FB1-A0FCE8FB3048}"
  2684. },
  2685. "contracts": [
  2686. {
  2687. "$type": "SlotTypeContract"
  2688. }
  2689. ],
  2690. "slotName": "Out",
  2691. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  2692. "Descriptor": {
  2693. "ConnectionType": 2,
  2694. "SlotType": 1
  2695. }
  2696. }
  2697. ]
  2698. }
  2699. }
  2700. },
  2701. {
  2702. "Id": {
  2703. "id": 255050136420880
  2704. },
  2705. "Name": "SC-Node(Get Element)",
  2706. "Components": {
  2707. "Component_[2563498641706631097]": {
  2708. "$type": "MethodOverloaded",
  2709. "Id": 2563498641706631097,
  2710. "Slots": [
  2711. {
  2712. "id": {
  2713. "m_id": "{6CAB4F10-79C6-4919-9BC8-17D48E4E4764}"
  2714. },
  2715. "DynamicTypeOverride": 2,
  2716. "contracts": [
  2717. {
  2718. "$type": "SlotTypeContract"
  2719. },
  2720. {
  2721. "$type": "OverloadContract"
  2722. }
  2723. ],
  2724. "slotName": "Container",
  2725. "toolTip": "The container to get element from",
  2726. "DisplayDataType": {
  2727. "m_type": 4,
  2728. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2729. },
  2730. "Descriptor": {
  2731. "ConnectionType": 1,
  2732. "SlotType": 2
  2733. },
  2734. "DataType": 1
  2735. },
  2736. {
  2737. "id": {
  2738. "m_id": "{4A1B361F-C8D8-448A-9EE0-5C03A2688402}"
  2739. },
  2740. "DynamicTypeOverride": 1,
  2741. "contracts": [
  2742. {
  2743. "$type": "SlotTypeContract"
  2744. },
  2745. {
  2746. "$type": "OverloadContract"
  2747. }
  2748. ],
  2749. "slotName": "Index",
  2750. "toolTip": "The index to read from",
  2751. "DisplayDataType": {
  2752. "m_type": 3
  2753. },
  2754. "Descriptor": {
  2755. "ConnectionType": 1,
  2756. "SlotType": 2
  2757. },
  2758. "DataType": 1
  2759. },
  2760. {
  2761. "id": {
  2762. "m_id": "{4EBF2418-983E-4557-88D2-9F0754E1CCD8}"
  2763. },
  2764. "contracts": [
  2765. {
  2766. "$type": "SlotTypeContract"
  2767. }
  2768. ],
  2769. "slotName": "In",
  2770. "Descriptor": {
  2771. "ConnectionType": 1,
  2772. "SlotType": 1
  2773. }
  2774. },
  2775. {
  2776. "id": {
  2777. "m_id": "{9A259265-740F-4401-810A-4C5547646277}"
  2778. },
  2779. "contracts": [
  2780. {
  2781. "$type": "SlotTypeContract"
  2782. }
  2783. ],
  2784. "slotName": "Out",
  2785. "Descriptor": {
  2786. "ConnectionType": 2,
  2787. "SlotType": 1
  2788. }
  2789. },
  2790. {
  2791. "id": {
  2792. "m_id": "{6583CE47-326C-4658-B99B-CD60F2FF5DD9}"
  2793. },
  2794. "contracts": [
  2795. {
  2796. "$type": "SlotTypeContract"
  2797. }
  2798. ],
  2799. "slotName": "Key Not Found",
  2800. "Descriptor": {
  2801. "ConnectionType": 2,
  2802. "SlotType": 1
  2803. }
  2804. },
  2805. {
  2806. "id": {
  2807. "m_id": "{D3938451-E714-4365-8AC4-07996C5A2D83}"
  2808. },
  2809. "DynamicTypeOverride": 3,
  2810. "contracts": [
  2811. {
  2812. "$type": "SlotTypeContract"
  2813. },
  2814. {
  2815. "$type": "OverloadContract"
  2816. }
  2817. ],
  2818. "slotName": "Value",
  2819. "DisplayDataType": {
  2820. "m_type": 1
  2821. },
  2822. "Descriptor": {
  2823. "ConnectionType": 2,
  2824. "SlotType": 2
  2825. },
  2826. "DataType": 1
  2827. }
  2828. ],
  2829. "Datums": [
  2830. {
  2831. "scriptCanvasType": {
  2832. "m_type": 4,
  2833. "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
  2834. },
  2835. "isNullPointer": false,
  2836. "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector<EntityId, allocator>",
  2837. "label": "Container"
  2838. },
  2839. {
  2840. "scriptCanvasType": {
  2841. "m_type": 3
  2842. },
  2843. "isNullPointer": false,
  2844. "$type": "double",
  2845. "value": 1.0,
  2846. "label": "Index"
  2847. }
  2848. ],
  2849. "methodType": 2,
  2850. "methodName": "Get Element",
  2851. "className": "AZStd::vector<EntityId, allocator>",
  2852. "inputSlots": [
  2853. {
  2854. "m_id": "{6CAB4F10-79C6-4919-9BC8-17D48E4E4764}"
  2855. },
  2856. {
  2857. "m_id": "{4A1B361F-C8D8-448A-9EE0-5C03A2688402}"
  2858. }
  2859. ],
  2860. "orderedInputSlotIds": [
  2861. {
  2862. "m_id": "{6CAB4F10-79C6-4919-9BC8-17D48E4E4764}"
  2863. },
  2864. {
  2865. "m_id": "{4A1B361F-C8D8-448A-9EE0-5C03A2688402}"
  2866. }
  2867. ],
  2868. "outputSlotIds": [
  2869. {
  2870. "m_id": "{D3938451-E714-4365-8AC4-07996C5A2D83}"
  2871. }
  2872. ]
  2873. }
  2874. }
  2875. },
  2876. {
  2877. "Id": {
  2878. "id": 255015776682512
  2879. },
  2880. "Name": "SendScriptEvent",
  2881. "Components": {
  2882. "Component_[431469649207617312]": {
  2883. "$type": "SendScriptEvent",
  2884. "Id": 431469649207617312,
  2885. "Slots": [
  2886. {
  2887. "id": {
  2888. "m_id": "{F29FF666-DDD1-4BFF-9028-BC8501E5C181}"
  2889. },
  2890. "contracts": [
  2891. {
  2892. "$type": "SlotTypeContract"
  2893. }
  2894. ],
  2895. "slotName": "In",
  2896. "toolTip": "Fires the specified ScriptEvent when signaled",
  2897. "Descriptor": {
  2898. "ConnectionType": 1,
  2899. "SlotType": 1
  2900. }
  2901. },
  2902. {
  2903. "id": {
  2904. "m_id": "{6E94C60A-CD7A-460F-B416-709618C46C72}"
  2905. },
  2906. "contracts": [
  2907. {
  2908. "$type": "SlotTypeContract"
  2909. }
  2910. ],
  2911. "slotName": "Out",
  2912. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  2913. "Descriptor": {
  2914. "ConnectionType": 2,
  2915. "SlotType": 1
  2916. }
  2917. }
  2918. ],
  2919. "m_version": 11,
  2920. "m_scriptEventAssetId": {
  2921. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  2922. },
  2923. "m_asset": {
  2924. "assetId": {
  2925. "guid": "{192B5ACD-AA8B-5097-A03F-8F25DC7733CE}"
  2926. },
  2927. "assetHint": "scriptcanvas/paper_kid_script_events.scriptevents"
  2928. },
  2929. "m_busId": {
  2930. "Value": 1894911424
  2931. },
  2932. "m_eventId": {
  2933. "Value": 949996825
  2934. }
  2935. }
  2936. }
  2937. },
  2938. {
  2939. "Id": {
  2940. "id": 279406895956496
  2941. },
  2942. "Name": "SC Node(GetVariable)",
  2943. "Components": {
  2944. "Component_[4563479719733644121]": {
  2945. "$type": "GetVariableNode",
  2946. "Id": 4563479719733644121,
  2947. "Slots": [
  2948. {
  2949. "id": {
  2950. "m_id": "{3FEDD2D0-55EE-4AE2-ADA9-92EF35F5F830}"
  2951. },
  2952. "contracts": [
  2953. {
  2954. "$type": "SlotTypeContract"
  2955. }
  2956. ],
  2957. "slotName": "In",
  2958. "toolTip": "When signaled sends the property 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": "{A058CAC6-C2F3-42EB-B01A-3197F5C9E7AD}"
  2967. },
  2968. "contracts": [
  2969. {
  2970. "$type": "SlotTypeContract"
  2971. }
  2972. ],
  2973. "slotName": "Out",
  2974. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2975. "Descriptor": {
  2976. "ConnectionType": 2,
  2977. "SlotType": 1
  2978. }
  2979. },
  2980. {
  2981. "id": {
  2982. "m_id": "{F4DB3837-0AF6-4E04-808F-052895DF8EC2}"
  2983. },
  2984. "contracts": [
  2985. {
  2986. "$type": "SlotTypeContract"
  2987. }
  2988. ],
  2989. "slotName": "Number",
  2990. "DisplayDataType": {
  2991. "m_type": 3
  2992. },
  2993. "Descriptor": {
  2994. "ConnectionType": 2,
  2995. "SlotType": 2
  2996. },
  2997. "DataType": 1
  2998. }
  2999. ],
  3000. "m_variableId": {
  3001. "m_id": "{9A1C84BD-EDC2-4979-8D23-900992DA40F6}"
  3002. },
  3003. "m_variableDataOutSlotId": {
  3004. "m_id": "{F4DB3837-0AF6-4E04-808F-052895DF8EC2}"
  3005. }
  3006. }
  3007. }
  3008. },
  3009. {
  3010. "Id": {
  3011. "id": 294731339268624
  3012. },
  3013. "Name": "SC-Node(OperatorSub)",
  3014. "Components": {
  3015. "Component_[582930373948450408]": {
  3016. "$type": "OperatorSub",
  3017. "Id": 582930373948450408,
  3018. "Slots": [
  3019. {
  3020. "id": {
  3021. "m_id": "{8FCABB8D-822C-4792-A372-A357FB2277B5}"
  3022. },
  3023. "contracts": [
  3024. {
  3025. "$type": "SlotTypeContract"
  3026. }
  3027. ],
  3028. "slotName": "In",
  3029. "Descriptor": {
  3030. "ConnectionType": 1,
  3031. "SlotType": 1
  3032. }
  3033. },
  3034. {
  3035. "id": {
  3036. "m_id": "{A95E1BE4-5254-4FCD-A759-0682102E30F1}"
  3037. },
  3038. "contracts": [
  3039. {
  3040. "$type": "SlotTypeContract"
  3041. }
  3042. ],
  3043. "slotName": "Out",
  3044. "Descriptor": {
  3045. "ConnectionType": 2,
  3046. "SlotType": 1
  3047. }
  3048. },
  3049. {
  3050. "id": {
  3051. "m_id": "{66A4FFF9-ABF6-4139-BC02-C5D45E6A327C}"
  3052. },
  3053. "DynamicTypeOverride": 3,
  3054. "contracts": [
  3055. {
  3056. "$type": "SlotTypeContract"
  3057. },
  3058. {
  3059. "$type": "MathOperatorContract",
  3060. "NativeTypes": [
  3061. {
  3062. "m_type": 3
  3063. },
  3064. {
  3065. "m_type": 8
  3066. },
  3067. {
  3068. "m_type": 9
  3069. },
  3070. {
  3071. "m_type": 10
  3072. },
  3073. {
  3074. "m_type": 12
  3075. },
  3076. {
  3077. "m_type": 14
  3078. },
  3079. {
  3080. "m_type": 15
  3081. }
  3082. ]
  3083. }
  3084. ],
  3085. "slotName": "Number 0",
  3086. "toolTip": "An operand to use in performing the specified Operation",
  3087. "DisplayDataType": {
  3088. "m_type": 3
  3089. },
  3090. "DisplayGroup": {
  3091. "Value": 1114760223
  3092. },
  3093. "Descriptor": {
  3094. "ConnectionType": 1,
  3095. "SlotType": 2
  3096. },
  3097. "DynamicGroup": {
  3098. "Value": 1114760223
  3099. },
  3100. "DataType": 1
  3101. },
  3102. {
  3103. "id": {
  3104. "m_id": "{EAF8B354-0B3B-4528-B042-95A743B22395}"
  3105. },
  3106. "DynamicTypeOverride": 3,
  3107. "contracts": [
  3108. {
  3109. "$type": "SlotTypeContract"
  3110. },
  3111. {
  3112. "$type": "MathOperatorContract",
  3113. "NativeTypes": [
  3114. {
  3115. "m_type": 3
  3116. },
  3117. {
  3118. "m_type": 8
  3119. },
  3120. {
  3121. "m_type": 9
  3122. },
  3123. {
  3124. "m_type": 10
  3125. },
  3126. {
  3127. "m_type": 12
  3128. },
  3129. {
  3130. "m_type": 14
  3131. },
  3132. {
  3133. "m_type": 15
  3134. }
  3135. ]
  3136. }
  3137. ],
  3138. "slotName": "Number 1",
  3139. "toolTip": "An operand to use in performing the specified Operation",
  3140. "DisplayDataType": {
  3141. "m_type": 3
  3142. },
  3143. "DisplayGroup": {
  3144. "Value": 1114760223
  3145. },
  3146. "Descriptor": {
  3147. "ConnectionType": 1,
  3148. "SlotType": 2
  3149. },
  3150. "DynamicGroup": {
  3151. "Value": 1114760223
  3152. },
  3153. "DataType": 1
  3154. },
  3155. {
  3156. "id": {
  3157. "m_id": "{02CA57DB-E608-4A17-B7B3-665A3A8B16FC}"
  3158. },
  3159. "DynamicTypeOverride": 3,
  3160. "contracts": [
  3161. {
  3162. "$type": "SlotTypeContract"
  3163. },
  3164. {
  3165. "$type": "MathOperatorContract",
  3166. "NativeTypes": [
  3167. {
  3168. "m_type": 3
  3169. },
  3170. {
  3171. "m_type": 8
  3172. },
  3173. {
  3174. "m_type": 9
  3175. },
  3176. {
  3177. "m_type": 10
  3178. },
  3179. {
  3180. "m_type": 12
  3181. },
  3182. {
  3183. "m_type": 14
  3184. },
  3185. {
  3186. "m_type": 15
  3187. }
  3188. ]
  3189. }
  3190. ],
  3191. "slotName": "Result",
  3192. "toolTip": "The result of the specified operation",
  3193. "DisplayDataType": {
  3194. "m_type": 3
  3195. },
  3196. "DisplayGroup": {
  3197. "Value": 1114760223
  3198. },
  3199. "Descriptor": {
  3200. "ConnectionType": 2,
  3201. "SlotType": 2
  3202. },
  3203. "DynamicGroup": {
  3204. "Value": 1114760223
  3205. },
  3206. "DataType": 1
  3207. }
  3208. ],
  3209. "Datums": [
  3210. {
  3211. "isOverloadedStorage": false,
  3212. "scriptCanvasType": {
  3213. "m_type": 3
  3214. },
  3215. "isNullPointer": false,
  3216. "$type": "double",
  3217. "value": 0.0,
  3218. "label": "Number 0"
  3219. },
  3220. {
  3221. "isOverloadedStorage": false,
  3222. "scriptCanvasType": {
  3223. "m_type": 3
  3224. },
  3225. "isNullPointer": false,
  3226. "$type": "double",
  3227. "value": 0.0,
  3228. "label": "Number 1"
  3229. }
  3230. ]
  3231. }
  3232. }
  3233. },
  3234. {
  3235. "Id": {
  3236. "id": 274974489707024
  3237. },
  3238. "Name": "SC-Node(LessEqual)",
  3239. "Components": {
  3240. "Component_[58414036167108092]": {
  3241. "$type": "LessEqual",
  3242. "Id": 58414036167108092,
  3243. "Slots": [
  3244. {
  3245. "id": {
  3246. "m_id": "{42DDADC8-3B6C-422C-87C7-FC341A16AE90}"
  3247. },
  3248. "contracts": [
  3249. {
  3250. "$type": "SlotTypeContract"
  3251. }
  3252. ],
  3253. "slotName": "Result",
  3254. "DisplayDataType": {
  3255. "m_type": 0
  3256. },
  3257. "Descriptor": {
  3258. "ConnectionType": 2,
  3259. "SlotType": 2
  3260. },
  3261. "DataType": 1
  3262. },
  3263. {
  3264. "id": {
  3265. "m_id": "{041B18E0-1A20-4C56-A655-CB1E9697C88B}"
  3266. },
  3267. "contracts": [
  3268. {
  3269. "$type": "SlotTypeContract"
  3270. }
  3271. ],
  3272. "slotName": "In",
  3273. "toolTip": "Signal to perform the evaluation when desired.",
  3274. "Descriptor": {
  3275. "ConnectionType": 1,
  3276. "SlotType": 1
  3277. }
  3278. },
  3279. {
  3280. "id": {
  3281. "m_id": "{06B9DF3D-511F-4115-9856-6487218BEDB1}"
  3282. },
  3283. "contracts": [
  3284. {
  3285. "$type": "SlotTypeContract"
  3286. }
  3287. ],
  3288. "slotName": "True",
  3289. "toolTip": "Signaled if the result of the operation is true.",
  3290. "Descriptor": {
  3291. "ConnectionType": 2,
  3292. "SlotType": 1
  3293. }
  3294. },
  3295. {
  3296. "id": {
  3297. "m_id": "{DBAA43F8-A542-4127-B569-4831C78CB2B9}"
  3298. },
  3299. "contracts": [
  3300. {
  3301. "$type": "SlotTypeContract"
  3302. }
  3303. ],
  3304. "slotName": "False",
  3305. "toolTip": "Signaled if the result of the operation is false.",
  3306. "Descriptor": {
  3307. "ConnectionType": 2,
  3308. "SlotType": 1
  3309. }
  3310. },
  3311. {
  3312. "id": {
  3313. "m_id": "{702457C3-F94C-463B-9BE7-D65A34BE1CD4}"
  3314. },
  3315. "DynamicTypeOverride": 3,
  3316. "contracts": [
  3317. {
  3318. "$type": "SlotTypeContract"
  3319. }
  3320. ],
  3321. "slotName": "Value A",
  3322. "DisplayDataType": {
  3323. "m_type": 3
  3324. },
  3325. "Descriptor": {
  3326. "ConnectionType": 1,
  3327. "SlotType": 2
  3328. },
  3329. "DynamicGroup": {
  3330. "Value": 3545012108
  3331. },
  3332. "DataType": 1
  3333. },
  3334. {
  3335. "id": {
  3336. "m_id": "{1AF1B42E-DF4D-4650-BBA3-36E84790E3B0}"
  3337. },
  3338. "DynamicTypeOverride": 3,
  3339. "contracts": [
  3340. {
  3341. "$type": "SlotTypeContract"
  3342. }
  3343. ],
  3344. "slotName": "Value B",
  3345. "DisplayDataType": {
  3346. "m_type": 3
  3347. },
  3348. "Descriptor": {
  3349. "ConnectionType": 1,
  3350. "SlotType": 2
  3351. },
  3352. "DynamicGroup": {
  3353. "Value": 3545012108
  3354. },
  3355. "DataType": 1
  3356. }
  3357. ],
  3358. "Datums": [
  3359. {
  3360. "isOverloadedStorage": false,
  3361. "scriptCanvasType": {
  3362. "m_type": 3
  3363. },
  3364. "isNullPointer": false,
  3365. "$type": "double",
  3366. "value": 0.0,
  3367. "label": "Value A"
  3368. },
  3369. {
  3370. "isOverloadedStorage": false,
  3371. "scriptCanvasType": {
  3372. "m_type": 3
  3373. },
  3374. "isNullPointer": false,
  3375. "$type": "double",
  3376. "value": 0.0,
  3377. "label": "Value B"
  3378. }
  3379. ]
  3380. }
  3381. }
  3382. },
  3383. {
  3384. "Id": {
  3385. "id": 255007186747920
  3386. },
  3387. "Name": "SC-Node(GetActiveCamera)",
  3388. "Components": {
  3389. "Component_[6882921719024623238]": {
  3390. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3391. "Id": 6882921719024623238,
  3392. "Slots": [
  3393. {
  3394. "id": {
  3395. "m_id": "{C2ADAB65-D3E5-4635-B0CB-2C04D741C8BF}"
  3396. },
  3397. "contracts": [
  3398. {
  3399. "$type": "SlotTypeContract"
  3400. }
  3401. ],
  3402. "slotName": "In",
  3403. "Descriptor": {
  3404. "ConnectionType": 1,
  3405. "SlotType": 1
  3406. }
  3407. },
  3408. {
  3409. "id": {
  3410. "m_id": "{97B8E2F7-7578-45CE-AE03-7675024D73E0}"
  3411. },
  3412. "contracts": [
  3413. {
  3414. "$type": "SlotTypeContract"
  3415. }
  3416. ],
  3417. "slotName": "Out",
  3418. "Descriptor": {
  3419. "ConnectionType": 2,
  3420. "SlotType": 1
  3421. }
  3422. },
  3423. {
  3424. "id": {
  3425. "m_id": "{88A24FA5-1F93-4DBB-BE33-8F36C65AC611}"
  3426. },
  3427. "contracts": [
  3428. {
  3429. "$type": "SlotTypeContract"
  3430. }
  3431. ],
  3432. "slotName": "EntityId",
  3433. "DisplayDataType": {
  3434. "m_type": 1
  3435. },
  3436. "Descriptor": {
  3437. "ConnectionType": 2,
  3438. "SlotType": 2
  3439. },
  3440. "DataType": 1
  3441. }
  3442. ],
  3443. "methodType": 0,
  3444. "methodName": "GetActiveCamera",
  3445. "className": "CameraSystemRequestBus",
  3446. "resultSlotIDs": [
  3447. {}
  3448. ],
  3449. "prettyClassName": "CameraSystemRequestBus"
  3450. }
  3451. }
  3452. },
  3453. {
  3454. "Id": {
  3455. "id": 255054431388176
  3456. },
  3457. "Name": "SC-Node(Add Element at End)",
  3458. "Components": {
  3459. "Component_[7008386195414279396]": {
  3460. "$type": "MethodOverloaded",
  3461. "Id": 7008386195414279396,
  3462. "Slots": [
  3463. {
  3464. "id": {
  3465. "m_id": "{8FE38905-9EB7-422C-9878-C622D73903B6}"
  3466. },
  3467. "DynamicTypeOverride": 2,
  3468. "contracts": [
  3469. {
  3470. "$type": "SlotTypeContract"
  3471. },
  3472. {
  3473. "$type": "OverloadContract"
  3474. }
  3475. ],
  3476. "slotName": "Container",
  3477. "toolTip": "The container into which to add an element to",
  3478. "DisplayDataType": {
  3479. "m_type": 4,
  3480. "m_azType": "{7541F631-BA89-54F3-A6B8-33FF75B60192}"
  3481. },
  3482. "Descriptor": {
  3483. "ConnectionType": 1,
  3484. "SlotType": 2
  3485. },
  3486. "DataType": 1
  3487. },
  3488. {
  3489. "id": {
  3490. "m_id": "{1408F9D5-C8B5-4713-A50A-211BC5D82F63}"
  3491. },
  3492. "DynamicTypeOverride": 1,
  3493. "contracts": [
  3494. {
  3495. "$type": "SlotTypeContract"
  3496. },
  3497. {
  3498. "$type": "OverloadContract"
  3499. }
  3500. ],
  3501. "slotName": "Value",
  3502. "toolTip": "The value to be added",
  3503. "DisplayDataType": {
  3504. "m_type": 4,
  3505. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  3506. },
  3507. "Descriptor": {
  3508. "ConnectionType": 1,
  3509. "SlotType": 2
  3510. },
  3511. "DataType": 1
  3512. },
  3513. {
  3514. "id": {
  3515. "m_id": "{6D0DBD1C-FEF4-47FB-A086-16E2D1DDD5CC}"
  3516. },
  3517. "contracts": [
  3518. {
  3519. "$type": "SlotTypeContract"
  3520. }
  3521. ],
  3522. "slotName": "In",
  3523. "Descriptor": {
  3524. "ConnectionType": 1,
  3525. "SlotType": 1
  3526. }
  3527. },
  3528. {
  3529. "id": {
  3530. "m_id": "{7B3109FC-415B-4160-BB82-FA55B9A60B3E}"
  3531. },
  3532. "contracts": [
  3533. {
  3534. "$type": "SlotTypeContract"
  3535. }
  3536. ],
  3537. "slotName": "Out",
  3538. "Descriptor": {
  3539. "ConnectionType": 2,
  3540. "SlotType": 1
  3541. }
  3542. },
  3543. {
  3544. "id": {
  3545. "m_id": "{406E9B6F-C6D6-4D07-9F6A-5EE789940417}"
  3546. },
  3547. "DynamicTypeOverride": 2,
  3548. "contracts": [
  3549. {
  3550. "$type": "SlotTypeContract"
  3551. },
  3552. {
  3553. "$type": "OverloadContract"
  3554. }
  3555. ],
  3556. "slotName": "Container",
  3557. "DisplayDataType": {
  3558. "m_type": 4,
  3559. "m_azType": "{7541F631-BA89-54F3-A6B8-33FF75B60192}"
  3560. },
  3561. "Descriptor": {
  3562. "ConnectionType": 2,
  3563. "SlotType": 2
  3564. },
  3565. "DataType": 1
  3566. }
  3567. ],
  3568. "Datums": [
  3569. {
  3570. "scriptCanvasType": {
  3571. "m_type": 4,
  3572. "m_azType": "{7541F631-BA89-54F3-A6B8-33FF75B60192}"
  3573. },
  3574. "isNullPointer": false,
  3575. "$type": "AZStd::vector<AzFramework::EntitySpawnTicket, allocator>",
  3576. "label": "Container"
  3577. },
  3578. {
  3579. "scriptCanvasType": {
  3580. "m_type": 4,
  3581. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  3582. },
  3583. "isNullPointer": false,
  3584. "$type": "AzFramework::EntitySpawnTicket",
  3585. "label": "Value"
  3586. }
  3587. ],
  3588. "methodType": 2,
  3589. "methodName": "Add Element at End",
  3590. "className": "AZStd::vector<AzFramework::EntitySpawnTicket, allocator>",
  3591. "inputSlots": [
  3592. {
  3593. "m_id": "{8FE38905-9EB7-422C-9878-C622D73903B6}"
  3594. },
  3595. {
  3596. "m_id": "{1408F9D5-C8B5-4713-A50A-211BC5D82F63}"
  3597. }
  3598. ],
  3599. "orderedInputSlotIds": [
  3600. {
  3601. "m_id": "{8FE38905-9EB7-422C-9878-C622D73903B6}"
  3602. },
  3603. {
  3604. "m_id": "{1408F9D5-C8B5-4713-A50A-211BC5D82F63}"
  3605. }
  3606. ],
  3607. "outputSlotIds": [
  3608. {
  3609. "m_id": "{406E9B6F-C6D6-4D07-9F6A-5EE789940417}"
  3610. }
  3611. ]
  3612. }
  3613. }
  3614. },
  3615. {
  3616. "Id": {
  3617. "id": 255058726355472
  3618. },
  3619. "Name": "SC-Node(CreateSpawnTicketNodeableNode)",
  3620. "Components": {
  3621. "Component_[8293941170819769584]": {
  3622. "$type": "CreateSpawnTicketNodeableNode",
  3623. "Id": 8293941170819769584,
  3624. "Slots": [
  3625. {
  3626. "id": {
  3627. "m_id": "{11994D57-2287-4E3F-9354-DCFECFA8CFA0}"
  3628. },
  3629. "contracts": [
  3630. {
  3631. "$type": "SlotTypeContract"
  3632. }
  3633. ],
  3634. "slotName": "Create Ticket",
  3635. "DisplayGroup": {
  3636. "Value": 3070342103
  3637. },
  3638. "Descriptor": {
  3639. "ConnectionType": 1,
  3640. "SlotType": 1
  3641. }
  3642. },
  3643. {
  3644. "id": {
  3645. "m_id": "{D5AB604E-A921-4FCD-B14F-FCBE0F8A7E0F}"
  3646. },
  3647. "contracts": [
  3648. {
  3649. "$type": "SlotTypeContract"
  3650. }
  3651. ],
  3652. "slotName": "Prefab",
  3653. "toolTip": "Prefab source asset to spawn",
  3654. "DisplayGroup": {
  3655. "Value": 3070342103
  3656. },
  3657. "Descriptor": {
  3658. "ConnectionType": 1,
  3659. "SlotType": 2
  3660. },
  3661. "DataType": 1
  3662. },
  3663. {
  3664. "id": {
  3665. "m_id": "{27267EBB-85FD-44F6-A76F-CFE08AD80E5D}"
  3666. },
  3667. "contracts": [
  3668. {
  3669. "$type": "SlotTypeContract"
  3670. }
  3671. ],
  3672. "slotName": "Ticket Created",
  3673. "DisplayGroup": {
  3674. "Value": 3070342103
  3675. },
  3676. "Descriptor": {
  3677. "ConnectionType": 2,
  3678. "SlotType": 1
  3679. }
  3680. },
  3681. {
  3682. "id": {
  3683. "m_id": "{D8AEC1FF-8222-446D-9F95-C5D737B9D156}"
  3684. },
  3685. "contracts": [
  3686. {
  3687. "$type": "SlotTypeContract"
  3688. }
  3689. ],
  3690. "slotName": "SpawnTicket",
  3691. "DisplayDataType": {
  3692. "m_type": 4,
  3693. "m_azType": "{BA62FF9A-A01E-4FEB-84C6-200881DF2B2B}"
  3694. },
  3695. "DisplayGroup": {
  3696. "Value": 3070342103
  3697. },
  3698. "Descriptor": {
  3699. "ConnectionType": 2,
  3700. "SlotType": 2
  3701. },
  3702. "DataType": 1
  3703. }
  3704. ],
  3705. "Datums": [
  3706. {
  3707. "scriptCanvasType": {
  3708. "m_type": 4,
  3709. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  3710. },
  3711. "isNullPointer": false,
  3712. "$type": "AzFramework::Scripts::SpawnableScriptAssetRef",
  3713. "value": {
  3714. "asset": {
  3715. "assetId": {
  3716. "guid": "{D2CE145E-5D22-5D8E-8F7D-E70AFCDC72F0}",
  3717. "subId": 2578930176
  3718. },
  3719. "assetHint": "prefabs/newspaper.spawnable"
  3720. }
  3721. },
  3722. "label": "Prefab"
  3723. }
  3724. ],
  3725. "slotExecutionMap": {
  3726. "ins": [
  3727. {
  3728. "_slotId": {
  3729. "m_id": "{11994D57-2287-4E3F-9354-DCFECFA8CFA0}"
  3730. },
  3731. "_inputs": [
  3732. {
  3733. "_slotId": {
  3734. "m_id": "{D5AB604E-A921-4FCD-B14F-FCBE0F8A7E0F}"
  3735. }
  3736. }
  3737. ],
  3738. "_outs": [
  3739. {
  3740. "_slotId": {
  3741. "m_id": "{27267EBB-85FD-44F6-A76F-CFE08AD80E5D}"
  3742. },
  3743. "_name": "Ticket Created",
  3744. "_outputs": [
  3745. {
  3746. "_slotId": {
  3747. "m_id": "{D8AEC1FF-8222-446D-9F95-C5D737B9D156}"
  3748. }
  3749. }
  3750. ],
  3751. "_interfaceSourceId": "{20000000-0000-0000-F0CA-10BFB5020000}"
  3752. }
  3753. ],
  3754. "_interfaceSourceId": "{E04C9FE0-FF7F-0000-3000-000000000000}"
  3755. }
  3756. ]
  3757. }
  3758. }
  3759. }
  3760. },
  3761. {
  3762. "Id": {
  3763. "id": 255028661584400
  3764. },
  3765. "Name": "SC-Node(ScriptCanvas_Vector3Functions_SetZ)",
  3766. "Components": {
  3767. "Component_[881224437023483949]": {
  3768. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3769. "Id": 881224437023483949,
  3770. "Slots": [
  3771. {
  3772. "id": {
  3773. "m_id": "{20B9452E-084D-4602-AF72-C21FA163CD12}"
  3774. },
  3775. "contracts": [
  3776. {
  3777. "$type": "SlotTypeContract"
  3778. }
  3779. ],
  3780. "slotName": "Source",
  3781. "Descriptor": {
  3782. "ConnectionType": 1,
  3783. "SlotType": 2
  3784. },
  3785. "DataType": 1
  3786. },
  3787. {
  3788. "id": {
  3789. "m_id": "{8E4EEF6D-6354-400D-A50D-8F630139C44D}"
  3790. },
  3791. "contracts": [
  3792. {
  3793. "$type": "SlotTypeContract"
  3794. }
  3795. ],
  3796. "slotName": "Z",
  3797. "Descriptor": {
  3798. "ConnectionType": 1,
  3799. "SlotType": 2
  3800. },
  3801. "DataType": 1
  3802. },
  3803. {
  3804. "id": {
  3805. "m_id": "{DC312C0E-0474-4491-A976-F1464A7EEB1B}"
  3806. },
  3807. "contracts": [
  3808. {
  3809. "$type": "SlotTypeContract"
  3810. }
  3811. ],
  3812. "slotName": "In",
  3813. "Descriptor": {
  3814. "ConnectionType": 1,
  3815. "SlotType": 1
  3816. }
  3817. },
  3818. {
  3819. "id": {
  3820. "m_id": "{96384807-D89B-4289-A694-2E9205F143FC}"
  3821. },
  3822. "contracts": [
  3823. {
  3824. "$type": "SlotTypeContract"
  3825. }
  3826. ],
  3827. "slotName": "Out",
  3828. "Descriptor": {
  3829. "ConnectionType": 2,
  3830. "SlotType": 1
  3831. }
  3832. },
  3833. {
  3834. "id": {
  3835. "m_id": "{D1D75656-F054-4153-99FB-276A7B3184F4}"
  3836. },
  3837. "contracts": [
  3838. {
  3839. "$type": "SlotTypeContract"
  3840. }
  3841. ],
  3842. "slotName": "Vector3",
  3843. "DisplayDataType": {
  3844. "m_type": 8
  3845. },
  3846. "Descriptor": {
  3847. "ConnectionType": 2,
  3848. "SlotType": 2
  3849. },
  3850. "DataType": 1
  3851. }
  3852. ],
  3853. "Datums": [
  3854. {
  3855. "scriptCanvasType": {
  3856. "m_type": 8
  3857. },
  3858. "isNullPointer": false,
  3859. "$type": "Vector3",
  3860. "value": [
  3861. 0.0,
  3862. 0.0,
  3863. 0.0
  3864. ],
  3865. "label": "Source"
  3866. },
  3867. {
  3868. "scriptCanvasType": {
  3869. "m_type": 3
  3870. },
  3871. "isNullPointer": false,
  3872. "$type": "double",
  3873. "value": 0.0,
  3874. "label": "Z"
  3875. }
  3876. ],
  3877. "methodType": 1,
  3878. "methodName": "ScriptCanvas_Vector3Functions_SetZ",
  3879. "resultSlotIDs": [
  3880. {}
  3881. ],
  3882. "inputSlots": [
  3883. {
  3884. "m_id": "{20B9452E-084D-4602-AF72-C21FA163CD12}"
  3885. },
  3886. {
  3887. "m_id": "{8E4EEF6D-6354-400D-A50D-8F630139C44D}"
  3888. }
  3889. ],
  3890. "prettyClassName": "ScriptCanvas_Vector3Functions_SetZ"
  3891. }
  3892. }
  3893. },
  3894. {
  3895. "Id": {
  3896. "id": 292987582546448
  3897. },
  3898. "Name": "SC Node(GetVariable)",
  3899. "Components": {
  3900. "Component_[9601200027467922202]": {
  3901. "$type": "GetVariableNode",
  3902. "Id": 9601200027467922202,
  3903. "Slots": [
  3904. {
  3905. "id": {
  3906. "m_id": "{219BF109-3CEA-4B32-AB84-692793140531}"
  3907. },
  3908. "contracts": [
  3909. {
  3910. "$type": "SlotTypeContract"
  3911. }
  3912. ],
  3913. "slotName": "In",
  3914. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  3915. "Descriptor": {
  3916. "ConnectionType": 1,
  3917. "SlotType": 1
  3918. }
  3919. },
  3920. {
  3921. "id": {
  3922. "m_id": "{0DDDB20E-E250-4684-905D-EC73C379CA84}"
  3923. },
  3924. "contracts": [
  3925. {
  3926. "$type": "SlotTypeContract"
  3927. }
  3928. ],
  3929. "slotName": "Out",
  3930. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  3931. "Descriptor": {
  3932. "ConnectionType": 2,
  3933. "SlotType": 1
  3934. }
  3935. },
  3936. {
  3937. "id": {
  3938. "m_id": "{645FEC7E-61D4-431A-B53A-AC6965A5C535}"
  3939. },
  3940. "contracts": [
  3941. {
  3942. "$type": "SlotTypeContract"
  3943. }
  3944. ],
  3945. "slotName": "Number",
  3946. "DisplayDataType": {
  3947. "m_type": 3
  3948. },
  3949. "Descriptor": {
  3950. "ConnectionType": 2,
  3951. "SlotType": 2
  3952. },
  3953. "DataType": 1
  3954. }
  3955. ],
  3956. "m_variableId": {
  3957. "m_id": "{25EC1417-FF15-47FB-B24C-464CFC7B6200}"
  3958. },
  3959. "m_variableDataOutSlotId": {
  3960. "m_id": "{645FEC7E-61D4-431A-B53A-AC6965A5C535}"
  3961. }
  3962. }
  3963. }
  3964. }
  3965. ],
  3966. "m_connections": [
  3967. {
  3968. "Id": {
  3969. "id": 255093086093840
  3970. },
  3971. "Name": "srcEndpoint=(CreateSpawnTicket: Ticket Created), destEndpoint=(Spawn: Request Spawn)",
  3972. "Components": {
  3973. "Component_[15379545442147296994]": {
  3974. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3975. "Id": 15379545442147296994,
  3976. "sourceEndpoint": {
  3977. "nodeId": {
  3978. "id": 255058726355472
  3979. },
  3980. "slotId": {
  3981. "m_id": "{27267EBB-85FD-44F6-A76F-CFE08AD80E5D}"
  3982. }
  3983. },
  3984. "targetEndpoint": {
  3985. "nodeId": {
  3986. "id": 255080201191952
  3987. },
  3988. "slotId": {
  3989. "m_id": "{B8654EB1-EE92-48D7-8364-FA0410B40642}"
  3990. }
  3991. }
  3992. }
  3993. }
  3994. },
  3995. {
  3996. "Id": {
  3997. "id": 255097381061136
  3998. },
  3999. "Name": "srcEndpoint=(CreateSpawnTicket: SpawnTicket), destEndpoint=(Spawn: SpawnTicket)",
  4000. "Components": {
  4001. "Component_[12593877346010363090]": {
  4002. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4003. "Id": 12593877346010363090,
  4004. "sourceEndpoint": {
  4005. "nodeId": {
  4006. "id": 255058726355472
  4007. },
  4008. "slotId": {
  4009. "m_id": "{D8AEC1FF-8222-446D-9F95-C5D737B9D156}"
  4010. }
  4011. },
  4012. "targetEndpoint": {
  4013. "nodeId": {
  4014. "id": 255080201191952
  4015. },
  4016. "slotId": {
  4017. "m_id": "{B463E169-639A-4E41-835A-D6892E1FD5EE}"
  4018. }
  4019. }
  4020. }
  4021. }
  4022. },
  4023. {
  4024. "Id": {
  4025. "id": 255101676028432
  4026. },
  4027. "Name": "srcEndpoint=(Spawn: SpawnedEntitiesList), destEndpoint=(Get Element: Container)",
  4028. "Components": {
  4029. "Component_[7202685343853393578]": {
  4030. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4031. "Id": 7202685343853393578,
  4032. "sourceEndpoint": {
  4033. "nodeId": {
  4034. "id": 255080201191952
  4035. },
  4036. "slotId": {
  4037. "m_id": "{55B0FA82-C892-421E-BB86-A51998BDAA46}"
  4038. }
  4039. },
  4040. "targetEndpoint": {
  4041. "nodeId": {
  4042. "id": 255050136420880
  4043. },
  4044. "slotId": {
  4045. "m_id": "{6CAB4F10-79C6-4919-9BC8-17D48E4E4764}"
  4046. }
  4047. }
  4048. }
  4049. }
  4050. },
  4051. {
  4052. "Id": {
  4053. "id": 255105970995728
  4054. },
  4055. "Name": "srcEndpoint=(Spawn: On Spawn Completed), destEndpoint=(Get Element: In)",
  4056. "Components": {
  4057. "Component_[16376599928702887129]": {
  4058. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4059. "Id": 16376599928702887129,
  4060. "sourceEndpoint": {
  4061. "nodeId": {
  4062. "id": 255080201191952
  4063. },
  4064. "slotId": {
  4065. "m_id": "{D196636D-D9A6-4734-8714-8E9BD29FD5AF}"
  4066. }
  4067. },
  4068. "targetEndpoint": {
  4069. "nodeId": {
  4070. "id": 255050136420880
  4071. },
  4072. "slotId": {
  4073. "m_id": "{4EBF2418-983E-4557-88D2-9F0754E1CCD8}"
  4074. }
  4075. }
  4076. }
  4077. }
  4078. },
  4079. {
  4080. "Id": {
  4081. "id": 255110265963024
  4082. },
  4083. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(CreateSpawnTicket: Create Ticket)",
  4084. "Components": {
  4085. "Component_[11067268267237090386]": {
  4086. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4087. "Id": 11067268267237090386,
  4088. "sourceEndpoint": {
  4089. "nodeId": {
  4090. "id": 255037251518992
  4091. },
  4092. "slotId": {
  4093. "m_id": "{BF2FF3AB-C806-4D3D-A65E-243D30386892}"
  4094. }
  4095. },
  4096. "targetEndpoint": {
  4097. "nodeId": {
  4098. "id": 255058726355472
  4099. },
  4100. "slotId": {
  4101. "m_id": "{11994D57-2287-4E3F-9354-DCFECFA8CFA0}"
  4102. }
  4103. }
  4104. }
  4105. }
  4106. },
  4107. {
  4108. "Id": {
  4109. "id": 255114560930320
  4110. },
  4111. "Name": "srcEndpoint=(Get Variable: SpawnableScriptAssetRef), destEndpoint=(CreateSpawnTicket: Prefab)",
  4112. "Components": {
  4113. "Component_[12867483130645547673]": {
  4114. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4115. "Id": 12867483130645547673,
  4116. "sourceEndpoint": {
  4117. "nodeId": {
  4118. "id": 255037251518992
  4119. },
  4120. "slotId": {
  4121. "m_id": "{08011521-D06A-4A6A-96FB-78C2B0228DDD}"
  4122. }
  4123. },
  4124. "targetEndpoint": {
  4125. "nodeId": {
  4126. "id": 255058726355472
  4127. },
  4128. "slotId": {
  4129. "m_id": "{D5AB604E-A921-4FCD-B14F-FCBE0F8A7E0F}"
  4130. }
  4131. }
  4132. }
  4133. }
  4134. },
  4135. {
  4136. "Id": {
  4137. "id": 255118855897616
  4138. },
  4139. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Out), destEndpoint=(SetLinearVelocity: In)",
  4140. "Components": {
  4141. "Component_[14323084764006699876]": {
  4142. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4143. "Id": 14323084764006699876,
  4144. "sourceEndpoint": {
  4145. "nodeId": {
  4146. "id": 255020071649808
  4147. },
  4148. "slotId": {
  4149. "m_id": "{2C71EDDD-34B1-4FCC-B3F4-828D5A09E7C3}"
  4150. }
  4151. },
  4152. "targetEndpoint": {
  4153. "nodeId": {
  4154. "id": 255011481715216
  4155. },
  4156. "slotId": {
  4157. "m_id": "{9637F59B-B941-4A63-A844-5875A172FB39}"
  4158. }
  4159. }
  4160. }
  4161. }
  4162. },
  4163. {
  4164. "Id": {
  4165. "id": 255123150864912
  4166. },
  4167. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Vector3), destEndpoint=(SetLinearVelocity: Vector3: 1)",
  4168. "Components": {
  4169. "Component_[7449373836212205137]": {
  4170. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4171. "Id": 7449373836212205137,
  4172. "sourceEndpoint": {
  4173. "nodeId": {
  4174. "id": 255020071649808
  4175. },
  4176. "slotId": {
  4177. "m_id": "{DFE0F636-67C1-461F-B5F3-762464AFA0C8}"
  4178. }
  4179. },
  4180. "targetEndpoint": {
  4181. "nodeId": {
  4182. "id": 255011481715216
  4183. },
  4184. "slotId": {
  4185. "m_id": "{278203A5-C39B-407E-91DC-464D010FA07D}"
  4186. }
  4187. }
  4188. }
  4189. }
  4190. },
  4191. {
  4192. "Id": {
  4193. "id": 255127445832208
  4194. },
  4195. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(InputHandler: Connect Event)",
  4196. "Components": {
  4197. "Component_[14463215688096627536]": {
  4198. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4199. "Id": 14463215688096627536,
  4200. "sourceEndpoint": {
  4201. "nodeId": {
  4202. "id": 255041546486288
  4203. },
  4204. "slotId": {
  4205. "m_id": "{C8D028B8-7D44-4880-8FB1-A0FCE8FB3048}"
  4206. }
  4207. },
  4208. "targetEndpoint": {
  4209. "nodeId": {
  4210. "id": 255002891780624
  4211. },
  4212. "slotId": {
  4213. "m_id": "{5D907084-5D49-4851-BCF1-79E101BA0B07}"
  4214. }
  4215. }
  4216. }
  4217. }
  4218. },
  4219. {
  4220. "Id": {
  4221. "id": 255131740799504
  4222. },
  4223. "Name": "srcEndpoint=(Get Element: Value), destEndpoint=(SetParent: EntityId: 0)",
  4224. "Components": {
  4225. "Component_[11811146190443559602]": {
  4226. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4227. "Id": 11811146190443559602,
  4228. "sourceEndpoint": {
  4229. "nodeId": {
  4230. "id": 255050136420880
  4231. },
  4232. "slotId": {
  4233. "m_id": "{D3938451-E714-4365-8AC4-07996C5A2D83}"
  4234. }
  4235. },
  4236. "targetEndpoint": {
  4237. "nodeId": {
  4238. "id": 255084496159248
  4239. },
  4240. "slotId": {
  4241. "m_id": "{2B7A4B0E-9A46-415B-B83B-BF841A3E1022}"
  4242. }
  4243. }
  4244. }
  4245. }
  4246. },
  4247. {
  4248. "Id": {
  4249. "id": 255136035766800
  4250. },
  4251. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(ScriptCanvas_Vector3Functions_SetZ: Z)",
  4252. "Components": {
  4253. "Component_[2965281094584734437]": {
  4254. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4255. "Id": 2965281094584734437,
  4256. "sourceEndpoint": {
  4257. "nodeId": {
  4258. "id": 255024366617104
  4259. },
  4260. "slotId": {
  4261. "m_id": "{13F34636-0D5A-43C7-8E6C-CF256EBAD20F}"
  4262. }
  4263. },
  4264. "targetEndpoint": {
  4265. "nodeId": {
  4266. "id": 255028661584400
  4267. },
  4268. "slotId": {
  4269. "m_id": "{8E4EEF6D-6354-400D-A50D-8F630139C44D}"
  4270. }
  4271. }
  4272. }
  4273. }
  4274. },
  4275. {
  4276. "Id": {
  4277. "id": 255140330734096
  4278. },
  4279. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(ScriptCanvas_Vector3Functions_SetZ: In)",
  4280. "Components": {
  4281. "Component_[14334189637340005222]": {
  4282. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4283. "Id": 14334189637340005222,
  4284. "sourceEndpoint": {
  4285. "nodeId": {
  4286. "id": 255024366617104
  4287. },
  4288. "slotId": {
  4289. "m_id": "{539A245D-ABCD-4BAE-8403-E58C5F1D6D91}"
  4290. }
  4291. },
  4292. "targetEndpoint": {
  4293. "nodeId": {
  4294. "id": 255028661584400
  4295. },
  4296. "slotId": {
  4297. "m_id": "{DC312C0E-0474-4491-A976-F1464A7EEB1B}"
  4298. }
  4299. }
  4300. }
  4301. }
  4302. },
  4303. {
  4304. "Id": {
  4305. "id": 255144625701392
  4306. },
  4307. "Name": "srcEndpoint=(Get Element: Value), destEndpoint=(SetLinearVelocity: EntityId: 0)",
  4308. "Components": {
  4309. "Component_[18167945781760575442]": {
  4310. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4311. "Id": 18167945781760575442,
  4312. "sourceEndpoint": {
  4313. "nodeId": {
  4314. "id": 255050136420880
  4315. },
  4316. "slotId": {
  4317. "m_id": "{D3938451-E714-4365-8AC4-07996C5A2D83}"
  4318. }
  4319. },
  4320. "targetEndpoint": {
  4321. "nodeId": {
  4322. "id": 255011481715216
  4323. },
  4324. "slotId": {
  4325. "m_id": "{A8C9A911-B680-4B9C-A683-C7760B20E246}"
  4326. }
  4327. }
  4328. }
  4329. }
  4330. },
  4331. {
  4332. "Id": {
  4333. "id": 255148920668688
  4334. },
  4335. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_SetZ: Vector3), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Source)",
  4336. "Components": {
  4337. "Component_[8095576965006434893]": {
  4338. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4339. "Id": 8095576965006434893,
  4340. "sourceEndpoint": {
  4341. "nodeId": {
  4342. "id": 255028661584400
  4343. },
  4344. "slotId": {
  4345. "m_id": "{D1D75656-F054-4153-99FB-276A7B3184F4}"
  4346. }
  4347. },
  4348. "targetEndpoint": {
  4349. "nodeId": {
  4350. "id": 255020071649808
  4351. },
  4352. "slotId": {
  4353. "m_id": "{0682E9B5-0603-41AB-AD37-30A127E4FEA0}"
  4354. }
  4355. }
  4356. }
  4357. }
  4358. },
  4359. {
  4360. "Id": {
  4361. "id": 255153215635984
  4362. },
  4363. "Name": "srcEndpoint=(InputHandler: Released), destEndpoint=(Send Script Event: In)",
  4364. "Components": {
  4365. "Component_[16561508283956400177]": {
  4366. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4367. "Id": 16561508283956400177,
  4368. "sourceEndpoint": {
  4369. "nodeId": {
  4370. "id": 255002891780624
  4371. },
  4372. "slotId": {
  4373. "m_id": "{EA10400B-3DD8-4B1F-B589-35141105E9FD}"
  4374. }
  4375. },
  4376. "targetEndpoint": {
  4377. "nodeId": {
  4378. "id": 255088791126544
  4379. },
  4380. "slotId": {
  4381. "m_id": "{5632492A-EF4F-4F58-8580-DBE4F7B6E791}"
  4382. }
  4383. }
  4384. }
  4385. }
  4386. },
  4387. {
  4388. "Id": {
  4389. "id": 255157510603280
  4390. },
  4391. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Greater Than (>): In)",
  4392. "Components": {
  4393. "Component_[7115978600444623532]": {
  4394. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4395. "Id": 7115978600444623532,
  4396. "sourceEndpoint": {
  4397. "nodeId": {
  4398. "id": 255088791126544
  4399. },
  4400. "slotId": {
  4401. "m_id": "{99838952-8D12-46DE-8596-8F55A20ADAA4}"
  4402. }
  4403. },
  4404. "targetEndpoint": {
  4405. "nodeId": {
  4406. "id": 255075906224656
  4407. },
  4408. "slotId": {
  4409. "m_id": "{8F47AF3C-43EC-463F-8042-68797973499E}"
  4410. }
  4411. }
  4412. }
  4413. }
  4414. },
  4415. {
  4416. "Id": {
  4417. "id": 255161805570576
  4418. },
  4419. "Name": "srcEndpoint=(Send Script Event: Number), destEndpoint=(Greater Than (>): Value A)",
  4420. "Components": {
  4421. "Component_[2907904270424934677]": {
  4422. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4423. "Id": 2907904270424934677,
  4424. "sourceEndpoint": {
  4425. "nodeId": {
  4426. "id": 255088791126544
  4427. },
  4428. "slotId": {
  4429. "m_id": "{B055FFF8-4AD5-4223-8E4C-A7A032ACC5F2}"
  4430. }
  4431. },
  4432. "targetEndpoint": {
  4433. "nodeId": {
  4434. "id": 255075906224656
  4435. },
  4436. "slotId": {
  4437. "m_id": "{AE676594-D301-455C-A45E-C81B5FBD2253}"
  4438. }
  4439. }
  4440. }
  4441. }
  4442. },
  4443. {
  4444. "Id": {
  4445. "id": 255170395505168
  4446. },
  4447. "Name": "srcEndpoint=(SetParent: Out), destEndpoint=(Send Script Event: In)",
  4448. "Components": {
  4449. "Component_[10120455719997555733]": {
  4450. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4451. "Id": 10120455719997555733,
  4452. "sourceEndpoint": {
  4453. "nodeId": {
  4454. "id": 255084496159248
  4455. },
  4456. "slotId": {
  4457. "m_id": "{75602103-C463-4C7B-A466-6EDA8FF0150E}"
  4458. }
  4459. },
  4460. "targetEndpoint": {
  4461. "nodeId": {
  4462. "id": 255015776682512
  4463. },
  4464. "slotId": {
  4465. "m_id": "{F29FF666-DDD1-4BFF-9028-BC8501E5C181}"
  4466. }
  4467. }
  4468. }
  4469. }
  4470. },
  4471. {
  4472. "Id": {
  4473. "id": 255174690472464
  4474. },
  4475. "Name": "srcEndpoint=(SetAngularVelocity: Out), destEndpoint=(SetParent: In)",
  4476. "Components": {
  4477. "Component_[1967240981730329699]": {
  4478. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4479. "Id": 1967240981730329699,
  4480. "sourceEndpoint": {
  4481. "nodeId": {
  4482. "id": 255067316290064
  4483. },
  4484. "slotId": {
  4485. "m_id": "{3D2CB53B-FCFC-4E36-905C-73AECAC097CB}"
  4486. }
  4487. },
  4488. "targetEndpoint": {
  4489. "nodeId": {
  4490. "id": 255084496159248
  4491. },
  4492. "slotId": {
  4493. "m_id": "{121639B9-C10B-49F5-99AE-7C6B457CC770}"
  4494. }
  4495. }
  4496. }
  4497. }
  4498. },
  4499. {
  4500. "Id": {
  4501. "id": 255178985439760
  4502. },
  4503. "Name": "srcEndpoint=(Get Element: Value), destEndpoint=(SetAngularVelocity: EntityId: 0)",
  4504. "Components": {
  4505. "Component_[18134436864967292338]": {
  4506. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4507. "Id": 18134436864967292338,
  4508. "sourceEndpoint": {
  4509. "nodeId": {
  4510. "id": 255050136420880
  4511. },
  4512. "slotId": {
  4513. "m_id": "{D3938451-E714-4365-8AC4-07996C5A2D83}"
  4514. }
  4515. },
  4516. "targetEndpoint": {
  4517. "nodeId": {
  4518. "id": 255067316290064
  4519. },
  4520. "slotId": {
  4521. "m_id": "{71DEEE2C-D378-4D7E-82FF-DC8F7B5A4154}"
  4522. }
  4523. }
  4524. }
  4525. }
  4526. },
  4527. {
  4528. "Id": {
  4529. "id": 255183280407056
  4530. },
  4531. "Name": "srcEndpoint=(SetLinearVelocity: Out), destEndpoint=(ScriptCanvas_MathRandoms_RandomVector3: In)",
  4532. "Components": {
  4533. "Component_[18157589753298806776]": {
  4534. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4535. "Id": 18157589753298806776,
  4536. "sourceEndpoint": {
  4537. "nodeId": {
  4538. "id": 255011481715216
  4539. },
  4540. "slotId": {
  4541. "m_id": "{8A396A89-5C2D-46C7-96C5-97997A5C8AC7}"
  4542. }
  4543. },
  4544. "targetEndpoint": {
  4545. "nodeId": {
  4546. "id": 255045841453584
  4547. },
  4548. "slotId": {
  4549. "m_id": "{1EE85379-C9DE-4E4D-A0B4-2690A1341F2C}"
  4550. }
  4551. }
  4552. }
  4553. }
  4554. },
  4555. {
  4556. "Id": {
  4557. "id": 255187575374352
  4558. },
  4559. "Name": "srcEndpoint=(ScriptCanvas_MathRandoms_RandomVector3: Out), destEndpoint=(SetAngularVelocity: In)",
  4560. "Components": {
  4561. "Component_[6114043644956839322]": {
  4562. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4563. "Id": 6114043644956839322,
  4564. "sourceEndpoint": {
  4565. "nodeId": {
  4566. "id": 255045841453584
  4567. },
  4568. "slotId": {
  4569. "m_id": "{4B90E14C-3E43-48DA-B850-146C2841DB42}"
  4570. }
  4571. },
  4572. "targetEndpoint": {
  4573. "nodeId": {
  4574. "id": 255067316290064
  4575. },
  4576. "slotId": {
  4577. "m_id": "{D2BC3C5F-0833-4901-B379-D7312B083A0C}"
  4578. }
  4579. }
  4580. }
  4581. }
  4582. },
  4583. {
  4584. "Id": {
  4585. "id": 255191870341648
  4586. },
  4587. "Name": "srcEndpoint=(ScriptCanvas_MathRandoms_RandomVector3: Vector3), destEndpoint=(SetAngularVelocity: Vector3: 1)",
  4588. "Components": {
  4589. "Component_[12638529773290239889]": {
  4590. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4591. "Id": 12638529773290239889,
  4592. "sourceEndpoint": {
  4593. "nodeId": {
  4594. "id": 255045841453584
  4595. },
  4596. "slotId": {
  4597. "m_id": "{A910006C-768D-4BBE-B07F-C4F9FBCE2DC5}"
  4598. }
  4599. },
  4600. "targetEndpoint": {
  4601. "nodeId": {
  4602. "id": 255067316290064
  4603. },
  4604. "slotId": {
  4605. "m_id": "{7E33DE76-CE0B-4736-B07A-448A5869F780}"
  4606. }
  4607. }
  4608. }
  4609. }
  4610. },
  4611. {
  4612. "Id": {
  4613. "id": 255196165308944
  4614. },
  4615. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Add Element at End: In)",
  4616. "Components": {
  4617. "Component_[16086887691295090984]": {
  4618. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4619. "Id": 16086887691295090984,
  4620. "sourceEndpoint": {
  4621. "nodeId": {
  4622. "id": 255063021322768
  4623. },
  4624. "slotId": {
  4625. "m_id": "{7399DE57-4FB1-4A64-9779-CF761EBA2D4A}"
  4626. }
  4627. },
  4628. "targetEndpoint": {
  4629. "nodeId": {
  4630. "id": 255054431388176
  4631. },
  4632. "slotId": {
  4633. "m_id": "{6D0DBD1C-FEF4-47FB-A086-16E2D1DDD5CC}"
  4634. }
  4635. }
  4636. }
  4637. }
  4638. },
  4639. {
  4640. "Id": {
  4641. "id": 255200460276240
  4642. },
  4643. "Name": "srcEndpoint=(Get Variable: Array<EntitySpawnTicket>), destEndpoint=(Add Element at End: Container)",
  4644. "Components": {
  4645. "Component_[5652067897253448028]": {
  4646. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4647. "Id": 5652067897253448028,
  4648. "sourceEndpoint": {
  4649. "nodeId": {
  4650. "id": 255063021322768
  4651. },
  4652. "slotId": {
  4653. "m_id": "{241D7480-EC73-4FA4-A5A8-BD723C963BDD}"
  4654. }
  4655. },
  4656. "targetEndpoint": {
  4657. "nodeId": {
  4658. "id": 255054431388176
  4659. },
  4660. "slotId": {
  4661. "m_id": "{8FE38905-9EB7-422C-9878-C622D73903B6}"
  4662. }
  4663. }
  4664. }
  4665. }
  4666. },
  4667. {
  4668. "Id": {
  4669. "id": 255204755243536
  4670. },
  4671. "Name": "srcEndpoint=(Spawn: On Spawn Completed), destEndpoint=(Get Variable: In)",
  4672. "Components": {
  4673. "Component_[17424174533568455337]": {
  4674. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4675. "Id": 17424174533568455337,
  4676. "sourceEndpoint": {
  4677. "nodeId": {
  4678. "id": 255080201191952
  4679. },
  4680. "slotId": {
  4681. "m_id": "{D196636D-D9A6-4734-8714-8E9BD29FD5AF}"
  4682. }
  4683. },
  4684. "targetEndpoint": {
  4685. "nodeId": {
  4686. "id": 255063021322768
  4687. },
  4688. "slotId": {
  4689. "m_id": "{96280DC8-05A0-405A-86A3-991CDF06E2E5}"
  4690. }
  4691. }
  4692. }
  4693. }
  4694. },
  4695. {
  4696. "Id": {
  4697. "id": 255209050210832
  4698. },
  4699. "Name": "srcEndpoint=(Spawn: SpawnTicketOut), destEndpoint=(Add Element at End: Value)",
  4700. "Components": {
  4701. "Component_[1516854524804643473]": {
  4702. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4703. "Id": 1516854524804643473,
  4704. "sourceEndpoint": {
  4705. "nodeId": {
  4706. "id": 255080201191952
  4707. },
  4708. "slotId": {
  4709. "m_id": "{4A7289D6-6786-44B0-9037-B65573D1B833}"
  4710. }
  4711. },
  4712. "targetEndpoint": {
  4713. "nodeId": {
  4714. "id": 255054431388176
  4715. },
  4716. "slotId": {
  4717. "m_id": "{1408F9D5-C8B5-4713-A50A-211BC5D82F63}"
  4718. }
  4719. }
  4720. }
  4721. }
  4722. },
  4723. {
  4724. "Id": {
  4725. "id": 255213345178128
  4726. },
  4727. "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_SetZ: Out), destEndpoint=(Get Variable: In)",
  4728. "Components": {
  4729. "Component_[12175062940100239824]": {
  4730. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4731. "Id": 12175062940100239824,
  4732. "sourceEndpoint": {
  4733. "nodeId": {
  4734. "id": 255028661584400
  4735. },
  4736. "slotId": {
  4737. "m_id": "{96384807-D89B-4289-A694-2E9205F143FC}"
  4738. }
  4739. },
  4740. "targetEndpoint": {
  4741. "nodeId": {
  4742. "id": 255032956551696
  4743. },
  4744. "slotId": {
  4745. "m_id": "{7B37E667-1F84-4310-A57B-4F5F88164FF3}"
  4746. }
  4747. }
  4748. }
  4749. }
  4750. },
  4751. {
  4752. "Id": {
  4753. "id": 255217640145424
  4754. },
  4755. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: In)",
  4756. "Components": {
  4757. "Component_[12237511993813983731]": {
  4758. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4759. "Id": 12237511993813983731,
  4760. "sourceEndpoint": {
  4761. "nodeId": {
  4762. "id": 255032956551696
  4763. },
  4764. "slotId": {
  4765. "m_id": "{A0C58A97-7F66-4C8D-A2C8-36553E5AE368}"
  4766. }
  4767. },
  4768. "targetEndpoint": {
  4769. "nodeId": {
  4770. "id": 255020071649808
  4771. },
  4772. "slotId": {
  4773. "m_id": "{A11C9734-B6ED-4056-8006-86318F8FDBF3}"
  4774. }
  4775. }
  4776. }
  4777. }
  4778. },
  4779. {
  4780. "Id": {
  4781. "id": 255221935112720
  4782. },
  4783. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(ScriptCanvas_Vector3Functions_MultiplyByNumber: Multiplier)",
  4784. "Components": {
  4785. "Component_[2363340419849487800]": {
  4786. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4787. "Id": 2363340419849487800,
  4788. "sourceEndpoint": {
  4789. "nodeId": {
  4790. "id": 255032956551696
  4791. },
  4792. "slotId": {
  4793. "m_id": "{B82CCE09-812B-4793-8990-3EDF915876D8}"
  4794. }
  4795. },
  4796. "targetEndpoint": {
  4797. "nodeId": {
  4798. "id": 255020071649808
  4799. },
  4800. "slotId": {
  4801. "m_id": "{94770329-BB07-4E49-B39B-8F9AEA594682}"
  4802. }
  4803. }
  4804. }
  4805. }
  4806. },
  4807. {
  4808. "Id": {
  4809. "id": 255226230080016
  4810. },
  4811. "Name": "srcEndpoint=(GetActiveCamera: EntityId), destEndpoint=(ScriptCanvas_EntityFunctions_GetEntityForward: EntityId)",
  4812. "Components": {
  4813. "Component_[15367641789972344227]": {
  4814. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4815. "Id": 15367641789972344227,
  4816. "sourceEndpoint": {
  4817. "nodeId": {
  4818. "id": 255007186747920
  4819. },
  4820. "slotId": {
  4821. "m_id": "{88A24FA5-1F93-4DBB-BE33-8F36C65AC611}"
  4822. }
  4823. },
  4824. "targetEndpoint": {
  4825. "nodeId": {
  4826. "id": 255071611257360
  4827. },
  4828. "slotId": {
  4829. "m_id": "{7551A275-45CA-44B0-968E-EFD1C992924C}"
  4830. }
  4831. }
  4832. }
  4833. }
  4834. },
  4835. {
  4836. "Id": {
  4837. "id": 255230525047312
  4838. },
  4839. "Name": "srcEndpoint=(GetActiveCamera: Out), destEndpoint=(ScriptCanvas_EntityFunctions_GetEntityForward: In)",
  4840. "Components": {
  4841. "Component_[17993180972188803631]": {
  4842. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4843. "Id": 17993180972188803631,
  4844. "sourceEndpoint": {
  4845. "nodeId": {
  4846. "id": 255007186747920
  4847. },
  4848. "slotId": {
  4849. "m_id": "{97B8E2F7-7578-45CE-AE03-7675024D73E0}"
  4850. }
  4851. },
  4852. "targetEndpoint": {
  4853. "nodeId": {
  4854. "id": 255071611257360
  4855. },
  4856. "slotId": {
  4857. "m_id": "{446CD1D5-B551-4C72-A96C-24815D5B17E9}"
  4858. }
  4859. }
  4860. }
  4861. }
  4862. },
  4863. {
  4864. "Id": {
  4865. "id": 255234820014608
  4866. },
  4867. "Name": "srcEndpoint=(Get Element: Out), destEndpoint=(GetActiveCamera: In)",
  4868. "Components": {
  4869. "Component_[9965501082887218301]": {
  4870. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4871. "Id": 9965501082887218301,
  4872. "sourceEndpoint": {
  4873. "nodeId": {
  4874. "id": 255050136420880
  4875. },
  4876. "slotId": {
  4877. "m_id": "{9A259265-740F-4401-810A-4C5547646277}"
  4878. }
  4879. },
  4880. "targetEndpoint": {
  4881. "nodeId": {
  4882. "id": 255007186747920
  4883. },
  4884. "slotId": {
  4885. "m_id": "{C2ADAB65-D3E5-4635-B0CB-2C04D741C8BF}"
  4886. }
  4887. }
  4888. }
  4889. }
  4890. },
  4891. {
  4892. "Id": {
  4893. "id": 255239114981904
  4894. },
  4895. "Name": "srcEndpoint=(ScriptCanvas_EntityFunctions_GetEntityForward: Vector3), destEndpoint=(ScriptCanvas_Vector3Functions_SetZ: Source)",
  4896. "Components": {
  4897. "Component_[8151228940274241377]": {
  4898. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4899. "Id": 8151228940274241377,
  4900. "sourceEndpoint": {
  4901. "nodeId": {
  4902. "id": 255071611257360
  4903. },
  4904. "slotId": {
  4905. "m_id": "{98C39A2F-CEFA-45A8-BF89-55021F8B8E9B}"
  4906. }
  4907. },
  4908. "targetEndpoint": {
  4909. "nodeId": {
  4910. "id": 255028661584400
  4911. },
  4912. "slotId": {
  4913. "m_id": "{20B9452E-084D-4602-AF72-C21FA163CD12}"
  4914. }
  4915. }
  4916. }
  4917. }
  4918. },
  4919. {
  4920. "Id": {
  4921. "id": 255243409949200
  4922. },
  4923. "Name": "srcEndpoint=(ScriptCanvas_EntityFunctions_GetEntityForward: Out), destEndpoint=(Get Variable: In)",
  4924. "Components": {
  4925. "Component_[10516440777161689538]": {
  4926. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4927. "Id": 10516440777161689538,
  4928. "sourceEndpoint": {
  4929. "nodeId": {
  4930. "id": 255071611257360
  4931. },
  4932. "slotId": {
  4933. "m_id": "{A430AE69-2B59-47B4-AC28-415210E57D21}"
  4934. }
  4935. },
  4936. "targetEndpoint": {
  4937. "nodeId": {
  4938. "id": 255024366617104
  4939. },
  4940. "slotId": {
  4941. "m_id": "{012635D3-D551-4DA5-9219-0929A8E72D61}"
  4942. }
  4943. }
  4944. }
  4945. }
  4946. },
  4947. {
  4948. "Id": {
  4949. "id": 277860707729936
  4950. },
  4951. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Less Than or Equal To (<=): In)",
  4952. "Components": {
  4953. "Component_[9198972657173964927]": {
  4954. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4955. "Id": 9198972657173964927,
  4956. "sourceEndpoint": {
  4957. "nodeId": {
  4958. "id": 277272297210384
  4959. },
  4960. "slotId": {
  4961. "m_id": "{6905915D-09BB-46F4-B87C-9545EF578A14}"
  4962. }
  4963. },
  4964. "targetEndpoint": {
  4965. "nodeId": {
  4966. "id": 274974489707024
  4967. },
  4968. "slotId": {
  4969. "m_id": "{041B18E0-1A20-4C56-A655-CB1E9697C88B}"
  4970. }
  4971. }
  4972. }
  4973. }
  4974. },
  4975. {
  4976. "Id": {
  4977. "id": 277933722173968
  4978. },
  4979. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Less Than or Equal To (<=): Value A)",
  4980. "Components": {
  4981. "Component_[9055557736145556687]": {
  4982. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4983. "Id": 9055557736145556687,
  4984. "sourceEndpoint": {
  4985. "nodeId": {
  4986. "id": 277272297210384
  4987. },
  4988. "slotId": {
  4989. "m_id": "{25D3FA15-A9D5-45C4-A9F4-BCE41ED00B57}"
  4990. }
  4991. },
  4992. "targetEndpoint": {
  4993. "nodeId": {
  4994. "id": 274974489707024
  4995. },
  4996. "slotId": {
  4997. "m_id": "{702457C3-F94C-463B-9BE7-D65A34BE1CD4}"
  4998. }
  4999. }
  5000. }
  5001. }
  5002. },
  5003. {
  5004. "Id": {
  5005. "id": 281593034310160
  5006. },
  5007. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Set Variable: In)",
  5008. "Components": {
  5009. "Component_[6704427660303684946]": {
  5010. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5011. "Id": 6704427660303684946,
  5012. "sourceEndpoint": {
  5013. "nodeId": {
  5014. "id": 279406895956496
  5015. },
  5016. "slotId": {
  5017. "m_id": "{A058CAC6-C2F3-42EB-B01A-3197F5C9E7AD}"
  5018. }
  5019. },
  5020. "targetEndpoint": {
  5021. "nodeId": {
  5022. "id": 280875774771728
  5023. },
  5024. "slotId": {
  5025. "m_id": "{5C4EC3B3-CFFB-49C6-A1A5-8A3CCA7CD495}"
  5026. }
  5027. }
  5028. }
  5029. }
  5030. },
  5031. {
  5032. "Id": {
  5033. "id": 281666048754192
  5034. },
  5035. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Set Variable: Number)",
  5036. "Components": {
  5037. "Component_[5151372172295964497]": {
  5038. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5039. "Id": 5151372172295964497,
  5040. "sourceEndpoint": {
  5041. "nodeId": {
  5042. "id": 279406895956496
  5043. },
  5044. "slotId": {
  5045. "m_id": "{F4DB3837-0AF6-4E04-808F-052895DF8EC2}"
  5046. }
  5047. },
  5048. "targetEndpoint": {
  5049. "nodeId": {
  5050. "id": 280875774771728
  5051. },
  5052. "slotId": {
  5053. "m_id": "{B7CB4053-5A3E-4F5A-AE77-731BE49E9829}"
  5054. }
  5055. }
  5056. }
  5057. }
  5058. },
  5059. {
  5060. "Id": {
  5061. "id": 281846437380624
  5062. },
  5063. "Name": "srcEndpoint=(Less Than or Equal To (<=): True), destEndpoint=(Get Variable: In)",
  5064. "Components": {
  5065. "Component_[18271869300478070118]": {
  5066. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5067. "Id": 18271869300478070118,
  5068. "sourceEndpoint": {
  5069. "nodeId": {
  5070. "id": 274974489707024
  5071. },
  5072. "slotId": {
  5073. "m_id": "{06B9DF3D-511F-4115-9856-6487218BEDB1}"
  5074. }
  5075. },
  5076. "targetEndpoint": {
  5077. "nodeId": {
  5078. "id": 279406895956496
  5079. },
  5080. "slotId": {
  5081. "m_id": "{3FEDD2D0-55EE-4AE2-ADA9-92EF35F5F830}"
  5082. }
  5083. }
  5084. }
  5085. }
  5086. },
  5087. {
  5088. "Id": {
  5089. "id": 284539381875216
  5090. },
  5091. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(Get Variable: In)",
  5092. "Components": {
  5093. "Component_[6403610188225066830]": {
  5094. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5095. "Id": 6403610188225066830,
  5096. "sourceEndpoint": {
  5097. "nodeId": {
  5098. "id": 282254459273744
  5099. },
  5100. "slotId": {
  5101. "m_id": "{ED3CB2BB-9F13-42A9-9705-65A2FB23B38D}"
  5102. }
  5103. },
  5104. "targetEndpoint": {
  5105. "nodeId": {
  5106. "id": 255037251518992
  5107. },
  5108. "slotId": {
  5109. "m_id": "{5CEF26F4-4096-4755-BC39-3F12B0D84ABD}"
  5110. }
  5111. }
  5112. }
  5113. }
  5114. },
  5115. {
  5116. "Id": {
  5117. "id": 284882979258896
  5118. },
  5119. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(TimeDelay: Start)",
  5120. "Components": {
  5121. "Component_[18056073147082429395]": {
  5122. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5123. "Id": 18056073147082429395,
  5124. "sourceEndpoint": {
  5125. "nodeId": {
  5126. "id": 280875774771728
  5127. },
  5128. "slotId": {
  5129. "m_id": "{8692B29B-91D5-40C0-AA25-B1B11BA372BE}"
  5130. }
  5131. },
  5132. "targetEndpoint": {
  5133. "nodeId": {
  5134. "id": 282254459273744
  5135. },
  5136. "slotId": {
  5137. "m_id": "{35EF220B-9187-4F3D-945F-4EB24B8CF66F}"
  5138. }
  5139. }
  5140. }
  5141. }
  5142. },
  5143. {
  5144. "Id": {
  5145. "id": 285754857619984
  5146. },
  5147. "Name": "srcEndpoint=(Greater Than (>): True), destEndpoint=(Get Variable: In)",
  5148. "Components": {
  5149. "Component_[4070440997856064767]": {
  5150. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5151. "Id": 4070440997856064767,
  5152. "sourceEndpoint": {
  5153. "nodeId": {
  5154. "id": 255075906224656
  5155. },
  5156. "slotId": {
  5157. "m_id": "{C750F15C-058C-47BE-A5FC-A1BDF47C8065}"
  5158. }
  5159. },
  5160. "targetEndpoint": {
  5161. "nodeId": {
  5162. "id": 277272297210384
  5163. },
  5164. "slotId": {
  5165. "m_id": "{D7D96EB9-8D92-4255-8F82-FCABF7F86ED4}"
  5166. }
  5167. }
  5168. }
  5169. }
  5170. },
  5171. {
  5172. "Id": {
  5173. "id": 291016192557584
  5174. },
  5175. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(TickBus Handler: Connect)",
  5176. "Components": {
  5177. "Component_[505101627017898471]": {
  5178. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5179. "Id": 505101627017898471,
  5180. "sourceEndpoint": {
  5181. "nodeId": {
  5182. "id": 255041546486288
  5183. },
  5184. "slotId": {
  5185. "m_id": "{C8D028B8-7D44-4880-8FB1-A0FCE8FB3048}"
  5186. }
  5187. },
  5188. "targetEndpoint": {
  5189. "nodeId": {
  5190. "id": 289517248971280
  5191. },
  5192. "slotId": {
  5193. "m_id": "{D199D459-E3BC-4D1C-A0CD-00608A9180FD}"
  5194. }
  5195. }
  5196. }
  5197. }
  5198. },
  5199. {
  5200. "Id": {
  5201. "id": 293472913850896
  5202. },
  5203. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Greater Than (>): In)",
  5204. "Components": {
  5205. "Component_[12058677277898060825]": {
  5206. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5207. "Id": 12058677277898060825,
  5208. "sourceEndpoint": {
  5209. "nodeId": {
  5210. "id": 292987582546448
  5211. },
  5212. "slotId": {
  5213. "m_id": "{0DDDB20E-E250-4684-905D-EC73C379CA84}"
  5214. }
  5215. },
  5216. "targetEndpoint": {
  5217. "nodeId": {
  5218. "id": 291351200006672
  5219. },
  5220. "slotId": {
  5221. "m_id": "{749D2525-AE3B-4146-A9A3-0E236D314407}"
  5222. }
  5223. }
  5224. }
  5225. }
  5226. },
  5227. {
  5228. "Id": {
  5229. "id": 293545928294928
  5230. },
  5231. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Greater Than (>): Value A)",
  5232. "Components": {
  5233. "Component_[17190583503530364610]": {
  5234. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5235. "Id": 17190583503530364610,
  5236. "sourceEndpoint": {
  5237. "nodeId": {
  5238. "id": 292987582546448
  5239. },
  5240. "slotId": {
  5241. "m_id": "{645FEC7E-61D4-431A-B53A-AC6965A5C535}"
  5242. }
  5243. },
  5244. "targetEndpoint": {
  5245. "nodeId": {
  5246. "id": 291351200006672
  5247. },
  5248. "slotId": {
  5249. "m_id": "{EA1490CF-F759-49B9-9A21-1D374E56D6C9}"
  5250. }
  5251. }
  5252. }
  5253. }
  5254. },
  5255. {
  5256. "Id": {
  5257. "id": 294147223716368
  5258. },
  5259. "Name": "srcEndpoint=(TickBus Handler: ExecutionSlot:OnTick), destEndpoint=(Get Variable: In)",
  5260. "Components": {
  5261. "Component_[14345642259213825831]": {
  5262. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5263. "Id": 14345642259213825831,
  5264. "sourceEndpoint": {
  5265. "nodeId": {
  5266. "id": 289517248971280
  5267. },
  5268. "slotId": {
  5269. "m_id": "{25296BEE-3178-4697-8658-480731F6FEA6}"
  5270. }
  5271. },
  5272. "targetEndpoint": {
  5273. "nodeId": {
  5274. "id": 292987582546448
  5275. },
  5276. "slotId": {
  5277. "m_id": "{219BF109-3CEA-4B32-AB84-692793140531}"
  5278. }
  5279. }
  5280. }
  5281. }
  5282. },
  5283. {
  5284. "Id": {
  5285. "id": 295448598807056
  5286. },
  5287. "Name": "srcEndpoint=(Greater Than (>): True), destEndpoint=(Subtract (-): In)",
  5288. "Components": {
  5289. "Component_[8303850268625185828]": {
  5290. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5291. "Id": 8303850268625185828,
  5292. "sourceEndpoint": {
  5293. "nodeId": {
  5294. "id": 291351200006672
  5295. },
  5296. "slotId": {
  5297. "m_id": "{980FD5FA-27FA-4E43-90EC-31A67C9F3E2B}"
  5298. }
  5299. },
  5300. "targetEndpoint": {
  5301. "nodeId": {
  5302. "id": 294731339268624
  5303. },
  5304. "slotId": {
  5305. "m_id": "{8FCABB8D-822C-4792-A372-A357FB2277B5}"
  5306. }
  5307. }
  5308. }
  5309. }
  5310. },
  5311. {
  5312. "Id": {
  5313. "id": 295981174751760
  5314. },
  5315. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Subtract (-): Value 0)",
  5316. "Components": {
  5317. "Component_[11883399244635354265]": {
  5318. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5319. "Id": 11883399244635354265,
  5320. "sourceEndpoint": {
  5321. "nodeId": {
  5322. "id": 292987582546448
  5323. },
  5324. "slotId": {
  5325. "m_id": "{645FEC7E-61D4-431A-B53A-AC6965A5C535}"
  5326. }
  5327. },
  5328. "targetEndpoint": {
  5329. "nodeId": {
  5330. "id": 294731339268624
  5331. },
  5332. "slotId": {
  5333. "m_id": "{66A4FFF9-ABF6-4139-BC02-C5D45E6A327C}"
  5334. }
  5335. }
  5336. }
  5337. }
  5338. },
  5339. {
  5340. "Id": {
  5341. "id": 296797218538000
  5342. },
  5343. "Name": "srcEndpoint=(TickBus Handler: Number), destEndpoint=(Subtract (-): Number 1)",
  5344. "Components": {
  5345. "Component_[8764693027412262467]": {
  5346. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5347. "Id": 8764693027412262467,
  5348. "sourceEndpoint": {
  5349. "nodeId": {
  5350. "id": 289517248971280
  5351. },
  5352. "slotId": {
  5353. "m_id": "{A4015086-211E-4E15-BBFA-1974911EBE15}"
  5354. }
  5355. },
  5356. "targetEndpoint": {
  5357. "nodeId": {
  5358. "id": 294731339268624
  5359. },
  5360. "slotId": {
  5361. "m_id": "{EAF8B354-0B3B-4528-B042-95A743B22395}"
  5362. }
  5363. }
  5364. }
  5365. }
  5366. },
  5367. {
  5368. "Id": {
  5369. "id": 298635464540688
  5370. },
  5371. "Name": "srcEndpoint=(Subtract (-): Out), destEndpoint=(Set Variable: In)",
  5372. "Components": {
  5373. "Component_[10059126953373143812]": {
  5374. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5375. "Id": 10059126953373143812,
  5376. "sourceEndpoint": {
  5377. "nodeId": {
  5378. "id": 294731339268624
  5379. },
  5380. "slotId": {
  5381. "m_id": "{A95E1BE4-5254-4FCD-A759-0682102E30F1}"
  5382. }
  5383. },
  5384. "targetEndpoint": {
  5385. "nodeId": {
  5386. "id": 297986924478992
  5387. },
  5388. "slotId": {
  5389. "m_id": "{15439539-471F-486B-87EB-6AD344640445}"
  5390. }
  5391. }
  5392. }
  5393. }
  5394. },
  5395. {
  5396. "Id": {
  5397. "id": 298708478984720
  5398. },
  5399. "Name": "srcEndpoint=(Subtract (-): Result), destEndpoint=(Set Variable: Number)",
  5400. "Components": {
  5401. "Component_[17759610418305915799]": {
  5402. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5403. "Id": 17759610418305915799,
  5404. "sourceEndpoint": {
  5405. "nodeId": {
  5406. "id": 294731339268624
  5407. },
  5408. "slotId": {
  5409. "m_id": "{02CA57DB-E608-4A17-B7B3-665A3A8B16FC}"
  5410. }
  5411. },
  5412. "targetEndpoint": {
  5413. "nodeId": {
  5414. "id": 297986924478992
  5415. },
  5416. "slotId": {
  5417. "m_id": "{F590006D-A47A-49DE-ADD7-BADCAB9163AC}"
  5418. }
  5419. }
  5420. }
  5421. }
  5422. }
  5423. ],
  5424. "m_scriptEventAssets": [
  5425. [
  5426. {
  5427. "id": 255088791126544
  5428. },
  5429. {}
  5430. ],
  5431. [
  5432. {
  5433. "id": 255088791126544
  5434. },
  5435. {}
  5436. ],
  5437. [
  5438. {
  5439. "id": 255088791126544
  5440. },
  5441. {}
  5442. ],
  5443. [
  5444. {
  5445. "id": 255015776682512
  5446. },
  5447. {}
  5448. ],
  5449. [
  5450. {
  5451. "id": 255015776682512
  5452. },
  5453. {}
  5454. ],
  5455. [
  5456. {
  5457. "id": 255088791126544
  5458. },
  5459. {}
  5460. ],
  5461. [
  5462. {
  5463. "id": 255088791126544
  5464. },
  5465. {}
  5466. ],
  5467. [
  5468. {
  5469. "id": 255015776682512
  5470. },
  5471. {}
  5472. ],
  5473. [
  5474. {
  5475. "id": 255015776682512
  5476. },
  5477. {}
  5478. ],
  5479. [
  5480. {
  5481. "id": 255088791126544
  5482. },
  5483. {}
  5484. ],
  5485. [
  5486. {
  5487. "id": 255088791126544
  5488. },
  5489. {}
  5490. ],
  5491. [
  5492. {
  5493. "id": 255015776682512
  5494. },
  5495. {}
  5496. ]
  5497. ]
  5498. },
  5499. "m_assetType": "{00000000-310B-CB8D-C057-368F5E020000}",
  5500. "versionData": {
  5501. "_grammarVersion": 1,
  5502. "_runtimeVersion": 1,
  5503. "_fileVersion": 1
  5504. },
  5505. "m_variableCounter": 7,
  5506. "GraphCanvasData": [
  5507. {
  5508. "Key": {
  5509. "id": 254998596813328
  5510. },
  5511. "Value": {
  5512. "ComponentData": {
  5513. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  5514. "$type": "SceneComponentSaveData",
  5515. "Constructs": [
  5516. {
  5517. "Type": 3,
  5518. "DataContainer": {
  5519. "ComponentData": {
  5520. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5521. "$type": "NodeSaveData"
  5522. },
  5523. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  5524. "$type": "CommentNodeTextSaveData",
  5525. "Comment": "Spawn newspaper prefab and throw it in the direction the player is aiming. Also need to set on the newspaper to null (the root instance) so that it won't move along w/ the player after it is fired",
  5526. "BackgroundColor": [
  5527. 0.9800000190734863,
  5528. 0.9700000286102295,
  5529. 0.6499999761581421
  5530. ],
  5531. "FontSettings": {
  5532. "PixelSize": 16
  5533. }
  5534. },
  5535. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  5536. "$type": "NodeGroupFrameComponentSaveData",
  5537. "DisplayHeight": 967.0,
  5538. "DisplayWidth": 4480.0,
  5539. "PersistentGroupedId": [
  5540. "{E7956E62-68AB-415C-9D46-CFE960155736}",
  5541. "{BB6E3CCB-6874-4726-99F8-09C2808B8C6B}",
  5542. "{460E83B8-FD0C-42EE-8B42-3CB16DB332D5}",
  5543. "{4F720115-4E8C-4B3A-A802-1785683A5375}",
  5544. "{43A052A0-1D13-4EAB-A304-517B792FE17E}",
  5545. "{092F5033-C5BA-48B3-ADDB-5E24593530DB}",
  5546. "{2963F623-2CD2-4168-B3C2-AFC4340E550A}",
  5547. "{1A755D23-2FB1-4425-8D1F-685F8A76A4A4}",
  5548. "{D386B444-5BC6-46C8-A9FD-23887FBDC0CC}",
  5549. "{C67F12FC-FF06-4537-A4A5-B6E65AE6F9CB}",
  5550. "{C4BAB2D9-8729-4E7C-B616-78CCA2719B91}",
  5551. "{C17A7C05-46EA-4725-979E-703BF7538A2F}",
  5552. "{0B0CA1A5-CE6D-43CD-B5B1-5E8A7742ACAB}"
  5553. ]
  5554. },
  5555. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5556. "$type": "GeometrySaveData",
  5557. "Position": [
  5558. 60.0,
  5559. -240.0
  5560. ]
  5561. },
  5562. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5563. "$type": "StylingComponentSaveData"
  5564. },
  5565. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5566. "$type": "PersistentIdComponentSaveData",
  5567. "PersistentId": "{85A54719-72D6-4210-9AF9-05BBD6F2B1D3}"
  5568. }
  5569. }
  5570. }
  5571. },
  5572. {
  5573. "Type": 3,
  5574. "DataContainer": {
  5575. "ComponentData": {
  5576. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5577. "$type": "NodeSaveData"
  5578. },
  5579. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  5580. "$type": "CommentNodeTextSaveData",
  5581. "Comment": "Only throw the newspaper if we have more than 0 left",
  5582. "BackgroundColor": [
  5583. 0.9800000190734863,
  5584. 0.9700000286102295,
  5585. 0.6499999761581421
  5586. ],
  5587. "FontSettings": {
  5588. "PixelSize": 16
  5589. }
  5590. },
  5591. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  5592. "$type": "NodeGroupFrameComponentSaveData",
  5593. "DisplayHeight": 287.0,
  5594. "DisplayWidth": 680.0,
  5595. "PersistentGroupedId": [
  5596. "{BE0073C0-6F8D-4163-A5CE-DE54CC28D930}",
  5597. "{C7BE8B63-D140-4BA3-81EE-1A03154D4DBC}"
  5598. ]
  5599. },
  5600. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5601. "$type": "GeometrySaveData",
  5602. "Position": [
  5603. -3020.0,
  5604. 60.0
  5605. ]
  5606. },
  5607. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5608. "$type": "StylingComponentSaveData"
  5609. },
  5610. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5611. "$type": "PersistentIdComponentSaveData",
  5612. "PersistentId": "{88341B09-8002-4FBC-ACAF-33C791C8B9A1}"
  5613. }
  5614. }
  5615. }
  5616. },
  5617. {
  5618. "Type": 3,
  5619. "DataContainer": {
  5620. "ComponentData": {
  5621. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5622. "$type": "NodeSaveData"
  5623. },
  5624. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  5625. "$type": "CommentNodeTextSaveData",
  5626. "Comment": "Need to store spawn tickets in an array or else the instances will get deleted by garbage collection",
  5627. "BackgroundColor": [
  5628. 0.9800000190734863,
  5629. 0.9700000286102295,
  5630. 0.6499999761581421
  5631. ],
  5632. "FontSettings": {
  5633. "PixelSize": 16
  5634. }
  5635. },
  5636. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  5637. "$type": "NodeGroupFrameComponentSaveData",
  5638. "DisplayHeight": 260.0,
  5639. "DisplayWidth": 720.0,
  5640. "PersistentGroupedId": [
  5641. "{723F8EAF-4545-438B-9AB6-B67F1813ADD2}",
  5642. "{9DDACF20-51FC-40F5-BCC6-216C5276E6DF}"
  5643. ]
  5644. },
  5645. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5646. "$type": "GeometrySaveData",
  5647. "Position": [
  5648. 940.0,
  5649. 820.0
  5650. ]
  5651. },
  5652. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5653. "$type": "StylingComponentSaveData"
  5654. },
  5655. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5656. "$type": "PersistentIdComponentSaveData",
  5657. "PersistentId": "{204AA08A-B112-4F20-8A3C-5CD01C87488D}"
  5658. }
  5659. }
  5660. }
  5661. }
  5662. ],
  5663. "ViewParams": {
  5664. "Scale": 0.8328320351966042,
  5665. "AnchorX": -3707.83056640625,
  5666. "AnchorY": 132.07945251464844
  5667. }
  5668. }
  5669. }
  5670. }
  5671. },
  5672. {
  5673. "Key": {
  5674. "id": 255002891780624
  5675. },
  5676. "Value": {
  5677. "ComponentData": {
  5678. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5679. "$type": "NodeSaveData"
  5680. },
  5681. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5682. "$type": "GeneralNodeTitleComponentSaveData",
  5683. "PaletteOverride": "DefaultNodeTitlePalette"
  5684. },
  5685. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5686. "$type": "GeometrySaveData",
  5687. "Position": [
  5688. -3480.0,
  5689. -60.0
  5690. ]
  5691. },
  5692. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5693. "$type": "StylingComponentSaveData"
  5694. },
  5695. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5696. "$type": "PersistentIdComponentSaveData",
  5697. "PersistentId": "{E61076FA-BD1A-47AF-818E-EB5CE199F98A}"
  5698. }
  5699. }
  5700. }
  5701. },
  5702. {
  5703. "Key": {
  5704. "id": 255007186747920
  5705. },
  5706. "Value": {
  5707. "ComponentData": {
  5708. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5709. "$type": "NodeSaveData"
  5710. },
  5711. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5712. "$type": "GeneralNodeTitleComponentSaveData",
  5713. "PaletteOverride": "MethodNodeTitlePalette"
  5714. },
  5715. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5716. "$type": "GeometrySaveData",
  5717. "Position": [
  5718. 760.0,
  5719. -120.0
  5720. ]
  5721. },
  5722. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5723. "$type": "StylingComponentSaveData",
  5724. "SubStyle": ".method"
  5725. },
  5726. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5727. "$type": "PersistentIdComponentSaveData",
  5728. "PersistentId": "{BB6E3CCB-6874-4726-99F8-09C2808B8C6B}"
  5729. }
  5730. }
  5731. }
  5732. },
  5733. {
  5734. "Key": {
  5735. "id": 255011481715216
  5736. },
  5737. "Value": {
  5738. "ComponentData": {
  5739. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5740. "$type": "NodeSaveData"
  5741. },
  5742. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5743. "$type": "GeneralNodeTitleComponentSaveData",
  5744. "PaletteOverride": "MethodNodeTitlePalette"
  5745. },
  5746. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5747. "$type": "GeometrySaveData",
  5748. "Position": [
  5749. 2660.0,
  5750. 220.0
  5751. ]
  5752. },
  5753. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5754. "$type": "StylingComponentSaveData",
  5755. "SubStyle": ".method"
  5756. },
  5757. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5758. "$type": "PersistentIdComponentSaveData",
  5759. "PersistentId": "{E7956E62-68AB-415C-9D46-CFE960155736}"
  5760. }
  5761. }
  5762. }
  5763. },
  5764. {
  5765. "Key": {
  5766. "id": 255015776682512
  5767. },
  5768. "Value": {
  5769. "ComponentData": {
  5770. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5771. "$type": "NodeSaveData"
  5772. },
  5773. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5774. "$type": "GeneralNodeTitleComponentSaveData",
  5775. "PaletteOverride": "MethodNodeTitlePalette"
  5776. },
  5777. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5778. "$type": "GeometrySaveData",
  5779. "Position": [
  5780. 4160.0,
  5781. 360.0
  5782. ]
  5783. },
  5784. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5785. "$type": "StylingComponentSaveData",
  5786. "SubStyle": ".method"
  5787. },
  5788. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5789. "$type": "PersistentIdComponentSaveData",
  5790. "PersistentId": "{C67F12FC-FF06-4537-A4A5-B6E65AE6F9CB}"
  5791. }
  5792. }
  5793. }
  5794. },
  5795. {
  5796. "Key": {
  5797. "id": 255020071649808
  5798. },
  5799. "Value": {
  5800. "ComponentData": {
  5801. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5802. "$type": "NodeSaveData"
  5803. },
  5804. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5805. "$type": "GeneralNodeTitleComponentSaveData",
  5806. "PaletteOverride": "MethodNodeTitlePalette"
  5807. },
  5808. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5809. "$type": "GeometrySaveData",
  5810. "Position": [
  5811. 2320.0,
  5812. 140.0
  5813. ]
  5814. },
  5815. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5816. "$type": "StylingComponentSaveData",
  5817. "SubStyle": ".method"
  5818. },
  5819. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5820. "$type": "PersistentIdComponentSaveData",
  5821. "PersistentId": "{43A052A0-1D13-4EAB-A304-517B792FE17E}"
  5822. }
  5823. }
  5824. }
  5825. },
  5826. {
  5827. "Key": {
  5828. "id": 255024366617104
  5829. },
  5830. "Value": {
  5831. "ComponentData": {
  5832. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5833. "$type": "NodeSaveData"
  5834. },
  5835. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5836. "$type": "GeneralNodeTitleComponentSaveData",
  5837. "PaletteOverride": "GetVariableNodeTitlePalette"
  5838. },
  5839. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5840. "$type": "GeometrySaveData",
  5841. "Position": [
  5842. 1380.0,
  5843. 120.0
  5844. ]
  5845. },
  5846. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5847. "$type": "StylingComponentSaveData",
  5848. "SubStyle": ".getVariable"
  5849. },
  5850. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5851. "$type": "PersistentIdComponentSaveData",
  5852. "PersistentId": "{092F5033-C5BA-48B3-ADDB-5E24593530DB}"
  5853. }
  5854. }
  5855. }
  5856. },
  5857. {
  5858. "Key": {
  5859. "id": 255028661584400
  5860. },
  5861. "Value": {
  5862. "ComponentData": {
  5863. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5864. "$type": "NodeSaveData"
  5865. },
  5866. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5867. "$type": "GeneralNodeTitleComponentSaveData",
  5868. "PaletteOverride": "MethodNodeTitlePalette"
  5869. },
  5870. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5871. "$type": "GeometrySaveData",
  5872. "Position": [
  5873. 1760.0,
  5874. -80.0
  5875. ]
  5876. },
  5877. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5878. "$type": "StylingComponentSaveData",
  5879. "SubStyle": ".method"
  5880. },
  5881. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5882. "$type": "PersistentIdComponentSaveData",
  5883. "PersistentId": "{C17A7C05-46EA-4725-979E-703BF7538A2F}"
  5884. }
  5885. }
  5886. }
  5887. },
  5888. {
  5889. "Key": {
  5890. "id": 255032956551696
  5891. },
  5892. "Value": {
  5893. "ComponentData": {
  5894. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5895. "$type": "NodeSaveData"
  5896. },
  5897. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5898. "$type": "GeneralNodeTitleComponentSaveData",
  5899. "PaletteOverride": "GetVariableNodeTitlePalette"
  5900. },
  5901. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5902. "$type": "GeometrySaveData",
  5903. "Position": [
  5904. 2000.0,
  5905. 140.0
  5906. ]
  5907. },
  5908. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5909. "$type": "StylingComponentSaveData",
  5910. "SubStyle": ".getVariable"
  5911. },
  5912. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5913. "$type": "PersistentIdComponentSaveData",
  5914. "PersistentId": "{1A755D23-2FB1-4425-8D1F-685F8A76A4A4}"
  5915. }
  5916. }
  5917. }
  5918. },
  5919. {
  5920. "Key": {
  5921. "id": 255037251518992
  5922. },
  5923. "Value": {
  5924. "ComponentData": {
  5925. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5926. "$type": "NodeSaveData"
  5927. },
  5928. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5929. "$type": "GeneralNodeTitleComponentSaveData",
  5930. "PaletteOverride": "GetVariableNodeTitlePalette"
  5931. },
  5932. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5933. "$type": "GeometrySaveData",
  5934. "Position": [
  5935. -560.0,
  5936. 140.0
  5937. ]
  5938. },
  5939. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5940. "$type": "StylingComponentSaveData",
  5941. "SubStyle": ".getVariable"
  5942. },
  5943. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5944. "$type": "PersistentIdComponentSaveData",
  5945. "PersistentId": "{6525EDE6-3DD9-485F-B57E-9C79CAC4B587}"
  5946. }
  5947. }
  5948. }
  5949. },
  5950. {
  5951. "Key": {
  5952. "id": 255041546486288
  5953. },
  5954. "Value": {
  5955. "ComponentData": {
  5956. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5957. "$type": "NodeSaveData"
  5958. },
  5959. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5960. "$type": "GeneralNodeTitleComponentSaveData",
  5961. "PaletteOverride": "TimeNodeTitlePalette"
  5962. },
  5963. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5964. "$type": "GeometrySaveData",
  5965. "Position": [
  5966. -4160.0,
  5967. 380.0
  5968. ]
  5969. },
  5970. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5971. "$type": "StylingComponentSaveData"
  5972. },
  5973. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5974. "$type": "PersistentIdComponentSaveData",
  5975. "PersistentId": "{8E0E2D08-B5B7-464C-9D54-B6E3EDF488ED}"
  5976. }
  5977. }
  5978. }
  5979. },
  5980. {
  5981. "Key": {
  5982. "id": 255045841453584
  5983. },
  5984. "Value": {
  5985. "ComponentData": {
  5986. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5987. "$type": "NodeSaveData"
  5988. },
  5989. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5990. "$type": "GeneralNodeTitleComponentSaveData",
  5991. "PaletteOverride": "MethodNodeTitlePalette"
  5992. },
  5993. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5994. "$type": "GeometrySaveData",
  5995. "Position": [
  5996. 2980.0,
  5997. 220.0
  5998. ]
  5999. },
  6000. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6001. "$type": "StylingComponentSaveData",
  6002. "SubStyle": ".method"
  6003. },
  6004. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6005. "$type": "PersistentIdComponentSaveData",
  6006. "PersistentId": "{C4BAB2D9-8729-4E7C-B616-78CCA2719B91}"
  6007. }
  6008. }
  6009. }
  6010. },
  6011. {
  6012. "Key": {
  6013. "id": 255050136420880
  6014. },
  6015. "Value": {
  6016. "ComponentData": {
  6017. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6018. "$type": "NodeSaveData"
  6019. },
  6020. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6021. "$type": "GeneralNodeTitleComponentSaveData",
  6022. "PaletteOverride": "MethodNodeTitlePalette"
  6023. },
  6024. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6025. "$type": "GeometrySaveData",
  6026. "Position": [
  6027. 440.0,
  6028. -40.0
  6029. ]
  6030. },
  6031. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6032. "$type": "StylingComponentSaveData",
  6033. "SubStyle": ".method"
  6034. },
  6035. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6036. "$type": "PersistentIdComponentSaveData",
  6037. "PersistentId": "{D386B444-5BC6-46C8-A9FD-23887FBDC0CC}"
  6038. }
  6039. }
  6040. }
  6041. },
  6042. {
  6043. "Key": {
  6044. "id": 255054431388176
  6045. },
  6046. "Value": {
  6047. "ComponentData": {
  6048. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6049. "$type": "NodeSaveData"
  6050. },
  6051. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6052. "$type": "GeneralNodeTitleComponentSaveData",
  6053. "PaletteOverride": "MethodNodeTitlePalette"
  6054. },
  6055. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6056. "$type": "GeometrySaveData",
  6057. "Position": [
  6058. 1280.0,
  6059. 880.0
  6060. ]
  6061. },
  6062. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6063. "$type": "StylingComponentSaveData",
  6064. "SubStyle": ".method"
  6065. },
  6066. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6067. "$type": "PersistentIdComponentSaveData",
  6068. "PersistentId": "{723F8EAF-4545-438B-9AB6-B67F1813ADD2}"
  6069. }
  6070. }
  6071. }
  6072. },
  6073. {
  6074. "Key": {
  6075. "id": 255058726355472
  6076. },
  6077. "Value": {
  6078. "ComponentData": {
  6079. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6080. "$type": "NodeSaveData"
  6081. },
  6082. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6083. "$type": "GeneralNodeTitleComponentSaveData",
  6084. "PaletteOverride": "DefaultNodeTitlePalette"
  6085. },
  6086. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6087. "$type": "GeometrySaveData",
  6088. "Position": [
  6089. -260.0,
  6090. 140.0
  6091. ]
  6092. },
  6093. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6094. "$type": "StylingComponentSaveData"
  6095. },
  6096. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6097. "$type": "PersistentIdComponentSaveData",
  6098. "PersistentId": "{04B8161F-4797-41C4-A0BB-4D690C906727}"
  6099. }
  6100. }
  6101. }
  6102. },
  6103. {
  6104. "Key": {
  6105. "id": 255063021322768
  6106. },
  6107. "Value": {
  6108. "ComponentData": {
  6109. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6110. "$type": "NodeSaveData"
  6111. },
  6112. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6113. "$type": "GeneralNodeTitleComponentSaveData",
  6114. "PaletteOverride": "GetVariableNodeTitlePalette"
  6115. },
  6116. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6117. "$type": "GeometrySaveData",
  6118. "Position": [
  6119. 960.0,
  6120. 880.0
  6121. ]
  6122. },
  6123. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6124. "$type": "StylingComponentSaveData",
  6125. "SubStyle": ".getVariable"
  6126. },
  6127. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6128. "$type": "PersistentIdComponentSaveData",
  6129. "PersistentId": "{9DDACF20-51FC-40F5-BCC6-216C5276E6DF}"
  6130. }
  6131. }
  6132. }
  6133. },
  6134. {
  6135. "Key": {
  6136. "id": 255067316290064
  6137. },
  6138. "Value": {
  6139. "ComponentData": {
  6140. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6141. "$type": "NodeSaveData"
  6142. },
  6143. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6144. "$type": "GeneralNodeTitleComponentSaveData",
  6145. "PaletteOverride": "MethodNodeTitlePalette"
  6146. },
  6147. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6148. "$type": "GeometrySaveData",
  6149. "Position": [
  6150. 3460.0,
  6151. 260.0
  6152. ]
  6153. },
  6154. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6155. "$type": "StylingComponentSaveData",
  6156. "SubStyle": ".method"
  6157. },
  6158. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6159. "$type": "PersistentIdComponentSaveData",
  6160. "PersistentId": "{2963F623-2CD2-4168-B3C2-AFC4340E550A}"
  6161. }
  6162. }
  6163. }
  6164. },
  6165. {
  6166. "Key": {
  6167. "id": 255071611257360
  6168. },
  6169. "Value": {
  6170. "ComponentData": {
  6171. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6172. "$type": "NodeSaveData"
  6173. },
  6174. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6175. "$type": "GeneralNodeTitleComponentSaveData",
  6176. "PaletteOverride": "MethodNodeTitlePalette"
  6177. },
  6178. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6179. "$type": "GeometrySaveData",
  6180. "Position": [
  6181. 1220.0,
  6182. -140.0
  6183. ]
  6184. },
  6185. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6186. "$type": "StylingComponentSaveData",
  6187. "SubStyle": ".method"
  6188. },
  6189. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6190. "$type": "PersistentIdComponentSaveData",
  6191. "PersistentId": "{460E83B8-FD0C-42EE-8B42-3CB16DB332D5}"
  6192. }
  6193. }
  6194. }
  6195. },
  6196. {
  6197. "Key": {
  6198. "id": 255075906224656
  6199. },
  6200. "Value": {
  6201. "ComponentData": {
  6202. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6203. "$type": "NodeSaveData"
  6204. },
  6205. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6206. "$type": "GeneralNodeTitleComponentSaveData",
  6207. "PaletteOverride": "MathNodeTitlePalette"
  6208. },
  6209. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6210. "$type": "GeometrySaveData",
  6211. "Position": [
  6212. -2640.0,
  6213. 120.0
  6214. ]
  6215. },
  6216. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6217. "$type": "StylingComponentSaveData"
  6218. },
  6219. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6220. "$type": "PersistentIdComponentSaveData",
  6221. "PersistentId": "{C7BE8B63-D140-4BA3-81EE-1A03154D4DBC}"
  6222. }
  6223. }
  6224. }
  6225. },
  6226. {
  6227. "Key": {
  6228. "id": 255080201191952
  6229. },
  6230. "Value": {
  6231. "ComponentData": {
  6232. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6233. "$type": "NodeSaveData"
  6234. },
  6235. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6236. "$type": "GeneralNodeTitleComponentSaveData",
  6237. "PaletteOverride": "DefaultNodeTitlePalette"
  6238. },
  6239. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6240. "$type": "GeometrySaveData",
  6241. "Position": [
  6242. 80.0,
  6243. 260.0
  6244. ]
  6245. },
  6246. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6247. "$type": "StylingComponentSaveData"
  6248. },
  6249. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6250. "$type": "PersistentIdComponentSaveData",
  6251. "PersistentId": "{4F720115-4E8C-4B3A-A802-1785683A5375}"
  6252. }
  6253. }
  6254. }
  6255. },
  6256. {
  6257. "Key": {
  6258. "id": 255084496159248
  6259. },
  6260. "Value": {
  6261. "ComponentData": {
  6262. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6263. "$type": "NodeSaveData"
  6264. },
  6265. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6266. "$type": "GeneralNodeTitleComponentSaveData",
  6267. "PaletteOverride": "MethodNodeTitlePalette"
  6268. },
  6269. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6270. "$type": "GeometrySaveData",
  6271. "Position": [
  6272. 3820.0,
  6273. 360.0
  6274. ]
  6275. },
  6276. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6277. "$type": "StylingComponentSaveData",
  6278. "SubStyle": ".method"
  6279. },
  6280. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6281. "$type": "PersistentIdComponentSaveData",
  6282. "PersistentId": "{0B0CA1A5-CE6D-43CD-B5B1-5E8A7742ACAB}"
  6283. }
  6284. }
  6285. }
  6286. },
  6287. {
  6288. "Key": {
  6289. "id": 255088791126544
  6290. },
  6291. "Value": {
  6292. "ComponentData": {
  6293. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6294. "$type": "NodeSaveData"
  6295. },
  6296. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6297. "$type": "GeneralNodeTitleComponentSaveData",
  6298. "PaletteOverride": "MethodNodeTitlePalette"
  6299. },
  6300. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6301. "$type": "GeometrySaveData",
  6302. "Position": [
  6303. -3000.0,
  6304. 120.0
  6305. ]
  6306. },
  6307. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6308. "$type": "StylingComponentSaveData",
  6309. "SubStyle": ".method"
  6310. },
  6311. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6312. "$type": "PersistentIdComponentSaveData",
  6313. "PersistentId": "{BE0073C0-6F8D-4163-A5CE-DE54CC28D930}"
  6314. }
  6315. }
  6316. }
  6317. },
  6318. {
  6319. "Key": {
  6320. "id": 274974489707024
  6321. },
  6322. "Value": {
  6323. "ComponentData": {
  6324. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6325. "$type": "NodeSaveData"
  6326. },
  6327. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6328. "$type": "GeneralNodeTitleComponentSaveData",
  6329. "PaletteOverride": "MathNodeTitlePalette"
  6330. },
  6331. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6332. "$type": "GeometrySaveData",
  6333. "Position": [
  6334. -1880.0,
  6335. 80.0
  6336. ]
  6337. },
  6338. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6339. "$type": "StylingComponentSaveData"
  6340. },
  6341. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6342. "$type": "PersistentIdComponentSaveData",
  6343. "PersistentId": "{C18A49A1-6DFB-469A-A097-C2BF8D2773E1}"
  6344. }
  6345. }
  6346. }
  6347. },
  6348. {
  6349. "Key": {
  6350. "id": 277272297210384
  6351. },
  6352. "Value": {
  6353. "ComponentData": {
  6354. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6355. "$type": "NodeSaveData"
  6356. },
  6357. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6358. "$type": "GeneralNodeTitleComponentSaveData",
  6359. "PaletteOverride": "GetVariableNodeTitlePalette"
  6360. },
  6361. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6362. "$type": "GeometrySaveData",
  6363. "Position": [
  6364. -2180.0,
  6365. 80.0
  6366. ]
  6367. },
  6368. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6369. "$type": "StylingComponentSaveData",
  6370. "SubStyle": ".getVariable"
  6371. },
  6372. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6373. "$type": "PersistentIdComponentSaveData",
  6374. "PersistentId": "{91154E81-86DC-4367-A646-58888B1405E9}"
  6375. }
  6376. }
  6377. }
  6378. },
  6379. {
  6380. "Key": {
  6381. "id": 279406895956496
  6382. },
  6383. "Value": {
  6384. "ComponentData": {
  6385. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6386. "$type": "NodeSaveData"
  6387. },
  6388. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6389. "$type": "GeneralNodeTitleComponentSaveData",
  6390. "PaletteOverride": "GetVariableNodeTitlePalette"
  6391. },
  6392. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6393. "$type": "GeometrySaveData",
  6394. "Position": [
  6395. -1580.0,
  6396. 80.0
  6397. ]
  6398. },
  6399. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6400. "$type": "StylingComponentSaveData",
  6401. "SubStyle": ".getVariable"
  6402. },
  6403. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6404. "$type": "PersistentIdComponentSaveData",
  6405. "PersistentId": "{BB4CD69C-AB29-427B-AF01-E06408819237}"
  6406. }
  6407. }
  6408. }
  6409. },
  6410. {
  6411. "Key": {
  6412. "id": 280875774771728
  6413. },
  6414. "Value": {
  6415. "ComponentData": {
  6416. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6417. "$type": "NodeSaveData"
  6418. },
  6419. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6420. "$type": "GeneralNodeTitleComponentSaveData",
  6421. "PaletteOverride": "SetVariableNodeTitlePalette"
  6422. },
  6423. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6424. "$type": "GeometrySaveData",
  6425. "Position": [
  6426. -1280.0,
  6427. 80.0
  6428. ]
  6429. },
  6430. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6431. "$type": "StylingComponentSaveData",
  6432. "SubStyle": ".setVariable"
  6433. },
  6434. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6435. "$type": "PersistentIdComponentSaveData",
  6436. "PersistentId": "{0EA5972B-1393-4AB9-8684-B71EF5DCCBDC}"
  6437. }
  6438. }
  6439. }
  6440. },
  6441. {
  6442. "Key": {
  6443. "id": 282254459273744
  6444. },
  6445. "Value": {
  6446. "ComponentData": {
  6447. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6448. "$type": "NodeSaveData"
  6449. },
  6450. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6451. "$type": "GeneralNodeTitleComponentSaveData",
  6452. "PaletteOverride": "TimeNodeTitlePalette"
  6453. },
  6454. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6455. "$type": "GeometrySaveData",
  6456. "Position": [
  6457. -940.0,
  6458. 20.0
  6459. ]
  6460. },
  6461. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6462. "$type": "StylingComponentSaveData"
  6463. },
  6464. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6465. "$type": "PersistentIdComponentSaveData",
  6466. "PersistentId": "{B3EC8618-107A-4958-83AD-C3CD5EECDF96}"
  6467. }
  6468. }
  6469. }
  6470. },
  6471. {
  6472. "Key": {
  6473. "id": 289517248971280
  6474. },
  6475. "Value": {
  6476. "ComponentData": {
  6477. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6478. "$type": "NodeSaveData"
  6479. },
  6480. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6481. "$type": "GeometrySaveData",
  6482. "Position": [
  6483. -3640.0,
  6484. 620.0
  6485. ]
  6486. },
  6487. "{9E81C95F-89C0-4476-8E82-63CCC4E52E04}": {
  6488. "$type": "EBusHandlerNodeDescriptorSaveData",
  6489. "EventIds": [
  6490. {
  6491. "Value": 1502188240
  6492. }
  6493. ]
  6494. },
  6495. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6496. "$type": "StylingComponentSaveData"
  6497. },
  6498. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6499. "$type": "PersistentIdComponentSaveData",
  6500. "PersistentId": "{DED65D0C-7D79-4D2C-B918-9C4B168BFE7E}"
  6501. }
  6502. }
  6503. }
  6504. },
  6505. {
  6506. "Key": {
  6507. "id": 291351200006672
  6508. },
  6509. "Value": {
  6510. "ComponentData": {
  6511. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6512. "$type": "NodeSaveData"
  6513. },
  6514. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6515. "$type": "GeneralNodeTitleComponentSaveData",
  6516. "PaletteOverride": "MathNodeTitlePalette"
  6517. },
  6518. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6519. "$type": "GeometrySaveData",
  6520. "Position": [
  6521. -2920.0,
  6522. 520.0
  6523. ]
  6524. },
  6525. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6526. "$type": "StylingComponentSaveData"
  6527. },
  6528. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6529. "$type": "PersistentIdComponentSaveData",
  6530. "PersistentId": "{B6B14E98-D418-405A-BD3E-52E4B9B85E16}"
  6531. }
  6532. }
  6533. }
  6534. },
  6535. {
  6536. "Key": {
  6537. "id": 292987582546448
  6538. },
  6539. "Value": {
  6540. "ComponentData": {
  6541. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6542. "$type": "NodeSaveData"
  6543. },
  6544. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6545. "$type": "GeneralNodeTitleComponentSaveData",
  6546. "PaletteOverride": "GetVariableNodeTitlePalette"
  6547. },
  6548. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6549. "$type": "GeometrySaveData",
  6550. "Position": [
  6551. -3300.0,
  6552. 620.0
  6553. ]
  6554. },
  6555. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6556. "$type": "StylingComponentSaveData",
  6557. "SubStyle": ".getVariable"
  6558. },
  6559. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6560. "$type": "PersistentIdComponentSaveData",
  6561. "PersistentId": "{AD86423C-796E-4A02-B505-0ED353236EB4}"
  6562. }
  6563. }
  6564. }
  6565. },
  6566. {
  6567. "Key": {
  6568. "id": 294731339268624
  6569. },
  6570. "Value": {
  6571. "ComponentData": {
  6572. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6573. "$type": "NodeSaveData"
  6574. },
  6575. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6576. "$type": "GeneralNodeTitleComponentSaveData",
  6577. "PaletteOverride": "MathNodeTitlePalette"
  6578. },
  6579. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6580. "$type": "GeometrySaveData",
  6581. "Position": [
  6582. -2560.0,
  6583. 680.0
  6584. ]
  6585. },
  6586. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6587. "$type": "StylingComponentSaveData"
  6588. },
  6589. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6590. "$type": "PersistentIdComponentSaveData",
  6591. "PersistentId": "{F7EC2737-BC7D-47A7-A0CE-82C803F5A26A}"
  6592. }
  6593. }
  6594. }
  6595. },
  6596. {
  6597. "Key": {
  6598. "id": 297986924478992
  6599. },
  6600. "Value": {
  6601. "ComponentData": {
  6602. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6603. "$type": "NodeSaveData"
  6604. },
  6605. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6606. "$type": "GeneralNodeTitleComponentSaveData",
  6607. "PaletteOverride": "SetVariableNodeTitlePalette"
  6608. },
  6609. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6610. "$type": "GeometrySaveData",
  6611. "Position": [
  6612. -2180.0,
  6613. 680.0
  6614. ]
  6615. },
  6616. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6617. "$type": "StylingComponentSaveData",
  6618. "SubStyle": ".setVariable"
  6619. },
  6620. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6621. "$type": "PersistentIdComponentSaveData",
  6622. "PersistentId": "{AD45F935-AEE4-4625-B247-ADF239607001}"
  6623. }
  6624. }
  6625. }
  6626. }
  6627. ],
  6628. "StatisticsHelper": {
  6629. "InstanceCounter": [
  6630. {
  6631. "Key": 2132390995794010980,
  6632. "Value": 1
  6633. },
  6634. {
  6635. "Key": 2781147101807596453,
  6636. "Value": 1
  6637. },
  6638. {
  6639. "Key": 2970552779286763396,
  6640. "Value": 1
  6641. },
  6642. {
  6643. "Key": 3037645213994931162,
  6644. "Value": 1
  6645. },
  6646. {
  6647. "Key": 4199610336680704683,
  6648. "Value": 1
  6649. },
  6650. {
  6651. "Key": 5842117451819972883,
  6652. "Value": 1
  6653. },
  6654. {
  6655. "Key": 6462358712820489356,
  6656. "Value": 1
  6657. },
  6658. {
  6659. "Key": 7413323401356093379,
  6660. "Value": 1
  6661. },
  6662. {
  6663. "Key": 7720492133939898563,
  6664. "Value": 1
  6665. },
  6666. {
  6667. "Key": 7799030375641251854,
  6668. "Value": 1
  6669. },
  6670. {
  6671. "Key": 8513151774701589105,
  6672. "Value": 1
  6673. },
  6674. {
  6675. "Key": 8871251889168349192,
  6676. "Value": 1
  6677. },
  6678. {
  6679. "Key": 9736968382781030344,
  6680. "Value": 1
  6681. },
  6682. {
  6683. "Key": 11406045330943018107,
  6684. "Value": 1
  6685. },
  6686. {
  6687. "Key": 12114893877102773079,
  6688. "Value": 2
  6689. },
  6690. {
  6691. "Key": 12248403026249712716,
  6692. "Value": 1
  6693. },
  6694. {
  6695. "Key": 12248403027699187620,
  6696. "Value": 1
  6697. },
  6698. {
  6699. "Key": 12908276124342602112,
  6700. "Value": 1
  6701. },
  6702. {
  6703. "Key": 13474049605028069597,
  6704. "Value": 1
  6705. },
  6706. {
  6707. "Key": 13774516346666053764,
  6708. "Value": 1
  6709. },
  6710. {
  6711. "Key": 13774516347548272774,
  6712. "Value": 1
  6713. },
  6714. {
  6715. "Key": 13774516416680588913,
  6716. "Value": 1
  6717. },
  6718. {
  6719. "Key": 13774516553938972966,
  6720. "Value": 1
  6721. },
  6722. {
  6723. "Key": 16594614136673628204,
  6724. "Value": 1
  6725. },
  6726. {
  6727. "Key": 16883864771291515098,
  6728. "Value": 2
  6729. },
  6730. {
  6731. "Key": 17210499156219788916,
  6732. "Value": 2
  6733. },
  6734. {
  6735. "Key": 17325837144672904935,
  6736. "Value": 1
  6737. },
  6738. {
  6739. "Key": 17746292506071718793,
  6740. "Value": 1
  6741. }
  6742. ]
  6743. }
  6744. },
  6745. "Component_[6170905151207199516]": {
  6746. "$type": "EditorGraphVariableManagerComponent",
  6747. "Id": 6170905151207199516,
  6748. "m_variableData": {
  6749. "m_nameVariableMap": [
  6750. {
  6751. "Key": {
  6752. "m_id": "{03DD4919-9BAA-4AA5-B3A4-9921EBB63106}"
  6753. },
  6754. "Value": {
  6755. "Datum": {
  6756. "scriptCanvasType": {
  6757. "m_type": 3
  6758. },
  6759. "isNullPointer": false,
  6760. "$type": "double",
  6761. "value": 20.0
  6762. },
  6763. "VariableId": {
  6764. "m_id": "{03DD4919-9BAA-4AA5-B3A4-9921EBB63106}"
  6765. },
  6766. "VariableName": "HorizontalSpeed",
  6767. "InitialValueSource": 1
  6768. }
  6769. },
  6770. {
  6771. "Key": {
  6772. "m_id": "{10643276-266B-4686-ACEE-1219C2B2D229}"
  6773. },
  6774. "Value": {
  6775. "Datum": {
  6776. "scriptCanvasType": {
  6777. "m_type": 8
  6778. },
  6779. "isNullPointer": false,
  6780. "$type": "Vector3",
  6781. "value": [
  6782. 30.0,
  6783. 10.0,
  6784. 30.0
  6785. ]
  6786. },
  6787. "VariableId": {
  6788. "m_id": "{10643276-266B-4686-ACEE-1219C2B2D229}"
  6789. },
  6790. "VariableName": "MaxNewspaperAngularVelocity"
  6791. }
  6792. },
  6793. {
  6794. "Key": {
  6795. "m_id": "{25EC1417-FF15-47FB-B24C-464CFC7B6200}"
  6796. },
  6797. "Value": {
  6798. "Datum": {
  6799. "isOverloadedStorage": false,
  6800. "scriptCanvasType": {
  6801. "m_type": 3
  6802. },
  6803. "isNullPointer": false,
  6804. "$type": "double",
  6805. "value": 0.0
  6806. },
  6807. "VariableId": {
  6808. "m_id": "{25EC1417-FF15-47FB-B24C-464CFC7B6200}"
  6809. },
  6810. "VariableName": "CooldownTimer"
  6811. }
  6812. },
  6813. {
  6814. "Key": {
  6815. "m_id": "{9A1C84BD-EDC2-4979-8D23-900992DA40F6}"
  6816. },
  6817. "Value": {
  6818. "Datum": {
  6819. "isOverloadedStorage": false,
  6820. "scriptCanvasType": {
  6821. "m_type": 3
  6822. },
  6823. "isNullPointer": false,
  6824. "$type": "double",
  6825. "value": 1.0
  6826. },
  6827. "VariableId": {
  6828. "m_id": "{9A1C84BD-EDC2-4979-8D23-900992DA40F6}"
  6829. },
  6830. "VariableName": "CooldownDuration"
  6831. }
  6832. },
  6833. {
  6834. "Key": {
  6835. "m_id": "{AC308E4E-E207-4716-BD23-F5157A2C5F74}"
  6836. },
  6837. "Value": {
  6838. "Datum": {
  6839. "scriptCanvasType": {
  6840. "m_type": 4,
  6841. "m_azType": "{7541F631-BA89-54F3-A6B8-33FF75B60192}"
  6842. },
  6843. "isNullPointer": false,
  6844. "$type": "AZStd::vector<AzFramework::EntitySpawnTicket, allocator>"
  6845. },
  6846. "VariableId": {
  6847. "m_id": "{AC308E4E-E207-4716-BD23-F5157A2C5F74}"
  6848. },
  6849. "VariableName": "NewspaperSpawnTickets"
  6850. }
  6851. },
  6852. {
  6853. "Key": {
  6854. "m_id": "{B147BE3C-7313-4BBA-A5DC-3D8CBF85C6DF}"
  6855. },
  6856. "Value": {
  6857. "Datum": {
  6858. "scriptCanvasType": {
  6859. "m_type": 3
  6860. },
  6861. "isNullPointer": false,
  6862. "$type": "double",
  6863. "value": 0.1
  6864. },
  6865. "VariableId": {
  6866. "m_id": "{B147BE3C-7313-4BBA-A5DC-3D8CBF85C6DF}"
  6867. },
  6868. "VariableName": "VerticalSpeed",
  6869. "InitialValueSource": 1
  6870. }
  6871. },
  6872. {
  6873. "Key": {
  6874. "m_id": "{EEEEC41E-FA18-4EBF-AC0A-19B1A8FEBE42}"
  6875. },
  6876. "Value": {
  6877. "Datum": {
  6878. "scriptCanvasType": {
  6879. "m_type": 4,
  6880. "m_azType": "{A96A5037-AD0D-43B6-9948-ED63438C4A52}"
  6881. },
  6882. "isNullPointer": false,
  6883. "$type": "AzFramework::Scripts::SpawnableScriptAssetRef",
  6884. "value": {
  6885. "asset": {
  6886. "assetId": {
  6887. "guid": "{D2CE145E-5D22-5D8E-8F7D-E70AFCDC72F0}",
  6888. "subId": 2578930176
  6889. },
  6890. "assetHint": "prefabs/newspaper.spawnable"
  6891. }
  6892. }
  6893. },
  6894. "VariableId": {
  6895. "m_id": "{EEEEC41E-FA18-4EBF-AC0A-19B1A8FEBE42}"
  6896. },
  6897. "VariableName": "NewspaperPrefab"
  6898. }
  6899. }
  6900. ]
  6901. },
  6902. "CopiedVariableRemapping": [
  6903. {
  6904. "Key": {
  6905. "m_id": "{F89A6A80-5575-410F-8015-0F26163E95F9}"
  6906. },
  6907. "Value": {
  6908. "m_id": "{AC308E4E-E207-4716-BD23-F5157A2C5F74}"
  6909. }
  6910. }
  6911. ]
  6912. }
  6913. }
  6914. }
  6915. }
  6916. }