| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276 |
- {
- "Type": "JsonSerialization",
- "Version": 1,
- "ClassName": "ScriptCanvasData",
- "ClassData": {
- "m_scriptCanvas": {
- "Id": {
- "id": 1169026995017774
- },
- "Name": "OnWriteEndOrder",
- "Components": {
- "Component_[13782405326397143739]": {
- "$type": "EditorGraph",
- "Id": 13782405326397143739,
- "m_graphData": {
- "m_nodes": [
- {
- "Id": {
- "id": 1169057059788846
- },
- "Name": "SC-Node(Divide By Number (/))",
- "Components": {
- "Component_[10683825100058298352]": {
- "$type": "MethodOverloaded",
- "Id": 10683825100058298352,
- "Slots": [
- {
- "IsOverload": true,
- "id": {
- "m_id": "{61B8CF69-003E-4689-8785-F8AE91F7409E}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Vector3: 0",
- "DisplayDataType": {
- "m_type": 8
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{71CFE8D3-82FB-42A5-8031-601F3E09ACC1}"
- }
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{C9F52DDB-6769-4BBC-8E42-7389F46E5381}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Number: 1",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{843925B3-3829-4145-9400-0282F671EF95}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{66A545AC-0303-4B09-82D7-ED6D185F2368}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{EE36CC11-38C7-4A4D-9D0F-BD567B4C817F}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Vector3",
- "DisplayDataType": {
- "m_type": 8
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 0.0,
- 0.0,
- 0.0
- ],
- "label": "Vector3: 0"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.0,
- "label": "Number: 1"
- }
- ],
- "methodType": 2,
- "methodName": "Divide By Number (/)",
- "className": "Vector3",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Vector3",
- "orderedInputSlotIds": [
- {
- "m_id": "{61B8CF69-003E-4689-8785-F8AE91F7409E}"
- },
- {
- "m_id": "{C9F52DDB-6769-4BBC-8E42-7389F46E5381}"
- }
- ],
- "outputSlotIds": [
- {
- "m_id": "{EE36CC11-38C7-4A4D-9D0F-BD567B4C817F}"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169044174886958
- },
- "Name": "SC-Node(Mark Complete)",
- "Components": {
- "Component_[10875134299634319857]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 10875134299634319857,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{CA8A062B-D088-45B6-9354-119DCCBEC9F1}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{B0C77482-CA29-4BF0-AEB9-2A5C944EC118}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{16DE57F4-B4A8-4421-A9D3-8AA1D8DD78E9}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{E3344397-341D-4BC3-9CFE-7D3B67A5D076}"
- },
- "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": 1169035584952366
- },
- "Name": "SC-Node(Divide By Number (/))",
- "Components": {
- "Component_[11561682613071137554]": {
- "$type": "MethodOverloaded",
- "Id": 11561682613071137554,
- "Slots": [
- {
- "IsOverload": true,
- "id": {
- "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Vector2: 0",
- "DisplayDataType": {
- "m_type": 9
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{BCC6BF70-F4F7-4C9A-ADAE-FA5DB1355230}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Number: 1",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
- }
- },
- {
- "id": {
- "m_id": "{865ABCCE-D8CD-4029-A876-E850CF03F84F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{ADA33A10-E6FF-40FE-B489-DCE74135312E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Vector2",
- "DisplayDataType": {
- "m_type": 9
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 9
- },
- "isNullPointer": false,
- "$type": "Vector2",
- "value": [
- 0.0,
- 0.0
- ],
- "label": "Vector2: 0"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.01,
- "label": "Number: 1"
- }
- ],
- "methodType": 2,
- "methodName": "Divide By Number (/)",
- "className": "Vector2",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Vector2",
- "orderedInputSlotIds": [
- {
- "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
- },
- {
- "m_id": "{BCC6BF70-F4F7-4C9A-ADAE-FA5DB1355230}"
- }
- ],
- "outputSlotIds": [
- {
- "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169052764821550
- },
- "Name": "SC-Node(Divide By Number (/))",
- "Components": {
- "Component_[11561682613071137554]": {
- "$type": "MethodOverloaded",
- "Id": 11561682613071137554,
- "Slots": [
- {
- "IsOverload": true,
- "id": {
- "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Number: 0",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{BCC6BF70-F4F7-4C9A-ADAE-FA5DB1355230}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Number: 1",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
- }
- },
- {
- "id": {
- "m_id": "{865ABCCE-D8CD-4029-A876-E850CF03F84F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{ADA33A10-E6FF-40FE-B489-DCE74135312E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.0,
- "label": "Number: 0"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.01,
- "label": "Number: 1"
- }
- ],
- "methodType": 2,
- "methodName": "Divide By Number (/)",
- "className": "Math",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Math",
- "orderedInputSlotIds": [
- {
- "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
- },
- {
- "m_id": "{BCC6BF70-F4F7-4C9A-ADAE-FA5DB1355230}"
- }
- ],
- "outputSlotIds": [
- {
- "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169061354756142
- },
- "Name": "SC-Node(Expect Equal)",
- "Components": {
- "Component_[1490894140412444154]": {
- "$type": "MethodOverloaded",
- "Id": 1490894140412444154,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{76D373EF-0A76-4579-A6D0-FB8573F8F7E9}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "DisplayDataType": {
- "m_type": 1
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{AF30559F-3209-4BD5-A457-4132E30FB4F1}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Candidate",
- "toolTip": "left of ==",
- "DisplayDataType": {
- "m_type": 10
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{0382EB13-13F8-4398-BC4F-39DDE62894AB}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Reference",
- "toolTip": "right of ==",
- "DisplayDataType": {
- "m_type": 10
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{4CEF76BB-968B-47DB-BA32-528F1CFC38E0}"
- }
- },
- {
- "id": {
- "m_id": "{E279651B-C0D9-4393-B896-EC47D31ACD5F}"
- },
- "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": "{52DE98D4-037C-490B-B959-900DB788C7E9}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{C13DA8B4-3491-4DEB-BAFC-14936E601CD2}"
- },
- "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": 10
- },
- "isNullPointer": false,
- "$type": "Vector4",
- "value": [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- "label": "Candidate"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 10
- },
- "isNullPointer": false,
- "$type": "Vector4",
- "value": [
- 0.0,
- 0.0,
- 0.0,
- 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": "{76D373EF-0A76-4579-A6D0-FB8573F8F7E9}"
- },
- {
- "m_id": "{AF30559F-3209-4BD5-A457-4132E30FB4F1}"
- },
- {
- "m_id": "{0382EB13-13F8-4398-BC4F-39DDE62894AB}"
- },
- {
- "m_id": "{E279651B-C0D9-4393-B896-EC47D31ACD5F}"
- }
- ],
- "outputSlotIds": [
- {}
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169048469854254
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[16754804686485759764]": {
- "$type": "GetVariableNode",
- "Id": 16754804686485759764,
- "Slots": [
- {
- "id": {
- "m_id": "{1B2A3B1F-9292-4D32-8AFB-A28C9AC31151}"
- },
- "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": "{18E88B9C-2D4D-40FD-87D6-551AD23E294E}"
- },
- "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": "{09688E45-0216-45D7-8E03-3F5D44344E0D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Vector4",
- "DisplayDataType": {
- "m_type": 10
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{448BF3E9-D4BA-4524-8C71-5E6AF01DFCDD}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "x: Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{1FCD74F8-A545-41D9-A263-91E6B1C89F6C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "y: Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{77432C0C-AAEE-42BD-BE4E-229DED9A60A2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "z: Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{8179C018-54A3-4964-AA04-D0F743D22EB8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "w: Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "m_variableId": {
- "m_id": "{4CEF76BB-968B-47DB-BA32-528F1CFC38E0}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{09688E45-0216-45D7-8E03-3F5D44344E0D}"
- },
- "m_propertyAccounts": [
- {
- "m_propertySlotId": {
- "m_id": "{448BF3E9-D4BA-4524-8C71-5E6AF01DFCDD}"
- },
- "m_propertyType": {
- "m_type": 3
- },
- "m_propertyName": "x"
- },
- {
- "m_propertySlotId": {
- "m_id": "{1FCD74F8-A545-41D9-A263-91E6B1C89F6C}"
- },
- "m_propertyType": {
- "m_type": 3
- },
- "m_propertyName": "y"
- },
- {
- "m_propertySlotId": {
- "m_id": "{77432C0C-AAEE-42BD-BE4E-229DED9A60A2}"
- },
- "m_propertyType": {
- "m_type": 3
- },
- "m_propertyName": "z"
- },
- {
- "m_propertySlotId": {
- "m_id": "{8179C018-54A3-4964-AA04-D0F743D22EB8}"
- },
- "m_propertyType": {
- "m_type": 3
- },
- "m_propertyName": "w"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169087124559918
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[16935059990045792580]": {
- "$type": "GetVariableNode",
- "Id": 16935059990045792580,
- "Slots": [
- {
- "id": {
- "m_id": "{C3F3775A-0B31-4C10-9367-4C66A1C3B7BE}"
- },
- "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": "{191BB719-31E2-46A3-8270-95BAA15CB14B}"
- },
- "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": "{18990D1E-AB17-44BB-8D0A-CB6B66634A75}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Vector2",
- "DisplayDataType": {
- "m_type": 9
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{33B6AB8A-38BC-456A-96B0-3D72C139C1A3}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "x: Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{C3AD2172-9499-4FCF-B96B-25F4D241B640}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "y: Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "m_variableId": {
- "m_id": "{53CC2849-4277-47E5-8132-F78E945529FE}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{18990D1E-AB17-44BB-8D0A-CB6B66634A75}"
- },
- "m_propertyAccounts": [
- {
- "m_propertySlotId": {
- "m_id": "{33B6AB8A-38BC-456A-96B0-3D72C139C1A3}"
- },
- "m_propertyType": {
- "m_type": 3
- },
- "m_propertyName": "x"
- },
- {
- "m_propertySlotId": {
- "m_id": "{C3AD2172-9499-4FCF-B96B-25F4D241B640}"
- },
- "m_propertyType": {
- "m_type": 3
- },
- "m_propertyName": "y"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169074239658030
- },
- "Name": "SC-Node(Expect Equal)",
- "Components": {
- "Component_[17040071503292863986]": {
- "$type": "MethodOverloaded",
- "Id": 17040071503292863986,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{28BD5E64-7DAE-4E87-8911-8A29F2770ED7}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "DisplayDataType": {
- "m_type": 1
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Candidate",
- "toolTip": "left of ==",
- "DisplayDataType": {
- "m_type": 9
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{96809CCD-C768-4933-92BE-BA45821D012F}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Reference",
- "toolTip": "right of ==",
- "DisplayDataType": {
- "m_type": 9
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{53CC2849-4277-47E5-8132-F78E945529FE}"
- }
- },
- {
- "id": {
- "m_id": "{F507CD0E-2131-48D7-A7FF-B928F54BCDB0}"
- },
- "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": "{0E667870-6630-4C7C-BE50-A1F46638428B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{9D884ECE-0B50-4D8F-8612-72EB788326E2}"
- },
- "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": 9
- },
- "isNullPointer": false,
- "$type": "Vector2",
- "value": [
- 0.0,
- 0.0
- ],
- "label": "Candidate"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 9
- },
- "isNullPointer": false,
- "$type": "Vector2",
- "value": [
- 0.0,
- 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": "{28BD5E64-7DAE-4E87-8911-8A29F2770ED7}"
- },
- {
- "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
- },
- {
- "m_id": "{96809CCD-C768-4933-92BE-BA45821D012F}"
- },
- {
- "m_id": "{F507CD0E-2131-48D7-A7FF-B928F54BCDB0}"
- }
- ],
- "outputSlotIds": [
- {}
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169065649723438
- },
- "Name": "SC-Node(Expect Equal)",
- "Components": {
- "Component_[17040071503292863986]": {
- "$type": "MethodOverloaded",
- "Id": 17040071503292863986,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{28BD5E64-7DAE-4E87-8911-8A29F2770ED7}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "DisplayDataType": {
- "m_type": 1
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
- },
- "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": "{96809CCD-C768-4933-92BE-BA45821D012F}"
- },
- "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": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
- }
- },
- {
- "id": {
- "m_id": "{F507CD0E-2131-48D7-A7FF-B928F54BCDB0}"
- },
- "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": "{0E667870-6630-4C7C-BE50-A1F46638428B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{9D884ECE-0B50-4D8F-8612-72EB788326E2}"
- },
- "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": "{28BD5E64-7DAE-4E87-8911-8A29F2770ED7}"
- },
- {
- "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
- },
- {
- "m_id": "{96809CCD-C768-4933-92BE-BA45821D012F}"
- },
- {
- "m_id": "{F507CD0E-2131-48D7-A7FF-B928F54BCDB0}"
- }
- ],
- "outputSlotIds": [
- {}
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169039879919662
- },
- "Name": "SC-Node(Expect Equal)",
- "Components": {
- "Component_[17965280411195307946]": {
- "$type": "MethodOverloaded",
- "Id": 17965280411195307946,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{2E1685F4-491D-473A-A470-D7B2EFD4145F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "DisplayDataType": {
- "m_type": 1
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{898F676B-D784-4101-9700-4BEEC8F11548}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Candidate",
- "toolTip": "left of ==",
- "DisplayDataType": {
- "m_type": 8
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{8F6D74E7-558B-4545-B7B8-4D475B231E06}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Reference",
- "toolTip": "right of ==",
- "DisplayDataType": {
- "m_type": 8
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{71CFE8D3-82FB-42A5-8031-601F3E09ACC1}"
- }
- },
- {
- "id": {
- "m_id": "{4BF0D1BA-8D3E-4AA4-BE81-5E508ADB83B7}"
- },
- "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": "{2A40F71F-91B0-46D6-ADFA-21DBA87BFCCD}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{8C4FD72A-329B-4C30-AB16-9D96C10C0B3F}"
- },
- "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": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 0.0,
- 0.0,
- 0.0
- ],
- "label": "Candidate"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 0.0,
- 0.0,
- 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": "{2E1685F4-491D-473A-A470-D7B2EFD4145F}"
- },
- {
- "m_id": "{898F676B-D784-4101-9700-4BEEC8F11548}"
- },
- {
- "m_id": "{8F6D74E7-558B-4545-B7B8-4D475B231E06}"
- },
- {
- "m_id": "{4BF0D1BA-8D3E-4AA4-BE81-5E508ADB83B7}"
- }
- ],
- "outputSlotIds": [
- {}
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169069944690734
- },
- "Name": "SC-Node(Start)",
- "Components": {
- "Component_[4790154995165356826]": {
- "$type": "Start",
- "Id": 4790154995165356826,
- "Slots": [
- {
- "id": {
- "m_id": "{222D0EB8-64B4-4A2B-991D-92BF25DFF671}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled when the entity that owns this graph is fully activated.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169078534625326
- },
- "Name": "SC-Node(Divide By Number (/))",
- "Components": {
- "Component_[4985350965455260812]": {
- "$type": "MethodOverloaded",
- "Id": 4985350965455260812,
- "Slots": [
- {
- "IsOverload": true,
- "id": {
- "m_id": "{8E5A9F36-BA66-4037-8E09-75C99C89BA13}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Vector4: 0",
- "DisplayDataType": {
- "m_type": 10
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{F0E239B8-C1C5-41FE-B07A-487AE76D6114}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Number: 1",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
- }
- },
- {
- "id": {
- "m_id": "{9FE4C555-D932-4A18-838B-4B9CBC5BB935}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{6DC8B9D0-B06E-4989-8EFC-A43D6302A667}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "IsOverload": true,
- "id": {
- "m_id": "{0A995095-6F8B-4913-978F-14E832EB1710}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Vector4",
- "DisplayDataType": {
- "m_type": 10
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 10
- },
- "isNullPointer": false,
- "$type": "Vector4",
- "value": [
- 0.0,
- 0.0,
- 0.0,
- 0.0
- ],
- "label": "Vector4: 0"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.0,
- "label": "Number: 1"
- }
- ],
- "methodType": 2,
- "methodName": "Divide By Number (/)",
- "className": "Vector4",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Vector4",
- "orderedInputSlotIds": [
- {
- "m_id": "{8E5A9F36-BA66-4037-8E09-75C99C89BA13}"
- },
- {
- "m_id": "{F0E239B8-C1C5-41FE-B07A-487AE76D6114}"
- }
- ],
- "outputSlotIds": [
- {
- "m_id": "{0A995095-6F8B-4913-978F-14E832EB1710}"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1169082829592622
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[521107714587120060]": {
- "$type": "GetVariableNode",
- "Id": 521107714587120060,
- "Slots": [
- {
- "id": {
- "m_id": "{7C0BF99C-3CD3-4D52-B484-606052B3BF3F}"
- },
- "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": "{BD25B5F1-E9A6-4F1C-8A9D-FD097799541A}"
- },
- "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": "{EE59432E-B300-4E76-869A-21BCECE000D8}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "m_variableId": {
- "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{EE59432E-B300-4E76-869A-21BCECE000D8}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169031289985070
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[7294931856491902197]": {
- "$type": "GetVariableNode",
- "Id": 7294931856491902197,
- "Slots": [
- {
- "id": {
- "m_id": "{9E2C9AB5-8D10-4449-82C9-55EA7F8B3A58}"
- },
- "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": "{9601B468-EBBE-4B6D-98C0-DE5FF6B35C36}"
- },
- "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": "{FA2427C2-6652-4B30-B29F-7FBF4B51B676}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "m_variableId": {
- "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{FA2427C2-6652-4B30-B29F-7FBF4B51B676}"
- }
- }
- }
- }
- ],
- "m_connections": [
- {
- "Id": {
- "id": 1169091419527214
- },
- "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Divide By Number (/): Number: 1)",
- "Components": {
- "Component_[11746576670105138649]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 11746576670105138649,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169031289985070
- },
- "slotId": {
- "m_id": "{FA2427C2-6652-4B30-B29F-7FBF4B51B676}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169057059788846
- },
- "slotId": {
- "m_id": "{C9F52DDB-6769-4BBC-8E42-7389F46E5381}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169095714494510
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Divide By Number (/): In)",
- "Components": {
- "Component_[10514845345642834251]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 10514845345642834251,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169031289985070
- },
- "slotId": {
- "m_id": "{9601B468-EBBE-4B6D-98C0-DE5FF6B35C36}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169057059788846
- },
- "slotId": {
- "m_id": "{843925B3-3829-4145-9400-0282F671EF95}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169100009461806
- },
- "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[1405238155265179133]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 1405238155265179133,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169069944690734
- },
- "slotId": {
- "m_id": "{222D0EB8-64B4-4A2B-991D-92BF25DFF671}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169031289985070
- },
- "slotId": {
- "m_id": "{9E2C9AB5-8D10-4449-82C9-55EA7F8B3A58}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169104304429102
- },
- "Name": "srcEndpoint=(Divide By Number (/): Out), destEndpoint=(Expect Equal: In)",
- "Components": {
- "Component_[14529550718669830119]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 14529550718669830119,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169057059788846
- },
- "slotId": {
- "m_id": "{66A545AC-0303-4B09-82D7-ED6D185F2368}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169039879919662
- },
- "slotId": {
- "m_id": "{2A40F71F-91B0-46D6-ADFA-21DBA87BFCCD}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169108599396398
- },
- "Name": "srcEndpoint=(Divide By Number (/): Vector3), destEndpoint=(Expect Equal: Candidate)",
- "Components": {
- "Component_[13166566426944303017]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 13166566426944303017,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169057059788846
- },
- "slotId": {
- "m_id": "{EE36CC11-38C7-4A4D-9D0F-BD567B4C817F}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169039879919662
- },
- "slotId": {
- "m_id": "{898F676B-D784-4101-9700-4BEEC8F11548}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169112894363694
- },
- "Name": "srcEndpoint=(Get Variable: Vector4), destEndpoint=(Divide By Number (/): Number: 0)",
- "Components": {
- "Component_[2549747633646965828]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 2549747633646965828,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169048469854254
- },
- "slotId": {
- "m_id": "{09688E45-0216-45D7-8E03-3F5D44344E0D}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169078534625326
- },
- "slotId": {
- "m_id": "{8E5A9F36-BA66-4037-8E09-75C99C89BA13}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169117189330990
- },
- "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[15143367894503418097]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 15143367894503418097,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169039879919662
- },
- "slotId": {
- "m_id": "{8C4FD72A-329B-4C30-AB16-9D96C10C0B3F}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169048469854254
- },
- "slotId": {
- "m_id": "{1B2A3B1F-9292-4D32-8AFB-A28C9AC31151}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169121484298286
- },
- "Name": "srcEndpoint=(Divide By Number (/): Out), destEndpoint=(Expect Equal: In)",
- "Components": {
- "Component_[14366675491744359805]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 14366675491744359805,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169078534625326
- },
- "slotId": {
- "m_id": "{6DC8B9D0-B06E-4989-8EFC-A43D6302A667}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169061354756142
- },
- "slotId": {
- "m_id": "{52DE98D4-037C-490B-B959-900DB788C7E9}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169125779265582
- },
- "Name": "srcEndpoint=(Divide By Number (/): Vector4), destEndpoint=(Expect Equal: Candidate)",
- "Components": {
- "Component_[2091386451358171135]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 2091386451358171135,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169078534625326
- },
- "slotId": {
- "m_id": "{0A995095-6F8B-4913-978F-14E832EB1710}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169061354756142
- },
- "slotId": {
- "m_id": "{AF30559F-3209-4BD5-A457-4132E30FB4F1}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169130074232878
- },
- "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[12310719162616229754]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 12310719162616229754,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169061354756142
- },
- "slotId": {
- "m_id": "{C13DA8B4-3491-4DEB-BAFC-14936E601CD2}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169087124559918
- },
- "slotId": {
- "m_id": "{C3F3775A-0B31-4C10-9367-4C66A1C3B7BE}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169134369200174
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Divide By Number (/): In)",
- "Components": {
- "Component_[18110927024221570531]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 18110927024221570531,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169048469854254
- },
- "slotId": {
- "m_id": "{18E88B9C-2D4D-40FD-87D6-551AD23E294E}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169078534625326
- },
- "slotId": {
- "m_id": "{9FE4C555-D932-4A18-838B-4B9CBC5BB935}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169138664167470
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Divide By Number (/): In)",
- "Components": {
- "Component_[8041430352362004847]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 8041430352362004847,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169087124559918
- },
- "slotId": {
- "m_id": "{191BB719-31E2-46A3-8270-95BAA15CB14B}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169035584952366
- },
- "slotId": {
- "m_id": "{865ABCCE-D8CD-4029-A876-E850CF03F84F}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169142959134766
- },
- "Name": "srcEndpoint=(Get Variable: Vector2), destEndpoint=(Divide By Number (/): Number: 0)",
- "Components": {
- "Component_[17324611235669261863]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 17324611235669261863,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169087124559918
- },
- "slotId": {
- "m_id": "{18990D1E-AB17-44BB-8D0A-CB6B66634A75}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169035584952366
- },
- "slotId": {
- "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169147254102062
- },
- "Name": "srcEndpoint=(Divide By Number (/): Out), destEndpoint=(Expect Equal: In)",
- "Components": {
- "Component_[12566249215597622371]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 12566249215597622371,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169035584952366
- },
- "slotId": {
- "m_id": "{ADA33A10-E6FF-40FE-B489-DCE74135312E}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169074239658030
- },
- "slotId": {
- "m_id": "{0E667870-6630-4C7C-BE50-A1F46638428B}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169151549069358
- },
- "Name": "srcEndpoint=(Divide By Number (/): Vector2), destEndpoint=(Expect Equal: Candidate)",
- "Components": {
- "Component_[11804285279369977009]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 11804285279369977009,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169035584952366
- },
- "slotId": {
- "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169074239658030
- },
- "slotId": {
- "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169155844036654
- },
- "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Divide By Number (/): Vector2: 0)",
- "Components": {
- "Component_[12115865105734748798]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 12115865105734748798,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169082829592622
- },
- "slotId": {
- "m_id": "{EE59432E-B300-4E76-869A-21BCECE000D8}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169052764821550
- },
- "slotId": {
- "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169160139003950
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Divide By Number (/): In)",
- "Components": {
- "Component_[3718695095908150126]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 3718695095908150126,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169082829592622
- },
- "slotId": {
- "m_id": "{BD25B5F1-E9A6-4F1C-8A9D-FD097799541A}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169052764821550
- },
- "slotId": {
- "m_id": "{865ABCCE-D8CD-4029-A876-E850CF03F84F}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169164433971246
- },
- "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[7256874039647838913]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 7256874039647838913,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169074239658030
- },
- "slotId": {
- "m_id": "{9D884ECE-0B50-4D8F-8612-72EB788326E2}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169082829592622
- },
- "slotId": {
- "m_id": "{7C0BF99C-3CD3-4D52-B484-606052B3BF3F}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169168728938542
- },
- "Name": "srcEndpoint=(Divide By Number (/): Out), destEndpoint=(Expect Equal: In)",
- "Components": {
- "Component_[11565579308297232731]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 11565579308297232731,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169052764821550
- },
- "slotId": {
- "m_id": "{ADA33A10-E6FF-40FE-B489-DCE74135312E}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169065649723438
- },
- "slotId": {
- "m_id": "{0E667870-6630-4C7C-BE50-A1F46638428B}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169173023905838
- },
- "Name": "srcEndpoint=(Divide By Number (/): Number), destEndpoint=(Expect Equal: Candidate)",
- "Components": {
- "Component_[3630496600397254138]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 3630496600397254138,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169052764821550
- },
- "slotId": {
- "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169065649723438
- },
- "slotId": {
- "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 1169177318873134
- },
- "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
- "Components": {
- "Component_[10134856753590221112]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 10134856753590221112,
- "sourceEndpoint": {
- "nodeId": {
- "id": 1169065649723438
- },
- "slotId": {
- "m_id": "{9D884ECE-0B50-4D8F-8612-72EB788326E2}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1169044174886958
- },
- "slotId": {
- "m_id": "{16DE57F4-B4A8-4421-A9D3-8AA1D8DD78E9}"
- }
- }
- }
- }
- }
- ]
- },
- "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
- "versionData": {
- "_grammarVersion": 1,
- "_runtimeVersion": 1,
- "_fileVersion": 1
- },
- "m_variableCounter": 7,
- "GraphCanvasData": [
- {
- "Key": {
- "id": 1169026995017774
- },
- "Value": {
- "ComponentData": {
- "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
- "$type": "SceneComponentSaveData",
- "ViewParams": {
- "Scale": 0.8121803,
- "AnchorX": -261.0257873535156,
- "AnchorY": 163.75674438476563
- }
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169031289985070
- },
- "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": [
- 740.0,
- 260.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{8F099678-EDB0-498B-9908-A46D48468A98}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169035584952366
- },
- "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": [
- 780.0,
- 820.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{A62D51AC-B678-43DD-816D-8A852D018B20}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169039879919662
- },
- "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": [
- 1380.0,
- 260.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{14AF1AFD-C05B-4355-B87C-498997FAE23C}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169044174886958
- },
- "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": [
- 1640.0,
- 1080.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{E3549535-86EF-4D6B-B7C3-3520D93F23C2}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169048469854254
- },
- "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": [
- 600.0,
- 500.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{004EB439-3C68-4AF5-81F1-8EF629FA3D64}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169052764821550
- },
- "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": [
- 800.0,
- 1080.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{41F969AC-EAA4-4FBD-BB67-6809B06B8B59}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169057059788846
- },
- "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": [
- 920.0,
- 280.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{452F91E2-57D6-4523-85EC-31FF751DFC45}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169061354756142
- },
- "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": [
- 1220.0,
- 520.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{469FB2B0-871A-4062-AB09-01D075B45423}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169065649723438
- },
- "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": [
- 1260.0,
- 1080.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{CA175C78-95DA-4FB2-ACAC-1743062097FE}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169069944690734
- },
- "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": [
- 540.0,
- 240.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{31E033CD-1FD1-44FB-B365-7390C202E0E5}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169074239658030
- },
- "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": [
- 1240.0,
- 800.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{89D54507-CF90-42BC-B110-883C6B8F2090}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169078534625326
- },
- "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": [
- 760.0,
- 520.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{CA3F11D3-4919-4330-B44C-CD9B9569D26E}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169082829592622
- },
- "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": [
- 560.0,
- 1080.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{10D85700-49EE-4CF4-B878-A58661F1BAC2}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1169087124559918
- },
- "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": [
- 600.0,
- 800.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{7627038F-E789-4413-B532-1E8CB05B2560}"
- }
- }
- }
- }
- ],
- "StatisticsHelper": {
- "InstanceCounter": [
- {
- "Key": 508315135670798494,
- "Value": 3
- },
- {
- "Key": 524494764786010043,
- "Value": 4
- },
- {
- "Key": 4199610336680704683,
- "Value": 1
- },
- {
- "Key": 5197494077169729704,
- "Value": 1
- },
- {
- "Key": 6840657073857873079,
- "Value": 1
- },
- {
- "Key": 11113370063143720408,
- "Value": 2
- },
- {
- "Key": 13123804357695955873,
- "Value": 1
- },
- {
- "Key": 13220748678110195483,
- "Value": 1
- }
- ]
- }
- },
- "Component_[7868279102636482182]": {
- "$type": "EditorGraphVariableManagerComponent",
- "Id": 7868279102636482182,
- "m_variableData": {
- "m_nameVariableMap": [
- {
- "Key": {
- "m_id": "{4CEF76BB-968B-47DB-BA32-528F1CFC38E0}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 10
- },
- "isNullPointer": false,
- "$type": "Vector4",
- "value": [
- 7.0,
- 7.0,
- 7.0,
- 7.0
- ],
- "label": "Vector4"
- },
- "VariableId": {
- "m_id": "{4CEF76BB-968B-47DB-BA32-528F1CFC38E0}"
- },
- "VariableName": "V4"
- }
- },
- {
- "Key": {
- "m_id": "{53CC2849-4277-47E5-8132-F78E945529FE}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 9
- },
- "isNullPointer": false,
- "$type": "Vector2",
- "value": [
- 7.0,
- 7.0
- ],
- "label": "Vector2"
- },
- "VariableId": {
- "m_id": "{53CC2849-4277-47E5-8132-F78E945529FE}"
- },
- "VariableName": "V2"
- }
- },
- {
- "Key": {
- "m_id": "{71CFE8D3-82FB-42A5-8031-601F3E09ACC1}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 7.0,
- 7.0,
- 7.0
- ],
- "label": "Vector3"
- },
- "VariableId": {
- "m_id": "{71CFE8D3-82FB-42A5-8031-601F3E09ACC1}"
- },
- "VariableName": "V3"
- }
- },
- {
- "Key": {
- "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 1.0,
- "label": "Number"
- },
- "VariableId": {
- "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
- },
- "VariableName": "one"
- }
- }
- ]
- }
- }
- }
- }
- }
- }
|