| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817 |
- {
- "Type": "JsonSerialization",
- "Version": 1,
- "ClassName": "ScriptCanvasData",
- "ClassData": {
- "m_scriptCanvas": {
- "Id": {
- "id": 589618726918190
- },
- "Name": "LY_SC_UnitTest_GlobalScriptEvent",
- "Components": {
- "Component_[12506768003619652665]": {
- "$type": "EditorGraph",
- "Id": 12506768003619652665,
- "m_graphData": {
- "m_nodes": [
- {
- "Id": {
- "id": 589661676591150
- },
- "Name": "SC Node(SetVariable)",
- "Components": {
- "Component_[10676770722866964199]": {
- "$type": "SetVariableNode",
- "Id": 10676770722866964199,
- "Slots": [
- {
- "id": {
- "m_id": "{ECD4EC8C-1759-4FAE-B31A-29D99A7216BE}"
- },
- "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": "{C6D8CEED-F9F3-45AB-851E-BA9D8D8A13D4}"
- },
- "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": "{624D3D97-E6B3-4251-8637-773E9B07C49E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Boolean",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{C77D4C88-A9FB-48F8-97B2-D4799ED466E2}"
- },
- "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": true,
- "label": "Boolean"
- }
- ],
- "m_variableId": {
- "m_id": "{7EAB01FE-E67C-4018-ADF9-66CF43BAD875}"
- },
- "m_variableDataInSlotId": {
- "m_id": "{624D3D97-E6B3-4251-8637-773E9B07C49E}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{C77D4C88-A9FB-48F8-97B2-D4799ED466E2}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 589631611820078
- },
- "Name": "SC-Node(Not)",
- "Components": {
- "Component_[10911293858588821455]": {
- "$type": "Not",
- "Id": 10911293858588821455,
- "Slots": [
- {
- "id": {
- "m_id": "{FFACE0B4-481E-4DAD-99D0-0B05A1892623}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Value",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{F18EE183-EEF8-4B96-8720-9C3BBC36AD8C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Result",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{B81FB4F3-7A39-4FCF-9B74-A5F508683416}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Signal to perform the evaluation when desired.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{63096EB8-3FEB-4B02-98F6-9E87AD2EC7ED}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "True",
- "toolTip": "Signaled if the result of the operation is true.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{B172D049-9486-4282-A860-F272FAB756FF}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "False",
- "toolTip": "Signaled if the result of the operation is false.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": false,
- "label": "Value"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 589627316852782
- },
- "Name": "SC-Node(OperatorAdd)",
- "Components": {
- "Component_[11937575424113908189]": {
- "$type": "OperatorAdd",
- "Id": 11937575424113908189,
- "Slots": [
- {
- "id": {
- "m_id": "{C63EDD6C-2CFE-4A2C-BD3D-7884E332C6E4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{CD8A2E44-B140-49AA-9C21-EF88A702262B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{AD0EE0F8-1F78-41D3-A0DB-121DC008A33B}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null,
- {
- "$type": "MathOperatorContract",
- "NativeTypes": [
- {
- "m_type": 3
- },
- {
- "m_type": 6
- },
- {
- "m_type": 8
- },
- {
- "m_type": 9
- },
- {
- "m_type": 10
- },
- {
- "m_type": 11
- },
- {
- "m_type": 12
- },
- {
- "m_type": 14
- },
- {
- "m_type": 15
- }
- ]
- }
- ],
- "slotName": "Number",
- "toolTip": "An operand to use in performing the specified Operation",
- "DisplayDataType": {
- "m_type": 3
- },
- "DisplayGroup": {
- "Value": 1114760223
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 1114760223
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{C74CCEF8-DBCF-4A70-B0F3-84395CA85F8A}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null,
- {
- "$type": "MathOperatorContract",
- "NativeTypes": [
- {
- "m_type": 3
- },
- {
- "m_type": 6
- },
- {
- "m_type": 8
- },
- {
- "m_type": 9
- },
- {
- "m_type": 10
- },
- {
- "m_type": 11
- },
- {
- "m_type": 12
- },
- {
- "m_type": 14
- },
- {
- "m_type": 15
- }
- ]
- }
- ],
- "slotName": "Number",
- "toolTip": "An operand to use in performing the specified Operation",
- "DisplayDataType": {
- "m_type": 3
- },
- "DisplayGroup": {
- "Value": 1114760223
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 1114760223
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{13C41C54-6B43-47E5-AF7B-992AF8631F94}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- {
- "$type": "MathOperatorContract",
- "NativeTypes": [
- {
- "m_type": 3
- },
- {
- "m_type": 6
- },
- {
- "m_type": 8
- },
- {
- "m_type": 9
- },
- {
- "m_type": 10
- },
- {
- "m_type": 11
- },
- {
- "m_type": 12
- },
- {
- "m_type": 14
- },
- {
- "m_type": 15
- }
- ]
- }
- ],
- "slotName": "Result",
- "toolTip": "The result of the specified operation",
- "DisplayDataType": {
- "m_type": 3
- },
- "DisplayGroup": {
- "Value": 1114760223
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 1114760223
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.0,
- "label": "Number"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 1.0,
- "label": "Number"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 589623021885486
- },
- "Name": "SC-Node(Expect True)",
- "Components": {
- "Component_[12305707113781372226]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 12305707113781372226,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{5F7A4A3B-AF75-488C-BACB-295EAAB857DC}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{AAEE4AA2-A9FD-429D-BF7B-A2B5414B8951}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Candidate",
- "toolTip": "a value that must be true",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{7EAB01FE-E67C-4018-ADF9-66CF43BAD875}"
- }
- },
- {
- "id": {
- "m_id": "{8D7B6DB4-5BAB-4C4C-AC75-ECCCACB202C3}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{EDDC6AF0-42B7-4577-B2AC-23BCD9D3D73E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{184FA2B4-4489-4022-8DB6-D4398F6FE84B}"
- },
- "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": "",
- "label": "Report"
- }
- ],
- "methodType": 2,
- "methodName": "Expect True",
- "className": "Unit Testing",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Unit Testing"
- }
- }
- },
- {
- "Id": {
- "id": 589648791689262
- },
- "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": 589657381623854
- },
- "Name": "SendScriptEvent",
- "Components": {
- "Component_[17737198132112381955]": {
- "$type": "SendScriptEvent",
- "Id": 17737198132112381955,
- "Slots": [
- {
- "id": {
- "m_id": "{F0862C7A-258C-4012-9F9F-C80B6FB6FEE8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Fires the specified ScriptEvent when signaled",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{4257A0BF-9CB0-4B72-8D95-19BC31E68C31}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{63A76B4B-D60B-4DE3-9A77-13E70D8E3AFD}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Result: Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{219578DB-4FC3-4E54-A747-0C8839EA8531}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Number",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{88FBC064-75B2-4E8D-A836-D429BD5C9D11}"
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.0,
- "label": "Number"
- }
- ],
- "m_version": 2,
- "m_eventSlotMapping": {
- "{120F80C2-2DD7-4A14-A523-478144EEF583}": {
- "m_id": "{219578DB-4FC3-4E54-A747-0C8839EA8531}"
- },
- "{C7E99974-D1C0-4108-B731-120AF000060C}": {
- "m_id": "{63A76B4B-D60B-4DE3-9A77-13E70D8E3AFD}"
- }
- },
- "m_scriptEventAssetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "m_asset": {
- "assetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "assetHint": "scriptcanvas/unittests/globalscriptevents.scriptevents"
- },
- "m_busId": {
- "Value": 2261882474
- },
- "m_eventId": {
- "Value": 418628318
- }
- }
- }
- },
- {
- "Id": {
- "id": 589665971558446
- },
- "Name": "SendScriptEvent",
- "Components": {
- "Component_[17793330372307127005]": {
- "$type": "SendScriptEvent",
- "Id": 17793330372307127005,
- "Slots": [
- {
- "id": {
- "m_id": "{2466F81C-03C1-48A8-9C5A-5A56C493B2A0}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Fires the specified ScriptEvent when signaled",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{32ECF8AA-932F-4A38-8FE7-F4F6D76C8319}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "m_version": 2,
- "m_scriptEventAssetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "m_asset": {
- "assetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "assetHint": "scriptcanvas/unittests/globalscriptevents.scriptevents"
- },
- "m_busId": {
- "Value": 2261882474
- },
- "m_eventId": {
- "Value": 3040003823
- }
- }
- }
- },
- {
- "Id": {
- "id": 589653086656558
- },
- "Name": "SC-Node(Expect Equal)",
- "Components": {
- "Component_[2475017221557555879]": {
- "$type": "MethodOverloaded",
- "Id": 2475017221557555879,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{7A49B888-CB85-42C0-B8B2-8FECB3353C7F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "DisplayDataType": {
- "m_type": 1
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{5A18D73D-362D-41CB-87BD-6BA7DB626D74}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Candidate",
- "toolTip": "left of ==",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{57F66850-2E84-4FE8-ABB1-063ABE57A18C}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Reference",
- "toolTip": "right of ==",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{836C0AC5-CEF7-4DC8-B2F7-9A2A3196BA17}"
- }
- },
- {
- "id": {
- "m_id": "{B2A786F3-D663-4CDC-BA03-47DBCB22CB5E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{CEB87BB6-EA24-4C3C-9C3A-FDD08EE1D366}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{80FEC92A-9FFF-4584-8CAD-22BD01A1532B}"
- },
- "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": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.0,
- "label": "Candidate"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.0,
- "label": "Reference"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "",
- "label": "Report"
- }
- ],
- "methodType": 2,
- "methodName": "Expect Equal",
- "className": "Unit Testing",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Unit Testing",
- "orderedInputSlotIds": [
- {
- "m_id": "{7A49B888-CB85-42C0-B8B2-8FECB3353C7F}"
- },
- {
- "m_id": "{5A18D73D-362D-41CB-87BD-6BA7DB626D74}"
- },
- {
- "m_id": "{57F66850-2E84-4FE8-ABB1-063ABE57A18C}"
- },
- {
- "m_id": "{B2A786F3-D663-4CDC-BA03-47DBCB22CB5E}"
- }
- ],
- "outputSlotIds": [
- {}
- ]
- }
- }
- },
- {
- "Id": {
- "id": 589644496721966
- },
- "Name": "SC-Node(Mark Complete)",
- "Components": {
- "Component_[2605751852683171324]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 2605751852683171324,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{782A0F93-ED05-4158-9921-1AB19BAAB1CE}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{429DF339-FC72-46B4-907F-515BA03E172D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{C82BE2EF-C372-47C8-B3AC-646801437D50}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{0B9E7058-A78C-4EEE-BE26-18B176207956}"
- },
- "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": 589640201754670
- },
- "Name": "ReceiveScriptEvent",
- "Components": {
- "Component_[2899365300177748121]": {
- "$type": "ReceiveScriptEvent",
- "Id": 2899365300177748121,
- "Slots": [
- {
- "id": {
- "m_id": "{F1EC0FE6-0078-487E-B96B-B223B9EE7FAF}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Connect",
- "toolTip": "Connect this event handler to the specified entity.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{13DC7EA4-1F73-4CAD-8849-8794489D006F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Disconnect",
- "toolTip": "Disconnect this event handler.",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{107770F2-9668-4E37-BDB3-3CE9ADC61162}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnConnected",
- "toolTip": "Signaled when a connection has taken place.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{60904745-4BB3-43F2-832E-82B9F02324A1}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnDisconnected",
- "toolTip": "Signaled when this event handler is disconnected.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{35D44895-98B0-48F3-BAC5-773292F86B1F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "OnFailure",
- "toolTip": "Signaled when it is not possible to connect this handler.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{AD99C031-AD01-41D0-A51B-179C42DFDEF5}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:Void",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{314BB703-3D70-46B7-BB12-9C775896659F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Result: Boolean",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{BEBADBD9-F084-4A65-B11B-6C1295793DA8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{7170C3BA-E86C-45F8-83A3-904A89F1C23C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:Not",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- },
- {
- "id": {
- "m_id": "{3DB4D52F-233B-48C7-BCB7-6300C07973CF}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Result: Number",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{33A96B1B-D22F-4164-9DFA-F3E8D4BC9D01}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{9C1B0C44-08B1-4E2E-9F4C-40D91E5A2FD0}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "ExecutionSlot:Increment",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- },
- "IsLatent": true
- }
- ],
- "Datums": [
- {
- "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": 2,
- "m_eventMap": [
- {
- "Key": {
- "Value": 418628318
- },
- "Value": {
- "m_scriptEventAssetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "m_eventName": "Increment",
- "m_eventSlotId": {
- "m_id": "{9C1B0C44-08B1-4E2E-9F4C-40D91E5A2FD0}"
- },
- "m_resultSlotId": {
- "m_id": "{3DB4D52F-233B-48C7-BCB7-6300C07973CF}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{33A96B1B-D22F-4164-9DFA-F3E8D4BC9D01}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 2640296398
- },
- "Value": {
- "m_scriptEventAssetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "m_eventName": "Not",
- "m_eventSlotId": {
- "m_id": "{7170C3BA-E86C-45F8-83A3-904A89F1C23C}"
- },
- "m_resultSlotId": {
- "m_id": "{314BB703-3D70-46B7-BB12-9C775896659F}"
- },
- "m_parameterSlotIds": [
- {
- "m_id": "{BEBADBD9-F084-4A65-B11B-6C1295793DA8}"
- }
- ],
- "m_numExpectedArguments": 1
- }
- },
- {
- "Key": {
- "Value": 3040003823
- },
- "Value": {
- "m_scriptEventAssetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "m_eventName": "Void",
- "m_eventSlotId": {
- "m_id": "{AD99C031-AD01-41D0-A51B-179C42DFDEF5}"
- }
- }
- }
- ],
- "m_eventSlotMapping": {
- "{0C7A6FE1-0AAC-46B5-A221-844F252E4D24}": {
- "m_id": "{AD99C031-AD01-41D0-A51B-179C42DFDEF5}"
- },
- "{120F80C2-2DD7-4A14-A523-478144EEF583}": {
- "m_id": "{33A96B1B-D22F-4164-9DFA-F3E8D4BC9D01}"
- },
- "{8E9B01B5-D05D-4C59-93ED-96691AF7DA81}": {
- "m_id": "{7170C3BA-E86C-45F8-83A3-904A89F1C23C}"
- },
- "{90254C81-3253-4D71-8D47-A3DC13D6B518}": {
- "m_id": "{314BB703-3D70-46B7-BB12-9C775896659F}"
- },
- "{908C8852-DFBD-4E21-98B6-6A44ADCF5EE6}": {
- "m_id": "{BEBADBD9-F084-4A65-B11B-6C1295793DA8}"
- },
- "{A64111EE-AC03-4037-8B30-55EFD5B8D025}": {
- "m_id": "{3DB4D52F-233B-48C7-BCB7-6300C07973CF}"
- },
- "{F293F9C0-AFA6-4573-8433-05A5986D7540}": {
- "m_id": "{9C1B0C44-08B1-4E2E-9F4C-40D91E5A2FD0}"
- }
- },
- "m_scriptEventAssetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "m_asset": {
- "assetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "assetHint": "scriptcanvas/unittests/globalscriptevents.scriptevents"
- }
- }
- }
- },
- {
- "Id": {
- "id": 589635906787374
- },
- "Name": "SendScriptEvent",
- "Components": {
- "Component_[5014570603000055314]": {
- "$type": "SendScriptEvent",
- "Id": 5014570603000055314,
- "Slots": [
- {
- "id": {
- "m_id": "{32BA2325-5B12-48C8-BA8A-5275C2A9CD26}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Fires the specified ScriptEvent when signaled",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{FF7A2B59-2CE4-435E-9A25-27CF2FAACA05}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{F37110A5-A5DF-4BA3-B5EE-6439D2BE1F87}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Result: Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{FCE42340-E061-40EE-8D3B-E1CA6E27A882}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Boolean",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{11DAA5B8-1D26-4C4E-9232-D6688D6C5A63}"
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": false,
- "label": "Boolean"
- }
- ],
- "m_version": 2,
- "m_eventSlotMapping": {
- "{908C8852-DFBD-4E21-98B6-6A44ADCF5EE6}": {
- "m_id": "{FCE42340-E061-40EE-8D3B-E1CA6E27A882}"
- },
- "{C7E99974-D1C0-4108-B731-120AF000060C}": {
- "m_id": "{F37110A5-A5DF-4BA3-B5EE-6439D2BE1F87}"
- }
- },
- "m_scriptEventAssetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "m_asset": {
- "assetId": {
- "guid": "{FBC90BC8-C2DC-50CC-923D-E2A34E9D1A1A}"
- },
- "assetHint": "scriptcanvas/unittests/globalscriptevents.scriptevents"
- },
- "m_busId": {
- "Value": 2261882474
- },
- "m_eventId": {
- "Value": 2640296398
- }
- }
- }
- },
- {
- "Id": {
- "id": 589670266525742
- },
- "Name": "SC-Node(Expect False)",
- "Components": {
- "Component_[7471891413526465919]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 7471891413526465919,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{8B6E4F9A-A249-4789-9BA3-6F4996A378E3}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{972967E2-A7F6-4DFB-810D-C3DA2A767996}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Candidate",
- "toolTip": "a value that must be false",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{AA6B023C-B264-4593-A46D-6F7F447A5B64}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{E9FAFA10-4912-45BA-B49B-D027EC1C7DAE}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{7A010BFA-CE86-4763-8E53-4BE09EAC14A3}"
- },
- "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": "",
- "label": "Report"
- }
- ],
- "methodType": 2,
- "methodName": "Expect False",
- "className": "Unit Testing",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Unit Testing"
- }
- }
- }
- ],
- "m_connections": [
- {
- "Id": {
- "id": 589674561493038
- },
- "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Mark Complete: In)",
- "Components": {
- "Component_[3558788489285945935]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 3558788489285945935,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589623021885486
- },
- "slotId": {
- "m_id": "{184FA2B4-4489-4022-8DB6-D4398F6FE84B}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589644496721966
- },
- "slotId": {
- "m_id": "{C82BE2EF-C372-47C8-B3AC-646801437D50}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589678856460334
- },
- "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Send Script Event: In)",
- "Components": {
- "Component_[3917522684780950458]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 3917522684780950458,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589648791689262
- },
- "slotId": {
- "m_id": "{44FA5998-4DBF-492B-9B0C-283B1DBC396B}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589657381623854
- },
- "slotId": {
- "m_id": "{F0862C7A-258C-4012-9F9F-C80B6FB6FEE8}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589683151427630
- },
- "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Expect Equal: In)",
- "Components": {
- "Component_[13630389283291755678]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 13630389283291755678,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589657381623854
- },
- "slotId": {
- "m_id": "{4257A0BF-9CB0-4B72-8D95-19BC31E68C31}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589653086656558
- },
- "slotId": {
- "m_id": "{CEB87BB6-EA24-4C3C-9C3A-FDD08EE1D366}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589687446394926
- },
- "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Send Script Event: In)",
- "Components": {
- "Component_[18329241333705936510]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 18329241333705936510,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589653086656558
- },
- "slotId": {
- "m_id": "{80FEC92A-9FFF-4584-8CAD-22BD01A1532B}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589635906787374
- },
- "slotId": {
- "m_id": "{32BA2325-5B12-48C8-BA8A-5275C2A9CD26}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589691741362222
- },
- "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Expect False: In)",
- "Components": {
- "Component_[7121114002783937911]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 7121114002783937911,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589635906787374
- },
- "slotId": {
- "m_id": "{FF7A2B59-2CE4-435E-9A25-27CF2FAACA05}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589670266525742
- },
- "slotId": {
- "m_id": "{E9FAFA10-4912-45BA-B49B-D027EC1C7DAE}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589696036329518
- },
- "Name": "srcEndpoint=(Send Script Event: Result: Boolean), destEndpoint=(Expect False: Candidate)",
- "Components": {
- "Component_[10249967466056818056]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 10249967466056818056,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589635906787374
- },
- "slotId": {
- "m_id": "{F37110A5-A5DF-4BA3-B5EE-6439D2BE1F87}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589670266525742
- },
- "slotId": {
- "m_id": "{972967E2-A7F6-4DFB-810D-C3DA2A767996}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589700331296814
- },
- "Name": "srcEndpoint=(Expect False: Out), destEndpoint=(Send Script Event: In)",
- "Components": {
- "Component_[3556752068525571383]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 3556752068525571383,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589670266525742
- },
- "slotId": {
- "m_id": "{7A010BFA-CE86-4763-8E53-4BE09EAC14A3}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589665971558446
- },
- "slotId": {
- "m_id": "{2466F81C-03C1-48A8-9C5A-5A56C493B2A0}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589704626264110
- },
- "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Expect True: In)",
- "Components": {
- "Component_[15757312414278549667]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 15757312414278549667,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589665971558446
- },
- "slotId": {
- "m_id": "{32ECF8AA-932F-4A38-8FE7-F4F6D76C8319}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589623021885486
- },
- "slotId": {
- "m_id": "{EDDC6AF0-42B7-4577-B2AC-23BCD9D3D73E}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589708921231406
- },
- "Name": "srcEndpoint=(Receive Script Event: Number), destEndpoint=(Add (+): Value)",
- "Components": {
- "Component_[5611752705749724675]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 5611752705749724675,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589640201754670
- },
- "slotId": {
- "m_id": "{33A96B1B-D22F-4164-9DFA-F3E8D4BC9D01}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589627316852782
- },
- "slotId": {
- "m_id": "{AD0EE0F8-1F78-41D3-A0DB-121DC008A33B}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589713216198702
- },
- "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Increment), destEndpoint=(Add (+): In)",
- "Components": {
- "Component_[5594140004288547649]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 5594140004288547649,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589640201754670
- },
- "slotId": {
- "m_id": "{9C1B0C44-08B1-4E2E-9F4C-40D91E5A2FD0}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589627316852782
- },
- "slotId": {
- "m_id": "{C63EDD6C-2CFE-4A2C-BD3D-7884E332C6E4}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589717511165998
- },
- "Name": "srcEndpoint=(Add (+): Result), destEndpoint=(Receive Script Event: Result: Number)",
- "Components": {
- "Component_[8607901630101607613]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 8607901630101607613,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589627316852782
- },
- "slotId": {
- "m_id": "{13C41C54-6B43-47E5-AF7B-992AF8631F94}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589640201754670
- },
- "slotId": {
- "m_id": "{3DB4D52F-233B-48C7-BCB7-6300C07973CF}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589721806133294
- },
- "Name": "srcEndpoint=(Receive Script Event: Boolean), destEndpoint=(Not: Value)",
- "Components": {
- "Component_[11495607908356890113]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 11495607908356890113,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589640201754670
- },
- "slotId": {
- "m_id": "{BEBADBD9-F084-4A65-B11B-6C1295793DA8}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589631611820078
- },
- "slotId": {
- "m_id": "{FFACE0B4-481E-4DAD-99D0-0B05A1892623}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589726101100590
- },
- "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Not), destEndpoint=(Not: In)",
- "Components": {
- "Component_[4123371515071343752]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 4123371515071343752,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589640201754670
- },
- "slotId": {
- "m_id": "{7170C3BA-E86C-45F8-83A3-904A89F1C23C}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589631611820078
- },
- "slotId": {
- "m_id": "{B81FB4F3-7A39-4FCF-9B74-A5F508683416}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589730396067886
- },
- "Name": "srcEndpoint=(Not: Result), destEndpoint=(Receive Script Event: Result: Boolean)",
- "Components": {
- "Component_[7675063294978670598]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 7675063294978670598,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589631611820078
- },
- "slotId": {
- "m_id": "{F18EE183-EEF8-4B96-8720-9C3BBC36AD8C}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589640201754670
- },
- "slotId": {
- "m_id": "{314BB703-3D70-46B7-BB12-9C775896659F}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589734691035182
- },
- "Name": "srcEndpoint=(Receive Script Event: ExecutionSlot:Void), destEndpoint=(Set Variable: In)",
- "Components": {
- "Component_[2738038360910130861]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 2738038360910130861,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589640201754670
- },
- "slotId": {
- "m_id": "{AD99C031-AD01-41D0-A51B-179C42DFDEF5}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589661676591150
- },
- "slotId": {
- "m_id": "{ECD4EC8C-1759-4FAE-B31A-29D99A7216BE}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 589738986002478
- },
- "Name": "srcEndpoint=(Send Script Event: Result: Number), destEndpoint=(Expect Equal: Candidate)",
- "Components": {
- "Component_[18080442798886956750]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 18080442798886956750,
- "sourceEndpoint": {
- "nodeId": {
- "id": 589657381623854
- },
- "slotId": {
- "m_id": "{63A76B4B-D60B-4DE3-9A77-13E70D8E3AFD}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 589653086656558
- },
- "slotId": {
- "m_id": "{5A18D73D-362D-41CB-87BD-6BA7DB626D74}"
- }
- }
- }
- }
- }
- ],
- "m_scriptEventAssets": [
- [
- {
- "id": 589657381623854
- },
- {}
- ],
- [
- {
- "id": 589635906787374
- },
- {}
- ],
- [
- {
- "id": 589665971558446
- },
- {}
- ],
- [
- {
- "id": 589640201754670
- },
- {}
- ]
- ]
- },
- "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
- "versionData": {
- "_grammarVersion": 1,
- "_runtimeVersion": 1,
- "_fileVersion": 1
- },
- "m_variableCounter": 3,
- "GraphCanvasData": [
- {
- "Key": {
- "id": 589618726918190
- },
- "Value": {
- "ComponentData": {
- "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
- "$type": "SceneComponentSaveData",
- "ViewParams": {
- "Scale": 0.6364304,
- "AnchorX": -977.3259887695313,
- "AnchorY": -262.4010314941406
- }
- }
- }
- }
- },
- {
- "Key": {
- "id": 589623021885486
- },
- "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": [
- 560.0,
- -280.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{7EA33538-C6BE-4971-B200-717AC90E0A2F}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 589627316852782
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MathNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -140.0,
- 160.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{DCBC25AF-64AD-4560-A485-583E060E67FC}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 589631611820078
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "LogicNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -140.0,
- 380.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{34BFCA6A-556D-4AFF-AA06-23FEFCDEAAF0}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 589635906787374
- },
- "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": [
- -400.0,
- -80.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{38803201-50A4-42FD-A76D-052E2445C44F}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 589640201754670
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -620.0,
- 180.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{0664C341-FC4B-45CA-809B-97883D4FE207}"
- },
- "{D8BBE799-7E4D-495A-B69A-1E3940670891}": {
- "$type": "ScriptEventReceiverHandlerNodeDescriptorSaveData",
- "EventNames": [
- [
- {
- "Value": 418628318
- },
- "Increment"
- ],
- [
- {
- "Value": 2640296398
- },
- "Not"
- ],
- [
- {
- "Value": 3040003823
- },
- "Void"
- ]
- ]
- }
- }
- }
- },
- {
- "Key": {
- "id": 589644496721966
- },
- "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": [
- 380.0,
- -60.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{7A67EE96-1407-4252-B343-D55DC83090D2}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 589648791689262
- },
- "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": [
- -600.0,
- -280.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".time"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{2AE87E44-A587-4E11-9B1D-7F32DF2DD09F}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 589653086656558
- },
- "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": [
- 60.0,
- -280.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{7B0928BF-FBAA-4DAB-8AA5-CF86948E1304}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 589657381623854
- },
- "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": [
- -400.0,
- -280.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{2AD7214B-7C8A-4828-9EB7-C1785AEABC01}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 589661676591150
- },
- "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": [
- -140.0,
- 560.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".setVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{4DD86C76-51BC-4C20-83A9-B155EE4D640C}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 589665971558446
- },
- "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": [
- 380.0,
- -280.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{012FB437-7CE1-40EE-A033-BE58091868A3}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 589670266525742
- },
- "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": [
- 60.0,
- -40.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{8583740E-F0CF-47A1-A4A2-682519F87666}"
- }
- }
- }
- }
- ],
- "StatisticsHelper": {
- "InstanceCounter": [
- {
- "Key": 524494764786010043,
- "Value": 1
- },
- {
- "Key": 1050222979521486012,
- "Value": 1
- },
- {
- "Key": 1244476766431948410,
- "Value": 1
- },
- {
- "Key": 1678857341228962198,
- "Value": 1
- },
- {
- "Key": 1678857343168039558,
- "Value": 1
- },
- {
- "Key": 1678857343842213289,
- "Value": 1
- },
- {
- "Key": 4199610336680704683,
- "Value": 1
- },
- {
- "Key": 4511496914810470227,
- "Value": 1
- },
- {
- "Key": 6840657073857873079,
- "Value": 1
- },
- {
- "Key": 12248402977957902355,
- "Value": 1
- },
- {
- "Key": 12248402984734585123,
- "Value": 1
- },
- {
- "Key": 12248402984866118658,
- "Value": 1
- },
- {
- "Key": 13965274197900804011,
- "Value": 1
- },
- {
- "Key": 14935618182048638376,
- "Value": 1
- }
- ]
- }
- },
- "Component_[18388094505787988725]": {
- "$type": "EditorGraphVariableManagerComponent",
- "Id": 18388094505787988725,
- "m_variableData": {
- "m_nameVariableMap": [
- {
- "Key": {
- "m_id": "{11DAA5B8-1D26-4C4E-9232-D6688D6C5A63}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": true,
- "label": "Boolean"
- },
- "VariableId": {
- "m_id": "{11DAA5B8-1D26-4C4E-9232-D6688D6C5A63}"
- },
- "VariableName": "True"
- }
- },
- {
- "Key": {
- "m_id": "{7EAB01FE-E67C-4018-ADF9-66CF43BAD875}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": false,
- "label": "Boolean"
- },
- "VariableId": {
- "m_id": "{7EAB01FE-E67C-4018-ADF9-66CF43BAD875}"
- },
- "VariableName": "Void Executed"
- }
- },
- {
- "Key": {
- "m_id": "{836C0AC5-CEF7-4DC8-B2F7-9A2A3196BA17}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 14.0,
- "label": "Number"
- },
- "VariableId": {
- "m_id": "{836C0AC5-CEF7-4DC8-B2F7-9A2A3196BA17}"
- },
- "VariableName": "14"
- }
- },
- {
- "Key": {
- "m_id": "{88FBC064-75B2-4E8D-A836-D429BD5C9D11}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 13.0,
- "label": "Number"
- },
- "VariableId": {
- "m_id": "{88FBC064-75B2-4E8D-A836-D429BD5C9D11}"
- },
- "VariableName": "13"
- }
- }
- ]
- },
- "CopiedVariableRemapping": [
- {
- "Key": {
- "m_id": "{3D036AE3-6EFC-4521-8765-80BC3028006E}"
- },
- "Value": {
- "m_id": "{11DAA5B8-1D26-4C4E-9232-D6688D6C5A63}"
- }
- },
- {
- "Key": {
- "m_id": "{6AA0F64C-4C8E-4762-9150-04F008B747C2}"
- },
- "Value": {
- "m_id": "{88FBC064-75B2-4E8D-A836-D429BD5C9D11}"
- }
- },
- {
- "Key": {
- "m_id": "{83E01F05-E6BC-45E1-8CAE-7388E486379F}"
- },
- "Value": {
- "m_id": "{7EAB01FE-E67C-4018-ADF9-66CF43BAD875}"
- }
- },
- {
- "Key": {
- "m_id": "{8C2202E2-66C4-4DC2-BBC0-64BCB5CFF499}"
- },
- "Value": {
- "m_id": "{836C0AC5-CEF7-4DC8-B2F7-9A2A3196BA17}"
- }
- }
- ]
- }
- }
- }
- }
- }
|