| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745 |
- {
- "Type": "JsonSerialization",
- "Version": 1,
- "ClassName": "ScriptCanvasData",
- "ClassData": {
- "m_scriptCanvas": {
- "Id": {
- "id": 2619873004287433
- },
- "Name": "Untitled-2",
- "Components": {
- "Component_[10113445010848304216]": {
- "$type": "EditorGraph",
- "Id": 10113445010848304216,
- "m_graphData": {
- "m_nodes": [
- {
- "Id": {
- "id": 2619928838862281
- },
- "Name": "SC Node(SetVariable)",
- "Components": {
- "Component_[10864410292004048823]": {
- "$type": "SetVariableNode",
- "Id": 10864410292004048823,
- "Slots": [
- {
- "id": {
- "m_id": "{5C6B3A88-7E68-443C-8E2B-0D0D63C7AAE5}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{B3F0EBFB-D103-4342-9940-12B55ACE1CE2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{20386626-A91D-46D7-9858-1514202D08A2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Boolean",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{69A3D303-DD2D-4CAF-9FE4-EC4B046A4D86}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": false,
- "label": "Boolean"
- }
- ],
- "m_variableId": {
- "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
- },
- "m_variableDataInSlotId": {
- "m_id": "{20386626-A91D-46D7-9858-1514202D08A2}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{69A3D303-DD2D-4CAF-9FE4-EC4B046A4D86}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619920248927689
- },
- "Name": "SC-Node(Mark Complete)",
- "Components": {
- "Component_[11621355488443680495]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 11621355488443680495,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{24039303-259A-4700-AA7D-AEC5F8FB0158}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{2D65953D-EDF5-4FE5-AA9B-E025055FF7F4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{57BD6785-3DD2-41F7-8534-1B347B33D5FE}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{CA049B57-DF58-498C-A4DD-FE53BF3F8C7A}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 1
- },
- "isNullPointer": false,
- "$type": "EntityId",
- "value": {
- "id": 4276206253
- }
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "",
- "label": "Report"
- }
- ],
- "methodType": 2,
- "methodName": "Mark Complete",
- "className": "Unit Testing",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Unit Testing"
- }
- }
- },
- {
- "Id": {
- "id": 2619911658993097
- },
- "Name": "SC-Node(Start)",
- "Components": {
- "Component_[13343996263980682762]": {
- "$type": "Start",
- "Id": 13343996263980682762,
- "Slots": [
- {
- "id": {
- "m_id": "{44FA5998-4DBF-492B-9B0C-283B1DBC396B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled when the entity that owns this graph is fully activated.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 2619903069058505
- },
- "Name": "SC-Node(Expect True)",
- "Components": {
- "Component_[1453490736622823623]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 1453490736622823623,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{B8B8785B-0042-4711-BBD6-3A6D784DF234}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{5C0E5223-D35A-4095-8AC9-362ECF38A8D9}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Candidate",
- "toolTip": "a value that must be true",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{83199A21-F7E1-464F-AB83-A066077DA9D3}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{0A6E4BCD-BD20-439B-B0D2-595EAD358220}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{7C8CFDE7-896F-4B9F-92C3-0EDCA74A8B00}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 1
- },
- "isNullPointer": false,
- "$type": "EntityId",
- "value": {
- "id": 4276206253
- }
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": false,
- "label": "Candidate"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "second call",
- "label": "Report"
- }
- ],
- "methodType": 2,
- "methodName": "Expect True",
- "className": "Unit Testing",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Unit Testing"
- }
- }
- },
- {
- "Id": {
- "id": 2619894479123913
- },
- "Name": "SC Node(SetVariable)",
- "Components": {
- "Component_[16476265958809865284]": {
- "$type": "SetVariableNode",
- "Id": 16476265958809865284,
- "Slots": [
- {
- "id": {
- "m_id": "{A99765FD-773E-45DB-80EA-5BA3B29D001C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "When signaled sends the variable referenced by this node to a Data Output slot",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{422BDC99-2681-4DD9-BA62-C9FD045410C2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled after the referenced variable has been pushed to the Data Output slot",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{C0915858-A7AA-4852-A55B-55317A5745DA}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Boolean",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- }
- },
- {
- "id": {
- "m_id": "{83E71698-3F1C-4CCC-A86B-C6E96F8354BF}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": true,
- "label": "Boolean"
- }
- ],
- "m_variableId": {
- "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
- },
- "m_variableDataInSlotId": {
- "m_id": "{C0915858-A7AA-4852-A55B-55317A5745DA}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{83E71698-3F1C-4CCC-A86B-C6E96F8354BF}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619885889189321
- },
- "Name": "SendScriptEvent",
- "Components": {
- "Component_[16575037515778823179]": {
- "$type": "SendScriptEvent",
- "Id": 16575037515778823179,
- "Slots": [
- {
- "id": {
- "m_id": "{23BC6DD4-2194-44DE-8CAE-3B6B06681198}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Fires the specified ScriptEvent when signaled",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{7AF83111-7FCB-4725-940F-44289E62CA27}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{46BA64E5-9EA5-4CA7-8051-99F4CEE5E239}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Source",
- "toolTip": "String",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "",
- "label": "Source"
- }
- ],
- "m_version": 1,
- "m_eventSlotMapping": {
- "{301C4D5B-B9B1-4E72-BB4D-A1FA1ECD39DC}": {
- "m_id": "{46BA64E5-9EA5-4CA7-8051-99F4CEE5E239}"
- }
- },
- "m_scriptEventAssetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "m_asset": {
- "assetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "loadBehavior": "PreLoad",
- "assetHint": "scriptcanvas/unittests/localscriptevents.scriptevents"
- },
- "m_busId": {
- "Value": 1754610029
- },
- "m_eventId": {
- "Value": 2309008672
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619877299254729
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[2129347161883400702]": {
- "$type": "GetVariableNode",
- "Id": 2129347161883400702,
- "Slots": [
- {
- "id": {
- "m_id": "{FED4EC08-523D-41AC-8D3B-F52B667F8DB7}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{13904D07-33F8-4F8B-BB53-1B2541320077}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{56DC047D-CF42-4CB6-A5E7-B01DA48A894C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "String",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "m_variableId": {
- "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{56DC047D-CF42-4CB6-A5E7-B01DA48A894C}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619933133829577
- },
- "Name": "SC-Node(Expect False)",
- "Components": {
- "Component_[6320890833657802991]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 6320890833657802991,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{020595B9-8454-4006-960F-BCB035C2A7E8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{523171D0-86C7-4B95-942B-5F2BF1D7824C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Candidate",
- "toolTip": "a value that must be false",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{82F35341-1AB0-4F1A-A6EC-B90AD3AA81A6}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{99164137-773F-4AF2-B5D8-02A1301F4857}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{31DA89C4-A25F-47A2-BC9F-BFB4648F248A}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 1
- },
- "isNullPointer": false,
- "$type": "EntityId",
- "value": {
- "id": 4276206253
- }
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": false,
- "label": "Candidate"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "first call",
- "label": "Report"
- }
- ],
- "methodType": 2,
- "methodName": "Expect False",
- "className": "Unit Testing",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Unit Testing"
- }
- }
- },
- {
- "Id": {
- "id": 2619924543894985
- },
- "Name": "SC-Node(Expect False)",
- "Components": {
- "Component_[6358084500963540744]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 6358084500963540744,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{55190239-3C7C-4A22-A976-CC6C2D5F0785}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{55FD3A6A-693A-47D1-A55F-E5012FA42ECD}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Candidate",
- "toolTip": "a value that must be false",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
- }
- },
- {
- "id": {
- "m_id": "{7A89B538-BD17-430B-BE85-77C9A2FA0CD4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{79CA35A2-A390-4FD8-9D36-D2FF841E98A4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{20AA28AF-856D-4497-B9E8-2A42BFF6A614}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 1
- },
- "isNullPointer": false,
- "$type": "EntityId",
- "value": {
- "id": 4276206253
- }
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": false,
- "label": "Candidate"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "third call",
- "label": "Report"
- }
- ],
- "methodType": 2,
- "methodName": "Expect False",
- "className": "Unit Testing",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Unit Testing"
- }
- }
- },
- {
- "Id": {
- "id": 2619915953960393
- },
- "Name": "SendScriptEvent",
- "Components": {
- "Component_[7392118671502002810]": {
- "$type": "SendScriptEvent",
- "Id": 7392118671502002810,
- "Slots": [
- {
- "id": {
- "m_id": "{95550F81-0B65-45BA-98AE-0F03254DBB71}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Fires the specified ScriptEvent when signaled",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{303FBD03-0CE5-4A88-888C-9148340DD887}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{852A23C2-9F4F-4BF1-A47B-E11CA507CD1F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Source",
- "toolTip": "String",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "",
- "label": "Source"
- }
- ],
- "m_version": 1,
- "m_eventSlotMapping": {
- "{301C4D5B-B9B1-4E72-BB4D-A1FA1ECD39DC}": {
- "m_id": "{852A23C2-9F4F-4BF1-A47B-E11CA507CD1F}"
- }
- },
- "m_scriptEventAssetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "m_asset": {
- "assetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "loadBehavior": "PreLoad",
- "assetHint": "scriptcanvas/unittests/localscriptevents.scriptevents"
- },
- "m_busId": {
- "Value": 1754610029
- },
- "m_eventId": {
- "Value": 2309008672
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619898774091209
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[7595527124831669398]": {
- "$type": "GetVariableNode",
- "Id": 7595527124831669398,
- "Slots": [
- {
- "id": {
- "m_id": "{8773749A-72C8-4C86-A2AD-17EC42969E83}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{BA0A01EC-C141-4DCB-B463-CC03F05356F1}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- }
- }
- ],
- "m_variableId": {
- "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619907364025801
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[7595527124831669398]": {
- "$type": "GetVariableNode",
- "Id": 7595527124831669398,
- "Slots": [
- {
- "id": {
- "m_id": "{8773749A-72C8-4C86-A2AD-17EC42969E83}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{BA0A01EC-C141-4DCB-B463-CC03F05356F1}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- }
- }
- ],
- "m_variableId": {
- "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619890184156617
- },
- "Name": "SendScriptEvent",
- "Components": {
- "Component_[774511950174411370]": {
- "$type": "SendScriptEvent",
- "Id": 774511950174411370,
- "Slots": [
- {
- "id": {
- "m_id": "{575AA295-8957-4930-B11A-7BF29B82BF22}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Fires the specified ScriptEvent when signaled",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{D7BFF899-DB01-4700-9A5E-3B16ADDB65E8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{415ABE9F-6DFC-4F27-BB42-CB452C193F86}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Source",
- "toolTip": "String",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "",
- "label": "Source"
- }
- ],
- "m_version": 1,
- "m_eventSlotMapping": {
- "{301C4D5B-B9B1-4E72-BB4D-A1FA1ECD39DC}": {
- "m_id": "{415ABE9F-6DFC-4F27-BB42-CB452C193F86}"
- }
- },
- "m_scriptEventAssetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "m_asset": {
- "assetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "loadBehavior": "PreLoad",
- "assetHint": "scriptcanvas/unittests/localscriptevents.scriptevents"
- },
- "m_busId": {
- "Value": 1754610029
- },
- "m_eventId": {
- "Value": 2309008672
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619881594222025
- },
- "Name": "ReceiveScriptEvent",
- "Components": {
- "Component_[8671313328334627505]": {
- "$type": "ReceiveScriptEvent",
- "Id": 8671313328334627505,
- "Slots": [
- {
- "id": {
- "m_id": "{61C217E5-A3C8-4574-8DEE-42F6C45A01A0}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Connect",
- "toolTip": "Connect this event handler to the specified entity.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{AACA3922-9E4F-4F21-99EE-C3A772EE1219}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Disconnect",
- "toolTip": "Disconnect this event handler.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{63A20BDF-3BC9-42D7-8324-1AE10D3AD9B6}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnConnected",
- "toolTip": "Signaled when a connection has taken place.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{2E21D717-A970-4739-ABE9-48C35B82E02E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnDisconnected",
- "toolTip": "Signaled when this event handler is disconnected.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{DB89FB82-696E-42C7-81F1-DAC747816B41}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnFailure",
- "toolTip": "Signaled when it is not possible to connect this handler.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{78AA9C52-B376-4FE5-8B77-6105002DAB25}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null,
- {
- "$type": "RestrictedTypeContract",
- "types": [
- {
- "m_type": 5
- }
- ]
- }
- ],
- "slotName": "Source",
- "toolTip": "ID used to connect on a specific Event address (Type: String)",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{F566A78E-74BA-4101-8A5E-27CB9D08A0A9}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:Void",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{3D5AED4D-178A-4087-B54F-B3B70E24FF09}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Result: Boolean",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{93FA7B18-AA16-47ED-A131-1285D5226840}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{428BE79E-1298-4518-8843-ED7F90F0D134}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:Not",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{01106A79-E5DD-40DC-A6D6-B5CB0CF953F0}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Result: Number",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{65D94438-83C6-41E0-88DF-C7B5B72FA9A8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{EFB56010-31D8-4969-8823-84F9D2CE4B83}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:Increment",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "",
- "label": "Source"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": false,
- "label": "Result: Boolean"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.0,
- "label": "Result: Number"
- }
- ],
- "m_version": 1,
- "m_eventMap": [
- {
- "Key": {
- "Value": 912046516
- },
- "Value": {
- "m_scriptEventAssetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "m_eventName": "Not",
- "m_eventSlotId": {
- "m_id": "{428BE79E-1298-4518-8843-ED7F90F0D134}"
- },
- "m_resultSlotId": {
- "m_id": "{3D5AED4D-178A-4087-B54F-B3B70E24FF09}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{93FA7B18-AA16-47ED-A131-1285D5226840}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 1787612057
- },
- "Value": {
- "m_scriptEventAssetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "m_eventName": "Increment",
- "m_eventSlotId": {
- "m_id": "{EFB56010-31D8-4969-8823-84F9D2CE4B83}"
- },
- "m_resultSlotId": {
- "m_id": "{01106A79-E5DD-40DC-A6D6-B5CB0CF953F0}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{65D94438-83C6-41E0-88DF-C7B5B72FA9A8}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 2309008672
- },
- "Value": {
- "m_scriptEventAssetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "m_eventName": "Void",
- "m_eventSlotId": {
- "m_id": "{F566A78E-74BA-4101-8A5E-27CB9D08A0A9}"
- }
- }
- }
- ],
- "m_eventSlotMapping": {
- "{1F1A33C2-DD58-4C6A-B95B-5A67F6969642}": {
- "m_id": "{93FA7B18-AA16-47ED-A131-1285D5226840}"
- },
- "{23C32F9C-F467-431A-8691-D83F763BD2C6}": {
- "m_id": "{65D94438-83C6-41E0-88DF-C7B5B72FA9A8}"
- },
- "{2459F7AA-172D-4187-85E1-397E6A7D0F3D}": {
- "m_id": "{EFB56010-31D8-4969-8823-84F9D2CE4B83}"
- },
- "{301C4D5B-B9B1-4E72-BB4D-A1FA1ECD39DC}": {
- "m_id": "{78AA9C52-B376-4FE5-8B77-6105002DAB25}"
- },
- "{76318ED7-45D5-4C09-9C94-80C0AF8053A9}": {
- "m_id": "{428BE79E-1298-4518-8843-ED7F90F0D134}"
- },
- "{90254C81-3253-4D71-8D47-A3DC13D6B518}": {
- "m_id": "{3D5AED4D-178A-4087-B54F-B3B70E24FF09}"
- },
- "{A64111EE-AC03-4037-8B30-55EFD5B8D025}": {
- "m_id": "{01106A79-E5DD-40DC-A6D6-B5CB0CF953F0}"
- },
- "{C4C89DB1-4DD2-418B-92C4-3B060CADE0E0}": {
- "m_id": "{F566A78E-74BA-4101-8A5E-27CB9D08A0A9}"
- }
- },
- "m_scriptEventAssetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "m_asset": {
- "assetId": {
- "guid": "{2199E1CD-B293-5B39-AC5D-3D36BB2EEF78}"
- },
- "loadBehavior": "PreLoad",
- "assetHint": "scriptcanvas/unittests/localscriptevents.scriptevents"
- },
- "m_autoConnectToGraphOwner": false
- }
- }
- }
- ],
- "m_connections": [
- {
- "Id": {
- "id": 2619937428796873
- },
- "Name": "srcEndpoint=(Get Variable: Boolean), destEndpoint=(Expect False: Candidate)",
- "Components": {
- "Component_[10069082654731522398]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 10069082654731522398,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619898774091209
- },
- "slotId": {
- "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619933133829577
- },
- "slotId": {
- "m_id": "{523171D0-86C7-4B95-942B-5F2BF1D7824C}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619941723764169
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect False: In)",
- "Components": {
- "Component_[1960770782971282999]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 1960770782971282999,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619898774091209
- },
- "slotId": {
- "m_id": "{BA0A01EC-C141-4DCB-B463-CC03F05356F1}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619933133829577
- },
- "slotId": {
- "m_id": "{99164137-773F-4AF2-B5D8-02A1301F4857}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619946018731465
- },
- "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[16403266542524929886]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 16403266542524929886,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619933133829577
- },
- "slotId": {
- "m_id": "{31DA89C4-A25F-47A2-BC9F-BFB4648F248A}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619877299254729
- },
- "slotId": {
- "m_id": "{FED4EC08-523D-41AC-8D3B-F52B667F8DB7}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619950313698761
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Receive Script Event: Connect)",
- "Components": {
- "Component_[14669392074717020319]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 14669392074717020319,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619877299254729
- },
- "slotId": {
- "m_id": "{13904D07-33F8-4F8B-BB53-1B2541320077}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619881594222025
- },
- "slotId": {
- "m_id": "{61C217E5-A3C8-4574-8DEE-42F6C45A01A0}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619954608666057
- },
- "Name": "srcEndpoint=(Get Variable: String), destEndpoint=(Receive Script Event: Source)",
- "Components": {
- "Component_[10134964374600601965]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 10134964374600601965,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619877299254729
- },
- "slotId": {
- "m_id": "{56DC047D-CF42-4CB6-A5E7-B01DA48A894C}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619881594222025
- },
- "slotId": {
- "m_id": "{78AA9C52-B376-4FE5-8B77-6105002DAB25}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619958903633353
- },
- "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Send Script Event: In)",
- "Components": {
- "Component_[11855265208458196677]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 11855265208458196677,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619911658993097
- },
- "slotId": {
- "m_id": "{44FA5998-4DBF-492B-9B0C-283B1DBC396B}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619890184156617
- },
- "slotId": {
- "m_id": "{575AA295-8957-4930-B11A-7BF29B82BF22}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619963198600649
- },
- "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[10874238375288839059]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 10874238375288839059,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619890184156617
- },
- "slotId": {
- "m_id": "{D7BFF899-DB01-4700-9A5E-3B16ADDB65E8}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619898774091209
- },
- "slotId": {
- "m_id": "{8773749A-72C8-4C86-A2AD-17EC42969E83}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619967493567945
- },
- "Name": "srcEndpoint=(Receive Script Event: OnConnected), destEndpoint=(Send Script Event: In)",
- "Components": {
- "Component_[7807064088427961554]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 7807064088427961554,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619881594222025
- },
- "slotId": {
- "m_id": "{63A20BDF-3BC9-42D7-8324-1AE10D3AD9B6}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619915953960393
- },
- "slotId": {
- "m_id": "{95550F81-0B65-45BA-98AE-0F03254DBB71}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619971788535241
- },
- "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[17998133473411973696]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 17998133473411973696,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619915953960393
- },
- "slotId": {
- "m_id": "{303FBD03-0CE5-4A88-888C-9148340DD887}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619907364025801
- },
- "slotId": {
- "m_id": "{8773749A-72C8-4C86-A2AD-17EC42969E83}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619976083502537
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect True: In)",
- "Components": {
- "Component_[9747212749788233501]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 9747212749788233501,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619907364025801
- },
- "slotId": {
- "m_id": "{BA0A01EC-C141-4DCB-B463-CC03F05356F1}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619903069058505
- },
- "slotId": {
- "m_id": "{0A6E4BCD-BD20-439B-B0D2-595EAD358220}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619980378469833
- },
- "Name": "srcEndpoint=(Get Variable: Boolean), destEndpoint=(Expect True: Candidate)",
- "Components": {
- "Component_[15104176635510658534]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 15104176635510658534,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619907364025801
- },
- "slotId": {
- "m_id": "{4BDD0EE4-DA59-4EFF-88C7-0010477ECB02}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619903069058505
- },
- "slotId": {
- "m_id": "{5C0E5223-D35A-4095-8AC9-362ECF38A8D9}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619984673437129
- },
- "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Receive Script Event: Disconnect)",
- "Components": {
- "Component_[7614447246491634847]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 7614447246491634847,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619903069058505
- },
- "slotId": {
- "m_id": "{7C8CFDE7-896F-4B9F-92C3-0EDCA74A8B00}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619881594222025
- },
- "slotId": {
- "m_id": "{AACA3922-9E4F-4F21-99EE-C3A772EE1219}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619988968404425
- },
- "Name": "srcEndpoint=(Receive Script Event: OnDisconnected), destEndpoint=(Set Variable: In)",
- "Components": {
- "Component_[17033721373711621977]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 17033721373711621977,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619881594222025
- },
- "slotId": {
- "m_id": "{2E21D717-A970-4739-ABE9-48C35B82E02E}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619928838862281
- },
- "slotId": {
- "m_id": "{5C6B3A88-7E68-443C-8E2B-0D0D63C7AAE5}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619993263371721
- },
- "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Void), destEndpoint=(Set Variable: In)",
- "Components": {
- "Component_[16855973751185847399]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 16855973751185847399,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619881594222025
- },
- "slotId": {
- "m_id": "{F566A78E-74BA-4101-8A5E-27CB9D08A0A9}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619894479123913
- },
- "slotId": {
- "m_id": "{A99765FD-773E-45DB-80EA-5BA3B29D001C}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2619997558339017
- },
- "Name": "srcEndpoint=(Set Variable: Out), destEndpoint=(Send Script Event: In)",
- "Components": {
- "Component_[15512707442938676314]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 15512707442938676314,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619928838862281
- },
- "slotId": {
- "m_id": "{B3F0EBFB-D103-4342-9940-12B55ACE1CE2}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619885889189321
- },
- "slotId": {
- "m_id": "{23BC6DD4-2194-44DE-8CAE-3B6B06681198}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2620001853306313
- },
- "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Expect False: In)",
- "Components": {
- "Component_[6531576496108258889]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 6531576496108258889,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619885889189321
- },
- "slotId": {
- "m_id": "{7AF83111-7FCB-4725-940F-44289E62CA27}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619924543894985
- },
- "slotId": {
- "m_id": "{79CA35A2-A390-4FD8-9D36-D2FF841E98A4}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 2620006148273609
- },
- "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(Mark Complete: In)",
- "Components": {
- "Component_[14675412595529317136]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 14675412595529317136,
- "sourceEndpoint": {
- "nodeId": {
- "id": 2619924543894985
- },
- "slotId": {
- "m_id": "{20AA28AF-856D-4497-B9E8-2A42BFF6A614}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 2619920248927689
- },
- "slotId": {
- "m_id": "{57BD6785-3DD2-41F7-8534-1B347B33D5FE}"
- }
- }
- }
- }
- }
- ],
- "m_scriptEventAssets": [
- [
- {
- "id": 2619890184156617
- },
- {}
- ],
- [
- {
- "id": 2619881594222025
- },
- {}
- ],
- [
- {
- "id": 2619915953960393
- },
- {}
- ],
- [
- {
- "id": 2619885889189321
- },
- {}
- ]
- ]
- },
- "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
- "versionData": {
- "_grammarVersion": 1,
- "_runtimeVersion": 1,
- "_fileVersion": 1
- },
- "m_variableCounter": 1,
- "GraphCanvasData": [
- {
- "Key": {
- "id": 2619873004287433
- },
- "Value": {
- "ComponentData": {
- "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
- "$type": "SceneComponentSaveData",
- "ViewParams": {
- "Scale": 0.8701891,
- "AnchorX": 783.7376708984375,
- "AnchorY": -63.20465087890625
- }
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619877299254729
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "GetVariableNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 340.0,
- 120.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{018874DD-3E6B-4A5C-AD49-B26400E3E890}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619881594222025
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 520.0,
- 140.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{3F705FDE-3D38-48F6-840D-6495950B73C5}"
- },
- "{D8BBE799-7E4D-495A-B69A-1E3940670891}": {
- "$type": "ScriptEventReceiverHandlerNodeDescriptorSaveData",
- "DisplayConnections": true,
- "EventNames": [
- [
- {
- "Value": 2309008672
- },
- "Void"
- ]
- ]
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619885889189321
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1200.0,
- 160.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{7AB23AAD-95BF-4937-9E50-AE86B7857E54}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619890184156617
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -620.0,
- 80.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{BD7C1F1B-8DD0-42F4-B9B1-69E522BCCE5C}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619894479123913
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "SetVariableNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 860.0,
- 320.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".setVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{D83C40B5-CF7E-40A2-9E17-C788BF03E05C}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619898774091209
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "GetVariableNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -320.0,
- 120.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{C6E03D47-0369-4A93-8A97-5B01C5566A37}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619903069058505
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -100.0,
- 480.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{8746C676-E677-4BE8-91D5-499B4E62FA6F}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619907364025801
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "GetVariableNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -420.0,
- 480.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{79CB5F1F-DC65-4BCB-90BD-1EE14B8CCBBF}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619911658993097
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "TimeNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -800.0,
- 120.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".time"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{D0C4045D-A74E-4203-A77B-0425739D0883}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619915953960393
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -740.0,
- 480.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{A64F923D-EF1D-40CF-9582-3BC61ABBAEFB}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619920248927689
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1840.0,
- 160.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{A302CBD4-5C57-4CA7-BF80-2ECBEEDAECD8}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619924543894985
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 1520.0,
- 160.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{2A152EB4-8C25-42C9-929E-D0742252F10A}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619928838862281
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "SetVariableNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 860.0,
- 160.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".setVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{15F10FD5-0BF4-4F24-8780-2B51B1E7E02D}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 2619933133829577
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 0.0,
- 100.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{E7641522-C8C4-41DA-9310-DB9F554F43B3}"
- }
- }
- }
- }
- ],
- "StatisticsHelper": {
- "InstanceCounter": [
- {
- "Key": 1678857396448701566,
- "Value": 1
- },
- {
- "Key": 4199610336680704683,
- "Value": 1
- },
- {
- "Key": 7864098278275301307,
- "Value": 1
- },
- {
- "Key": 9521377693455992203,
- "Value": 2
- },
- {
- "Key": 9815218044492189981,
- "Value": 2
- },
- {
- "Key": 10204019744198319120,
- "Value": 1
- },
- {
- "Key": 12033332465728181077,
- "Value": 1
- },
- {
- "Key": 12248402947725818581,
- "Value": 3
- },
- {
- "Key": 14039404593459245232,
- "Value": 2
- }
- ]
- }
- },
- "Component_[2621569509282684873]": {
- "$type": "EditorGraphVariableManagerComponent",
- "Id": 2621569509282684873,
- "m_variableData": {
- "m_nameVariableMap": [
- {
- "Key": {
- "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "One",
- "label": "String"
- },
- "VariableId": {
- "m_id": "{39F00C60-72C2-44C0-9424-5E77D1B83742}"
- },
- "VariableName": "Address"
- }
- },
- {
- "Key": {
- "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": false,
- "label": "Boolean"
- },
- "VariableId": {
- "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
- },
- "VariableName": "Void Executed"
- }
- }
- ]
- },
- "CopiedVariableRemapping": [
- {
- "Key": {
- "m_id": "{6916B568-1181-45BD-9DDF-A947B3B3CE9D}"
- },
- "Value": {
- "m_id": "{69AA9334-531B-4517-A02F-63D2504454D2}"
- }
- }
- ]
- }
- }
- }
- }
- }
|