Gem.scriptcanvas 346 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 2448339237344791
  9. },
  10. "Name": "Script Canvas Graph",
  11. "Components": {
  12. "Component_[18230459142573242967]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 18230459142573242967,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{243832E2-ED44-4750-A471-C04BCED3FCB6}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 0
  26. },
  27. "isNullPointer": false,
  28. "$type": "bool",
  29. "value": true
  30. },
  31. "VariableId": {
  32. "m_id": "{243832E2-ED44-4750-A471-C04BCED3FCB6}"
  33. },
  34. "VariableName": "UpDown"
  35. }
  36. },
  37. {
  38. "Key": {
  39. "m_id": "{53BC2951-E52C-4386-99FD-E04661A1F9DA}"
  40. },
  41. "Value": {
  42. "Datum": {
  43. "isOverloadedStorage": false,
  44. "scriptCanvasType": {
  45. "m_type": 3
  46. },
  47. "isNullPointer": false,
  48. "$type": "double",
  49. "value": 0.2
  50. },
  51. "VariableId": {
  52. "m_id": "{53BC2951-E52C-4386-99FD-E04661A1F9DA}"
  53. },
  54. "VariableName": "UpAndDownDelay",
  55. "InitialValueSource": 1
  56. }
  57. },
  58. {
  59. "Key": {
  60. "m_id": "{6C17D7A9-A983-4FA6-BAD9-4193BFBDE971}"
  61. },
  62. "Value": {
  63. "Datum": {
  64. "isOverloadedStorage": false,
  65. "scriptCanvasType": {
  66. "m_type": 3
  67. },
  68. "isNullPointer": false,
  69. "$type": "double",
  70. "value": 0.0
  71. },
  72. "VariableId": {
  73. "m_id": "{6C17D7A9-A983-4FA6-BAD9-4193BFBDE971}"
  74. },
  75. "VariableName": "ZStart"
  76. }
  77. },
  78. {
  79. "Key": {
  80. "m_id": "{991E4036-B4D5-4121-ABEC-A887E4DA525F}"
  81. },
  82. "Value": {
  83. "Datum": {
  84. "isOverloadedStorage": false,
  85. "scriptCanvasType": {
  86. "m_type": 8
  87. },
  88. "isNullPointer": false,
  89. "$type": "Vector3",
  90. "value": [
  91. 0.0,
  92. 0.0,
  93. 0.019999999552965164
  94. ]
  95. },
  96. "VariableId": {
  97. "m_id": "{991E4036-B4D5-4121-ABEC-A887E4DA525F}"
  98. },
  99. "VariableName": "RotationSpeed",
  100. "InitialValueSource": 1
  101. }
  102. },
  103. {
  104. "Key": {
  105. "m_id": "{A7B4EF0C-6C18-4B9C-8DF2-5C85245B792C}"
  106. },
  107. "Value": {
  108. "Datum": {
  109. "isOverloadedStorage": false,
  110. "scriptCanvasType": {
  111. "m_type": 3
  112. },
  113. "isNullPointer": false,
  114. "$type": "double",
  115. "value": 10.0
  116. },
  117. "VariableId": {
  118. "m_id": "{A7B4EF0C-6C18-4B9C-8DF2-5C85245B792C}"
  119. },
  120. "VariableName": "PowerUpPoints",
  121. "InitialValueSource": 1
  122. }
  123. },
  124. {
  125. "Key": {
  126. "m_id": "{D1421203-3D3D-4139-81AF-F519BA1619C4}"
  127. },
  128. "Value": {
  129. "Datum": {
  130. "isOverloadedStorage": false,
  131. "scriptCanvasType": {
  132. "m_type": 3
  133. },
  134. "isNullPointer": false,
  135. "$type": "double",
  136. "value": 0.2
  137. },
  138. "VariableId": {
  139. "m_id": "{D1421203-3D3D-4139-81AF-F519BA1619C4}"
  140. },
  141. "VariableName": "UpAndDown",
  142. "InitialValueSource": 1
  143. }
  144. }
  145. ]
  146. }
  147. },
  148. "Component_[3383363924775366112]": {
  149. "$type": "EditorGraph",
  150. "Id": 3383363924775366112,
  151. "m_graphData": {
  152. "m_nodes": [
  153. {
  154. "Id": {
  155. "id": 2448412251788823
  156. },
  157. "Name": "SC-Node(Start)",
  158. "Components": {
  159. "Component_[11108192545883831646]": {
  160. "$type": "Start",
  161. "Id": 11108192545883831646,
  162. "Slots": [
  163. {
  164. "id": {
  165. "m_id": "{FFD050CC-FF23-4E56-A60B-21BB6E66FC49}"
  166. },
  167. "contracts": [
  168. {
  169. "$type": "SlotTypeContract"
  170. }
  171. ],
  172. "slotName": "Out",
  173. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  174. "Descriptor": {
  175. "ConnectionType": 2,
  176. "SlotType": 1
  177. }
  178. }
  179. ]
  180. }
  181. }
  182. },
  183. {
  184. "Id": {
  185. "id": 2448416546756119
  186. },
  187. "Name": "SC-Node(SetLocalRotation)",
  188. "Components": {
  189. "Component_[11391171458685497525]": {
  190. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  191. "Id": 11391171458685497525,
  192. "Slots": [
  193. {
  194. "id": {
  195. "m_id": "{88E3C333-AB88-4BC5-958B-73DA631766DD}"
  196. },
  197. "contracts": [
  198. {
  199. "$type": "SlotTypeContract"
  200. }
  201. ],
  202. "slotName": "EntityId: 0",
  203. "Descriptor": {
  204. "ConnectionType": 1,
  205. "SlotType": 2
  206. },
  207. "DataType": 1
  208. },
  209. {
  210. "id": {
  211. "m_id": "{52F55C49-D942-4E7B-94C8-5ADF46EEDEAB}"
  212. },
  213. "contracts": [
  214. {
  215. "$type": "SlotTypeContract"
  216. }
  217. ],
  218. "slotName": "Vector3: 1",
  219. "Descriptor": {
  220. "ConnectionType": 1,
  221. "SlotType": 2
  222. },
  223. "DataType": 1
  224. },
  225. {
  226. "id": {
  227. "m_id": "{26C8A88A-87C7-4E8A-A562-F58E3533F470}"
  228. },
  229. "contracts": [
  230. {
  231. "$type": "SlotTypeContract"
  232. }
  233. ],
  234. "slotName": "In",
  235. "Descriptor": {
  236. "ConnectionType": 1,
  237. "SlotType": 1
  238. }
  239. },
  240. {
  241. "id": {
  242. "m_id": "{6AC8FE37-3DB8-40F9-8B70-54473CE01F86}"
  243. },
  244. "contracts": [
  245. {
  246. "$type": "SlotTypeContract"
  247. }
  248. ],
  249. "slotName": "Out",
  250. "Descriptor": {
  251. "ConnectionType": 2,
  252. "SlotType": 1
  253. }
  254. }
  255. ],
  256. "Datums": [
  257. {
  258. "isOverloadedStorage": false,
  259. "scriptCanvasType": {
  260. "m_type": 1
  261. },
  262. "isNullPointer": false,
  263. "$type": "EntityId",
  264. "value": {
  265. "id": 2901262558
  266. },
  267. "label": "Source"
  268. },
  269. {
  270. "isOverloadedStorage": false,
  271. "scriptCanvasType": {
  272. "m_type": 8
  273. },
  274. "isNullPointer": false,
  275. "$type": "Vector3",
  276. "value": [
  277. 0.0,
  278. 0.0,
  279. 0.0
  280. ],
  281. "label": "Euler Angles (Radians)"
  282. }
  283. ],
  284. "methodType": 0,
  285. "methodName": "SetLocalRotation",
  286. "className": "TransformBus",
  287. "resultSlotIDs": [
  288. {}
  289. ],
  290. "inputSlots": [
  291. {
  292. "m_id": "{88E3C333-AB88-4BC5-958B-73DA631766DD}"
  293. },
  294. {
  295. "m_id": "{52F55C49-D942-4E7B-94C8-5ADF46EEDEAB}"
  296. }
  297. ],
  298. "prettyClassName": "TransformBus"
  299. }
  300. }
  301. },
  302. {
  303. "Id": {
  304. "id": 2448399366886935
  305. },
  306. "Name": "SC-Node(OperatorAdd)",
  307. "Components": {
  308. "Component_[11685556247447038450]": {
  309. "$type": "OperatorAdd",
  310. "Id": 11685556247447038450,
  311. "Slots": [
  312. {
  313. "id": {
  314. "m_id": "{29D72DDE-09B8-4D15-AB76-614BFAC143D5}"
  315. },
  316. "contracts": [
  317. {
  318. "$type": "SlotTypeContract"
  319. }
  320. ],
  321. "slotName": "In",
  322. "Descriptor": {
  323. "ConnectionType": 1,
  324. "SlotType": 1
  325. }
  326. },
  327. {
  328. "id": {
  329. "m_id": "{E7807EDC-F4AC-4367-88D2-A8F28F20B108}"
  330. },
  331. "contracts": [
  332. {
  333. "$type": "SlotTypeContract"
  334. }
  335. ],
  336. "slotName": "Out",
  337. "Descriptor": {
  338. "ConnectionType": 2,
  339. "SlotType": 1
  340. }
  341. },
  342. {
  343. "id": {
  344. "m_id": "{06788EEA-01A9-49BE-B2D4-8574071A8CA0}"
  345. },
  346. "DynamicTypeOverride": 3,
  347. "contracts": [
  348. {
  349. "$type": "SlotTypeContract"
  350. },
  351. {
  352. "$type": "MathOperatorContract",
  353. "NativeTypes": [
  354. {
  355. "m_type": 3
  356. },
  357. {
  358. "m_type": 6
  359. },
  360. {
  361. "m_type": 8
  362. },
  363. {
  364. "m_type": 9
  365. },
  366. {
  367. "m_type": 10
  368. },
  369. {
  370. "m_type": 11
  371. },
  372. {
  373. "m_type": 12
  374. },
  375. {
  376. "m_type": 14
  377. },
  378. {
  379. "m_type": 15
  380. }
  381. ]
  382. }
  383. ],
  384. "slotName": "Vector3 0",
  385. "toolTip": "An operand to use in performing the specified Operation",
  386. "DisplayDataType": {
  387. "m_type": 8
  388. },
  389. "DisplayGroup": {
  390. "Value": 1114760223
  391. },
  392. "Descriptor": {
  393. "ConnectionType": 1,
  394. "SlotType": 2
  395. },
  396. "DynamicGroup": {
  397. "Value": 1114760223
  398. },
  399. "DataType": 1
  400. },
  401. {
  402. "id": {
  403. "m_id": "{6ECDB9E8-CF01-4A99-A078-83759C09572A}"
  404. },
  405. "DynamicTypeOverride": 3,
  406. "contracts": [
  407. {
  408. "$type": "SlotTypeContract"
  409. },
  410. {
  411. "$type": "MathOperatorContract",
  412. "NativeTypes": [
  413. {
  414. "m_type": 3
  415. },
  416. {
  417. "m_type": 6
  418. },
  419. {
  420. "m_type": 8
  421. },
  422. {
  423. "m_type": 9
  424. },
  425. {
  426. "m_type": 10
  427. },
  428. {
  429. "m_type": 11
  430. },
  431. {
  432. "m_type": 12
  433. },
  434. {
  435. "m_type": 14
  436. },
  437. {
  438. "m_type": 15
  439. }
  440. ]
  441. }
  442. ],
  443. "slotName": "Vector3 1",
  444. "toolTip": "An operand to use in performing the specified Operation",
  445. "DisplayDataType": {
  446. "m_type": 8
  447. },
  448. "DisplayGroup": {
  449. "Value": 1114760223
  450. },
  451. "Descriptor": {
  452. "ConnectionType": 1,
  453. "SlotType": 2
  454. },
  455. "DynamicGroup": {
  456. "Value": 1114760223
  457. },
  458. "DataType": 1,
  459. "IsReference": true,
  460. "VariableReference": {
  461. "m_id": "{991E4036-B4D5-4121-ABEC-A887E4DA525F}"
  462. }
  463. },
  464. {
  465. "id": {
  466. "m_id": "{82CE0770-5806-4173-8B51-01691674930D}"
  467. },
  468. "DynamicTypeOverride": 3,
  469. "contracts": [
  470. {
  471. "$type": "SlotTypeContract"
  472. },
  473. {
  474. "$type": "MathOperatorContract",
  475. "NativeTypes": [
  476. {
  477. "m_type": 3
  478. },
  479. {
  480. "m_type": 6
  481. },
  482. {
  483. "m_type": 8
  484. },
  485. {
  486. "m_type": 9
  487. },
  488. {
  489. "m_type": 10
  490. },
  491. {
  492. "m_type": 11
  493. },
  494. {
  495. "m_type": 12
  496. },
  497. {
  498. "m_type": 14
  499. },
  500. {
  501. "m_type": 15
  502. }
  503. ]
  504. }
  505. ],
  506. "slotName": "Result",
  507. "toolTip": "The result of the specified operation",
  508. "DisplayDataType": {
  509. "m_type": 8
  510. },
  511. "DisplayGroup": {
  512. "Value": 1114760223
  513. },
  514. "Descriptor": {
  515. "ConnectionType": 2,
  516. "SlotType": 2
  517. },
  518. "DynamicGroup": {
  519. "Value": 1114760223
  520. },
  521. "DataType": 1
  522. }
  523. ],
  524. "Datums": [
  525. {
  526. "isOverloadedStorage": false,
  527. "scriptCanvasType": {
  528. "m_type": 8
  529. },
  530. "isNullPointer": false,
  531. "$type": "Vector3",
  532. "value": [
  533. 0.0,
  534. 0.0,
  535. 0.0
  536. ],
  537. "label": "Vector3 0"
  538. },
  539. {
  540. "isOverloadedStorage": false,
  541. "scriptCanvasType": {
  542. "m_type": 8
  543. },
  544. "isNullPointer": false,
  545. "$type": "Vector3",
  546. "value": [
  547. 0.0,
  548. 0.0,
  549. 0.019999999552965164
  550. ],
  551. "label": "Vector3 1"
  552. }
  553. ]
  554. }
  555. }
  556. },
  557. {
  558. "Id": {
  559. "id": 2521761703269911
  560. },
  561. "Name": "SC-Node(SetVisibility)",
  562. "Components": {
  563. "Component_[11905674837288805962]": {
  564. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  565. "Id": 11905674837288805962,
  566. "Slots": [
  567. {
  568. "id": {
  569. "m_id": "{5849FB52-A41C-42D6-8475-3F4052EE219A}"
  570. },
  571. "contracts": [
  572. {
  573. "$type": "SlotTypeContract"
  574. }
  575. ],
  576. "slotName": "EntityId: 0",
  577. "Descriptor": {
  578. "ConnectionType": 1,
  579. "SlotType": 2
  580. },
  581. "DataType": 1
  582. },
  583. {
  584. "id": {
  585. "m_id": "{63609ED4-006C-4D5B-87E2-4162721ED6C3}"
  586. },
  587. "contracts": [
  588. {
  589. "$type": "SlotTypeContract"
  590. }
  591. ],
  592. "slotName": "Boolean: 1",
  593. "Descriptor": {
  594. "ConnectionType": 1,
  595. "SlotType": 2
  596. },
  597. "DataType": 1
  598. },
  599. {
  600. "id": {
  601. "m_id": "{3E88D1AD-4656-467C-8A0E-A5563530436D}"
  602. },
  603. "contracts": [
  604. {
  605. "$type": "SlotTypeContract"
  606. }
  607. ],
  608. "slotName": "In",
  609. "Descriptor": {
  610. "ConnectionType": 1,
  611. "SlotType": 1
  612. }
  613. },
  614. {
  615. "id": {
  616. "m_id": "{4230224C-79CF-4660-A327-6F2297476318}"
  617. },
  618. "contracts": [
  619. {
  620. "$type": "SlotTypeContract"
  621. }
  622. ],
  623. "slotName": "Out",
  624. "Descriptor": {
  625. "ConnectionType": 2,
  626. "SlotType": 1
  627. }
  628. }
  629. ],
  630. "Datums": [
  631. {
  632. "isOverloadedStorage": false,
  633. "scriptCanvasType": {
  634. "m_type": 1
  635. },
  636. "isNullPointer": false,
  637. "$type": "EntityId",
  638. "value": {
  639. "id": 2901262558
  640. },
  641. "label": "Source"
  642. },
  643. {
  644. "isOverloadedStorage": false,
  645. "scriptCanvasType": {
  646. "m_type": 0
  647. },
  648. "isNullPointer": false,
  649. "$type": "bool",
  650. "value": false,
  651. "label": "Boolean: 1"
  652. }
  653. ],
  654. "methodType": 0,
  655. "methodName": "SetVisibility",
  656. "className": "RenderMeshComponentRequestBus",
  657. "inputSlots": [
  658. {
  659. "m_id": "{5849FB52-A41C-42D6-8475-3F4052EE219A}"
  660. },
  661. {
  662. "m_id": "{63609ED4-006C-4D5B-87E2-4162721ED6C3}"
  663. }
  664. ],
  665. "prettyClassName": "RenderMeshComponentRequestBus"
  666. }
  667. }
  668. },
  669. {
  670. "Id": {
  671. "id": 2448403661854231
  672. },
  673. "Name": "SC-Node(GetLocalRotation)",
  674. "Components": {
  675. "Component_[12621799819425940289]": {
  676. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  677. "Id": 12621799819425940289,
  678. "Slots": [
  679. {
  680. "id": {
  681. "m_id": "{F937A2F7-1365-478B-9CAC-C67ABFCF6E66}"
  682. },
  683. "contracts": [
  684. {
  685. "$type": "SlotTypeContract"
  686. }
  687. ],
  688. "slotName": "EntityId",
  689. "Descriptor": {
  690. "ConnectionType": 1,
  691. "SlotType": 2
  692. },
  693. "DataType": 1
  694. },
  695. {
  696. "id": {
  697. "m_id": "{2C7364C4-FC18-42D4-AD22-B03398D0B6A1}"
  698. },
  699. "contracts": [
  700. {
  701. "$type": "SlotTypeContract"
  702. }
  703. ],
  704. "slotName": "In",
  705. "Descriptor": {
  706. "ConnectionType": 1,
  707. "SlotType": 1
  708. }
  709. },
  710. {
  711. "id": {
  712. "m_id": "{F66C5DC0-8B28-4104-860C-27A63A4D434F}"
  713. },
  714. "contracts": [
  715. {
  716. "$type": "SlotTypeContract"
  717. }
  718. ],
  719. "slotName": "Out",
  720. "Descriptor": {
  721. "ConnectionType": 2,
  722. "SlotType": 1
  723. }
  724. },
  725. {
  726. "id": {
  727. "m_id": "{21772203-37B0-42BA-B171-8EC5152B0FBF}"
  728. },
  729. "contracts": [
  730. {
  731. "$type": "SlotTypeContract"
  732. }
  733. ],
  734. "slotName": "Vector3",
  735. "DisplayDataType": {
  736. "m_type": 8
  737. },
  738. "Descriptor": {
  739. "ConnectionType": 2,
  740. "SlotType": 2
  741. },
  742. "DataType": 1
  743. }
  744. ],
  745. "Datums": [
  746. {
  747. "isOverloadedStorage": false,
  748. "scriptCanvasType": {
  749. "m_type": 1
  750. },
  751. "isNullPointer": false,
  752. "$type": "EntityId",
  753. "value": {
  754. "id": 2901262558
  755. },
  756. "label": "EntityId"
  757. }
  758. ],
  759. "methodType": 0,
  760. "methodName": "GetLocalRotation",
  761. "className": "TransformBus",
  762. "resultSlotIDs": [
  763. {}
  764. ],
  765. "inputSlots": [
  766. {
  767. "m_id": "{F937A2F7-1365-478B-9CAC-C67ABFCF6E66}"
  768. }
  769. ],
  770. "prettyClassName": "TransformBus"
  771. }
  772. }
  773. },
  774. {
  775. "Id": {
  776. "id": 2448377892050455
  777. },
  778. "Name": "SC-Node(TimeDelayNodeableNode)",
  779. "Components": {
  780. "Component_[13629047650291668316]": {
  781. "$type": "TimeDelayNodeableNode",
  782. "Id": 13629047650291668316,
  783. "Slots": [
  784. {
  785. "id": {
  786. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  787. },
  788. "contracts": [
  789. {
  790. "$type": "SlotTypeContract"
  791. }
  792. ],
  793. "slotName": "Start",
  794. "DisplayGroup": {
  795. "Value": 2675529103
  796. },
  797. "Descriptor": {
  798. "ConnectionType": 1,
  799. "SlotType": 1
  800. }
  801. },
  802. {
  803. "id": {
  804. "m_id": "{C228BEF0-9BD6-4ED1-A3BD-F77785650B5E}"
  805. },
  806. "contracts": [
  807. {
  808. "$type": "SlotTypeContract"
  809. }
  810. ],
  811. "slotName": "Delay",
  812. "toolTip": "The amount of time to delay before the Done is signalled.",
  813. "DisplayGroup": {
  814. "Value": 2675529103
  815. },
  816. "Descriptor": {
  817. "ConnectionType": 1,
  818. "SlotType": 2
  819. },
  820. "DataType": 1,
  821. "IsReference": true,
  822. "VariableReference": {
  823. "m_id": "{53BC2951-E52C-4386-99FD-E04661A1F9DA}"
  824. }
  825. },
  826. {
  827. "id": {
  828. "m_id": "{07BD0CEB-D137-471F-B580-EE734A56D02E}"
  829. },
  830. "contracts": [
  831. {
  832. "$type": "SlotTypeContract"
  833. }
  834. ],
  835. "slotName": "On Start",
  836. "DisplayGroup": {
  837. "Value": 2675529103
  838. },
  839. "Descriptor": {
  840. "ConnectionType": 2,
  841. "SlotType": 1
  842. }
  843. },
  844. {
  845. "id": {
  846. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  847. },
  848. "contracts": [
  849. {
  850. "$type": "SlotTypeContract"
  851. }
  852. ],
  853. "slotName": "Done",
  854. "toolTip": "Signaled after waiting for the specified amount of times.",
  855. "DisplayGroup": {
  856. "Value": 271442091
  857. },
  858. "Descriptor": {
  859. "ConnectionType": 2,
  860. "SlotType": 1
  861. },
  862. "IsLatent": true
  863. }
  864. ],
  865. "Datums": [
  866. {
  867. "isOverloadedStorage": false,
  868. "scriptCanvasType": {
  869. "m_type": 3
  870. },
  871. "isNullPointer": false,
  872. "$type": "double",
  873. "value": 0.25,
  874. "label": "Delay"
  875. }
  876. ],
  877. "nodeable": {
  878. "m_timeUnits": 2
  879. },
  880. "slotExecutionMap": {
  881. "ins": [
  882. {
  883. "_slotId": {
  884. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  885. },
  886. "_inputs": [
  887. {
  888. "_slotId": {
  889. "m_id": "{C228BEF0-9BD6-4ED1-A3BD-F77785650B5E}"
  890. }
  891. }
  892. ],
  893. "_outs": [
  894. {
  895. "_slotId": {
  896. "m_id": "{07BD0CEB-D137-471F-B580-EE734A56D02E}"
  897. },
  898. "_name": "On Start",
  899. "_interfaceSourceId": "{FFD050CC-FF23-4E56-A60B-21BB6E66FC49}"
  900. }
  901. ],
  902. "_interfaceSourceId": "{B0187121-FC7F-0000-0100-000000000000}"
  903. }
  904. ],
  905. "latents": [
  906. {
  907. "_slotId": {
  908. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  909. },
  910. "_name": "Done",
  911. "_interfaceSourceId": "{B0187121-FC7F-0000-0100-000000000000}"
  912. }
  913. ]
  914. }
  915. }
  916. }
  917. },
  918. {
  919. "Id": {
  920. "id": 2448386481985047
  921. },
  922. "Name": "SC-Node(TimeDelayNodeableNode)",
  923. "Components": {
  924. "Component_[13629047650291668316]": {
  925. "$type": "TimeDelayNodeableNode",
  926. "Id": 13629047650291668316,
  927. "Slots": [
  928. {
  929. "id": {
  930. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  931. },
  932. "contracts": [
  933. {
  934. "$type": "SlotTypeContract"
  935. }
  936. ],
  937. "slotName": "Start",
  938. "DisplayGroup": {
  939. "Value": 2675529103
  940. },
  941. "Descriptor": {
  942. "ConnectionType": 1,
  943. "SlotType": 1
  944. }
  945. },
  946. {
  947. "id": {
  948. "m_id": "{C228BEF0-9BD6-4ED1-A3BD-F77785650B5E}"
  949. },
  950. "contracts": [
  951. {
  952. "$type": "SlotTypeContract"
  953. }
  954. ],
  955. "slotName": "Delay",
  956. "toolTip": "The amount of time to delay before the Done is signalled.",
  957. "DisplayGroup": {
  958. "Value": 2675529103
  959. },
  960. "Descriptor": {
  961. "ConnectionType": 1,
  962. "SlotType": 2
  963. },
  964. "DataType": 1,
  965. "IsReference": true,
  966. "VariableReference": {
  967. "m_id": "{53BC2951-E52C-4386-99FD-E04661A1F9DA}"
  968. }
  969. },
  970. {
  971. "id": {
  972. "m_id": "{07BD0CEB-D137-471F-B580-EE734A56D02E}"
  973. },
  974. "contracts": [
  975. {
  976. "$type": "SlotTypeContract"
  977. }
  978. ],
  979. "slotName": "On Start",
  980. "DisplayGroup": {
  981. "Value": 2675529103
  982. },
  983. "Descriptor": {
  984. "ConnectionType": 2,
  985. "SlotType": 1
  986. }
  987. },
  988. {
  989. "id": {
  990. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  991. },
  992. "contracts": [
  993. {
  994. "$type": "SlotTypeContract"
  995. }
  996. ],
  997. "slotName": "Done",
  998. "toolTip": "Signaled after waiting for the specified amount of times.",
  999. "DisplayGroup": {
  1000. "Value": 271442091
  1001. },
  1002. "Descriptor": {
  1003. "ConnectionType": 2,
  1004. "SlotType": 1
  1005. },
  1006. "IsLatent": true
  1007. }
  1008. ],
  1009. "Datums": [
  1010. {
  1011. "isOverloadedStorage": false,
  1012. "scriptCanvasType": {
  1013. "m_type": 3
  1014. },
  1015. "isNullPointer": false,
  1016. "$type": "double",
  1017. "value": 0.25,
  1018. "label": "Delay"
  1019. }
  1020. ],
  1021. "nodeable": {
  1022. "m_timeUnits": 2
  1023. },
  1024. "slotExecutionMap": {
  1025. "ins": [
  1026. {
  1027. "_slotId": {
  1028. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  1029. },
  1030. "_inputs": [
  1031. {
  1032. "_slotId": {
  1033. "m_id": "{C228BEF0-9BD6-4ED1-A3BD-F77785650B5E}"
  1034. }
  1035. }
  1036. ],
  1037. "_outs": [
  1038. {
  1039. "_slotId": {
  1040. "m_id": "{07BD0CEB-D137-471F-B580-EE734A56D02E}"
  1041. },
  1042. "_name": "On Start",
  1043. "_interfaceSourceId": "{FFD050CC-FF23-4E56-A60B-21BB6E66FC49}"
  1044. }
  1045. ],
  1046. "_interfaceSourceId": "{B0187121-FC7F-0000-0100-000000000000}"
  1047. }
  1048. ],
  1049. "latents": [
  1050. {
  1051. "_slotId": {
  1052. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  1053. },
  1054. "_name": "Done",
  1055. "_interfaceSourceId": "{B0187121-FC7F-0000-0100-000000000000}"
  1056. }
  1057. ]
  1058. }
  1059. }
  1060. }
  1061. },
  1062. {
  1063. "Id": {
  1064. "id": 2448360712181271
  1065. },
  1066. "Name": "SC Node(SetVariable)",
  1067. "Components": {
  1068. "Component_[13780411382279482546]": {
  1069. "$type": "SetVariableNode",
  1070. "Id": 13780411382279482546,
  1071. "Slots": [
  1072. {
  1073. "id": {
  1074. "m_id": "{B5914F26-A92F-47D3-9B42-C8D357E9B42B}"
  1075. },
  1076. "contracts": [
  1077. {
  1078. "$type": "SlotTypeContract"
  1079. }
  1080. ],
  1081. "slotName": "In",
  1082. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  1083. "Descriptor": {
  1084. "ConnectionType": 1,
  1085. "SlotType": 1
  1086. }
  1087. },
  1088. {
  1089. "id": {
  1090. "m_id": "{956F4684-DFA4-483D-B99B-541F8140A1F0}"
  1091. },
  1092. "contracts": [
  1093. {
  1094. "$type": "SlotTypeContract"
  1095. }
  1096. ],
  1097. "slotName": "Out",
  1098. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  1099. "Descriptor": {
  1100. "ConnectionType": 2,
  1101. "SlotType": 1
  1102. }
  1103. },
  1104. {
  1105. "id": {
  1106. "m_id": "{346CCC18-2771-4439-896D-1DC9EF8C1515}"
  1107. },
  1108. "contracts": [
  1109. {
  1110. "$type": "SlotTypeContract"
  1111. }
  1112. ],
  1113. "slotName": "Boolean",
  1114. "Descriptor": {
  1115. "ConnectionType": 1,
  1116. "SlotType": 2
  1117. },
  1118. "DataType": 1
  1119. },
  1120. {
  1121. "id": {
  1122. "m_id": "{BF2B4CCC-A5BD-4F86-AAC1-62718972EB8A}"
  1123. },
  1124. "contracts": [
  1125. {
  1126. "$type": "SlotTypeContract"
  1127. }
  1128. ],
  1129. "slotName": "Boolean",
  1130. "DisplayDataType": {
  1131. "m_type": 0
  1132. },
  1133. "Descriptor": {
  1134. "ConnectionType": 2,
  1135. "SlotType": 2
  1136. },
  1137. "DataType": 1
  1138. }
  1139. ],
  1140. "Datums": [
  1141. {
  1142. "isOverloadedStorage": false,
  1143. "scriptCanvasType": {
  1144. "m_type": 0
  1145. },
  1146. "isNullPointer": false,
  1147. "$type": "bool",
  1148. "value": false,
  1149. "label": "Boolean"
  1150. }
  1151. ],
  1152. "m_variableId": {
  1153. "m_id": "{243832E2-ED44-4750-A471-C04BCED3FCB6}"
  1154. },
  1155. "m_variableDataInSlotId": {
  1156. "m_id": "{346CCC18-2771-4439-896D-1DC9EF8C1515}"
  1157. },
  1158. "m_variableDataOutSlotId": {
  1159. "m_id": "{BF2B4CCC-A5BD-4F86-AAC1-62718972EB8A}"
  1160. }
  1161. }
  1162. }
  1163. },
  1164. {
  1165. "Id": {
  1166. "id": 2448420841723415
  1167. },
  1168. "Name": "SC-Node(Gate)",
  1169. "Components": {
  1170. "Component_[14683350961509674984]": {
  1171. "$type": "Gate",
  1172. "Id": 14683350961509674984,
  1173. "Slots": [
  1174. {
  1175. "id": {
  1176. "m_id": "{864EBA26-FC23-4C4A-8002-684E57C7E771}"
  1177. },
  1178. "contracts": [
  1179. {
  1180. "$type": "SlotTypeContract"
  1181. }
  1182. ],
  1183. "slotName": "Condition",
  1184. "toolTip": "If true the node will signal the Output and proceed execution",
  1185. "Descriptor": {
  1186. "ConnectionType": 1,
  1187. "SlotType": 2
  1188. },
  1189. "DataType": 1,
  1190. "IsReference": true,
  1191. "VariableReference": {
  1192. "m_id": "{243832E2-ED44-4750-A471-C04BCED3FCB6}"
  1193. }
  1194. },
  1195. {
  1196. "id": {
  1197. "m_id": "{CD6202C2-A6D0-48F3-9969-ADDC488003DA}"
  1198. },
  1199. "contracts": [
  1200. {
  1201. "$type": "SlotTypeContract"
  1202. }
  1203. ],
  1204. "slotName": "In",
  1205. "toolTip": "Input signal",
  1206. "Descriptor": {
  1207. "ConnectionType": 1,
  1208. "SlotType": 1
  1209. }
  1210. },
  1211. {
  1212. "id": {
  1213. "m_id": "{3DD6AFBA-EEAE-4F94-AB99-C5D648F12F47}"
  1214. },
  1215. "contracts": [
  1216. {
  1217. "$type": "SlotTypeContract"
  1218. }
  1219. ],
  1220. "slotName": "True",
  1221. "toolTip": "Signaled if the condition provided evaluates to true.",
  1222. "Descriptor": {
  1223. "ConnectionType": 2,
  1224. "SlotType": 1
  1225. }
  1226. },
  1227. {
  1228. "id": {
  1229. "m_id": "{FDD26CC5-A735-46E8-8AE4-1AAD63639AC0}"
  1230. },
  1231. "contracts": [
  1232. {
  1233. "$type": "SlotTypeContract"
  1234. }
  1235. ],
  1236. "slotName": "False",
  1237. "toolTip": "Signaled if the condition provided evaluates to false.",
  1238. "Descriptor": {
  1239. "ConnectionType": 2,
  1240. "SlotType": 1
  1241. }
  1242. }
  1243. ],
  1244. "Datums": [
  1245. {
  1246. "isOverloadedStorage": false,
  1247. "scriptCanvasType": {
  1248. "m_type": 0
  1249. },
  1250. "isNullPointer": false,
  1251. "$type": "bool",
  1252. "value": true,
  1253. "label": "Condition"
  1254. }
  1255. ]
  1256. }
  1257. }
  1258. },
  1259. {
  1260. "Id": {
  1261. "id": 2448382187017751
  1262. },
  1263. "Name": "SC-Node(SetLocalZ)",
  1264. "Components": {
  1265. "Component_[203024215230101144]": {
  1266. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1267. "Id": 203024215230101144,
  1268. "Slots": [
  1269. {
  1270. "id": {
  1271. "m_id": "{3F612B01-13B9-4BD5-A673-C070F128ACB7}"
  1272. },
  1273. "contracts": [
  1274. {
  1275. "$type": "SlotTypeContract"
  1276. }
  1277. ],
  1278. "slotName": "EntityId: 0",
  1279. "Descriptor": {
  1280. "ConnectionType": 1,
  1281. "SlotType": 2
  1282. },
  1283. "DataType": 1
  1284. },
  1285. {
  1286. "id": {
  1287. "m_id": "{1FEA927F-F2A2-4386-A530-C0B5D27A0A27}"
  1288. },
  1289. "contracts": [
  1290. {
  1291. "$type": "SlotTypeContract"
  1292. }
  1293. ],
  1294. "slotName": "Number: 1",
  1295. "Descriptor": {
  1296. "ConnectionType": 1,
  1297. "SlotType": 2
  1298. },
  1299. "DataType": 1
  1300. },
  1301. {
  1302. "id": {
  1303. "m_id": "{D1567BAC-1DA9-4061-B48F-F0A610A82E6E}"
  1304. },
  1305. "contracts": [
  1306. {
  1307. "$type": "SlotTypeContract"
  1308. }
  1309. ],
  1310. "slotName": "In",
  1311. "Descriptor": {
  1312. "ConnectionType": 1,
  1313. "SlotType": 1
  1314. }
  1315. },
  1316. {
  1317. "id": {
  1318. "m_id": "{67CB498F-B7FC-4835-B5E5-6AA8C1B3DEFF}"
  1319. },
  1320. "contracts": [
  1321. {
  1322. "$type": "SlotTypeContract"
  1323. }
  1324. ],
  1325. "slotName": "Out",
  1326. "Descriptor": {
  1327. "ConnectionType": 2,
  1328. "SlotType": 1
  1329. }
  1330. }
  1331. ],
  1332. "Datums": [
  1333. {
  1334. "isOverloadedStorage": false,
  1335. "scriptCanvasType": {
  1336. "m_type": 1
  1337. },
  1338. "isNullPointer": false,
  1339. "$type": "EntityId",
  1340. "value": {
  1341. "id": 2901262558
  1342. },
  1343. "label": "Source"
  1344. },
  1345. {
  1346. "isOverloadedStorage": false,
  1347. "scriptCanvasType": {
  1348. "m_type": 3
  1349. },
  1350. "isNullPointer": false,
  1351. "$type": "double",
  1352. "value": 0.0,
  1353. "label": "Z"
  1354. }
  1355. ],
  1356. "methodType": 0,
  1357. "methodName": "SetLocalZ",
  1358. "className": "TransformBus",
  1359. "resultSlotIDs": [
  1360. {}
  1361. ],
  1362. "inputSlots": [
  1363. {
  1364. "m_id": "{3F612B01-13B9-4BD5-A673-C070F128ACB7}"
  1365. },
  1366. {
  1367. "m_id": "{1FEA927F-F2A2-4386-A530-C0B5D27A0A27}"
  1368. }
  1369. ],
  1370. "prettyClassName": "TransformBus"
  1371. }
  1372. }
  1373. },
  1374. {
  1375. "Id": {
  1376. "id": 2448390776952343
  1377. },
  1378. "Name": "SC-Node(SetLocalZ)",
  1379. "Components": {
  1380. "Component_[203024215230101144]": {
  1381. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1382. "Id": 203024215230101144,
  1383. "Slots": [
  1384. {
  1385. "id": {
  1386. "m_id": "{3F612B01-13B9-4BD5-A673-C070F128ACB7}"
  1387. },
  1388. "contracts": [
  1389. {
  1390. "$type": "SlotTypeContract"
  1391. }
  1392. ],
  1393. "slotName": "EntityId: 0",
  1394. "Descriptor": {
  1395. "ConnectionType": 1,
  1396. "SlotType": 2
  1397. },
  1398. "DataType": 1
  1399. },
  1400. {
  1401. "id": {
  1402. "m_id": "{1FEA927F-F2A2-4386-A530-C0B5D27A0A27}"
  1403. },
  1404. "contracts": [
  1405. {
  1406. "$type": "SlotTypeContract"
  1407. }
  1408. ],
  1409. "slotName": "Number: 1",
  1410. "Descriptor": {
  1411. "ConnectionType": 1,
  1412. "SlotType": 2
  1413. },
  1414. "DataType": 1,
  1415. "IsReference": true,
  1416. "VariableReference": {
  1417. "m_id": "{6C17D7A9-A983-4FA6-BAD9-4193BFBDE971}"
  1418. }
  1419. },
  1420. {
  1421. "id": {
  1422. "m_id": "{D1567BAC-1DA9-4061-B48F-F0A610A82E6E}"
  1423. },
  1424. "contracts": [
  1425. {
  1426. "$type": "SlotTypeContract"
  1427. }
  1428. ],
  1429. "slotName": "In",
  1430. "Descriptor": {
  1431. "ConnectionType": 1,
  1432. "SlotType": 1
  1433. }
  1434. },
  1435. {
  1436. "id": {
  1437. "m_id": "{67CB498F-B7FC-4835-B5E5-6AA8C1B3DEFF}"
  1438. },
  1439. "contracts": [
  1440. {
  1441. "$type": "SlotTypeContract"
  1442. }
  1443. ],
  1444. "slotName": "Out",
  1445. "Descriptor": {
  1446. "ConnectionType": 2,
  1447. "SlotType": 1
  1448. }
  1449. }
  1450. ],
  1451. "Datums": [
  1452. {
  1453. "isOverloadedStorage": false,
  1454. "scriptCanvasType": {
  1455. "m_type": 1
  1456. },
  1457. "isNullPointer": false,
  1458. "$type": "EntityId",
  1459. "value": {
  1460. "id": 2901262558
  1461. },
  1462. "label": "Source"
  1463. },
  1464. {
  1465. "isOverloadedStorage": false,
  1466. "scriptCanvasType": {
  1467. "m_type": 3
  1468. },
  1469. "isNullPointer": false,
  1470. "$type": "double",
  1471. "value": 0.0,
  1472. "label": "Z"
  1473. }
  1474. ],
  1475. "methodType": 0,
  1476. "methodName": "SetLocalZ",
  1477. "className": "TransformBus",
  1478. "resultSlotIDs": [
  1479. {}
  1480. ],
  1481. "inputSlots": [
  1482. {
  1483. "m_id": "{3F612B01-13B9-4BD5-A673-C070F128ACB7}"
  1484. },
  1485. {
  1486. "m_id": "{1FEA927F-F2A2-4386-A530-C0B5D27A0A27}"
  1487. }
  1488. ],
  1489. "prettyClassName": "TransformBus"
  1490. }
  1491. }
  1492. },
  1493. {
  1494. "Id": {
  1495. "id": 2524751000507927
  1496. },
  1497. "Name": "SendScriptEvent",
  1498. "Components": {
  1499. "Component_[2545671611721842604]": {
  1500. "$type": "SendScriptEvent",
  1501. "Id": 2545671611721842604,
  1502. "Slots": [
  1503. {
  1504. "id": {
  1505. "m_id": "{580953CA-7DF5-4F41-98DB-A7E2A2D49C27}"
  1506. },
  1507. "contracts": [
  1508. {
  1509. "$type": "SlotTypeContract"
  1510. }
  1511. ],
  1512. "slotName": "In",
  1513. "toolTip": "Fires the specified ScriptEvent when signaled",
  1514. "Descriptor": {
  1515. "ConnectionType": 1,
  1516. "SlotType": 1
  1517. }
  1518. },
  1519. {
  1520. "id": {
  1521. "m_id": "{C565CDF2-B17E-4293-A919-A18A701D639A}"
  1522. },
  1523. "contracts": [
  1524. {
  1525. "$type": "SlotTypeContract"
  1526. }
  1527. ],
  1528. "slotName": "Out",
  1529. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  1530. "Descriptor": {
  1531. "ConnectionType": 2,
  1532. "SlotType": 1
  1533. }
  1534. },
  1535. {
  1536. "id": {
  1537. "m_id": "{EA01C677-AA29-47D0-93EF-46202930271A}"
  1538. },
  1539. "contracts": [
  1540. {
  1541. "$type": "SlotTypeContract"
  1542. }
  1543. ],
  1544. "slotName": "PowerUpHitPoints",
  1545. "toolTip": "Power Up Hit Points",
  1546. "Descriptor": {
  1547. "ConnectionType": 1,
  1548. "SlotType": 2
  1549. },
  1550. "DataType": 1,
  1551. "IsReference": true,
  1552. "VariableReference": {
  1553. "m_id": "{A7B4EF0C-6C18-4B9C-8DF2-5C85245B792C}"
  1554. }
  1555. }
  1556. ],
  1557. "Datums": [
  1558. {
  1559. "isOverloadedStorage": false,
  1560. "scriptCanvasType": {
  1561. "m_type": 3
  1562. },
  1563. "isNullPointer": false,
  1564. "$type": "double",
  1565. "value": 0.0,
  1566. "label": "PowerUpHitPoints"
  1567. }
  1568. ],
  1569. "m_version": 1,
  1570. "m_eventSlotMapping": {
  1571. "{91EC99AB-A84E-4A2D-8715-2C17421D9DFD}": {
  1572. "m_id": "{EA01C677-AA29-47D0-93EF-46202930271A}"
  1573. }
  1574. },
  1575. "m_scriptEventAssetId": {
  1576. "guid": "{062E5E9C-AFDB-5469-B154-3CF039DD7F7B}"
  1577. },
  1578. "m_asset": {
  1579. "assetId": {
  1580. "guid": "{062E5E9C-AFDB-5469-B154-3CF039DD7F7B}"
  1581. },
  1582. "loadBehavior": "QueueLoad",
  1583. "assetHint": "scriptcanvas/powerup.scriptevents"
  1584. },
  1585. "m_busId": {
  1586. "Value": 3484887998
  1587. },
  1588. "m_eventId": {
  1589. "Value": 3987865385
  1590. }
  1591. }
  1592. }
  1593. },
  1594. {
  1595. "Id": {
  1596. "id": 2477540719990295
  1597. },
  1598. "Name": "SC-Node(GetOnTriggerEnterEvent)",
  1599. "Components": {
  1600. "Component_[2735189319017190276]": {
  1601. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1602. "Id": 2735189319017190276,
  1603. "Slots": [
  1604. {
  1605. "id": {
  1606. "m_id": "{861A285C-A3A1-42B9-B784-4D927C007B51}"
  1607. },
  1608. "contracts": [
  1609. {
  1610. "$type": "SlotTypeContract"
  1611. }
  1612. ],
  1613. "slotName": "EntityId",
  1614. "Descriptor": {
  1615. "ConnectionType": 1,
  1616. "SlotType": 2
  1617. },
  1618. "DataType": 1
  1619. },
  1620. {
  1621. "id": {
  1622. "m_id": "{F73AFBC0-2100-45DD-9C12-902B68970D10}"
  1623. },
  1624. "contracts": [
  1625. {
  1626. "$type": "SlotTypeContract"
  1627. }
  1628. ],
  1629. "slotName": "In",
  1630. "Descriptor": {
  1631. "ConnectionType": 1,
  1632. "SlotType": 1
  1633. }
  1634. },
  1635. {
  1636. "id": {
  1637. "m_id": "{58BAC26B-46DF-42AE-A9D4-2EA473990C94}"
  1638. },
  1639. "contracts": [
  1640. {
  1641. "$type": "SlotTypeContract"
  1642. }
  1643. ],
  1644. "slotName": "Out",
  1645. "Descriptor": {
  1646. "ConnectionType": 2,
  1647. "SlotType": 1
  1648. }
  1649. },
  1650. {
  1651. "id": {
  1652. "m_id": "{C5E3FFD7-F9AA-4691-B97C-BCF2E0A46E47}"
  1653. },
  1654. "contracts": [
  1655. {
  1656. "$type": "SlotTypeContract"
  1657. }
  1658. ],
  1659. "slotName": "Event<AZStd::tuple<Crc32, int>, const TriggerEvent&>",
  1660. "DisplayDataType": {
  1661. "m_type": 4,
  1662. "m_azType": "{C00D2478-E0F3-57A3-AB60-A04DFC515016}"
  1663. },
  1664. "Descriptor": {
  1665. "ConnectionType": 2,
  1666. "SlotType": 2
  1667. },
  1668. "DataType": 1
  1669. }
  1670. ],
  1671. "Datums": [
  1672. {
  1673. "isOverloadedStorage": false,
  1674. "scriptCanvasType": {
  1675. "m_type": 1
  1676. },
  1677. "isNullPointer": false,
  1678. "$type": "EntityId",
  1679. "value": {
  1680. "id": 2901262558
  1681. },
  1682. "label": "EntityId"
  1683. }
  1684. ],
  1685. "methodType": 2,
  1686. "methodName": "GetOnTriggerEnterEvent",
  1687. "className": "SimulatedBody",
  1688. "resultSlotIDs": [
  1689. {}
  1690. ],
  1691. "inputSlots": [
  1692. {
  1693. "m_id": "{861A285C-A3A1-42B9-B784-4D927C007B51}"
  1694. }
  1695. ],
  1696. "prettyClassName": "SimulatedBody"
  1697. }
  1698. }
  1699. },
  1700. {
  1701. "Id": {
  1702. "id": 2448352122246679
  1703. },
  1704. "Name": "SC-Node(TimerNodeableNode)",
  1705. "Components": {
  1706. "Component_[2944305577309177605]": {
  1707. "$type": "TimerNodeableNode",
  1708. "Id": 2944305577309177605,
  1709. "Slots": [
  1710. {
  1711. "id": {
  1712. "m_id": "{9A997AD5-4B2B-44FD-A1DA-1E3250CCE947}"
  1713. },
  1714. "contracts": [
  1715. {
  1716. "$type": "SlotTypeContract"
  1717. }
  1718. ],
  1719. "slotName": "Start",
  1720. "toolTip": "Starts the timer",
  1721. "DisplayGroup": {
  1722. "Value": 2675529103
  1723. },
  1724. "Descriptor": {
  1725. "ConnectionType": 1,
  1726. "SlotType": 1
  1727. }
  1728. },
  1729. {
  1730. "id": {
  1731. "m_id": "{2E285443-28A3-4668-89DC-2037ED1ECA66}"
  1732. },
  1733. "contracts": [
  1734. {
  1735. "$type": "SlotTypeContract"
  1736. }
  1737. ],
  1738. "slotName": "On Start",
  1739. "toolTip": "Starts the timer",
  1740. "DisplayGroup": {
  1741. "Value": 2675529103
  1742. },
  1743. "Descriptor": {
  1744. "ConnectionType": 2,
  1745. "SlotType": 1
  1746. }
  1747. },
  1748. {
  1749. "id": {
  1750. "m_id": "{3FDF5B22-2EB8-49A5-92CB-904FF7CA9464}"
  1751. },
  1752. "contracts": [
  1753. {
  1754. "$type": "SlotTypeContract"
  1755. }
  1756. ],
  1757. "slotName": "Stop",
  1758. "toolTip": "Stops the timer",
  1759. "DisplayGroup": {
  1760. "Value": 3109426870
  1761. },
  1762. "Descriptor": {
  1763. "ConnectionType": 1,
  1764. "SlotType": 1
  1765. }
  1766. },
  1767. {
  1768. "id": {
  1769. "m_id": "{85A9F9EF-3E44-48DB-BC85-4026030AEE10}"
  1770. },
  1771. "contracts": [
  1772. {
  1773. "$type": "SlotTypeContract"
  1774. }
  1775. ],
  1776. "slotName": "On Stop",
  1777. "toolTip": "Stops the timer",
  1778. "DisplayGroup": {
  1779. "Value": 3109426870
  1780. },
  1781. "Descriptor": {
  1782. "ConnectionType": 2,
  1783. "SlotType": 1
  1784. }
  1785. },
  1786. {
  1787. "id": {
  1788. "m_id": "{A703EE95-CB7B-46EF-AC34-6F2C9AD94E10}"
  1789. },
  1790. "contracts": [
  1791. {
  1792. "$type": "SlotTypeContract"
  1793. }
  1794. ],
  1795. "slotName": "On Tick",
  1796. "toolTip": "Signaled at each tick while the timer is in operation.",
  1797. "DisplayGroup": {
  1798. "Value": 608626060
  1799. },
  1800. "Descriptor": {
  1801. "ConnectionType": 2,
  1802. "SlotType": 1
  1803. },
  1804. "IsLatent": true
  1805. },
  1806. {
  1807. "id": {
  1808. "m_id": "{A37C22FB-F343-4D97-8236-D6BD0932417B}"
  1809. },
  1810. "contracts": [
  1811. {
  1812. "$type": "SlotTypeContract"
  1813. }
  1814. ],
  1815. "slotName": "Milliseconds",
  1816. "toolTip": "The amount of time that has elapsed since the timer started in milliseconds.",
  1817. "DisplayDataType": {
  1818. "m_type": 3
  1819. },
  1820. "DisplayGroup": {
  1821. "Value": 608626060
  1822. },
  1823. "Descriptor": {
  1824. "ConnectionType": 2,
  1825. "SlotType": 2
  1826. },
  1827. "DataType": 1
  1828. },
  1829. {
  1830. "id": {
  1831. "m_id": "{4F30C184-A63D-43E1-BCAA-A8C168CA35D9}"
  1832. },
  1833. "contracts": [
  1834. {
  1835. "$type": "SlotTypeContract"
  1836. }
  1837. ],
  1838. "slotName": "Seconds",
  1839. "toolTip": "The amount of time that has elapsed since the timer started in seconds.",
  1840. "DisplayDataType": {
  1841. "m_type": 3
  1842. },
  1843. "DisplayGroup": {
  1844. "Value": 608626060
  1845. },
  1846. "Descriptor": {
  1847. "ConnectionType": 2,
  1848. "SlotType": 2
  1849. },
  1850. "DataType": 1
  1851. }
  1852. ],
  1853. "slotExecutionMap": {
  1854. "ins": [
  1855. {
  1856. "_slotId": {
  1857. "m_id": "{9A997AD5-4B2B-44FD-A1DA-1E3250CCE947}"
  1858. },
  1859. "_outs": [
  1860. {
  1861. "_slotId": {
  1862. "m_id": "{2E285443-28A3-4668-89DC-2037ED1ECA66}"
  1863. },
  1864. "_name": "On Start",
  1865. "_interfaceSourceId": "{C4022597-FF01-0000-0200-000000000000}"
  1866. }
  1867. ],
  1868. "_interfaceSourceId": "{50FAD6AE-FF01-0000-2000-000000000000}"
  1869. },
  1870. {
  1871. "_slotId": {
  1872. "m_id": "{3FDF5B22-2EB8-49A5-92CB-904FF7CA9464}"
  1873. },
  1874. "_outs": [
  1875. {
  1876. "_slotId": {
  1877. "m_id": "{85A9F9EF-3E44-48DB-BC85-4026030AEE10}"
  1878. },
  1879. "_name": "On Stop",
  1880. "_interfaceSourceId": "{C4022597-FF01-0000-0200-000000000000}"
  1881. }
  1882. ],
  1883. "_interfaceSourceId": "{50FAD6AE-FF01-0000-2000-000000000000}"
  1884. }
  1885. ],
  1886. "latents": [
  1887. {
  1888. "_slotId": {
  1889. "m_id": "{A703EE95-CB7B-46EF-AC34-6F2C9AD94E10}"
  1890. },
  1891. "_name": "On Tick",
  1892. "_outputs": [
  1893. {
  1894. "_slotId": {
  1895. "m_id": "{A37C22FB-F343-4D97-8236-D6BD0932417B}"
  1896. }
  1897. },
  1898. {
  1899. "_slotId": {
  1900. "m_id": "{4F30C184-A63D-43E1-BCAA-A8C168CA35D9}"
  1901. }
  1902. }
  1903. ],
  1904. "_interfaceSourceId": "{50FAD6AE-FF01-0000-2000-000000000000}"
  1905. }
  1906. ]
  1907. }
  1908. }
  1909. }
  1910. },
  1911. {
  1912. "Id": {
  1913. "id": 2448343532312087
  1914. },
  1915. "Name": "SC-Node(TimerNodeableNode)",
  1916. "Components": {
  1917. "Component_[2944305577309177605]": {
  1918. "$type": "TimerNodeableNode",
  1919. "Id": 2944305577309177605,
  1920. "Slots": [
  1921. {
  1922. "id": {
  1923. "m_id": "{9A997AD5-4B2B-44FD-A1DA-1E3250CCE947}"
  1924. },
  1925. "contracts": [
  1926. {
  1927. "$type": "SlotTypeContract"
  1928. }
  1929. ],
  1930. "slotName": "Start",
  1931. "toolTip": "Starts the timer",
  1932. "DisplayGroup": {
  1933. "Value": 2675529103
  1934. },
  1935. "Descriptor": {
  1936. "ConnectionType": 1,
  1937. "SlotType": 1
  1938. }
  1939. },
  1940. {
  1941. "id": {
  1942. "m_id": "{2E285443-28A3-4668-89DC-2037ED1ECA66}"
  1943. },
  1944. "contracts": [
  1945. {
  1946. "$type": "SlotTypeContract"
  1947. }
  1948. ],
  1949. "slotName": "On Start",
  1950. "toolTip": "Starts the timer",
  1951. "DisplayGroup": {
  1952. "Value": 2675529103
  1953. },
  1954. "Descriptor": {
  1955. "ConnectionType": 2,
  1956. "SlotType": 1
  1957. }
  1958. },
  1959. {
  1960. "id": {
  1961. "m_id": "{3FDF5B22-2EB8-49A5-92CB-904FF7CA9464}"
  1962. },
  1963. "contracts": [
  1964. {
  1965. "$type": "SlotTypeContract"
  1966. }
  1967. ],
  1968. "slotName": "Stop",
  1969. "toolTip": "Stops the timer",
  1970. "DisplayGroup": {
  1971. "Value": 3109426870
  1972. },
  1973. "Descriptor": {
  1974. "ConnectionType": 1,
  1975. "SlotType": 1
  1976. }
  1977. },
  1978. {
  1979. "id": {
  1980. "m_id": "{85A9F9EF-3E44-48DB-BC85-4026030AEE10}"
  1981. },
  1982. "contracts": [
  1983. {
  1984. "$type": "SlotTypeContract"
  1985. }
  1986. ],
  1987. "slotName": "On Stop",
  1988. "toolTip": "Stops the timer",
  1989. "DisplayGroup": {
  1990. "Value": 3109426870
  1991. },
  1992. "Descriptor": {
  1993. "ConnectionType": 2,
  1994. "SlotType": 1
  1995. }
  1996. },
  1997. {
  1998. "id": {
  1999. "m_id": "{A703EE95-CB7B-46EF-AC34-6F2C9AD94E10}"
  2000. },
  2001. "contracts": [
  2002. {
  2003. "$type": "SlotTypeContract"
  2004. }
  2005. ],
  2006. "slotName": "On Tick",
  2007. "toolTip": "Signaled at each tick while the timer is in operation.",
  2008. "DisplayGroup": {
  2009. "Value": 608626060
  2010. },
  2011. "Descriptor": {
  2012. "ConnectionType": 2,
  2013. "SlotType": 1
  2014. },
  2015. "IsLatent": true
  2016. },
  2017. {
  2018. "id": {
  2019. "m_id": "{A37C22FB-F343-4D97-8236-D6BD0932417B}"
  2020. },
  2021. "contracts": [
  2022. {
  2023. "$type": "SlotTypeContract"
  2024. }
  2025. ],
  2026. "slotName": "Milliseconds",
  2027. "toolTip": "The amount of time that has elapsed since the timer started in milliseconds.",
  2028. "DisplayDataType": {
  2029. "m_type": 3
  2030. },
  2031. "DisplayGroup": {
  2032. "Value": 608626060
  2033. },
  2034. "Descriptor": {
  2035. "ConnectionType": 2,
  2036. "SlotType": 2
  2037. },
  2038. "DataType": 1
  2039. },
  2040. {
  2041. "id": {
  2042. "m_id": "{4F30C184-A63D-43E1-BCAA-A8C168CA35D9}"
  2043. },
  2044. "contracts": [
  2045. {
  2046. "$type": "SlotTypeContract"
  2047. }
  2048. ],
  2049. "slotName": "Seconds",
  2050. "toolTip": "The amount of time that has elapsed since the timer started in seconds.",
  2051. "DisplayDataType": {
  2052. "m_type": 3
  2053. },
  2054. "DisplayGroup": {
  2055. "Value": 608626060
  2056. },
  2057. "Descriptor": {
  2058. "ConnectionType": 2,
  2059. "SlotType": 2
  2060. },
  2061. "DataType": 1
  2062. }
  2063. ],
  2064. "slotExecutionMap": {
  2065. "ins": [
  2066. {
  2067. "_slotId": {
  2068. "m_id": "{9A997AD5-4B2B-44FD-A1DA-1E3250CCE947}"
  2069. },
  2070. "_outs": [
  2071. {
  2072. "_slotId": {
  2073. "m_id": "{2E285443-28A3-4668-89DC-2037ED1ECA66}"
  2074. },
  2075. "_name": "On Start",
  2076. "_interfaceSourceId": "{20000000-0000-0000-2F00-000000000000}"
  2077. }
  2078. ],
  2079. "_interfaceSourceId": "{B0187121-FC7F-0000-3000-000000000000}"
  2080. },
  2081. {
  2082. "_slotId": {
  2083. "m_id": "{3FDF5B22-2EB8-49A5-92CB-904FF7CA9464}"
  2084. },
  2085. "_outs": [
  2086. {
  2087. "_slotId": {
  2088. "m_id": "{85A9F9EF-3E44-48DB-BC85-4026030AEE10}"
  2089. },
  2090. "_name": "On Stop",
  2091. "_interfaceSourceId": "{20000000-0000-0000-2F00-000000000000}"
  2092. }
  2093. ],
  2094. "_interfaceSourceId": "{B0187121-FC7F-0000-3000-000000000000}"
  2095. }
  2096. ],
  2097. "latents": [
  2098. {
  2099. "_slotId": {
  2100. "m_id": "{A703EE95-CB7B-46EF-AC34-6F2C9AD94E10}"
  2101. },
  2102. "_name": "On Tick",
  2103. "_outputs": [
  2104. {
  2105. "_slotId": {
  2106. "m_id": "{A37C22FB-F343-4D97-8236-D6BD0932417B}"
  2107. }
  2108. },
  2109. {
  2110. "_slotId": {
  2111. "m_id": "{4F30C184-A63D-43E1-BCAA-A8C168CA35D9}"
  2112. }
  2113. }
  2114. ],
  2115. "_interfaceSourceId": "{B0187121-FC7F-0000-3000-000000000000}"
  2116. }
  2117. ]
  2118. }
  2119. }
  2120. }
  2121. },
  2122. {
  2123. "Id": {
  2124. "id": 2486173604255255
  2125. },
  2126. "Name": "ReceiveScriptEvent",
  2127. "Components": {
  2128. "Component_[312256637293643066]": {
  2129. "$type": "ReceiveScriptEvent",
  2130. "Id": 312256637293643066,
  2131. "Slots": [
  2132. {
  2133. "id": {
  2134. "m_id": "{1FF61518-8F6A-4072-A7EA-D34FFE2D3758}"
  2135. },
  2136. "contracts": [
  2137. {
  2138. "$type": "SlotTypeContract"
  2139. }
  2140. ],
  2141. "slotName": "Connect",
  2142. "toolTip": "Connect this event handler to the specified entity.",
  2143. "Descriptor": {
  2144. "ConnectionType": 1,
  2145. "SlotType": 1
  2146. }
  2147. },
  2148. {
  2149. "id": {
  2150. "m_id": "{71F4E90E-7DF4-490B-9071-3D7B65F39197}"
  2151. },
  2152. "contracts": [
  2153. {
  2154. "$type": "SlotTypeContract"
  2155. }
  2156. ],
  2157. "slotName": "Disconnect",
  2158. "toolTip": "Disconnect this event handler.",
  2159. "Descriptor": {
  2160. "ConnectionType": 1,
  2161. "SlotType": 1
  2162. }
  2163. },
  2164. {
  2165. "id": {
  2166. "m_id": "{3567816E-7780-4810-8692-E176CF8D6639}"
  2167. },
  2168. "contracts": [
  2169. {
  2170. "$type": "SlotTypeContract"
  2171. }
  2172. ],
  2173. "slotName": "OnConnected",
  2174. "toolTip": "Signaled when a connection has taken place.",
  2175. "Descriptor": {
  2176. "ConnectionType": 2,
  2177. "SlotType": 1
  2178. }
  2179. },
  2180. {
  2181. "id": {
  2182. "m_id": "{50CED4FA-4962-4AE9-9AA5-2424F5A46A16}"
  2183. },
  2184. "contracts": [
  2185. {
  2186. "$type": "SlotTypeContract"
  2187. }
  2188. ],
  2189. "slotName": "OnDisconnected",
  2190. "toolTip": "Signaled when this event handler is disconnected.",
  2191. "Descriptor": {
  2192. "ConnectionType": 2,
  2193. "SlotType": 1
  2194. }
  2195. },
  2196. {
  2197. "id": {
  2198. "m_id": "{E2004E44-FDBD-4CF4-AC1B-91DAF8F0C754}"
  2199. },
  2200. "contracts": [
  2201. {
  2202. "$type": "SlotTypeContract"
  2203. }
  2204. ],
  2205. "slotName": "OnFailure",
  2206. "toolTip": "Signaled when it is not possible to connect this handler.",
  2207. "Descriptor": {
  2208. "ConnectionType": 2,
  2209. "SlotType": 1
  2210. }
  2211. },
  2212. {
  2213. "id": {
  2214. "m_id": "{7E594179-C540-4DC3-9018-332A57C72C4C}"
  2215. },
  2216. "contracts": [
  2217. {
  2218. "$type": "SlotTypeContract"
  2219. }
  2220. ],
  2221. "slotName": "Start",
  2222. "toolTip": "Start",
  2223. "DisplayDataType": {
  2224. "m_type": 0
  2225. },
  2226. "Descriptor": {
  2227. "ConnectionType": 2,
  2228. "SlotType": 2
  2229. },
  2230. "DataType": 1
  2231. },
  2232. {
  2233. "id": {
  2234. "m_id": "{A97146E6-53E6-4BE2-B1AA-69245ADEA2FD}"
  2235. },
  2236. "contracts": [
  2237. {
  2238. "$type": "SlotTypeContract"
  2239. }
  2240. ],
  2241. "slotName": "ExecutionSlot:Start",
  2242. "Descriptor": {
  2243. "ConnectionType": 2,
  2244. "SlotType": 1
  2245. },
  2246. "IsLatent": true
  2247. }
  2248. ],
  2249. "m_version": 3,
  2250. "m_eventMap": [
  2251. {
  2252. "Key": {
  2253. "Value": 2474373122
  2254. },
  2255. "Value": {
  2256. "m_scriptEventAssetId": {
  2257. "guid": "{43F99539-F920-5028-BC3C-18949F4B2CB7}"
  2258. },
  2259. "m_eventName": "Start",
  2260. "m_eventSlotId": {
  2261. "m_id": "{A97146E6-53E6-4BE2-B1AA-69245ADEA2FD}"
  2262. },
  2263. "m_parameterSlotIds": [
  2264. {
  2265. "m_id": "{7E594179-C540-4DC3-9018-332A57C72C4C}"
  2266. }
  2267. ],
  2268. "m_numExpectedArguments": 1
  2269. }
  2270. }
  2271. ],
  2272. "m_eventSlotMapping": {
  2273. "{19FD52B7-EF85-4654-BDD9-40E2B787BA31}": {
  2274. "m_id": "{7E594179-C540-4DC3-9018-332A57C72C4C}"
  2275. },
  2276. "{C982D617-CC85-4AD4-8224-36F055946DF3}": {
  2277. "m_id": "{A97146E6-53E6-4BE2-B1AA-69245ADEA2FD}"
  2278. }
  2279. },
  2280. "m_scriptEventAssetId": {
  2281. "guid": "{43F99539-F920-5028-BC3C-18949F4B2CB7}"
  2282. },
  2283. "m_asset": {
  2284. "assetId": {
  2285. "guid": "{43F99539-F920-5028-BC3C-18949F4B2CB7}"
  2286. },
  2287. "loadBehavior": "PreLoad",
  2288. "assetHint": "scriptcanvas/gamestartstop.scriptevents"
  2289. }
  2290. }
  2291. }
  2292. },
  2293. {
  2294. "Id": {
  2295. "id": 2448365007148567
  2296. },
  2297. "Name": "SC-Node(OperatorAdd)",
  2298. "Components": {
  2299. "Component_[3690557483092450249]": {
  2300. "$type": "OperatorAdd",
  2301. "Id": 3690557483092450249,
  2302. "Slots": [
  2303. {
  2304. "id": {
  2305. "m_id": "{6112A7DD-9E13-4365-B800-7F44FC75098C}"
  2306. },
  2307. "contracts": [
  2308. {
  2309. "$type": "SlotTypeContract"
  2310. }
  2311. ],
  2312. "slotName": "In",
  2313. "Descriptor": {
  2314. "ConnectionType": 1,
  2315. "SlotType": 1
  2316. }
  2317. },
  2318. {
  2319. "id": {
  2320. "m_id": "{F34E1DD5-5429-4FDF-9795-0FA8F1A11EC6}"
  2321. },
  2322. "contracts": [
  2323. {
  2324. "$type": "SlotTypeContract"
  2325. }
  2326. ],
  2327. "slotName": "Out",
  2328. "Descriptor": {
  2329. "ConnectionType": 2,
  2330. "SlotType": 1
  2331. }
  2332. },
  2333. {
  2334. "id": {
  2335. "m_id": "{E9C2200F-6F82-4B6A-8A07-FF9978991418}"
  2336. },
  2337. "DynamicTypeOverride": 3,
  2338. "contracts": [
  2339. {
  2340. "$type": "SlotTypeContract"
  2341. },
  2342. {
  2343. "$type": "MathOperatorContract",
  2344. "NativeTypes": [
  2345. {
  2346. "m_type": 3
  2347. },
  2348. {
  2349. "m_type": 6
  2350. },
  2351. {
  2352. "m_type": 8
  2353. },
  2354. {
  2355. "m_type": 9
  2356. },
  2357. {
  2358. "m_type": 10
  2359. },
  2360. {
  2361. "m_type": 11
  2362. },
  2363. {
  2364. "m_type": 12
  2365. },
  2366. {
  2367. "m_type": 14
  2368. },
  2369. {
  2370. "m_type": 15
  2371. }
  2372. ]
  2373. }
  2374. ],
  2375. "slotName": "Number 0",
  2376. "toolTip": "An operand to use in performing the specified Operation",
  2377. "DisplayDataType": {
  2378. "m_type": 3
  2379. },
  2380. "DisplayGroup": {
  2381. "Value": 1114760223
  2382. },
  2383. "Descriptor": {
  2384. "ConnectionType": 1,
  2385. "SlotType": 2
  2386. },
  2387. "DynamicGroup": {
  2388. "Value": 1114760223
  2389. },
  2390. "DataType": 1
  2391. },
  2392. {
  2393. "id": {
  2394. "m_id": "{94721CD3-AAC3-4344-83EE-0D0CC7697DE8}"
  2395. },
  2396. "DynamicTypeOverride": 3,
  2397. "contracts": [
  2398. {
  2399. "$type": "SlotTypeContract"
  2400. },
  2401. {
  2402. "$type": "MathOperatorContract",
  2403. "NativeTypes": [
  2404. {
  2405. "m_type": 3
  2406. },
  2407. {
  2408. "m_type": 6
  2409. },
  2410. {
  2411. "m_type": 8
  2412. },
  2413. {
  2414. "m_type": 9
  2415. },
  2416. {
  2417. "m_type": 10
  2418. },
  2419. {
  2420. "m_type": 11
  2421. },
  2422. {
  2423. "m_type": 12
  2424. },
  2425. {
  2426. "m_type": 14
  2427. },
  2428. {
  2429. "m_type": 15
  2430. }
  2431. ]
  2432. }
  2433. ],
  2434. "slotName": "Number 1",
  2435. "toolTip": "An operand to use in performing the specified Operation",
  2436. "DisplayDataType": {
  2437. "m_type": 3
  2438. },
  2439. "DisplayGroup": {
  2440. "Value": 1114760223
  2441. },
  2442. "Descriptor": {
  2443. "ConnectionType": 1,
  2444. "SlotType": 2
  2445. },
  2446. "DynamicGroup": {
  2447. "Value": 1114760223
  2448. },
  2449. "DataType": 1,
  2450. "IsReference": true,
  2451. "VariableReference": {
  2452. "m_id": "{D1421203-3D3D-4139-81AF-F519BA1619C4}"
  2453. }
  2454. },
  2455. {
  2456. "id": {
  2457. "m_id": "{723C4C62-9448-4FC5-9A0F-97569BC596D5}"
  2458. },
  2459. "DynamicTypeOverride": 3,
  2460. "contracts": [
  2461. {
  2462. "$type": "SlotTypeContract"
  2463. },
  2464. {
  2465. "$type": "MathOperatorContract",
  2466. "NativeTypes": [
  2467. {
  2468. "m_type": 3
  2469. },
  2470. {
  2471. "m_type": 6
  2472. },
  2473. {
  2474. "m_type": 8
  2475. },
  2476. {
  2477. "m_type": 9
  2478. },
  2479. {
  2480. "m_type": 10
  2481. },
  2482. {
  2483. "m_type": 11
  2484. },
  2485. {
  2486. "m_type": 12
  2487. },
  2488. {
  2489. "m_type": 14
  2490. },
  2491. {
  2492. "m_type": 15
  2493. }
  2494. ]
  2495. }
  2496. ],
  2497. "slotName": "Result",
  2498. "toolTip": "The result of the specified operation",
  2499. "DisplayDataType": {
  2500. "m_type": 3
  2501. },
  2502. "DisplayGroup": {
  2503. "Value": 1114760223
  2504. },
  2505. "Descriptor": {
  2506. "ConnectionType": 2,
  2507. "SlotType": 2
  2508. },
  2509. "DynamicGroup": {
  2510. "Value": 1114760223
  2511. },
  2512. "DataType": 1
  2513. }
  2514. ],
  2515. "Datums": [
  2516. {
  2517. "isOverloadedStorage": false,
  2518. "scriptCanvasType": {
  2519. "m_type": 3
  2520. },
  2521. "isNullPointer": false,
  2522. "$type": "double",
  2523. "value": 0.0,
  2524. "label": "Number 0"
  2525. },
  2526. {
  2527. "isOverloadedStorage": false,
  2528. "scriptCanvasType": {
  2529. "m_type": 3
  2530. },
  2531. "isNullPointer": false,
  2532. "$type": "double",
  2533. "value": 0.1,
  2534. "label": "Number 1"
  2535. }
  2536. ]
  2537. }
  2538. }
  2539. },
  2540. {
  2541. "Id": {
  2542. "id": 2477545014957591
  2543. },
  2544. "Name": "SC-EventNode(On Trigger Enter event)",
  2545. "Components": {
  2546. "Component_[4051230569165522295]": {
  2547. "$type": "AzEventHandler",
  2548. "Id": 4051230569165522295,
  2549. "Slots": [
  2550. {
  2551. "id": {
  2552. "m_id": "{0E5EA1B4-1EDA-4FAA-896B-B6A6D484463C}"
  2553. },
  2554. "contracts": [
  2555. {
  2556. "$type": "SlotTypeContract"
  2557. },
  2558. {
  2559. "$type": "ConnectionLimitContract",
  2560. "limit": 1
  2561. },
  2562. {
  2563. "$type": "RestrictedNodeContract",
  2564. "m_nodeId": {
  2565. "id": 2477540719990295
  2566. }
  2567. }
  2568. ],
  2569. "slotName": "Connect",
  2570. "toolTip": "Connect the AZ Event to this AZ Event Handler.",
  2571. "Descriptor": {
  2572. "ConnectionType": 1,
  2573. "SlotType": 1
  2574. }
  2575. },
  2576. {
  2577. "id": {
  2578. "m_id": "{E512BC2D-4760-4DD1-A7BF-42CE572FDA4E}"
  2579. },
  2580. "contracts": [
  2581. {
  2582. "$type": "SlotTypeContract"
  2583. }
  2584. ],
  2585. "slotName": "Disconnect",
  2586. "toolTip": "Disconnect current AZ Event from this AZ Event Handler.",
  2587. "Descriptor": {
  2588. "ConnectionType": 1,
  2589. "SlotType": 1
  2590. }
  2591. },
  2592. {
  2593. "id": {
  2594. "m_id": "{1F0DBCB8-A8D1-4D46-98CE-B116FF3C55B7}"
  2595. },
  2596. "contracts": [
  2597. {
  2598. "$type": "SlotTypeContract"
  2599. }
  2600. ],
  2601. "slotName": "On Connected",
  2602. "toolTip": "Signaled when a connection has taken place.",
  2603. "Descriptor": {
  2604. "ConnectionType": 2,
  2605. "SlotType": 1
  2606. }
  2607. },
  2608. {
  2609. "id": {
  2610. "m_id": "{7713339B-D0D6-48D7-8E50-92EF86EABB65}"
  2611. },
  2612. "contracts": [
  2613. {
  2614. "$type": "SlotTypeContract"
  2615. }
  2616. ],
  2617. "slotName": "On Disconnected",
  2618. "toolTip": "Signaled when this event handler is disconnected.",
  2619. "Descriptor": {
  2620. "ConnectionType": 2,
  2621. "SlotType": 1
  2622. }
  2623. },
  2624. {
  2625. "id": {
  2626. "m_id": "{98E79050-A2F6-47C0-B797-E6E7E9EDD277}"
  2627. },
  2628. "contracts": [
  2629. {
  2630. "$type": "SlotTypeContract"
  2631. }
  2632. ],
  2633. "slotName": "OnEvent",
  2634. "toolTip": "Triggered when the AZ Event invokes Signal() function.",
  2635. "Descriptor": {
  2636. "ConnectionType": 2,
  2637. "SlotType": 1
  2638. },
  2639. "IsLatent": true
  2640. },
  2641. {
  2642. "id": {
  2643. "m_id": "{3E52518C-EB6B-4228-A15B-9C53E34329EC}"
  2644. },
  2645. "contracts": [
  2646. {
  2647. "$type": "SlotTypeContract"
  2648. }
  2649. ],
  2650. "slotName": "Simulated Body Handle",
  2651. "DisplayDataType": {
  2652. "m_type": 4,
  2653. "m_azType": "{53C0CD3E-D0FC-5D90-9E9B-EF364D430B08}"
  2654. },
  2655. "Descriptor": {
  2656. "ConnectionType": 2,
  2657. "SlotType": 2
  2658. },
  2659. "DataType": 1
  2660. },
  2661. {
  2662. "id": {
  2663. "m_id": "{5043745B-DE65-4507-B617-73316EEEFA76}"
  2664. },
  2665. "contracts": [
  2666. {
  2667. "$type": "SlotTypeContract"
  2668. }
  2669. ],
  2670. "slotName": "Trigger Event",
  2671. "DisplayDataType": {
  2672. "m_type": 4,
  2673. "m_azType": "{7A0851A3-2CBD-4A03-85D5-1C40221E7F61}"
  2674. },
  2675. "Descriptor": {
  2676. "ConnectionType": 2,
  2677. "SlotType": 2
  2678. },
  2679. "DataType": 1
  2680. },
  2681. {
  2682. "id": {
  2683. "m_id": "{DB0B3667-F98A-440C-AE31-5B4D237FC4A3}"
  2684. },
  2685. "contracts": [
  2686. {
  2687. "$type": "SlotTypeContract"
  2688. },
  2689. {
  2690. "$type": "ConnectionLimitContract",
  2691. "limit": 1
  2692. },
  2693. {
  2694. "$type": "RestrictedNodeContract",
  2695. "m_nodeId": {
  2696. "id": 2477540719990295
  2697. }
  2698. }
  2699. ],
  2700. "slotName": "On Trigger Enter event",
  2701. "Descriptor": {
  2702. "ConnectionType": 1,
  2703. "SlotType": 2
  2704. },
  2705. "DataType": 1
  2706. }
  2707. ],
  2708. "Datums": [
  2709. {
  2710. "scriptCanvasType": {
  2711. "m_type": 4,
  2712. "m_azType": "{C00D2478-E0F3-57A3-AB60-A04DFC515016}"
  2713. },
  2714. "isNullPointer": true,
  2715. "label": "On Trigger Enter event"
  2716. }
  2717. ],
  2718. "m_azEventEntry": {
  2719. "AzEventEntryData_v0": {
  2720. "eventName": "On Trigger Enter event",
  2721. "parameterSlotIds": [
  2722. {
  2723. "m_id": "{3E52518C-EB6B-4228-A15B-9C53E34329EC}"
  2724. },
  2725. {
  2726. "m_id": "{5043745B-DE65-4507-B617-73316EEEFA76}"
  2727. }
  2728. ],
  2729. "azEventInputSlotId": {
  2730. "m_id": "{DB0B3667-F98A-440C-AE31-5B4D237FC4A3}"
  2731. }
  2732. }
  2733. }
  2734. }
  2735. }
  2736. },
  2737. {
  2738. "Id": {
  2739. "id": 2477536425022999
  2740. },
  2741. "Name": "SC-Node(SetParameterBool)",
  2742. "Components": {
  2743. "Component_[6101961256407715723]": {
  2744. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2745. "Id": 6101961256407715723,
  2746. "Slots": [
  2747. {
  2748. "id": {
  2749. "m_id": "{A0E52834-A9D3-4846-AE95-AA360509E90E}"
  2750. },
  2751. "contracts": [
  2752. {
  2753. "$type": "SlotTypeContract"
  2754. }
  2755. ],
  2756. "slotName": "EntityId: 0",
  2757. "Descriptor": {
  2758. "ConnectionType": 1,
  2759. "SlotType": 2
  2760. },
  2761. "DataType": 1
  2762. },
  2763. {
  2764. "id": {
  2765. "m_id": "{214884B9-1434-4C9D-BF23-2C3B46FB5A96}"
  2766. },
  2767. "contracts": [
  2768. {
  2769. "$type": "SlotTypeContract"
  2770. }
  2771. ],
  2772. "slotName": "Number: 1",
  2773. "Descriptor": {
  2774. "ConnectionType": 1,
  2775. "SlotType": 2
  2776. },
  2777. "DataType": 1
  2778. },
  2779. {
  2780. "id": {
  2781. "m_id": "{8C49060D-FBDF-4598-B8FC-F0AC7AB0306C}"
  2782. },
  2783. "contracts": [
  2784. {
  2785. "$type": "SlotTypeContract"
  2786. }
  2787. ],
  2788. "slotName": "Boolean: 2",
  2789. "Descriptor": {
  2790. "ConnectionType": 1,
  2791. "SlotType": 2
  2792. },
  2793. "DataType": 1
  2794. },
  2795. {
  2796. "id": {
  2797. "m_id": "{494672DF-E172-4F80-8DE6-2755856A273E}"
  2798. },
  2799. "contracts": [
  2800. {
  2801. "$type": "SlotTypeContract"
  2802. }
  2803. ],
  2804. "slotName": "In",
  2805. "Descriptor": {
  2806. "ConnectionType": 1,
  2807. "SlotType": 1
  2808. }
  2809. },
  2810. {
  2811. "id": {
  2812. "m_id": "{AD8AB980-DAD7-44FF-9C86-E2E74C6B0A87}"
  2813. },
  2814. "contracts": [
  2815. {
  2816. "$type": "SlotTypeContract"
  2817. }
  2818. ],
  2819. "slotName": "Out",
  2820. "Descriptor": {
  2821. "ConnectionType": 2,
  2822. "SlotType": 1
  2823. }
  2824. }
  2825. ],
  2826. "Datums": [
  2827. {
  2828. "isOverloadedStorage": false,
  2829. "scriptCanvasType": {
  2830. "m_type": 1
  2831. },
  2832. "isNullPointer": false,
  2833. "$type": "EntityId",
  2834. "value": {
  2835. "id": 2901262558
  2836. },
  2837. "label": "Source"
  2838. },
  2839. {
  2840. "isOverloadedStorage": false,
  2841. "scriptCanvasType": {
  2842. "m_type": 3
  2843. },
  2844. "isNullPointer": false,
  2845. "$type": "double",
  2846. "value": 1.0,
  2847. "label": "Parameter Index"
  2848. },
  2849. {
  2850. "isOverloadedStorage": false,
  2851. "scriptCanvasType": {
  2852. "m_type": 0
  2853. },
  2854. "isNullPointer": false,
  2855. "$type": "bool",
  2856. "value": true,
  2857. "label": "Value"
  2858. }
  2859. ],
  2860. "methodType": 0,
  2861. "methodName": "SetParameterBool",
  2862. "className": "AnimGraphComponentRequestBus",
  2863. "resultSlotIDs": [
  2864. {}
  2865. ],
  2866. "inputSlots": [
  2867. {
  2868. "m_id": "{A0E52834-A9D3-4846-AE95-AA360509E90E}"
  2869. },
  2870. {
  2871. "m_id": "{214884B9-1434-4C9D-BF23-2C3B46FB5A96}"
  2872. },
  2873. {
  2874. "m_id": "{8C49060D-FBDF-4598-B8FC-F0AC7AB0306C}"
  2875. }
  2876. ],
  2877. "prettyClassName": "AnimGraphComponentRequestBus"
  2878. }
  2879. }
  2880. },
  2881. {
  2882. "Id": {
  2883. "id": 2448369302115863
  2884. },
  2885. "Name": "SC Node(SetVariable)",
  2886. "Components": {
  2887. "Component_[61363378927739286]": {
  2888. "$type": "SetVariableNode",
  2889. "Id": 61363378927739286,
  2890. "Slots": [
  2891. {
  2892. "id": {
  2893. "m_id": "{87307E8F-5437-4C6E-9427-4F5D0E11AA30}"
  2894. },
  2895. "contracts": [
  2896. {
  2897. "$type": "SlotTypeContract"
  2898. }
  2899. ],
  2900. "slotName": "In",
  2901. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  2902. "Descriptor": {
  2903. "ConnectionType": 1,
  2904. "SlotType": 1
  2905. }
  2906. },
  2907. {
  2908. "id": {
  2909. "m_id": "{8376D962-A187-4316-8CC4-E381D5ADB773}"
  2910. },
  2911. "contracts": [
  2912. {
  2913. "$type": "SlotTypeContract"
  2914. }
  2915. ],
  2916. "slotName": "Out",
  2917. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  2918. "Descriptor": {
  2919. "ConnectionType": 2,
  2920. "SlotType": 1
  2921. }
  2922. },
  2923. {
  2924. "id": {
  2925. "m_id": "{A10F07BB-5AA9-42E3-A448-2372F0D8D24E}"
  2926. },
  2927. "contracts": [
  2928. {
  2929. "$type": "SlotTypeContract"
  2930. }
  2931. ],
  2932. "slotName": "Number",
  2933. "Descriptor": {
  2934. "ConnectionType": 1,
  2935. "SlotType": 2
  2936. },
  2937. "DataType": 1
  2938. },
  2939. {
  2940. "id": {
  2941. "m_id": "{0EDEF49B-892F-4487-A733-7F540414BD45}"
  2942. },
  2943. "contracts": [
  2944. {
  2945. "$type": "SlotTypeContract"
  2946. }
  2947. ],
  2948. "slotName": "Number",
  2949. "DisplayDataType": {
  2950. "m_type": 3
  2951. },
  2952. "Descriptor": {
  2953. "ConnectionType": 2,
  2954. "SlotType": 2
  2955. },
  2956. "DataType": 1
  2957. }
  2958. ],
  2959. "Datums": [
  2960. {
  2961. "isOverloadedStorage": false,
  2962. "scriptCanvasType": {
  2963. "m_type": 3
  2964. },
  2965. "isNullPointer": false,
  2966. "$type": "double",
  2967. "value": 0.0,
  2968. "label": "Number"
  2969. }
  2970. ],
  2971. "m_variableId": {
  2972. "m_id": "{6C17D7A9-A983-4FA6-BAD9-4193BFBDE971}"
  2973. },
  2974. "m_variableDataInSlotId": {
  2975. "m_id": "{A10F07BB-5AA9-42E3-A448-2372F0D8D24E}"
  2976. },
  2977. "m_variableDataOutSlotId": {
  2978. "m_id": "{0EDEF49B-892F-4487-A733-7F540414BD45}"
  2979. }
  2980. }
  2981. }
  2982. },
  2983. {
  2984. "Id": {
  2985. "id": 2448356417213975
  2986. },
  2987. "Name": "SC-Node(GetLocalZ)",
  2988. "Components": {
  2989. "Component_[661166829510711511]": {
  2990. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2991. "Id": 661166829510711511,
  2992. "Slots": [
  2993. {
  2994. "id": {
  2995. "m_id": "{04CEF0A3-83C1-4BCA-B657-B27534D6B40A}"
  2996. },
  2997. "contracts": [
  2998. {
  2999. "$type": "SlotTypeContract"
  3000. }
  3001. ],
  3002. "slotName": "EntityId",
  3003. "Descriptor": {
  3004. "ConnectionType": 1,
  3005. "SlotType": 2
  3006. },
  3007. "DataType": 1
  3008. },
  3009. {
  3010. "id": {
  3011. "m_id": "{8F024BEB-4864-4BF0-8F84-60C08981C196}"
  3012. },
  3013. "contracts": [
  3014. {
  3015. "$type": "SlotTypeContract"
  3016. }
  3017. ],
  3018. "slotName": "In",
  3019. "Descriptor": {
  3020. "ConnectionType": 1,
  3021. "SlotType": 1
  3022. }
  3023. },
  3024. {
  3025. "id": {
  3026. "m_id": "{041CD197-668D-4CA0-B2B7-9C5E16A95E5A}"
  3027. },
  3028. "contracts": [
  3029. {
  3030. "$type": "SlotTypeContract"
  3031. }
  3032. ],
  3033. "slotName": "Out",
  3034. "Descriptor": {
  3035. "ConnectionType": 2,
  3036. "SlotType": 1
  3037. }
  3038. },
  3039. {
  3040. "id": {
  3041. "m_id": "{FAA637A6-0969-41C3-A65A-DBCCADF407CD}"
  3042. },
  3043. "contracts": [
  3044. {
  3045. "$type": "SlotTypeContract"
  3046. }
  3047. ],
  3048. "slotName": "Number",
  3049. "DisplayDataType": {
  3050. "m_type": 3
  3051. },
  3052. "Descriptor": {
  3053. "ConnectionType": 2,
  3054. "SlotType": 2
  3055. },
  3056. "DataType": 1
  3057. }
  3058. ],
  3059. "Datums": [
  3060. {
  3061. "isOverloadedStorage": false,
  3062. "scriptCanvasType": {
  3063. "m_type": 1
  3064. },
  3065. "isNullPointer": false,
  3066. "$type": "EntityId",
  3067. "value": {
  3068. "id": 2901262558
  3069. },
  3070. "label": "EntityId"
  3071. }
  3072. ],
  3073. "methodType": 0,
  3074. "methodName": "GetLocalZ",
  3075. "className": "TransformBus",
  3076. "resultSlotIDs": [
  3077. {}
  3078. ],
  3079. "inputSlots": [
  3080. {
  3081. "m_id": "{04CEF0A3-83C1-4BCA-B657-B27534D6B40A}"
  3082. }
  3083. ],
  3084. "prettyClassName": "TransformBus"
  3085. }
  3086. }
  3087. },
  3088. {
  3089. "Id": {
  3090. "id": 2448373597083159
  3091. },
  3092. "Name": "SC-Node(GetLocalZ)",
  3093. "Components": {
  3094. "Component_[661166829510711511]": {
  3095. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3096. "Id": 661166829510711511,
  3097. "Slots": [
  3098. {
  3099. "id": {
  3100. "m_id": "{04CEF0A3-83C1-4BCA-B657-B27534D6B40A}"
  3101. },
  3102. "contracts": [
  3103. {
  3104. "$type": "SlotTypeContract"
  3105. }
  3106. ],
  3107. "slotName": "EntityId",
  3108. "Descriptor": {
  3109. "ConnectionType": 1,
  3110. "SlotType": 2
  3111. },
  3112. "DataType": 1
  3113. },
  3114. {
  3115. "id": {
  3116. "m_id": "{8F024BEB-4864-4BF0-8F84-60C08981C196}"
  3117. },
  3118. "contracts": [
  3119. {
  3120. "$type": "SlotTypeContract"
  3121. }
  3122. ],
  3123. "slotName": "In",
  3124. "Descriptor": {
  3125. "ConnectionType": 1,
  3126. "SlotType": 1
  3127. }
  3128. },
  3129. {
  3130. "id": {
  3131. "m_id": "{041CD197-668D-4CA0-B2B7-9C5E16A95E5A}"
  3132. },
  3133. "contracts": [
  3134. {
  3135. "$type": "SlotTypeContract"
  3136. }
  3137. ],
  3138. "slotName": "Out",
  3139. "Descriptor": {
  3140. "ConnectionType": 2,
  3141. "SlotType": 1
  3142. }
  3143. },
  3144. {
  3145. "id": {
  3146. "m_id": "{FAA637A6-0969-41C3-A65A-DBCCADF407CD}"
  3147. },
  3148. "contracts": [
  3149. {
  3150. "$type": "SlotTypeContract"
  3151. }
  3152. ],
  3153. "slotName": "Number",
  3154. "DisplayDataType": {
  3155. "m_type": 3
  3156. },
  3157. "Descriptor": {
  3158. "ConnectionType": 2,
  3159. "SlotType": 2
  3160. },
  3161. "DataType": 1
  3162. }
  3163. ],
  3164. "Datums": [
  3165. {
  3166. "isOverloadedStorage": false,
  3167. "scriptCanvasType": {
  3168. "m_type": 1
  3169. },
  3170. "isNullPointer": false,
  3171. "$type": "EntityId",
  3172. "value": {
  3173. "id": 2901262558
  3174. },
  3175. "label": "EntityId"
  3176. }
  3177. ],
  3178. "methodType": 0,
  3179. "methodName": "GetLocalZ",
  3180. "className": "TransformBus",
  3181. "resultSlotIDs": [
  3182. {}
  3183. ],
  3184. "inputSlots": [
  3185. {
  3186. "m_id": "{04CEF0A3-83C1-4BCA-B657-B27534D6B40A}"
  3187. }
  3188. ],
  3189. "prettyClassName": "TransformBus"
  3190. }
  3191. }
  3192. },
  3193. {
  3194. "Id": {
  3195. "id": 2448395071919639
  3196. },
  3197. "Name": "SC-Node(Gate)",
  3198. "Components": {
  3199. "Component_[681382770975820388]": {
  3200. "$type": "Gate",
  3201. "Id": 681382770975820388,
  3202. "Slots": [
  3203. {
  3204. "id": {
  3205. "m_id": "{FDDC70B6-E0FB-438A-8BA0-ABC55A5305E5}"
  3206. },
  3207. "contracts": [
  3208. {
  3209. "$type": "SlotTypeContract"
  3210. }
  3211. ],
  3212. "slotName": "Condition",
  3213. "toolTip": "If true the node will signal the Output and proceed execution",
  3214. "Descriptor": {
  3215. "ConnectionType": 1,
  3216. "SlotType": 2
  3217. },
  3218. "DataType": 1,
  3219. "IsReference": true,
  3220. "VariableReference": {
  3221. "m_id": "{243832E2-ED44-4750-A471-C04BCED3FCB6}"
  3222. }
  3223. },
  3224. {
  3225. "id": {
  3226. "m_id": "{16186E99-61D5-429D-BEC3-D2FCDE3EE840}"
  3227. },
  3228. "contracts": [
  3229. {
  3230. "$type": "SlotTypeContract"
  3231. }
  3232. ],
  3233. "slotName": "In",
  3234. "toolTip": "Input signal",
  3235. "Descriptor": {
  3236. "ConnectionType": 1,
  3237. "SlotType": 1
  3238. }
  3239. },
  3240. {
  3241. "id": {
  3242. "m_id": "{A9F18769-E852-4DED-97F9-141996A9123B}"
  3243. },
  3244. "contracts": [
  3245. {
  3246. "$type": "SlotTypeContract"
  3247. }
  3248. ],
  3249. "slotName": "True",
  3250. "toolTip": "Signaled if the condition provided evaluates to true.",
  3251. "Descriptor": {
  3252. "ConnectionType": 2,
  3253. "SlotType": 1
  3254. }
  3255. },
  3256. {
  3257. "id": {
  3258. "m_id": "{EC4BC430-4165-4E0E-A789-17C64473E7C1}"
  3259. },
  3260. "contracts": [
  3261. {
  3262. "$type": "SlotTypeContract"
  3263. }
  3264. ],
  3265. "slotName": "False",
  3266. "toolTip": "Signaled if the condition provided evaluates to false.",
  3267. "Descriptor": {
  3268. "ConnectionType": 2,
  3269. "SlotType": 1
  3270. }
  3271. }
  3272. ],
  3273. "Datums": [
  3274. {
  3275. "isOverloadedStorage": false,
  3276. "scriptCanvasType": {
  3277. "m_type": 0
  3278. },
  3279. "isNullPointer": false,
  3280. "$type": "bool",
  3281. "value": false,
  3282. "label": "Condition"
  3283. }
  3284. ]
  3285. }
  3286. }
  3287. },
  3288. {
  3289. "Id": {
  3290. "id": 2576780234331671
  3291. },
  3292. "Name": "SC-Node(Print)",
  3293. "Components": {
  3294. "Component_[7768868214116569162]": {
  3295. "$type": "Print",
  3296. "Id": 7768868214116569162,
  3297. "Slots": [
  3298. {
  3299. "id": {
  3300. "m_id": "{8391E0FD-0E40-49C3-BA27-D5D002AF215B}"
  3301. },
  3302. "contracts": [
  3303. {
  3304. "$type": "SlotTypeContract"
  3305. }
  3306. ],
  3307. "slotName": "In",
  3308. "toolTip": "Input signal",
  3309. "Descriptor": {
  3310. "ConnectionType": 1,
  3311. "SlotType": 1
  3312. }
  3313. },
  3314. {
  3315. "id": {
  3316. "m_id": "{6344673A-D9B8-411E-8B8E-B73E66EB18E3}"
  3317. },
  3318. "contracts": [
  3319. {
  3320. "$type": "SlotTypeContract"
  3321. }
  3322. ],
  3323. "slotName": "Out",
  3324. "Descriptor": {
  3325. "ConnectionType": 2,
  3326. "SlotType": 1
  3327. }
  3328. }
  3329. ],
  3330. "m_format": "HIT POWER UP",
  3331. "m_unresolvedString": [
  3332. "HIT POWER UP"
  3333. ]
  3334. }
  3335. }
  3336. },
  3337. {
  3338. "Id": {
  3339. "id": 2448407956821527
  3340. },
  3341. "Name": "SC Node(SetVariable)",
  3342. "Components": {
  3343. "Component_[8055904075185414838]": {
  3344. "$type": "SetVariableNode",
  3345. "Id": 8055904075185414838,
  3346. "Slots": [
  3347. {
  3348. "id": {
  3349. "m_id": "{97D52FD4-5AD1-4B0A-A387-215464070823}"
  3350. },
  3351. "contracts": [
  3352. {
  3353. "$type": "SlotTypeContract"
  3354. }
  3355. ],
  3356. "slotName": "In",
  3357. "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
  3358. "Descriptor": {
  3359. "ConnectionType": 1,
  3360. "SlotType": 1
  3361. }
  3362. },
  3363. {
  3364. "id": {
  3365. "m_id": "{C51FDB68-5538-4C80-9780-1443DFB19147}"
  3366. },
  3367. "contracts": [
  3368. {
  3369. "$type": "SlotTypeContract"
  3370. }
  3371. ],
  3372. "slotName": "Out",
  3373. "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
  3374. "Descriptor": {
  3375. "ConnectionType": 2,
  3376. "SlotType": 1
  3377. }
  3378. },
  3379. {
  3380. "id": {
  3381. "m_id": "{880E2E7C-D4A5-484A-AB95-06B60377895F}"
  3382. },
  3383. "contracts": [
  3384. {
  3385. "$type": "SlotTypeContract"
  3386. }
  3387. ],
  3388. "slotName": "Boolean",
  3389. "Descriptor": {
  3390. "ConnectionType": 1,
  3391. "SlotType": 2
  3392. },
  3393. "DataType": 1
  3394. },
  3395. {
  3396. "id": {
  3397. "m_id": "{2A0BC860-2BBA-4106-804B-22CE94D949E9}"
  3398. },
  3399. "contracts": [
  3400. {
  3401. "$type": "SlotTypeContract"
  3402. }
  3403. ],
  3404. "slotName": "Boolean",
  3405. "DisplayDataType": {
  3406. "m_type": 0
  3407. },
  3408. "Descriptor": {
  3409. "ConnectionType": 2,
  3410. "SlotType": 2
  3411. },
  3412. "DataType": 1
  3413. }
  3414. ],
  3415. "Datums": [
  3416. {
  3417. "isOverloadedStorage": false,
  3418. "scriptCanvasType": {
  3419. "m_type": 0
  3420. },
  3421. "isNullPointer": false,
  3422. "$type": "bool",
  3423. "value": true,
  3424. "label": "Boolean"
  3425. }
  3426. ],
  3427. "m_variableId": {
  3428. "m_id": "{243832E2-ED44-4750-A471-C04BCED3FCB6}"
  3429. },
  3430. "m_variableDataInSlotId": {
  3431. "m_id": "{880E2E7C-D4A5-484A-AB95-06B60377895F}"
  3432. },
  3433. "m_variableDataOutSlotId": {
  3434. "m_id": "{2A0BC860-2BBA-4106-804B-22CE94D949E9}"
  3435. }
  3436. }
  3437. }
  3438. },
  3439. {
  3440. "Id": {
  3441. "id": 2448347827279383
  3442. },
  3443. "Name": "SC-Node(OperatorSub)",
  3444. "Components": {
  3445. "Component_[840294472850028129]": {
  3446. "$type": "OperatorSub",
  3447. "Id": 840294472850028129,
  3448. "Slots": [
  3449. {
  3450. "id": {
  3451. "m_id": "{2DDA07DB-3371-4FBC-BEB3-C4C605B82A7D}"
  3452. },
  3453. "contracts": [
  3454. {
  3455. "$type": "SlotTypeContract"
  3456. }
  3457. ],
  3458. "slotName": "In",
  3459. "Descriptor": {
  3460. "ConnectionType": 1,
  3461. "SlotType": 1
  3462. }
  3463. },
  3464. {
  3465. "id": {
  3466. "m_id": "{B2C484C5-052C-421D-86D7-68DE28A15026}"
  3467. },
  3468. "contracts": [
  3469. {
  3470. "$type": "SlotTypeContract"
  3471. }
  3472. ],
  3473. "slotName": "Out",
  3474. "Descriptor": {
  3475. "ConnectionType": 2,
  3476. "SlotType": 1
  3477. }
  3478. },
  3479. {
  3480. "id": {
  3481. "m_id": "{BBC744F6-F7DD-4B08-91DC-145B2CE44B76}"
  3482. },
  3483. "DynamicTypeOverride": 3,
  3484. "contracts": [
  3485. {
  3486. "$type": "SlotTypeContract"
  3487. },
  3488. {
  3489. "$type": "MathOperatorContract",
  3490. "NativeTypes": [
  3491. {
  3492. "m_type": 3
  3493. },
  3494. {
  3495. "m_type": 8
  3496. },
  3497. {
  3498. "m_type": 9
  3499. },
  3500. {
  3501. "m_type": 10
  3502. },
  3503. {
  3504. "m_type": 12
  3505. },
  3506. {
  3507. "m_type": 14
  3508. },
  3509. {
  3510. "m_type": 15
  3511. }
  3512. ]
  3513. }
  3514. ],
  3515. "slotName": "Number 0",
  3516. "toolTip": "An operand to use in performing the specified Operation",
  3517. "DisplayDataType": {
  3518. "m_type": 3
  3519. },
  3520. "DisplayGroup": {
  3521. "Value": 1114760223
  3522. },
  3523. "Descriptor": {
  3524. "ConnectionType": 1,
  3525. "SlotType": 2
  3526. },
  3527. "DynamicGroup": {
  3528. "Value": 1114760223
  3529. },
  3530. "DataType": 1
  3531. },
  3532. {
  3533. "id": {
  3534. "m_id": "{4C143524-70AB-4FE0-B56E-6DAA01E08590}"
  3535. },
  3536. "DynamicTypeOverride": 3,
  3537. "contracts": [
  3538. {
  3539. "$type": "SlotTypeContract"
  3540. },
  3541. {
  3542. "$type": "MathOperatorContract",
  3543. "NativeTypes": [
  3544. {
  3545. "m_type": 3
  3546. },
  3547. {
  3548. "m_type": 8
  3549. },
  3550. {
  3551. "m_type": 9
  3552. },
  3553. {
  3554. "m_type": 10
  3555. },
  3556. {
  3557. "m_type": 12
  3558. },
  3559. {
  3560. "m_type": 14
  3561. },
  3562. {
  3563. "m_type": 15
  3564. }
  3565. ]
  3566. }
  3567. ],
  3568. "slotName": "Number 1",
  3569. "toolTip": "An operand to use in performing the specified Operation",
  3570. "DisplayDataType": {
  3571. "m_type": 3
  3572. },
  3573. "DisplayGroup": {
  3574. "Value": 1114760223
  3575. },
  3576. "Descriptor": {
  3577. "ConnectionType": 1,
  3578. "SlotType": 2
  3579. },
  3580. "DynamicGroup": {
  3581. "Value": 1114760223
  3582. },
  3583. "DataType": 1,
  3584. "IsReference": true,
  3585. "VariableReference": {
  3586. "m_id": "{D1421203-3D3D-4139-81AF-F519BA1619C4}"
  3587. }
  3588. },
  3589. {
  3590. "id": {
  3591. "m_id": "{0497ECF8-A631-495B-B924-E365DDD70490}"
  3592. },
  3593. "DynamicTypeOverride": 3,
  3594. "contracts": [
  3595. {
  3596. "$type": "SlotTypeContract"
  3597. },
  3598. {
  3599. "$type": "MathOperatorContract",
  3600. "NativeTypes": [
  3601. {
  3602. "m_type": 3
  3603. },
  3604. {
  3605. "m_type": 8
  3606. },
  3607. {
  3608. "m_type": 9
  3609. },
  3610. {
  3611. "m_type": 10
  3612. },
  3613. {
  3614. "m_type": 12
  3615. },
  3616. {
  3617. "m_type": 14
  3618. },
  3619. {
  3620. "m_type": 15
  3621. }
  3622. ]
  3623. }
  3624. ],
  3625. "slotName": "Result",
  3626. "toolTip": "The result of the specified operation",
  3627. "DisplayDataType": {
  3628. "m_type": 3
  3629. },
  3630. "DisplayGroup": {
  3631. "Value": 1114760223
  3632. },
  3633. "Descriptor": {
  3634. "ConnectionType": 2,
  3635. "SlotType": 2
  3636. },
  3637. "DynamicGroup": {
  3638. "Value": 1114760223
  3639. },
  3640. "DataType": 1
  3641. }
  3642. ],
  3643. "Datums": [
  3644. {
  3645. "isOverloadedStorage": false,
  3646. "scriptCanvasType": {
  3647. "m_type": 3
  3648. },
  3649. "isNullPointer": false,
  3650. "$type": "double",
  3651. "value": 0.0,
  3652. "label": "Number 0"
  3653. },
  3654. {
  3655. "isOverloadedStorage": false,
  3656. "scriptCanvasType": {
  3657. "m_type": 3
  3658. },
  3659. "isNullPointer": false,
  3660. "$type": "double",
  3661. "value": 0.1,
  3662. "label": "Number 1"
  3663. }
  3664. ]
  3665. }
  3666. }
  3667. }
  3668. ],
  3669. "m_connections": [
  3670. {
  3671. "Id": {
  3672. "id": 2448429431658007
  3673. },
  3674. "Name": "srcEndpoint=(Timer: On Tick), destEndpoint=(GetLocalRotation: In)",
  3675. "Components": {
  3676. "Component_[1232505410463418281]": {
  3677. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3678. "Id": 1232505410463418281,
  3679. "sourceEndpoint": {
  3680. "nodeId": {
  3681. "id": 2448343532312087
  3682. },
  3683. "slotId": {
  3684. "m_id": "{A703EE95-CB7B-46EF-AC34-6F2C9AD94E10}"
  3685. }
  3686. },
  3687. "targetEndpoint": {
  3688. "nodeId": {
  3689. "id": 2448403661854231
  3690. },
  3691. "slotId": {
  3692. "m_id": "{2C7364C4-FC18-42D4-AD22-B03398D0B6A1}"
  3693. }
  3694. }
  3695. }
  3696. }
  3697. },
  3698. {
  3699. "Id": {
  3700. "id": 2448433726625303
  3701. },
  3702. "Name": "srcEndpoint=(GetLocalRotation: Out), destEndpoint=(Add (+): In)",
  3703. "Components": {
  3704. "Component_[5654415055828364333]": {
  3705. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3706. "Id": 5654415055828364333,
  3707. "sourceEndpoint": {
  3708. "nodeId": {
  3709. "id": 2448403661854231
  3710. },
  3711. "slotId": {
  3712. "m_id": "{F66C5DC0-8B28-4104-860C-27A63A4D434F}"
  3713. }
  3714. },
  3715. "targetEndpoint": {
  3716. "nodeId": {
  3717. "id": 2448399366886935
  3718. },
  3719. "slotId": {
  3720. "m_id": "{29D72DDE-09B8-4D15-AB76-614BFAC143D5}"
  3721. }
  3722. }
  3723. }
  3724. }
  3725. },
  3726. {
  3727. "Id": {
  3728. "id": 2448438021592599
  3729. },
  3730. "Name": "srcEndpoint=(GetLocalRotation: Vector3), destEndpoint=(Add (+): Value 0)",
  3731. "Components": {
  3732. "Component_[8804768688577727518]": {
  3733. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3734. "Id": 8804768688577727518,
  3735. "sourceEndpoint": {
  3736. "nodeId": {
  3737. "id": 2448403661854231
  3738. },
  3739. "slotId": {
  3740. "m_id": "{21772203-37B0-42BA-B171-8EC5152B0FBF}"
  3741. }
  3742. },
  3743. "targetEndpoint": {
  3744. "nodeId": {
  3745. "id": 2448399366886935
  3746. },
  3747. "slotId": {
  3748. "m_id": "{06788EEA-01A9-49BE-B2D4-8574071A8CA0}"
  3749. }
  3750. }
  3751. }
  3752. }
  3753. },
  3754. {
  3755. "Id": {
  3756. "id": 2448442316559895
  3757. },
  3758. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(SetLocalRotation: In)",
  3759. "Components": {
  3760. "Component_[1259881495039947382]": {
  3761. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3762. "Id": 1259881495039947382,
  3763. "sourceEndpoint": {
  3764. "nodeId": {
  3765. "id": 2448399366886935
  3766. },
  3767. "slotId": {
  3768. "m_id": "{E7807EDC-F4AC-4367-88D2-A8F28F20B108}"
  3769. }
  3770. },
  3771. "targetEndpoint": {
  3772. "nodeId": {
  3773. "id": 2448416546756119
  3774. },
  3775. "slotId": {
  3776. "m_id": "{26C8A88A-87C7-4E8A-A562-F58E3533F470}"
  3777. }
  3778. }
  3779. }
  3780. }
  3781. },
  3782. {
  3783. "Id": {
  3784. "id": 2448446611527191
  3785. },
  3786. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(SetLocalRotation: Vector3: 1)",
  3787. "Components": {
  3788. "Component_[8063364363285078339]": {
  3789. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3790. "Id": 8063364363285078339,
  3791. "sourceEndpoint": {
  3792. "nodeId": {
  3793. "id": 2448399366886935
  3794. },
  3795. "slotId": {
  3796. "m_id": "{82CE0770-5806-4173-8B51-01691674930D}"
  3797. }
  3798. },
  3799. "targetEndpoint": {
  3800. "nodeId": {
  3801. "id": 2448416546756119
  3802. },
  3803. "slotId": {
  3804. "m_id": "{52F55C49-D942-4E7B-94C8-5ADF46EEDEAB}"
  3805. }
  3806. }
  3807. }
  3808. }
  3809. },
  3810. {
  3811. "Id": {
  3812. "id": 2448450906494487
  3813. },
  3814. "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(SetLocalZ: In)",
  3815. "Components": {
  3816. "Component_[12029136585557987733]": {
  3817. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3818. "Id": 12029136585557987733,
  3819. "sourceEndpoint": {
  3820. "nodeId": {
  3821. "id": 2448365007148567
  3822. },
  3823. "slotId": {
  3824. "m_id": "{F34E1DD5-5429-4FDF-9795-0FA8F1A11EC6}"
  3825. }
  3826. },
  3827. "targetEndpoint": {
  3828. "nodeId": {
  3829. "id": 2448382187017751
  3830. },
  3831. "slotId": {
  3832. "m_id": "{D1567BAC-1DA9-4061-B48F-F0A610A82E6E}"
  3833. }
  3834. }
  3835. }
  3836. }
  3837. },
  3838. {
  3839. "Id": {
  3840. "id": 2448455201461783
  3841. },
  3842. "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(SetLocalZ: Number: 1)",
  3843. "Components": {
  3844. "Component_[4912157072833908387]": {
  3845. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3846. "Id": 4912157072833908387,
  3847. "sourceEndpoint": {
  3848. "nodeId": {
  3849. "id": 2448365007148567
  3850. },
  3851. "slotId": {
  3852. "m_id": "{723C4C62-9448-4FC5-9A0F-97569BC596D5}"
  3853. }
  3854. },
  3855. "targetEndpoint": {
  3856. "nodeId": {
  3857. "id": 2448382187017751
  3858. },
  3859. "slotId": {
  3860. "m_id": "{1FEA927F-F2A2-4386-A530-C0B5D27A0A27}"
  3861. }
  3862. }
  3863. }
  3864. }
  3865. },
  3866. {
  3867. "Id": {
  3868. "id": 2448459496429079
  3869. },
  3870. "Name": "srcEndpoint=(Subtract (-): Result), destEndpoint=(SetLocalZ: Number: 1)",
  3871. "Components": {
  3872. "Component_[6225585590242458108]": {
  3873. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3874. "Id": 6225585590242458108,
  3875. "sourceEndpoint": {
  3876. "nodeId": {
  3877. "id": 2448347827279383
  3878. },
  3879. "slotId": {
  3880. "m_id": "{0497ECF8-A631-495B-B924-E365DDD70490}"
  3881. }
  3882. },
  3883. "targetEndpoint": {
  3884. "nodeId": {
  3885. "id": 2448382187017751
  3886. },
  3887. "slotId": {
  3888. "m_id": "{1FEA927F-F2A2-4386-A530-C0B5D27A0A27}"
  3889. }
  3890. }
  3891. }
  3892. }
  3893. },
  3894. {
  3895. "Id": {
  3896. "id": 2448463791396375
  3897. },
  3898. "Name": "srcEndpoint=(Subtract (-): Out), destEndpoint=(SetLocalZ: In)",
  3899. "Components": {
  3900. "Component_[2324666812613568386]": {
  3901. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3902. "Id": 2324666812613568386,
  3903. "sourceEndpoint": {
  3904. "nodeId": {
  3905. "id": 2448347827279383
  3906. },
  3907. "slotId": {
  3908. "m_id": "{B2C484C5-052C-421D-86D7-68DE28A15026}"
  3909. }
  3910. },
  3911. "targetEndpoint": {
  3912. "nodeId": {
  3913. "id": 2448382187017751
  3914. },
  3915. "slotId": {
  3916. "m_id": "{D1567BAC-1DA9-4061-B48F-F0A610A82E6E}"
  3917. }
  3918. }
  3919. }
  3920. }
  3921. },
  3922. {
  3923. "Id": {
  3924. "id": 2448468086363671
  3925. },
  3926. "Name": "srcEndpoint=(If: True), destEndpoint=(Add (+): In)",
  3927. "Components": {
  3928. "Component_[9098343034040672333]": {
  3929. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3930. "Id": 9098343034040672333,
  3931. "sourceEndpoint": {
  3932. "nodeId": {
  3933. "id": 2448395071919639
  3934. },
  3935. "slotId": {
  3936. "m_id": "{A9F18769-E852-4DED-97F9-141996A9123B}"
  3937. }
  3938. },
  3939. "targetEndpoint": {
  3940. "nodeId": {
  3941. "id": 2448365007148567
  3942. },
  3943. "slotId": {
  3944. "m_id": "{6112A7DD-9E13-4365-B800-7F44FC75098C}"
  3945. }
  3946. }
  3947. }
  3948. }
  3949. },
  3950. {
  3951. "Id": {
  3952. "id": 2448472381330967
  3953. },
  3954. "Name": "srcEndpoint=(If: False), destEndpoint=(Subtract (-): In)",
  3955. "Components": {
  3956. "Component_[5258276215261809176]": {
  3957. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3958. "Id": 5258276215261809176,
  3959. "sourceEndpoint": {
  3960. "nodeId": {
  3961. "id": 2448395071919639
  3962. },
  3963. "slotId": {
  3964. "m_id": "{EC4BC430-4165-4E0E-A789-17C64473E7C1}"
  3965. }
  3966. },
  3967. "targetEndpoint": {
  3968. "nodeId": {
  3969. "id": 2448347827279383
  3970. },
  3971. "slotId": {
  3972. "m_id": "{2DDA07DB-3371-4FBC-BEB3-C4C605B82A7D}"
  3973. }
  3974. }
  3975. }
  3976. }
  3977. },
  3978. {
  3979. "Id": {
  3980. "id": 2448480971265559
  3981. },
  3982. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(Set Variable: In)",
  3983. "Components": {
  3984. "Component_[8266327415538837698]": {
  3985. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3986. "Id": 8266327415538837698,
  3987. "sourceEndpoint": {
  3988. "nodeId": {
  3989. "id": 2448377892050455
  3990. },
  3991. "slotId": {
  3992. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  3993. }
  3994. },
  3995. "targetEndpoint": {
  3996. "nodeId": {
  3997. "id": 2448407956821527
  3998. },
  3999. "slotId": {
  4000. "m_id": "{97D52FD4-5AD1-4B0A-A387-215464070823}"
  4001. }
  4002. }
  4003. }
  4004. }
  4005. },
  4006. {
  4007. "Id": {
  4008. "id": 2448485266232855
  4009. },
  4010. "Name": "srcEndpoint=(If: False), destEndpoint=(TimeDelay: Start)",
  4011. "Components": {
  4012. "Component_[16666450187837537812]": {
  4013. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4014. "Id": 16666450187837537812,
  4015. "sourceEndpoint": {
  4016. "nodeId": {
  4017. "id": 2448420841723415
  4018. },
  4019. "slotId": {
  4020. "m_id": "{FDD26CC5-A735-46E8-8AE4-1AAD63639AC0}"
  4021. }
  4022. },
  4023. "targetEndpoint": {
  4024. "nodeId": {
  4025. "id": 2448377892050455
  4026. },
  4027. "slotId": {
  4028. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  4029. }
  4030. }
  4031. }
  4032. }
  4033. },
  4034. {
  4035. "Id": {
  4036. "id": 2448489561200151
  4037. },
  4038. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(Set Variable: In)",
  4039. "Components": {
  4040. "Component_[14756298169024348147]": {
  4041. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4042. "Id": 14756298169024348147,
  4043. "sourceEndpoint": {
  4044. "nodeId": {
  4045. "id": 2448386481985047
  4046. },
  4047. "slotId": {
  4048. "m_id": "{3AFBF052-FC91-4659-8F37-AC84BF75671C}"
  4049. }
  4050. },
  4051. "targetEndpoint": {
  4052. "nodeId": {
  4053. "id": 2448360712181271
  4054. },
  4055. "slotId": {
  4056. "m_id": "{B5914F26-A92F-47D3-9B42-C8D357E9B42B}"
  4057. }
  4058. }
  4059. }
  4060. }
  4061. },
  4062. {
  4063. "Id": {
  4064. "id": 2448493856167447
  4065. },
  4066. "Name": "srcEndpoint=(If: True), destEndpoint=(TimeDelay: Start)",
  4067. "Components": {
  4068. "Component_[16083553129122066568]": {
  4069. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4070. "Id": 16083553129122066568,
  4071. "sourceEndpoint": {
  4072. "nodeId": {
  4073. "id": 2448420841723415
  4074. },
  4075. "slotId": {
  4076. "m_id": "{3DD6AFBA-EEAE-4F94-AB99-C5D648F12F47}"
  4077. }
  4078. },
  4079. "targetEndpoint": {
  4080. "nodeId": {
  4081. "id": 2448386481985047
  4082. },
  4083. "slotId": {
  4084. "m_id": "{CAB4B0FC-EE0E-4F4C-A6E2-586E8C27811E}"
  4085. }
  4086. }
  4087. }
  4088. }
  4089. },
  4090. {
  4091. "Id": {
  4092. "id": 2448498151134743
  4093. },
  4094. "Name": "srcEndpoint=(GetLocalZ: Number), destEndpoint=(Set Variable: Number)",
  4095. "Components": {
  4096. "Component_[15628974174764920678]": {
  4097. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4098. "Id": 15628974174764920678,
  4099. "sourceEndpoint": {
  4100. "nodeId": {
  4101. "id": 2448373597083159
  4102. },
  4103. "slotId": {
  4104. "m_id": "{FAA637A6-0969-41C3-A65A-DBCCADF407CD}"
  4105. }
  4106. },
  4107. "targetEndpoint": {
  4108. "nodeId": {
  4109. "id": 2448369302115863
  4110. },
  4111. "slotId": {
  4112. "m_id": "{A10F07BB-5AA9-42E3-A448-2372F0D8D24E}"
  4113. }
  4114. }
  4115. }
  4116. }
  4117. },
  4118. {
  4119. "Id": {
  4120. "id": 2448502446102039
  4121. },
  4122. "Name": "srcEndpoint=(GetLocalZ: Out), destEndpoint=(Set Variable: In)",
  4123. "Components": {
  4124. "Component_[9994340609356081762]": {
  4125. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4126. "Id": 9994340609356081762,
  4127. "sourceEndpoint": {
  4128. "nodeId": {
  4129. "id": 2448373597083159
  4130. },
  4131. "slotId": {
  4132. "m_id": "{041CD197-668D-4CA0-B2B7-9C5E16A95E5A}"
  4133. }
  4134. },
  4135. "targetEndpoint": {
  4136. "nodeId": {
  4137. "id": 2448369302115863
  4138. },
  4139. "slotId": {
  4140. "m_id": "{87307E8F-5437-4C6E-9427-4F5D0E11AA30}"
  4141. }
  4142. }
  4143. }
  4144. }
  4145. },
  4146. {
  4147. "Id": {
  4148. "id": 2448515331003927
  4149. },
  4150. "Name": "srcEndpoint=(Timer: On Tick), destEndpoint=(GetLocalZ: In)",
  4151. "Components": {
  4152. "Component_[18323065564017609137]": {
  4153. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4154. "Id": 18323065564017609137,
  4155. "sourceEndpoint": {
  4156. "nodeId": {
  4157. "id": 2448352122246679
  4158. },
  4159. "slotId": {
  4160. "m_id": "{A703EE95-CB7B-46EF-AC34-6F2C9AD94E10}"
  4161. }
  4162. },
  4163. "targetEndpoint": {
  4164. "nodeId": {
  4165. "id": 2448356417213975
  4166. },
  4167. "slotId": {
  4168. "m_id": "{8F024BEB-4864-4BF0-8F84-60C08981C196}"
  4169. }
  4170. }
  4171. }
  4172. }
  4173. },
  4174. {
  4175. "Id": {
  4176. "id": 2448519625971223
  4177. },
  4178. "Name": "srcEndpoint=(GetLocalZ: Out), destEndpoint=(If: In)",
  4179. "Components": {
  4180. "Component_[14256427929999700122]": {
  4181. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4182. "Id": 14256427929999700122,
  4183. "sourceEndpoint": {
  4184. "nodeId": {
  4185. "id": 2448356417213975
  4186. },
  4187. "slotId": {
  4188. "m_id": "{041CD197-668D-4CA0-B2B7-9C5E16A95E5A}"
  4189. }
  4190. },
  4191. "targetEndpoint": {
  4192. "nodeId": {
  4193. "id": 2448395071919639
  4194. },
  4195. "slotId": {
  4196. "m_id": "{16186E99-61D5-429D-BEC3-D2FCDE3EE840}"
  4197. }
  4198. }
  4199. }
  4200. }
  4201. },
  4202. {
  4203. "Id": {
  4204. "id": 2448523920938519
  4205. },
  4206. "Name": "srcEndpoint=(GetLocalZ: Number), destEndpoint=(Add (+): Number 0)",
  4207. "Components": {
  4208. "Component_[1687530453793031928]": {
  4209. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4210. "Id": 1687530453793031928,
  4211. "sourceEndpoint": {
  4212. "nodeId": {
  4213. "id": 2448356417213975
  4214. },
  4215. "slotId": {
  4216. "m_id": "{FAA637A6-0969-41C3-A65A-DBCCADF407CD}"
  4217. }
  4218. },
  4219. "targetEndpoint": {
  4220. "nodeId": {
  4221. "id": 2448365007148567
  4222. },
  4223. "slotId": {
  4224. "m_id": "{E9C2200F-6F82-4B6A-8A07-FF9978991418}"
  4225. }
  4226. }
  4227. }
  4228. }
  4229. },
  4230. {
  4231. "Id": {
  4232. "id": 2448528215905815
  4233. },
  4234. "Name": "srcEndpoint=(GetLocalZ: Number), destEndpoint=(Subtract (-): Number 0)",
  4235. "Components": {
  4236. "Component_[13743380811932108525]": {
  4237. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4238. "Id": 13743380811932108525,
  4239. "sourceEndpoint": {
  4240. "nodeId": {
  4241. "id": 2448356417213975
  4242. },
  4243. "slotId": {
  4244. "m_id": "{FAA637A6-0969-41C3-A65A-DBCCADF407CD}"
  4245. }
  4246. },
  4247. "targetEndpoint": {
  4248. "nodeId": {
  4249. "id": 2448347827279383
  4250. },
  4251. "slotId": {
  4252. "m_id": "{BBC744F6-F7DD-4B08-91DC-145B2CE44B76}"
  4253. }
  4254. }
  4255. }
  4256. }
  4257. },
  4258. {
  4259. "Id": {
  4260. "id": 2448532510873111
  4261. },
  4262. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(SetLocalZ: In)",
  4263. "Components": {
  4264. "Component_[374545927800182996]": {
  4265. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4266. "Id": 374545927800182996,
  4267. "sourceEndpoint": {
  4268. "nodeId": {
  4269. "id": 2448407956821527
  4270. },
  4271. "slotId": {
  4272. "m_id": "{C51FDB68-5538-4C80-9780-1443DFB19147}"
  4273. }
  4274. },
  4275. "targetEndpoint": {
  4276. "nodeId": {
  4277. "id": 2448390776952343
  4278. },
  4279. "slotId": {
  4280. "m_id": "{D1567BAC-1DA9-4061-B48F-F0A610A82E6E}"
  4281. }
  4282. }
  4283. }
  4284. }
  4285. },
  4286. {
  4287. "Id": {
  4288. "id": 2448536805840407
  4289. },
  4290. "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(SetLocalZ: In)",
  4291. "Components": {
  4292. "Component_[634856451857403041]": {
  4293. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4294. "Id": 634856451857403041,
  4295. "sourceEndpoint": {
  4296. "nodeId": {
  4297. "id": 2448360712181271
  4298. },
  4299. "slotId": {
  4300. "m_id": "{956F4684-DFA4-483D-B99B-541F8140A1F0}"
  4301. }
  4302. },
  4303. "targetEndpoint": {
  4304. "nodeId": {
  4305. "id": 2448390776952343
  4306. },
  4307. "slotId": {
  4308. "m_id": "{D1567BAC-1DA9-4061-B48F-F0A610A82E6E}"
  4309. }
  4310. }
  4311. }
  4312. }
  4313. },
  4314. {
  4315. "Id": {
  4316. "id": 2448541100807703
  4317. },
  4318. "Name": "srcEndpoint=(SetLocalZ: Out), destEndpoint=(If: In)",
  4319. "Components": {
  4320. "Component_[14370666561911717887]": {
  4321. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4322. "Id": 14370666561911717887,
  4323. "sourceEndpoint": {
  4324. "nodeId": {
  4325. "id": 2448390776952343
  4326. },
  4327. "slotId": {
  4328. "m_id": "{67CB498F-B7FC-4835-B5E5-6AA8C1B3DEFF}"
  4329. }
  4330. },
  4331. "targetEndpoint": {
  4332. "nodeId": {
  4333. "id": 2448420841723415
  4334. },
  4335. "slotId": {
  4336. "m_id": "{CD6202C2-A6D0-48F3-9969-ADDC488003DA}"
  4337. }
  4338. }
  4339. }
  4340. }
  4341. },
  4342. {
  4343. "Id": {
  4344. "id": 2479851412395543
  4345. },
  4346. "Name": "srcEndpoint=(On Trigger Enter event: OnEvent), destEndpoint=(SetParameterBool: In)",
  4347. "Components": {
  4348. "Component_[14246744913377775830]": {
  4349. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4350. "Id": 14246744913377775830,
  4351. "sourceEndpoint": {
  4352. "nodeId": {
  4353. "id": 2477545014957591
  4354. },
  4355. "slotId": {
  4356. "m_id": "{98E79050-A2F6-47C0-B797-E6E7E9EDD277}"
  4357. }
  4358. },
  4359. "targetEndpoint": {
  4360. "nodeId": {
  4361. "id": 2477536425022999
  4362. },
  4363. "slotId": {
  4364. "m_id": "{494672DF-E172-4F80-8DE6-2755856A273E}"
  4365. }
  4366. }
  4367. }
  4368. }
  4369. },
  4370. {
  4371. "Id": {
  4372. "id": 2479924426839575
  4373. },
  4374. "Name": "srcEndpoint=(GetOnTriggerEnterEvent: Out), destEndpoint=(On Trigger Enter event: Connect)",
  4375. "Components": {
  4376. "Component_[14261526822707762497]": {
  4377. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4378. "Id": 14261526822707762497,
  4379. "sourceEndpoint": {
  4380. "nodeId": {
  4381. "id": 2477540719990295
  4382. },
  4383. "slotId": {
  4384. "m_id": "{58BAC26B-46DF-42AE-A9D4-2EA473990C94}"
  4385. }
  4386. },
  4387. "targetEndpoint": {
  4388. "nodeId": {
  4389. "id": 2477545014957591
  4390. },
  4391. "slotId": {
  4392. "m_id": "{0E5EA1B4-1EDA-4FAA-896B-B6A6D484463C}"
  4393. }
  4394. }
  4395. }
  4396. }
  4397. },
  4398. {
  4399. "Id": {
  4400. "id": 2479997441283607
  4401. },
  4402. "Name": "srcEndpoint=(GetOnTriggerEnterEvent: Event<AZStd::tuple<Crc32, int>, const TriggerEvent&>), destEndpoint=(On Trigger Enter event: On Trigger Enter event)",
  4403. "Components": {
  4404. "Component_[11996896256402677389]": {
  4405. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4406. "Id": 11996896256402677389,
  4407. "sourceEndpoint": {
  4408. "nodeId": {
  4409. "id": 2477540719990295
  4410. },
  4411. "slotId": {
  4412. "m_id": "{C5E3FFD7-F9AA-4691-B97C-BCF2E0A46E47}"
  4413. }
  4414. },
  4415. "targetEndpoint": {
  4416. "nodeId": {
  4417. "id": 2477545014957591
  4418. },
  4419. "slotId": {
  4420. "m_id": "{DB0B3667-F98A-440C-AE31-5B4D237FC4A3}"
  4421. }
  4422. }
  4423. }
  4424. }
  4425. },
  4426. {
  4427. "Id": {
  4428. "id": 2487835756598807
  4429. },
  4430. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Receive Script Event: Connect)",
  4431. "Components": {
  4432. "Component_[6772636317761113835]": {
  4433. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4434. "Id": 6772636317761113835,
  4435. "sourceEndpoint": {
  4436. "nodeId": {
  4437. "id": 2448412251788823
  4438. },
  4439. "slotId": {
  4440. "m_id": "{FFD050CC-FF23-4E56-A60B-21BB6E66FC49}"
  4441. }
  4442. },
  4443. "targetEndpoint": {
  4444. "nodeId": {
  4445. "id": 2486173604255255
  4446. },
  4447. "slotId": {
  4448. "m_id": "{1FF61518-8F6A-4072-A7EA-D34FFE2D3758}"
  4449. }
  4450. }
  4451. }
  4452. }
  4453. },
  4454. {
  4455. "Id": {
  4456. "id": 2489055527310871
  4457. },
  4458. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Start), destEndpoint=(GetLocalZ: In)",
  4459. "Components": {
  4460. "Component_[17213744322012427691]": {
  4461. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4462. "Id": 17213744322012427691,
  4463. "sourceEndpoint": {
  4464. "nodeId": {
  4465. "id": 2486173604255255
  4466. },
  4467. "slotId": {
  4468. "m_id": "{A97146E6-53E6-4BE2-B1AA-69245ADEA2FD}"
  4469. }
  4470. },
  4471. "targetEndpoint": {
  4472. "nodeId": {
  4473. "id": 2448373597083159
  4474. },
  4475. "slotId": {
  4476. "m_id": "{8F024BEB-4864-4BF0-8F84-60C08981C196}"
  4477. }
  4478. }
  4479. }
  4480. }
  4481. },
  4482. {
  4483. "Id": {
  4484. "id": 2490296772859415
  4485. },
  4486. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Start), destEndpoint=(Timer: Start)",
  4487. "Components": {
  4488. "Component_[17769529738223005057]": {
  4489. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4490. "Id": 17769529738223005057,
  4491. "sourceEndpoint": {
  4492. "nodeId": {
  4493. "id": 2486173604255255
  4494. },
  4495. "slotId": {
  4496. "m_id": "{A97146E6-53E6-4BE2-B1AA-69245ADEA2FD}"
  4497. }
  4498. },
  4499. "targetEndpoint": {
  4500. "nodeId": {
  4501. "id": 2448352122246679
  4502. },
  4503. "slotId": {
  4504. "m_id": "{9A997AD5-4B2B-44FD-A1DA-1E3250CCE947}"
  4505. }
  4506. }
  4507. }
  4508. }
  4509. },
  4510. {
  4511. "Id": {
  4512. "id": 2492006169843223
  4513. },
  4514. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Start), destEndpoint=(Timer: Start)",
  4515. "Components": {
  4516. "Component_[12336147364702716337]": {
  4517. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4518. "Id": 12336147364702716337,
  4519. "sourceEndpoint": {
  4520. "nodeId": {
  4521. "id": 2486173604255255
  4522. },
  4523. "slotId": {
  4524. "m_id": "{A97146E6-53E6-4BE2-B1AA-69245ADEA2FD}"
  4525. }
  4526. },
  4527. "targetEndpoint": {
  4528. "nodeId": {
  4529. "id": 2448343532312087
  4530. },
  4531. "slotId": {
  4532. "m_id": "{9A997AD5-4B2B-44FD-A1DA-1E3250CCE947}"
  4533. }
  4534. }
  4535. }
  4536. }
  4537. },
  4538. {
  4539. "Id": {
  4540. "id": 2496107863610903
  4541. },
  4542. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Start), destEndpoint=(If: In)",
  4543. "Components": {
  4544. "Component_[3700955408370841528]": {
  4545. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4546. "Id": 3700955408370841528,
  4547. "sourceEndpoint": {
  4548. "nodeId": {
  4549. "id": 2486173604255255
  4550. },
  4551. "slotId": {
  4552. "m_id": "{A97146E6-53E6-4BE2-B1AA-69245ADEA2FD}"
  4553. }
  4554. },
  4555. "targetEndpoint": {
  4556. "nodeId": {
  4557. "id": 2448420841723415
  4558. },
  4559. "slotId": {
  4560. "m_id": "{CD6202C2-A6D0-48F3-9969-ADDC488003DA}"
  4561. }
  4562. }
  4563. }
  4564. }
  4565. },
  4566. {
  4567. "Id": {
  4568. "id": 2501012716262935
  4569. },
  4570. "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Start), destEndpoint=(GetOnTriggerEnterEvent: In)",
  4571. "Components": {
  4572. "Component_[14414028909638906917]": {
  4573. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4574. "Id": 14414028909638906917,
  4575. "sourceEndpoint": {
  4576. "nodeId": {
  4577. "id": 2486173604255255
  4578. },
  4579. "slotId": {
  4580. "m_id": "{A97146E6-53E6-4BE2-B1AA-69245ADEA2FD}"
  4581. }
  4582. },
  4583. "targetEndpoint": {
  4584. "nodeId": {
  4585. "id": 2477540719990295
  4586. },
  4587. "slotId": {
  4588. "m_id": "{F73AFBC0-2100-45DD-9C12-902B68970D10}"
  4589. }
  4590. }
  4591. }
  4592. }
  4593. },
  4594. {
  4595. "Id": {
  4596. "id": 2523913481885207
  4597. },
  4598. "Name": "srcEndpoint=(SetParameterBool: Out), destEndpoint=(SetVisibility: In)",
  4599. "Components": {
  4600. "Component_[6097253829822982599]": {
  4601. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4602. "Id": 6097253829822982599,
  4603. "sourceEndpoint": {
  4604. "nodeId": {
  4605. "id": 2477536425022999
  4606. },
  4607. "slotId": {
  4608. "m_id": "{AD8AB980-DAD7-44FF-9C86-E2E74C6B0A87}"
  4609. }
  4610. },
  4611. "targetEndpoint": {
  4612. "nodeId": {
  4613. "id": 2521761703269911
  4614. },
  4615. "slotId": {
  4616. "m_id": "{3E88D1AD-4656-467C-8A0E-A5563530436D}"
  4617. }
  4618. }
  4619. }
  4620. }
  4621. },
  4622. {
  4623. "Id": {
  4624. "id": 2525803267495447
  4625. },
  4626. "Name": "srcEndpoint=(SetVisibility: Out), destEndpoint=(Send Script Event: In)",
  4627. "Components": {
  4628. "Component_[15838295087815142336]": {
  4629. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4630. "Id": 15838295087815142336,
  4631. "sourceEndpoint": {
  4632. "nodeId": {
  4633. "id": 2521761703269911
  4634. },
  4635. "slotId": {
  4636. "m_id": "{4230224C-79CF-4660-A327-6F2297476318}"
  4637. }
  4638. },
  4639. "targetEndpoint": {
  4640. "nodeId": {
  4641. "id": 2524751000507927
  4642. },
  4643. "slotId": {
  4644. "m_id": "{580953CA-7DF5-4F41-98DB-A7E2A2D49C27}"
  4645. }
  4646. }
  4647. }
  4648. }
  4649. },
  4650. {
  4651. "Id": {
  4652. "id": 2578618480334359
  4653. },
  4654. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Print: In)",
  4655. "Components": {
  4656. "Component_[10424354110705863436]": {
  4657. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4658. "Id": 10424354110705863436,
  4659. "sourceEndpoint": {
  4660. "nodeId": {
  4661. "id": 2524751000507927
  4662. },
  4663. "slotId": {
  4664. "m_id": "{C565CDF2-B17E-4293-A919-A18A701D639A}"
  4665. }
  4666. },
  4667. "targetEndpoint": {
  4668. "nodeId": {
  4669. "id": 2576780234331671
  4670. },
  4671. "slotId": {
  4672. "m_id": "{8391E0FD-0E40-49C3-BA27-D5D002AF215B}"
  4673. }
  4674. }
  4675. }
  4676. }
  4677. }
  4678. ],
  4679. "m_scriptEventAssets": [
  4680. [
  4681. {
  4682. "id": 2486173604255255
  4683. },
  4684. {}
  4685. ],
  4686. [
  4687. {
  4688. "id": 2524751000507927
  4689. },
  4690. {}
  4691. ]
  4692. ]
  4693. },
  4694. "m_assetType": "{00E8269A-FB01-0000-30F3-FFB8FC010000}",
  4695. "versionData": {
  4696. "_grammarVersion": 1,
  4697. "_runtimeVersion": 1,
  4698. "_fileVersion": 1
  4699. },
  4700. "m_variableCounter": 9,
  4701. "GraphCanvasData": [
  4702. {
  4703. "Key": {
  4704. "id": 2448339237344791
  4705. },
  4706. "Value": {
  4707. "ComponentData": {
  4708. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  4709. "$type": "SceneComponentSaveData",
  4710. "Constructs": [
  4711. {
  4712. "Type": 3,
  4713. "DataContainer": {
  4714. "ComponentData": {
  4715. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4716. "$type": "NodeSaveData"
  4717. },
  4718. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  4719. "$type": "CommentNodeTextSaveData",
  4720. "Comment": "Get Start Location",
  4721. "BackgroundColor": [
  4722. 0.18799999356269836,
  4723. 0.972000002861023,
  4724. 0.24300000071525574
  4725. ],
  4726. "FontSettings": {
  4727. "PixelSize": 16
  4728. }
  4729. },
  4730. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  4731. "$type": "NodeGroupFrameComponentSaveData",
  4732. "DisplayHeight": 500.0,
  4733. "DisplayWidth": 380.0,
  4734. "PersistentGroupedId": [
  4735. "{99BCA22E-EB2D-4ADF-8A6F-A40DAB4A2F69}",
  4736. "{3EAFECDE-BE97-4A9B-9C0A-048420074CE8}"
  4737. ]
  4738. },
  4739. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4740. "$type": "GeometrySaveData",
  4741. "Position": [
  4742. -580.0,
  4743. 700.0
  4744. ]
  4745. },
  4746. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4747. "$type": "StylingComponentSaveData"
  4748. },
  4749. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4750. "$type": "PersistentIdComponentSaveData",
  4751. "PersistentId": "{2CD87176-4C2B-4E71-B3A4-F4B643DEA039}"
  4752. }
  4753. }
  4754. }
  4755. },
  4756. {
  4757. "Type": 3,
  4758. "DataContainer": {
  4759. "ComponentData": {
  4760. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4761. "$type": "NodeSaveData"
  4762. },
  4763. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  4764. "$type": "CommentNodeTextSaveData",
  4765. "Comment": "Gem Hit",
  4766. "BackgroundColor": [
  4767. 0.9800000190734863,
  4768. 0.9700000286102295,
  4769. 0.6499999761581421
  4770. ],
  4771. "FontSettings": {
  4772. "PixelSize": 16
  4773. }
  4774. },
  4775. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  4776. "$type": "NodeGroupFrameComponentSaveData",
  4777. "DisplayHeight": 300.0,
  4778. "DisplayWidth": 2120.0,
  4779. "PersistentGroupedId": [
  4780. "{339BC9EE-1AF3-482C-9909-A23705A3B041}",
  4781. "{83A9E922-1882-442C-8565-2BEE1C7A9EA5}",
  4782. "{219DAC8F-8B65-4C72-A448-FD271F8DE578}",
  4783. "{4DC9D2DD-00F4-49DC-8A38-61762FC7BDF2}",
  4784. "{961C0436-DAC0-4856-9335-FD3C9CA5844B}"
  4785. ]
  4786. },
  4787. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4788. "$type": "GeometrySaveData",
  4789. "Position": [
  4790. -60.0,
  4791. 1180.0
  4792. ]
  4793. },
  4794. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4795. "$type": "StylingComponentSaveData"
  4796. },
  4797. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4798. "$type": "PersistentIdComponentSaveData",
  4799. "PersistentId": "{FD43F4A2-5CF0-4EDB-A406-55D02AFDFDCA}"
  4800. }
  4801. }
  4802. }
  4803. },
  4804. {
  4805. "Type": 3,
  4806. "DataContainer": {
  4807. "ComponentData": {
  4808. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4809. "$type": "NodeSaveData"
  4810. },
  4811. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  4812. "$type": "CommentNodeTextSaveData",
  4813. "Comment": "GEM Up and Down",
  4814. "BackgroundColor": [
  4815. 0.9800000190734863,
  4816. 0.9700000286102295,
  4817. 0.6499999761581421
  4818. ],
  4819. "FontSettings": {
  4820. "PixelSize": 16
  4821. }
  4822. },
  4823. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  4824. "$type": "NodeGroupFrameComponentSaveData",
  4825. "DisplayHeight": 600.0,
  4826. "DisplayWidth": 1780.0,
  4827. "PersistentGroupedId": [
  4828. "{FC9850A8-EF04-4819-9000-056B43692D25}",
  4829. "{474D905D-FA3C-457D-9F5A-18FF2682059A}",
  4830. "{AA214015-3E62-4C3B-B24B-5C053D81CB15}",
  4831. "{16E6030E-41D6-44BD-BF11-BB22C7C9DB30}",
  4832. "{30959412-49BD-40D8-857D-F72BFFD23898}",
  4833. "{62CCB7FC-E31A-4537-B45E-040FE4512CB9}"
  4834. ]
  4835. },
  4836. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4837. "$type": "GeometrySaveData",
  4838. "Position": [
  4839. -80.0,
  4840. 520.0
  4841. ]
  4842. },
  4843. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4844. "$type": "StylingComponentSaveData"
  4845. },
  4846. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4847. "$type": "PersistentIdComponentSaveData",
  4848. "PersistentId": "{B10A3C4D-4AF7-49DA-93C7-93C93560BDD3}"
  4849. }
  4850. }
  4851. }
  4852. },
  4853. {
  4854. "Type": 3,
  4855. "DataContainer": {
  4856. "ComponentData": {
  4857. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4858. "$type": "NodeSaveData"
  4859. },
  4860. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  4861. "$type": "CommentNodeTextSaveData",
  4862. "Comment": "Gem Up and Down Delay",
  4863. "BackgroundColor": [
  4864. 0.9800000190734863,
  4865. 0.9700000286102295,
  4866. 0.6499999761581421
  4867. ],
  4868. "FontSettings": {
  4869. "PixelSize": 16
  4870. }
  4871. },
  4872. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  4873. "$type": "NodeGroupFrameComponentSaveData",
  4874. "DisplayHeight": 840.0,
  4875. "DisplayWidth": 1160.0,
  4876. "PersistentGroupedId": [
  4877. "{F2F5D012-C42D-4C9E-BF18-B2F8F34C1D85}",
  4878. "{09EFE6F5-9F91-482F-96D3-C92D1FDFFBF8}",
  4879. "{A4A5ED62-C7FE-4A63-AE23-BA2C90B6687F}",
  4880. "{5575891F-35A8-4FCE-9FBF-C5BD5D937A82}",
  4881. "{8D44983E-4256-4D83-8711-3CAE722E35B6}",
  4882. "{1F2104DD-CC68-4E85-BA35-7566E35EDB57}"
  4883. ]
  4884. },
  4885. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4886. "$type": "GeometrySaveData",
  4887. "Position": [
  4888. -40.0,
  4889. -820.0
  4890. ]
  4891. },
  4892. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4893. "$type": "StylingComponentSaveData"
  4894. },
  4895. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4896. "$type": "PersistentIdComponentSaveData",
  4897. "PersistentId": "{EFB503D0-2C4B-4EFD-92CA-7F71C6ED762D}"
  4898. }
  4899. }
  4900. }
  4901. },
  4902. {
  4903. "Type": 3,
  4904. "DataContainer": {
  4905. "ComponentData": {
  4906. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4907. "$type": "NodeSaveData"
  4908. },
  4909. "{524D8380-AC09-444E-870E-9CEF2535B4A2}": {
  4910. "$type": "CommentNodeTextSaveData",
  4911. "Comment": "Gem Start and Turn",
  4912. "BackgroundColor": [
  4913. 0.9800000190734863,
  4914. 0.9700000286102295,
  4915. 0.6499999761581421
  4916. ],
  4917. "FontSettings": {
  4918. "PixelSize": 16
  4919. }
  4920. },
  4921. "{6F4811ED-BD83-4A2A-8831-58EEA4020D57}": {
  4922. "$type": "NodeGroupFrameComponentSaveData",
  4923. "DisplayHeight": 420.0,
  4924. "DisplayWidth": 1560.0,
  4925. "PersistentGroupedId": [
  4926. "{1093074D-7543-453F-B11C-97C4E5C68672}",
  4927. "{61692D55-48C1-4820-B6A3-4026C42FB89A}",
  4928. "{BE5C16FD-B010-455F-91C8-77CBB88D2055}",
  4929. "{3B2715A9-97DD-4BC9-8EF5-48803B4E68C6}"
  4930. ]
  4931. },
  4932. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4933. "$type": "GeometrySaveData",
  4934. "Position": [
  4935. -40.0,
  4936. 60.0
  4937. ]
  4938. },
  4939. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4940. "$type": "StylingComponentSaveData"
  4941. },
  4942. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4943. "$type": "PersistentIdComponentSaveData",
  4944. "PersistentId": "{07542F43-8EC4-44B1-8D8B-D8800A01341C}"
  4945. }
  4946. }
  4947. }
  4948. }
  4949. ],
  4950. "ViewParams": {
  4951. "Scale": 0.7169013884757788,
  4952. "AnchorX": -640.2554321289063,
  4953. "AnchorY": 776.954833984375
  4954. }
  4955. }
  4956. }
  4957. }
  4958. },
  4959. {
  4960. "Key": {
  4961. "id": 2448343532312087
  4962. },
  4963. "Value": {
  4964. "ComponentData": {
  4965. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4966. "$type": "NodeSaveData"
  4967. },
  4968. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4969. "$type": "GeneralNodeTitleComponentSaveData",
  4970. "PaletteOverride": "TimeNodeTitlePalette"
  4971. },
  4972. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4973. "$type": "GeometrySaveData",
  4974. "Position": [
  4975. 20.0,
  4976. 160.0
  4977. ]
  4978. },
  4979. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4980. "$type": "StylingComponentSaveData"
  4981. },
  4982. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4983. "$type": "PersistentIdComponentSaveData",
  4984. "PersistentId": "{1093074D-7543-453F-B11C-97C4E5C68672}"
  4985. }
  4986. }
  4987. }
  4988. },
  4989. {
  4990. "Key": {
  4991. "id": 2448347827279383
  4992. },
  4993. "Value": {
  4994. "ComponentData": {
  4995. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4996. "$type": "NodeSaveData"
  4997. },
  4998. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4999. "$type": "GeneralNodeTitleComponentSaveData",
  5000. "PaletteOverride": "MathNodeTitlePalette"
  5001. },
  5002. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5003. "$type": "GeometrySaveData",
  5004. "Position": [
  5005. 940.0,
  5006. 880.0
  5007. ]
  5008. },
  5009. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5010. "$type": "StylingComponentSaveData"
  5011. },
  5012. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5013. "$type": "PersistentIdComponentSaveData",
  5014. "PersistentId": "{FC9850A8-EF04-4819-9000-056B43692D25}"
  5015. }
  5016. }
  5017. }
  5018. },
  5019. {
  5020. "Key": {
  5021. "id": 2448352122246679
  5022. },
  5023. "Value": {
  5024. "ComponentData": {
  5025. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5026. "$type": "NodeSaveData"
  5027. },
  5028. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5029. "$type": "GeneralNodeTitleComponentSaveData",
  5030. "PaletteOverride": "TimeNodeTitlePalette"
  5031. },
  5032. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5033. "$type": "GeometrySaveData",
  5034. "Position": [
  5035. -40.0,
  5036. 580.0
  5037. ]
  5038. },
  5039. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5040. "$type": "StylingComponentSaveData"
  5041. },
  5042. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5043. "$type": "PersistentIdComponentSaveData",
  5044. "PersistentId": "{30959412-49BD-40D8-857D-F72BFFD23898}"
  5045. }
  5046. }
  5047. }
  5048. },
  5049. {
  5050. "Key": {
  5051. "id": 2448356417213975
  5052. },
  5053. "Value": {
  5054. "ComponentData": {
  5055. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5056. "$type": "NodeSaveData"
  5057. },
  5058. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5059. "$type": "GeneralNodeTitleComponentSaveData",
  5060. "PaletteOverride": "MethodNodeTitlePalette"
  5061. },
  5062. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5063. "$type": "GeometrySaveData",
  5064. "Position": [
  5065. 320.0,
  5066. 620.0
  5067. ]
  5068. },
  5069. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5070. "$type": "StylingComponentSaveData",
  5071. "SubStyle": ".method"
  5072. },
  5073. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5074. "$type": "PersistentIdComponentSaveData",
  5075. "PersistentId": "{474D905D-FA3C-457D-9F5A-18FF2682059A}"
  5076. }
  5077. }
  5078. }
  5079. },
  5080. {
  5081. "Key": {
  5082. "id": 2448360712181271
  5083. },
  5084. "Value": {
  5085. "ComponentData": {
  5086. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5087. "$type": "NodeSaveData"
  5088. },
  5089. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5090. "$type": "GeneralNodeTitleComponentSaveData",
  5091. "PaletteOverride": "SetVariableNodeTitlePalette"
  5092. },
  5093. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5094. "$type": "GeometrySaveData",
  5095. "Position": [
  5096. 480.0,
  5097. -420.0
  5098. ]
  5099. },
  5100. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5101. "$type": "StylingComponentSaveData",
  5102. "SubStyle": ".setVariable"
  5103. },
  5104. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5105. "$type": "PersistentIdComponentSaveData",
  5106. "PersistentId": "{1F2104DD-CC68-4E85-BA35-7566E35EDB57}"
  5107. }
  5108. }
  5109. }
  5110. },
  5111. {
  5112. "Key": {
  5113. "id": 2448365007148567
  5114. },
  5115. "Value": {
  5116. "ComponentData": {
  5117. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5118. "$type": "NodeSaveData"
  5119. },
  5120. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5121. "$type": "GeneralNodeTitleComponentSaveData",
  5122. "PaletteOverride": "MathNodeTitlePalette"
  5123. },
  5124. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5125. "$type": "GeometrySaveData",
  5126. "Position": [
  5127. 920.0,
  5128. 600.0
  5129. ]
  5130. },
  5131. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5132. "$type": "StylingComponentSaveData"
  5133. },
  5134. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5135. "$type": "PersistentIdComponentSaveData",
  5136. "PersistentId": "{AA214015-3E62-4C3B-B24B-5C053D81CB15}"
  5137. }
  5138. }
  5139. }
  5140. },
  5141. {
  5142. "Key": {
  5143. "id": 2448369302115863
  5144. },
  5145. "Value": {
  5146. "ComponentData": {
  5147. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5148. "$type": "NodeSaveData"
  5149. },
  5150. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5151. "$type": "GeneralNodeTitleComponentSaveData",
  5152. "PaletteOverride": "SetVariableNodeTitlePalette"
  5153. },
  5154. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5155. "$type": "GeometrySaveData",
  5156. "Position": [
  5157. -540.0,
  5158. 1000.0
  5159. ]
  5160. },
  5161. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5162. "$type": "StylingComponentSaveData",
  5163. "SubStyle": ".setVariable"
  5164. },
  5165. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5166. "$type": "PersistentIdComponentSaveData",
  5167. "PersistentId": "{99BCA22E-EB2D-4ADF-8A6F-A40DAB4A2F69}"
  5168. }
  5169. }
  5170. }
  5171. },
  5172. {
  5173. "Key": {
  5174. "id": 2448373597083159
  5175. },
  5176. "Value": {
  5177. "ComponentData": {
  5178. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5179. "$type": "NodeSaveData"
  5180. },
  5181. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5182. "$type": "GeneralNodeTitleComponentSaveData",
  5183. "PaletteOverride": "MethodNodeTitlePalette"
  5184. },
  5185. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5186. "$type": "GeometrySaveData",
  5187. "Position": [
  5188. -540.0,
  5189. 780.0
  5190. ]
  5191. },
  5192. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5193. "$type": "StylingComponentSaveData",
  5194. "SubStyle": ".method"
  5195. },
  5196. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5197. "$type": "PersistentIdComponentSaveData",
  5198. "PersistentId": "{3EAFECDE-BE97-4A9B-9C0A-048420074CE8}"
  5199. }
  5200. }
  5201. }
  5202. },
  5203. {
  5204. "Key": {
  5205. "id": 2448377892050455
  5206. },
  5207. "Value": {
  5208. "ComponentData": {
  5209. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5210. "$type": "NodeSaveData"
  5211. },
  5212. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5213. "$type": "GeneralNodeTitleComponentSaveData",
  5214. "PaletteOverride": "TimeNodeTitlePalette"
  5215. },
  5216. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5217. "$type": "GeometrySaveData",
  5218. "Position": [
  5219. 0.0,
  5220. -240.0
  5221. ]
  5222. },
  5223. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5224. "$type": "StylingComponentSaveData"
  5225. },
  5226. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5227. "$type": "PersistentIdComponentSaveData",
  5228. "PersistentId": "{5575891F-35A8-4FCE-9FBF-C5BD5D937A82}"
  5229. }
  5230. }
  5231. }
  5232. },
  5233. {
  5234. "Key": {
  5235. "id": 2448382187017751
  5236. },
  5237. "Value": {
  5238. "ComponentData": {
  5239. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5240. "$type": "NodeSaveData"
  5241. },
  5242. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5243. "$type": "GeneralNodeTitleComponentSaveData",
  5244. "PaletteOverride": "MethodNodeTitlePalette"
  5245. },
  5246. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5247. "$type": "GeometrySaveData",
  5248. "Position": [
  5249. 1380.0,
  5250. 700.0
  5251. ]
  5252. },
  5253. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5254. "$type": "StylingComponentSaveData",
  5255. "SubStyle": ".method"
  5256. },
  5257. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5258. "$type": "PersistentIdComponentSaveData",
  5259. "PersistentId": "{62CCB7FC-E31A-4537-B45E-040FE4512CB9}"
  5260. }
  5261. }
  5262. }
  5263. },
  5264. {
  5265. "Key": {
  5266. "id": 2448386481985047
  5267. },
  5268. "Value": {
  5269. "ComponentData": {
  5270. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5271. "$type": "NodeSaveData"
  5272. },
  5273. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5274. "$type": "GeneralNodeTitleComponentSaveData",
  5275. "PaletteOverride": "TimeNodeTitlePalette"
  5276. },
  5277. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5278. "$type": "GeometrySaveData",
  5279. "Position": [
  5280. 20.0,
  5281. -500.0
  5282. ]
  5283. },
  5284. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5285. "$type": "StylingComponentSaveData"
  5286. },
  5287. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5288. "$type": "PersistentIdComponentSaveData",
  5289. "PersistentId": "{A4A5ED62-C7FE-4A63-AE23-BA2C90B6687F}"
  5290. }
  5291. }
  5292. }
  5293. },
  5294. {
  5295. "Key": {
  5296. "id": 2448390776952343
  5297. },
  5298. "Value": {
  5299. "ComponentData": {
  5300. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5301. "$type": "NodeSaveData"
  5302. },
  5303. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5304. "$type": "GeneralNodeTitleComponentSaveData",
  5305. "PaletteOverride": "MethodNodeTitlePalette"
  5306. },
  5307. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5308. "$type": "GeometrySaveData",
  5309. "Position": [
  5310. 800.0,
  5311. -320.0
  5312. ]
  5313. },
  5314. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5315. "$type": "StylingComponentSaveData",
  5316. "SubStyle": ".method"
  5317. },
  5318. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5319. "$type": "PersistentIdComponentSaveData",
  5320. "PersistentId": "{F2F5D012-C42D-4C9E-BF18-B2F8F34C1D85}"
  5321. }
  5322. }
  5323. }
  5324. },
  5325. {
  5326. "Key": {
  5327. "id": 2448395071919639
  5328. },
  5329. "Value": {
  5330. "ComponentData": {
  5331. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5332. "$type": "NodeSaveData"
  5333. },
  5334. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5335. "$type": "GeneralNodeTitleComponentSaveData",
  5336. "PaletteOverride": "LogicNodeTitlePalette"
  5337. },
  5338. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5339. "$type": "GeometrySaveData",
  5340. "Position": [
  5341. 620.0,
  5342. 860.0
  5343. ]
  5344. },
  5345. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5346. "$type": "StylingComponentSaveData"
  5347. },
  5348. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5349. "$type": "PersistentIdComponentSaveData",
  5350. "PersistentId": "{16E6030E-41D6-44BD-BF11-BB22C7C9DB30}"
  5351. }
  5352. }
  5353. }
  5354. },
  5355. {
  5356. "Key": {
  5357. "id": 2448399366886935
  5358. },
  5359. "Value": {
  5360. "ComponentData": {
  5361. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5362. "$type": "NodeSaveData"
  5363. },
  5364. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5365. "$type": "GeneralNodeTitleComponentSaveData",
  5366. "PaletteOverride": "MathNodeTitlePalette"
  5367. },
  5368. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5369. "$type": "GeometrySaveData",
  5370. "Position": [
  5371. 760.0,
  5372. 240.0
  5373. ]
  5374. },
  5375. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5376. "$type": "StylingComponentSaveData"
  5377. },
  5378. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5379. "$type": "PersistentIdComponentSaveData",
  5380. "PersistentId": "{BE5C16FD-B010-455F-91C8-77CBB88D2055}"
  5381. }
  5382. }
  5383. }
  5384. },
  5385. {
  5386. "Key": {
  5387. "id": 2448403661854231
  5388. },
  5389. "Value": {
  5390. "ComponentData": {
  5391. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5392. "$type": "NodeSaveData"
  5393. },
  5394. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5395. "$type": "GeneralNodeTitleComponentSaveData",
  5396. "PaletteOverride": "MethodNodeTitlePalette"
  5397. },
  5398. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5399. "$type": "GeometrySaveData",
  5400. "Position": [
  5401. 320.0,
  5402. 240.0
  5403. ]
  5404. },
  5405. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5406. "$type": "StylingComponentSaveData",
  5407. "SubStyle": ".method"
  5408. },
  5409. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5410. "$type": "PersistentIdComponentSaveData",
  5411. "PersistentId": "{61692D55-48C1-4820-B6A3-4026C42FB89A}"
  5412. }
  5413. }
  5414. }
  5415. },
  5416. {
  5417. "Key": {
  5418. "id": 2448407956821527
  5419. },
  5420. "Value": {
  5421. "ComponentData": {
  5422. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5423. "$type": "NodeSaveData"
  5424. },
  5425. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5426. "$type": "GeneralNodeTitleComponentSaveData",
  5427. "PaletteOverride": "SetVariableNodeTitlePalette"
  5428. },
  5429. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5430. "$type": "GeometrySaveData",
  5431. "Position": [
  5432. 480.0,
  5433. -180.0
  5434. ]
  5435. },
  5436. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5437. "$type": "StylingComponentSaveData",
  5438. "SubStyle": ".setVariable"
  5439. },
  5440. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5441. "$type": "PersistentIdComponentSaveData",
  5442. "PersistentId": "{8D44983E-4256-4D83-8711-3CAE722E35B6}"
  5443. }
  5444. }
  5445. }
  5446. },
  5447. {
  5448. "Key": {
  5449. "id": 2448412251788823
  5450. },
  5451. "Value": {
  5452. "ComponentData": {
  5453. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5454. "$type": "NodeSaveData"
  5455. },
  5456. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5457. "$type": "GeneralNodeTitleComponentSaveData",
  5458. "PaletteOverride": "TimeNodeTitlePalette"
  5459. },
  5460. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5461. "$type": "GeometrySaveData",
  5462. "Position": [
  5463. -940.0,
  5464. 440.0
  5465. ]
  5466. },
  5467. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5468. "$type": "StylingComponentSaveData"
  5469. },
  5470. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5471. "$type": "PersistentIdComponentSaveData",
  5472. "PersistentId": "{2B04A2DB-2C7C-4BC1-8EE0-3B1C58A88415}"
  5473. }
  5474. }
  5475. }
  5476. },
  5477. {
  5478. "Key": {
  5479. "id": 2448416546756119
  5480. },
  5481. "Value": {
  5482. "ComponentData": {
  5483. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5484. "$type": "NodeSaveData"
  5485. },
  5486. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5487. "$type": "GeneralNodeTitleComponentSaveData",
  5488. "PaletteOverride": "MethodNodeTitlePalette"
  5489. },
  5490. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5491. "$type": "GeometrySaveData",
  5492. "Position": [
  5493. 1200.0,
  5494. 260.0
  5495. ]
  5496. },
  5497. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5498. "$type": "StylingComponentSaveData",
  5499. "SubStyle": ".method"
  5500. },
  5501. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5502. "$type": "PersistentIdComponentSaveData",
  5503. "PersistentId": "{3B2715A9-97DD-4BC9-8EF5-48803B4E68C6}"
  5504. }
  5505. }
  5506. }
  5507. },
  5508. {
  5509. "Key": {
  5510. "id": 2448420841723415
  5511. },
  5512. "Value": {
  5513. "ComponentData": {
  5514. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5515. "$type": "NodeSaveData"
  5516. },
  5517. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5518. "$type": "GeneralNodeTitleComponentSaveData",
  5519. "PaletteOverride": "LogicNodeTitlePalette"
  5520. },
  5521. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5522. "$type": "GeometrySaveData",
  5523. "Position": [
  5524. 20.0,
  5525. -740.0
  5526. ]
  5527. },
  5528. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5529. "$type": "StylingComponentSaveData"
  5530. },
  5531. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5532. "$type": "PersistentIdComponentSaveData",
  5533. "PersistentId": "{09EFE6F5-9F91-482F-96D3-C92D1FDFFBF8}"
  5534. }
  5535. }
  5536. }
  5537. },
  5538. {
  5539. "Key": {
  5540. "id": 2477536425022999
  5541. },
  5542. "Value": {
  5543. "ComponentData": {
  5544. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5545. "$type": "NodeSaveData"
  5546. },
  5547. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5548. "$type": "GeneralNodeTitleComponentSaveData",
  5549. "PaletteOverride": "MethodNodeTitlePalette"
  5550. },
  5551. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5552. "$type": "GeometrySaveData",
  5553. "Position": [
  5554. 1000.0,
  5555. 1260.0
  5556. ]
  5557. },
  5558. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5559. "$type": "StylingComponentSaveData",
  5560. "SubStyle": ".method"
  5561. },
  5562. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5563. "$type": "PersistentIdComponentSaveData",
  5564. "PersistentId": "{4DC9D2DD-00F4-49DC-8A38-61762FC7BDF2}"
  5565. }
  5566. }
  5567. }
  5568. },
  5569. {
  5570. "Key": {
  5571. "id": 2477540719990295
  5572. },
  5573. "Value": {
  5574. "ComponentData": {
  5575. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5576. "$type": "NodeSaveData"
  5577. },
  5578. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5579. "$type": "GeneralNodeTitleComponentSaveData",
  5580. "PaletteOverride": "MethodNodeTitlePalette"
  5581. },
  5582. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5583. "$type": "GeometrySaveData",
  5584. "Position": [
  5585. -40.0,
  5586. 1280.0
  5587. ]
  5588. },
  5589. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5590. "$type": "StylingComponentSaveData",
  5591. "SubStyle": ".method"
  5592. },
  5593. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5594. "$type": "PersistentIdComponentSaveData",
  5595. "PersistentId": "{219DAC8F-8B65-4C72-A448-FD271F8DE578}"
  5596. }
  5597. }
  5598. }
  5599. },
  5600. {
  5601. "Key": {
  5602. "id": 2477545014957591
  5603. },
  5604. "Value": {
  5605. "ComponentData": {
  5606. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5607. "$type": "NodeSaveData"
  5608. },
  5609. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5610. "$type": "GeneralNodeTitleComponentSaveData",
  5611. "PaletteOverride": "HandlerNodeTitlePalette"
  5612. },
  5613. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5614. "$type": "GeometrySaveData",
  5615. "Position": [
  5616. 560.0,
  5617. 1240.0
  5618. ]
  5619. },
  5620. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5621. "$type": "StylingComponentSaveData",
  5622. "SubStyle": ".azeventhandler"
  5623. },
  5624. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5625. "$type": "PersistentIdComponentSaveData",
  5626. "PersistentId": "{961C0436-DAC0-4856-9335-FD3C9CA5844B}"
  5627. }
  5628. }
  5629. }
  5630. },
  5631. {
  5632. "Key": {
  5633. "id": 2486173604255255
  5634. },
  5635. "Value": {
  5636. "ComponentData": {
  5637. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5638. "$type": "NodeSaveData"
  5639. },
  5640. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5641. "$type": "GeometrySaveData",
  5642. "Position": [
  5643. -680.0,
  5644. 20.0
  5645. ]
  5646. },
  5647. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5648. "$type": "StylingComponentSaveData"
  5649. },
  5650. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5651. "$type": "PersistentIdComponentSaveData",
  5652. "PersistentId": "{A1CD278B-7496-47C2-A6CC-B285F2015875}"
  5653. },
  5654. "{D8BBE799-7E4D-495A-B69A-1E3940670891}": {
  5655. "$type": "ScriptEventReceiverHandlerNodeDescriptorSaveData",
  5656. "EventNames": [
  5657. [
  5658. {
  5659. "Value": 2474373122
  5660. },
  5661. "Start"
  5662. ]
  5663. ]
  5664. }
  5665. }
  5666. }
  5667. },
  5668. {
  5669. "Key": {
  5670. "id": 2521761703269911
  5671. },
  5672. "Value": {
  5673. "ComponentData": {
  5674. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5675. "$type": "NodeSaveData"
  5676. },
  5677. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5678. "$type": "GeneralNodeTitleComponentSaveData",
  5679. "PaletteOverride": "MethodNodeTitlePalette"
  5680. },
  5681. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5682. "$type": "GeometrySaveData",
  5683. "Position": [
  5684. 1320.0,
  5685. 1260.0
  5686. ]
  5687. },
  5688. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5689. "$type": "StylingComponentSaveData",
  5690. "SubStyle": ".method"
  5691. },
  5692. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5693. "$type": "PersistentIdComponentSaveData",
  5694. "PersistentId": "{83A9E922-1882-442C-8565-2BEE1C7A9EA5}"
  5695. }
  5696. }
  5697. }
  5698. },
  5699. {
  5700. "Key": {
  5701. "id": 2524751000507927
  5702. },
  5703. "Value": {
  5704. "ComponentData": {
  5705. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5706. "$type": "NodeSaveData"
  5707. },
  5708. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5709. "$type": "GeneralNodeTitleComponentSaveData",
  5710. "PaletteOverride": "MethodNodeTitlePalette"
  5711. },
  5712. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5713. "$type": "GeometrySaveData",
  5714. "Position": [
  5715. 1620.0,
  5716. 1280.0
  5717. ]
  5718. },
  5719. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5720. "$type": "StylingComponentSaveData",
  5721. "SubStyle": ".method"
  5722. },
  5723. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5724. "$type": "PersistentIdComponentSaveData",
  5725. "PersistentId": "{339BC9EE-1AF3-482C-9909-A23705A3B041}"
  5726. }
  5727. }
  5728. }
  5729. },
  5730. {
  5731. "Key": {
  5732. "id": 2576780234331671
  5733. },
  5734. "Value": {
  5735. "ComponentData": {
  5736. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5737. "$type": "NodeSaveData"
  5738. },
  5739. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5740. "$type": "GeneralNodeTitleComponentSaveData",
  5741. "PaletteOverride": "StringNodeTitlePalette"
  5742. },
  5743. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5744. "$type": "GeometrySaveData",
  5745. "Position": [
  5746. 1220.0,
  5747. 1860.0
  5748. ]
  5749. },
  5750. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5751. "$type": "StylingComponentSaveData"
  5752. },
  5753. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5754. "$type": "PersistentIdComponentSaveData",
  5755. "PersistentId": "{426FE794-D3D8-4E6E-AA29-B61A6B8C8456}"
  5756. }
  5757. }
  5758. }
  5759. }
  5760. ],
  5761. "StatisticsHelper": {
  5762. "InstanceCounter": [
  5763. {
  5764. "Key": 1244476766431948410,
  5765. "Value": 2
  5766. },
  5767. {
  5768. "Key": 1678856638301557268,
  5769. "Value": 1
  5770. },
  5771. {
  5772. "Key": 1862193354947601013,
  5773. "Value": 2
  5774. },
  5775. {
  5776. "Key": 4199610336680704683,
  5777. "Value": 1
  5778. },
  5779. {
  5780. "Key": 4847610523576971761,
  5781. "Value": 1
  5782. },
  5783. {
  5784. "Key": 4901577655475582318,
  5785. "Value": 1
  5786. },
  5787. {
  5788. "Key": 6462358712820489356,
  5789. "Value": 2
  5790. },
  5791. {
  5792. "Key": 8233714554903076331,
  5793. "Value": 2
  5794. },
  5795. {
  5796. "Key": 8452971738487658154,
  5797. "Value": 2
  5798. },
  5799. {
  5800. "Key": 10684225535275896474,
  5801. "Value": 1
  5802. },
  5803. {
  5804. "Key": 12248402857151394137,
  5805. "Value": 1
  5806. },
  5807. {
  5808. "Key": 12961244973443171261,
  5809. "Value": 1
  5810. },
  5811. {
  5812. "Key": 13774516340727375813,
  5813. "Value": 1
  5814. },
  5815. {
  5816. "Key": 13774516392372178953,
  5817. "Value": 1
  5818. },
  5819. {
  5820. "Key": 13774516552825800515,
  5821. "Value": 1
  5822. },
  5823. {
  5824. "Key": 13774516553941555563,
  5825. "Value": 2
  5826. },
  5827. {
  5828. "Key": 13774516554665849160,
  5829. "Value": 1
  5830. },
  5831. {
  5832. "Key": 13774516556908244164,
  5833. "Value": 2
  5834. },
  5835. {
  5836. "Key": 17746292506071718793,
  5837. "Value": 1
  5838. }
  5839. ]
  5840. }
  5841. }
  5842. }
  5843. }
  5844. }
  5845. }