From 34adac8dd9fa50ac585c0accebb7268381d92d3a Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Mon, 15 Nov 2021 15:21:18 -0800 Subject: [PATCH 01/10] Crash guards Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp b/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp index 7c70f879aa..42f4740ece 100644 --- a/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp +++ b/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp @@ -128,13 +128,13 @@ namespace ScriptCanvasEditorTools Helpers::GetTypeNameAndDescription(argumentType, argument.m_details.m_name, argument.m_details.m_tooltip); auto name = method->GetArgumentName(i); - if (!name->empty()) + if (name && !name->empty()) { argument.m_details.m_name = *name; } auto tooltip = method->GetArgumentToolTip(i); - if (!tooltip->empty()) + if (tooltip && !tooltip->empty()) { argument.m_details.m_tooltip = *tooltip; } @@ -153,7 +153,7 @@ namespace ScriptCanvasEditorTools Helpers::GetTypeNameAndDescription(resultType, result.m_details.m_name, result.m_details.m_tooltip); auto tooltip = method->GetArgumentToolTip(0); - if (!tooltip->empty()) + if (tooltip && !tooltip->empty()) { result.m_details.m_tooltip = *tooltip; } From 5fb45f4496c65892bbc77a6c720c0e270a57587c Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Mon, 15 Nov 2021 15:56:37 -0800 Subject: [PATCH 02/10] Updated more names Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- .../EBus/Handlers/CameraNotificationBus.names | 6 +- .../EBus/Senders/CameraRequestBus.names | 118 ++-- .../EBus/Senders/CameraSystemRequestBus.names | 10 +- .../Senders/ComponentApplicationBus.names | 23 +- .../EBus/Senders/DebugDrawRequestBus.names | 606 ++++++++++++++++++ .../EBus/Senders/FlyCameraInputBus.names | 12 +- .../Nodes/Containers_ForEach.names | 3 +- 7 files changed, 687 insertions(+), 91 deletions(-) create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DebugDrawRequestBus.names diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CameraNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CameraNotificationBus.names index aeecd598c3..3c12c9643e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CameraNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/CameraNotificationBus.names @@ -18,7 +18,7 @@ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Entity Id", "tooltip": "Entity Unique Id" } } @@ -33,7 +33,7 @@ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Entity Id", "tooltip": "Entity Unique Id" } } @@ -48,7 +48,7 @@ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Entity Id", "tooltip": "Entity Unique Id" } } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraRequestBus.names index 500ae4d94c..4fbeba0aa7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraRequestBus.names @@ -5,7 +5,7 @@ "context": "EBusSender", "variant": "", "details": { - "name": "CameraRequestBus", + "name": "Camera", "category": "Camera" }, "methods": [ @@ -13,20 +13,20 @@ "key": "GetOrthographicHalfWidth", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetOrthographicHalfWidth" + "tooltip": "When signaled, this will invoke Get Orthographic Half Width" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetOrthographicHalfWidth is invoked" + "tooltip": "Signaled after Get Orthographic Half Width is invoked" }, "details": { - "name": "GetOrthographicHalfWidth" + "name": "Get Orthographic Half Width" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Half Width" } } ] @@ -35,21 +35,20 @@ "key": "GetFov", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Get FOV" + "tooltip": "When signaled, this will invoke Get Field of View" }, "exit": { "name": "Out", - "tooltip": "Signaled after Get FOV is invoked" + "tooltip": "Signaled after Get Field of View is invoked" }, "details": { - "name": "Get FOV", - "tooltip": "Returns the field of view of the camera" + "name": "Get Field of View" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "FOV" } } ] @@ -58,20 +57,20 @@ "key": "SetFovRadians", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFovRadians" + "tooltip": "When signaled, this will invoke Set Field of View (Radians)" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFovRadians is invoked" + "tooltip": "Signaled after Set Field of View (Radians) is invoked" }, "details": { - "name": "SetFovRadians" + "name": "Set Field of View (Radians)" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "FOV (Radians)" } } ] @@ -87,15 +86,13 @@ "tooltip": "Signaled after Set Near Clip Distance is invoked" }, "details": { - "name": "Set Near Clip Distance", - "tooltip": "Sets the near clip distance of the camera" + "name": "Set Near Clip Distance" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Distance", - "tooltip": "Set the near clip distance of the camera" + "name": "Near Clip Distance" } } ] @@ -104,20 +101,20 @@ "key": "IsOrthographic", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsOrthographic" + "tooltip": "When signaled, this will invoke Is Orthographic" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsOrthographic is invoked" + "tooltip": "Signaled after Is Orthographic is invoked" }, "details": { - "name": "IsOrthographic" + "name": "Is Orthographic" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Is Orthographic" } } ] @@ -126,20 +123,20 @@ "key": "SetFovDegrees", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetFovDegrees" + "tooltip": "When signaled, this will invoke Set Field of View (Degrees)" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetFovDegrees is invoked" + "tooltip": "Signaled after Set Field of View (Degrees) is invoked" }, "details": { - "name": "SetFovDegrees" + "name": "Set Field of View (Degrees)" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Field of View (Degrees)" } } ] @@ -148,20 +145,20 @@ "key": "GetFovRadians", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFovRadians" + "tooltip": "When signaled, this will invoke Get Field of View (Radians)" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFovRadians is invoked" + "tooltip": "Signaled after Get Field of View (Radians) is invoked" }, "details": { - "name": "GetFovRadians" + "name": "Get Field of View (Radians)" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Field of View (Radians)" } } ] @@ -170,22 +167,20 @@ "key": "SetFov", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Set FOV" + "tooltip": "When signaled, this will invoke Set Field of View" }, "exit": { "name": "Out", - "tooltip": "Signaled after Set FOV is invoked" + "tooltip": "Signaled after Set Field of View is invoked" }, "details": { - "name": "Set FOV", - "tooltip": "Set the field of view of the camera" + "name": "Set Field of View" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "FOV", - "tooltip": "The field of view of the camera" + "name": "Field of View" } } ] @@ -201,8 +196,7 @@ "tooltip": "Signaled after Make Active View is invoked" }, "details": { - "name": "Make Active View", - "tooltip": "Sets the camera on the specified entity to the active view" + "name": "Make Active View" } }, { @@ -216,14 +210,13 @@ "tooltip": "Signaled after Get Far Clip Distance is invoked" }, "details": { - "name": "Get Far Clip Distance", - "tooltip": "Returns the far clip distance of the camera" + "name": "Get Far Clip Distance" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Far Clip Distance" } } ] @@ -232,20 +225,20 @@ "key": "GetFovDegrees", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetFovDegrees" + "tooltip": "When signaled, this will invoke Get Field of View (Degrees)" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetFovDegrees is invoked" + "tooltip": "Signaled after Get Field of View (Degrees) is invoked" }, "details": { - "name": "GetFovDegrees" + "name": "Get Field of View (Degrees)" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Field of View (Degrees)" } } ] @@ -254,20 +247,20 @@ "key": "SetOrthographic", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetOrthographic" + "tooltip": "When signaled, this will invoke Set Orthographic" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetOrthographic is invoked" + "tooltip": "Signaled after Set Orthographic is invoked" }, "details": { - "name": "SetOrthographic" + "name": "Set Orthographic" }, "params": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Orthographic" } } ] @@ -276,20 +269,20 @@ "key": "SetOrthographicHalfWidth", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetOrthographicHalfWidth" + "tooltip": "When signaled, this will invoke Set Orthographic Half Width" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetOrthographicHalfWidth is invoked" + "tooltip": "Signaled after Set Orthographic Half Width is invoked" }, "details": { - "name": "SetOrthographicHalfWidth" + "name": "Set Orthographic Half Width" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Half Width" } } ] @@ -305,14 +298,13 @@ "tooltip": "Signaled after Get Near Clip Distance is invoked" }, "details": { - "name": "Get Near Clip Distance", - "tooltip": "Returns the near clip distance of the camera" + "name": "Get Near Clip Distance" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Near Clip Distance" } } ] @@ -328,15 +320,13 @@ "tooltip": "Signaled after Set Far Clip Distance is invoked" }, "details": { - "name": "Set Far Clip Distance", - "tooltip": "Sets the far clip distance of the camera" + "name": "Set Far Clip Distance" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Distance", - "tooltip": "The far clip distance of the camera" + "name": "Far Clip Distance" } } ] @@ -345,20 +335,20 @@ "key": "IsActiveView", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsActiveView" + "tooltip": "When signaled, this will invoke Is Active View" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsActiveView is invoked" + "tooltip": "Signaled after Is Active View is invoked" }, "details": { - "name": "IsActiveView" + "name": "Is Active View" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Is Active View" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraSystemRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraSystemRequestBus.names index 7aa3557801..6ad6354cd4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraSystemRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/CameraSystemRequestBus.names @@ -5,27 +5,27 @@ "context": "EBusSender", "variant": "", "details": { - "name": "CameraSystemRequestBus" + "name": "Camera" }, "methods": [ { "key": "GetActiveCamera", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetActiveCamera" + "tooltip": "When signaled, this will invoke Get Active Camera" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetActiveCamera is invoked" + "tooltip": "Signaled after Get Active Camera is invoked" }, "details": { - "name": "GetActiveCamera" + "name": "Get Active Camera" }, "results": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Entity Id", "tooltip": "Entity Unique Id" } } diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentApplicationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentApplicationBus.names index 5b5b2c9bb1..59eb3e5025 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentApplicationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/ComponentApplicationBus.names @@ -5,27 +5,28 @@ "context": "EBusSender", "variant": "", "details": { - "name": "ComponentApplicationBus" + "name": "Application", + "category": "Components" }, "methods": [ { "key": "GetEntityName", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetEntityName" + "tooltip": "When signaled, this will invoke Get Entity Name" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetEntityName is invoked" + "tooltip": "Signaled after Get Entity Name is invoked" }, "details": { - "name": "GetEntityName" + "name": "Get Entity Name" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Entity Id", "tooltip": "Entity Unique Id" } } @@ -43,27 +44,27 @@ "key": "SetEntityName", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetEntityName" + "tooltip": "When signaled, this will invoke Set Entity Name" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetEntityName is invoked" + "tooltip": "Signaled after Set Entity Name is invoked" }, "details": { - "name": "SetEntityName" + "name": "Set Entity Name" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", + "name": "Entity Id", "tooltip": "Entity Unique Id" } }, { "typeid": "{7114E998-A8B4-519B-9342-A86D1587B4F7}", "details": { - "name": "" + "name": "Name" } } ], @@ -71,7 +72,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Succesful" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DebugDrawRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DebugDrawRequestBus.names new file mode 100644 index 0000000000..18933932f8 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/DebugDrawRequestBus.names @@ -0,0 +1,606 @@ +{ + "entries": [ + { + "key": "DebugDrawRequestBus", + "context": "EBusSender", + "variant": "", + "details": { + "name": "Debug Draw" + }, + "methods": [ + { + "key": "DrawTextOnEntity", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Text On Entity" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Text On Entity is invoked" + }, + "details": { + "name": "Draw Text On Entity" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Text" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawRayEntityToDirection", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Ray Entity To Direction" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Ray Entity To Direction is invoked" + }, + "details": { + "name": "Draw Ray Entity To Direction" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Direction" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawObb", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Oriented Bounding Box" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Oriented Bounding Box is invoked" + }, + "details": { + "name": "Draw Oriented Bounding Box" + }, + "params": [ + { + "typeid": "{004ABD25-CF14-4EB3-BD41-022C247C07FA}", + "details": { + "name": "OBB" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawObbOnEntity", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Oriented Bounding Box on Entity" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Oriented Bounding Box on Entity is invoked" + }, + "details": { + "name": "Draw Oriented Bounding Box on Entity" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{004ABD25-CF14-4EB3-BD41-022C247C07FA}", + "details": { + "name": "OBB" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawRayLocationToDirection", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Ray Location To Direction" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Ray Location To Direction is invoked" + }, + "details": { + "name": "Draw Ray Location To Direction" + }, + "params": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Position" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Direction" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawSphereOnEntity", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Sphere On Entity" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Sphere On Entity is invoked" + }, + "details": { + "name": "Draw Sphere On Entity" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Radius" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawAabbOnEntity", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Axis Aligned Bounding Box On Entity" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Axis Aligned Bounding Box On Entity is invoked" + }, + "details": { + "name": "Draw Axis Aligned Bounding Box On Entity" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{A54C2B36-D5B8-46A1-A529-4EBDBD2450E7}", + "details": { + "name": "AABB" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawLineEntityToEntity", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Line Entity To Entity" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Line Entity To Entity is invoked" + }, + "details": { + "name": "Draw Line Entity To Entity" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "From Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "To Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawTextAtLocation", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Text At Location" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Text At Location is invoked" + }, + "details": { + "name": "Draw Text At Location" + }, + "params": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Position" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Text" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawTextOnScreen", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Text On Screen" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Text On Screen is invoked" + }, + "details": { + "name": "Draw Text On Screen" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Text" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawAabb", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Axis Aligned Bounding Box" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Axis Aligned Bounding Box is invoked" + }, + "details": { + "name": "Draw Axis Aligned Bounding Box" + }, + "params": [ + { + "typeid": "{A54C2B36-D5B8-46A1-A529-4EBDBD2450E7}", + "details": { + "name": "AABB" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawLineLocationToLocation", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Line Location To Location" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Line Location To Location is invoked" + }, + "details": { + "name": "Draw Line Location To Location" + }, + "params": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Position" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Position" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawLineEntityToLocation", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Line Entity To Location" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Line Entity To Location is invoked" + }, + "details": { + "name": "Draw Line Entity To Location" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Position" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawRayEntityToEntity", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Ray Entity To Entity" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Ray Entity To Entity is invoked" + }, + "details": { + "name": "Draw Ray Entity To Entity" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "From Entity Id", + "tooltip": "Entity to draw the ray from" + } + }, + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "To Entity Id", + "tooltip": "Entity to draw the ray to" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + }, + { + "key": "DrawSphereAtLocation", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Draw Sphere At Location" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Draw Sphere At Location is invoked" + }, + "details": { + "name": "Draw Sphere At Location" + }, + "params": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Position" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Radius" + } + }, + { + "typeid": "{7894072A-9050-4F0F-901B-34B1A0D29417}", + "details": { + "name": "Color" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "Duration" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FlyCameraInputBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FlyCameraInputBus.names index 4c6b403587..616cabcfb5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FlyCameraInputBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/FlyCameraInputBus.names @@ -5,7 +5,7 @@ "context": "EBusSender", "variant": "", "details": { - "name": "FlyCameraInputBus", + "name": "Fly Camera", "category": "Camera" }, "methods": [ @@ -26,7 +26,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Is Enabled" } } ] @@ -35,20 +35,20 @@ "key": "GetIsEnabled", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Is Enabled" + "tooltip": "When signaled, this will invoke Get Is Enabled" }, "exit": { "name": "Out", - "tooltip": "Signaled after Is Enabled is invoked" + "tooltip": "Signaled after Get Is Enabled is invoked" }, "details": { - "name": "Is Enabled" + "name": "Get Is Enabled" }, "results": [ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Is Enabled" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ForEach.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ForEach.names index 5890324a1a..a2761b6317 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ForEach.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Containers_ForEach.names @@ -7,8 +7,7 @@ "details": { "name": "For Each", "category": "Containers", - "tooltip": "Node for iterating through a container", - "subtitle": "Containers" + "tooltip": "Node for iterating through a container" }, "slots": [ { From 7a279019b7d542ded67deab6db21f6c670a34357 Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Tue, 16 Nov 2021 11:07:36 -0800 Subject: [PATCH 03/10] Improved generation for node generics, updated text for many math nodes Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- .../TranslationAssets/Classes/MathUtils.names | 127 +++++++----------- .../Nodes/MathAABB_AddAABB.names | 12 +- .../Nodes/MathAABB_AddPoint.names | 12 +- .../Nodes/MathAABB_ApplyTransform.names | 12 +- .../Nodes/MathAABB_Center.names | 8 +- .../Nodes/MathAABB_Clamp.names | 10 +- .../Nodes/MathAABB_ContainsAABB.names | 12 +- .../Nodes/MathAABB_ContainsVector3.names | 12 +- .../Nodes/MathAABB_Distance.names | 10 +- .../Nodes/MathAABB_Expand.names | 10 +- .../Nodes/MathAABB_Extents.names | 10 +- .../MathAABB_FromCenterHalfExtents.names | 12 +- .../Nodes/MathAABB_FromCenterRadius.names | 12 +- .../Nodes/MathAABB_FromMinMax.names | 12 +- .../Nodes/MathAABB_FromOBB.names | 10 +- .../Nodes/MathAABB_FromPoint.names | 10 +- .../Nodes/MathAABB_GetMax.names | 10 +- .../Nodes/MathAABB_GetMin.names | 10 +- .../Nodes/MathAABB_IsFinite.names | 10 +- .../Nodes/MathAABB_IsValid.names | 8 +- .../Nodes/MathAABB_Null.names | 8 +- .../Nodes/MathAABB_Overlaps.names | 4 +- .../Nodes/MathAABB_SurfaceArea.names | 6 +- .../Nodes/MathAABB_ToSphere.names | 6 +- .../Nodes/MathAABB_Translate.names | 4 +- .../Nodes/MathAABB_XExtent.names | 6 +- .../Nodes/MathAABB_YExtent.names | 6 +- .../Nodes/MathAABB_ZExtent.names | 6 +- .../Nodes/MathColor_Dot3.names | 17 ++- .../Nodes/MathColor_FromValues.names | 25 ++-- .../Nodes/MathColor_FromVector3.names | 13 +- .../MathColor_FromVector3AndNumber.names | 8 +- .../Nodes/MathColor_GammaToLinear.names | 6 +- .../Nodes/MathColor_IsClose.names | 12 +- .../Nodes/MathColor_IsZero.names | 8 +- .../Nodes/MathColor_LinearToGamma.names | 13 +- .../Nodes/MathColor_MultiplyByNumber.names | 4 +- .../Nodes/MathCrc32_FromString.names | 13 +- .../Nodes/MathMatrix3x3_FromColumns.names | 21 ++- .../Nodes/MathMatrix3x3_GetDiagonal.names | 11 +- .../Nodes/MathMatrix4x4_FromDiagonal.names | 13 +- .../Nodes/MathMatrix4x4_FromMatrix3x3.names | 13 +- ...trix4x4_FromQuaternionAndTranslation.names | 17 ++- .../MathMatrix4x4_FromRotationXDegrees.names | 13 +- .../MathMatrix4x4_FromRotationYDegrees.names | 8 +- .../MathMatrix4x4_FromRotationZDegrees.names | 13 +- .../Nodes/MathMatrix4x4_FromRows.names | 25 ++-- .../Nodes/MathMatrix4x4_FromScale.names | 6 +- .../Nodes/MathMatrix4x4_FromTransform.names | 8 +- .../Nodes/MathMatrix4x4_FromTranslation.names | 8 +- .../Nodes/MathMatrix4x4_GetColumn.names | 10 +- .../Nodes/MathMatrix4x4_GetColumns.names | 14 +- .../Nodes/MathMatrix4x4_GetDiagonal.names | 13 +- .../Nodes/MathMatrix4x4_GetElement.names | 21 ++- .../Nodes/MathMatrix4x4_GetRow.names | 17 ++- .../Nodes/MathMatrix4x4_GetRows.names | 25 ++-- .../Nodes/MathMatrix4x4_GetTranslation.names | 11 +- .../Nodes/MathMatrix4x4_Invert.names | 11 +- .../Nodes/MathMatrix4x4_IsClose.names | 21 ++- .../Nodes/MathMatrix4x4_IsFinite.names | 13 +- .../MathMatrix4x4_MultiplyByVector.names | 17 ++- .../Nodes/MathMatrix4x4_ToScale.names | 13 +- .../Nodes/MathMatrix4x4_Transpose.names | 11 +- .../Nodes/MathMatrix4x4_Zero.names | 7 +- .../ScriptCanvas/Core/MethodConfiguration.cpp | 2 +- .../Code/Include/ScriptCanvas/Core/Node.h | 4 +- .../ScriptCanvas/Core/NodeFunctionGeneric.h | 3 +- .../Libraries/Core/EBusEventHandler.cpp | 2 +- .../Libraries/Core/ReceiveScriptEvent.cpp | 2 +- .../Libraries/Core/SendScriptEvent.cpp | 4 +- 70 files changed, 410 insertions(+), 461 deletions(-) diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathUtils.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathUtils.names index 58fcdad8e0..20232e4b0a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathUtils.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MathUtils.names @@ -5,7 +5,7 @@ "context": "BehaviorClass", "variant": "", "details": { - "name": "Math", + "name": "Utilities", "category": "Math" }, "methods": [ @@ -14,22 +14,20 @@ "context": "MathUtils", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ConvertEulerDegreesToQuaternion" + "tooltip": "When signaled, this will invoke Convert Euler Angles To Quaternion" }, "exit": { "name": "Out", - "tooltip": "Signaled after ConvertEulerDegreesToQuaternion is invoked" + "tooltip": "Signaled after Convert Euler Angles To Quaternion is invoked" }, "details": { - "name": "MathUtils::ConvertEulerDegreesToQuaternion", - "category": "Math/Quaternion" + "name": "Convert Euler Angles To Quaternion" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Euler Angle", - "tooltip": "Euler angle in degrees" + "name": "Angles (Degrees)" } } ], @@ -37,8 +35,7 @@ { "typeid": "{73103120-3DD3-4873-BAB3-9713FA2804FB}", "details": { - "name": "Quaternion", - "tooltip": "Angle as a quaternion" + "name": "Quaternion" } } ] @@ -48,22 +45,21 @@ "context": "MathUtils", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ConvertEulerDegreesToTransformPrecise" + "tooltip": "When signaled, this will invoke Convert Euler Angles To Transform (Precise)" }, "exit": { "name": "Out", - "tooltip": "Signaled after ConvertEulerDegreesToTransformPrecise is invoked" + "tooltip": "Signaled after Convert Euler Angles To Transform (Precise) is invoked" }, "details": { - "name": "MathUtils::ConvertEulerDegreesToTransformPrecise", - "category": "Math/Transform" + "name": "Convert Euler Angles To Transform (Precise)", + "category": "Other" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Euler Angle", - "tooltip": "Euler angle in degrees" + "name": "Angles (Degrees)" } } ], @@ -71,8 +67,7 @@ { "typeid": "{5D9958E9-9F1E-4985-B532-FFFDE75FEDFD}", "details": { - "name": "Transform", - "tooltip": "Transform from a Euler angle" + "name": "Transform" } } ] @@ -82,22 +77,20 @@ "context": "MathUtils", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ConvertEulerDegreesToTransform" + "tooltip": "When signaled, this will invoke Convert Euler Angles To Transform" }, "exit": { "name": "Out", - "tooltip": "Signaled after ConvertEulerDegreesToTransform is invoked" + "tooltip": "Signaled after Convert Euler Angles To Transform is invoked" }, "details": { - "name": "MathUtils::ConvertEulerDegreesToTransform", - "category": "Math/Transform" + "name": "Convert Euler Angles To Transform" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Euler Angle", - "tooltip": "Euler angle in degrees" + "name": "Angles (Degrees)" } } ], @@ -105,8 +98,7 @@ { "typeid": "{5D9958E9-9F1E-4985-B532-FFFDE75FEDFD}", "details": { - "name": "Transform", - "tooltip": "Transform from a Euler angle" + "name": "Transform" } } ] @@ -116,22 +108,20 @@ "context": "MathUtils", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ConvertQuaternionToEulerRadians" + "tooltip": "When signaled, this will invoke Convert Quaternion To Euler Angles (Radians)" }, "exit": { "name": "Out", - "tooltip": "Signaled after ConvertQuaternionToEulerRadians is invoked" + "tooltip": "Signaled after Convert Quaternion To Euler Angles (Radians) is invoked" }, "details": { - "name": "MathUtils::ConvertQuaternionToEulerRadians", - "category": "Math/Quaternion" + "name": "Convert Quaternion To Euler Angles (Radians)" }, "params": [ { "typeid": "{73103120-3DD3-4873-BAB3-9713FA2804FB}", "details": { - "name": "Quaternion", - "tooltip": "Quaternion angle" + "name": "Quaternion" } } ], @@ -139,8 +129,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Euler Angle", - "tooltip": "Euler angle in radians" + "name": "Angles (Radians)" } } ] @@ -150,36 +139,33 @@ "context": "MathUtils", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateLookAt" + "tooltip": "When signaled, this will invoke Create Look At" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateLookAt is invoked" + "tooltip": "Signaled after Create Look At is invoked" }, "details": { - "name": "MathUtils::CreateLookAt", - "category": "Math/Transform" + "name": "Create Look At" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "From Position", - "tooltip": "The position looking from" + "name": "From" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Target Position", - "tooltip": "The position looking at" + "name": "To" } }, { "typeid": "{72B9409A-7D1A-4831-9CFE-FCB3FADD3426}", "details": { - "name": "Forward Axis", - "tooltip": "1 == X, 2 == -X, 3 == Y, 4 == -Y, 5 == Z, 6 == -Z" + "name": "Axis", + "tooltip": "0: X+, 1: X-, 2: Y+, 3: Y-, 4: Z+, 5: Z-" } } ], @@ -187,8 +173,7 @@ { "typeid": "{5D9958E9-9F1E-4985-B532-FFFDE75FEDFD}", "details": { - "name": "Transform", - "tooltip": "The look at rotation expressed as a transform" + "name": "Transform" } } ] @@ -198,22 +183,20 @@ "context": "MathUtils", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ConvertTransformToEulerRadians" + "tooltip": "When signaled, this will invoke Convert Transform To Euler Angles (Radians)" }, "exit": { "name": "Out", - "tooltip": "Signaled after ConvertTransformToEulerRadians is invoked" + "tooltip": "Signaled after Convert Transform To Euler Angles (Radians) is invoked" }, "details": { - "name": "MathUtils::ConvertTransformToEulerRadians", - "category": "Math/Transform" + "name": "Convert Transform To Euler Angles (Radians)" }, "params": [ { "typeid": "{5D9958E9-9F1E-4985-B532-FFFDE75FEDFD}", "details": { - "name": "Transform", - "tooltip": "The rotation from the transform is used for the conversion" + "name": "Transform" } } ], @@ -221,8 +204,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Euler Angle", - "tooltip": "Euler angle in radians" + "name": "Angles (Radians)" } } ] @@ -232,22 +214,20 @@ "context": "MathUtils", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ConvertQuaternionToEulerDegrees" + "tooltip": "When signaled, this will invoke Convert Quaternion To Euler Angles (Degrees)" }, "exit": { "name": "Out", - "tooltip": "Signaled after ConvertQuaternionToEulerDegrees is invoked" + "tooltip": "Signaled after Convert Quaternion To Euler Angles (Degrees) is invoked" }, "details": { - "name": "MathUtils::ConvertQuaternionToEulerDegrees", - "category": "Math/Quaternion" + "name": "Convert Quaternion To Euler Angles (Degrees)" }, "params": [ { "typeid": "{73103120-3DD3-4873-BAB3-9713FA2804FB}", "details": { - "name": "Quaternion", - "tooltip": "Quaternion angle" + "name": "Quaternion" } } ], @@ -255,8 +235,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Euler Angle", - "tooltip": "Euler angle in degrees" + "name": "Angles (Degrees)" } } ] @@ -266,22 +245,20 @@ "context": "MathUtils", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ConvertTransformToEulerDegrees" + "tooltip": "When signaled, this will invoke Convert Transform To Euler Angles (Degrees)" }, "exit": { "name": "Out", - "tooltip": "Signaled after ConvertTransformToEulerDegrees is invoked" + "tooltip": "Signaled after Convert Transform To Euler Angles (Degrees) is invoked" }, "details": { - "name": "MathUtils::ConvertTransformToEulerDegrees", - "category": "Math/Transform" + "name": "Convert Transform To Euler Angles (Degrees)" }, "params": [ { "typeid": "{5D9958E9-9F1E-4985-B532-FFFDE75FEDFD}", "details": { - "name": "Transform", - "tooltip": "The rotation from the transform is used for the conversion" + "name": "Transform" } } ], @@ -289,8 +266,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Euler Angle", - "tooltip": "Euler angle in degrees" + "name": "Angles (Degrees)" } } ] @@ -300,22 +276,20 @@ "context": "MathUtils", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ConvertEulerRadiansToQuaternion" + "tooltip": "When signaled, this will invoke Convert Euler Angles (Radians) To Quaternion" }, "exit": { "name": "Out", - "tooltip": "Signaled after ConvertEulerRadiansToQuaternion is invoked" + "tooltip": "Signaled after Convert Euler Angles (Radians) To Quaternion is invoked" }, "details": { - "name": "MathUtils::ConvertEulerRadiansToQuaternion", - "category": "Math/Quaternion" + "name": "Convert Euler Angles (Radians) To Quaternion" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Euler Angle", - "tooltip": "Euler angle in radians" + "name": "Angles (Radians)" } } ], @@ -323,8 +297,7 @@ { "typeid": "{73103120-3DD3-4873-BAB3-9713FA2804FB}", "details": { - "name": "Quaternion", - "tooltip": "Angle as a quaternion" + "name": "Quaternion" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddAABB.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddAABB.names index f6ef7768dd..0b5c5f26ea 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddAABB.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddAABB.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "AddAABB", - "category": "Math/AABB", + "name": "Add Axis Aligned Bounding Boxes", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the AABB that is the (min(min(A), min(B)), max(max(A), max(B)))", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_AABB: A", "details": { - "name": "AABB: A" + "name": "First" } }, { "key": "DataInput_AABB: B", "details": { - "name": "AABB: B" + "name": "Second" } }, { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddPoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddPoint.names index 3745892662..e22bafcc60 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddPoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_AddPoint.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "AddPoint", - "category": "Math/AABB", + "name": "Add Point", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the AABB that is the (min(min(Source), Point), max(max(Source), Point))", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataInput_Vector3: Point", "details": { - "name": "Vector3: Point" + "name": "Point" } }, { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ApplyTransform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ApplyTransform.names index b7ced59374..ad01a37239 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ApplyTransform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ApplyTransform.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ApplyTransform", - "category": "Math/AABB", + "name": "Apply Transform", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the AABB translated and possibly scaled by the Transform", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataInput_Transform: Transform", "details": { - "name": "Transform: Transform" + "name": "Transform" } }, { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Center.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Center.names index bc2c86049e..5f3fe027f2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Center.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Center.names @@ -6,9 +6,9 @@ "variant": "", "details": { "name": "Center", - "category": "Math/AABB", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the center of Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,13 +26,13 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataOutput_Result: Vector3", "details": { - "name": "Result: Vector3" + "name": "Center" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Clamp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Clamp.names index 3d0c00daf6..0e7ee2c5bf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Clamp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Clamp.names @@ -6,9 +6,9 @@ "variant": "", "details": { "name": "Clamp", - "category": "Math/AABB", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the largest version of Source that can fit entirely within Clamp", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataInput_AABB: Clamp", "details": { - "name": "AABB: Clamp" + "name": "Clamp" } }, { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsAABB.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsAABB.names index 31ea6b1a2e..aad3bbf1c1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsAABB.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsAABB.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ContainsAABB", - "category": "Math/AABB", + "name": "Contains Axis Aligned Bounding Box", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns true if Source contains all of the bounds of Candidate, else false", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataInput_AABB: Candidate", "details": { - "name": "AABB: Candidate" + "name": "Candidate" } }, { "key": "DataOutput_Result: Boolean", "details": { - "name": "Result: Boolean" + "name": "Contains" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsVector3.names index ba30ab2874..9fc7673965 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ContainsVector3.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ContainsVector3", - "category": "Math/AABB", + "name": "Contains Vector3", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns true if Source contains the Candidate, else false", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataInput_Vector3: Candidate", "details": { - "name": "Vector3: Candidate" + "name": "Candidate" } }, { "key": "DataOutput_Result: Boolean", "details": { - "name": "Result: Boolean" + "name": "Contains" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Distance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Distance.names index 0f4e2878f8..579771fef0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Distance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Distance.names @@ -6,9 +6,9 @@ "variant": "", "details": { "name": "Distance", - "category": "Math/AABB", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the shortest distance from Point to Source, or zero of Point is contained in Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataInput_Vector3: Point", "details": { - "name": "Vector3: Point" + "name": "Point" } }, { "key": "DataOutput_Result: Number", "details": { - "name": "Result: Number" + "name": "Distance" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Expand.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Expand.names index 8b8a82259d..08a7f8ee38 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Expand.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Expand.names @@ -6,9 +6,9 @@ "variant": "", "details": { "name": "Expand", - "category": "Math/AABB", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the Source expanded in each axis by the absolute value of each axis in Delta", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataInput_Vector3: Delta", "details": { - "name": "Vector3: Delta" + "name": "Delta" } }, { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Extents.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Extents.names index f00209439c..2cbc987e31 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Extents.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Extents.names @@ -6,9 +6,9 @@ "variant": "", "details": { "name": "Extents", - "category": "Math/AABB", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the Vector3(Source.Width, Source.Height, Source.Depth)", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -24,15 +24,15 @@ } }, { - "key": "DataInput_AABB: Source", + "key": "Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataOutput_Result: Vector3", "details": { - "name": "Result: Vector3" + "name": "Extents" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterHalfExtents.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterHalfExtents.names index f5b5e7b633..3261d0c3d2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterHalfExtents.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterHalfExtents.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromCenterHalfExtents", - "category": "Math/AABB", + "name": "From Center Half Extents", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the AABB with Min = Center - HalfExtents, Max = Center + HalfExtents", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_Vector3: Center", "details": { - "name": "Vector3: Center" + "name": "Center" } }, { "key": "DataInput_Vector3: HalfExtents", "details": { - "name": "Vector3: HalfExtents" + "name": "Half Extents" } }, { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterRadius.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterRadius.names index 8915366da3..204047ee15 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterRadius.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromCenterRadius.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromCenterRadius", - "category": "Math/AABB", + "name": "From Center Radius", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the AABB with Min = Center - Vector3(radius, radius, radius), Max = Center + Vector3(radius, radius, radius)", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_Vector3: Center", "details": { - "name": "Vector3: Center" + "name": "Center" } }, { "key": "DataInput_Number: Radius", "details": { - "name": "Number: Radius" + "name": "Radius" } }, { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromMinMax.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromMinMax.names index 9ebcdc66d4..2b6030e8fb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromMinMax.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromMinMax.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromMinMax", - "category": "Math/AABB", + "name": "From Min Max", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the AABB from Min and Max if Min <= Max, else returns FromPoint(max)", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,19 +26,19 @@ { "key": "DataInput_Vector3: Min", "details": { - "name": "Vector3: Min" + "name": "Min" } }, { "key": "DataInput_Vector3: Max", "details": { - "name": "Vector3: Max" + "name": "Max" } }, { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromOBB.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromOBB.names index d339e65542..189aa8d744 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromOBB.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromOBB.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromOBB", - "category": "Math/AABB", + "name": "From Oriented Bounding Box", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the AABB which contains Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,13 +26,13 @@ { "key": "DataInput_OBB: Source", "details": { - "name": "OBB: Source" + "name": "Source" } }, { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromPoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromPoint.names index 842e5261bc..433a318baf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromPoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_FromPoint.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromPoint", - "category": "Math/AABB", + "name": "From Point", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the AABB with min and max set to Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,13 +26,13 @@ { "key": "DataInput_Vector3: Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMax.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMax.names index 5470d43f1b..3ef427e774 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMax.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMax.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetMax", - "category": "Math/AABB", + "name": "Get Max", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the Vector3 that is the max value on each axis of Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,13 +26,13 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataOutput_Result: Vector3", "details": { - "name": "Result: Vector3" + "name": "Max" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMin.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMin.names index 2f76b75b7e..d8acde7296 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMin.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_GetMin.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetMin", - "category": "Math/AABB", + "name": "Get Min", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the Vector3 that is the min value on each axis of Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,13 +26,13 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataOutput_Result: Vector3", "details": { - "name": "Result: Vector3" + "name": "Min" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsFinite.names index e68a06a2a8..004ecd1e0e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsFinite.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsFinite", - "category": "Math/AABB", + "name": "Is Finite", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns true if Source is finite, else false", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,13 +26,13 @@ { "key": "DataInput_AABB: Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { "key": "DataOutput_Result: Boolean", "details": { - "name": "Result: Boolean" + "name": "Is Finite" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsValid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsValid.names index e39a66c148..7f7f08e3cf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsValid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_IsValid.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsValid", - "category": "Math/AABB", + "name": "Is Valid", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns ture if Source is valid, that is if Source.min <= Source.max, else false", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -32,7 +32,7 @@ { "key": "DataOutput_Result: Boolean", "details": { - "name": "Result: Boolean" + "name": "Is Valid" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Null.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Null.names index 690c973919..62c7cb2b17 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Null.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Null.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "Null", - "category": "Math/AABB", + "name": "Invalid Axis Aligned Bounding Box", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns an invalid AABB (min > max), adding any point to it will make it valid", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { @@ -26,7 +26,7 @@ { "key": "DataOutput_Result: AABB", "details": { - "name": "Result: AABB" + "name": "Invalid AABB" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Overlaps.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Overlaps.names index 8deb30747c..4474f1220b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Overlaps.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Overlaps.names @@ -6,9 +6,9 @@ "variant": "", "details": { "name": "Overlaps", - "category": "Math/AABB", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns true if A overlaps B, else false", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_SurfaceArea.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_SurfaceArea.names index d4359828a1..2b206cfcfc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_SurfaceArea.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_SurfaceArea.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "SurfaceArea", - "category": "Math/AABB", + "name": "Surface Area", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the sum of the surface area of all six faces of Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ToSphere.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ToSphere.names index 1d9aaf3302..9a07c147c6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ToSphere.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ToSphere.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ToSphere", - "category": "Math/AABB", + "name": "To Sphere", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the center and radius of smallest sphere that contains Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Translate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Translate.names index cc46679f58..01037b2bff 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Translate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_Translate.names @@ -6,9 +6,9 @@ "variant": "", "details": { "name": "Translate", - "category": "Math/AABB", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the Source with each point added with Translation", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_XExtent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_XExtent.names index 43862b9608..23e8921ab8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_XExtent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_XExtent.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "XExtent", - "category": "Math/AABB", + "name": "X Extent", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the X extent (max X - min X) of Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_YExtent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_YExtent.names index c43dfbd23e..3e28799512 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_YExtent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_YExtent.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "YExtent", - "category": "Math/AABB", + "name": "Y Extent", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the Y extent (max Y - min Y) of Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ZExtent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ZExtent.names index 87a7fce696..c470eafa0c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ZExtent.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathAABB_ZExtent.names @@ -5,10 +5,10 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ZExtent", - "category": "Math/AABB", + "name": "Z Extent", + "category": "Math/Axis Aligned Bounding Box", "tooltip": "returns the Z extent (max Z - min Z) of Source", - "subtitle": "AABB" + "subtitle": "Axis Aligned Bounding Box" }, "slots": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot3.names index 8dd4a92831..16d5b36eb0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_Dot3.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "Dot3", + "name": "Dot (RGB)", "category": "Math/Color", - "tooltip": "returns the 3-element dot product of A and B, using only the R, G, B elements", - "subtitle": "Color" + "tooltip": "returns the 3-element dot product of A and B, using only the R, G, B elements" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Color: A", + "key": "DataInput_A", "details": { - "name": "Color: A" + "name": "A" } }, { - "key": "DataInput_Color: B", + "key": "DataInput_B", "details": { - "name": "Color: B" + "name": "B" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromValues.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromValues.names index 7d9506b4bf..01b5ac9cb9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromValues.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromValues.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromValues", + "name": "From Values", "category": "Math/Color", - "tooltip": "returns a Color from the R, G, B, A inputs", - "subtitle": "Color" + "tooltip": "Returns a Color from the R, G, B, A inputs" }, "slots": [ { @@ -24,33 +23,33 @@ } }, { - "key": "DataInput_Number: R", + "key": "DataInput_R", "details": { - "name": "Number: R" + "name": "R" } }, { - "key": "DataInput_Number: G", + "key": "DataInput_G", "details": { - "name": "Number: G" + "name": "G" } }, { - "key": "DataInput_Number: B", + "key": "DataInput_B", "details": { - "name": "Number: B" + "name": "B" } }, { - "key": "DataInput_Number: A", + "key": "DataInput_A", "details": { - "name": "Number: A" + "name": "A" } }, { - "key": "DataOutput_Result: Color", + "key": "DataOutput_Result", "details": { - "name": "Result: Color" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3.names index 598c2e52e0..e87ad523b0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromVector3", + "name": "From Vector3", "category": "Math/Color", - "tooltip": "returns a Color with R, G, B set to X, Y, Z values of RGB, respectively. A is set to 1.0", - "subtitle": "Color" + "tooltip": "Returns a Color with R, G, B set to X, Y, Z values of RGB, respectively. A is set to 1.0" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: RGB", + "key": "DataInput_RGB", "details": { - "name": "Vector3: RGB" + "name": "RGB" } }, { - "key": "DataOutput_Result: Color", + "key": "DataOutput_Result", "details": { - "name": "Result: Color" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3AndNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3AndNumber.names index 3cca83c246..3d657ed1a0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3AndNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_FromVector3AndNumber.names @@ -5,7 +5,7 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromVector3AndNumber", + "name": "From Vector3 And Number", "category": "Math/Color", "tooltip": "returns a Color with R, G, B set to X, Y, Z values of RGB, respectively. A is set to A", "subtitle": "Color" @@ -26,19 +26,19 @@ { "key": "DataInput_Vector3: RGB", "details": { - "name": "Vector3: RGB" + "name": "Red, Green, Blue" } }, { "key": "DataInput_Number: A", "details": { - "name": "Number: A" + "name": "Alpha" } }, { "key": "DataOutput_Result: Color", "details": { - "name": "Result: Color" + "name": "Color" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_GammaToLinear.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_GammaToLinear.names index 3ae97ec819..f9ed687835 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_GammaToLinear.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_GammaToLinear.names @@ -5,7 +5,7 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GammaToLinear", + "name": "Gamma To Linear", "category": "Math/Color", "tooltip": "returns Source converted from gamma corrected to linear space", "subtitle": "Color" @@ -26,13 +26,13 @@ { "key": "DataInput_Color: Source", "details": { - "name": "Color: Source" + "name": "Source" } }, { "key": "DataOutput_Result: Color", "details": { - "name": "Result: Color" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsClose.names index ac5da11652..430cf90d8b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsClose.names @@ -5,9 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsClose", + "name": "Is Close", "category": "Math/Color", - "tooltip": "returns true if A is within Tolerance of B, else false", + "tooltip": "Returns true if A is within Tolerance of B, else false", "subtitle": "Color" }, "slots": [ @@ -26,25 +26,25 @@ { "key": "DataInput_Color: A", "details": { - "name": "Color: A" + "name": "First" } }, { "key": "DataInput_Color: B", "details": { - "name": "Color: B" + "name": "Second" } }, { "key": "DataInput_Number: Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { "key": "DataOutput_Result: Boolean", "details": { - "name": "Result: Boolean" + "name": "Is Close" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsZero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsZero.names index c865d2d71a..f22b3e3773 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsZero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_IsZero.names @@ -5,7 +5,7 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsZero", + "name": "Is Zero", "category": "Math/Color", "tooltip": "returns true if Source is within Tolerance of zero", "subtitle": "Color" @@ -26,19 +26,19 @@ { "key": "DataInput_Color: Source", "details": { - "name": "Color: Source" + "name": "Source" } }, { "key": "DataInput_Number: Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { "key": "DataOutput_Result: Boolean", "details": { - "name": "Result: Boolean" + "name": "Is Zero" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_LinearToGamma.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_LinearToGamma.names index 3db2e744cb..fa1d06b510 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_LinearToGamma.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_LinearToGamma.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "LinearToGamma", + "name": "Linear To Gamma", "category": "Math/Color", - "tooltip": "returns Source converted from linear to gamma corrected space", - "subtitle": "Color" + "tooltip": "Returns Source converted from linear to gamma corrected space" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Color: Source", + "key": "DataInput_Source", "details": { - "name": "Color: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Color", + "key": "DataOutput_Result", "details": { - "name": "Result: Color" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_MultiplyByNumber.names index 52e8116ee7..4bf7062cb7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathColor_MultiplyByNumber.names @@ -5,9 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByNumber", + "name": "Multiply By Number", "category": "Math/Color", - "tooltip": "returns Source with every elemented multiplied by Multiplier", + "tooltip": "Returns Source with every elemented multiplied by Multiplier", "subtitle": "Color" }, "slots": [ diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathCrc32_FromString.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathCrc32_FromString.names index 86db4d7212..56b63ed01f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathCrc32_FromString.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathCrc32_FromString.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromString", + "name": "From String", "category": "Math/Crc32", - "tooltip": "returns a Crc32 from the string", - "subtitle": "Crc32" + "tooltip": "Returns a Crc32 from the string" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_String: Value", + "key": "DataInput_Value", "details": { - "name": "String: Value" + "name": "Text" } }, { - "key": "DataOutput_Result: CRC", + "key": "DataOutput_Result", "details": { - "name": "Result: CRC" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromColumns.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromColumns.names index 9ee3134454..e9c3ac7672 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromColumns.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromColumns.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromColumns", + "name": "From Columns", "category": "Math/Matrix3x3", - "tooltip": "returns a rotation matrix based on angle around Z axis", - "subtitle": "Matrix3x3" + "tooltip": "Returns a rotation matrix based on angle around Z axis" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector3: Column1", + "key": "DataInput_Column1", "details": { - "name": "Vector3: Column1" + "name": "Column 1" } }, { - "key": "DataInput_Vector3: Column2", + "key": "DataInput_Column2", "details": { - "name": "Vector3: Column2" + "name": "Column 2" } }, { - "key": "DataInput_Vector3: Column3", + "key": "DataInput_Column3", "details": { - "name": "Vector3: Column3" + "name": "Column 3" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names index 674cf87642..2f4069b9ba 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names @@ -7,8 +7,7 @@ "details": { "name": "GetDiagonal", "category": "Math/Matrix3x3", - "tooltip": "returns vector of matrix diagonal values", - "subtitle": "Matrix3x3" + "tooltip": "returns vector of matrix diagonal values" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromDiagonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromDiagonal.names index 941bcf2ddc..9e20e78471 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromDiagonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromDiagonal.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromDiagonal", + "name": "From Diagonal", "category": "Math/Matrix4x4", - "tooltip": "returns a diagonal matrix using the supplied vector", - "subtitle": "Matrix4x4" + "tooltip": "Returns a diagonal matrix using the supplied vector" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix4x4", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix4x4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromMatrix3x3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromMatrix3x3.names index bd98877776..7366425c7f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromMatrix3x3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromMatrix3x3.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromMatrix3x3", + "name": "From Matrix3x3", "category": "Math/Matrix4x4", - "tooltip": "returns a matrix from the from the Matrix3x3", - "subtitle": "Matrix4x4" + "tooltip": "Returns a matrix from the from the Matrix3x3" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix4x4", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix4x4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternionAndTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternionAndTranslation.names index deaa71f7ca..c2720c5eaa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternionAndTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromQuaternionAndTranslation.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromQuaternionAndTranslation", + "name": "From Quaternion And Translation", "category": "Math/Matrix4x4", - "tooltip": "returns a skew-symmetric cross product matrix based on supplied vector", - "subtitle": "Matrix4x4" + "tooltip": "Returns a skew-symmetric cross product matrix based on supplied vector" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Quaternion: Rotation", + "key": "DataInput_Rotation", "details": { - "name": "Quaternion: Rotation" + "name": "Rotation" } }, { - "key": "DataInput_Vector3: Translation", + "key": "DataInput_Translation", "details": { - "name": "Vector3: Translation" + "name": "Translation" } }, { - "key": "DataOutput_Result: Matrix4x4", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix4x4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationXDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationXDegrees.names index 713eedda7b..c4d2296372 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationXDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationXDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromRotationXDegrees", + "name": "From Rotation X Degrees", "category": "Math/Matrix4x4", - "tooltip": "returns a rotation matrix representing a rotation in degrees around X-axis", - "subtitle": "Matrix4x4" + "tooltip": "Returns a rotation matrix representing a rotation in degrees around X-axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Matrix4x4", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix4x4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationYDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationYDegrees.names index c0253b05d3..2d99cd99a0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationYDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationYDegrees.names @@ -5,9 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromRotationYDegrees", + "name": "From Rotation Y Degrees", "category": "Math/Matrix4x4", - "tooltip": "returns a rotation matrix representing a rotation in degrees around Y-axis", + "tooltip": "Returns a rotation matrix representing a rotation in degrees around Y-axis", "subtitle": "Matrix4x4" }, "slots": [ @@ -26,13 +26,13 @@ { "key": "DataInput_Number: Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { "key": "DataOutput_Result: Matrix4x4", "details": { - "name": "Result: Matrix4x4" + "name": "Matrix4x4" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationZDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationZDegrees.names index 92757dc6b5..43287ab848 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationZDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRotationZDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromRotationZDegrees", + "name": "From Rotation Z Degrees", "category": "Math/Matrix4x4", - "tooltip": "returns a rotation matrix representing a rotation in degrees around Z-axis", - "subtitle": "Matrix4x4" + "tooltip": "Returns a rotation matrix representing a rotation in degrees around Z-axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Matrix4x4", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix4x4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRows.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRows.names index 96a36cd04f..faefebca77 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRows.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromRows.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromRows", + "name": "From Rows", "category": "Math/Matrix4x4", - "tooltip": "returns a matrix from three row", - "subtitle": "Matrix4x4" + "tooltip": "Returns a matrix from three row" }, "slots": [ { @@ -24,33 +23,33 @@ } }, { - "key": "DataInput_Vector4: Row1", + "key": "DataInput_Row1", "details": { - "name": "Vector4: Row1" + "name": "Row 1" } }, { - "key": "DataInput_Vector4: Row2", + "key": "DataInput_Row2", "details": { - "name": "Vector4: Row2" + "name": "Row 2" } }, { - "key": "DataInput_Vector4: Row3", + "key": "DataInput_Row3", "details": { - "name": "Vector4: Row3" + "name": "Row 3" } }, { - "key": "DataInput_Vector4: Row4", + "key": "DataInput_Row4", "details": { - "name": "Vector4: Row4" + "name": "Row 4" } }, { - "key": "DataOutput_Result: Matrix4x4", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix4x4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromScale.names index b99af3c94f..8be2fed246 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromScale.names @@ -5,9 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromScale", + "name": "From Scale", "category": "Math/Matrix4x4", - "tooltip": "returns a scale matrix using the supplied vector", + "tooltip": "Returns a scale matrix using the supplied vector", "subtitle": "Matrix4x4" }, "slots": [ @@ -32,7 +32,7 @@ { "key": "DataOutput_Result: Matrix4x4", "details": { - "name": "Result: Matrix4x4" + "name": "Matrix4x4" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTransform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTransform.names index fe6b1540ed..3966f964ee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTransform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTransform.names @@ -5,9 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromTransform", + "name": "From Transform", "category": "Math/Matrix4x4", - "tooltip": "returns a matrix using the supplied transform", + "tooltip": "Returns a matrix using the supplied transform", "subtitle": "Matrix4x4" }, "slots": [ @@ -26,13 +26,13 @@ { "key": "DataInput_Transform: Transform", "details": { - "name": "Transform: Transform" + "name": "Transform" } }, { "key": "DataOutput_Result: Matrix4x4", "details": { - "name": "Result: Matrix4x4" + "name": "Matrix4x4" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTranslation.names index 57b7965e33..0a6606a9c9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_FromTranslation.names @@ -5,9 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromTranslation", + "name": "From Translation", "category": "Math/Matrix4x4", - "tooltip": "returns a skew-symmetric cross product matrix based on supplied vector", + "tooltip": "Returns a skew-symmetric cross product matrix based on supplied vector", "subtitle": "Matrix4x4" }, "slots": [ @@ -26,13 +26,13 @@ { "key": "DataInput_Vector3: Source", "details": { - "name": "Vector3: Source" + "name": "Translation" } }, { "key": "DataOutput_Result: Matrix4x4", "details": { - "name": "Result: Matrix4x4" + "name": "Matrix4x4" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumn.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumn.names index 4205030f09..6c970c53e3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumn.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumn.names @@ -5,9 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetColumn", + "name": "Get Column", "category": "Math/Matrix4x4", - "tooltip": "returns vector from matrix corresponding to the Column index", + "tooltip": "Returns vector from matrix corresponding to the Column index", "subtitle": "Matrix4x4" }, "slots": [ @@ -26,19 +26,19 @@ { "key": "DataInput_Matrix4x4: Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { "key": "DataInput_Number: Column", "details": { - "name": "Number: Column" + "name": "Column" } }, { "key": "DataOutput_Result: Vector4", "details": { - "name": "Result: Vector4" + "name": "Column" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumns.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumns.names index 64e26175dc..8a4e1e477c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumns.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetColumns.names @@ -5,9 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetColumns", + "name": "Get Columns", "category": "Math/Matrix4x4", - "tooltip": "returns all columns from matrix", + "tooltip": "Returns all columns from matrix", "subtitle": "Matrix4x4" }, "slots": [ @@ -26,31 +26,31 @@ { "key": "DataInput_Matrix4x4: Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { "key": "DataOutput_Column1: Vector4", "details": { - "name": "Column1: Vector4" + "name": "Column 1" } }, { "key": "DataOutput_Column2: Vector4", "details": { - "name": "Column2: Vector4" + "name": "Column 2" } }, { "key": "DataOutput_Column3: Vector4", "details": { - "name": "Column3: Vector4" + "name": "Column 3" } }, { "key": "DataOutput_Column4: Vector4", "details": { - "name": "Column4: Vector4" + "name": "Column 4" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetDiagonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetDiagonal.names index d9bc2ad59e..8777669eb2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetDiagonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetDiagonal.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetDiagonal", + "name": "Get Diagonal", "category": "Math/Matrix4x4", - "tooltip": "returns vector of matrix diagonal values", - "subtitle": "Matrix4x4" + "tooltip": "Returns vector of matrix diagonal values" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetElement.names index 8b7e270cef..fb047a7762 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetElement.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetElement", + "name": "Get Element", "category": "Math/Matrix4x4", - "tooltip": "returns scalar from matrix corresponding to the (Row,Column) pair", - "subtitle": "Matrix4x4" + "tooltip": "Returns scalar from matrix corresponding to the (Row,Column) pair" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Row", + "key": "DataInput_Row", "details": { - "name": "Number: Row" + "name": "Row" } }, { - "key": "DataInput_Number: Column", + "key": "DataInput_Column", "details": { - "name": "Number: Column" + "name": "Column" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRow.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRow.names index 06c3338d46..9c2f1bd04c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRow.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRow.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetRow", + "name": "Get Row", "category": "Math/Matrix4x4", - "tooltip": "returns vector from matrix corresponding to the Row index", - "subtitle": "Matrix4x4" + "tooltip": "Returns vector from matrix corresponding to the Row index" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Row", + "key": "DataInput_Row", "details": { - "name": "Number: Row" + "name": "Row" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRows.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRows.names index 6d8fbf97e7..c0209cfa3c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRows.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetRows.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetRows", + "name": "Get Rows", "category": "Math/Matrix4x4", - "tooltip": "returns all rows from matrix", - "subtitle": "Matrix4x4" + "tooltip": "Returns all rows from matrix" }, "slots": [ { @@ -24,33 +23,33 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataOutput_Row1: Vector4", + "key": "DataOutput_Row1", "details": { - "name": "Row1: Vector4" + "name": "Row1" } }, { - "key": "DataOutput_Row2: Vector4", + "key": "DataOutput_Row2", "details": { - "name": "Row2: Vector4" + "name": "Row2" } }, { - "key": "DataOutput_Row3: Vector4", + "key": "DataOutput_Row3", "details": { - "name": "Row3: Vector4" + "name": "Row3" } }, { - "key": "DataOutput_Row4: Vector4", + "key": "DataOutput_Row4", "details": { - "name": "Row4: Vector4" + "name": "Row4" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetTranslation.names index 762e0a301e..97c74a96fa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_GetTranslation.names @@ -7,8 +7,7 @@ "details": { "name": "GetTranslation", "category": "Math/Matrix4x4", - "tooltip": "returns translation vector from the matrix", - "subtitle": "Matrix4x4" + "tooltip": "returns translation vector from the matrix" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Invert.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Invert.names index 3e701b0d40..3746071075 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Invert.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Invert.names @@ -7,8 +7,7 @@ "details": { "name": "Invert", "category": "Math/Matrix4x4", - "tooltip": "returns inverse of Matrix", - "subtitle": "Matrix4x4" + "tooltip": "Returns inverse of Matrix" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix4x4", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix4x4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsClose.names index 25d1da45bd..3dea7660d6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsClose.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsClose", + "name": "Is Close", "category": "Math/Matrix4x4", - "tooltip": "returns true if each element of both Matrix are equal within some tolerance", - "subtitle": "Matrix4x4" + "tooltip": "Returns true if each element of both Matrix are equal within some tolerance" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Matrix4x4: A", + "key": "DataInput_A", "details": { - "name": "Matrix4x4: A" + "name": "A" } }, { - "key": "DataInput_Matrix4x4: B", + "key": "DataInput_B", "details": { - "name": "Matrix4x4: B" + "name": "B" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsFinite.names index 8bd0e0dc37..f589f90a96 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_IsFinite.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsFinite", + "name": "Is Finite", "category": "Math/Matrix4x4", - "tooltip": "returns true if all numbers in matrix is finite", - "subtitle": "Matrix4x4" + "tooltip": "Returns true if all numbers in matrix is finite" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_MultiplyByVector.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_MultiplyByVector.names index 0343347e02..b68524d78b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_MultiplyByVector.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_MultiplyByVector.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByVector", + "name": "Multiply By Vector", "category": "Math/Matrix4x4", - "tooltip": "returns vector created by right left multiplying matrix by supplied vector", - "subtitle": "Matrix4x4" + "tooltip": "Returns vector created by right left multiplying matrix by supplied vector" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataInput_Vector4: Vector", + "key": "DataInput_Vector", "details": { - "name": "Vector4: Vector" + "name": "Vector" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_ToScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_ToScale.names index 0d97222f28..1c06bcc228 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_ToScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_ToScale.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ToScale", + "name": "To Scale", "category": "Math/Matrix4x4", - "tooltip": "returns scale part of the transformation matrix", - "subtitle": "Matrix4x4" + "tooltip": "Returns scale part of the transformation matrix" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Transpose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Transpose.names index 51a2bf229a..922ac1ee22 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Transpose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Transpose.names @@ -7,8 +7,7 @@ "details": { "name": "Transpose", "category": "Math/Matrix4x4", - "tooltip": "returns transpose of Matrix", - "subtitle": "Matrix4x4" + "tooltip": "returns transpose of Matrix" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix4x4", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix4x4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Zero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Zero.names index a2dc799220..9e2a4628df 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Zero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix4x4_Zero.names @@ -7,8 +7,7 @@ "details": { "name": "Zero", "category": "Math/Matrix4x4", - "tooltip": "returns the zero matrix", - "subtitle": "Matrix4x4" + "tooltip": "returns the zero matrix" }, "slots": [ { @@ -24,9 +23,9 @@ } }, { - "key": "DataOutput_Result: Matrix4x4", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix4x4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp index d6dff227ff..3ae7660c79 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp @@ -56,7 +56,7 @@ namespace ScriptCanvas { const Data::Type outputType = (unpackedTypes.size() == 1 && AZ::BehaviorContextHelper::IsStringParameter(*result)) ? Data::Type::String() : Data::FromAZType(unpackedTypes[resultIndex]); - AZStd::string resultSlotName(AZStd::string::format("Result: %s", Data::GetName(outputType).data())); + AZStd::string resultSlotName(Data::GetName(outputType).data()); AZStd::string className = outputConfig.config.m_className ? *outputConfig.config.m_className : ""; if (className.empty()) diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h index ece1cb8274..97916c8af6 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/Node.h @@ -1094,7 +1094,7 @@ protected: { DataSlotConfiguration slotConfiguration; - slotConfiguration.m_name = AZStd::string::format("%s: %s", t_Traits::GetResultName(0), Data::GetName(Data::FromAZType>()).data()); + slotConfiguration.m_name = t_Traits::GetResultName(0); slotConfiguration.SetType(Data::FromAZType>()); slotConfiguration.SetConnectionType(ConnectionType::Output); @@ -1116,7 +1116,7 @@ protected: { DataSlotConfiguration slotConfiguration; - slotConfiguration.m_name = AZStd::string::format("%s: %s", t_Traits::GetResultName(Index), Data::GetName(Data::FromAZType>>()).data()); + slotConfiguration.m_name = t_Traits::GetResultName(Index); slotConfiguration.SetType(Data::FromAZType>>()); slotConfiguration.SetConnectionType(connectionType); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h index 771a51f376..8ee657111e 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h @@ -256,7 +256,8 @@ namespace ScriptCanvas { DataSlotConfiguration slotConfiguration; - slotConfiguration.m_name = AZStd::string::format("%s: %s", Data::Traits::GetName().data(), t_Traits::GetArgName(Index)); + //slotConfiguration.m_name = AZStd::string::format("%s: %s", Data::Traits::GetName().data(), t_Traits::GetArgName(Index)); + slotConfiguration.m_name = t_Traits::GetArgName(Index); slotConfiguration.ConfigureDatum(AZStd::move(Datum(Data::FromAZType(Data::Traits::GetAZType()), Datum::eOriginality::Copy))); slotConfiguration.SetConnectionType(connectionType); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp index a2ccfd46f2..0f766db133 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp @@ -518,7 +518,7 @@ namespace ScriptCanvas { const AZ::BehaviorParameter& argument(event.m_parameters[AZ::eBehaviorBusForwarderEventIndices::Result]); Data::Type inputType(AZ::BehaviorContextHelper::IsStringParameter(argument) ? Data::Type::String() : Data::FromAZType(argument.m_typeId)); - const AZStd::string argName(AZStd::string::format("Result: %s", Data::GetName(inputType).data()).data()); + const AZStd::string argName(Data::GetName(inputType).data()); DataSlotConfiguration resultConfiguration; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp index c548176af5..14397d2be9 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/ReceiveScriptEvent.cpp @@ -204,7 +204,7 @@ namespace ScriptCanvas DataSlotConfiguration slotConfiguration; - slotConfiguration.m_name = AZStd::string::format("Result: %s", argumentTypeName.c_str()); + slotConfiguration.m_name = argumentTypeName; slotConfiguration.SetConnectionType(ConnectionType::Input); slotConfiguration.ConfigureDatum(AZStd::move(Datum(inputType, Datum::eOriginality::Copy, nullptr, AZ::Uuid::CreateNull()))); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp index 8569380d99..169ffacce2 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp @@ -272,7 +272,7 @@ namespace ScriptCanvas Data::Type outputType(AZ::BehaviorContextHelper::IsStringParameter(*result) ? Data::Type::String() : Data::FromAZType(result->m_typeId)); // multiple outs will need out value names - const AZStd::string resultSlotName(AZStd::string::format("Result: %s", Data::GetName(outputType).c_str())); + const AZStd::string resultSlotName(Data::GetName(outputType).c_str()); DataSlotConfiguration slotConfiguration; @@ -343,7 +343,7 @@ namespace ScriptCanvas { Data::Type outputType(AZ::BehaviorContextHelper::IsStringParameter(*result) ? Data::Type::String() : Data::FromAZType(result->m_typeId)); // multiple outs will need out value names - const AZStd::string resultSlotName(AZStd::string::format("Result: %s", Data::GetName(outputType).c_str())); + const AZStd::string resultSlotName(Data::GetName(outputType).c_str()); Slot* slot = GetSlotByName(resultSlotName); From 5ed6d2f2f5856e5e660372ac4ff8f4a84fa8c162 Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Tue, 16 Nov 2021 12:00:46 -0800 Subject: [PATCH 04/10] Updated more math related names Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- .../TranslationAssets/Classes/Matrix3x4.names | 852 +++++++++++------- .../MathMatrix3x3_FromCrossProduct.names | 13 +- .../Nodes/MathMatrix3x3_FromDiagonal.names | 13 +- .../Nodes/MathMatrix3x3_FromMatrix4x4.names | 13 +- .../Nodes/MathMatrix3x3_FromQuaternion.names | 13 +- .../MathMatrix3x3_FromRotationXDegrees.names | 13 +- .../MathMatrix3x3_FromRotationYDegrees.names | 13 +- .../MathMatrix3x3_FromRotationZDegrees.names | 13 +- .../Nodes/MathMatrix3x3_FromRows.names | 21 +- .../Nodes/MathMatrix3x3_FromScale.names | 13 +- .../Nodes/MathMatrix3x3_FromTransform.names | 13 +- .../Nodes/MathMatrix3x3_GetColumn.names | 17 +- .../Nodes/MathMatrix3x3_GetColumns.names | 21 +- .../Nodes/MathMatrix3x3_GetDiagonal.names | 4 +- .../Nodes/MathMatrix3x3_GetElement.names | 21 +- .../Nodes/MathMatrix3x3_GetRow.names | 17 +- .../Nodes/MathMatrix3x3_GetRows.names | 21 +- .../Nodes/MathMatrix3x3_Invert.names | 11 +- .../Nodes/MathMatrix3x3_IsClose.names | 21 +- .../Nodes/MathMatrix3x3_IsFinite.names | 13 +- .../Nodes/MathMatrix3x3_IsOrthogonal.names | 13 +- .../MathMatrix3x3_MultiplyByNumber.names | 17 +- .../MathMatrix3x3_MultiplyByVector.names | 17 +- .../Nodes/MathMatrix3x3_Orthogonalize.names | 11 +- .../Nodes/MathMatrix3x3_ToAdjugate.names | 13 +- .../Nodes/MathMatrix3x3_ToDeterminant.names | 13 +- .../Nodes/MathMatrix3x3_ToScale.names | 13 +- .../Nodes/MathMatrix3x3_Transpose.names | 11 +- .../Nodes/MathMatrix3x3_Zero.names | 7 +- 29 files changed, 699 insertions(+), 552 deletions(-) diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Matrix3x4.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Matrix3x4.names index 7aea9d3918..a2f2bed3f9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Matrix3x4.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Matrix3x4.names @@ -20,14 +20,14 @@ "tooltip": "Signaled after CreateZero is invoked" }, "details": { - "name": "Matrix3x4::CreateZero", - "category": "Other" + "name": "Create Zero", + "tooltip": "Creates a Matrix3x4 with all values zero" }, "results": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -37,27 +37,27 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetRotationPartFromQuaternion" + "tooltip": "When signaled, this will invoke Set Rotation Part From Quaternion" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetRotationPartFromQuaternion is invoked" + "tooltip": "Signaled after Set Rotation Part From Quaternion is invoked" }, "details": { - "name": "Matrix3x4::SetRotationPartFromQuaternion", - "category": "Other" + "name": "Set Rotation Part From Quaternion", + "tooltip": "Sets the 3x3 part of the matrix from a quaternion" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{73103120-3DD3-4873-BAB3-9713FA2804FB}", "details": { - "name": "const Quaternion&" + "name": "Quaternion" } } ] @@ -67,39 +67,39 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateFromColumns" + "tooltip": "When signaled, this will invoke Create From Columns" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateFromColumns is invoked" + "tooltip": "Signaled after Create From Columns is invoked" }, "details": { - "name": "Matrix3x4::CreateFromColumns", - "category": "Other" + "name": "Create From Columns", + "tooltip": "Constructs from individual columns" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Column 1" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Column 2" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Column 3" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Column 4" } } ], @@ -107,7 +107,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -117,33 +117,33 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsClose" + "tooltip": "When signaled, this will invoke Is Close" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsClose is invoked" + "tooltip": "Signaled after Is Close is invoked" }, "details": { - "name": "Matrix3x4::IsClose", - "category": "Other" + "name": "Is Close", + "tooltip": "Tests element-wise whether this matrix is close to another matrix, within the specified tolerance" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "A" } }, { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "const Matrix3x4&" + "name": "B" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Tolerance" } } ], @@ -151,7 +151,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Is Close" } } ] @@ -161,27 +161,27 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsOrthogonal" + "tooltip": "When signaled, this will invoke Is Orthogonal" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsOrthogonal is invoked" + "tooltip": "Signaled after Is Orthogonal is invoked" }, "details": { - "name": "Matrix3x4::IsOrthogonal", - "category": "Other" + "name": "Is Orthogonal", + "tooltip": "Tests if the 3x3 part of the matrix is orthogonal" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Tolerance" } } ], @@ -189,7 +189,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Is Orthogonal" } } ] @@ -206,14 +206,14 @@ "tooltip": "Signaled after Orthogonalize is invoked" }, "details": { - "name": "Matrix3x4::Orthogonalize", - "category": "Other" + "name": "Orthogonalize", + "tooltip": "Modifies the basis vectors of the matrix to be orthogonal and unit length" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ] @@ -223,21 +223,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateFromMatrix3x3" + "tooltip": "When signaled, this will invoke Create From Matrix3x3" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateFromMatrix3x3 is invoked" + "tooltip": "Signaled after Create From Matrix3x3 is invoked" }, "details": { - "name": "Matrix3x4::CreateFromMatrix3x3", - "category": "Other" + "name": "Create From Matrix3x3", + "tooltip": "Constructs from a Matrix3x3, with translation set to zero" }, "params": [ { "typeid": "{15A4332F-7C3F-4A58-AC35-50E1CE53FB9C}", "details": { - "name": "const Matrix3x3&" + "name": "Matrix3x3" } } ], @@ -245,7 +245,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -255,21 +255,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke RetrieveScale" + "tooltip": "When signaled, this will invoke Retrieve Scale" }, "exit": { "name": "Out", - "tooltip": "Signaled after RetrieveScale is invoked" + "tooltip": "Signaled after Retrieve Scale is invoked" }, "details": { - "name": "Matrix3x4::RetrieveScale", - "category": "Other" + "name": "Retrieve Scale", + "tooltip": "Gets the scale part of the transformation (the length of the basis vectors)" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ], @@ -277,7 +277,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Scale" } } ] @@ -287,21 +287,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateRotationX" + "tooltip": "When signaled, this will invoke Create Rotation X" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateRotationX is invoked" + "tooltip": "Signaled after Create Rotation X is invoked" }, "details": { - "name": "Matrix3x4::CreateRotationX", - "category": "Other" + "name": "Create Rotation X", + "tooltip": "Sets the matrix to be a rotation around the X-axis, specified in radians" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Angle (Radians)" } } ], @@ -309,7 +309,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -319,27 +319,26 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateFromMatrix3x3AndTranslation" + "tooltip": "When signaled, this will invoke Create From Matrix3x3 And Translation" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateFromMatrix3x3AndTranslation is invoked" + "tooltip": "Signaled after Create From Matrix3x3 And Translation is invoked" }, "details": { - "name": "Matrix3x4::CreateFromMatrix3x3AndTranslation", - "category": "Other" + "name": "Create From Matrix3x3 And Translation" }, "params": [ { "typeid": "{15A4332F-7C3F-4A58-AC35-50E1CE53FB9C}", "details": { - "name": "const Matrix3x3&" + "name": "Matrix3x3" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Translation" } } ], @@ -347,7 +346,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -364,14 +363,13 @@ "tooltip": "Signaled after ToString is invoked" }, "details": { - "name": "Matrix3x4::ToString", - "category": "Other" + "name": "To String" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "const Matrix3x4&" + "name": "Source" } } ], @@ -379,7 +377,7 @@ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::basic_string, allocator>" + "name": "String" } } ] @@ -389,21 +387,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke ExtractScale" + "tooltip": "When signaled, this will invoke Extract Scale" }, "exit": { "name": "Out", - "tooltip": "Signaled after ExtractScale is invoked" + "tooltip": "Signaled after Extract Scale is invoked" }, "details": { - "name": "Matrix3x4::ExtractScale", - "category": "Other" + "name": "Extract Scale", + "tooltip": "Gets the scale part of the transformation as in RetrieveScale, and also removes this scaling from the matrix" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ], @@ -411,7 +409,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Scale" } } ] @@ -421,21 +419,20 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTranspose" + "tooltip": "When signaled, this will invoke Get Transpose" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTranspose is invoked" + "tooltip": "Signaled after Get Transpose is invoked" }, "details": { - "name": "Matrix3x4::GetTranspose", - "category": "Other" + "name": "Get Transpose" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ], @@ -443,7 +440,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Transpose" } } ] @@ -453,21 +450,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke InvertFast" + "tooltip": "When signaled, this will invoke Invert Fast" }, "exit": { "name": "Out", - "tooltip": "Signaled after InvertFast is invoked" + "tooltip": "Signaled after Invert Fast is invoked" }, "details": { - "name": "Matrix3x4::InvertFast", - "category": "Other" + "name": "Invert Fast", + "tooltip": "Inverts the transformation represented by the matrix, assuming the 3x3 part is orthogonal" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Inverted" } } ] @@ -477,33 +474,33 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateFromRows" + "tooltip": "When signaled, this will invoke Create From Rows" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateFromRows is invoked" + "tooltip": "Signaled after Create From Rows is invoked" }, "details": { - "name": "Matrix3x4::CreateFromRows", - "category": "Other" + "name": "Create From Rows", + "tooltip": "Constructs from individual rows" }, "params": [ { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "const Vector4&" + "name": "Row 1" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "const Vector4&" + "name": "Row 2" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "const Vector4&" + "name": "Row 3" } } ], @@ -511,7 +508,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -521,21 +518,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateTranslation" + "tooltip": "When signaled, this will invoke Create Translation" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateTranslation is invoked" + "tooltip": "Signaled after Create Translation is invoked" }, "details": { - "name": "Matrix3x4::CreateTranslation", - "category": "Other" + "name": "Create Translation", + "tooltip": "Sets the matrix to be a translation matrix, with 3x3 part set to the identity" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Translation" } } ], @@ -543,7 +540,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -560,14 +557,14 @@ "tooltip": "Signaled after GetTranspose3x3 is invoked" }, "details": { - "name": "Matrix3x4::GetTranspose3x3", - "category": "Other" + "name": "Get Transpose 3x3", + "tooltip": "Gets the matrix obtained by transposing the 3x3 part of the matrix, leaving the translation untouched" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ], @@ -575,7 +572,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Transpose" } } ] @@ -585,33 +582,33 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetColumn" + "tooltip": "When signaled, this will invoke Set Column" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetColumn is invoked" + "tooltip": "Signaled after Set Column is invoked" }, "details": { - "name": "Matrix3x4::SetColumn", - "category": "Other" + "name": "Set Column", + "tooltip": "Sets the specified column" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Column Index" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Vector3" } } ] @@ -621,27 +618,27 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetRow" + "tooltip": "When signaled, this will invoke Get Row" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetRow is invoked" + "tooltip": "Signaled after Get Row is invoked" }, "details": { - "name": "Matrix3x4::GetRow", - "category": "Other" + "name": "Get Row", + "tooltip": "Gets the specified row" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "const Matrix3x4&" + "name": "Source" } }, { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Row Index" } } ], @@ -666,14 +663,14 @@ "tooltip": "Signaled after GetInverseFast is invoked" }, "details": { - "name": "Matrix3x4::GetInverseFast", - "category": "Other" + "name": "GetInverseFast", + "tooltip": "Gets the inverse of the transformation represented by the matrix.\nThis function works for any matrix, even if they have scaling or skew.\nIf the 3x3 part of the matrix is orthogonal then \ref GetInverseFast is much faster" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ], @@ -681,7 +678,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Inverse" } } ] @@ -691,21 +688,22 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetOrthogonalized" + "tooltip": "When signaled, this will invoke Get Orthogonalized" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetOrthogonalized is invoked" + "tooltip": "Signaled after Get Orthogonalized is invoked" }, "details": { - "name": "Matrix3x4::GetOrthogonalized", - "category": "Other" + "name": "Get Orthogonalized", + "tooltip": "Returns an orthogonal matrix based on this matrix" + }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ], @@ -713,7 +711,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Orthogonalized" } } ] @@ -730,20 +728,20 @@ "tooltip": "Signaled after Multiply3x3 is invoked" }, "details": { - "name": "Matrix3x4::Multiply3x3", - "category": "Other" + "name": "Multiply 3x3", + "tooltip": "Post-multiplies the matrix by a vector, using only the 3x3 part of the matrix" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Vector3" } } ], @@ -751,7 +749,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Result" } } ] @@ -761,21 +759,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsFinite" + "tooltip": "When signaled, this will invoke Is Finite" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsFinite is invoked" + "tooltip": "Signaled after Is Finite is invoked" }, "details": { - "name": "Matrix3x4::IsFinite", - "category": "Other" + "name": "Is Finite", + "tooltip": "Checks whether the elements of the matrix are all finite" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ], @@ -783,7 +781,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Is Finite" } } ] @@ -793,21 +791,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateFromQuaternion" + "tooltip": "When signaled, this will invoke Create From Quaternion" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateFromQuaternion is invoked" + "tooltip": "Signaled after Create From Quaternion is invoked" }, "details": { - "name": "Matrix3x4::CreateFromQuaternion", - "category": "Other" + "name": "Create From Quaternion", + "tooltip": "Sets the matrix from a quaternion, with translation set to zero" }, "params": [ { "typeid": "{73103120-3DD3-4873-BAB3-9713FA2804FB}", "details": { - "name": "const Quaternion&" + "name": "Quaternion" } } ], @@ -815,7 +813,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -825,45 +823,45 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetBasisAndTranslation" + "tooltip": "When signaled, this will invoke Set Basis And Translation" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetBasisAndTranslation is invoked" + "tooltip": "Signaled after Set Basis And Translation is invoked" }, "details": { - "name": "Matrix3x4::SetBasisAndTranslation", - "category": "Other" + "name": "Set Basis And Translation", + "tooltip": "Sets the three basis vectors and the translation" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Basis X" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Basis Y" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Basis Z" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Translation" } } ] @@ -873,27 +871,27 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke MultiplyVector4" + "tooltip": "When signaled, this will invoke Multiply Vector4" }, "exit": { "name": "Out", - "tooltip": "Signaled after MultiplyVector4 is invoked" + "tooltip": "Signaled after Multiply Vector4 is invoked" }, "details": { - "name": "Matrix3x4::MultiplyVector4", - "category": "Other" + "name": "Multiply Vector4", + "tooltip": "Operator for transforming a Vector4" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "const Vector4&" + "name": "Vector4" } } ], @@ -901,7 +899,7 @@ { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "Vector4" + "name": "Result" } } ] @@ -911,21 +909,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateScale" + "tooltip": "When signaled, this will invoke Create Scale" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateScale is invoked" + "tooltip": "Signaled after Create Scale is invoked" }, "details": { - "name": "Matrix3x4::CreateScale", - "category": "Other" + "name": "Create Scale", + "tooltip": "Sets the matrix to be a scale matrix, with translation set to zero" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Scale" } } ], @@ -933,7 +931,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -943,21 +941,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateDiagonal" + "tooltip": "When signaled, this will invoke Create Diagonal" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateDiagonal is invoked" + "tooltip": "Signaled after Create Diagonal is invoked" }, "details": { - "name": "Matrix3x4::CreateDiagonal", - "category": "Other" + "name": "Create Diagonal", + "tooltip": "Sets the matrix to be a diagonal matrix, with translation set to zero" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Diagonal" } } ], @@ -965,7 +963,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -975,21 +973,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTranslation" + "tooltip": "When signaled, this will invoke Get Translation" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTranslation is invoked" + "tooltip": "Signaled after Get Translation is invoked" }, "details": { - "name": "Matrix3x4::GetTranslation", - "category": "Other" + "name": "Get Translation", + "tooltip": "Gets the translation" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ], @@ -997,7 +995,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Translation" } } ] @@ -1007,21 +1005,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke InvertFull" + "tooltip": "When signaled, this will invoke Invert Full" }, "exit": { "name": "Out", - "tooltip": "Signaled after InvertFull is invoked" + "tooltip": "Signaled after Invert Full is invoked" }, "details": { - "name": "Matrix3x4::InvertFull", - "category": "Other" + "name": "Invert Full", + "tooltip": "Inverts the transformation represented by the matrix\nThis function works for any matrix, even if they have scaling or skew\nIf the 3x3 part of the matrix is orthogonal then \ref InvertFast is much faster" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Inverted" } } ] @@ -1031,45 +1029,45 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetColumns" + "tooltip": "When signaled, this will invoke Set Columns" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetColumns is invoked" + "tooltip": "Signaled after Set Columns is invoked" }, "details": { - "name": "Matrix3x4::SetColumns", - "category": "Other" + "name": "Set Columns", + "tooltip": "Sets all the columns of the matrix" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Column 1" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Column 2" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Column 3" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Column 4" } } ] @@ -1079,39 +1077,39 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetElement" + "tooltip": "When signaled, this will invoke Set Element" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetElement is invoked" + "tooltip": "Signaled after Set Element is invoked" }, "details": { - "name": "Matrix3x4::SetElement", - "category": "Other" + "name": "Set Element", + "tooltip": "Sets the element in the specified row and column\nAccessing individual elements can be slower than working with entire rows" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Row" } }, { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Column" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] @@ -1128,20 +1126,20 @@ "tooltip": "Signaled after Equal is invoked" }, "details": { - "name": "Matrix3x4::Equal", - "category": "Other" + "name": "Equal", + "tooltip": "Compares if two Matrix3x4 are equal" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "A" } }, { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "const Matrix3x4&" + "name": "B" } } ], @@ -1149,7 +1147,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Equal" } } ] @@ -1159,21 +1157,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetDeterminant3x3" + "tooltip": "When signaled, this will invoke Get Determinant 3x3" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetDeterminant3x3 is invoked" + "tooltip": "Signaled after Get Determinant 3x3 is invoked" }, "details": { - "name": "Matrix3x4::GetDeterminant3x3", - "category": "Other" + "name": "Get Determinant 3x3", + "tooltip": "Calculates the determinant of the 3x3 part of the matrix" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ], @@ -1181,7 +1179,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Determinant" } } ] @@ -1191,45 +1189,45 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetColumns" + "tooltip": "When signaled, this will invoke Get Columns" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetColumns is invoked" + "tooltip": "Signaled after Get Columns is invoked" }, "details": { - "name": "Matrix3x4::GetColumns", - "category": "Other" + "name": "Get Columns", + "tooltip": "Gets all the columns of the matrix" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3*" + "name": "Column 1" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3*" + "name": "Column 2" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3*" + "name": "Column 3" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3*" + "name": "Column 4" } } ] @@ -1246,32 +1244,32 @@ "tooltip": "Signaled after SetRows is invoked" }, "details": { - "name": "Matrix3x4::SetRows", - "category": "Other" + "name": "SetRows", + "tooltip": "Sets all rows of the matrix" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "const Vector4&" + "name": "Row 1" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "const Vector4&" + "name": "Row 2" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "const Vector4&" + "name": "Row 3" } } ] @@ -1281,27 +1279,27 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetMultipliedByScale" + "tooltip": "When signaled, this will invoke Get Multiplied By Scale" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetMultipliedByScale is invoked" + "tooltip": "Signaled after Get Multiplied By Scale is invoked" }, "details": { - "name": "Matrix3x4::GetMultipliedByScale", - "category": "Other" + "name": "Get Multiplied By Scale", + "tooltip": "Gets a copy of the Matrix3x4 and multiplies it by the specified scale" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "const Matrix3x4&" + "name": "Source" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Scale" } } ], @@ -1309,7 +1307,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -1319,21 +1317,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateRotationZ" + "tooltip": "When signaled, this will invoke Create Rotation Z" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateRotationZ is invoked" + "tooltip": "Signaled after Create Rotation Z is invoked" }, "details": { - "name": "Matrix3x4::CreateRotationZ", - "category": "Other" + "name": "CreateRotationZ", + "tooltip": "Sets the matrix to be a rotation around the Z-axis, specified in radians" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Angle (Radians)" } } ], @@ -1341,7 +1339,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -1351,27 +1349,27 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateFromQuaternionAndTranslation" + "tooltip": "When signaled, this will invoke Create From Quaternion And Translation" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateFromQuaternionAndTranslation is invoked" + "tooltip": "Signaled after Create From Quaternion And Translation is invoked" }, "details": { - "name": "Matrix3x4::CreateFromQuaternionAndTranslation", - "category": "Other" + "name": "Create From Quaternion And Translation", + "tooltip": "Sets the matrix from a quaternion and a translation" }, "params": [ { "typeid": "{73103120-3DD3-4873-BAB3-9713FA2804FB}", "details": { - "name": "const Quaternion&" + "name": "Quaternion" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Translation" } } ], @@ -1379,7 +1377,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -1389,27 +1387,27 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetRowAsVector3" + "tooltip": "When signaled, this will invoke Get Row As Vector3" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetRowAsVector3 is invoked" + "tooltip": "Signaled after Get Row As Vector3 is invoked" }, "details": { - "name": "Matrix3x4::GetRowAsVector3", - "category": "Other" + "name": "Get Row As Vector3", + "tooltip": "Gets the specified row as a Vector3" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "const Matrix3x4&" + "name": "Source" } }, { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Row" } } ], @@ -1417,7 +1415,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Result" } } ] @@ -1427,27 +1425,27 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke MultiplyMatrix3x4" + "tooltip": "When signaled, this will invoke Multiply Matrix3x4" }, "exit": { "name": "Out", - "tooltip": "Signaled after MultiplyMatrix3x4 is invoked" + "tooltip": "Signaled after Multiply Matrix3x4 is invoked" }, "details": { - "name": "Matrix3x4::MultiplyMatrix3x4", - "category": "Other" + "name": "Multiply Matrix3x4", + "tooltip": "Operator for matrix-matrix multiplication" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "const Matrix3x4&" + "name": "Multiplicand" } } ], @@ -1455,7 +1453,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -1465,39 +1463,39 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetRows" + "tooltip": "When signaled, this will invoke Get Rows" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetRows is invoked" + "tooltip": "Signaled after Get Rows is invoked" }, "details": { - "name": "Matrix3x4::GetRows", - "category": "Other" + "name": "GetRows", + "tooltip": "Gets all rows of the matrix" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "Vector4*" + "name": "Row 1" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "Vector4*" + "name": "Row 2" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "Vector4*" + "name": "Row 3" } } ] @@ -1514,14 +1512,14 @@ "tooltip": "Signaled after Clone is invoked" }, "details": { - "name": "Matrix3x4::Clone", - "category": "Other" + "name": "Clone", + "tooltip": "Returns a deep copy of the provided Matrix3x4" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "const Matrix3x4&" + "name": "Source" } } ], @@ -1529,7 +1527,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Clone" } } ] @@ -1539,27 +1537,27 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke MultiplyVector3" + "tooltip": "When signaled, this will invoke Multiply Vector3" }, "exit": { "name": "Out", - "tooltip": "Signaled after MultiplyVector3 is invoked" + "tooltip": "Signaled after Multiply Vector3 is invoked" }, "details": { - "name": "Matrix3x4::MultiplyVector3", - "category": "Other" + "name": "Multiply Vector3", + "tooltip": "perator for transforming a Vector3" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Vector3" } } ], @@ -1567,7 +1565,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Result" } } ] @@ -1577,21 +1575,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateIdentity" + "tooltip": "When signaled, this will invoke Create Identity" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateIdentity is invoked" + "tooltip": "Signaled after Create Identity is invoked" }, "details": { - "name": "Matrix3x4::CreateIdentity", - "category": "Other" + "name": "Create Identity", + "tooltip": "Creates an identity Matrix3x4" }, "results": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -1608,38 +1606,38 @@ "tooltip": "Signaled after GetBasisAndTranslation is invoked" }, "details": { - "name": "Matrix3x4::GetBasisAndTranslation", - "category": "Other" + "name": "GetBasisAndTranslation", + "tooltip": "Gets the three basis vectors and the translation" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3*" + "name": "Basis X" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3*" + "name": "Basis Y" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3*" + "name": "Basis Z" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3*" + "name": "Translation" } } ] @@ -1649,21 +1647,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateFromValue" + "tooltip": "When signaled, this will invoke Create From Value" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateFromValue is invoked" + "tooltip": "Signaled after Create From Value is invoked" }, "details": { - "name": "Matrix3x4::CreateFromValue", - "category": "Other" + "name": "Create From Value", + "tooltip": "Constructs a matrix with all components set to the specified value" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ], @@ -1671,7 +1669,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -1681,33 +1679,33 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetElement" + "tooltip": "When signaled, this will invoke Get Element" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetElement is invoked" + "tooltip": "Signaled after Get Element is invoked" }, "details": { - "name": "Matrix3x4::GetElement", - "category": "Other" + "name": "Get Element", + "tooltip": "Gets the element in the specified row and column\nAccessing individual elements can be slower than working with entire rows" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Row" } }, { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Column" } } ], @@ -1715,7 +1713,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ] @@ -1725,21 +1723,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke Transpose3x3" + "tooltip": "When signaled, this will invoke Transpose 3x3" }, "exit": { "name": "Out", - "tooltip": "Signaled after Transpose3x3 is invoked" + "tooltip": "Signaled after Transpose 3x3 is invoked" }, "details": { - "name": "Matrix3x4::Transpose3x3", - "category": "Other" + "name": "Transpose 3x3", + "tooltip": "Gets the matrix obtained by transposing the 3x3 part of the matrix, leaving the translation untouched" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ] @@ -1756,14 +1754,14 @@ "tooltip": "Signaled after Transpose is invoked" }, "details": { - "name": "Matrix3x4::Transpose", - "category": "Other" + "name": "Transpose", + "tooltip": "Transposes the 3x3 part of the matrix, and sets the translation part to zero" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ] @@ -1773,21 +1771,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke CreateRotationY" + "tooltip": "When signaled, this will invoke Create Rotation Y" }, "exit": { "name": "Out", - "tooltip": "Signaled after CreateRotationY is invoked" + "tooltip": "Signaled after Create Rotation Y is invoked" }, "details": { - "name": "Matrix3x4::CreateRotationY", - "category": "Other" + "name": "Create Rotation Y", + "tooltip": "Sets the matrix to be a rotation around the Y-axis, specified in radians" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Angle (Radians)" } } ], @@ -1795,7 +1793,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -1812,26 +1810,26 @@ "tooltip": "Signaled after SetRow is invoked" }, "details": { - "name": "Matrix3x4::SetRow", - "category": "Other" + "name": "Set Row", + "tooltip": "Sets the specified row" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Row Index" } }, { "typeid": "{0CE9FA36-1E3A-4C06-9254-B7C73A732053}", "details": { - "name": "const Vector4&" + "name": "Vector4" } } ] @@ -1841,21 +1839,21 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetInverseFull" + "tooltip": "When signaled, this will invoke Get Inverse Full" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetInverseFull is invoked" + "tooltip": "Signaled after Get Inverse Full is invoked" }, "details": { - "name": "Matrix3x4::GetInverseFull", - "category": "Other" + "name": "Get Inverse Full", + "tooltip": "Gets the inverse of the transformation represented by the matrix\nThis function works for any matrix, even if they have scaling or skew\nIf the 3x3 part of the matrix is orthogonal then \ref GetInverseFast is much faster" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } } ], @@ -1863,7 +1861,7 @@ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4" + "name": "Result" } } ] @@ -1873,27 +1871,27 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetColumn" + "tooltip": "When signaled, this will invoke Get Column" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetColumn is invoked" + "tooltip": "Signaled after Get Column is invoked" }, "details": { - "name": "Matrix3x4::GetColumn", - "category": "Other" + "name": "Get Column", + "tooltip": "Gets the specified column" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "const Matrix3x4&" + "name": "Source" } }, { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Column Index" } } ], @@ -1901,7 +1899,7 @@ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Column" } } ] @@ -1911,27 +1909,203 @@ "context": "Matrix3x4", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetTranslation" + "tooltip": "When signaled, this will invoke Set Translation" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetTranslation is invoked" + "tooltip": "Signaled after Set Translation is invoked" }, "details": { - "name": "Matrix3x4::SetTranslation", - "category": "Other" + "name": "Set Translation", + "tooltip": "Sets the translation" }, "params": [ { "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", "details": { - "name": "Matrix3x4*" + "name": "Source" } }, { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "const Vector3&" + "name": "Translation" + } + } + ] + }, + { + "key": "basisX", + "context": "Getter", + "details": { + "name": "Get Basis X" + }, + "params": [ + { + "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", + "details": { + "name": "Source" + } + } + ], + "results": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Basis X" + } + } + ] + }, + { + "key": "basisX", + "context": "Setter", + "details": { + "name": "Set Basis X" + }, + "params": [ + { + "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", + "details": { + "name": "Source" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Basis X" + } + } + ] + }, + { + "key": "basisY", + "context": "Getter", + "details": { + "name": "Get Basis Y" + }, + "params": [ + { + "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", + "details": { + "name": "Source" + } + } + ], + "results": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Basis Y" + } + } + ] + }, + { + "key": "basisY", + "context": "Setter", + "details": { + "name": "Set Basis Y" + }, + "params": [ + { + "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", + "details": { + "name": "Source" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Basis Y" + } + } + ] + }, + { + "key": "basisZ", + "context": "Getter", + "details": { + "name": "Get Basis Z" + }, + "params": [ + { + "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", + "details": { + "name": "Source" + } + } + ], + "results": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Basis Z" + } + } + ] + }, + { + "key": "basisZ", + "context": "Setter", + "details": { + "name": "Set Basis Z" + }, + "params": [ + { + "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", + "details": { + "name": "Source" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Basis Z" + } + } + ] + }, + { + "key": "translation", + "context": "Getter", + "details": { + "name": "Get Translation" + }, + "params": [ + { + "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", + "details": { + "name": "Source" + } + } + ], + "results": [ + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Translation" + } + } + ] + }, + { + "key": "translation", + "context": "Setter", + "details": { + "name": "Set Translation" + }, + "params": [ + { + "typeid": "{1906D8A5-7DEC-4DE3-A606-9E53BB3459E7}", + "details": { + "name": "Source" + } + }, + { + "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", + "details": { + "name": "Translation" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromCrossProduct.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromCrossProduct.names index f1e2ea43e4..f823176f14 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromCrossProduct.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromCrossProduct.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromCrossProduct", + "name": "From Cross Product", "category": "Math/Matrix3x3", - "tooltip": "returns a skew-symmetric cross product matrix based on supplied vector", - "subtitle": "Matrix3x3" + "tooltip": "Returns a skew-symmetric cross product matrix based on supplied vector" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromDiagonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromDiagonal.names index a519d2254c..9f9c083534 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromDiagonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromDiagonal.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromDiagonal", + "name": "From Diagonal", "category": "Math/Matrix3x3", - "tooltip": "returns a diagonal matrix using the supplied vector", - "subtitle": "Matrix3x3" + "tooltip": "Returns a diagonal matrix using the supplied vector" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromMatrix4x4.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromMatrix4x4.names index f29968d3b8..f88782a2ee 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromMatrix4x4.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromMatrix4x4.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromMatrix4x4", + "name": "From Matrix4x4", "category": "Math/Matrix3x3", - "tooltip": "returns a matrix from the first 3 rows of a Matrix3x3", - "subtitle": "Matrix3x3" + "tooltip": "Returns a matrix from the first 3 rows of a Matrix3x3" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromQuaternion.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromQuaternion.names index 267865c111..1ddbce8343 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromQuaternion.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromQuaternion.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromQuaternion", + "name": "From Quaternion", "category": "Math/Matrix3x3", - "tooltip": "returns a rotation matrix using the supplied quaternion", - "subtitle": "Matrix3x3" + "tooltip": "Returns a rotation matrix using the supplied quaternion" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationXDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationXDegrees.names index 987d4360e1..20c7570899 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationXDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationXDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromRotationXDegrees", + "name": "From Rotation X Degrees", "category": "Math/Matrix3x3", - "tooltip": "returns a rotation matrix representing a rotation in degrees around X-axis", - "subtitle": "Matrix3x3" + "tooltip": "Returns a rotation matrix representing a rotation in degrees around X-axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationYDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationYDegrees.names index b1568b597b..c5558e192a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationYDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationYDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromRotationYDegrees", + "name": "From Rotation Y Degrees", "category": "Math/Matrix3x3", - "tooltip": "returns a rotation matrix representing a rotation in degrees around Y-axis", - "subtitle": "Matrix3x3" + "tooltip": "Returns a rotation matrix representing a rotation in degrees around Y-axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationZDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationZDegrees.names index a2afec9066..3c31f1c3ab 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationZDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRotationZDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromRotationZDegrees", + "name": "From Rotation Z Degrees", "category": "Math/Matrix3x3", - "tooltip": "returns a rotation matrix representing a rotation in degrees around Z-axis", - "subtitle": "Matrix3x3" + "tooltip": "Returns a rotation matrix representing a rotation in degrees around Z-axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRows.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRows.names index e082301192..7bcda04e10 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRows.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromRows.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromRows", + "name": "From Rows", "category": "Math/Matrix3x3", - "tooltip": "returns a matrix from three row", - "subtitle": "Matrix3x3" + "tooltip": "Returns a matrix from three row" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector3: Row1", + "key": "DataInput_Row1", "details": { - "name": "Vector3: Row1" + "name": "Row 1" } }, { - "key": "DataInput_Vector3: Row2", + "key": "DataInput_Row2", "details": { - "name": "Vector3: Row2" + "name": "Row 2" } }, { - "key": "DataInput_Vector3: Row3", + "key": "DataInput_Row3", "details": { - "name": "Vector3: Row3" + "name": "Row 3" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromScale.names index c6f3431b3b..1caf6865ca 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromScale.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromScale", + "name": "From Scale", "category": "Math/Matrix3x3", - "tooltip": "returns a scale matrix using the supplied vector", - "subtitle": "Matrix3x3" + "tooltip": "Returns a scale matrix using the supplied vector" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Scale", + "key": "DataInput_Scale", "details": { - "name": "Vector3: Scale" + "name": "Scale" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromTransform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromTransform.names index b4884f75f7..509fda12d3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromTransform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_FromTransform.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromTransform", + "name": "From Transform", "category": "Math/Matrix3x3", - "tooltip": "returns a matrix using the supplied transform", - "subtitle": "Matrix3x3" + "tooltip": "Returns a matrix using the supplied transform" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Transform: Transform", + "key": "DataInput_Transform", "details": { - "name": "Transform: Transform" + "name": "Transform" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumn.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumn.names index 46ec31ebb9..a34e468150 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumn.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumn.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetColumn", + "name": "Get Column", "category": "Math/Matrix3x3", - "tooltip": "returns vector from matrix corresponding to the Column index", - "subtitle": "Matrix3x3" + "tooltip": "Returns vector from matrix corresponding to the Column index" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Column", + "key": "DataInput_Column", "details": { - "name": "Number: Column" + "name": "Column" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumns.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumns.names index 04c7ffa599..104ca88d50 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumns.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetColumns.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetColumns", + "name": "Get Columns", "category": "Math/Matrix3x3", - "tooltip": "returns all columns from matrix", - "subtitle": "Matrix3x3" + "tooltip": "Returns all columns from matrix" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Column1: Vector3", + "key": "DataOutput_Column1", "details": { - "name": "Column1: Vector3" + "name": "Column 1" } }, { - "key": "DataOutput_Column2: Vector3", + "key": "DataOutput_Column2", "details": { - "name": "Column2: Vector3" + "name": "Column 2" } }, { - "key": "DataOutput_Column3: Vector3", + "key": "DataOutput_Column3", "details": { - "name": "Column3: Vector3" + "name": "Column 3" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names index 2f4069b9ba..1c64bf8f40 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetDiagonal.names @@ -5,9 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetDiagonal", + "name": "Get Diagonal", "category": "Math/Matrix3x3", - "tooltip": "returns vector of matrix diagonal values" + "tooltip": "Returns vector of matrix diagonal values" }, "slots": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetElement.names index c6c09ba2c4..0cf502fad0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetElement.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetElement", + "name": "Get Element", "category": "Math/Matrix3x3", - "tooltip": "returns scalar from matrix corresponding to the (Row,Column) pair", - "subtitle": "Matrix3x3" + "tooltip": "Returns scalar from matrix corresponding to the (Row,Column) pair" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Row", + "key": "DataInput_Row", "details": { - "name": "Number: Row" + "name": "Row" } }, { - "key": "DataInput_Number: Column", + "key": "DataInput_Column", "details": { - "name": "Number: Column" + "name": "Column" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRow.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRow.names index 96e705bd14..f886bcbd50 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRow.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRow.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetRow", + "name": "Get Row", "category": "Math/Matrix3x3", - "tooltip": "returns vector from matrix corresponding to the Row index", - "subtitle": "Matrix3x3" + "tooltip": "Returns vector from matrix corresponding to the Row index" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Row", + "key": "DataInput_Row", "details": { - "name": "Number: Row" + "name": "Row" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRows.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRows.names index 5f23c4b660..fc06f37dfb 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRows.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_GetRows.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetRows", + "name": "Get Rows", "category": "Math/Matrix3x3", - "tooltip": "returns all rows from matrix", - "subtitle": "Matrix3x3" + "tooltip": "Returns all rows from matrix" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Row1: Vector3", + "key": "DataOutput_Row1", "details": { - "name": "Row1: Vector3" + "name": "Row 1" } }, { - "key": "DataOutput_Row2: Vector3", + "key": "DataOutput_Row2", "details": { - "name": "Row2: Vector3" + "name": "Row 2" } }, { - "key": "DataOutput_Row3: Vector3", + "key": "DataOutput_Row3", "details": { - "name": "Row3: Vector3" + "name": "Row 3" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Invert.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Invert.names index 4899a05c24..24131fb847 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Invert.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Invert.names @@ -7,8 +7,7 @@ "details": { "name": "Invert", "category": "Math/Matrix3x3", - "tooltip": "returns inverse of Matrix", - "subtitle": "Matrix3x3" + "tooltip": "Returns inverse of Matrix" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsClose.names index ae0450c30e..403df39120 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsClose.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsClose", + "name": "Is Close", "category": "Math/Matrix3x3", - "tooltip": "returns true if each element of both Matrix are equal within some tolerance", - "subtitle": "Matrix3x3" + "tooltip": "Returns true if each element of both Matrix are equal within some tolerance" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Matrix3x3: A", + "key": "DataInput_A", "details": { - "name": "Matrix3x3: A" + "name": "A" } }, { - "key": "DataInput_Matrix3x3: B", + "key": "DataInput_B", "details": { - "name": "Matrix3x3: B" + "name": "B" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsFinite.names index 4f37da4d8b..be00053f63 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsFinite.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsFinite", + "name": "Is Finite", "category": "Math/Matrix3x3", - "tooltip": "returns true if all numbers in matrix is finite", - "subtitle": "Matrix3x3" + "tooltip": "Returns true if all numbers in matrix is finite" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsOrthogonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsOrthogonal.names index a49ae462cc..68dbdac032 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsOrthogonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_IsOrthogonal.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsOrthogonal", + "name": "Is Orthogonal", "category": "Math/Matrix3x3", - "tooltip": "returns true if the matrix is orthogonal", - "subtitle": "Matrix3x3" + "tooltip": "Returns true if the matrix is orthogonal" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByNumber.names index 4e96ab3cc1..174394484a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByNumber.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByNumber", + "name": "Multiply By Number", "category": "Math/Matrix3x3", - "tooltip": "returns matrix created from multiply the source matrix by Multiplier", - "subtitle": "Matrix3x3" + "tooltip": "Returns matrix created from multiply the source matrix by Multiplier" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Multiplier", + "key": "DataInput_Multiplier", "details": { - "name": "Number: Multiplier" + "name": "Multiplier" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByVector.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByVector.names index 3da3867769..bc6f6fa58e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByVector.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_MultiplyByVector.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByVector", + "name": "Multiply By Vector", "category": "Math/Matrix3x3", - "tooltip": "returns vector created by right left multiplying matrix by supplied vector", - "subtitle": "Matrix3x3" + "tooltip": "Returns vector created by right left multiplying matrix by supplied vector" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataInput_Vector3: Vector", + "key": "DataInput_Vector", "details": { - "name": "Vector3: Vector" + "name": "Vector" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Orthogonalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Orthogonalize.names index eeb65268d5..626c0007f0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Orthogonalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Orthogonalize.names @@ -7,8 +7,7 @@ "details": { "name": "Orthogonalize", "category": "Math/Matrix3x3", - "tooltip": "returns an orthogonal matrix from the Source matrix", - "subtitle": "Matrix3x3" + "tooltip": "Returns an orthogonal matrix from the Source matrix" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToAdjugate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToAdjugate.names index ab49d83fa3..ee10f47d79 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToAdjugate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToAdjugate.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ToAdjugate", + "name": "To Adjugate", "category": "Math/Matrix3x3", - "tooltip": "returns the transpose of Matrix of cofactors", - "subtitle": "Matrix3x3" + "tooltip": "Returns the transpose of Matrix of cofactors" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToDeterminant.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToDeterminant.names index 3f8cff3116..c1f45fec65 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToDeterminant.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToDeterminant.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ToDeterminant", + "name": "To Determinant", "category": "Math/Matrix3x3", - "tooltip": "returns determinant of Matrix", - "subtitle": "Matrix3x3" + "tooltip": "Returns determinant of Matrix" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Determinant: Number", + "key": "DataOutput_Determinant", "details": { - "name": "Determinant: Number" + "name": "Determinant" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToScale.names index 965ab601ae..ded60634b3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_ToScale.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ToScale", + "name": "To Scale", "category": "Math/Matrix3x3", - "tooltip": "returns scale part of the transformation matrix", - "subtitle": "Matrix3x3" + "tooltip": "Returns scale part of the transformation matrix" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Transpose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Transpose.names index c9af69dff5..c03d1e9be7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Transpose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Transpose.names @@ -7,8 +7,7 @@ "details": { "name": "Transpose", "category": "Math/Matrix3x3", - "tooltip": "returns transpose of Matrix", - "subtitle": "Matrix3x3" + "tooltip": "returns transpose of Matrix" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Zero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Zero.names index 8dbd85f33a..c9102e659b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Zero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathMatrix3x3_Zero.names @@ -7,8 +7,7 @@ "details": { "name": "Zero", "category": "Math/Matrix3x3", - "tooltip": "returns the zero matrix", - "subtitle": "Matrix3x3" + "tooltip": "Returns the zero matrix" }, "slots": [ { @@ -24,9 +23,9 @@ } }, { - "key": "DataOutput_Result: Matrix3x3", + "key": "DataOutput_Result", "details": { - "name": "Result: Matrix3x3" + "name": "Result" } } ] From 3a7105fd4cee0608d40cd87829b9e5b566f1c6ca Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Tue, 16 Nov 2021 13:49:19 -0800 Subject: [PATCH 05/10] Updated remaining math nodes' text Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- .../TranslationAssets/Classes/Math.names | 299 +++++++----------- .../Nodes/MathOBB_FromAabb.names | 15 +- ...B_FromPositionRotationAndHalfLengths.names | 23 +- .../Nodes/MathOBB_GetAxisX.names | 15 +- .../Nodes/MathOBB_GetAxisY.names | 15 +- .../Nodes/MathOBB_GetAxisZ.names | 15 +- .../Nodes/MathOBB_GetPosition.names | 15 +- .../Nodes/MathOBB_IsFinite.names | 15 +- .../Nodes/MathPlane_DistanceToPoint.names | 17 +- .../Nodes/MathPlane_FromCoefficients.names | 25 +- .../MathPlane_FromNormalAndDistance.names | 17 +- .../Nodes/MathPlane_FromNormalAndPoint.names | 17 +- .../Nodes/MathPlane_GetDistance.names | 13 +- .../Nodes/MathPlane_GetNormal.names | 13 +- ...thPlane_GetPlaneEquationCoefficients.names | 25 +- .../Nodes/MathPlane_IsFinite.names | 13 +- .../Nodes/MathPlane_Project.names | 15 +- .../Nodes/MathPlane_Transform.names | 15 +- .../Nodes/MathQuaternion_Conjugate.names | 11 +- ...uaternion_ConvertTransformToRotation.names | 13 +- ...MathQuaternion_CreateFromEulerAngles.names | 21 +- .../Nodes/MathQuaternion_Dot.names | 15 +- .../MathQuaternion_FromAxisAngleDegrees.names | 17 +- .../Nodes/MathQuaternion_FromMatrix3x3.names | 13 +- .../Nodes/MathQuaternion_FromMatrix4x4.names | 13 +- .../Nodes/MathQuaternion_FromTransform.names | 13 +- .../Nodes/MathQuaternion_InvertFull.names | 13 +- .../Nodes/MathQuaternion_IsClose.names | 21 +- .../Nodes/MathQuaternion_IsFinite.names | 13 +- .../Nodes/MathQuaternion_IsIdentity.names | 17 +- .../Nodes/MathQuaternion_IsZero.names | 17 +- .../MathQuaternion_LengthReciprocal.names | 13 +- .../Nodes/MathQuaternion_LengthSquared.names | 13 +- .../Nodes/MathQuaternion_Lerp.names | 19 +- .../MathQuaternion_MultiplyByNumber.names | 17 +- .../Nodes/MathQuaternion_Negate.names | 11 +- .../Nodes/MathQuaternion_Normalize.names | 11 +- .../Nodes/MathQuaternion_RotateVector3.names | 17 +- .../MathQuaternion_RotationXDegrees.names | 13 +- .../MathQuaternion_RotationYDegrees.names | 13 +- .../MathQuaternion_RotationZDegrees.names | 13 +- .../Nodes/MathQuaternion_ShortestArc.names | 17 +- .../Nodes/MathQuaternion_Slerp.names | 19 +- .../Nodes/MathQuaternion_Squad.names | 27 +- .../Nodes/MathQuaternion_ToAngleDegrees.names | 13 +- .../Nodes/MathRandom_RandomColor.names | 17 +- .../Nodes/MathRandom_RandomGrayscale.names | 17 +- .../Nodes/MathRandom_RandomInteger.names | 17 +- .../Nodes/MathRandom_RandomNumber.names | 17 +- .../Nodes/MathRandom_RandomPointInArc.names | 29 +- .../Nodes/MathRandom_RandomPointInBox.names | 13 +- .../MathRandom_RandomPointInCircle.names | 13 +- .../Nodes/MathRandom_RandomPointInCone.names | 17 +- .../MathRandom_RandomPointInCylinder.names | 17 +- .../MathRandom_RandomPointInEllipsoid.names | 13 +- .../MathRandom_RandomPointInSphere.names | 13 +- .../MathRandom_RandomPointInSquare.names | 13 +- .../Nodes/MathRandom_RandomPointInWedge.names | 33 +- .../MathRandom_RandomPointOnCircle.names | 13 +- .../MathRandom_RandomPointOnSphere.names | 13 +- .../Nodes/MathRandom_RandomQuaternion.names | 17 +- .../Nodes/MathRandom_RandomUnitVector2.names | 9 +- .../Nodes/MathRandom_RandomUnitVector3.names | 9 +- .../Nodes/MathRandom_RandomVector2.names | 17 +- .../Nodes/MathRandom_RandomVector3.names | 17 +- .../Nodes/MathRandom_RandomVector4.names | 17 +- .../Nodes/MathTransform_FromMatrix3x3.names | 13 +- ...ransform_FromMatrix3x3AndTranslation.names | 17 +- .../Nodes/MathTransform_FromRotation.names | 13 +- ...Transform_FromRotationAndTranslation.names | 17 +- .../Nodes/MathTransform_FromScale.names | 13 +- .../Nodes/MathTransform_FromTranslation.names | 13 +- .../Nodes/MathTransform_GetForward.names | 17 +- .../Nodes/MathTransform_GetRight.names | 17 +- .../Nodes/MathTransform_GetTranslation.names | 13 +- .../Nodes/MathTransform_GetUp.names | 17 +- .../Nodes/MathTransform_IsClose.names | 21 +- .../Nodes/MathTransform_IsFinite.names | 13 +- .../Nodes/MathTransform_IsOrthogonal.names | 17 +- ...MathTransform_MultiplyByUniformScale.names | 17 +- .../MathTransform_MultiplyByVector3.names | 17 +- .../MathTransform_MultiplyByVector4.names | 17 +- .../Nodes/MathTransform_Orthogonalize.names | 11 +- .../MathTransform_RotationXDegrees.names | 13 +- .../MathTransform_RotationYDegrees.names | 13 +- .../MathTransform_RotationZDegrees.names | 13 +- .../Nodes/MathTransform_ToScale.names | 13 +- .../Nodes/MathVector2_Absolute.names | 11 +- .../Nodes/MathVector2_Angle.names | 11 +- .../Nodes/MathVector2_Clamp.names | 19 +- .../Nodes/MathVector2_DirectionTo.names | 27 +- .../Nodes/MathVector2_Distance.names | 15 +- .../Nodes/MathVector2_DistanceSquared.names | 17 +- .../Nodes/MathVector2_Dot.names | 15 +- .../Nodes/MathVector2_FromValues.names | 17 +- .../Nodes/MathVector2_GetElement.names | 17 +- .../Nodes/MathVector2_IsClose.names | 21 +- .../Nodes/MathVector2_IsFinite.names | 13 +- .../Nodes/MathVector2_IsNormalized.names | 17 +- .../Nodes/MathVector2_IsZero.names | 17 +- .../Nodes/MathVector2_Length.names | 11 +- .../Nodes/MathVector2_LengthSquared.names | 13 +- .../Nodes/MathVector2_Lerp.names | 19 +- .../Nodes/MathVector2_Max.names | 15 +- .../Nodes/MathVector2_Min.names | 15 +- .../Nodes/MathVector2_MultiplyByNumber.names | 17 +- .../Nodes/MathVector2_Negate.names | 11 +- .../Nodes/MathVector2_Normalize.names | 11 +- .../Nodes/MathVector2_Project.names | 15 +- .../Nodes/MathVector2_SetX.names | 17 +- .../Nodes/MathVector2_SetY.names | 17 +- .../Nodes/MathVector2_Slerp.names | 19 +- .../Nodes/MathVector2_ToPerpendicular.names | 13 +- .../Nodes/MathVector3_Absolute.names | 11 +- .../Nodes/MathVector3_BuildTangentBasis.names | 17 +- .../Nodes/MathVector3_Clamp.names | 19 +- .../Nodes/MathVector3_Cross.names | 15 +- .../Nodes/MathVector3_DirectionTo.names | 27 +- .../Nodes/MathVector3_Distance.names | 15 +- .../Nodes/MathVector3_DistanceSquared.names | 17 +- .../Nodes/MathVector3_Dot.names | 15 +- .../Nodes/MathVector3_FromValues.names | 21 +- .../Nodes/MathVector3_GetElement.names | 17 +- .../Nodes/MathVector3_IsClose.names | 21 +- .../Nodes/MathVector3_IsFinite.names | 13 +- .../Nodes/MathVector3_IsNormalized.names | 17 +- .../Nodes/MathVector3_IsPerpendicular.names | 21 +- .../Nodes/MathVector3_IsZero.names | 17 +- .../Nodes/MathVector3_Length.names | 11 +- .../Nodes/MathVector3_LengthReciprocal.names | 13 +- .../Nodes/MathVector3_LengthSquared.names | 13 +- .../Nodes/MathVector3_Lerp.names | 19 +- .../Nodes/MathVector3_Max.names | 15 +- .../Nodes/MathVector3_Min.names | 15 +- .../Nodes/MathVector3_MultiplyByNumber.names | 17 +- .../Nodes/MathVector3_Negate.names | 11 +- .../Nodes/MathVector3_Normalize.names | 11 +- .../Nodes/MathVector3_Project.names | 15 +- .../Nodes/MathVector3_Reciprocal.names | 11 +- .../Nodes/MathVector3_SetX.names | 17 +- .../Nodes/MathVector3_SetY.names | 17 +- .../Nodes/MathVector3_SetZ.names | 17 +- .../Nodes/MathVector3_Slerp.names | 19 +- .../Nodes/MathVector4_Absolute.names | 11 +- .../Nodes/MathVector4_DirectionTo.names | 27 +- .../Nodes/MathVector4_Dot.names | 15 +- .../Nodes/MathVector4_FromValues.names | 25 +- .../Nodes/MathVector4_GetElement.names | 17 +- .../Nodes/MathVector4_IsClose.names | 21 +- .../Nodes/MathVector4_IsFinite.names | 13 +- .../Nodes/MathVector4_IsNormalized.names | 17 +- .../Nodes/MathVector4_IsZero.names | 17 +- .../Nodes/MathVector4_Length.names | 11 +- .../Nodes/MathVector4_LengthReciprocal.names | 13 +- .../Nodes/MathVector4_LengthSquared.names | 13 +- .../Nodes/MathVector4_MultiplyByNumber.names | 17 +- .../Nodes/MathVector4_Negate.names | 11 +- .../Nodes/MathVector4_Normalize.names | 11 +- .../Nodes/MathVector4_Reciprocal.names | 11 +- .../Nodes/MathVector4_SetW.names | 17 +- .../Nodes/MathVector4_SetX.names | 17 +- .../Nodes/MathVector4_SetY.names | 17 +- .../Nodes/MathVector4_SetZ.names | 17 +- 163 files changed, 1315 insertions(+), 1548 deletions(-) diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math.names index 4ff9bc2ffa..546608f0b0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/Math.names @@ -5,7 +5,7 @@ "context": "BehaviorClass", "variant": "", "details": { - "name": "Trigonometry", + "name": "Functions", "category": "Math" }, "methods": [ @@ -21,20 +21,20 @@ "tooltip": "Signaled after DivideByNumber is invoked" }, "details": { - "name": "Math::Divide By Number", - "category": "Math" + "name": "Divide By Number", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "X" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Y" } } ], @@ -42,7 +42,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Result" } } ] @@ -59,15 +59,14 @@ "tooltip": "Signaled after Round is invoked" }, "details": { - "name": "Math::Round", - "category": "Math/Number" + "name": "Round", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "Number to round" + "name": "Value" } } ], @@ -75,8 +74,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "Rounded number" + "name": "Result" } } ] @@ -93,15 +91,14 @@ "tooltip": "Signaled after Sqrt is invoked" }, "details": { - "name": "Math::Sqrt", - "category": "Math/Number" + "name": "Sqrt", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "Number to get the square root of" + "name": "Value" } } ], @@ -109,8 +106,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "Square root of the number" + "name": "Result" } } ] @@ -127,22 +123,20 @@ "tooltip": "Signaled after Mod is invoked" }, "details": { - "name": "Math::Mod", - "category": "Math/Number" + "name": "Mod", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Dividend", - "tooltip": "The number to be divided" + "name": "A" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Divisor", - "tooltip": "The number to be divided by" + "name": "B" } } ], @@ -150,8 +144,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Remainder", - "tooltip": "The remainder of the division between the two inputs" + "name": "Value" } } ] @@ -168,15 +161,14 @@ "tooltip": "Signaled after Ceil is invoked" }, "details": { - "name": "Math::Ceil", - "category": "Math/Number" + "name": "Ceil", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "The number to be rounded up" + "name": "Value" } } ], @@ -184,8 +176,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Ceiling", - "tooltip": "The value rounded up" + "name": "Result" } } ] @@ -202,15 +193,14 @@ "tooltip": "Signaled after IsEven is invoked" }, "details": { - "name": "Math::IsEven", - "category": "Math/Number" + "name": "Is Even", + "category": "Other" }, "params": [ { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "Number", - "tooltip": "Number to be checked" + "name": "Value" } } ], @@ -218,8 +208,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "Boolean", - "tooltip": "Returns true if the number is even; false if not" + "name": "Is Event" } } ] @@ -236,29 +225,26 @@ "tooltip": "Signaled after IsClose is invoked" }, "details": { - "name": "Math::IsClose", - "category": "Math/Number" + "name": "Is Close", + "category": "Other" }, "params": [ { "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", "details": { - "name": "Number A", - "tooltip": "Number to compare" + "name": "A" } }, { "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", "details": { - "name": "Number B", - "tooltip": "Number to compare" + "name": "B" } }, { "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", "details": { - "name": "Tolerance", - "tooltip": "The value range to check the numbers against" + "name": "Tolerance" } } ], @@ -266,7 +252,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "Boolean" + "name": "Is Close" } } ] @@ -283,15 +269,14 @@ "tooltip": "Signaled after ArcSin is invoked" }, "details": { - "name": "Math::ArcSin", - "category": "Math" + "name": "Arc Sin", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Value" } } ], @@ -299,8 +284,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Result" } } ] @@ -317,15 +301,14 @@ "tooltip": "Signaled after ArcTan is invoked" }, "details": { - "name": "Math::ArcTan", - "category": "Math" + "name": "Arc Tan", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Value" } } ], @@ -333,8 +316,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Result" } } ] @@ -351,22 +333,20 @@ "tooltip": "Signaled after Max is invoked" }, "details": { - "name": "Math::Max", - "category": "Math/Number" + "name": "Max", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number A", - "tooltip": "Number to be compared" + "name": "A" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number B", - "tooltip": "Number to be compared" + "name": "B" } } ], @@ -374,8 +354,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Max", - "tooltip": "The largest between two numbers" + "name": "Result" } } ] @@ -392,15 +371,14 @@ "tooltip": "Signaled after Tan is invoked" }, "details": { - "name": "Math::Tan", - "category": "Math" + "name": "Tan", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Value" } } ], @@ -408,8 +386,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Result" } } ] @@ -426,22 +403,20 @@ "tooltip": "Signaled after ArcTan2 is invoked" }, "details": { - "name": "Math::ArcTan2", - "category": "Math" + "name": "Arc Tan 2", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle A", - "tooltip": "Angle as radians" + "name": "A" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle B", - "tooltip": "Angle as radians" + "name": "B" } } ], @@ -449,8 +424,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Result" } } ] @@ -467,15 +441,14 @@ "tooltip": "Signaled after Floor is invoked" }, "details": { - "name": "Math::Floor", - "category": "Math/Number" + "name": "Floor", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "The number to be rounded down" + "name": "Value" } } ], @@ -483,8 +456,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Floor", - "tooltip": "The value rounded down" + "name": "Result" } } ] @@ -501,22 +473,20 @@ "tooltip": "Signaled after Min is invoked" }, "details": { - "name": "Math::Min", - "category": "Math/Number" + "name": "Min", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number A", - "tooltip": "Number to be compared" + "name": "A" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number B", - "tooltip": "Number to be compared" + "name": "B" } } ], @@ -524,8 +494,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Min", - "tooltip": "The smallest between two numbers" + "name": "Result" } } ] @@ -542,26 +511,26 @@ "tooltip": "Signaled after Lerp is invoked" }, "details": { - "name": "Math::Lerp", - "category": "Math/Number" + "name": "Lerp", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "a" + "name": "A" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "b" + "name": "B" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "t" + "name": "Time" } } ], @@ -569,7 +538,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number" + "name": "Result" } } ] @@ -586,26 +555,26 @@ "tooltip": "Signaled after LerpInverse is invoked" }, "details": { - "name": "Math::LerpInverse", - "category": "Math/Number" + "name": "LerpInverse", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "a" + "name": "A" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "b" + "name": "B" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "value" + "name": "Time" } } ], @@ -613,7 +582,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number" + "name": "Result" } } ] @@ -630,15 +599,14 @@ "tooltip": "Signaled after IsOdd is invoked" }, "details": { - "name": "Math::IsOdd", - "category": "Math/Number" + "name": "Is Odd", + "category": "Other" }, "params": [ { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "Number", - "tooltip": "Number to be checked" + "name": "Value" } } ], @@ -646,8 +614,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "Boolean", - "tooltip": "Returns true if the number is not even; false if it is" + "name": "Is Odd" } } ] @@ -664,14 +631,13 @@ "tooltip": "Signaled after Abs is invoked" }, "details": { - "name": "Math::Abs", - "category": "Math" + "name": "Abs" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } } ], @@ -679,7 +645,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Result" } } ] @@ -696,15 +662,14 @@ "tooltip": "Signaled after RadToDeg is invoked" }, "details": { - "name": "Math::RadToDeg", - "category": "Math" + "name": "Radians To Degrees", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Radians", - "tooltip": "Radians to be converted" + "name": "Radians" } } ], @@ -712,8 +677,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Degrees", - "tooltip": "Degrees from radians" + "name": "Degrees" } } ] @@ -730,15 +694,14 @@ "tooltip": "Signaled after Sin is invoked" }, "details": { - "name": "Math::Sin", - "category": "Math" + "name": "Sin", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Number as radians" + "name": "Value" } } ], @@ -746,8 +709,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Number as radians" + "name": "Result" } } ] @@ -764,15 +726,14 @@ "tooltip": "Signaled after Cos is invoked" }, "details": { - "name": "Math::Cos", - "category": "Math" + "name": "Cos", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Value" } } ], @@ -780,8 +741,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Result" } } ] @@ -798,15 +758,14 @@ "tooltip": "Signaled after ArcCos is invoked" }, "details": { - "name": "Math::ArcCos", - "category": "Math" + "name": "Arc Cos", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Value" } } ], @@ -814,8 +773,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Angle", - "tooltip": "Angle as radians" + "name": "Result" } } ] @@ -832,15 +790,14 @@ "tooltip": "Signaled after Sign is invoked" }, "details": { - "name": "Math::Sign", - "category": "Math/Number" + "name": "Sign", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "Number to check" + "name": "Value" } } ], @@ -848,8 +805,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Sign", - "tooltip": "Returns 1 if the number is positive and -1 if the number is negative" + "name": "Result" } } ] @@ -866,29 +822,26 @@ "tooltip": "Signaled after Clamp is invoked" }, "details": { - "name": "Math::Clamp", - "category": "Math/Number" + "name": "Clamp", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "Value to be clamped" + "name": "Value" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Min", - "tooltip": "The minimum value to clamp to" + "name": "Minimum" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Max", - "tooltip": "The maximum value to clamp to" + "name": "Maximum" } } ], @@ -896,8 +849,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "The result of the clamp" + "name": "Result" } } ] @@ -914,26 +866,26 @@ "tooltip": "Signaled after GetSinCos is invoked" }, "details": { - "name": "Math::GetSinCos", - "category": "Math" + "name": "Get Sin Cos", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Value" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float&" + "name": "Sin" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float&" + "name": "Cos" } } ] @@ -950,15 +902,14 @@ "tooltip": "Signaled after DegToRad is invoked" }, "details": { - "name": "Math::DegToRad", - "category": "Math" + "name": "Degrees To Radians", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Degrees", - "tooltip": "Degrees to be converted" + "name": "Degrees" } } ], @@ -966,8 +917,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Radians", - "tooltip": "Radians from degrees" + "name": "Radians" } } ] @@ -984,22 +934,20 @@ "tooltip": "Signaled after Pow is invoked" }, "details": { - "name": "Math::Pow", - "category": "Math/Number" + "name": "Pow", + "category": "Other" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "The value to be raised" + "name": "Value" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Exponent", - "tooltip": "The power exponent" + "name": "Exponent" } } ], @@ -1007,8 +955,7 @@ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Number", - "tooltip": "The result of the number raised to the power exponent" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromAabb.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromAabb.names index 77735b2622..62c13d11c8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromAabb.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromAabb.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromAabb", - "category": "Math/OBB", - "tooltip": "converts the Source to an OBB", - "subtitle": "OBB" + "name": "From Axis Aligned Bounding Box", + "category": "Math/Oriented Bounding Box", + "tooltip": "Converts the Source to an Oriented Bounding Box" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_AABB: Source", + "key": "DataInput_Source", "details": { - "name": "AABB: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: OBB", + "key": "DataOutput_Result", "details": { - "name": "Result: OBB" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromPositionRotationAndHalfLengths.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromPositionRotationAndHalfLengths.names index a683c20248..d59a1fdd33 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromPositionRotationAndHalfLengths.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_FromPositionRotationAndHalfLengths.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromPositionRotationAndHalfLengths", - "category": "Math/OBB", - "tooltip": "returns an OBB from the position, rotation and half lengths", - "subtitle": "OBB" + "name": "From Position Rotation And Half Lengths", + "category": "Math/Oriented Bounding Box", + "tooltip": "returns an Oriented Bounding Box from the position, rotation and half lengths" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector3: Position", + "key": "DataInput_Position", "details": { - "name": "Vector3: Position" + "name": "Position" } }, { - "key": "DataInput_Quaternion: Rotation", + "key": "DataInput_Rotation", "details": { - "name": "Quaternion: Rotation" + "name": "Rotation" } }, { - "key": "DataInput_Vector3: HalfLengths", + "key": "DataInput_HalfLengths", "details": { - "name": "Vector3: HalfLengths" + "name": "Half Lengths" } }, { - "key": "DataOutput_Result: OBB", + "key": "DataOutput_Result", "details": { - "name": "Result: OBB" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisX.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisX.names index 7380a8011a..abfb3f23f5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisX.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisX.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetAxisX", - "category": "Math/OBB", - "tooltip": "returns the X-Axis of Source", - "subtitle": "OBB" + "name": "Get Axis X", + "category": "Math/Oriented Bounding Box", + "tooltip": "Returns the X-Axis of Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_OBB: Source", + "key": "DataInput_Source", "details": { - "name": "OBB: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisY.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisY.names index 174e8abbd8..2bb5294f11 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisY.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisY.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetAxisY", - "category": "Math/OBB", - "tooltip": "returns the Y-Axis of Source", - "subtitle": "OBB" + "name": "Get Axis Y", + "category": "Math/Oriented Bounding Box", + "tooltip": "Returns the Y-Axis of Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_OBB: Source", + "key": "DataInput_Source", "details": { - "name": "OBB: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisZ.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisZ.names index b46dd378a6..03363e3123 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisZ.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetAxisZ.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetAxisZ", - "category": "Math/OBB", - "tooltip": "returns the Z-Axis of Source", - "subtitle": "OBB" + "name": "Get Axis Z", + "category": "Math/Oriented Bounding Box", + "tooltip": "Returns the Z-Axis of Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_OBB: Source", + "key": "DataInput_Source", "details": { - "name": "OBB: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetPosition.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetPosition.names index acdc8235da..d69e720586 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetPosition.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_GetPosition.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetPosition", - "category": "Math/OBB", - "tooltip": "returns the position of Source", - "subtitle": "OBB" + "name": "Get Position", + "category": "Math/Oriented Bounding Box", + "tooltip": "Returns the position of Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_OBB: Source", + "key": "DataInput_Source", "details": { - "name": "OBB: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_IsFinite.names index 4aca32e4e7..73e7d36a6e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathOBB_IsFinite.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsFinite", - "category": "Math/OBB", - "tooltip": "returns true if every element in Source is finite, is false", - "subtitle": "OBB" + "name": "Is Finite", + "category": "Math/Oriented Bounding Box", + "tooltip": "Returns true if every element in Source is finite, is false" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_OBB: Source", + "key": "DataInput_Source", "details": { - "name": "OBB: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_DistanceToPoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_DistanceToPoint.names index b6bd650223..7d80966095 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_DistanceToPoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_DistanceToPoint.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "DistanceToPoint", + "name": "Distance To Point", "category": "Math/Plane", - "tooltip": "returns the closest distance from Source to Point", - "subtitle": "Plane" + "tooltip": "Returns the closest distance from Source to Point" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Plane: Source", + "key": "DataInput_Source", "details": { - "name": "Plane: Source" + "name": "Source" } }, { - "key": "DataInput_Vector3: Point", + "key": "DataInput_Point", "details": { - "name": "Vector3: Point" + "name": "Point" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromCoefficients.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromCoefficients.names index 85df33bab5..808f50a2d1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromCoefficients.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromCoefficients.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromCoefficients", + "name": "From Coefficients", "category": "Math/Plane", - "tooltip": "returns the plane that satisfies the equation Ax + By + Cz + D = 0", - "subtitle": "Plane" + "tooltip": "Returns the plane that satisfies the equation Ax + By + Cz + D = 0" }, "slots": [ { @@ -24,33 +23,33 @@ } }, { - "key": "DataInput_Number: A", + "key": "DataInput_A", "details": { - "name": "Number: A" + "name": "A" } }, { - "key": "DataInput_Number: B", + "key": "DataInput_B", "details": { - "name": "Number: B" + "name": "B" } }, { - "key": "DataInput_Number: C", + "key": "DataInput_C", "details": { - "name": "Number: C" + "name": "C" } }, { - "key": "DataInput_Number: D", + "key": "DataInput_D", "details": { - "name": "Number: D" + "name": "D" } }, { - "key": "DataOutput_Result: Plane", + "key": "DataOutput_Result", "details": { - "name": "Result: Plane" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndDistance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndDistance.names index f4c79b9c93..c4578ba333 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndDistance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndDistance.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromNormalAndDistance", + "name": "From Normal And Distance", "category": "Math/Plane", - "tooltip": "returns the plane with the specified Normal and Distance from the origin", - "subtitle": "Plane" + "tooltip": "Returns the plane with the specified Normal and Distance from the origin" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Normal", + "key": "DataInput_Normal", "details": { - "name": "Vector3: Normal" + "name": "Normal" } }, { - "key": "DataInput_Number: Distance", + "key": "DataInput_Distance", "details": { - "name": "Number: Distance" + "name": "Distance" } }, { - "key": "DataOutput_Result: Plane", + "key": "DataOutput_Result", "details": { - "name": "Result: Plane" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndPoint.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndPoint.names index 6656072a9b..e590504d18 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndPoint.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_FromNormalAndPoint.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromNormalAndPoint", + "name": "From Normal And Point", "category": "Math/Plane", - "tooltip": "returns the plane which includes the Point with the specified Normal", - "subtitle": "Plane" + "tooltip": "Returns the plane which includes the Point with the specified Normal" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Normal", + "key": "DataInput_Normal", "details": { - "name": "Vector3: Normal" + "name": "Normal" } }, { - "key": "DataInput_Vector3: Point", + "key": "DataInput_Point", "details": { - "name": "Vector3: Point" + "name": "Point" } }, { - "key": "DataOutput_Result: Plane", + "key": "DataOutput_Result", "details": { - "name": "Result: Plane" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetDistance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetDistance.names index 54ce9345b3..d097209d63 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetDistance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetDistance.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetDistance", + "name": "Get Distance", "category": "Math/Plane", - "tooltip": "returns the Source's distance from the origin", - "subtitle": "Plane" + "tooltip": "Returns the Source's distance from the origin" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Plane: Source", + "key": "DataInput_Source", "details": { - "name": "Plane: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetNormal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetNormal.names index 6e043d8c10..b149b8451a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetNormal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetNormal.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetNormal", + "name": "Get Normal", "category": "Math/Plane", - "tooltip": "returns the surface normal of Source", - "subtitle": "Plane" + "tooltip": "Returns the surface normal of Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Plane: Source", + "key": "DataInput_Source", "details": { - "name": "Plane: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetPlaneEquationCoefficients.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetPlaneEquationCoefficients.names index 0379e3c94d..2a904695e9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetPlaneEquationCoefficients.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_GetPlaneEquationCoefficients.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetPlaneEquationCoefficients", + "name": "Get Plane Equation Coefficients", "category": "Math/Plane", - "tooltip": "returns Source's coefficient's (A, B, C, D) in the equation Ax + By + Cz + D = 0", - "subtitle": "Plane" + "tooltip": "Returns Source's coefficient's (A, B, C, D) in the equation Ax + By + Cz + D = 0" }, "slots": [ { @@ -24,33 +23,33 @@ } }, { - "key": "DataInput_Plane: Source", + "key": "DataInput_Source", "details": { - "name": "Plane: Source" + "name": "Source" } }, { - "key": "DataOutput_A: Number", + "key": "DataOutput_A", "details": { - "name": "A: Number" + "name": "A" } }, { - "key": "DataOutput_B: Number", + "key": "DataOutput_B", "details": { - "name": "B: Number" + "name": "B" } }, { - "key": "DataOutput_C: Number", + "key": "DataOutput_C", "details": { - "name": "C: Number" + "name": "C" } }, { - "key": "DataOutput_D: Number", + "key": "DataOutput_D", "details": { - "name": "D: Number" + "name": "D" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_IsFinite.names index f704433c45..efdd4a332e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_IsFinite.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsFinite", + "name": "Is Finite", "category": "Math/Plane", - "tooltip": "returns true if Source is finite, else false", - "subtitle": "Plane" + "tooltip": "Returns true if Source is finite, else false" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Plane: Source", + "key": "DataInput_Source", "details": { - "name": "Plane: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Project.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Project.names index 38bf03f9e3..ec23385c33 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Project.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Project.names @@ -7,8 +7,7 @@ "details": { "name": "Project", "category": "Math/Plane", - "tooltip": "returns the projection of Point onto Source", - "subtitle": "Plane" + "tooltip": "Returns the projection of Point onto Source" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Plane: Source", + "key": "DataInput_Source", "details": { - "name": "Plane: Source" + "name": "Source" } }, { - "key": "DataInput_Vector3: Point", + "key": "DataInput_Point", "details": { - "name": "Vector3: Point" + "name": "Point" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Transform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Transform.names index 113ec5540a..f075b312ad 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Transform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathPlane_Transform.names @@ -7,8 +7,7 @@ "details": { "name": "Transform", "category": "Math/Plane", - "tooltip": "returns Source transformed by Transform", - "subtitle": "Plane" + "tooltip": "Returns Source transformed by Transform" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Plane: Source", + "key": "DataInput_Source", "details": { - "name": "Plane: Source" + "name": "Source" } }, { - "key": "DataInput_Transform: Transform", + "key": "DataInput_Transform", "details": { - "name": "Transform: Transform" + "name": "Transform" } }, { - "key": "DataOutput_Result: Plane", + "key": "DataOutput_Result", "details": { - "name": "Result: Plane" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Conjugate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Conjugate.names index 20959c0355..204cd35042 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Conjugate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Conjugate.names @@ -7,8 +7,7 @@ "details": { "name": "Conjugate", "category": "Math/Quaternion", - "tooltip": "returns the conjugate of the source, (-x, -y, -z, w)", - "subtitle": "Quaternion" + "tooltip": "Returns the conjugate of the source, (-x, -y, -z, w)" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ConvertTransformToRotation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ConvertTransformToRotation.names index e61f327c74..3d0d0823b1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ConvertTransformToRotation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ConvertTransformToRotation.names @@ -5,9 +5,8 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ConvertTransformToRotation", - "category": "Math/Quaternion", - "subtitle": "Quaternion" + "name": "Convert Transform To Rotation", + "category": "Math/Quaternion" }, "slots": [ { @@ -23,15 +22,15 @@ } }, { - "key": "DataInput_Transform: Transform", + "key": "DataInput_Transform", "details": { - "name": "Transform: Transform" + "name": "Transform" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_CreateFromEulerAngles.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_CreateFromEulerAngles.names index 47fef5d4e1..69cdb0f4b9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_CreateFromEulerAngles.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_CreateFromEulerAngles.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "CreateFromEulerAngles", + "name": "Create From Euler Angles", "category": "Math/Quaternion", - "tooltip": "Returns a new Quaternion initialized with the specified Angles", - "subtitle": "Quaternion" + "tooltip": "Returns a new Quaternion initialized with the specified Angles" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Number: Pitch", + "key": "DataInput_Pitch", "details": { - "name": "Number: Pitch" + "name": "Pitch" } }, { - "key": "DataInput_Number: Roll", + "key": "DataInput_Roll", "details": { - "name": "Number: Roll" + "name": "Roll" } }, { - "key": "DataInput_Number: Yaw", + "key": "DataInput_Yaw", "details": { - "name": "Number: Yaw" + "name": "Yaw" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Dot.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Dot.names index edf359e399..26fe0c1b79 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Dot.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Dot.names @@ -7,8 +7,7 @@ "details": { "name": "Dot", "category": "Math/Quaternion", - "tooltip": "returns the Dot product of A and B", - "subtitle": "Quaternion" + "tooltip": "Returns the Dot product of A and B" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Quaternion: A", + "key": "DataInput_A", "details": { - "name": "Quaternion: A" + "name": "A" } }, { - "key": "DataInput_Quaternion: B", + "key": "DataInput_B", "details": { - "name": "Quaternion: B" + "name": "B" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromAxisAngleDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromAxisAngleDegrees.names index e7d7e7d9ee..9851c3fd8f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromAxisAngleDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromAxisAngleDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromAxisAngleDegrees", + "name": "From Axis Angle (Degrees)", "category": "Math/Quaternion", - "tooltip": "returns the rotation created from Axis the angle Degrees", - "subtitle": "Quaternion" + "tooltip": "Returns the rotation created from Axis the angle Degrees" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Axis", + "key": "DataInput_Axis", "details": { - "name": "Vector3: Axis" + "name": "Axis" } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix3x3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix3x3.names index 3047464992..906014820e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix3x3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix3x3.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromMatrix3x3", + "name": "From Matrix3x3", "category": "Math/Quaternion", - "tooltip": "returns a rotation created from the 3x3 matrix source", - "subtitle": "Quaternion" + "tooltip": "Returns a rotation created from the 3x3 matrix source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix4x4.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix4x4.names index 0584ca0fc6..cbfd1dc1ea 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix4x4.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromMatrix4x4.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromMatrix4x4", + "name": "From Matrix4x4", "category": "Math/Quaternion", - "tooltip": "returns a rotation created from the 4x4 matrix source", - "subtitle": "Quaternion" + "tooltip": "Returns a rotation created from the 4x4 matrix source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix4x4: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix4x4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromTransform.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromTransform.names index 29caf9ef30..3a708bac08 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromTransform.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_FromTransform.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromTransform", + "name": "From Transform", "category": "Math/Quaternion", - "tooltip": "returns a rotation created from the rotation part of the transform source", - "subtitle": "Quaternion" + "tooltip": "Returns a rotation created from the rotation part of the transform source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_InvertFull.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_InvertFull.names index 4c5c4bc914..fc4ab2f1c7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_InvertFull.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_InvertFull.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "InvertFull", + "name": "Invert Full", "category": "Math/Quaternion", - "tooltip": "returns the inverse for any rotation, not just unit rotations", - "subtitle": "Quaternion" + "tooltip": "Returns the inverse for any rotation, not just unit rotations" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsClose.names index 664d1d5902..4af70867e8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsClose.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsClose", + "name": "Is Close", "category": "Math/Quaternion", - "tooltip": "returns true if A and B are within Tolerance of each other", - "subtitle": "Quaternion" + "tooltip": "Returns true if A and B are within Tolerance of each other" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Quaternion: A", + "key": "DataInput_A", "details": { - "name": "Quaternion: A" + "name": "A" } }, { - "key": "DataInput_Quaternion: B", + "key": "DataInput_B", "details": { - "name": "Quaternion: B" + "name": "B" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsFinite.names index 3c6ed7b793..0ccd7a1ce7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsFinite.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsFinite", + "name": "Is Finite", "category": "Math/Quaternion", - "tooltip": "returns true if every element in Source is finite", - "subtitle": "Quaternion" + "tooltip": "Returns true if every element in Source is finite" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsIdentity.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsIdentity.names index d4fd132017..62655f407c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsIdentity.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsIdentity.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsIdentity", + "name": "Is Identity", "category": "Math/Quaternion", - "tooltip": "returns true if Source is within Tolerance of the Identity rotation", - "subtitle": "Quaternion" + "tooltip": "Returns true if Source is within Tolerance of the Identity rotation" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsZero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsZero.names index 6fd28166a3..9ab1882a09 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsZero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_IsZero.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsZero", + "name": "Is Zero", "category": "Math/Quaternion", - "tooltip": "returns true if Source is within Tolerance of the Zero rotation", - "subtitle": "Quaternion" + "tooltip": "Returns true if Source is within Tolerance of the Zero rotation" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthReciprocal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthReciprocal.names index 536c549af9..772ab4f4d6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthReciprocal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthReciprocal.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "LengthReciprocal", + "name": "Length Reciprocal", "category": "Math/Quaternion", - "tooltip": "returns the reciprocal length of Source", - "subtitle": "Quaternion" + "tooltip": "Returns the reciprocal length of Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthSquared.names index 5279f1839e..8890491e60 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_LengthSquared.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "LengthSquared", + "name": "Length Squared", "category": "Math/Quaternion", - "tooltip": "returns the square of the length of Source", - "subtitle": "Quaternion" + "tooltip": "Returns the square of the length of Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Lerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Lerp.names index ca24736058..16925c829a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Lerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Lerp.names @@ -7,8 +7,7 @@ "details": { "name": "Lerp", "category": "Math/Quaternion", - "tooltip": "returns a the linear interpolation between From and To by the amount T", - "subtitle": "Quaternion" + "tooltip": "Returns a the linear interpolation between From and To by the amount T" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Quaternion: From", + "key": "DataInput_From", "details": { - "name": "Quaternion: From" + "name": "From" } }, { - "key": "DataInput_Quaternion: To", + "key": "DataInput_To", "details": { - "name": "Quaternion: To" + "name": "To" } }, { - "key": "DataInput_Number: T", + "key": "DataInput_T", "details": { - "name": "Number: T" + "name": "T" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_MultiplyByNumber.names index 2c62ec63a3..9c8fdd2ada 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_MultiplyByNumber.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByNumber", + "name": "Multiply By Number", "category": "Math/Quaternion", - "tooltip": "returns the Source with each element multiplied by Multiplier", - "subtitle": "Quaternion" + "tooltip": "Returns the Source with each element multiplied by Multiplier" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Multiplier", + "key": "DataInput_Multiplier", "details": { - "name": "Number: Multiplier" + "name": "Multiplier" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Negate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Negate.names index f8749b2bc3..ac5912acc4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Negate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Negate.names @@ -7,8 +7,7 @@ "details": { "name": "Negate", "category": "Math/Quaternion", - "tooltip": "returns the Source with each element negated", - "subtitle": "Quaternion" + "tooltip": "Returns the Source with each element negated" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Normalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Normalize.names index 525e1d087f..c5773851d4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Normalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Normalize.names @@ -7,8 +7,7 @@ "details": { "name": "Normalize", "category": "Math/Quaternion", - "tooltip": "returns the normalized version of Source", - "subtitle": "Quaternion" + "tooltip": "Returns the normalized version of Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotateVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotateVector3.names index 113408dc70..cbd26e5162 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotateVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotateVector3.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RotateVector3", + "name": "Rotate Vector3", "category": "Math/Quaternion", - "tooltip": "Returns a new Vector3 that is the source vector3 rotated by the given Quaternion", - "subtitle": "Quaternion" + "tooltip": "Returns a new Vector3 that is the source vector3 rotated by the given Quaternion" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Quaternion: Quaternion", + "key": "DataInput_Quaternion", "details": { - "name": "Quaternion: Quaternion" + "name": "Quaternion" } }, { - "key": "DataInput_Vector3: Vector", + "key": "DataInput_Vector", "details": { - "name": "Vector3: Vector" + "name": "Vector" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationXDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationXDegrees.names index 4abb365d80..4eb971a203 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationXDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationXDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RotationXDegrees", + "name": "Rotation X (Degrees)", "category": "Math/Quaternion", - "tooltip": "creates a rotation of Degrees around the x-axis", - "subtitle": "Quaternion" + "tooltip": "Creates a rotation of Degrees around the x-axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationYDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationYDegrees.names index 6e7ca8c4da..aada946ccc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationYDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationYDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RotationYDegrees", + "name": "Rotation Y (Degrees)", "category": "Math/Quaternion", - "tooltip": "creates a rotation of Degrees around the y-axis", - "subtitle": "Quaternion" + "tooltip": "Creates a rotation of Degrees around the y-axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationZDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationZDegrees.names index ec05a8b2fa..7a72aa9330 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationZDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_RotationZDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RotationZDegrees", + "name": "Rotation Z (Degrees)", "category": "Math/Quaternion", - "tooltip": "creates a rotation of Degrees around the z-axis", - "subtitle": "Quaternion" + "tooltip": "Creates a rotation of Degrees around the z-axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ShortestArc.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ShortestArc.names index 0e86f79092..deb69f734f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ShortestArc.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ShortestArc.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ShortestArc", + "name": "Shortest Arc", "category": "Math/Quaternion", - "tooltip": "creates a rotation representing the shortest arc between From and To", - "subtitle": "Quaternion" + "tooltip": "Creates a rotation representing the shortest arc between From and To" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: From", + "key": "DataInput_From", "details": { - "name": "Vector3: From" + "name": "From" } }, { - "key": "DataInput_Vector3: To", + "key": "DataInput_To", "details": { - "name": "Vector3: To" + "name": "To" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Slerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Slerp.names index c027414e99..a1d1dfa30b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Slerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Slerp.names @@ -7,8 +7,7 @@ "details": { "name": "Slerp", "category": "Math/Quaternion", - "tooltip": "returns the spherical linear interpolation between From and To by the amount T, the result is NOT normalized", - "subtitle": "Quaternion" + "tooltip": "Returns the spherical linear interpolation between From and To by the amount T, the result is NOT normalized" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Quaternion: From", + "key": "DataInput_From", "details": { - "name": "Quaternion: From" + "name": "From" } }, { - "key": "DataInput_Quaternion: To", + "key": "DataInput_To", "details": { - "name": "Quaternion: To" + "name": "To" } }, { - "key": "DataInput_Number: T", + "key": "DataInput_T", "details": { - "name": "Number: T" + "name": "T" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Squad.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Squad.names index 613ea8326e..c9efc06f69 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Squad.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_Squad.names @@ -7,8 +7,7 @@ "details": { "name": "Squad", "category": "Math/Quaternion", - "tooltip": "returns the quadratic interpolation, that is: Squad(From, To, In, Out, T) = Slerp(Slerp(From, Out, T), Slerp(To, In, T), 2(1 - T)T)", - "subtitle": "Quaternion" + "tooltip": "Returns the quadratic interpolation, that is: Squad(From, To, In, Out, T) = Slerp(Slerp(From, Out, T), Slerp(To, In, T), 2(1 - T)T)" }, "slots": [ { @@ -24,39 +23,39 @@ } }, { - "key": "DataInput_Quaternion: From", + "key": "DataInput_From", "details": { - "name": "Quaternion: From" + "name": "From" } }, { - "key": "DataInput_Quaternion: To", + "key": "DataInput_To", "details": { - "name": "Quaternion: To" + "name": "To" } }, { - "key": "DataInput_Quaternion: In", + "key": "DataInput_In", "details": { - "name": "Quaternion: In" + "name": "In" } }, { - "key": "DataInput_Quaternion: Out", + "key": "DataInput_Out", "details": { - "name": "Quaternion: Out" + "name": "Out" } }, { - "key": "DataInput_Number: T", + "key": "DataInput_T", "details": { - "name": "Number: T" + "name": "T" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ToAngleDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ToAngleDegrees.names index cc72bd8aa4..11efc83cb5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ToAngleDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathQuaternion_ToAngleDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ToAngleDegrees", + "name": "To Angle (Degrees)", "category": "Math/Quaternion", - "tooltip": "returns the angle of angle-axis pair that Source represents in degrees", - "subtitle": "Quaternion" + "tooltip": "Returns the angle of angle-axis pair that Source represents in degrees" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomColor.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomColor.names index e4d315b3d9..2e70823599 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomColor.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomColor.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomColor", + "name": "Random Color", "category": "Math/Random", - "tooltip": "Returns a random color [Min, Max]", - "subtitle": "Random" + "tooltip": "Returns a random color [Min, Max]" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Color: Min", + "key": "DataInput_Min", "details": { - "name": "Color: Min" + "name": "Min" } }, { - "key": "DataInput_Color: Max", + "key": "DataInput_Max", "details": { - "name": "Color: Max" + "name": "Max" } }, { - "key": "DataOutput_Result: Color", + "key": "DataOutput_Result", "details": { - "name": "Result: Color" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomGrayscale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomGrayscale.names index f8e29b2fc9..15bb0a397c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomGrayscale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomGrayscale.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomGrayscale", + "name": "Random Grayscale", "category": "Math/Random", - "tooltip": "Returns a random grayscale color between [Min, Max] intensities", - "subtitle": "Random" + "tooltip": "Returns a random grayscale color between [Min, Max] intensities" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Number: Min", + "key": "DataInput_Min", "details": { - "name": "Number: Min" + "name": "Min" } }, { - "key": "DataInput_Number: Max", + "key": "DataInput_Max", "details": { - "name": "Number: Max" + "name": "Max" } }, { - "key": "DataOutput_Result: Color", + "key": "DataOutput_Result", "details": { - "name": "Result: Color" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomInteger.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomInteger.names index 4f147c7096..4fad43953b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomInteger.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomInteger.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomInteger", + "name": "Random Integer", "category": "Math/Random", - "tooltip": "returns a random integer [Min, Max]", - "subtitle": "Random" + "tooltip": "Returns a random integer [Min, Max]" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Number: Min", + "key": "DataInput_Min", "details": { - "name": "Number: Min" + "name": "Min" } }, { - "key": "DataInput_Number: Max", + "key": "DataInput_Max", "details": { - "name": "Number: Max" + "name": "Max" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomNumber.names index 8abeca1d6b..3dfe2b70c6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomNumber.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomNumber", + "name": "Random Number", "category": "Math/Random", - "tooltip": "returns a random real number [Min, Max]", - "subtitle": "Random" + "tooltip": "Returns a random real number [Min, Max]" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Number: Min", + "key": "DataInput_Min", "details": { - "name": "Number: Min" + "name": "Min" } }, { - "key": "DataInput_Number: Max", + "key": "DataInput_Max", "details": { - "name": "Number: Max" + "name": "Max" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInArc.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInArc.names index c79e012d45..76cc80bb9a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInArc.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInArc.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointInArc", + "name": "Random Point In Arc", "category": "Math/Random", - "tooltip": "returns a random point in the specified arc", - "subtitle": "Random" + "tooltip": "Returns a random point in the specified arc" }, "slots": [ { @@ -24,39 +23,39 @@ } }, { - "key": "DataInput_Vector3: Origin", + "key": "DataInput_Origin", "details": { - "name": "Vector3: Origin" + "name": "Origin" } }, { - "key": "DataInput_Vector3: Direction", + "key": "DataInput_Direction", "details": { - "name": "Vector3: Direction" + "name": "Direction" } }, { - "key": "DataInput_Vector3: Normal", + "key": "DataInput_Normal", "details": { - "name": "Vector3: Normal" + "name": "Normal" } }, { - "key": "DataInput_Number: Radius", + "key": "DataInput_Radius", "details": { - "name": "Number: Radius" + "name": "Radius" } }, { - "key": "DataInput_Number: Angle", + "key": "DataInput_Angle", "details": { - "name": "Number: Angle" + "name": "Angle" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInBox.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInBox.names index 4be919b924..3e66186f01 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInBox.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInBox.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointInBox", + "name": "Random Point In Box", "category": "Math/Random", - "tooltip": "returns a random point in a box", - "subtitle": "Random" + "tooltip": "Returns a random point in a box" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Dimensions", + "key": "DataInput_Dimensions", "details": { - "name": "Vector3: Dimensions" + "name": "Dimensions" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCircle.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCircle.names index cbdf74516f..fa9aa601c7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCircle.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCircle.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointInCircle", + "name": "Random Point In Circle", "category": "Math/Random", - "tooltip": "returns a random point inside the area of a circle", - "subtitle": "Random" + "tooltip": "Returns a random point inside the area of a circle" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Radius", + "key": "DataInput_Radius", "details": { - "name": "Number: Radius" + "name": "Radius" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCone.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCone.names index fbec23d1e8..7b48818c3a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCone.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCone.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointInCone", + "name": "Random Point In Cone", "category": "Math/Random", - "tooltip": "returns a random point in a cone", - "subtitle": "Random" + "tooltip": "Returns a random point in a cone" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Number: Radius", + "key": "DataInput_Radius", "details": { - "name": "Number: Radius" + "name": "Radius" } }, { - "key": "DataInput_Number: Angle", + "key": "DataInput_Angle", "details": { - "name": "Number: Angle" + "name": "Angle" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCylinder.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCylinder.names index 983c867fbe..4f383fc218 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCylinder.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInCylinder.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointInCylinder", + "name": "Random Point In Cylinder", "category": "Math/Random", - "tooltip": "returns a random point in a cylinder", - "subtitle": "Random" + "tooltip": "Returns a random point in a cylinder" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Number: Radius", + "key": "DataInput_Radius", "details": { - "name": "Number: Radius" + "name": "Radius" } }, { - "key": "DataInput_Number: Height", + "key": "DataInput_Height", "details": { - "name": "Number: Height" + "name": "Height" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInEllipsoid.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInEllipsoid.names index aa5a4c9bfb..0097ccc4a5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInEllipsoid.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInEllipsoid.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointInEllipsoid", + "name": "Random Point In Ellipsoid", "category": "Math/Random", - "tooltip": "returns a random point in an ellipsoid", - "subtitle": "Random" + "tooltip": "Returns a random point in an ellipsoid" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Dimensions", + "key": "DataInput_Dimensions", "details": { - "name": "Vector3: Dimensions" + "name": "Dimensions" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSphere.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSphere.names index fa9d74c28f..ef39e9d0bf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSphere.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSphere.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointInSphere", + "name": "Random Point In Sphere", "category": "Math/Random", - "tooltip": "returns a random point in a sphere", - "subtitle": "Random" + "tooltip": "Returns a random point in a sphere" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Radius", + "key": "DataInput_Radius", "details": { - "name": "Number: Radius" + "name": "Radius" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSquare.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSquare.names index fc57d51457..9793721ef9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSquare.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInSquare.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointInSquare", + "name": "Random Point In Square", "category": "Math/Random", - "tooltip": "returns a random point in a square", - "subtitle": "Random" + "tooltip": "Returns a random point in a square" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector2: Dimensions", + "key": "DataInput_Dimensions", "details": { - "name": "Vector2: Dimensions" + "name": "Dimensions" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInWedge.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInWedge.names index 32903d94b3..89f9558c38 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInWedge.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointInWedge.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointInWedge", + "name": "Random Point In Wedge", "category": "Math/Random", - "tooltip": "returns a random point in the specified wedge", - "subtitle": "Random" + "tooltip": "Returns a random point in the specified wedge" }, "slots": [ { @@ -24,45 +23,45 @@ } }, { - "key": "DataInput_Vector3: Origin", + "key": "DataInput_Origin", "details": { - "name": "Vector3: Origin" + "name": "Origin" } }, { - "key": "DataInput_Vector3: Direction", + "key": "DataInput_Direction", "details": { - "name": "Vector3: Direction" + "name": "Direction" } }, { - "key": "DataInput_Vector3: Normal", + "key": "DataInput_Normal", "details": { - "name": "Vector3: Normal" + "name": "Normal" } }, { - "key": "DataInput_Number: Radius", + "key": "DataInput_Radius", "details": { - "name": "Number: Radius" + "name": "Radius" } }, { - "key": "DataInput_Number: Height", + "key": "DataInput_Height", "details": { - "name": "Number: Height" + "name": "Height" } }, { - "key": "DataInput_Number: Angle", + "key": "DataInput_Angle", "details": { - "name": "Number: Angle" + "name": "Angle" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnCircle.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnCircle.names index a878a99abd..428cd58136 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnCircle.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnCircle.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointOnCircle", + "name": "Random Point On Circle", "category": "Math/Random", - "tooltip": "returns a random point on the circumference of a circle", - "subtitle": "Random" + "tooltip": "Returns a random point on the circumference of a circle" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Radius", + "key": "DataInput_Radius", "details": { - "name": "Number: Radius" + "name": "Radius" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnSphere.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnSphere.names index fc35ee804a..f648814dfc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnSphere.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomPointOnSphere.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomPointOnSphere", + "name": "Random Point On Sphere", "category": "Math/Random", - "tooltip": "returns a random point on the surface of a sphere", - "subtitle": "Random" + "tooltip": "Returns a random point on the surface of a sphere" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Radius", + "key": "DataInput_Radius", "details": { - "name": "Number: Radius" + "name": "Radius" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomQuaternion.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomQuaternion.names index dbfed976d7..161d7552d4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomQuaternion.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomQuaternion.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomQuaternion", + "name": "Random Quaternion", "category": "Math/Random", - "tooltip": "returns a random quaternion", - "subtitle": "Random" + "tooltip": "Returns a random quaternion" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Number: Min", + "key": "DataInput_Min", "details": { - "name": "Number: Min" + "name": "Min" } }, { - "key": "DataInput_Number: Max", + "key": "DataInput_Max", "details": { - "name": "Number: Max" + "name": "Max" } }, { - "key": "DataOutput_Result: Quaternion", + "key": "DataOutput_Result", "details": { - "name": "Result: Quaternion" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector2.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector2.names index 20e046cf1a..c27266cdcf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector2.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector2.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomUnitVector2", + "name": "Random Unit Vector2", "category": "Math/Random", - "tooltip": "returns a random Vector2 direction", - "subtitle": "Random" + "tooltip": "Returns a random Vector2 direction" }, "slots": [ { @@ -24,9 +23,9 @@ } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector3.names index 71137cce94..2a7ca79279 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomUnitVector3.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomUnitVector3", + "name": "Random Unit Vector3", "category": "Math/Random", - "tooltip": "returns a random Vector3 direction", - "subtitle": "Random" + "tooltip": "Returns a random Vector3 direction" }, "slots": [ { @@ -24,9 +23,9 @@ } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector2.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector2.names index 5fe7c74d9c..b185b25309 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector2.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector2.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomVector2", + "name": "Random Vector2", "category": "Math/Random", - "tooltip": "returns a random Vector2", - "subtitle": "Random" + "tooltip": "Returns a random Vector2" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: Min", + "key": "DataInput_Min", "details": { - "name": "Vector2: Min" + "name": "Min" } }, { - "key": "DataInput_Vector2: Max", + "key": "DataInput_Max", "details": { - "name": "Vector2: Max" + "name": "Max" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector3.names index 29c2859b23..3be02e9d63 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector3.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomVector3", + "name": "Random Vector3", "category": "Math/Random", - "tooltip": "returns a random Vector3", - "subtitle": "Random" + "tooltip": "Returns a random Vector3" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Min", + "key": "DataInput_Min", "details": { - "name": "Vector3: Min" + "name": "Min" } }, { - "key": "DataInput_Vector3: Max", + "key": "DataInput_Max", "details": { - "name": "Vector3: Max" + "name": "Max" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector4.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector4.names index f6ec9b52c9..060a2aa54c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector4.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathRandom_RandomVector4.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RandomVector4", + "name": "Random Vector4", "category": "Math/Random", - "tooltip": "returns a random Vector4", - "subtitle": "Random" + "tooltip": "Returns a random Vector4" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector4: Min", + "key": "DataInput_Min", "details": { - "name": "Vector4: Min" + "name": "Min" } }, { - "key": "DataInput_Vector4: Max", + "key": "DataInput_Max", "details": { - "name": "Vector4: Max" + "name": "Max" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3.names index db82a0ef2c..6467b86b65 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromMatrix3x3", + "name": "From Matrix3x3", "category": "Math/Transform", - "tooltip": "returns a transform with from 3x3 matrix and with the translation set to zero", - "subtitle": "Transform" + "tooltip": "Returns a transform with from 3x3 matrix and with the translation set to zero" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Matrix3x3: Source", + "key": "DataInput_Source", "details": { - "name": "Matrix3x3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3AndTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3AndTranslation.names index a3e3c145bf..a982f27f00 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3AndTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromMatrix3x3AndTranslation.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromMatrix3x3AndTranslation", + "name": "From Matrix3x3 And Translation", "category": "Math/Transform", - "tooltip": "returns a transform from the 3x3 matrix and the translation", - "subtitle": "Transform" + "tooltip": "Returns a transform from the 3x3 matrix and the translation" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Matrix3x3: Matrix", + "key": "DataInput_Matrix", "details": { - "name": "Matrix3x3: Matrix" + "name": "Matrix" } }, { - "key": "DataInput_Vector3: Translation", + "key": "DataInput_Translation", "details": { - "name": "Vector3: Translation" + "name": "Translation" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotation.names index 3e0d34ddb7..8f9e25ac73 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotation.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromRotation", + "name": "From Rotation", "category": "Math/Transform", - "tooltip": "returns a transform from the rotation and with the translation set to zero", - "subtitle": "Transform" + "tooltip": "Returns a transform from the rotation and with the translation set to zero" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Quaternion: Source", + "key": "DataInput_Source", "details": { - "name": "Quaternion: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotationAndTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotationAndTranslation.names index 8c2711d55b..86af19524d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotationAndTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromRotationAndTranslation.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromRotationAndTranslation", + "name": "From Rotation And Translation", "category": "Math/Transform", - "tooltip": "returns a transform from the rotation and the translation", - "subtitle": "Transform" + "tooltip": "Returns a transform from the rotation and the translation" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Quaternion: Rotation", + "key": "DataInput_Rotation", "details": { - "name": "Quaternion: Rotation" + "name": "Rotation" } }, { - "key": "DataInput_Vector3: Translation", + "key": "DataInput_Translation", "details": { - "name": "Vector3: Translation" + "name": "Translation" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromScale.names index 713dcda37e..c7b3729287 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromScale.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromScale", + "name": "From Scale", "category": "Math/Transform", - "tooltip": "returns a transform which applies the specified uniform Scale, but no rotation or translation", - "subtitle": "Transform" + "tooltip": "Returns a transform which applies the specified uniform Scale, but no rotation or translation" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Scale", + "key": "DataInput_Scale", "details": { - "name": "Number: Scale" + "name": "Scale" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromTranslation.names index 296c785033..9de04cbca8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_FromTranslation.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromTranslation", + "name": "From Translation", "category": "Math/Transform", - "tooltip": "returns a translation matrix and the rotation set to zero", - "subtitle": "Transform" + "tooltip": "Returns a translation matrix and the rotation set to zero" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Translation", + "key": "DataInput_Translation", "details": { - "name": "Vector3: Translation" + "name": "Translation" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetForward.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetForward.names index 5945a1ae06..60ca484883 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetForward.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetForward.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetForward", + "name": "Get Forward", "category": "Math/Transform", - "tooltip": "returns the forward direction vector from the specified transform scaled by a given value (O3DE uses Z up, right handed)", - "subtitle": "Transform" + "tooltip": "Returns the forward direction vector from the specified transform scaled by a given value (O3DE uses Z up, right handed)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Scale", + "key": "DataInput_Scale", "details": { - "name": "Number: Scale" + "name": "Scale" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetRight.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetRight.names index 31b01e4787..9c9105301e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetRight.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetRight.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetRight", + "name": "Get Right", "category": "Math/Transform", - "tooltip": "returns the right direction vector from the specified transform scaled by a given value (O3DE uses Z up, right handed)", - "subtitle": "Transform" + "tooltip": "Returns the right direction vector from the specified transform scaled by a given value (O3DE uses Z up, right handed)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Scale", + "key": "DataInput_Scale", "details": { - "name": "Number: Scale" + "name": "Scale" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetTranslation.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetTranslation.names index 671a641f6f..657ae89af1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetTranslation.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetTranslation.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetTranslation", + "name": "Get Translation", "category": "Math/Transform", - "tooltip": "returns the translation of Source", - "subtitle": "Transform" + "tooltip": "Returns the translation of Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetUp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetUp.names index 2b6c1e7f5b..9eae139080 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetUp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_GetUp.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetUp", + "name": "Get Up", "category": "Math/Transform", - "tooltip": "returns the up direction vector from the specified transform scaled by a given value (O3DE uses Z up, right handed)", - "subtitle": "Transform" + "tooltip": "Returns the up direction vector from the specified transform scaled by a given value (O3DE uses Z up, right handed)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Scale", + "key": "DataInput_Scale", "details": { - "name": "Number: Scale" + "name": "Scale" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsClose.names index b0a4021edc..47fdde6039 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsClose.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsClose", + "name": "Is Close", "category": "Math/Transform", - "tooltip": "returns true if every row of A is within Tolerance of corresponding row in B, else false", - "subtitle": "Transform" + "tooltip": "Returns true if every row of A is within Tolerance of corresponding row in B, else false" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Transform: A", + "key": "DataInput_A", "details": { - "name": "Transform: A" + "name": "A" } }, { - "key": "DataInput_Transform: B", + "key": "DataInput_B", "details": { - "name": "Transform: B" + "name": "B" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsFinite.names index d37de79fb8..5a820ec8aa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsFinite.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsFinite", + "name": "Is Finite", "category": "Math/Transform", - "tooltip": "returns true if every row of source is finite, else false", - "subtitle": "Transform" + "tooltip": "Returns true if every row of source is finite, else false" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsOrthogonal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsOrthogonal.names index 0e711ac6fa..77f686a375 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsOrthogonal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_IsOrthogonal.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsOrthogonal", + "name": "Is Orthogonal", "category": "Math/Transform", - "tooltip": "returns true if the upper 3x3 matrix of Source is within Tolerance of orthogonal, else false", - "subtitle": "Transform" + "tooltip": "Returns true if the upper 3x3 matrix of Source is within Tolerance of orthogonal, else false" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByUniformScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByUniformScale.names index 691bd412cf..a898617aa1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByUniformScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByUniformScale.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByUniformScale", + "name": "Multiply By Uniform Scale", "category": "Math/Transform", - "tooltip": "returns Source multiplied uniformly by Scale", - "subtitle": "Transform" + "tooltip": "Returns Source multiplied uniformly by Scale" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Scale", + "key": "DataInput_Scale", "details": { - "name": "Number: Scale" + "name": "Scale" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector3.names index 18fa67ce86..e227c1ef2b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector3.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector3.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByVector3", + "name": "Multiply By Vector3", "category": "Math/Transform", - "tooltip": "returns Source post multiplied by Multiplier", - "subtitle": "Transform" + "tooltip": "Returns Source post multiplied by Multiplier" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataInput_Vector3: Multiplier", + "key": "DataInput_Multiplier", "details": { - "name": "Vector3: Multiplier" + "name": "Multiplier" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector4.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector4.names index eb22b5daa9..64820d14e1 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector4.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_MultiplyByVector4.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByVector4", + "name": "Multiply By Vector4", "category": "Math/Transform", - "tooltip": "returns Source post multiplied by Multiplier", - "subtitle": "Transform" + "tooltip": "Returns Source post multiplied by Multiplier" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataInput_Vector4: Multiplier", + "key": "DataInput_Multiplier", "details": { - "name": "Vector4: Multiplier" + "name": "Multiplier" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_Orthogonalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_Orthogonalize.names index 928a8ed811..4e803bc6b7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_Orthogonalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_Orthogonalize.names @@ -7,8 +7,7 @@ "details": { "name": "Orthogonalize", "category": "Math/Transform", - "tooltip": "returns an orthogonal matrix if the Source is almost orthogonal", - "subtitle": "Transform" + "tooltip": "Returns an orthogonal matrix if the Source is almost orthogonal" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationXDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationXDegrees.names index 5db0abd4d8..d50b4f99e4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationXDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationXDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RotationXDegrees", + "name": "Rotation X (Degrees)", "category": "Math/Transform", - "tooltip": "returns a transform representing a rotation Degrees around the X-Axis", - "subtitle": "Transform" + "tooltip": "Returns a transform representing a rotation Degrees around the X-Axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationYDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationYDegrees.names index 4861a3d6b4..2da86bdade 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationYDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationYDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RotationYDegrees", + "name": "Rotation Y (Degrees)", "category": "Math/Transform", - "tooltip": "returns a transform representing a rotation Degrees around the Y-Axis", - "subtitle": "Transform" + "tooltip": "Returns a transform representing a rotation Degrees around the Y-Axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationZDegrees.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationZDegrees.names index 78d4211f65..75a0e7d1ec 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationZDegrees.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_RotationZDegrees.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "RotationZDegrees", + "name": "Rotation Z (Degrees)", "category": "Math/Transform", - "tooltip": "returns a transform representing a rotation Degrees around the Z-Axis", - "subtitle": "Transform" + "tooltip": "Returns a transform representing a rotation Degrees around the Z-Axis" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Degrees", + "key": "DataInput_Degrees", "details": { - "name": "Number: Degrees" + "name": "Degrees" } }, { - "key": "DataOutput_Result: Transform", + "key": "DataOutput_Result", "details": { - "name": "Result: Transform" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_ToScale.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_ToScale.names index 47f28fd9af..3e9da773e0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_ToScale.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathTransform_ToScale.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ToScale", + "name": "To Scale", "category": "Math/Transform", - "tooltip": "returns the uniform scale of the Source", - "subtitle": "Transform" + "tooltip": "Returns the uniform scale of the Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Transform: Source", + "key": "DataInput_Source", "details": { - "name": "Transform: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Absolute.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Absolute.names index bd5e3a88f6..8eb626b066 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Absolute.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Absolute.names @@ -7,8 +7,7 @@ "details": { "name": "Absolute", "category": "Math/Vector2", - "tooltip": "returns a vector with the absolute values of the elements of the source", - "subtitle": "Vector2" + "tooltip": "Returns a vector with the absolute values of the elements of the source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Angle.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Angle.names index 76f0626c0c..d70cb4b898 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Angle.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Angle.names @@ -7,8 +7,7 @@ "details": { "name": "Angle", "category": "Math/Vector2", - "tooltip": "returns a unit length vector from an angle in radians", - "subtitle": "Vector2" + "tooltip": "Returns a unit length vector from an angle in radians" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Number: Angle", + "key": "DataInput_Angle", "details": { - "name": "Number: Angle" + "name": "Angle" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Clamp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Clamp.names index 718f497f51..970b1647a8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Clamp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Clamp.names @@ -7,8 +7,7 @@ "details": { "name": "Clamp", "category": "Math/Vector2", - "tooltip": "returns vector clamped to [min, max] and equal to source if possible", - "subtitle": "Vector2" + "tooltip": "Returns vector clamped to [min, max] and equal to source if possible" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataInput_Vector2: Min", + "key": "DataInput_Min", "details": { - "name": "Vector2: Min" + "name": "Min" } }, { - "key": "DataInput_Vector2: Max", + "key": "DataInput_Max", "details": { - "name": "Vector2: Max" + "name": "Max" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DirectionTo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DirectionTo.names index f6499bc67c..53b667f5d4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DirectionTo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DirectionTo.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "DirectionTo", + "name": "Direction To", "category": "Math/Vector2", - "tooltip": "Returns a direction vector between two points and the distance between them, by default the direction will be normalized, but it may be optionally scaled using the Scale parameter if different from 1.0", - "subtitle": "Vector2" + "tooltip": "Returns a direction vector between two points and the distance between them, by default the direction will be normalized, but it may be optionally scaled using the Scale parameter if different from 1.0" }, "slots": [ { @@ -24,33 +23,27 @@ } }, { - "key": "DataInput_Vector2: From", + "key": "DataInput_From", "details": { - "name": "Vector2: From" + "name": "From" } }, { - "key": "DataInput_Vector2: To", + "key": "DataInput_To", "details": { - "name": "Vector2: To" + "name": "To" } }, { - "key": "DataInput_Number: Scale", + "key": "DataInput_Scale", "details": { - "name": "Number: Scale" + "name": "Scale" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" - } - }, - { - "key": "DataOutput_Result: Number", - "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Distance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Distance.names index ac09369515..81c7caac36 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Distance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Distance.names @@ -7,8 +7,7 @@ "details": { "name": "Distance", "category": "Math/Vector2", - "tooltip": "returns the distance from B to A, that is the magnitude of the vector (A - B)", - "subtitle": "Vector2" + "tooltip": "Returns the distance from B to A, that is the magnitude of the vector (A - B)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: A", + "key": "DataInput_A", "details": { - "name": "Vector2: A" + "name": "A" } }, { - "key": "DataInput_Vector2: B", + "key": "DataInput_B", "details": { - "name": "Vector2: B" + "name": "B" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DistanceSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DistanceSquared.names index 88616d077a..d8282d40d0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DistanceSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_DistanceSquared.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "DistanceSquared", + "name": "Distance Squared", "category": "Math/Vector2", - "tooltip": "returns the distance squared from B to A, (generally faster than the actual distance if only needed for comparison)", - "subtitle": "Vector2" + "tooltip": "Returns the distance squared from B to A, (generally faster than the actual distance if only needed for comparison)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: A", + "key": "DataInput_A", "details": { - "name": "Vector2: A" + "name": "A" } }, { - "key": "DataInput_Vector2: B", + "key": "DataInput_B", "details": { - "name": "Vector2: B" + "name": "B" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Dot.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Dot.names index f0490c0224..21a9836da5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Dot.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Dot.names @@ -7,8 +7,7 @@ "details": { "name": "Dot", "category": "Math/Vector2", - "tooltip": "returns the vector dot product of A dot B", - "subtitle": "Vector2" + "tooltip": "Returns the vector dot product of A dot B" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: A", + "key": "DataInput_A", "details": { - "name": "Vector2: A" + "name": "A" } }, { - "key": "DataInput_Vector2: B", + "key": "DataInput_B", "details": { - "name": "Vector2: B" + "name": "B" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_FromValues.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_FromValues.names index 7ada76f810..1825d3b69f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_FromValues.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_FromValues.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromValues", + "name": "From Values", "category": "Math/Vector2", - "tooltip": "returns a vector from elements", - "subtitle": "Vector2" + "tooltip": "Returns a vector from elements" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Number: X", + "key": "DataInput_X", "details": { - "name": "Number: X" + "name": "X" } }, { - "key": "DataInput_Number: Y", + "key": "DataInput_Y", "details": { - "name": "Number: Y" + "name": "Y" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_GetElement.names index c85cfe67af..4abdac379a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_GetElement.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetElement", + "name": "Get Element", "category": "Math/Vector2", - "tooltip": "returns the element corresponding to the index (0 -> x) (1 -> y)", - "subtitle": "Vector2" + "tooltip": "Returns the element corresponding to the index (0 -> x) (1 -> y)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Index", + "key": "DataInput_Index", "details": { - "name": "Number: Index" + "name": "Index" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsClose.names index 38b1f446c9..30d0f9eab6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsClose.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsClose", + "name": "Is Close", "category": "Math/Vector2", - "tooltip": "returns true if the difference between A and B is less than tolerance, else false", - "subtitle": "Vector2" + "tooltip": "Returns true if the difference between A and B is less than tolerance, else false" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector2: A", + "key": "DataInput_A", "details": { - "name": "Vector2: A" + "name": "A" } }, { - "key": "DataInput_Vector2: B", + "key": "DataInput_B", "details": { - "name": "Vector2: B" + "name": "B" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsFinite.names index b56cbc74e1..d170de9066 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsFinite.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsFinite", + "name": "Is Finite", "category": "Math/Vector2", - "tooltip": "returns true if every element in the source is finite, else false", - "subtitle": "Vector2" + "tooltip": "Returns true if every element in the source is finite, else false" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsNormalized.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsNormalized.names index 7a737fa8e1..aecdcde55d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsNormalized.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsNormalized.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsNormalized", + "name": "Is Normalized", "category": "Math/Vector2", - "tooltip": "returns true if the length of the source is within tolerance of 1.0, else false", - "subtitle": "Vector2" + "tooltip": "Returns true if the length of the source is within tolerance of 1.0, else false" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsZero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsZero.names index 07fc13fbc6..d0869fffd0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsZero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_IsZero.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsZero", + "name": "Is Zero", "category": "Math/Vector2", - "tooltip": "returns true if A is within tolerance of the zero vector, else false", - "subtitle": "Vector2" + "tooltip": "Returns true if A is within tolerance of the zero vector, else false" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Length.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Length.names index c6f78e8083..99e7922e75 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Length.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Length.names @@ -7,8 +7,7 @@ "details": { "name": "Length", "category": "Math/Vector2", - "tooltip": "returns the magnitude of source", - "subtitle": "Vector2" + "tooltip": "Returns the magnitude of source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_LengthSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_LengthSquared.names index 2d70c7e4e4..6ff64af10f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_LengthSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_LengthSquared.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "LengthSquared", + "name": "Length Squared", "category": "Math/Vector2", - "tooltip": "returns the magnitude squared of the source, generally faster than getting the exact length", - "subtitle": "Vector2" + "tooltip": "Returns the magnitude squared of the source, generally faster than getting the exact length" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Lerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Lerp.names index 296c05bdf5..78bf3b0d6f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Lerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Lerp.names @@ -7,8 +7,7 @@ "details": { "name": "Lerp", "category": "Math/Vector2", - "tooltip": "returns the linear interpolation (From + ((To - From) * T)", - "subtitle": "Vector2" + "tooltip": "Returns the linear interpolation (From + ((To - From) * T)" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector2: From", + "key": "DataInput_From", "details": { - "name": "Vector2: From" + "name": "From" } }, { - "key": "DataInput_Vector2: To", + "key": "DataInput_To", "details": { - "name": "Vector2: To" + "name": "To" } }, { - "key": "DataInput_Number: T", + "key": "DataInput_T", "details": { - "name": "Number: T" + "name": "T" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Max.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Max.names index 52b3489c28..6b906d80bf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Max.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Max.names @@ -7,8 +7,7 @@ "details": { "name": "Max", "category": "Math/Vector2", - "tooltip": "returns the vector (max(A.x, B.x), max(A.y, B.y))", - "subtitle": "Vector2" + "tooltip": "Returns the vector (max(A.x, B.x), max(A.y, B.y))" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: A", + "key": "DataInput_A", "details": { - "name": "Vector2: A" + "name": "A" } }, { - "key": "DataInput_Vector2: B", + "key": "DataInput_B", "details": { - "name": "Vector2: B" + "name": "B" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Min.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Min.names index 33585a0662..bc50faf138 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Min.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Min.names @@ -7,8 +7,7 @@ "details": { "name": "Min", "category": "Math/Vector2", - "tooltip": "returns the vector (min(A.x, B.x), min(A.y, B.y))", - "subtitle": "Vector2" + "tooltip": "Returns the vector (min(A.x, B.x), min(A.y, B.y))" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: A", + "key": "DataInput_A", "details": { - "name": "Vector2: A" + "name": "A" } }, { - "key": "DataInput_Vector2: B", + "key": "DataInput_B", "details": { - "name": "Vector2: B" + "name": "B" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_MultiplyByNumber.names index 13a43e0593..14e227c51d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_MultiplyByNumber.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByNumber", + "name": "Multiply By Number", "category": "Math/Vector2", - "tooltip": "returns the vector Source with each element multiplied by Multiplier", - "subtitle": "Vector2" + "tooltip": "Returns the vector Source with each element multiplied by Multiplier" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Multiplier", + "key": "DataInput_Multiplier", "details": { - "name": "Number: Multiplier" + "name": "Multiplier" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Negate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Negate.names index 79a5e7c6e2..d0501ee1b3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Negate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Negate.names @@ -7,8 +7,7 @@ "details": { "name": "Negate", "category": "Math/Vector2", - "tooltip": "returns the vector Source with each element multiplied by -1", - "subtitle": "Vector2" + "tooltip": "Returns the vector Source with each element multiplied by -1" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Normalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Normalize.names index 9b7ba9a72e..a8c9e0ef3b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Normalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Normalize.names @@ -7,8 +7,7 @@ "details": { "name": "Normalize", "category": "Math/Vector2", - "tooltip": "returns a unit length vector in the same direction as the source, or (1,0,0) if the source length is too small", - "subtitle": "Vector2" + "tooltip": "Returns a unit length vector in the same direction as the source, or (1,0,0) if the source length is too small" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Project.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Project.names index fbf04133a8..e6a60b35aa 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Project.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Project.names @@ -7,8 +7,7 @@ "details": { "name": "Project", "category": "Math/Vector2", - "tooltip": "returns the vector of A projected onto B, (Dot(A, B)/(Dot(B, B)) * B", - "subtitle": "Vector2" + "tooltip": "Returns the vector of A projected onto B, (Dot(A, B)/(Dot(B, B)) * B" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: A", + "key": "DataInput_A", "details": { - "name": "Vector2: A" + "name": "A" } }, { - "key": "DataInput_Vector2: B", + "key": "DataInput_B", "details": { - "name": "Vector2: B" + "name": "B" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetX.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetX.names index 2d055c4d63..001c062eb8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetX.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetX.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "SetX", + "name": "Set X", "category": "Math/Vector2", - "tooltip": "returns a the vector(X, Source.Y)", - "subtitle": "Vector2" + "tooltip": "Returns a the vector(X, Source.Y)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataInput_Number: X", + "key": "DataInput_X", "details": { - "name": "Number: X" + "name": "X" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetY.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetY.names index 74e2a7197c..cb0655fafc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetY.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_SetY.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "SetY", + "name": "Set Y", "category": "Math/Vector2", - "tooltip": "returns a the vector(Source.X, Y)", - "subtitle": "Vector2" + "tooltip": "Returns a the vector(Source.X, Y)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Y", + "key": "DataInput_Y", "details": { - "name": "Number: Y" + "name": "Y" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Slerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Slerp.names index 703f0e858b..d6e29b7a5f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Slerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_Slerp.names @@ -7,8 +7,7 @@ "details": { "name": "Slerp", "category": "Math/Vector2", - "tooltip": "returns a vector that is the spherical linear interpolation T, between From and To", - "subtitle": "Vector2" + "tooltip": "Returns a vector that is the spherical linear interpolation T, between From and To" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector2: From", + "key": "DataInput_From", "details": { - "name": "Vector2: From" + "name": "From" } }, { - "key": "DataInput_Vector2: To", + "key": "DataInput_To", "details": { - "name": "Vector2: To" + "name": "To" } }, { - "key": "DataInput_Number: T", + "key": "DataInput_T", "details": { - "name": "Number: T" + "name": "T" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_ToPerpendicular.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_ToPerpendicular.names index 2e4ae9369c..5ea65c816c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_ToPerpendicular.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector2_ToPerpendicular.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "ToPerpendicular", + "name": "To Perpendicular", "category": "Math/Vector2", - "tooltip": "returns the vector (-Source.y, Source.x), a 90 degree, positive rotation", - "subtitle": "Vector2" + "tooltip": "Returns the vector (-Source.y, Source.x), a 90 degree, positive rotation" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector2: Source", + "key": "DataInput_Source", "details": { - "name": "Vector2: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector2", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector2" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Absolute.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Absolute.names index 6253641670..dbaeb967a2 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Absolute.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Absolute.names @@ -7,8 +7,7 @@ "details": { "name": "Absolute", "category": "Math/Vector3", - "tooltip": "returns a vector with the absolute values of the elements of the source", - "subtitle": "Vector3" + "tooltip": "Returns a vector with the absolute values of the elements of the source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_BuildTangentBasis.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_BuildTangentBasis.names index 3d8de21436..05aec1da52 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_BuildTangentBasis.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_BuildTangentBasis.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "BuildTangentBasis", + "name": "Build Tangent Basis", "category": "Math/Vector3", - "tooltip": "returns a tangent basis from the normal", - "subtitle": "Vector3" + "tooltip": "Returns a tangent basis from the normal" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Normal", + "key": "DataInput_Normal", "details": { - "name": "Vector3: Normal" + "name": "Normal" } }, { - "key": "DataOutput_Tangent: Vector3", + "key": "DataOutput_Tangent", "details": { - "name": "Tangent: Vector3" + "name": "Tangent" } }, { - "key": "DataOutput_Bitangent: Vector3", + "key": "DataOutput_Bitangent", "details": { - "name": "Bitangent: Vector3" + "name": "Bitangent" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Clamp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Clamp.names index 6f1842a151..28e5747493 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Clamp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Clamp.names @@ -7,8 +7,7 @@ "details": { "name": "Clamp", "category": "Math/Vector3", - "tooltip": "returns vector clamped to [min, max] and equal to source if possible", - "subtitle": "Vector3" + "tooltip": "Returns vector clamped to [min, max] and equal to source if possible" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataInput_Vector3: Min", + "key": "DataInput_Min", "details": { - "name": "Vector3: Min" + "name": "Min" } }, { - "key": "DataInput_Vector3: Max", + "key": "DataInput_Max", "details": { - "name": "Vector3: Max" + "name": "Max" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Cross.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Cross.names index ed9184dd39..64f6d9f992 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Cross.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Cross.names @@ -7,8 +7,7 @@ "details": { "name": "Cross", "category": "Math/Vector3", - "tooltip": "returns the vector cross product of A X B", - "subtitle": "Vector3" + "tooltip": "Returns the vector cross product of A X B" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: A", + "key": "DataInput_A", "details": { - "name": "Vector3: A" + "name": "A" } }, { - "key": "DataInput_Vector3: B", + "key": "DataInput_B", "details": { - "name": "Vector3: B" + "name": "B" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DirectionTo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DirectionTo.names index 3e1a50ff1b..b0e542b842 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DirectionTo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DirectionTo.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "DirectionTo", + "name": "Direction To", "category": "Math/Vector3", - "tooltip": "Returns a direction vector between two points and the distance between them, by default the direction will be normalized, but it may be optionally scaled using the Scale parameter if different from 1.0", - "subtitle": "Vector3" + "tooltip": "Returns a direction vector between two points and the distance between them, by default the direction will be normalized, but it may be optionally scaled using the Scale parameter if different from 1.0" }, "slots": [ { @@ -24,33 +23,27 @@ } }, { - "key": "DataInput_Vector3: From", + "key": "DataInput_From", "details": { - "name": "Vector3: From" + "name": "From" } }, { - "key": "DataInput_Vector3: To", + "key": "DataInput_To", "details": { - "name": "Vector3: To" + "name": "To" } }, { - "key": "DataInput_Number: Scale", + "key": "DataInput_Scale", "details": { - "name": "Number: Scale" + "name": "Scale" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" - } - }, - { - "key": "DataOutput_Result: Number", - "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Distance.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Distance.names index 255663090c..1c8df2ccc5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Distance.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Distance.names @@ -7,8 +7,7 @@ "details": { "name": "Distance", "category": "Math/Vector3", - "tooltip": "returns the distance from B to A, that is the magnitude of the vector (A - B)", - "subtitle": "Vector3" + "tooltip": "Returns the distance from B to A, that is the magnitude of the vector (A - B)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: A", + "key": "DataInput_A", "details": { - "name": "Vector3: A" + "name": "A" } }, { - "key": "DataInput_Vector3: B", + "key": "DataInput_B", "details": { - "name": "Vector3: B" + "name": "B" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DistanceSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DistanceSquared.names index 12c52b7efe..5e33d91136 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DistanceSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_DistanceSquared.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "DistanceSquared", + "name": "Distance Squared", "category": "Math/Vector3", - "tooltip": "returns the distance squared from B to A, (generally faster than the actual distance if only needed for comparison)", - "subtitle": "Vector3" + "tooltip": "Returns the distance squared from B to A, (generally faster than the actual distance if only needed for comparison)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: A", + "key": "DataInput_A", "details": { - "name": "Vector3: A" + "name": "A" } }, { - "key": "DataInput_Vector3: B", + "key": "DataInput_B", "details": { - "name": "Vector3: B" + "name": "B" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Dot.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Dot.names index 7e811e9b0e..06a80b4078 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Dot.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Dot.names @@ -7,8 +7,7 @@ "details": { "name": "Dot", "category": "Math/Vector3", - "tooltip": "returns the vector dot product of A dot B", - "subtitle": "Vector3" + "tooltip": "Returns the vector dot product of A dot B" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: A", + "key": "DataInput_A", "details": { - "name": "Vector3: A" + "name": "A" } }, { - "key": "DataInput_Vector3: B", + "key": "DataInput_B", "details": { - "name": "Vector3: B" + "name": "B" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_FromValues.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_FromValues.names index ed2092f2f6..42a47d5fcf 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_FromValues.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_FromValues.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromValues", + "name": "From Values", "category": "Math/Vector3", - "tooltip": "returns a vector from elements", - "subtitle": "Vector3" + "tooltip": "Returns a vector from elements" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Number: X", + "key": "DataInput_X", "details": { - "name": "Number: X" + "name": "X" } }, { - "key": "DataInput_Number: Y", + "key": "DataInput_Y", "details": { - "name": "Number: Y" + "name": "Y" } }, { - "key": "DataInput_Number: Z", + "key": "DataInput_Z", "details": { - "name": "Number: Z" + "name": "Z" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_GetElement.names index 6b2375e69c..89d4c218e4 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_GetElement.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetElement", + "name": "Get Element", "category": "Math/Vector3", - "tooltip": "returns the element corresponding to the index (0 -> x) (1 -> y) (2 -> z)", - "subtitle": "Vector3" + "tooltip": "Returns the element corresponding to the index (0 -> x) (1 -> y) (2 -> z)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Index", + "key": "DataInput_Index", "details": { - "name": "Number: Index" + "name": "Index" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsClose.names index 728ff6f9f8..2eef451673 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsClose.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsClose", + "name": "Is Close", "category": "Math/Vector3", - "tooltip": "returns true if the difference between A and B is less than tolerance, else false", - "subtitle": "Vector3" + "tooltip": "Returns true if the difference between A and B is less than tolerance, else false" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector3: A", + "key": "DataInput_A", "details": { - "name": "Vector3: A" + "name": "A" } }, { - "key": "DataInput_Vector3: B", + "key": "DataInput_B", "details": { - "name": "Vector3: B" + "name": "B" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsFinite.names index 2cd0e9b94a..c1e14e8db0 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsFinite.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsFinite", + "name": "Is Finite", "category": "Math/Vector3", - "tooltip": "returns true if every element in the source is finite, else false", - "subtitle": "Vector3" + "tooltip": "Returns true if every element in the source is finite, else false" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsNormalized.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsNormalized.names index 4847d3096e..35f2e6421a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsNormalized.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsNormalized.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsNormalized", + "name": "Is Normalized", "category": "Math/Vector3", - "tooltip": "returns true if the length of the source is within tolerance of 1.0, else false", - "subtitle": "Vector3" + "tooltip": "Returns true if the length of the source is within tolerance of 1.0, else false" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsPerpendicular.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsPerpendicular.names index 245b7b2e32..82c3388632 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsPerpendicular.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsPerpendicular.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsPerpendicular", + "name": "Is Perpendicular", "category": "Math/Vector3", - "tooltip": "returns true if A is within tolerance of perpendicular with B, that is if Dot(A, B) < tolerance, else false", - "subtitle": "Vector3" + "tooltip": "Returns true if A is within tolerance of perpendicular with B, that is if Dot(A, B) < tolerance, else false" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector3: A", + "key": "DataInput_A", "details": { - "name": "Vector3: A" + "name": "A" } }, { - "key": "DataInput_Vector3: B", + "key": "DataInput_B", "details": { - "name": "Vector3: B" + "name": "B" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsZero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsZero.names index f7adf9fb80..0d80b3395c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsZero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_IsZero.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsZero", + "name": "Is Zero", "category": "Math/Vector3", - "tooltip": "returns true if A is within tolerance of the zero vector, else false", - "subtitle": "Vector3" + "tooltip": "Returns true if A is within tolerance of the zero vector, else false" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Length.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Length.names index 2227256047..4c23c9cbbd 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Length.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Length.names @@ -7,8 +7,7 @@ "details": { "name": "Length", "category": "Math/Vector3", - "tooltip": "returns the magnitude of source", - "subtitle": "Vector3" + "tooltip": "Returns the magnitude of source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthReciprocal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthReciprocal.names index dfeffe512a..be22489f6d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthReciprocal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthReciprocal.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "LengthReciprocal", + "name": "Length Reciprocal", "category": "Math/Vector3", - "tooltip": "returns the 1 / magnitude of the source", - "subtitle": "Vector3" + "tooltip": "Returns the 1 / magnitude of the source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthSquared.names index dd6c8162c1..4c6d79d1e5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_LengthSquared.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "LengthSquared", + "name": "Length Squared", "category": "Math/Vector3", - "tooltip": "returns the magnitude squared of the source, generally faster than getting the exact length", - "subtitle": "Vector3" + "tooltip": "Returns the magnitude squared of the source, generally faster than getting the exact length" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Lerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Lerp.names index 9e28229b8c..5d0b9792c9 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Lerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Lerp.names @@ -7,8 +7,7 @@ "details": { "name": "Lerp", "category": "Math/Vector3", - "tooltip": "returns the linear interpolation (From + ((To - From) * T)", - "subtitle": "Vector3" + "tooltip": "Returns the linear interpolation (From + ((To - From) * T)" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector3: From", + "key": "DataInput_From", "details": { - "name": "Vector3: From" + "name": "From" } }, { - "key": "DataInput_Vector3: To", + "key": "DataInput_To", "details": { - "name": "Vector3: To" + "name": "To" } }, { - "key": "DataInput_Number: T", + "key": "DataInput_T", "details": { - "name": "Number: T" + "name": "T" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Max.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Max.names index 00e3e0ff01..38acf91419 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Max.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Max.names @@ -7,8 +7,7 @@ "details": { "name": "Max", "category": "Math/Vector3", - "tooltip": "returns the vector (max(A.x, B.x), max(A.y, B.y), max(A.z, B.z))", - "subtitle": "Vector3" + "tooltip": "Returns the vector (max(A.x, B.x), max(A.y, B.y), max(A.z, B.z))" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: A", + "key": "DataInput_A", "details": { - "name": "Vector3: A" + "name": "A" } }, { - "key": "DataInput_Vector3: B", + "key": "DataInput_B", "details": { - "name": "Vector3: B" + "name": "B" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Min.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Min.names index a8fbd3eacf..1a47a31834 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Min.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Min.names @@ -7,8 +7,7 @@ "details": { "name": "Min", "category": "Math/Vector3", - "tooltip": "returns the vector (min(A.x, B.x), min(A.y, B.y), min(A.z, B.z))", - "subtitle": "Vector3" + "tooltip": "Returns the vector (min(A.x, B.x), min(A.y, B.y), min(A.z, B.z))" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: A", + "key": "DataInput_A", "details": { - "name": "Vector3: A" + "name": "A" } }, { - "key": "DataInput_Vector3: B", + "key": "DataInput_B", "details": { - "name": "Vector3: B" + "name": "B" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_MultiplyByNumber.names index ca55548138..95e2710e33 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_MultiplyByNumber.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByNumber", + "name": "Multiply By Number", "category": "Math/Vector3", - "tooltip": "returns the vector Source with each element multiplied by Multipler", - "subtitle": "Vector3" + "tooltip": "Returns the vector Source with each element multiplied by Multipler" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Multiplier", + "key": "DataInput_Multiplier", "details": { - "name": "Number: Multiplier" + "name": "Multiplier" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Negate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Negate.names index 2924facb4f..e578384975 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Negate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Negate.names @@ -7,8 +7,7 @@ "details": { "name": "Negate", "category": "Math/Vector3", - "tooltip": "returns the vector Source with each element multiplied by -1", - "subtitle": "Vector3" + "tooltip": "Returns the vector Source with each element multiplied by -1" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Normalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Normalize.names index 26a7c65467..cf0a181d0b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Normalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Normalize.names @@ -7,8 +7,7 @@ "details": { "name": "Normalize", "category": "Math/Vector3", - "tooltip": "returns a unit length vector in the same direction as the source, or (1,0,0) if the source length is too small", - "subtitle": "Vector3" + "tooltip": "Returns a unit length vector in the same direction as the source, or (1,0,0) if the source length is too small" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Project.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Project.names index b161686bfb..80df59908d 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Project.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Project.names @@ -7,8 +7,7 @@ "details": { "name": "Project", "category": "Math/Vector3", - "tooltip": "returns the vector of A projected onto B, (Dot(A, B)/(Dot(B, B)) * B", - "subtitle": "Vector3" + "tooltip": "Returns the vector of A projected onto B, (Dot(A, B)/(Dot(B, B)) * B" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: A", + "key": "DataInput_A", "details": { - "name": "Vector3: A" + "name": "A" } }, { - "key": "DataInput_Vector3: B", + "key": "DataInput_B", "details": { - "name": "Vector3: B" + "name": "B" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Reciprocal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Reciprocal.names index 0bafc4373f..dd3de8c146 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Reciprocal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Reciprocal.names @@ -7,8 +7,7 @@ "details": { "name": "Reciprocal", "category": "Math/Vector3", - "tooltip": "returns the vector (1/x, 1/y, 1/z) with elements from Source", - "subtitle": "Vector3" + "tooltip": "Returns the vector (1/x, 1/y, 1/z) with elements from Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetX.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetX.names index ee8c305f52..47e3273302 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetX.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetX.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "SetX", + "name": "Set X", "category": "Math/Vector3", - "tooltip": "returns a the vector(X, Source.Y, Source.Z)", - "subtitle": "Vector3" + "tooltip": "Returns a the vector(X, Source.Y, Source.Z)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: X", + "key": "DataInput_X", "details": { - "name": "Number: X" + "name": "X" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetY.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetY.names index b9c40fc2d0..8456f9de21 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetY.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetY.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "SetY", + "name": "Set Y", "category": "Math/Vector3", - "tooltip": "returns a the vector(Source.X, Y, Source.Z)", - "subtitle": "Vector3" + "tooltip": "Returns a the vector(Source.X, Y, Source.Z)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Y", + "key": "DataInput_Y", "details": { - "name": "Number: Y" + "name": "Y" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetZ.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetZ.names index 87913290bc..a92a4e5a7f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetZ.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_SetZ.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "SetZ", + "name": "Set Z", "category": "Math/Vector3", - "tooltip": "returns a the vector(Source.X, Source.Y, Z)", - "subtitle": "Vector3" + "tooltip": "Returns a the vector(Source.X, Source.Y, Z)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector3: Source", + "key": "DataInput_Source", "details": { - "name": "Vector3: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Z", + "key": "DataInput_Z", "details": { - "name": "Number: Z" + "name": "Z" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Slerp.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Slerp.names index 9c219f2908..09251d7f13 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Slerp.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector3_Slerp.names @@ -7,8 +7,7 @@ "details": { "name": "Slerp", "category": "Math/Vector3", - "tooltip": "returns a vector that is the spherical linear interpolation T, between From and To", - "subtitle": "Vector3" + "tooltip": "Returns a vector that is the spherical linear interpolation T, between From and To" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector3: From", + "key": "DataInput_From", "details": { - "name": "Vector3: From" + "name": "From" } }, { - "key": "DataInput_Vector3: To", + "key": "DataInput_To", "details": { - "name": "Vector3: To" + "name": "To" } }, { - "key": "DataInput_Number: T", + "key": "DataInput_T", "details": { - "name": "Number: T" + "name": "T" } }, { - "key": "DataOutput_Result: Vector3", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector3" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Absolute.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Absolute.names index 98d0326bda..5ea08e0e68 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Absolute.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Absolute.names @@ -7,8 +7,7 @@ "details": { "name": "Absolute", "category": "Math/Vector4", - "tooltip": "returns a vector with the absolute values of the elements of the source", - "subtitle": "Vector4" + "tooltip": "Returns a vector with the absolute values of the elements of the source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_DirectionTo.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_DirectionTo.names index 87729c3639..d1fdcbe653 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_DirectionTo.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_DirectionTo.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "DirectionTo", + "name": "Direction To", "category": "Math/Vector4", - "tooltip": "Returns a direction vector between two points and the distance between them, by default the direction will be normalized, but it may be optionally scaled using the Scale parameter if different from 1.0", - "subtitle": "Vector4" + "tooltip": "Returns a direction vector between two points and the distance between them, by default the direction will be normalized, but it may be optionally scaled using the Scale parameter if different from 1.0" }, "slots": [ { @@ -24,33 +23,27 @@ } }, { - "key": "DataInput_Vector4: From", + "key": "DataInput_From", "details": { - "name": "Vector4: From" + "name": "From" } }, { - "key": "DataInput_Vector4: To", + "key": "DataInput_To", "details": { - "name": "Vector4: To" + "name": "To" } }, { - "key": "DataInput_Number: Scale", + "key": "DataInput_Scale", "details": { - "name": "Number: Scale" + "name": "Scale" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" - } - }, - { - "key": "DataOutput_Result: Number", - "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Dot.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Dot.names index 077a4327bb..59dfbbc61f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Dot.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Dot.names @@ -7,8 +7,7 @@ "details": { "name": "Dot", "category": "Math/Vector4", - "tooltip": "returns the vector dot product of A dot B", - "subtitle": "Vector4" + "tooltip": "Returns the vector dot product of A dot B" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector4: A", + "key": "DataInput_A", "details": { - "name": "Vector4: A" + "name": "A" } }, { - "key": "DataInput_Vector4: B", + "key": "DataInput_B", "details": { - "name": "Vector4: B" + "name": "B" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_FromValues.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_FromValues.names index 5afa061714..73f6088330 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_FromValues.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_FromValues.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "FromValues", + "name": "From Values", "category": "Math/Vector4", - "tooltip": "returns a vector from elements", - "subtitle": "Vector4" + "tooltip": "Returns a vector from elements" }, "slots": [ { @@ -24,33 +23,33 @@ } }, { - "key": "DataInput_Number: X", + "key": "DataInput_X", "details": { - "name": "Number: X" + "name": "X" } }, { - "key": "DataInput_Number: Y", + "key": "DataInput_Y", "details": { - "name": "Number: Y" + "name": "Y" } }, { - "key": "DataInput_Number: Z", + "key": "DataInput_Z", "details": { - "name": "Number: Z" + "name": "Z" } }, { - "key": "DataInput_Number: W", + "key": "DataInput_W", "details": { - "name": "Number: W" + "name": "W" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_GetElement.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_GetElement.names index 34e3294209..7b37a541e7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_GetElement.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_GetElement.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "GetElement", + "name": "Get Element", "category": "Math/Vector4", - "tooltip": "returns the element corresponding to the index (0 -> x) (1 -> y) (2 -> z) (3 -> w)", - "subtitle": "Vector4" + "tooltip": "Returns the element corresponding to the index (0 -> x) (1 -> y) (2 -> z) (3 -> w)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Index", + "key": "DataInput_Index", "details": { - "name": "Number: Index" + "name": "Index" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsClose.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsClose.names index a8f13b5e45..583d85d028 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsClose.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsClose.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsClose", + "name": "Is Close", "category": "Math/Vector4", - "tooltip": "returns true if the difference between A and B is less than tolerance, else false", - "subtitle": "Vector4" + "tooltip": "Returns true if the difference between A and B is less than tolerance, else false" }, "slots": [ { @@ -24,27 +23,27 @@ } }, { - "key": "DataInput_Vector4: A", + "key": "DataInput_A", "details": { - "name": "Vector4: A" + "name": "A" } }, { - "key": "DataInput_Vector4: B", + "key": "DataInput_B", "details": { - "name": "Vector4: B" + "name": "B" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsFinite.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsFinite.names index 8f28660e4a..603a38f9c8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsFinite.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsFinite.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsFinite", + "name": "Is Finite", "category": "Math/Vector4", - "tooltip": "returns true if every element in the source is finite, else false", - "subtitle": "Vector4" + "tooltip": "Returns true if every element in the source is finite, else false" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsNormalized.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsNormalized.names index e35435903c..7ae2964f40 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsNormalized.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsNormalized.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsNormalized", + "name": "Is Normalized", "category": "Math/Vector4", - "tooltip": "returns true if the length of the source is within tolerance of 1.0, else false", - "subtitle": "Vector4" + "tooltip": "Returns true if the length of the source is within tolerance of 1.0, else false" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsZero.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsZero.names index 6a932da5f7..a1bbb08d27 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsZero.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_IsZero.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "IsZero", + "name": "Is Zero", "category": "Math/Vector4", - "tooltip": "returns true if A is within tolerance of the zero vector, else false", - "subtitle": "Vector4" + "tooltip": "Returns true if A is within tolerance of the zero vector, else false" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Tolerance", + "key": "DataInput_Tolerance", "details": { - "name": "Number: Tolerance" + "name": "Tolerance" } }, { - "key": "DataOutput_Result: Boolean", + "key": "DataOutput_Result", "details": { - "name": "Result: Boolean" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Length.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Length.names index 12a768cfb2..b6329060b3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Length.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Length.names @@ -7,8 +7,7 @@ "details": { "name": "Length", "category": "Math/Vector4", - "tooltip": "returns the magnitude of source", - "subtitle": "Vector4" + "tooltip": "Returns the magnitude of source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthReciprocal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthReciprocal.names index ba2e25e9a5..cfe495d8a6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthReciprocal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthReciprocal.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "LengthReciprocal", + "name": "Length Reciprocal", "category": "Math/Vector4", - "tooltip": "returns the 1 / magnitude of the source", - "subtitle": "Vector4" + "tooltip": "Returns the 1 / magnitude of the source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthSquared.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthSquared.names index a3115d3526..f4602d127a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthSquared.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_LengthSquared.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "LengthSquared", + "name": "Length Squared", "category": "Math/Vector4", - "tooltip": "returns the magnitude squared of the source, generally faster than getting the exact length", - "subtitle": "Vector4" + "tooltip": "Returns the magnitude squared of the source, generally faster than getting the exact length" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_MultiplyByNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_MultiplyByNumber.names index 873fedcd59..556582c9d8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_MultiplyByNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_MultiplyByNumber.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyByNumber", + "name": "Multiply By Number", "category": "Math/Vector4", - "tooltip": "returns the vector Source with each element multiplied by Multipler", - "subtitle": "Vector4" + "tooltip": "Returns the vector Source with each element multiplied by Multipler" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Multiplier", + "key": "DataInput_Multiplier", "details": { - "name": "Number: Multiplier" + "name": "Multiplier" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Negate.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Negate.names index 26acdf70f1..8cf9ae9226 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Negate.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Negate.names @@ -7,8 +7,7 @@ "details": { "name": "Negate", "category": "Math/Vector4", - "tooltip": "returns the vector Source with each element multiplied by -1", - "subtitle": "Vector4" + "tooltip": "Returns the vector Source with each element multiplied by -1" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Normalize.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Normalize.names index c0df4c0e86..5b1dc01d6f 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Normalize.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Normalize.names @@ -7,8 +7,7 @@ "details": { "name": "Normalize", "category": "Math/Vector4", - "tooltip": "returns a unit length vector in the same direction as the source, or (1,0,0,0) if the source length is too small", - "subtitle": "Vector4" + "tooltip": "Returns a unit length vector in the same direction as the source, or (1,0,0,0) if the source length is too small" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Reciprocal.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Reciprocal.names index c720cb5ecb..82a67c218a 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Reciprocal.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_Reciprocal.names @@ -7,8 +7,7 @@ "details": { "name": "Reciprocal", "category": "Math/Vector4", - "tooltip": "returns the vector (1/x, 1/y, 1/z, 1/w) with elements from Source", - "subtitle": "Vector4" + "tooltip": "Returns the vector (1/x, 1/y, 1/z, 1/w) with elements from Source" }, "slots": [ { @@ -24,15 +23,15 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetW.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetW.names index 5c645e28b6..79d028c7c3 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetW.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetW.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "SetW", + "name": "Set W", "category": "Math/Vector4", - "tooltip": "returns a the vector(Source.X, Source.Y, Source.Z, W)", - "subtitle": "Vector4" + "tooltip": "Returns a the vector(Source.X, Source.Y, Source.Z, W)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataInput_Number: W", + "key": "DataInput_W", "details": { - "name": "Number: W" + "name": "W" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetX.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetX.names index 0a1af22876..ea852cfdc5 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetX.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetX.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "SetX", + "name": "Set X", "category": "Math/Vector4", - "tooltip": "returns a the vector(X, Source.Y, Source.Z, Source.W)", - "subtitle": "Vector4" + "tooltip": "Returns a the vector(X, Source.Y, Source.Z, Source.W)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataInput_Number: X", + "key": "DataInput_X", "details": { - "name": "Number: X" + "name": "X" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetY.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetY.names index f416090c07..9f3e456472 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetY.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetY.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "SetY", + "name": "Set Y", "category": "Math/Vector4", - "tooltip": "returns a the vector(Source.X, Y, Source.Z, Source.W)", - "subtitle": "Vector4" + "tooltip": "Returns a the vector(Source.X, Y, Source.Z, Source.W)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Y", + "key": "DataInput_Y", "details": { - "name": "Number: Y" + "name": "Y" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetZ.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetZ.names index f42628d158..b3db2cb06c 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetZ.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/MathVector4_SetZ.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "SetZ", + "name": "Set Z", "category": "Math/Vector4", - "tooltip": "returns a the vector(Source.X, Source.Y, Z, Source.W)", - "subtitle": "Vector4" + "tooltip": "Returns a the vector(Source.X, Source.Y, Z, Source.W)" }, "slots": [ { @@ -24,21 +23,21 @@ } }, { - "key": "DataInput_Vector4: Source", + "key": "DataInput_Source", "details": { - "name": "Vector4: Source" + "name": "Source" } }, { - "key": "DataInput_Number: Z", + "key": "DataInput_Z", "details": { - "name": "Number: Z" + "name": "Z" } }, { - "key": "DataOutput_Result: Vector4", + "key": "DataOutput_Result", "details": { - "name": "Result: Vector4" + "name": "Result" } } ] From f02d92e5d9bdee1c9b78830cccb8d5b19519e26d Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Tue, 16 Nov 2021 14:00:32 -0800 Subject: [PATCH 06/10] Updated node names & categories Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- .../Classes/MultiplayerSystemComponent.names | 47 ++++ .../Classes/NetBindComponent.names | 147 ++++++++++++ .../TranslationAssets/Classes/UiAnchors.names | 220 +++++++++++++++--- .../NavigationComponentRequestBus.names | 60 ++--- .../Nodes/Math_MultiplyAndAdd.names | 21 +- .../Nodes/Math_StringToNumber.names | 15 +- .../Nodes/Nodeables_Duration.names | 5 +- .../Nodes/Nodeables_Repeater.names | 5 +- .../Nodes/Nodeables_TimeDelay.names | 5 +- 9 files changed, 434 insertions(+), 91 deletions(-) create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MultiplayerSystemComponent.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetBindComponent.names diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MultiplayerSystemComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MultiplayerSystemComponent.names new file mode 100644 index 0000000000..cfa35a377f --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/MultiplayerSystemComponent.names @@ -0,0 +1,47 @@ +{ + "entries": [ + { + "key": "MultiplayerSystemComponent", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "Multiplayer" + }, + "methods": [ + { + "key": "GetOnClientDisconnectedEvent", + "context": "MultiplayerSystemComponent", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get On Client Disconnected Event" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get On Client Disconnected Event is invoked" + }, + "details": { + "name": "Get On Client Disconnected Event", + "category": "Other" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + } + ], + "results": [ + { + "typeid": "{F429F985-AF00-529B-8449-16E56694E5F9}", + "details": { + "name": "Event" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetBindComponent.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetBindComponent.names new file mode 100644 index 0000000000..5fe51e3a68 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/NetBindComponent.names @@ -0,0 +1,147 @@ +{ + "entries": [ + { + "key": "NetBindComponent", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "Net Entity", + "category": "Multiplayer" + }, + "methods": [ + { + "key": "IsNetEntityRoleAuthority", + "context": "NetBindComponent", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Is Net Entity Role Authority" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Is Net Entity Role Authority is invoked" + }, + "details": { + "name": "Is Role Authority", + "category": "Other" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Is Role Authority" + } + } + ] + }, + { + "key": "IsNetEntityRoleAutonomous", + "context": "NetBindComponent", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke IsNetEntityRoleAutonomous" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Is Net Entity Role Autonomous is invoked" + }, + "details": { + "name": "Is Role Autonomous", + "category": "Other" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Is Role Autonomous" + } + } + ] + }, + { + "key": "IsNetEntityRoleClient", + "context": "NetBindComponent", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Is Role Client" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Is Role Client is invoked" + }, + "details": { + "name": "Is Role Client", + "category": "Other" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Is Role Client" + } + } + ] + }, + { + "key": "IsNetEntityRoleServer", + "context": "NetBindComponent", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Is Role Server" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Is Role Server is invoked" + }, + "details": { + "name": "Is Role Server", + "category": "Other" + }, + "params": [ + { + "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", + "details": { + "name": "Entity Id", + "tooltip": "Entity Unique Id" + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Is Role Server" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiAnchors.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiAnchors.names index fce8a21930..9adfa70b6e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiAnchors.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/UiAnchors.names @@ -5,8 +5,7 @@ "context": "BehaviorClass", "variant": "", "details": { - "name": "UI Anchors", - "category": "UI" + "name": "UiAnchors" }, "methods": [ { @@ -22,21 +21,19 @@ }, "details": { "name": "UiAnchors::SetBottom", - "category": "UI" + "category": "Other" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors", - "tooltip": "The anchors for which to set the bottom anchor" + "name": "Anchors*" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Bottom", - "tooltip": "The bottom anchor [0-1]" + "name": "float" } } ] @@ -54,21 +51,19 @@ }, "details": { "name": "UiAnchors::SetRight", - "category": "UI" + "category": "Other" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors", - "tooltip": "The anchors for which to set the right anchor" + "name": "Anchors*" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Right", - "tooltip": "The right anchor [0-1]" + "name": "float" } } ] @@ -86,21 +81,19 @@ }, "details": { "name": "UiAnchors::SetTop", - "category": "UI" + "category": "Other" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors", - "tooltip": "The anchors for which to set the top anchor" + "name": "Anchors*" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Top", - "tooltip": "The top anchor [0-1]" + "name": "float" } } ] @@ -118,21 +111,19 @@ }, "details": { "name": "UiAnchors::SetLeft", - "category": "UI" + "category": "Other" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors", - "tooltip": "The anchors for which to set the left anchor" + "name": "Anchors*" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Left", - "tooltip": "The left anchor [0-1]" + "name": "float" } } ] @@ -150,42 +141,205 @@ }, "details": { "name": "UiAnchors::SetAnchors", - "category": "UI" + "category": "Other" }, "params": [ { "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", "details": { - "name": "Anchors", - "tooltip": "The anchors to set" + "name": "Anchors*" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Left", - "tooltip": "The left anchor [0-1]" + "name": "float" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Top", - "tooltip": "The top anchor [0-1]" + "name": "float" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Right", - "tooltip": "The right anchor [0-1]" + "name": "float" } }, { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "Bottom", - "tooltip": "The bottom anchor [0-1]" + "name": "float" + } + } + ] + }, + { + "key": "left", + "details": { + "name": "UiAnchors::left::Getter" + }, + "params": [ + { + "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", + "details": { + "name": "Anchors*" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "float&" + } + } + ] + }, + { + "key": "left", + "details": { + "name": "UiAnchors::left::Setter" + }, + "params": [ + { + "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", + "details": { + "name": "Anchors*" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "const float&" + } + } + ] + }, + { + "key": "top", + "details": { + "name": "UiAnchors::top::Getter" + }, + "params": [ + { + "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", + "details": { + "name": "Anchors*" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "float&" + } + } + ] + }, + { + "key": "top", + "details": { + "name": "UiAnchors::top::Setter" + }, + "params": [ + { + "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", + "details": { + "name": "Anchors*" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "const float&" + } + } + ] + }, + { + "key": "right", + "details": { + "name": "UiAnchors::right::Getter" + }, + "params": [ + { + "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", + "details": { + "name": "Anchors*" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "float&" + } + } + ] + }, + { + "key": "right", + "details": { + "name": "UiAnchors::right::Setter" + }, + "params": [ + { + "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", + "details": { + "name": "Anchors*" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "const float&" + } + } + ] + }, + { + "key": "bottom", + "details": { + "name": "UiAnchors::bottom::Getter" + }, + "params": [ + { + "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", + "details": { + "name": "Anchors*" + } + } + ], + "results": [ + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "float&" + } + } + ] + }, + { + "key": "bottom", + "details": { + "name": "UiAnchors::bottom::Setter" + }, + "params": [ + { + "typeid": "{65D4346C-FB16-4CB0-9BDC-1185B122C4A9}", + "details": { + "name": "Anchors*" + } + }, + { + "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", + "details": { + "name": "const float&" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NavigationComponentRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NavigationComponentRequestBus.names index 0d13037335..88b015bda8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NavigationComponentRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/NavigationComponentRequestBus.names @@ -5,27 +5,29 @@ "context": "EBusSender", "variant": "", "details": { - "name": "NavigationComponentRequestBus" + "name": "Movement", + "category": "Navigation" }, "methods": [ { "key": "SetAgentSpeed", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAgentSpeed" + "tooltip": "When signaled, this will invoke Set Agent Speed" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAgentSpeed is invoked" + "tooltip": "Signaled after Set Agent Speed is invoked" }, "details": { - "name": "SetAgentSpeed" + "name": "Set Agent Speed" }, "params": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Speed", + "tooltip": "The agent speed in meters per second" } } ] @@ -34,20 +36,21 @@ "key": "SetAgentMovementMethod", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke SetAgentMovementMethod" + "tooltip": "When signaled, this will invoke Set Agent Movement Method" }, "exit": { "name": "Out", - "tooltip": "Signaled after SetAgentMovementMethod is invoked" + "tooltip": "Signaled after Set Agent Movement Method is invoked" }, "details": { - "name": "SetAgentMovementMethod" + "name": "Set Agent Movement Method" }, "params": [ { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Method", + "tooltip": "0: Transform, 1: Physics, 2: Custom" } } ] @@ -63,13 +66,13 @@ "tooltip": "Signaled after GetAgentSpeed is invoked" }, "details": { - "name": "GetAgentSpeed" + "name": "Get Agent Speed" }, "results": [ { "typeid": "{EA2C3E90-AFBE-44D4-A90D-FAAF79BAF93D}", "details": { - "name": "float" + "name": "Speed" } } ] @@ -78,20 +81,21 @@ "key": "FindPathToPosition", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke FindPathToPosition" + "tooltip": "When signaled, this will invoke Find Path To Position" }, "exit": { "name": "Out", - "tooltip": "Signaled after FindPathToPosition is invoked" + "tooltip": "Signaled after Find Path To Position is invoked" }, "details": { - "name": "FindPathToPosition" + "name": "Find Path To Position" }, "params": [ { "typeid": "{8379EB7D-01FA-4538-B64B-A6543B4BE73D}", "details": { - "name": "Vector3" + "name": "Position", + "tooltip": "The position to navigate to" } } ], @@ -99,7 +103,7 @@ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Request Id" } } ] @@ -121,7 +125,8 @@ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Request Id", + "tooltip": "The request Id of the navigation process to stop" } } ] @@ -130,21 +135,21 @@ "key": "FindPathToEntity", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke FindPathToEntity" + "tooltip": "When signaled, this will invoke Find Path To Entity" }, "exit": { "name": "Out", - "tooltip": "Signaled after FindPathToEntity is invoked" + "tooltip": "Signaled after Find Path To Entity is invoked" }, "details": { - "name": "FindPathToEntity" + "name": "Find Path To Entity" }, "params": [ { "typeid": "{6383F1D3-BB27-4E6B-A49A-6409B2059EAA}", "details": { - "name": "EntityId", - "tooltip": "Entity Unique Id" + "name": "Entity Id", + "tooltip": "The entity to follow" } } ], @@ -152,7 +157,7 @@ { "typeid": "{43DA906B-7DEF-4CA8-9790-854106D3F983}", "details": { - "name": "unsigned int" + "name": "Request Id" } } ] @@ -161,20 +166,21 @@ "key": "GetAgentMovementMethod", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAgentMovementMethod" + "tooltip": "When signaled, this will invoke Get Agent Movement Method" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAgentMovementMethod is invoked" + "tooltip": "Signaled after Get Agent Movement Method is invoked" }, "details": { - "name": "GetAgentMovementMethod" + "name": "Get Agent Movement Method" }, "results": [ { "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", "details": { - "name": "int" + "name": "Method", + "tooltip": "0: Transform, 1: Physics, 2: Custom" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MultiplyAndAdd.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MultiplyAndAdd.names index 19532b0a5a..accfab49fc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MultiplyAndAdd.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_MultiplyAndAdd.names @@ -5,9 +5,8 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "MultiplyAndAdd", - "category": "Math", - "subtitle": "Math" + "name": "Multiply And Add", + "category": "Math" }, "slots": [ { @@ -23,27 +22,27 @@ } }, { - "key": "DataInput_Number: Multiplicand", + "key": "DataInput_Multiplicand", "details": { - "name": "Number: Multiplicand" + "name": "Multiplicand" } }, { - "key": "DataInput_Number: Multiplier", + "key": "DataInput_Multiplier", "details": { - "name": "Number: Multiplier" + "name": "Multiplier" } }, { - "key": "DataInput_Number: Addend", + "key": "DataInput_Addend", "details": { - "name": "Number: Addend" + "name": "Addend" } }, { - "key": "DataOutput_Result: Number", + "key": "DataOutput_Result", "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_StringToNumber.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_StringToNumber.names index c23f7dcb4b..e6423917de 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_StringToNumber.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Math_StringToNumber.names @@ -5,10 +5,9 @@ "context": "ScriptCanvas::Node", "variant": "", "details": { - "name": "StringToNumber", + "name": "String To Number", "category": "Math", - "tooltip": "Converts the given string to it's numeric representation if possible.", - "subtitle": "Math" + "tooltip": "Converts the given string to it's numeric representation if possible." }, "slots": [ { @@ -24,15 +23,9 @@ } }, { - "key": "DataInput_String: ", + "key": "DataOutput_Result", "details": { - "name": "String: " - } - }, - { - "key": "DataOutput_Result: Number", - "details": { - "name": "Result: Number" + "name": "Result" } } ] diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Duration.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Duration.names index b789413cc4..67aca7a003 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Duration.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Duration.names @@ -6,9 +6,8 @@ "variant": "", "details": { "name": "Duration", - "category": "Nodeables", - "tooltip": "Triggers a signal every frame during the specified duration.", - "subtitle": "Nodeables" + "category": "Timing", + "tooltip": "Triggers a signal every frame during the specified duration." }, "slots": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Repeater.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Repeater.names index af5cf38a81..7f2fe575d7 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Repeater.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_Repeater.names @@ -6,9 +6,8 @@ "variant": "", "details": { "name": "Repeater", - "category": "Nodeables", - "tooltip": "Repeats the output signal the given number of times using the specified delay to space the signals out.", - "subtitle": "Nodeables" + "category": "Timing", + "tooltip": "Repeats the output signal the given number of times using the specified delay to space the signals out." }, "slots": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_TimeDelay.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_TimeDelay.names index 821329bfd5..b17bebdcfc 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_TimeDelay.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Nodes/Nodeables_TimeDelay.names @@ -6,9 +6,8 @@ "variant": "", "details": { "name": "TimeDelay", - "category": "Nodeables", - "tooltip": "Delays all incoming execution for the specified number of ticks", - "subtitle": "Nodeables" + "category": "Timing", + "tooltip": "Delays all incoming execution for the specified number of ticks" }, "slots": [ { From fabf61688da654dc07c3f3bff282a1417a3982b4 Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Tue, 16 Nov 2021 16:24:48 -0800 Subject: [PATCH 07/10] Improved generation and look up for BehaviorProperty and updates AWS node names Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- .../Classes/AuthenticationTokens.names | 144 +++++++++++ .../Classes/ClientAuthAWSCredentials.names | 140 +++++++++++ ...CognitoUserManagementNotificationBus.names | 150 ++++++++++++ ...uthenticationProviderNotificationBus.names | 186 +++++++++++++++ .../AWSCognitoAuthorizationRequestBus.names | 108 +++++++++ .../AWSCognitoUserManagementRequestBus.names | 223 ++++++++++++++++++ .../AuthenticationProviderRequestBus.names | 115 +++++---- .../Code/Editor/Nodes/NodeDisplayUtils.cpp | 18 +- .../GeneralNodePaletteTreeItemTypes.cpp | 11 +- .../Widgets/NodePalette/NodePaletteModel.cpp | 11 +- .../Code/Tools/TranslationGeneration.cpp | 17 +- 11 files changed, 1065 insertions(+), 58 deletions(-) create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names new file mode 100644 index 0000000000..8af89f8347 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names @@ -0,0 +1,144 @@ +{ + "entries": [ + { + "key": "AuthenticationTokens", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "Authentication Tokens" + }, + "methods": [ + { + "key": "GetAccessToken", + "details": { + "name": "Get Access Token" + }, + "params": [ + { + "typeid": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}", + "details": { + "name": "Authentication Tokens" + } + } + ], + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Access Token" + } + } + ] + }, + { + "key": "SetAccessToken", + "details": { + "name": "Set Access Token" + }, + "params": [ + { + "typeid": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}", + "details": { + "name": "Authentication Tokens" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Access Token" + } + } + ] + }, + { + "key": "GetOpenIdToken", + "context": "getter", + "details": { + "name": "Get OpenId Token" + }, + "params": [ + { + "typeid": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}", + "details": { + "name": "Authentication Token" + } + } + ], + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "OpenId Token" + } + } + ] + }, + { + "key": "SetOpenIdToken", + "context": "setter", + "details": { + "name": "Set OpenId Token" + }, + "params": [ + { + "typeid": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}", + "details": { + "name": "Authentication Token" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "OpenId Token" + } + } + ] + }, + { + "key": "GetRefreshToken", + "context": "getter", + "details": { + "name": "Get Refresh Token" + }, + "params": [ + { + "typeid": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}", + "details": { + "name": "Authentication Token" + } + } + ], + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Refresh Token" + } + } + ] + }, + { + "key": "SetRefreshToken", + "context": "setter", + "details": { + "name": "Set Refresh Token" + }, + "params": [ + { + "typeid": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}", + "details": { + "name": "Authentication Token" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Refresh Token" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names new file mode 100644 index 0000000000..b34229404a --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names @@ -0,0 +1,140 @@ +{ + "entries": [ + { + "key": "ClientAuthAWSCredentials", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "AWS Client Auth Credentials" + }, + "methods": [ + { + "key": "GetAWSAccessKeyId", + "details": { + "name": "Get AWS Access Key Id" + }, + "params": [ + { + "typeid": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}", + "details": { + "name": "AWS ClientAuth Credentials" + } + } + ], + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "AWS Access Key Id" + } + } + ] + }, + { + "key": "SetAWSAccessKeyId", + "details": { + "name": "Set AWS Access Key Id" + }, + "params": [ + { + "typeid": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}", + "details": { + "name": "AWS ClientAuth Credentials" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "AWS Access Key Id" + } + } + ] + }, + { + "key": "GetAWSSecretKey", + "details": { + "name": "Get AWS Secret Key" + }, + "params": [ + { + "typeid": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}", + "details": { + "name": "AWS ClientAuth Credentials" + } + } + ], + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "AWS Secret Key" + } + } + ] + }, + { + "key": "SetAWSSecretKey", + "details": { + "name": "Set AWS Secret Key" + }, + "params": [ + { + "typeid": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}", + "details": { + "name": "AWS ClientAuth Credentials" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "AWS Secret Key" + } + } + ] + }, + { + "key": "GetAWSSessionToken", + "details": { + "name": "Get AWS Session Token" + }, + "params": [ + { + "typeid": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}", + "details": { + "name": "AWS ClientAuth Credentials" + } + } + ], + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "AWS Session Token" + } + } + ] + }, + { + "key": "SetAWSSessionToken", + "details": { + "name": "Set AWS Session Token" + }, + "params": [ + { + "typeid": "{02FB32C4-B94E-4084-9049-3DF32F87BD76}", + "details": { + "name": "AWS ClientAuth Credentials" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "AWS Session Token" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names new file mode 100644 index 0000000000..0ce13362d6 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names @@ -0,0 +1,150 @@ +{ + "entries": [ + { + "key": "AWSCognitoUserManagementNotificationBus", + "context": "EBusHandler", + "variant": "", + "details": { + "name": "AWS Cognito User Management" + }, + "methods": [ + { + "key": "OnEmailSignUpSuccess", + "details": { + "name": "On Email Sign Up Success" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Unique Id" + } + } + ] + }, + { + "key": "OnEmailSignUpFail", + "details": { + "name": "On Email Sign Up Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnPhoneSignUpSuccess", + "details": { + "name": "On Phone Sign Up Success" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Unique Id" + } + } + ] + }, + { + "key": "OnPhoneSignUpFail", + "details": { + "name": "On Phone Sign Up Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnConfirmSignUpSuccess", + "details": { + "name": "On Confirm Sign Up Success" + } + }, + { + "key": "OnConfirmSignUpFail", + "details": { + "name": "On Confirm Sign Up Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnForgotPasswordSuccess", + "details": { + "name": "On Forgot Password Success" + } + }, + { + "key": "OnForgotPasswordFail", + "details": { + "name": "On Forgot Password Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnConfirmForgotPasswordSuccess", + "details": { + "name": "On Confirm Forgot Password Success" + } + }, + { + "key": "OnConfirmForgotPasswordFail", + "details": { + "name": "On Confirm Forgot Password Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnEnableMFASuccess", + "details": { + "name": "On Enable MFA Success" + } + }, + { + "key": "OnEnableMFAFail", + "details": { + "name": "On Enable MFA Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names new file mode 100644 index 0000000000..be95ecde34 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names @@ -0,0 +1,186 @@ +{ + "entries": [ + { + "key": "AuthenticationProviderNotificationBus", + "context": "EBusHandler", + "variant": "", + "details": { + "name": "AWS Authentication Provider" + }, + "methods": [ + { + "key": "OnPasswordGrantSingleFactorSignInSuccess", + "details": { + "name": "On Password Grant Single Factor Sign In Success" + }, + "params": [ + { + "typeid": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}", + "details": { + "name": "Authentication Tokens" + } + } + ] + }, + { + "key": "OnPasswordGrantSingleFactorSignInFail", + "details": { + "name": "On Password Grant Single Factor Sign In Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnPasswordGrantMultiFactorSignInSuccess", + "details": { + "name": "On Password Grant Multi Factor Sign In Success" + } + }, + { + "key": "OnPasswordGrantMultiFactorSignInFail", + "details": { + "name": "On Password Grant Multi Factor Sign In Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnPasswordGrantMultiFactorConfirmSignInSuccess", + "details": { + "name": "On Password Grant Multi Factor Confirm Sign In Success" + }, + "params": [ + { + "typeid": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}", + "details": { + "name": "AuthenticationTokens" + } + } + ] + }, + { + "key": "OnPasswordGrantMultiFactorConfirmSignInFail", + "details": { + "name": "On Password Grant Multi Factor Confirm Sign In Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnDeviceCodeGrantSignInSuccess", + "details": { + "name": "On Device Code Grant Sign In Success" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "User Code" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Verification URL" + } + }, + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "Code Expiration (Seconds)" + } + } + ] + }, + { + "key": "OnDeviceCodeGrantSignInFail", + "details": { + "name": "On Device Code Grant Sign In Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnDeviceCodeGrantConfirmSignInSuccess", + "details": { + "name": "On Device Code Grant Confirm Sign In Success" + }, + "params": [ + { + "typeid": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}", + "details": { + "name": "Authentication Tokens" + } + } + ] + }, + { + "key": "OnDeviceCodeGrantConfirmSignInFail", + "details": { + "name": "On Device Code Grant Confirm Sign In Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnRefreshTokensSuccess", + "details": { + "name": "On Refresh Tokens Success" + }, + "params": [ + { + "typeid": "{F965D1B2-9DE3-4900-B44B-E58D9F083ACB}", + "details": { + "name": "Authentication Tokens" + } + } + ] + }, + { + "key": "OnRefreshTokensFail", + "details": { + "name": "On Refresh Tokens Fail" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names new file mode 100644 index 0000000000..45c001bf34 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names @@ -0,0 +1,108 @@ +{ + "entries": [ + { + "key": "AWSCognitoAuthorizationRequestBus", + "context": "EBusSender", + "variant": "", + "details": { + "name": "AWS Cognito Authorization" + }, + "methods": [ + { + "key": "Reset", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Reset" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Reset is invoked" + }, + "details": { + "name": "Reset" + } + }, + { + "key": "GetIdentityId", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke GetIdentityId" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after GetIdentityId is invoked" + }, + "details": { + "name": "Get Identity Id" + }, + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Identity" + } + } + ] + }, + { + "key": "HasPersistedLogins", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke HasPersistedLogins" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after HasPersistedLogins is invoked" + }, + "details": { + "name": "Has Persisted Logins" + }, + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Has Persisted Logins" + } + } + ] + }, + { + "key": "Initialize", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Initialize" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Initialize is invoked" + }, + "details": { + "name": "Initialize" + }, + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Initialized" + } + } + ] + }, + { + "key": "RequestAWSCredentialsAsync", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke RequestAWSCredentialsAsync" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after RequestAWSCredentialsAsync is invoked" + }, + "details": { + "name": "Request AWS Credentials Async" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names new file mode 100644 index 0000000000..b6bcf677c6 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names @@ -0,0 +1,223 @@ +{ + "entries": [ + { + "key": "AWSCognitoUserManagementRequestBus", + "context": "EBusSender", + "variant": "", + "details": { + "name": "AWS Cognito User Management" + }, + "methods": [ + { + "key": "EnableMFAAsync", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Enable MFA Async" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Enable MFA Async is invoked" + }, + "details": { + "name": "Enable MFA Async" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Access token", + "tooltip": "The MFA access token" + } + } + ] + }, + { + "key": "ConfirmSignUpAsync", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Confirm Sign Up Async" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Confirm Sign Up Async is invoked" + }, + "details": { + "name": "Confirm Sign Up Async" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Username", + "tooltip": "The client's username" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Confirmation code", + "tooltip": "The client's confirmation code" + } + } + ] + }, + { + "key": "PhoneSignUpAsync", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Phone Sign Up Async" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Phone Sign Up Async is invoked" + }, + "details": { + "name": "Phone Sign Up Async" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Username", + "tooltip": "The client's username" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Password", + "tooltip": "The client's password" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Phone number", + "tooltip": "The phone number used to sign up" + } + } + ] + }, + { + "key": "EmailSignUpAsync", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Email Sign Up Async" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Email Sign Up Async is invoked" + }, + "details": { + "name": "Email Sign Up Async" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Username", + "tooltip": "The client's username" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Password", + "tooltip": "The client's password" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Email", + "tooltip": "The email address used to sign up" + } + } + ] + }, + { + "key": "ConfirmForgotPasswordAsync", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Confirm Forgot Password Async" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Confirm Forgot Password Async is invoked" + }, + "details": { + "name": "Confirm Forgot Password Async" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Username", + "tooltip": "The client's username" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Confirmation code", + "tooltip": "The client's confirmation code" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "New password", + "tooltip": "The new password for the client" + } + } + ] + }, + { + "key": "Initialize", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Initialize" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Initialize is invoked" + }, + "details": { + "name": "Initialize" + }, + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Initialized" + } + } + ] + }, + { + "key": "ForgotPasswordAsync", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Forgot Password Async" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Forgot Password Async is invoked" + }, + "details": { + "name": "Forgot Password Async" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Username", + "tooltip": "The client's username" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names index d0b0baf76f..7cf65babc6 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names @@ -5,7 +5,7 @@ "context": "EBusSender", "variant": "", "details": { - "name": "AuthenticationProviderRequestBus" + "name": "AWS Authentication Provider" }, "methods": [ { @@ -19,13 +19,14 @@ "tooltip": "Signaled after SignOut is invoked" }, "details": { - "name": "SignOut" + "name": "Sign Out" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Provider name", + "tooltip": "The identity provider name" } } ], @@ -33,7 +34,8 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Signed Out", + "tooltip": "True: Successfully sign out" } } ] @@ -42,20 +44,21 @@ "key": "DeviceCodeGrantConfirmSignInAsync", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke DeviceCodeGrantConfirmSignInAsync" + "tooltip": "When signaled, this will invoke Device Code Grant Confirm Sign In Async" }, "exit": { "name": "Out", - "tooltip": "Signaled after DeviceCodeGrantConfirmSignInAsync is invoked" + "tooltip": "Signaled after Device Code Grant Confirm Sign In Async is invoked" }, "details": { - "name": "DeviceCodeGrantConfirmSignInAsync" + "name": "Device Code Grant Confirm Sign In Async" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Provider name", + "tooltip": "The identity provider name" } } ] @@ -64,20 +67,21 @@ "key": "DeviceCodeGrantSignInAsync", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke DeviceCodeGrantSignInAsync" + "tooltip": "When signaled, this will invoke Device Code Grant Sign In Async" }, "exit": { "name": "Out", - "tooltip": "Signaled after DeviceCodeGrantSignInAsync is invoked" + "tooltip": "Signaled after Device Code Grant Sign In Async is invoked" }, "details": { - "name": "DeviceCodeGrantSignInAsync" + "name": "Device Code Grant Sign In Async" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Provider name", + "tooltip": "The identity provider name" } } ] @@ -86,32 +90,35 @@ "key": "PasswordGrantMultiFactorSignInAsync", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke PasswordGrantMultiFactorSignInAsync" + "tooltip": "When signaled, this will invoke Password Grant Multi Factor Sign In Async" }, "exit": { "name": "Out", - "tooltip": "Signaled after PasswordGrantMultiFactorSignInAsync is invoked" + "tooltip": "Signaled after Password Grant Multi Factor Sign In Async is invoked" }, "details": { - "name": "PasswordGrantMultiFactorSignInAsync" + "name": "Password Grant Multi Factor Sign In Async" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Provider name", + "tooltip": "The identity provider name" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Username", + "tooltip": "The client's username" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Password", + "tooltip": "The client's password" } } ] @@ -120,20 +127,21 @@ "key": "GetAuthenticationTokens", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetAuthenticationTokens" + "tooltip": "When signaled, this will invoke Get Authentication Tokens" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetAuthenticationTokens is invoked" + "tooltip": "Signaled after Get Authentication Tokens is invoked" }, "details": { - "name": "GetAuthenticationTokens" + "name": "Get Authentication Tokens" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Provider name", + "tooltip": "The identity provider name" } } ], @@ -150,20 +158,21 @@ "key": "GetTokensWithRefreshAsync", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke GetTokensWithRefreshAsync" + "tooltip": "When signaled, this will invoke Get Tokens With Refresh Async" }, "exit": { "name": "Out", - "tooltip": "Signaled after GetTokensWithRefreshAsync is invoked" + "tooltip": "Signaled after Get Tokens With Refresh Async is invoked" }, "details": { - "name": "GetTokensWithRefreshAsync" + "name": "Get Tokens With Refresh Async" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Provider name", + "tooltip": "The identity provider name" } } ] @@ -172,20 +181,21 @@ "key": "IsSignedIn", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke IsSignedIn" + "tooltip": "When signaled, this will invoke Is Signed In" }, "exit": { "name": "Out", - "tooltip": "Signaled after IsSignedIn is invoked" + "tooltip": "Signaled after Is Signed In is invoked" }, "details": { - "name": "IsSignedIn" + "name": "Is Signed In" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Provider name", + "tooltip": "The identity provider name" } } ], @@ -193,7 +203,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Is Signed In" } } ] @@ -202,32 +212,35 @@ "key": "PasswordGrantSingleFactorSignInAsync", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke PasswordGrantSingleFactorSignInAsync" + "tooltip": "When signaled, this will invoke Password GrantSingle Factor Sign In Async" }, "exit": { "name": "Out", - "tooltip": "Signaled after PasswordGrantSingleFactorSignInAsync is invoked" + "tooltip": "Signaled after Password GrantSingle Factor Sign In Async is invoked" }, "details": { - "name": "PasswordGrantSingleFactorSignInAsync" + "name": "Password GrantSingle Factor Sign In Async" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Provider name", + "tooltip": "The identity provider" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Username", + "tooltip": "The client's username" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Password", + "tooltip": "The client's password" } } ] @@ -236,20 +249,21 @@ "key": "RefreshTokensAsync", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke RefreshTokensAsync" + "tooltip": "When signaled, this will invoke Refresh Tokens Async" }, "exit": { "name": "Out", - "tooltip": "Signaled after RefreshTokensAsync is invoked" + "tooltip": "Signaled after Refresh Tokens Async is invoked" }, "details": { - "name": "RefreshTokensAsync" + "name": "Refresh Tokens Async" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Provider name", + "tooltip": "The identity provider name" } } ] @@ -271,7 +285,7 @@ { "typeid": "{99DAD0BC-740E-5E82-826B-8FC7968CC02C}", "details": { - "name": "AZStd::vector" + "name": "Provider Names" } } ], @@ -279,7 +293,7 @@ { "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", "details": { - "name": "bool" + "name": "Initialized" } } ] @@ -288,32 +302,35 @@ "key": "PasswordGrantMultiFactorConfirmSignInAsync", "entry": { "name": "In", - "tooltip": "When signaled, this will invoke PasswordGrantMultiFactorConfirmSignInAsync" + "tooltip": "When signaled, this will invoke Password Grant Multi Factor Confirm Sign In Async" }, "exit": { "name": "Out", - "tooltip": "Signaled after PasswordGrantMultiFactorConfirmSignInAsync is invoked" + "tooltip": "Signaled after Password Grant Multi Factor Confirm Sign In Async is invoked" }, "details": { - "name": "PasswordGrantMultiFactorConfirmSignInAsync" + "name": "Password Grant Multi Factor Confirm Sign In Async" }, "params": [ { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Provider name", + "tooltip": "The identity provider name" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Username", + "tooltip": "The client's username" } }, { "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", "details": { - "name": "AZStd::string" + "name": "Confirmation code", + "tooltip": "The client's confirmation code" } } ] diff --git a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp index de7dc02530..cba39afe81 100644 --- a/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp +++ b/Gems/ScriptCanvas/Code/Editor/Nodes/NodeDisplayUtils.cpp @@ -331,7 +331,21 @@ namespace ScriptCanvasEditor::Nodes // Get the method's text data GraphCanvas::TranslationRequests::Details methodDetails; methodDetails.m_name = details.m_name; // fallback - key << "methods" << methodName; + key << "methods"; + AZStd::string updatedMethodName = methodName; + if (isAccessor) + { + if (methodNode->GetMethodType() == ScriptCanvas::MethodType::Getter) + { + updatedMethodName = "Get"; + } + else + { + updatedMethodName = "Set"; + } + updatedMethodName.append(methodName); + } + key << updatedMethodName; GraphCanvas::TranslationRequestBus::BroadcastResult(methodDetails, &GraphCanvas::TranslationRequests::GetDetails, key + ".details", methodDetails); @@ -377,7 +391,7 @@ namespace ScriptCanvasEditor::Nodes if (slot.IsData()) { key.clear(); - key << context << className << "methods" << methodName; + key << context << className << "methods" << updatedMethodName; if (slot.IsData() && slot.IsInput()) { key << "params"; diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp index d8b72b6712..6be8c94848 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp @@ -83,7 +83,16 @@ namespace ScriptCanvasEditor , m_propertyStatus(propertyStatus) { GraphCanvas::TranslationKey key; - key << "BehaviorClass" << className << "methods" << methodName << "details"; + + + AZStd::string updatedMethodName = methodName; + if (propertyStatus != ScriptCanvas::PropertyStatus::None) + { + updatedMethodName = (propertyStatus == ScriptCanvas::PropertyStatus::Getter) ? "Get" : "Set"; + updatedMethodName.append(methodName); + } + + key << "BehaviorClass" << className << "methods" << updatedMethodName << "details"; GraphCanvas::TranslationRequests::Details details; details.m_name = methodName; diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp index 28844e4b5a..2b4fb14284 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp @@ -1019,12 +1019,19 @@ namespace ScriptCanvasEditor GraphCanvas::TranslationRequestBus::BroadcastResult(catdetails, &GraphCanvas::TranslationRequests::GetDetails, catkey, catdetails); GraphCanvas::TranslationKey key; - key << "BehaviorClass" << methodClass.c_str() << "methods" << methodName.c_str() << "details"; + + AZStd::string updatedMethodName = methodName; + if (propertyStatus != ScriptCanvas::PropertyStatus::None) + { + updatedMethodName = (propertyStatus == ScriptCanvas::PropertyStatus::Getter) ? "Get" : "Set"; + updatedMethodName.append(methodName); + } + key << "BehaviorClass" << methodClass.c_str() << "methods" << updatedMethodName << "details"; GraphCanvas::TranslationRequests::Details details; GraphCanvas::TranslationRequestBus::BroadcastResult(details, &GraphCanvas::TranslationRequests::GetDetails, key, details); - methodModelInformation->m_displayName = details.m_name.empty() ? methodName : details.m_name; + methodModelInformation->m_displayName = details.m_name.empty() ? updatedMethodName : details.m_name; methodModelInformation->m_toolTip = details.m_tooltip; methodModelInformation->m_categoryPath = categoryPath; diff --git a/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp b/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp index 42f4740ece..a0747f78f0 100644 --- a/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp +++ b/Gems/ScriptCanvas/Code/Tools/TranslationGeneration.cpp @@ -859,10 +859,14 @@ namespace ScriptCanvasEditorTools if (behaviorProperty->m_getter) { + AZStd::string cleanName = behaviorProperty->m_name; + AZ::StringFunc::Replace(cleanName, "::Getter", ""); + Method method; - auto methodName = behaviorProperty->m_getter->m_name; - method.m_key = behaviorProperty->m_name; + AZStd::string methodName = "Get"; + methodName.append(cleanName); + method.m_key = methodName; method.m_details.m_name = methodName; method.m_details.m_tooltip = behaviorProperty->m_getter->m_debugDescription ? behaviorProperty->m_getter->m_debugDescription : ""; @@ -874,10 +878,15 @@ namespace ScriptCanvasEditorTools if (behaviorProperty->m_setter) { + AZStd::string cleanName = behaviorProperty->m_name; + AZ::StringFunc::Replace(cleanName, "::Setter", ""); + Method method; - auto methodName = behaviorProperty->m_setter->m_name; - method.m_key = behaviorProperty->m_name; + AZStd::string methodName = "Set"; + methodName.append(cleanName); + + method.m_key = methodName; method.m_details.m_name = methodName; method.m_details.m_tooltip = behaviorProperty->m_setter->m_debugDescription ? behaviorProperty->m_getter->m_debugDescription : ""; From de544bf34a74a098f88cf48937815e11b52118bd Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Tue, 16 Nov 2021 17:00:36 -0800 Subject: [PATCH 08/10] Updated the AWS node names Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- .../AWSMetrics_AttributesSubmissionList.names | 57 +++++ .../Classes/AWSMetrics_MetricsAttribute.names | 131 +++++++++++ .../Classes/AWSScriptBehaviorDynamoDB.names | 81 +++++++ .../Classes/AWSScriptBehaviorLambda.names | 79 +++++++ .../Classes/AWSScriptBehaviorS3.names | 155 +++++++++++++ .../Classes/AuthenticationTokens.names | 3 +- .../Classes/ClientAuthAWSCredentials.names | 3 +- ...CognitoUserManagementNotificationBus.names | 3 +- .../AWSDynamoDBBehaviorNotificationBus.names | 43 ++++ .../AWSLambdaBehaviorNotificationBus.names | 43 ++++ .../AWSS3BehaviorNotificationBus.names | 71 ++++++ ...uthenticationProviderNotificationBus.names | 3 +- .../AWSCognitoAuthorizationRequestBus.names | 3 +- .../AWSCognitoUserManagementRequestBus.names | 3 +- .../EBus/Senders/AWSMetricsRequestBus.names | 81 +++++++ .../AWSResourceMappingRequestBus.names | 206 ++++++++++++++++++ .../AuthenticationProviderRequestBus.names | 3 +- 17 files changed, 961 insertions(+), 7 deletions(-) create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_AttributesSubmissionList.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_MetricsAttribute.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorDynamoDB.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorLambda.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorS3.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSDynamoDBBehaviorNotificationBus.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSLambdaBehaviorNotificationBus.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSS3BehaviorNotificationBus.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSMetricsRequestBus.names create mode 100644 Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSResourceMappingRequestBus.names diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_AttributesSubmissionList.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_AttributesSubmissionList.names new file mode 100644 index 0000000000..e0c9852e54 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_AttributesSubmissionList.names @@ -0,0 +1,57 @@ +{ + "entries": [ + { + "key": "AWSMetrics_AttributesSubmissionList", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "Attributes Submission List", + "category": "AWS Metrics" + }, + "methods": [ + { + "key": "Getattributes", + "details": { + "name": "Get Attributes" + }, + "params": [ + { + "typeid": "{B1106C14-D22B-482F-B33E-B6E154A53798}", + "details": { + "name": "Attribute Submission List" + } + } + ], + "results": [ + { + "typeid": "{1C1ABE6D-94D2-5CFD-A502-8813300FEC8D}", + "details": { + "name": "Metrics Attribute" + } + } + ] + }, + { + "key": "Setattributes", + "details": { + "name": "Set Attributes" + }, + "params": [ + { + "typeid": "{B1106C14-D22B-482F-B33E-B6E154A53798}", + "details": { + "name": "Attribute Submission List" + } + }, + { + "typeid": "{1C1ABE6D-94D2-5CFD-A502-8813300FEC8D}", + "details": { + "name": "Metrics Attribute" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_MetricsAttribute.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_MetricsAttribute.names new file mode 100644 index 0000000000..57a94769b0 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSMetrics_MetricsAttribute.names @@ -0,0 +1,131 @@ +{ + "entries": [ + { + "key": "AWSMetrics_MetricsAttribute", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "Metrics Attribute", + "category": "AWS Metrics" + }, + "methods": [ + { + "key": "SetName", + "context": "AWSMetrics_MetricsAttribute", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke SetName" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after SetName is invoked" + }, + "details": { + "name": "Set Name" + }, + "params": [ + { + "typeid": "{6483F481-0C18-4171-8B59-A44F2F28EAE5}", + "details": { + "name": "Metrics Attribute" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Name" + } + } + ] + }, + { + "key": "SetStrValue", + "context": "AWSMetrics_MetricsAttribute", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke SetStrValue" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after SetStrValue is invoked" + }, + "details": { + "name": "Set String Value" + }, + "params": [ + { + "typeid": "{6483F481-0C18-4171-8B59-A44F2F28EAE5}", + "details": { + "name": "Metrics Attribute" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Name" + } + } + ] + }, + { + "key": "SetIntValue", + "context": "AWSMetrics_MetricsAttribute", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke SetIntValue" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after SetIntValue is invoked" + }, + "details": { + "name": "Set Int Value" + }, + "params": [ + { + "typeid": "{6483F481-0C18-4171-8B59-A44F2F28EAE5}", + "details": { + "name": "Metrics Attribute" + } + }, + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "Value" + } + } + ] + }, + { + "key": "SetDoubleValue", + "context": "AWSMetrics_MetricsAttribute", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke SetDoubleValue" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after SetDoubleValue is invoked" + }, + "details": { + "name": "Set Double Value" + }, + "params": [ + { + "typeid": "{6483F481-0C18-4171-8B59-A44F2F28EAE5}", + "details": { + "name": "Metrics Attribute" + } + }, + { + "typeid": "{110C4B14-11A8-4E9D-8638-5051013A56AC}", + "details": { + "name": "Value" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorDynamoDB.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorDynamoDB.names new file mode 100644 index 0000000000..3d9e963484 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorDynamoDB.names @@ -0,0 +1,81 @@ +{ + "entries": [ + { + "key": "AWSScriptBehaviorDynamoDB", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "AWS Dynamo DB", + "category": "AWS Core" + }, + "methods": [ + { + "key": "GetItem", + "context": "AWSScriptBehaviorDynamoDB", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke GetItem" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after GetItem is invoked" + }, + "details": { + "name": "Get Item", + "category": "Other" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Table Resource Key" + } + }, + { + "typeid": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", + "details": { + "name": "Key Map" + } + } + ] + }, + { + "key": "GetItemRaw", + "context": "AWSScriptBehaviorDynamoDB", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke GetItemRaw" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after GetItemRaw is invoked" + }, + "details": { + "name": "Get Item Raw", + "category": "Other" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Table" + } + }, + { + "typeid": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", + "details": { + "name": "Key Map" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Region" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorLambda.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorLambda.names new file mode 100644 index 0000000000..9ee4a606b9 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorLambda.names @@ -0,0 +1,79 @@ +{ + "entries": [ + { + "key": "AWSScriptBehaviorLambda", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "AWS Lambda", + "category": "AWS Core" + }, + "methods": [ + { + "key": "Invoke", + "context": "AWSScriptBehaviorLambda", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Invoke" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Invoke is invoked" + }, + "details": { + "name": "Invoke" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Function Resource Key" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Payload" + } + } + ] + }, + { + "key": "InvokeRaw", + "context": "AWSScriptBehaviorLambda", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke InvokeRaw" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after InvokeRaw is invoked" + }, + "details": { + "name": "Invoke Raw" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Function Name" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Payload" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Region" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorS3.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorS3.names new file mode 100644 index 0000000000..7630385d28 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AWSScriptBehaviorS3.names @@ -0,0 +1,155 @@ +{ + "entries": [ + { + "key": "AWSScriptBehaviorS3", + "context": "BehaviorClass", + "variant": "", + "details": { + "name": "AWS S3", + "category": "AWS Core" + }, + "methods": [ + { + "key": "GetObject", + "context": "AWSScriptBehaviorS3", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke GetObject" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after GetObject is invoked" + }, + "details": { + "name": "Get Object" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Bucket Resource Key" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Object Key" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "File" + } + } + ] + }, + { + "key": "GetObjectRaw", + "context": "AWSScriptBehaviorS3", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke GetObjectRaw" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after GetObjectRaw is invoked" + }, + "details": { + "name": "Get Object Raw" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Bucket" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Object Key" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Region" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "File" + } + } + ] + }, + { + "key": "HeadObject", + "context": "AWSScriptBehaviorS3", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke HeadObject" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after HeadObject is invoked" + }, + "details": { + "name": "Head Object" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Bucket Resource Key" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "OBject Key" + } + } + ] + }, + { + "key": "HeadObjectRaw", + "context": "AWSScriptBehaviorS3", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke HeadObjectRaw" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after HeadObjectRaw is invoked" + }, + "details": { + "name": "Head Object Raw" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Bucket" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Object Key" + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Region" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names index 8af89f8347..fde350b776 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/AuthenticationTokens.names @@ -5,7 +5,8 @@ "context": "BehaviorClass", "variant": "", "details": { - "name": "Authentication Tokens" + "name": "Authentication Tokens", + "category": "AWS Client Auth" }, "methods": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names index b34229404a..3d1fc2e80e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/Classes/ClientAuthAWSCredentials.names @@ -5,7 +5,8 @@ "context": "BehaviorClass", "variant": "", "details": { - "name": "AWS Client Auth Credentials" + "name": "AWS Client Auth Credentials", + "category": "AWS Client Auth" }, "methods": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names index 0ce13362d6..a796ec0f48 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSCognitoUserManagementNotificationBus.names @@ -5,7 +5,8 @@ "context": "EBusHandler", "variant": "", "details": { - "name": "AWS Cognito User Management" + "name": "AWS Cognito User Management", + "category": "AWS Client Auth" }, "methods": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSDynamoDBBehaviorNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSDynamoDBBehaviorNotificationBus.names new file mode 100644 index 0000000000..c5840d7bdb --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSDynamoDBBehaviorNotificationBus.names @@ -0,0 +1,43 @@ +{ + "entries": [ + { + "key": "AWSDynamoDBBehaviorNotificationBus", + "context": "EBusHandler", + "variant": "", + "details": { + "name": "AWS Dynamo DB", + "category": "AWS Core" + }, + "methods": [ + { + "key": "OnGetItemSuccess", + "details": { + "name": "On Get Item Success" + }, + "params": [ + { + "typeid": "{F8A7460C-2CC2-5755-AFDA-49B1109A751E}", + "details": { + "name": "Result" + } + } + ] + }, + { + "key": "OnGetItemError", + "details": { + "name": "On Get Item Error" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSLambdaBehaviorNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSLambdaBehaviorNotificationBus.names new file mode 100644 index 0000000000..713ece5219 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSLambdaBehaviorNotificationBus.names @@ -0,0 +1,43 @@ +{ + "entries": [ + { + "key": "AWSLambdaBehaviorNotificationBus", + "context": "EBusHandler", + "variant": "", + "details": { + "name": "AWS Lambda", + "category": "AWS Core" + }, + "methods": [ + { + "key": "OnInvokeSuccess", + "details": { + "name": "On Invoke Success" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Result" + } + } + ] + }, + { + "key": "OnInvokeError", + "details": { + "name": "On Invoke Error" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSS3BehaviorNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSS3BehaviorNotificationBus.names new file mode 100644 index 0000000000..55b093d348 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AWSS3BehaviorNotificationBus.names @@ -0,0 +1,71 @@ +{ + "entries": [ + { + "key": "AWSS3BehaviorNotificationBus", + "context": "EBusHandler", + "variant": "", + "details": { + "name": "AWS S3", + "category": "AWS Core" + }, + "methods": [ + { + "key": "OnHeadObjectSuccess", + "details": { + "name": "On Head Object Success" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Result" + } + } + ] + }, + { + "key": "OnHeadObjectError", + "details": { + "name": "On Head Object Error" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + }, + { + "key": "OnGetObjectSuccess", + "details": { + "name": "On Get Object Success" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Result" + } + } + ] + }, + { + "key": "OnGetObjectError", + "details": { + "name": "On Get Object Error" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Error" + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names index be95ecde34..f90336780e 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Handlers/AuthenticationProviderNotificationBus.names @@ -5,7 +5,8 @@ "context": "EBusHandler", "variant": "", "details": { - "name": "AWS Authentication Provider" + "name": "AWS Authentication Provider", + "category": "AWS Client Auth" }, "methods": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names index 45c001bf34..9ba441a6c8 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoAuthorizationRequestBus.names @@ -5,7 +5,8 @@ "context": "EBusSender", "variant": "", "details": { - "name": "AWS Cognito Authorization" + "name": "AWS Cognito Authorization", + "category": "AWS Client Auth" }, "methods": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names index b6bcf677c6..932378a747 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSCognitoUserManagementRequestBus.names @@ -5,7 +5,8 @@ "context": "EBusSender", "variant": "", "details": { - "name": "AWS Cognito User Management" + "name": "AWS Cognito User Management", + "category": "AWS Client Auth" }, "methods": [ { diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSMetricsRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSMetricsRequestBus.names new file mode 100644 index 0000000000..b725fc3de1 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSMetricsRequestBus.names @@ -0,0 +1,81 @@ +{ + "entries": [ + { + "key": "AWSMetricsRequestBus", + "context": "EBusSender", + "variant": "", + "details": { + "name": "Metrics", + "category": "AWS Metrics" + }, + "methods": [ + { + "key": "SubmitMetrics", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke SubmitMetrics" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after SubmitMetrics is invoked" + }, + "details": { + "name": "Submit Metrics" + }, + "params": [ + { + "typeid": "{1C1ABE6D-94D2-5CFD-A502-8813300FEC8D}", + "details": { + "name": "Metrics Attributes list", + "tooltip": "The list of metrics attributes to submit." + } + }, + { + "typeid": "{72039442-EB38-4D42-A1AD-CB68F7E0EEF6}", + "details": { + "name": "Event priority", + "tooltip": "Priority of the event. Defaults to 0, which is highest priority." + } + }, + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Event source override", + "tooltip": "Event source used to override the default, 'AWSMetricGem'." + } + }, + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Buffer metrics", + "tooltip": "Whether to buffer metrics and send them in a batch." + } + } + ], + "results": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Success" + } + } + ] + }, + { + "key": "FlushMetrics", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke FlushMetrics" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after FlushMetrics is invoked" + }, + "details": { + "name": "Flush Metrics" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSResourceMappingRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSResourceMappingRequestBus.names new file mode 100644 index 0000000000..f7ed1d7591 --- /dev/null +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AWSResourceMappingRequestBus.names @@ -0,0 +1,206 @@ +{ + "entries": [ + { + "key": "AWSResourceMappingRequestBus", + "context": "EBusSender", + "variant": "", + "details": { + "name": "AWS Resource Mapping", + "category": "AWS Core" + }, + "methods": [ + { + "key": "GetResourceNameId", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Resource Name Id" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Resource Name Id is invoked" + }, + "details": { + "name": "Get Resource Name Id" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Resource Key Name", + "tooltip": "Resource mapping key name is used to identify individual resource attributes." + } + } + ], + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Name / Id" + } + } + ] + }, + { + "key": "GetResourceRegion", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Resource Region" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Resource Region is invoked" + }, + "details": { + "name": "Get Resource Region" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Resource Key Name", + "tooltip": "Resource mapping key name is used to identify individual resource attributes." + } + } + ], + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Region" + } + } + ] + }, + { + "key": "GetDefaultRegion", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Default Region" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Default Region is invoked" + }, + "details": { + "name": "Get Default Region" + }, + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Region" + } + } + ] + }, + { + "key": "GetDefaultAccountId", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Default Account Id" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Default Account Id is invoked" + }, + "details": { + "name": "Get Default Account Id" + }, + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Default Account Id" + } + } + ] + }, + { + "key": "GetResourceAccountId", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Resource Account Id" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Resource Account Id is invoked" + }, + "details": { + "name": "Get Resource Account Id" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Resource Key Name", + "tooltip": "Resource mapping key name is used to identify individual resource attributes." + } + } + ], + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Resource Account Id" + } + } + ] + }, + { + "key": "GetResourceType", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Get Resource Type" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Get Resource Type is invoked" + }, + "details": { + "name": "Get Resource Type" + }, + "params": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Resource Key Name", + "tooltip": "Resource mapping key name is used to identify individual resource attributes." + } + } + ], + "results": [ + { + "typeid": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9}", + "details": { + "name": "Resource Type" + } + } + ] + }, + { + "key": "ReloadConfigFile", + "entry": { + "name": "In", + "tooltip": "When signaled, this will invoke Reload Config File" + }, + "exit": { + "name": "Out", + "tooltip": "Signaled after Reload Config File is invoked" + }, + "details": { + "name": "Reload Config File" + }, + "params": [ + { + "typeid": "{A0CA880C-AFE4-43CB-926C-59AC48496112}", + "details": { + "name": "Is Reloading Config FileName", + "tooltip": "Whether reload resource mapping config file name from AWS core configuration settings registry file." + } + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names index 7cf65babc6..237d70340b 100644 --- a/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names +++ b/Gems/ScriptCanvas/Assets/TranslationAssets/EBus/Senders/AuthenticationProviderRequestBus.names @@ -5,7 +5,8 @@ "context": "EBusSender", "variant": "", "details": { - "name": "AWS Authentication Provider" + "name": "AWS Authentication Provider", + "category": "AWS Client Auth" }, "methods": [ { From a623f04f46ac16785b0c7aa59f68774c166bcd75 Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Wed, 17 Nov 2021 07:52:46 -0800 Subject: [PATCH 09/10] Applied feedback from PR Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- .../Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp | 4 ++-- .../Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp | 3 +-- .../Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h | 1 - .../Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp | 2 +- .../Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp | 4 ++-- 5 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp index 6be8c94848..b6bd26fa6c 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/GeneralNodePaletteTreeItemTypes.cpp @@ -85,12 +85,12 @@ namespace ScriptCanvasEditor GraphCanvas::TranslationKey key; - AZStd::string updatedMethodName = methodName; + AZStd::string updatedMethodName; if (propertyStatus != ScriptCanvas::PropertyStatus::None) { updatedMethodName = (propertyStatus == ScriptCanvas::PropertyStatus::Getter) ? "Get" : "Set"; - updatedMethodName.append(methodName); } + updatedMethodName.append(methodName); key << "BehaviorClass" << className << "methods" << updatedMethodName << "details"; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp index 3ae7660c79..67f947004b 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/MethodConfiguration.cpp @@ -56,7 +56,7 @@ namespace ScriptCanvas { const Data::Type outputType = (unpackedTypes.size() == 1 && AZ::BehaviorContextHelper::IsStringParameter(*result)) ? Data::Type::String() : Data::FromAZType(unpackedTypes[resultIndex]); - AZStd::string resultSlotName(Data::GetName(outputType).data()); + AZStd::string resultSlotName(Data::GetName(outputType)); AZStd::string className = outputConfig.config.m_className ? *outputConfig.config.m_className : ""; if (className.empty()) @@ -80,7 +80,6 @@ namespace ScriptCanvas if (outputConfig.isReturnValueOverloaded) { DynamicDataSlotConfiguration slotConfiguration; - //slotConfiguration.m_name = outputConfig.outputNamePrefix + resultSlotName; slotConfiguration.m_dynamicDataType = outputConfig.methodNode->GetOverloadedOutputType(resultIndex); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h index 8ee657111e..549c56d07d 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Core/NodeFunctionGeneric.h @@ -256,7 +256,6 @@ namespace ScriptCanvas { DataSlotConfiguration slotConfiguration; - //slotConfiguration.m_name = AZStd::string::format("%s: %s", Data::Traits::GetName().data(), t_Traits::GetArgName(Index)); slotConfiguration.m_name = t_Traits::GetArgName(Index); slotConfiguration.ConfigureDatum(AZStd::move(Datum(Data::FromAZType(Data::Traits::GetAZType()), Datum::eOriginality::Copy))); diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp index 0f766db133..65d1f21518 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/EBusEventHandler.cpp @@ -518,7 +518,7 @@ namespace ScriptCanvas { const AZ::BehaviorParameter& argument(event.m_parameters[AZ::eBehaviorBusForwarderEventIndices::Result]); Data::Type inputType(AZ::BehaviorContextHelper::IsStringParameter(argument) ? Data::Type::String() : Data::FromAZType(argument.m_typeId)); - const AZStd::string argName(Data::GetName(inputType).data()); + const AZStd::string argName(Data::GetName(inputType)); DataSlotConfiguration resultConfiguration; diff --git a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp index 169ffacce2..26a9b4fc96 100644 --- a/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp +++ b/Gems/ScriptCanvas/Code/Include/ScriptCanvas/Libraries/Core/SendScriptEvent.cpp @@ -272,7 +272,7 @@ namespace ScriptCanvas Data::Type outputType(AZ::BehaviorContextHelper::IsStringParameter(*result) ? Data::Type::String() : Data::FromAZType(result->m_typeId)); // multiple outs will need out value names - const AZStd::string resultSlotName(Data::GetName(outputType).c_str()); + const AZStd::string resultSlotName(Data::GetName(outputType)); DataSlotConfiguration slotConfiguration; @@ -343,7 +343,7 @@ namespace ScriptCanvas { Data::Type outputType(AZ::BehaviorContextHelper::IsStringParameter(*result) ? Data::Type::String() : Data::FromAZType(result->m_typeId)); // multiple outs will need out value names - const AZStd::string resultSlotName(Data::GetName(outputType).c_str()); + const AZStd::string resultSlotName(Data::GetName(outputType)); Slot* slot = GetSlotByName(resultSlotName); From 416b44333ed5a1160fbbcb2e258bb5d7c13eb963 Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Wed, 17 Nov 2021 07:56:09 -0800 Subject: [PATCH 10/10] Removed string copy per PR feedback Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- .../Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp index 2b4fb14284..947c49cd78 100644 --- a/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp +++ b/Gems/ScriptCanvas/Code/Editor/View/Widgets/NodePalette/NodePaletteModel.cpp @@ -1020,12 +1020,12 @@ namespace ScriptCanvasEditor GraphCanvas::TranslationKey key; - AZStd::string updatedMethodName = methodName; + AZStd::string updatedMethodName; if (propertyStatus != ScriptCanvas::PropertyStatus::None) { updatedMethodName = (propertyStatus == ScriptCanvas::PropertyStatus::Getter) ? "Get" : "Set"; - updatedMethodName.append(methodName); } + updatedMethodName += methodName; key << "BehaviorClass" << methodClass.c_str() << "methods" << updatedMethodName << "details"; GraphCanvas::TranslationRequests::Details details;