| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253 |
- {
- "Type": "JsonSerialization",
- "Version": 1,
- "ClassName": "ScriptCanvasData",
- "ClassData": {
- "m_scriptCanvas": {
- "Id": {
- "id": 644947816322
- },
- "Name": "LY_SC_UnitTest_UnitTest_MathCustom",
- "Components": {
- "Component_[15589973273677090308]": {
- "$type": "EditorGraphVariableManagerComponent",
- "Id": 15589973273677090308,
- "m_variableData": {
- "m_nameVariableMap": [
- {
- "Key": {
- "m_id": "{0A24EDE3-FB47-4F16-B2F7-EDE0C674A296}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 2.0,
- 2.0,
- 2.0
- ],
- "label": "all2"
- },
- "VariableId": {
- "m_id": "{0A24EDE3-FB47-4F16-B2F7-EDE0C674A296}"
- },
- "VariableName": "all2"
- }
- },
- {
- "Key": {
- "m_id": "{2B4797CF-B756-4CA9-B2D9-56E5D19D3860}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 1.0,
- 1.0,
- 1.0
- ],
- "label": "subtractVector"
- },
- "VariableId": {
- "m_id": "{2B4797CF-B756-4CA9-B2D9-56E5D19D3860}"
- },
- "VariableName": "subtractVector"
- }
- },
- {
- "Key": {
- "m_id": "{6C6B3EB1-4DAE-4BA3-AE03-776A849E9C92}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 1.0,
- 1.0,
- 1.0
- ],
- "label": "addVector"
- },
- "VariableId": {
- "m_id": "{6C6B3EB1-4DAE-4BA3-AE03-776A849E9C92}"
- },
- "VariableName": "addVector"
- }
- },
- {
- "Key": {
- "m_id": "{A71AE9A5-F8C0-417D-A282-28DFF247BC3D}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 1.0,
- 1.0,
- 1.0
- ],
- "label": "normalizeVector"
- },
- "VariableId": {
- "m_id": "{A71AE9A5-F8C0-417D-A282-28DFF247BC3D}"
- },
- "VariableName": "normalizeVector"
- }
- },
- {
- "Key": {
- "m_id": "{A806609B-675E-41D4-A1F8-BD774B9BA8E6}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 0.0,
- 0.0,
- 0.0
- ],
- "label": "all0"
- },
- "VariableId": {
- "m_id": "{A806609B-675E-41D4-A1F8-BD774B9BA8E6}"
- },
- "VariableName": "all0"
- }
- },
- {
- "Key": {
- "m_id": "{F078CCD8-F564-4043-B7AD-1EDF94B0C1DD}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 0.0,
- 0.0,
- 0.0
- ],
- "label": "all1"
- },
- "VariableId": {
- "m_id": "{F078CCD8-F564-4043-B7AD-1EDF94B0C1DD}"
- },
- "VariableName": "all1"
- }
- }
- ]
- }
- },
- "Component_[485659973914358989]": {
- "$type": "EditorGraph",
- "Id": 485659973914358989,
- "m_graphData": {
- "m_nodes": [
- {
- "Id": {
- "id": 16209909297026
- },
- "Name": "SC-Node(Expect True)",
- "Components": {
- "Component_[12442526369668890549]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 12442526369668890549,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{D656705D-A2DF-455D-9DA3-ED8F2CE54CC2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Invalid BehaviorContext::Class name: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{93836C4C-DC8D-4237-8DA1-E681CED554AC}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Candidate",
- "toolTip": "a value that must be true",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{A97DE3E5-A661-4401-968D-A52E520FBAE4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{3ABEEF4B-32C3-45E3-BCF0-C203380387CC}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{32DA3CCB-CF3B-4D37-A561-6E090E9EAA95}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
- },
- "isNullPointer": true,
- "label": "Invalid BehaviorContext::Class name: 0"
- },
- {
- "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",
- "inputSlots": [
- {
- "m_id": "{D656705D-A2DF-455D-9DA3-ED8F2CE54CC2}"
- },
- {
- "m_id": "{93836C4C-DC8D-4237-8DA1-E681CED554AC}"
- },
- {
- "m_id": "{A97DE3E5-A661-4401-968D-A52E520FBAE4}"
- }
- ],
- "prettyClassName": "Unit Testing"
- }
- }
- },
- {
- "Id": {
- "id": 4540483153794
- },
- "Name": "SC-Node(OperatorAdd)",
- "Components": {
- "Component_[14769369212979527025]": {
- "$type": "OperatorAdd",
- "Id": 14769369212979527025,
- "Slots": [
- {
- "id": {
- "m_id": "{030A92E1-C332-42FA-81E7-F7134A418F9F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{0C3F26BD-847E-41E5-B500-A4E777959906}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{CE7A717D-7B81-44A0-8B3E-74CAD1A3B2C4}"
- },
- "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": "Vector3 0",
- "toolTip": "An operand to use in performing the specified Operation",
- "DisplayDataType": {
- "m_type": 8
- },
- "DisplayGroup": {
- "Value": 1114760223
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 1114760223
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{6C6B3EB1-4DAE-4BA3-AE03-776A849E9C92}"
- }
- },
- {
- "id": {
- "m_id": "{44FF0C6B-CE83-4A6D-9DC6-E8B556EB8014}"
- },
- "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": "Vector3 1",
- "toolTip": "An operand to use in performing the specified Operation",
- "DisplayDataType": {
- "m_type": 8
- },
- "DisplayGroup": {
- "Value": 1114760223
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 1114760223
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{6C6B3EB1-4DAE-4BA3-AE03-776A849E9C92}"
- }
- },
- {
- "id": {
- "m_id": "{872BD67B-3046-406D-A436-DB63AD0C5F72}"
- },
- "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": 8
- },
- "DisplayGroup": {
- "Value": 1114760223
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 1114760223
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{6C6B3EB1-4DAE-4BA3-AE03-776A849E9C92}"
- }
- }
- ],
- "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": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 0.0,
- 0.0,
- 0.0
- ],
- "label": "Vector3 1"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 1177523761026
- },
- "Name": "SC-Node(Mark Complete)",
- "Components": {
- "Component_[16459549645083906314]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 16459549645083906314,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{9E2381D2-4466-4FBB-8FB0-A5B97CBBF4E1}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Invalid BehaviorContext::Class name: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{C2F3355B-0604-429F-8EF0-70BAFEDAE355}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{452C7733-03A4-4126-856C-FEB4D293B514}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{29608C38-05E0-4965-84DC-B9FBCE5B41A4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
- },
- "isNullPointer": true,
- "label": "Invalid BehaviorContext::Class name: 0"
- },
- {
- "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",
- "inputSlots": [
- {
- "m_id": "{9E2381D2-4466-4FBB-8FB0-A5B97CBBF4E1}"
- },
- {
- "m_id": "{C2F3355B-0604-429F-8EF0-70BAFEDAE355}"
- }
- ],
- "prettyClassName": "Unit Testing"
- }
- }
- },
- {
- "Id": {
- "id": 14637951266690
- },
- "Name": "SC-Node(ScriptCanvas_Vector3Functions_IsNormalized)",
- "Components": {
- "Component_[17966581615714431732]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 17966581615714431732,
- "Slots": [
- {
- "id": {
- "m_id": "{758E0223-6782-4E02-B458-7F1638C7678E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Source",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{A71AE9A5-F8C0-417D-A282-28DFF247BC3D}"
- }
- },
- {
- "id": {
- "m_id": "{235C6117-E3B3-49B4-AB9F-F243CCF7505F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Tolerance",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{45BA06A7-1A0C-4AA8-9280-5F267706D3C2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{BCA5D0A6-2BA5-4BDA-B23E-14894B94001A}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{88EB6432-8B97-4F26-AD83-D1B20A404CD7}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "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": "Source"
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.01,
- "label": "Tolerance"
- }
- ],
- "methodType": 1,
- "methodName": "ScriptCanvas_Vector3Functions_IsNormalized",
- "inputSlots": [
- {
- "m_id": "{758E0223-6782-4E02-B458-7F1638C7678E}"
- },
- {
- "m_id": "{235C6117-E3B3-49B4-AB9F-F243CCF7505F}"
- }
- ],
- "prettyClassName": "ScriptCanvas_Vector3Functions_IsNormalized"
- }
- }
- },
- {
- "Id": {
- "id": 769501867906
- },
- "Name": "SC-Node(Start)",
- "Components": {
- "Component_[3353907854895616834]": {
- "$type": "Start",
- "Id": 3353907854895616834,
- "Slots": [
- {
- "id": {
- "m_id": "{FEAB4599-117F-4E94-BE01-52BD771CB8B4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled when the entity that owns this graph is fully activated.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 11210567364482
- },
- "Name": "SC-Node(Expect Equal)",
- "Components": {
- "Component_[4213363739403327115]": {
- "$type": "MethodOverloaded",
- "Id": 4213363739403327115,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{9A400753-8A30-4A7C-929A-3651D63D84F4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Invalid BehaviorContext::Class name: 0",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{5E163035-F6AB-4251-A28F-D4FCF726E5B1}"
- },
- "DynamicTypeOverride": 1,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- {
- "$type": "OverloadContract"
- }
- ],
- "slotName": "Candidate",
- "toolTip": "left of ==",
- "DisplayDataType": {
- "m_type": 8
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{6C6B3EB1-4DAE-4BA3-AE03-776A849E9C92}"
- }
- },
- {
- "id": {
- "m_id": "{D36F65FB-D202-4CD8-8EFA-2554B93FF88A}"
- },
- "DynamicTypeOverride": 1,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- {
- "$type": "OverloadContract"
- }
- ],
- "slotName": "Reference",
- "toolTip": "right of ==",
- "DisplayDataType": {
- "m_type": 8
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{0A24EDE3-FB47-4F16-B2F7-EDE0C674A296}"
- }
- },
- {
- "id": {
- "m_id": "{2F11BB67-415D-41F4-8547-D5F08C327BA1}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{F9FECC73-EF81-4F43-987B-5C3CF09D74F4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{C10DE1E8-4249-4084-93F3-84F230ADB59F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
- },
- "isNullPointer": true,
- "label": "Invalid BehaviorContext::Class name: 0"
- },
- {
- "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",
- "inputSlots": [
- {
- "m_id": "{9A400753-8A30-4A7C-929A-3651D63D84F4}"
- },
- {
- "m_id": "{5E163035-F6AB-4251-A28F-D4FCF726E5B1}"
- },
- {
- "m_id": "{D36F65FB-D202-4CD8-8EFA-2554B93FF88A}"
- },
- {
- "m_id": "{2F11BB67-415D-41F4-8547-D5F08C327BA1}"
- }
- ],
- "orderedInputSlotIds": [
- {
- "m_id": "{9A400753-8A30-4A7C-929A-3651D63D84F4}"
- },
- {
- "m_id": "{5E163035-F6AB-4251-A28F-D4FCF726E5B1}"
- },
- {
- "m_id": "{D36F65FB-D202-4CD8-8EFA-2554B93FF88A}"
- },
- {
- "m_id": "{2F11BB67-415D-41F4-8547-D5F08C327BA1}"
- }
- ],
- "outputSlotIds": [
- {}
- ]
- }
- }
- },
- {
- "Id": {
- "id": 12980093890434
- },
- "Name": "SC-Node(Expect Equal)",
- "Components": {
- "Component_[5383037122933705583]": {
- "$type": "MethodOverloaded",
- "Id": 5383037122933705583,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{81857675-4B27-4C11-95BF-0DA34ACE1139}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Invalid BehaviorContext::Class name: 0",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{70AA8459-354C-4B53-8EF6-599D0EA177B2}"
- },
- "DynamicTypeOverride": 1,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- {
- "$type": "OverloadContract"
- }
- ],
- "slotName": "Candidate",
- "toolTip": "left of ==",
- "DisplayDataType": {
- "m_type": 8
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{2B4797CF-B756-4CA9-B2D9-56E5D19D3860}"
- }
- },
- {
- "id": {
- "m_id": "{C4AF8642-5F6D-4AEF-8B91-28D4D649FC1C}"
- },
- "DynamicTypeOverride": 1,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- {
- "$type": "OverloadContract"
- }
- ],
- "slotName": "Reference",
- "toolTip": "right of ==",
- "DisplayDataType": {
- "m_type": 8
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{A806609B-675E-41D4-A1F8-BD774B9BA8E6}"
- }
- },
- {
- "id": {
- "m_id": "{3714984E-D91E-4716-832C-5E926D99CD1A}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "DisplayDataType": {
- "m_type": 5
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{F609418E-EAAE-4A07-9CD6-A76414B46C1F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{80D873DB-46B8-49C8-BC0F-ED715DBB87D0}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
- },
- "isNullPointer": true,
- "label": "Invalid BehaviorContext::Class name: 0"
- },
- {
- "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",
- "inputSlots": [
- {
- "m_id": "{81857675-4B27-4C11-95BF-0DA34ACE1139}"
- },
- {
- "m_id": "{70AA8459-354C-4B53-8EF6-599D0EA177B2}"
- },
- {
- "m_id": "{C4AF8642-5F6D-4AEF-8B91-28D4D649FC1C}"
- },
- {
- "m_id": "{3714984E-D91E-4716-832C-5E926D99CD1A}"
- }
- ],
- "orderedInputSlotIds": [
- {
- "m_id": "{81857675-4B27-4C11-95BF-0DA34ACE1139}"
- },
- {
- "m_id": "{70AA8459-354C-4B53-8EF6-599D0EA177B2}"
- },
- {
- "m_id": "{C4AF8642-5F6D-4AEF-8B91-28D4D649FC1C}"
- },
- {
- "m_id": "{3714984E-D91E-4716-832C-5E926D99CD1A}"
- }
- ],
- "outputSlotIds": [
- {}
- ]
- }
- }
- },
- {
- "Id": {
- "id": 6322894581634
- },
- "Name": "SC-Node(OperatorSub)",
- "Components": {
- "Component_[7144172281196704184]": {
- "$type": "OperatorSub",
- "Id": 7144172281196704184,
- "Slots": [
- {
- "id": {
- "m_id": "{5828CBD5-4819-41BD-B96C-5FA976B50D47}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{96E4CE14-047F-4CC8-8B5C-D114BC29778F}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{6EFAF1C9-A053-4B53-8CC6-3764AEA78D14}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- {
- "$type": "MathOperatorContract",
- "NativeTypes": [
- {
- "m_type": 3
- },
- {
- "m_type": 8
- },
- {
- "m_type": 9
- },
- {
- "m_type": 10
- },
- {
- "m_type": 12
- },
- {
- "m_type": 14
- },
- {
- "m_type": 15
- }
- ]
- }
- ],
- "slotName": "Vector3 0",
- "toolTip": "An operand to use in performing the specified Operation",
- "DisplayDataType": {
- "m_type": 8
- },
- "DisplayGroup": {
- "Value": 1114760223
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 1114760223
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{2B4797CF-B756-4CA9-B2D9-56E5D19D3860}"
- }
- },
- {
- "id": {
- "m_id": "{6CD71D93-26C9-47D7-B4E0-83F5F137ADA5}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- {
- "$type": "MathOperatorContract",
- "NativeTypes": [
- {
- "m_type": 3
- },
- {
- "m_type": 8
- },
- {
- "m_type": 9
- },
- {
- "m_type": 10
- },
- {
- "m_type": 12
- },
- {
- "m_type": 14
- },
- {
- "m_type": 15
- }
- ]
- }
- ],
- "slotName": "Vector3 1",
- "toolTip": "An operand to use in performing the specified Operation",
- "DisplayDataType": {
- "m_type": 8
- },
- "DisplayGroup": {
- "Value": 1114760223
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 1114760223
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{2B4797CF-B756-4CA9-B2D9-56E5D19D3860}"
- }
- },
- {
- "id": {
- "m_id": "{20C21B22-1D75-4D5E-89C4-6DE414B184C7}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- {
- "$type": "MathOperatorContract",
- "NativeTypes": [
- {
- "m_type": 3
- },
- {
- "m_type": 8
- },
- {
- "m_type": 9
- },
- {
- "m_type": 10
- },
- {
- "m_type": 12
- },
- {
- "m_type": 14
- },
- {
- "m_type": 15
- }
- ]
- }
- ],
- "slotName": "Result",
- "toolTip": "The result of the specified operation",
- "DisplayDataType": {
- "m_type": 8
- },
- "DisplayGroup": {
- "Value": 1114760223
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 1114760223
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{2B4797CF-B756-4CA9-B2D9-56E5D19D3860}"
- }
- }
- ],
- "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": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 0.0,
- 0.0,
- 0.0
- ],
- "label": "Vector3 1"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 9745983516546
- },
- "Name": "SC-Node(ScriptCanvas_Vector3Functions_Normalize)",
- "Components": {
- "Component_[9912027874217279621]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 9912027874217279621,
- "Slots": [
- {
- "id": {
- "m_id": "{82FFF277-55DC-4B38-AFD9-2BDC7B05A084}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Source",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{A71AE9A5-F8C0-417D-A282-28DFF247BC3D}"
- }
- },
- {
- "id": {
- "m_id": "{78E5546B-E306-44CC-9214-875D14485358}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{F535A00C-506F-4059-9CD9-3F5797FC8067}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{EC435266-8B23-4591-8266-0FB0C91FBA7D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Vector3",
- "DisplayDataType": {
- "m_type": 8
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1,
- "IsReference": true,
- "VariableReference": {
- "m_id": "{A71AE9A5-F8C0-417D-A282-28DFF247BC3D}"
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 8
- },
- "isNullPointer": false,
- "$type": "Vector3",
- "value": [
- 0.0,
- 0.0,
- 0.0
- ],
- "label": "Source"
- }
- ],
- "methodType": 1,
- "methodName": "ScriptCanvas_Vector3Functions_Normalize",
- "inputSlots": [
- {
- "m_id": "{82FFF277-55DC-4B38-AFD9-2BDC7B05A084}"
- }
- ],
- "prettyClassName": "ScriptCanvas_Vector3Functions_Normalize"
- }
- }
- }
- ],
- "m_connections": [
- {
- "Id": {
- "id": 5171843346306
- },
- "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Add (+): In)",
- "Components": {
- "Component_[4512905234913926849]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 4512905234913926849,
- "sourceEndpoint": {
- "nodeId": {
- "id": 769501867906
- },
- "slotId": {
- "m_id": "{FEAB4599-117F-4E94-BE01-52BD771CB8B4}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 4540483153794
- },
- "slotId": {
- "m_id": "{030A92E1-C332-42FA-81E7-F7134A418F9F}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 7207657844610
- },
- "Name": "srcEndpoint=(Add (+): Out), destEndpoint=(Subtract (-): In)",
- "Components": {
- "Component_[9395331961731509570]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 9395331961731509570,
- "sourceEndpoint": {
- "nodeId": {
- "id": 4540483153794
- },
- "slotId": {
- "m_id": "{0C3F26BD-847E-41E5-B500-A4E777959906}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 6322894581634
- },
- "slotId": {
- "m_id": "{5828CBD5-4819-41BD-B96C-5FA976B50D47}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 10544847433602
- },
- "Name": "srcEndpoint=(Subtract (-): Out), destEndpoint=(ScriptCanvas_Vector3Functions_Normalize: In)",
- "Components": {
- "Component_[11839863443230905986]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 11839863443230905986,
- "sourceEndpoint": {
- "nodeId": {
- "id": 6322894581634
- },
- "slotId": {
- "m_id": "{96E4CE14-047F-4CC8-8B5C-D114BC29778F}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 9745983516546
- },
- "slotId": {
- "m_id": "{78E5546B-E306-44CC-9214-875D14485358}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 12056675921794
- },
- "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_Normalize: Out), destEndpoint=(Expect Equal: In)",
- "Components": {
- "Component_[6557555707341830248]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 6557555707341830248,
- "sourceEndpoint": {
- "nodeId": {
- "id": 9745983516546
- },
- "slotId": {
- "m_id": "{F535A00C-506F-4059-9CD9-3F5797FC8067}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 11210567364482
- },
- "slotId": {
- "m_id": "{F9FECC73-EF81-4F43-987B-5C3CF09D74F4}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 13594274213762
- },
- "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Expect Equal: In)",
- "Components": {
- "Component_[13607480116944598330]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 13607480116944598330,
- "sourceEndpoint": {
- "nodeId": {
- "id": 11210567364482
- },
- "slotId": {
- "m_id": "{C10DE1E8-4249-4084-93F3-84F230ADB59F}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 12980093890434
- },
- "slotId": {
- "m_id": "{F609418E-EAAE-4A07-9CD6-A76414B46C1F}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 15535599431554
- },
- "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(ScriptCanvas_Vector3Functions_IsNormalized: In)",
- "Components": {
- "Component_[4125493971483328003]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 4125493971483328003,
- "sourceEndpoint": {
- "nodeId": {
- "id": 12980093890434
- },
- "slotId": {
- "m_id": "{80D873DB-46B8-49C8-BC0F-ED715DBB87D0}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 14637951266690
- },
- "slotId": {
- "m_id": "{45BA06A7-1A0C-4AA8-9280-5F267706D3C2}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 16819794653058
- },
- "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_IsNormalized: Boolean), destEndpoint=(Expect True: Candidate)",
- "Components": {
- "Component_[16414346347430051585]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 16414346347430051585,
- "sourceEndpoint": {
- "nodeId": {
- "id": 14637951266690
- },
- "slotId": {
- "m_id": "{88EB6432-8B97-4F26-AD83-D1B20A404CD7}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 16209909297026
- },
- "slotId": {
- "m_id": "{93836C4C-DC8D-4237-8DA1-E681CED554AC}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 16888514129794
- },
- "Name": "srcEndpoint=(ScriptCanvas_Vector3Functions_IsNormalized: Out), destEndpoint=(Expect True: In)",
- "Components": {
- "Component_[13496953447729689634]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 13496953447729689634,
- "sourceEndpoint": {
- "nodeId": {
- "id": 14637951266690
- },
- "slotId": {
- "m_id": "{BCA5D0A6-2BA5-4BDA-B23E-14894B94001A}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 16209909297026
- },
- "slotId": {
- "m_id": "{3ABEEF4B-32C3-45E3-BCF0-C203380387CC}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 17833406934914
- },
- "Name": "srcEndpoint=(Expect True: Out), destEndpoint=(Mark Complete: In)",
- "Components": {
- "Component_[10828351960118441766]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 10828351960118441766,
- "sourceEndpoint": {
- "nodeId": {
- "id": 16209909297026
- },
- "slotId": {
- "m_id": "{32DA3CCB-CF3B-4D37-A561-6E090E9EAA95}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 1177523761026
- },
- "slotId": {
- "m_id": "{452C7733-03A4-4126-856C-FEB4D293B514}"
- }
- }
- }
- }
- }
- ]
- },
- "versionData": {
- "_grammarVersion": 1,
- "_runtimeVersion": 1,
- "_fileVersion": 1
- },
- "m_variableCounter": 17,
- "GraphCanvasData": [
- {
- "Key": {
- "id": 644947816322
- },
- "Value": {
- "ComponentData": {
- "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
- "$type": "SceneComponentSaveData",
- "ViewParams": {
- "Scale": 0.6275769019549248,
- "AnchorX": 113.133544921875,
- "AnchorY": -1123.3682861328125
- }
- }
- }
- }
- },
- {
- "Key": {
- "id": 769501867906
- },
- "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": [
- -520.0,
- -380.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{435C9ACB-AEAD-4D59-B532-CECD7A74EE5B}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 1177523761026
- },
- "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": [
- 3000.0,
- -380.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{CE79289C-CC2E-4F70-B60D-31EDA770032F}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 4540483153794
- },
- "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": [
- -360.0,
- -380.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{D001FB48-5A9F-451E-B1A9-759822BCD65E}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 6322894581634
- },
- "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": [
- 220.0,
- -380.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{6EBF062A-CF1B-4341-9331-153D223839D2}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 9745983516546
- },
- "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,
- -380.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{93074D94-E7DA-43DE-ABBF-43FBE6C7F171}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 11210567364482
- },
- "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,
- -380.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{8C609360-EDA0-4983-8D6C-3C4BF92B7A60}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 12980093890434
- },
- "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": [
- 1820.0,
- -380.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{A3CA4221-240F-4590-B8A6-005291A2B0F5}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 14637951266690
- },
- "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": [
- 2260.0,
- -380.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{60B17D29-F05D-4419-A676-77E4AC74ECFC}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 16209909297026
- },
- "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": [
- 2700.0,
- -380.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{5A587A26-1960-4603-B865-EF74A70AA345}"
- }
- }
- }
- }
- ],
- "StatisticsHelper": {
- "InstanceCounter": [
- {
- "Key": 1244476766431948410,
- "Value": 1
- },
- {
- "Key": 4053150093067829293,
- "Value": 2
- },
- {
- "Key": 4199610336680704683,
- "Value": 1
- },
- {
- "Key": 10204019744198319120,
- "Value": 1
- },
- {
- "Key": 12033332465728181077,
- "Value": 1
- },
- {
- "Key": 17746292506071718793,
- "Value": 1
- },
- {
- "Key": 18367790618498189033,
- "Value": 2
- }
- ]
- }
- }
- }
- }
- }
- }
|